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] swap double mount o [2002/03/17] i386/36003 i386 [panic] Cyclades Cyclom YeP causes panics p [2002/03/18] kern/36038 [smbfs] sendfile(2) on smbfs fails, expos o [2002/03/19] misc/36086 trhodes Kerberos Problem/Handbook wrong/Followup a [2002/03/19] bin/36110 dmesg output corrupt if /dev/console is b o [2002/03/20] kern/36147 bogus irq 7 message being issued o [2002/03/21] docs/36168 doc -pthread/_THREAD_SAFE docs missing in gcc o [2002/03/22] kern/36219 [bpf] [patch] poll() behaves erratic on B o [2002/03/28] kern/36415 [bktr] [patch] driver incorrectly handles o [2002/03/29] kern/36504 [kernel] [patch] crash/panic vm_object_al o [2002/03/29] bin/36508 qa [sysinstall] installation floppy bug (4.5 o [2002/03/30] kern/36517 [sis] sis driver can't map ports/memory f o [2002/03/31] kern/36566 [smbfs] System reboot with dead smb mount o [2002/04/05] kern/36784 Can't fcntl(fd, F_SETFL, ...) on a pseudo o [2002/04/08] bin/36867 [patch] games/fortune: add FORTUNE_PATH e o [2002/04/08] bin/36911 qa [sysinstall] installation floppies miss a o [2002/04/09] gnu/36926 send-pr destroys PR if emacs interrupt ch o [2002/04/10] i386/36943 i386 [smp] [hang] reboot hangs on Tyan Thunder o [2002/04/14] kern/37057 Problem with rlimits on filesystem mounte o [2002/04/15] kern/37109 Kernel refuses to assign unused IP to tun o [2002/04/19] kern/37261 luigi kernel is not linking without "device eth o [2002/04/22] kern/37326 [bktr] smbus/bktr crash when omitting "de o [2002/04/22] bin/37343 portmap TCP binds strangeness o [2002/04/25] kern/37436 [hang] accept dead loop when out of file o [2002/04/25] kern/37441 davidxu [isa] [patch] ISA PNP parse problem o [2002/04/28] i386/37523 davidxu [i386] [patch] lock for bios16 call and v o [2002/04/30] kern/37589 imp Kernel panics upon resume from zzz on my o [2002/05/03] bin/37710 qa [sysinstall] LAN interface in wrong state o [2002/05/24] kern/38495 bms soreceive fails to maintain invariant on o [2002/05/24] kern/38518 [boot] combination of pr-27087 and pr-369 s [2002/05/24] kern/38527 /dev/random does not obey O_NONBLOCK flag o [2002/05/25] kern/38549 threads the procces compiled whith pthread stoppe a [2002/05/25] kern/38554 bms changing interface ipaddress doesn't seem o [2002/05/26] bin/38582 qa [sysinstall] sysinstall sets newfs flag a a [2002/05/27] gnu/38594 kan Fortan program don't link post gcc-3.1 o [2002/05/27] bin/38609 qa [sysinstall] sysinstall should know the s o [2002/05/27] kern/38632 imp Loss of connection with wi cards o [2002/05/30] kern/38752 qingli rn_walktree_from not halting at the right o [2002/06/03] kern/38872 cel [nfs] nfs code ignores possibility of MGE o [2002/06/05] bin/38918 edquota breaks silently when quota-marked o [2002/06/07] kern/38983 Kernel fails to access disk o [2002/06/13] kern/39233 bms NonConforming IPsec implementation from F o [2002/06/13] kern/39252 [syscons] [patch] syscons doesn't support o [2002/06/15] kern/39329 [mount] '..' at mountpoint is subject to o [2002/06/15] kern/39331 dwmalone namei cache unreliable for __getcwd() o [2002/06/17] kern/39388 scsi ncr/sym drivers fail with 53c810 and more s [2002/06/19] i386/39536 i386 [loader] FreeBSD default bootloader does o [2002/06/25] bin/39849 /sbin/restore fails to overwrite files wi o [2002/06/26] bin/39896 netmask 0xffffff00 no longer works in /et s [2002/06/27] threads/39922threads [threads] [patch] Threaded applications e o [2002/06/27] kern/39928 imp [wi] wi0 timeouts and hangs the system wh a [2002/06/27] kern/39937 bms ipstealth issue a [2002/06/28] bin/39940 [patch] /usr/sbin/periodic sends thousand o [2002/07/05] kern/40206 Can not assign alias to any POINTOPOINT i o [2002/07/05] bin/40215 wpaul [nis] NIS host search not terminate o [2002/07/05] i386/40219 i386 [apm] apm breaks removable media o [2002/07/06] bin/40260 qa [sysinstall] hang when detecting devices f [2002/07/06] kern/40274 [fxp] "fxp: device timeout" errors during o [2002/07/06] bin/40278 mktime returns -1 for certain dates/timez o [2002/07/07] bin/40282 /bin/kill has bad error checking for comm o [2002/07/10] kern/40394 [if_tap] if_tap(4) driver hard coded perm o [2002/07/12] bin/40471 des chpass(1) -a option broken in CURRENT o [2002/07/19] kern/40787 kernel panic if PCMCIA CD-drive with moun o [2002/07/19] usb/40792 usb signals lead to data loss on device ugen o [2002/07/22] kern/40895 scsi wierd kernel / device driver bug s [2002/07/30] kern/41138 [vr] vr0 locks up on one hub, OK on anoth o [2002/07/31] kern/41216 cel [nfs] Get "NFS append race" error o [2002/08/01] conf/41242 periodic scripts make unwarranted assumpt o [2002/08/03] bin/41297 mp {t,}csh backquote/braces expansion bug o [2002/08/07] kern/41402 [panic] kernel panics in pmap_insert_entr o [2002/08/07] bin/41410 stefanf /bin/sh bug on expanding $? in here-docum o [2002/08/13] kern/41632 luigi bridging when one interface has no carrie a [2002/08/14] bin/41647 bms ifconfig(8) doesn't accept lladdr along w o [2002/08/16] kern/41720 [nge] if_nge_load=YES make system not boo o [2002/08/18] bin/41757 qa [sysinstall] sysinstall 4.6.x unstable s [2002/08/19] bin/41776 bms mrouted doesn't route multicast packets o [2002/08/19] conf/41777 /etc/periodic/daily/100.clean-disks remov o [2002/08/20] docs/41824 murray LANG is not documented in setlocale(3) o [2002/08/21] bin/41850 qa [sysinstall] sysinstall fails to create r o [2002/08/25] bin/42004 quota and rpc.statd are still IPv4 only, o [2002/08/27] kern/42089 phk ntp_gettime returns time in wrong scale o [2002/08/27] bin/42093 ypbind hangs on NIC with the lowest scope o [2002/08/28] misc/42115 luigi [picobsd] [patch] fix build script for 4. o [2002/08/30] i386/42198 pjd Kernel panics or system hangs up with big s [2002/08/30] kern/42216 rwatson simultaneous multiple server network fail o [2002/09/04] bin/42407 ppp(8) IPV6CP fails o [2002/09/07] i386/42539 i386 [panic] Fatal Trap 12 resulting from Conn o [2002/09/09] kern/42578 [puc] [panic] using PCI serial cards (puc o [2002/09/10] kern/42621 imp Dell Inspiron 5000e hangs when using Orin o [2002/09/11] kern/42652 [smbfs] error deleting r/o (by windows) f o [2002/09/11] bin/42658 markm recompile /usr/src/libexec/telnetd and lo o [2002/09/13] gnu/42726 cvsadm cvs -R pserver & val-tags: story continue s [2002/09/13] bin/42750 fdisk(8) does not distinguish between FAT o [2002/09/14] kern/42769 [boot] Boot stalls if the system has a se o [2002/09/15] kern/42801 [hang] FreeBSD freezes when opening cuaa0 a [2002/09/18] kern/42937 bms panic when ARP cache uses up all mbufs o [2002/09/20] kern/42983 imp wi0 sporadically freezes the system for 1 o [2002/09/22] bin/43223 getnetby{name|addr} broken for DNS lookup o [2002/09/24] bin/43337 des fetch: -s fails if -4 or possibly other o a [2002/09/25] i386/43366 bms Cannot format media in USB floppy devices o [2002/09/29] kern/43491 microuptime () went backwards o [2002/09/30] bin/43501 getpwnam, getpwuid fail when linking agai o [2002/10/02] kern/43576 imp Problem with wi driver and Lucent Orinoco o [2002/10/02] bin/43592 mktime rejects dates at the start of dayl a [2002/10/03] kern/43605 luigi enabling polling in the kernel causes pag o [2002/10/03] kern/43625 imp [wi] wi(4) driver hangs after long data t o [2002/10/04] bin/43674 [patch] login(1): able to bypass expired o [2002/10/05] kern/43713 during install, mounting root from ufs:/d o [2002/10/08] conf/43837 wollman PKST (pakistan daylight time) changed fro o [2002/10/11] java/43924 glewis writing from JAVA to a pipe sometimes han o [2002/10/12] kern/43954 cel [nfs] nfs-blocked process can't return or a [2002/10/14] kern/44030 VNode/Swap troubles o [2002/10/16] i386/44130 i386 [apm] Enabled apm hangs up FreeBSD kernel o [2002/10/16] kern/44150 Diskless kernel may crash, depends on the o [2002/10/18] kern/44202 [rp] [patch] -stable rp driver does not w p [2002/10/21] kern/44336 [nfs] NFSv3 client broken - security prob f [2002/10/21] kern/44355 gnn After deletion of an IPv6 alias, the rout o [2002/10/23] kern/44417 luigi [bridge] [patch] ipfw layer2 rules are no s [2002/10/27] bin/44518 yar ftpd does not show OPIE OTP challenge o [2002/10/27] docs/44519 obrien ftpd.conf(5) contains references to ftpd( o [2002/10/28] gnu/44564 peter [PATCH] Aborted cvs session causes an end o [2002/10/28] kern/44578 [nis] getnetgrent fails to read NIS netgr o [2002/10/30] kern/44744 [vn] [patch] VN devices can hang system F o [2002/11/01] bin/44808 [PATCH] opiepasswd makes bad seed for exi o [2002/11/04] i386/44867 i386 [hang] Frequent hard hangs on ASUS P4T-E/ f [2002/11/07] kern/45023 emulation [linux] [patch] flexlm does not run with o [2002/11/09] gnu/45168 Buffer overflow in /usr/bin/dialog o [2002/11/13] bin/45272 dump/restore problem o [2002/11/15] docs/45303 remko Bug in PDF DocBook rendering o [2002/11/15] kern/45322 Panic on resume (zone: entry not free) o [2002/11/17] kern/45373 mckusick softupdate / fs damaged after loss of pow o [2002/11/18] kern/45403 imp Cannot install -CURRENT via pccard networ o [2002/11/20] i386/45525 imp Dell Inspiron 7000 does not recognize PC- o [2002/11/20] bin/45529 hexdump core-dumps with certain args [PAT o [2002/11/21] kern/45558 [msdosfs] mdconfig and msdosfs make fs wr o [2002/11/21] bin/45565 qa [sysinstall] write error, filesystem full s [2002/11/21] kern/45568 gibbs [ahc] ahc(A19160) pci parity error o [2002/11/27] i386/45773 i386 [bge] Softboot causes autoconf failure on o [2002/11/27] kern/45777 crashdump issue with too-small dumpdev o [2002/12/02] kern/45913 imp WaveLan driver problems with latest -CURR o [2002/12/04] bin/45990 dwmalone top dumps core if specific errors in pass o [2002/12/04] bin/45995 markm Telnet fails to properly handle SIGPIPE o o [2002/12/05] kern/46017 [smbfs] smb mounts break /etc/periodic/we o [2002/12/06] kern/46036 inaccurate timeouts in select(),nanosleep o [2002/12/10] usb/46176 usb [panic] umass causes kernel panic if devi o [2002/12/11] i386/46194 i386 [install] 5.0-RC1 kern floppy load fails o [2002/12/13] kern/46239 standards posix semaphore implementation errors o [2002/12/18] bin/46352 Open file descriptors and signal handling o [2002/12/19] i386/46371 usb USB controller cannot be initialized on I f [2002/12/23] kern/46484 [bge] [panic] System panics upon configur p [2002/12/27] kern/46557 pjd ipfw pipe show fails with lots of queues a [2002/12/31] kern/46647 silby Failure to initialize MII on 3Com NIC res o [2003/01/01] bin/46670 qa [sysinstall] 5.0-RC2 install leaves CD dr o [2003/01/01] bin/46676 ru [PATCH] bsd.dep.mk restricts domain of ta o [2003/01/02] kern/46694 imp Getting DUP packets when in Promiscous mo o [2003/01/08] i386/46865 i386 [panic] kernel panic on SuperMicro 6012-8 o [2003/01/08] bin/46866 NIS-based getpwent() falsely returns NULL o [2003/01/20] i386/47236 i386 Console missing during bootup on Sony Pic o [2003/01/21] kern/47286 device probing not verbose when using boo o [2003/01/22] kern/47359 dd [snp] [panic] panic after kldunload snp o [2003/01/23] bin/47384 qa [sysinstall] sysinstall ignores intended o [2003/01/24] i386/47449 i386 [boot] Thinkpad 755CD floppy boot fails o [2003/01/29] kern/47628 trhodes [msdosfs] [patch] msdosfs file corruption o [2003/01/29] kern/47647 [crash] init died with signal 6 [4.7] s [2003/02/02] kern/47813 [gre] pseudo-device gre(4) doesn't appear o [2003/02/05] kern/47937 hw.ncpu and kern.smp.cpus duplicate same o [2003/02/05] kern/47951 [hang] rtld in ld.so will livelock in som o [2003/02/05] alpha/47952 alpha DEFPA causes machine check with V5.0-rele o [2003/02/07] kern/48033 [ffs] FFS superblock flags are being igno o [2003/02/07] kern/48062 mckusick mount -o snapshot doesn't work on +100GB o [2003/02/08] kern/48100 Fatal panic in vm_map_lookup_entry ... [S o [2003/02/09] kern/48117 SMP machine hang during boot related to i o [2003/02/11] kern/48166 panic: pmap_new_proc: u_map allocation fa o [2003/02/11] bin/48183 marcel [patch] gdb on a corefile from a threaded o [2003/02/14] bin/48271 bug with find's -delete option s [2003/02/14] kern/48279 [bktr] Brooktre878 may cause freeze o [2003/02/16] conf/48325 /etc/periodic/security/100.chksetuid does o [2003/02/17] kern/48393 mckusick [ufs] ufs2 snapshot code bugs p [2003/02/18] bin/48424 Integer overflow in cksum(1) and sum(1) f o [2003/02/18] kern/48425 Tape drive EOT handling problems in 4.7 o [2003/02/19] misc/48461 murray $EDITOR on the fixit CD is wrong. o [2003/02/26] i386/48691 i386 [panic] kernel panics on ASUS A7N266-VM M o [2003/02/27] bin/48730 sos burncd does not handle signals and causes o [2003/02/27] kern/48741 darrenr ipnat corrupts packets on gre interface w o [2003/02/27] kern/48758 [modules] kldunload if_{nic} can cause ke s [2003/03/02] threads/48856threads Setting SIGCHLD to SIG_IGN still leaves z o [2003/03/03] bin/48865 Dumps made on FreeBSD 5.0-RELEASE are unr o [2003/03/03] conf/48881 [PATCH] The influence of /etc/start_ifnam o [2003/03/07] kern/48996 Fatal trap 12 with incoming traffic from o [2003/03/09] kern/49040 problem mounting root; ffs_mountroot can' s [2003/03/10] threads/49087threads Signals lost in programs linked with libc o [2003/04/03] kern/50574 mbr [dc] dc driver incorrectly detects ADMtek s [2003/04/11] kern/50827 [kernel] [patch] new feature: add sane re s [2003/04/12] kern/50856 [mfs] panic if mounting /tmp as mfs with p [2003/04/17] conf/51085 ache FreeBSD is missing ja_JP.eucJP locale. o [2003/04/18] www/51135 www Problems with the mailing-lists search in o [2003/04/20] bin/51171 /bin/sh has only 32-bit arithmetics that o [2003/04/22] kern/51274 ipfw [ipfw] [patch] ipfw2 create dynamic rules o [2003/04/23] kern/51332 mjacob QUIRK: BNCHMARK DLT1 requires SA_QUIRK_1F f [2003/04/24] kern/51341 ipfw [ipfw] [patch] ipfw rule 'deny icmp from o [2003/04/24] kern/51352 panic: malloc(M_WAITOK) in interrupt cont o [2003/04/29] kern/51583 [nullfs] [patch] allow to work with devic o [2003/04/30] bin/51628 [nis] ypmatch doesn't match keys in legac o [2003/05/02] kern/51685 [hang] Unbounded inode allocation causes o [2003/05/04] kern/51742 [panic] ffs_vfree: freeing free inode o [2003/05/06] bin/51827 getaddrinfo() is broken with numeric serv o [2003/05/08] kern/51982 [sio] sio1: interrupt-level buffer overfl s [2003/05/11] ports/52079 ports-bugs vmware3 hangs when nmdm(4) is used as COM s [2003/05/12] kern/52110 daichi [unionfs] FS corruption when using unionf o [2003/05/12] i386/52128 i386 [install] Unable to floppy install on Tos o [2003/05/16] bin/52343 NIS login problem on the server o [2003/05/19] kern/52445 [mfs] panic when mounting floppy on MFS f o [2003/05/22] i386/52581 i386 [loader] boot loaders reading more than o o [2003/05/22] kern/52585 bms [netinet] [patch] Kernel panic with ipfw2 o [2003/05/24] kern/52638 scsi [panic] SCSI U320 on SMP server won't run o [2003/05/28] bin/52743 /etc/ppp/ppp.linkup instability issues s [2003/05/28] kern/52745 daichi [unionfs] Fatal trap 12: page fault while o [2003/05/31] kern/52818 vm_fault() calls vput() on shared-locked o [2003/06/04] kern/52936 [nfs] Huge writes to nfs exported FAT fil o [2003/06/04] kern/52943 [hang] reproducable system stuck just bre o [2003/06/10] kern/53137 [panic] background fscking causing ffs_va o [2003/06/16] i386/53382 i386 Repetable panics in ffs_vget() on Prolian f [2003/06/18] kern/53433 heavy i/o on GBDE partition on SMP locks o [2003/06/18] bin/53434 pw disallow a password including space. o [2003/06/18] kern/53447 alfred [kernel] poll(2) semantics differ from su o [2003/06/22] bin/53606 roberto ntpdate seems to hang system o [2003/06/23] i386/53620 i386 [install] Kernel panics / reboots during o [2003/06/27] bin/53839 qa [sysinstall] disklabel editor fails on po f [2003/06/30] kern/53920 andre sluggish TCP connection o [2003/06/30] kern/53940 imp Some WiFi devices cannot connect to hosta o [2003/07/04] bin/54097 Non-local yppasswd -d broken in 5.1-CURRE o [2003/07/07] kern/54189 [dns] resolver should resolve hostnames w s [2003/07/08] kern/54211 rwatson Seeing other uid with kern.file sysctl. o [2003/07/10] kern/54309 silby TCP Packet of 64K-1 crashes FreeBSD4.8 o [2003/07/11] bin/54401 [patch] pppstats prints 0 for absolute va o [2003/07/12] standards/54410standards one-true-awk not POSIX compliant (no exte o [2003/07/13] bin/54446 pkg_delete doesn't honour symlinks, portu o [2003/07/14] java/54463 glewis Apparent bug in jdk13 s [2003/07/16] kern/54534 daichi [unionfs] unionfs && mfs|md crashing mach s [2003/07/16] i386/54549 i386 [panic] panic on install on Dell 600sc o [2003/07/22] i386/54756 acpi ACPI suspend/resume problem on CF-W2 lapt p [2003/07/29] kern/55018 andre [digi] [patch] Digiboard PC/Xem fails to o [2003/07/29] kern/55028 The broken FAT12 filesystem causes system o [2003/08/02] kern/55175 alfred LOR in select and poll f [2003/08/05] gnu/55278 Externs on implicit declarations o [2003/08/05] kern/55297 [vfs] [panic] kernel panic after running o [2003/08/07] bin/55346 /bin/sh eats memory and CPU infinitely o [2003/08/07] bin/55349 mbr amd(8) mixes up symlinks in its virtual f o [2003/08/08] kern/55379 [panic] kernel crashes randomly o [2003/08/10] bin/55448 dbm_nextkey() misbehaves after dbm_store( o [2003/08/11] bin/55457 marcel GDB gets confused debugging libc_r thread a [2003/08/13] kern/55542 andre [de] [patch] discard oversize frame (ethe f [2003/08/13] usb/55555 usb [ums] system freezes with access to /dev/ o [2003/08/15] i386/55603 i386 [mly] unable to reboot when system runs f o [2003/08/16] kern/55617 [smbfs] Accessing an nsmb-mounted drive v o [2003/08/17] i386/55661 acpi ACPI suspend/resume problem on ARMADA M70 o [2003/08/20] kern/55822 acpi No ACPI power off with SMP kernel o [2003/08/21] bin/55829 __stderrp not defined in libc.so.3 (compa o [2003/08/25] bin/55956 passwd chat script not backward compatibl o [2003/08/25] bin/55965 sshd: problems with HostBasedAuthenticati o [2003/08/25] kern/55975 thomas ATAPICAM- READ_6(0x08) fails for ATAPI ta o [2003/08/27] kern/56024 acpi ACPI suspend drains battery while in S3 o [2003/08/27] kern/56031 luigi [ipfw] ipfw hangs on every invocation o [2003/08/29] bin/56147 FreeBSD/NetBSD /bin/sh mishandles positio f [2003/08/31] kern/56233 bms IPsec tunnel (ESP) over IPv6: MTU computa o [2003/09/02] kern/56339 select() call (poll() too) hangs, yet cal a [2003/09/03] kern/56381 daichi [unionfs] panic: page fault in fifo_close s [2003/09/04] kern/56461 [rpc] FreeBSD client rpc.lockd incompatib p [2003/09/05] bin/56500 roam rpc.lockd needs to use reserved ports p [2003/09/08] bin/56606 [2TB] df cannot handle 2TB NFS volumes o [2003/09/14] kern/56873 qa [boot] system hangs on boot at Buslogic d o [2003/09/17] i386/56937 i386 panic: system panic during high network l o [2003/09/20] i386/57043 i386 [ar] [hang] ar driver with 2 port PCI car o [2003/09/22] usb/57085 sanpei [umass] umass0 problems, with Sony Vio/US a [2003/09/22] kern/57100 bms [bridge] disable hardware checksums when o [2003/09/24] kern/57195 [mfs] mount_mfs -i 512 => panic? o [2003/09/25] kern/57206 [panic] softdep_lock locks against itself o [2003/09/26] bin/57255 usb usbd and multi-function devices a [2003/09/29] kern/57344 bms KMEM exhaustion from cloned routes o [2003/09/29] kern/57350 [panic] using old monocrome printer port s [2003/09/30] kern/57398 scsi [mly] Current fails to install on mly(4) o [2003/10/01] kern/57453 [kue] [patch] if_kue hangs boot after war o [2003/10/01] bin/57456 Telnet encryption gets out of sync o [2003/10/01] bin/57466 dialog(1) does not read stdin, breaks sub a [2003/10/01] kern/57479 bms FreeBSD Not in compliance with RFC 1122, p [2003/10/01] i386/57480 i386 Removing very large files using rm doesn' o [2003/10/04] bin/57554 sh(1) incorrect handling of quoted parame o [2003/10/05] kern/57603 [bktr] bktr driver: freeze on SMP machine o [2003/10/06] kern/57631 jhb [agp] [patch] boot failing for ALi chipse o [2003/10/06] bin/57673 Odd/dangerous disklabel(8) behaviour on 5 o [2003/10/07] kern/57722 [kernel] [patch] uidinfo list corruption f [2003/10/08] kern/57760 bms IPsec policy on inbound trafic is not enf o [2003/10/09] kern/57790 cdparanoia triggers kernel panic o [2003/10/09] i386/57818 i386 4.9-RC panics when kernel is built with a o [2003/10/10] kern/57832 scottl [ips] softdep_deallocate_dependencies: da o [2003/10/16] i386/58139 i386 [panic] -CURRENT panics on Thinkpad A31p o [2003/10/17] kern/58154 mckusick Snapshots prevent disk sync on shutdown o [2003/10/17] kern/58169 panic: vnode_pager_getpages: unexpected m f [2003/10/22] kern/58391 le [vinum] Trap 12 with heavy disk load on i o [2003/10/26] i386/58580 i386 After sysinstall, F2 fails; wrong device o [2003/10/26] kern/58581 [hang] System call gettimeofday hang 5.x o [2003/10/29] kern/58687 deischen [libc] [patch] gethostbyname(3) leaks kqu o [2003/10/31] kern/58787 [panic] pmap_enter: attemped pmap_enter o o [2003/11/02] kern/58831 panic: vinvalbuf: flush failed o [2003/11/03] kern/58870 bms [gif] [panic] page fault in kernel mode w o [2003/11/04] kern/58930 [panic] Page fault when unplugging Alcate o [2003/11/05] kern/58941 rwatson acl under ufs2 doesn't handle disk corrup o [2003/11/05] bin/58951 [sysinstall] some problems with 4.9-RELEA o [2003/11/05] kern/58953 [puc] [patch] detect NetMOS-based six ser o [2003/11/10] alpha/59116 alpha [ntfs] mount_ntfs of a Windows 2000-forma f [2003/11/11] kern/59172 bms Zebra interface route causes kernel panic o [2003/11/11] kern/59183 imp [wi] wi problems with wi_cmd o [2003/11/11] kern/59185 [panic] 4.9-RELEASE kernel panic (page fa o [2003/11/12] kern/59203 imp Panic with wi and newcard a [2003/11/12] kern/59211 [nwfs] System crashes when moving files f o [2003/11/13] i386/59260 i386 [panic] Panic by integer divide fault in o [2003/11/15] kern/59296 Serial Line Noise Causes System Hang in L f [2003/11/22] kern/59594 [hang] I/O operations freeze system when s [2003/11/24] bin/59638 des passwd(1) does not use PAM to change the o [2003/11/24] kern/59652 cannot redirect kernel output to serial c o [2003/11/25] i386/59683 i386 panic: signal 12 4.9-STABLE - frequent cr o [2003/11/26] i386/59701 i386 System hungup, after resume from suspend. f [2003/11/26] amd64/59714 matteo device timeout and ad0: WARNING - WRITE_D o [2003/11/26] i386/59719 i386 [crash] 4.9 Crashes on SuperMicro with SM o [2003/11/28] bin/59777 ftpd(8)/FreeBSD 5: potential username enu o [2003/12/02] i386/59898 i386 [boot] pxe boot: BTX halted o [2003/12/03] kern/59912 bms mremap() implementation lacking o [2003/12/04] kern/59945 [nullfs] [patch] nullfs bug: reboot after o [2003/12/05] gnu/59971 peter assertion "strncmp (repository, current_p o [2003/12/08] i386/60050 i386 Toshiba/3Com 3CXM056-BNW: Open Causes Int s [2003/12/09] ports/60083 java Unsafe use of getaddrinfo in jvm 1.4.2-p5 o [2003/12/11] kern/60154 maxim [ipfw] ipfw core (crash) o [2003/12/14] i386/60226 i386 [ichsmb] [patch] ichsmb driver doesn't de o [2003/12/14] kern/60235 phk some /dev-entries missing for newly auto- o [2003/12/17] i386/60328 i386 [panic] installing 5.1, 5.2RC and 5-CURRE o [2003/12/18] bin/60349 scottl [sysinstall] 5.2-RC1 cannot do NFS instal o [2003/12/19] bin/60385 vmstat/iostat/top all fail to report CPU o [2003/12/26] kern/60598 scsi wire down of scsi devices conflicts with o [2003/12/27] i386/60633 i386 [sis] SIS motherboard with the SIS 5591 ( o [2003/12/27] kern/60641 scsi [sym] Sporadic SCSI bus resets with 53C81 o [2003/12/28] i386/60646 i386 [hang] VIA C3 system hangs on reboot o [2003/12/29] docs/60679 doc [patch] pthread(3): pthreads documentatio o [2003/12/29] i386/60681 i386 wicontrol -L critical crash (sigbus) o [2003/12/29] kern/60685 Intel 82559 NICs don't work in 4.9 o [2004/01/04] i386/60887 i386 can't boot when fbsd exists with other op o [2004/01/09] kern/61129 thomas atapicam / UDMA cdrom loop o [2004/01/10] bin/61152 qa [sysinstall] installer refuses to mount U s [2004/01/10] kern/61165 scsi [panic] kernel page fault after calling c o [2004/01/12] i386/61253 i386 [panic] page fault on installation freebs o [2004/01/13] i386/61303 i386 5.2-REL hangs during boot with 3-port pyr o [2004/01/13] i386/61326 i386 Reboot while booting from 5.2-RELEASE CD o [2004/01/14] i386/61342 i386 [hang] CD-based installation crashes [4.9 o [2004/01/14] bin/61355 login(1) does not restore terminal owners f [2004/01/14] kern/61358 phk boot freezes while ATA GEOM slice detecti o [2004/01/15] kern/61390 [hang] Machine freeze when creating gif i o [2004/01/16] kern/61404 andre RFC1323 timestamps with HZ > 1000 o [2004/01/17] bin/61498 obrien [patch] Please MFC flex patch for gcc 3.x o [2004/01/18] kern/61544 ip6fw breakage on (at least) sparc64 o [2004/01/19] bin/61587 qa [sysinstall] [patch] installation problem o [2004/01/20] docs/61605 doc [feature request] Improve documentation f o [2004/01/20] i386/61646 i386 [workaround] Strange irq20 weirdness caus o [2004/01/21] bin/61658 qa [sysinstall] 5.2R error "Add of package q o [2004/01/21] kern/61669 [twe] writing to 3ware escalade spends 90 o [2004/01/21] kern/61686 FreeBSD 5.2-RELEASE crashes when ACPI is f [2004/01/22] bin/61701 Segmentation fault on OPIE when sequence o [2004/01/22] i386/61709 i386 [panic] 5.2-REL i386 Crashes hard; panics o [2004/01/22] bin/61716 mckusick newfs: code and manpage are out of sync o [2004/01/22] kern/61733 imp panic: resource_list_release: resource en o [2004/01/22] kern/61746 [boot] system locks up on boot if both ap o [2004/01/23] kern/61774 [nis] nis security issue p [2004/01/24] i386/61852 alc i386 pmap SMP race condition can cause lo o [2004/01/25] bin/61890 qa [sysinstall] fdisk(8) uses incorrect calc o [2004/01/26] bin/61937 qa [sysinstall] cannot install 5.2-REL via s o [2004/01/26] alpha/61940 alpha Can't disklabel new disk from FreeBSD/alp o [2004/01/26] kern/61960 sos [ata] [patch] BigDrive support for PC-98 o [2004/01/26] i386/61970 i386 [panic] on boot, 5.1/5.2 (but not 5.0), S o [2004/01/27] alpha/61973 alpha Machine Check on boot-up of AlphaServer 2 o [2004/01/28] bin/62040 pkg_add(1) won't run because the ELF dyna o [2004/01/29] bin/62058 burncd doesn't work with Creative RW8438E o [2004/01/30] usb/62088 usb [usb] Logitech Cordless/Optical Mouse not o [2004/01/30] kern/62091 [hang] Random Lockups on Boot (Timecounte o [2004/02/01] kern/62216 perl syswrite not writing the buffer unde o [2004/02/02] bin/62255 peter 2003-12-18: Stable CVS Version 1.11.11 Re a [2004/02/02] kern/62278 iedowse [nfs] NFS server may not set eof flag whe o [2004/02/02] kern/62284 panic: GENERIC panics on FreeBSD 5.X imme o [2004/02/03] amd64/62295 obrien ipsec failure on 5.2.1-RC amd64 o [2004/02/03] usb/62309 usb [ugen] [panic] panic: ugen(4) driver o [2004/02/05] bin/62367 qa [sysinstall] 5.2.1-RC installation proble o [2004/02/05] kern/62374 darrenr panic: free: multiple frees o [2004/02/05] bin/62375 qa [sysinstall] sysinstall core dump o [2004/02/06] conf/62417 luigi diskless op script failed o [2004/02/07] kern/62468 panic: system crashes when serial getty e o [2004/02/08] kern/62502 [modules] panic under double loading vinu o [2004/02/09] i386/62565 i386 device.hints are not honored in 5.2.1-RC o [2004/02/10] kern/62658 [boot] loader/kernel answer to `boot -a' o [2004/02/12] amd64/62753 obrien [txp] [panic] txp(4) panics on amd4 o [2004/02/13] kern/62762 trhodes [msdosfs] Fsync for msdos fs does not syn o [2004/02/13] i386/62807 i386 4.9 SMP does not work with Compaq Smart o [2004/02/14] kern/62824 [panic] softdep_setup_inomapdep: found in o [2004/02/14] bin/62833 qa [sysinstall] can't install: integer divid o [2004/02/15] kern/62864 cognet Machine not reboot. o [2004/02/15] i386/62888 i386 ad4: WARNING - WRITE_DMA interrupt was se a [2004/02/16] kern/62906 peadar [agp] [patch] AGP misconfigures i845G chi o [2004/02/16] gnu/62937 Compilation of base src Perl with static o [2004/02/18] kern/63040 panic: kernel panic (sf_buff_alloc) o [2004/02/22] kern/63204 multimedia [sound] /dev/mixer broken with ESS Maestr o [2004/02/24] i386/63305 i386 [udf] reading udf filesystem on dvd+rw le o [2004/02/25] kern/63343 [boot] manual root filesystem specificati o [2004/02/25] kern/63360 [panic] page fault in ath kernel module i o [2004/02/26] bin/63391 Burncd DAO fails on some CD recorders o [2004/02/27] kern/63431 [rtc] motherboard going to suspend mode s o [2004/02/27] i386/63441 i386 [panic] fatal trap 12 in pmap.c [4.9 with o [2004/02/27] i386/63449 i386 [boot] FreeBSD 5.2 and 5.2.1 releases won o [2004/02/28] bin/63489 top, finger segfault when using NIS group o [2004/02/29] bin/63535 getpwent segfaults when NIS groups used b o [2004/02/29] kern/63557 thomas ATAPICAM broken in 5.2-CURRENT (REQUEST_S o [2004/03/01] usb/63621 usb [usb] USB MemoryStick Reader stalls/crash o [2004/03/02] kern/63629 thomas mounting atapicam volume through cd0c cau p [2004/03/02] kern/63662 [nullfs] using read-only NULLFS leads to f [2004/03/03] ports/63670 perl lang/perl5.8: 'Unable to read from thread o [2004/03/03] i386/63678 i386 5.2.1 installation hangs on t30 o [2004/03/04] i386/63731 i386 [boot] PATA to SATA converter on Promise o [2004/03/06] i386/63828 i386 [hang] when installing Release 5.2.1 (i38 o [2004/03/07] i386/63871 i386 [panic] kernel panic in swi8 after 1 hour o [2004/03/09] i386/63992 i386 [hang] XFree86 4.3 hangs on IBM ThinkPad o [2004/03/09] i386/64002 acpi acpi problem o [2004/03/12] i386/64158 i386 5.2.1-RELEASE CD won't boot on acer Trave p [2004/03/12] kern/64169 linux binaries dump core on exit o [2004/03/13] kern/64196 [kernel] [patch] remove the arbitrary MAX s [2004/03/15] kern/64313 threads FreeBSD (OpenBSD) pthread implicit set/un o [2004/03/17] kern/64363 [panic] ffs_blkfree: freeing free block [ o [2004/03/18] kern/64406 panic: ffs_clusteralloc: map mismatch o [2004/03/19] i386/64450 i386 Lucent Technologies WaveLAN/IEEE (PCI) fr p [2004/03/22] kern/64573 alc mmap with PROT_NONE, but still could be r f [2004/03/22] kern/64594 glebius [rl] 5.2-CURRENT: driver 'rl' (RealTek 81 o [2004/03/25] i386/64680 i386 5.2.1 pci-cfgintr steals serial mouse irq o [2004/03/25] i386/64716 i386 [nis] mv crashes FreeBSD 5.2.1-p3 o [2004/03/25] i386/64727 i386 [boot] cannot find disk on asus p4s533mx o [2004/03/26] bin/64738 sendmail(8): SO_REUSEADDR doesn't seem to a [2004/03/27] kern/64816 peadar [nfs] mmap and/or ftruncate does not work o [2004/03/28] kern/64826 [panic] with IPv6 on 4-STABLE after FreeB o [2004/03/29] kern/64903 [modules] panic: multiple kldload of a mo o [2004/03/31] bin/64990 /bin/sh unable to change directory but cu o [2004/04/02] java/65054 glewis Diablo 1.3.1 JVM runs out of file descrip o [2004/04/02] i386/65072 i386 hang on reboot not syncing drives on ibm f [2004/04/03] ports/65128 cy security/aide port fails with SIGBUS ever o [2004/04/03] i386/65137 i386 [boot] 5.2.1 Intall Boot from floppies pa f [2004/04/05] kern/65212 [hang] running startx hangs the system (a o [2004/04/05] bin/65223 fsck of 5.2 makes UFS1 inconsistent for 4 o [2004/04/07] kern/65300 [udf] Can't use sendfile(2) to download f f [2004/04/11] kern/65428 [uscanner] [panic] uscanner(4)-related re o [2004/04/12] i386/65457 i386 BTX Halted when trying boot after success o [2004/04/14] i386/65523 i386 [loader] [patch] PXE loader malfunction i o [2004/04/14] bin/65546 qa [sysinstall] 4.10-BETA fails to install f o [2004/04/16] kern/65616 bms IPSEC can't detunnel GRE packets after re o [2004/04/16] gnu/65641 Use of llabs() in C++ fails as ambiguous o [2004/04/17] i386/65648 imp cardbus("TI1131") won't work on Dell Lati o [2004/04/19] bin/65774 qa [sysinstall] cannot run repair disk when o [2004/04/19] i386/65775 i386 [panic] Transmeta crusoe without longrun s [2004/04/20] kern/65817 [sk] [panic] kernel panic with GENERIC 5. o [2004/04/22] gnu/65869 cvs generates invalid cvs command lines o [2004/04/22] kern/65901 [smbfs] smbfs fails fsx write/truncate-do o [2004/04/23] kern/65920 [nwfs] Mounted Netware filesystem behaves o [2004/04/27] kern/66025 panic: kernel panic in pagedaemon with vm o [2004/04/27] kern/66029 [crypto] [patch] MD5 alignment problem on o [2004/04/27] bin/66036 restore crashes (reproducable, core file s [2004/04/29] kern/66066 daichi [unionfs] panic: ufs_direnter: compact2 o [2004/04/29] i386/66087 i386 [install] hang at PCI config [5.2.1] o [2004/04/30] bin/66103 macro HISADDR is not sticky in filters o [2004/05/01] i386/66133 i386 [boot] nvidia motherboard installer locks o [2004/05/01] java/66151 java JBuilderX (sun jvm 1.4.1 builtin) crashes o [2004/05/01] kern/66152 daichi [unionfs] laying unionfs over another uni o [2004/05/02] kern/66162 phk gbde destroy error o [2004/05/05] kern/66270 mckusick [hang] dump causes machine freeze o [2004/05/05] kern/66290 imp pccard initialization fails with "bad Vcc o [2004/05/06] i386/66306 i386 pnpbios_identify() queries for more devic o [2004/05/07] kern/66348 rik [cx] FR mode of cx (Cronyx Sigma) does no o [2004/05/07] bin/66350 qa [sysinstall] sysinstall creates a partiti o [2004/05/07] i386/66368 i386 [install] 4.9 install fails with MODE_SEN o [2004/05/13] kern/66611 [nfs] Crashing NFS servers (with workarou o [2004/05/18] kern/66786 [nfs] panic: exporting msdosfs causes nfs o [2004/05/18] conf/66791 Old dev.db leads to the wrong program beh o [2004/05/18] kern/66829 daichi [unionfs] mounting fdesc union on /dev pa o [2004/05/18] bin/66830 chsh/ypchsh do not change user informatio o [2004/05/19] kern/66848 imp cardbus power support breaks cardbus supp o [2004/05/19] kern/66876 [fdc] [patch] Cannot extract tar(1) multi o [2004/05/20] bin/66950 qa [sysinstall] upgrading to 4.10-RC3: packa o [2004/05/20] kern/66960 [fdc] [patch] filesystems not unmounted d o [2004/05/21] bin/66984 qa [2TB] [patch] teach sysinstall about larg o [2004/05/22] i386/67047 i386 [mpt] mpt driver does not recognize messa o [2004/05/22] i386/67050 imp CardBus (PCI ?) resource allocation probl o [2004/05/27] i386/67273 acpi [hang] system hangs with acpi and Xfree o [2004/05/28] kern/67301 panic: uftdi, RTS and system panic o [2004/05/29] kern/67326 [msdosfs] crash after attempt to mount wr o [2004/05/29] conf/67328 Usermode PPP hangs on boot when NIS confi o [2004/06/01] i386/67469 i386 src/lib/msun/i387/s_tan.S gives incorrect p [2004/06/03] kern/67546 [2TB] Coredumps > 2Gb do not work (on 64b s [2004/06/06] alpha/67626 alpha X crashes an alpha machine, resulting reb o [2004/06/07] i386/67688 i386 5.2.1 initial floppy boot fails with Fata f [2004/06/09] kern/67769 Fxtv 1.03 cause the Desk top (KDE) to Fre o [2004/06/10] kern/67794 panic: ffs panic during high filesystem a o [2004/06/11] i386/67833 i386 [boot] 4.10 does not boot after enabling o [2004/06/14] kern/67919 imagemagicks convert image to movie conve a [2004/06/15] i386/67955 i386 [panic] -current on T40p kernel trap 12 i o [2004/06/16] bin/67995 [patch] morse(6) plays beeps 10 times fas p [2004/06/16] kern/68013 jeff tp->snd_wl1 & snd_wl2 are not updated in o [2004/06/17] bin/68047 [sysinstall] unattended install of FreeBS o [2004/06/18] kern/68076 [modules] Page fault when the sequence "k o [2004/06/19] i386/68103 i386 [panic] ASUS P4P8X mb at ffs/ffs_softdep. o [2004/06/20] i386/68149 i386 FreeBSD 4.10 installation blocking on ASU o [2004/06/24] i386/68277 i386 [kbd] Compact Evo N610c (Laptop): Using e o [2004/06/25] kern/68324 panic: Duplicate free of item 0xc3121908 o [2004/06/25] kern/68325 panic: _mtx_lock_sleep: recursed on non-r f [2004/06/26] kern/68351 glebius [bge] bge0 watchdog timeout on 5.2.1 and o [2004/06/27] i386/68411 i386 VMware Virtual Machine - Network Fails Du o [2004/06/28] i386/68438 i386 bootloader cannot read from icp vortex ar o [2004/06/28] kern/68442 [panic] acquiring duplicate lock of same o [2004/06/29] i386/68486 i386 logo screensaver kills compaq ML370 conso o [2004/07/01] i386/68554 i386 [hang] system freeze on Compaq Evo 600c [ o [2004/07/02] kern/68576 rwatson UFS2 snapshot files can be mounted read-w o [2004/07/06] bin/68727 marcel gdb coredumps after recent CURRENT upgrad o [2004/07/10] kern/68889 rwatson [panic] m_copym, length > size of mbuf ch o [2004/07/10] i386/68899 i386 Problems reading and writing DVD-RAM disc o [2004/07/13] kern/68978 [crash] firewire crashes with failing har o [2004/07/13] kern/68987 panic: kmem_malloc(163840): kmem_map too o [2004/07/13] usb/69006 usb [patch] Apple Cinema Display hangs USB po o [2004/07/13] kern/69019 [wi] wlan stalling after 2-3 hrs of moder o [2004/07/14] i386/69049 i386 [install] error "anic: page fault" o [2004/07/14] kern/69066 panic: nmdm page fault when slattach on a o [2004/07/15] kern/69092 [rl] kernel: rl0: watchdog timeout o [2004/07/15] kern/69100 [nwfs] panic: 5.2.1p9 kernel panics when o [2004/07/16] kern/69141 panic: softdep_lock [5.2.1-RELEASE, SMP] o [2004/07/16] kern/69158 [an] Cisco MPI350 wireless card problems o [2004/07/18] i386/69218 simokawa [boot] failure: 4.10-BETA and later do no o [2004/07/26] kern/69607 [if_tap] [crash] system crashes in if_tap o [2004/07/26] kern/69612 [panic] 4.10-STABLE crashes everyday: pag o [2004/07/26] kern/69629 [panic] Assertion td->td_turnstile o [2004/07/28] amd64/69704 amd64 ext2/ext3 unstable in amd64 o [2004/07/28] amd64/69707 amd64 IPC32 dont work OK in amd64 FreeBSD o [2004/07/28] bin/69723 sysinstall: allow to continue from packag o [2004/08/03] bin/69942 [sysinstall] sysinstall changes /etc/rc.c o [2004/08/05] i386/70028 i386 [umass] umass issue in the boot prcess on f [2004/08/11] ports/70309 sumikawa [patch] racoon disrupt manually-keyed IPS o [2004/08/11] i386/70330 marcel Re-Open 33262? - gdb does not handle pend o [2004/08/12] kern/70360 [twe] Random lock-ups with 3ware RAID 5 u o [2004/08/13] i386/70386 i386 IBM x345 Freezes Randomly o [2004/08/15] i386/70482 i386 Array adapter problems o [2004/08/16] i386/70525 i386 [boot] boot0cfg: -o packet not effective o [2004/08/16] i386/70531 i386 [boot0] [patch] boot0 hides Lilo in exten o [2004/08/17] kern/70587 [vm] [patch] NULL pointer dereference in o [2004/08/18] bin/70600 fsck(8) throws files away when it can't g o [2004/08/19] kern/70649 [rtc] system clock slows down when heavil o [2004/08/19] kern/70663 [ipx] Freebsd 4.10 ncplogin + Netware 4.1 o [2004/08/20] i386/70747 i386 ddos attack causes box to crash on kernel o [2004/08/21] kern/70753 [boot] Device for firewire hard disk not o [2004/08/21] bin/70803 truss wedges if child exits at the wrong o [2004/08/22] kern/70809 [panic] ufs_direnter: compact1 o [2004/08/25] i386/70925 i386 [hang] 5.3Beta1 acpi-pci driver failure, f [2004/08/25] kern/70931 [panic] page fault at end of boot on Athl o [2004/08/26] bin/70974 [rpc] SIGSEGV in rpc.lockd o [2004/08/26] threads/70975threads unexpected and unreliable behaviour when o [2004/08/26] i386/71000 i386 [boot] BTX halted when booting from CD on o [2004/08/27] i386/71035 i386 [kbd] SMP boot hangs in bus_space_write_1 o [2004/08/27] i386/71048 i386 [hang] ASUS TUV4X hangs when SONY CRX140E o [2004/08/28] i386/71087 i386 [hang] 5.3-beta(2-5) fail to install on e o [2004/08/29] kern/71109 alc [pmap] [patch] Possible race conditions i o [2004/08/30] kern/71131 [panic] profile.sh causes bfe to panic o [2004/08/30] i386/71144 i386 FBSD5.3b2 doesn't boot on a Compaq Armada o [2004/08/30] bin/71147 sshd(8) will allow to log into a locked a o [2004/08/30] usb/71155 usb [usb] misbehaving usb-printer hangs proce o [2004/08/30] i386/71158 i386 pci bus number 3 devices are missing on l o [2004/08/30] gnu/71160 marcel gdb gets confused about active frame o [2004/08/31] i386/71190 i386 Dead thinkpad R31 after installing 5.2.1 o [2004/08/31] kern/71198 Lack of PUC device in GENERIC kernel caus o [2004/09/02] bin/71290 [PATCH] passwd cannot change passwords ot o [2004/09/02] kern/71310 jeff [panic] kernel crash on rtprio pid priori o [2004/09/03] bin/71323 qa [sysinstall] FTP download from floppy boo f [2004/09/05] kern/71388 rwatson [panic] due mac_policy_list_conditional_b o [2004/09/05] kern/71391 [nfs] [panic] md via NFS file + mount -t o [2004/09/05] kern/71394 [boot] unable to mount troot device in bo o [2004/09/05] kern/71402 rwatson panic with lomac o [2004/09/06] kern/71421 jeff [sched_ule] [hang] filesystem operations o [2004/09/06] i386/71428 i386 DMA does not work on VIA 82C586 [4.10] o [2004/09/08] kern/71478 [nis] NIS/NFS: res_mkquery failed [4.2] f [2004/09/10] kern/71568 emax [kbd] [patch] unable to install FreeBSD u o [2004/09/11] bin/71602 [PATCH] uninitialized "len" used instead o [2004/09/11] bin/71603 "systat -v" enters infinite loop f [2004/09/12] i386/71641 i386 5.3-BETA3: wi0 hangs during kernel load o [2004/09/12] amd64/71644 amd64 [panic] amd64 5.3-BETA4 crash when heavy o [2004/09/12] kern/71677 rwatson [mac] [patch] MAC Biba / IPFW panic o [2004/09/14] sparc64/71729sparc64 printf in kernel thread causes panic on S o [2004/09/15] kern/71771 [amr] Hang during heavy load with amr rai a [2004/09/16] bin/71786 [patch] adduser breaks if /sbin/nologin i f [2004/09/16] kern/71791 [panic] Fatal trap 12: page fault while i o [2004/09/16] kern/71792 [vm] [patch] Wrong/missing 'goto' target o [2004/09/17] kern/71827 jeff [sched_ule] [panic] Running java applicat o [2004/09/22] i386/72004 i386 [boot] FreeBSD 5.2.1 install hangs with e o [2004/09/22] kern/72007 [panic] clist reservation botch [4.10] o [2004/09/23] kern/72022 packet loss on loopback interface [5.3-BE s [2004/09/23] kern/72041 [cam] [hang] Deadlock when disk is destro o [2004/09/24] i386/72065 i386 4.x and 5.2.1 doesn't recognize PCnet/ISA o [2004/09/27] kern/72130 Promise Fastrack sx4000 boot problem f [2004/09/28] ports/72149 ports-bugs [PATCH] heimdal with LDAP backend - bad s f [2004/09/28] java/72151 java JVM crash on 5.2.1-R o [2004/09/29] kern/72163 ACPI Panics on boot with 5.3-BETA-3 and u o [2004/09/30] kern/72208 panic: bio_completed can't be greater tha o [2004/09/30] kern/72210 andre ipnat problem with IP Fastforward enable o [2004/09/30] kern/72211 Cannot boot 5.3-BETA6 with both SCSI and o [2004/10/03] kern/72278 Installworld crashes machine [5.3-BETA7] s [2004/10/03] docs/72285 doc gcc(1) manuals are out of sync o [2004/10/04] kern/72305 boot hangs after discovering disks when a o [2004/10/05] i386/72343 i386 Suspend resets system on Inspiron 5160. o [2004/10/05] threads/72353threads Assertion fails in /usr/src/lib/libpthrea o [2004/10/06] bin/72370 obrien awk in -current dumps core o [2004/10/06] i386/72376 i386 acpi is mutually exclusive with snd_mss o o [2004/10/06] kern/72396 [netinet] [patch] Incorrect network accou o [2004/10/07] i386/72416 i386 FreeBSD 5.3-BETA7: The alternate systemcl o [2004/10/07] kern/72424 panic: ffs_blkfree: freeing free block in o [2004/10/07] threads/72429threads threads blocked in stdio (fgets, etc) are f [2004/10/08] i386/72441 remko HP Proliant DL380 hangs on reboot with 5. f [2004/10/09] usb/72466 emax [kbd] USB keyboard does not respond in si o [2004/10/10] kern/72490 Panic mounting cdrom with RWCombo Abort trap (core dumped) o [2004/11/04] kern/73538 [bge] problem with the Broadcom BCM5788 G o [2004/11/05] bin/73559 sos burncd(8) failure closing/fixating DVD-+R o [2004/11/06] bin/73617 qa [sysinstall] fdisk editor unmarks active o [2004/11/07] amd64/73650 amd64 5.3-release panics on boot o [2004/11/08] i386/73666 i386 5.3 UDMA error WD1600 can't partition dri o [2004/11/09] i386/73706 jhb ATA_IDENTIFY timed out under FreeBSD 5.3 p [2004/11/09] kern/73719 csjp Page fault in bpf_mtap () o [2004/11/09] kern/73740 [nfs] [panic] 5-3-R#3 panic when accessin o [2004/11/09] kern/73744 printing via cups causes "Interrupt storm o [2004/11/10] amd64/73775 amd64 Kernel panic (trap 12) when booting with f [2004/11/11] kern/73830 le kernel panic when raid5 member disk is re o [2004/11/12] kern/73850 thomas atapicam and Zip drive causes reboots upo o [2004/11/12] kern/73871 [wi] Intersil Prism wireless wi0 locks up o [2004/11/13] kern/73910 ipfw [ipfw] serious bug on forwarding of packe o [2004/11/14] i386/73934 i386 fdisk sees disk as empty f [2004/11/16] kern/73987 multimedia [sound] Nforce2 MB sound problem o [2004/11/16] i386/74008 i386 IBM eServer x225 cannot boot any v5.x - e o [2004/11/16] kern/74012 FreeBSD 4.10 stops responding while playi o [2004/11/16] misc/74019 Not NOMAN requires NO_CXX in make.conf o [2004/11/17] i386/74044 i386 ServerWorks OSB4 SMBus interface does not o [2004/11/19] kern/74104 ipfw [ipfw] ipfw2/1 conflict not detected or r p [2004/11/19] kern/74105 rwatson IPX protocol support doesn't work o [2004/11/19] i386/74124 i386 ata0 failure on HP(Vectra) VL6/350 [intro o [2004/11/19] bin/74127 [patch] patch(1) may misapply hunks with o [2004/11/22] kern/74230 periodic Fatal trap 12: page fault while o [2004/11/22] kern/74238 firewire [firewire] fw_rcv: unknown response; fire s [2004/11/22] kern/74242 rwatson Write to fifo with no reader fails in 6.0 o [2004/11/22] kern/74272 Interrupt storm detected on "irc10:atapci o [2004/11/24] kern/74309 xterm -C and rxvt -C do not grab /dev/con o [2004/11/24] kern/74319 [smp] system reboots after few hours (5.3 a [2004/11/26] kern/74432 Yamaha DS-1E produces "kernel: Danger! pc o [2004/11/29] kern/74495 [wi] wi(4) wlan driver device freeze (5.3 o [2004/11/29] ports/74518 openoffice openoffice-1.1 build failure on 4-stable: o [2004/11/29] gnu/74531 gcc doesn't link correctly if -pg specifi o [2004/12/01] i386/74601 i386 Cardbus fails after busdma_machdep.c upda o [2004/12/02] conf/74610 Hostname resolution failure causes firewa o [2004/12/02] kern/74627 scsi [ahc] [hang] Adaptec 2940U2W Can't boot 5 s [2004/12/05] kern/74708 [umapfs] [panic] UMAPFS kernel panic o [2004/12/05] amd64/74747 amd64 System panic on shutdown when process wil o [2004/12/06] usb/74771 usb [umass] mounting write-protected umass de o [2004/12/06] kern/74778 ipsec passthrough / nat-t crash freebsd f o [2004/12/06] bin/74779 Background-fsck checks one filesystem twi o [2004/12/07] bin/74801 cpio -p --sparse creates truncated files o [2004/12/07] kern/74809 [modules] [panic] smbfs panic if multiply o [2004/12/07] i386/74816 i386 OS crash with kernel trap 12 in different o [2004/12/08] kern/74852 page fault: after a few days init causes o [2004/12/08] kern/74877 Panic after halting the system - vrele: n o [2004/12/10] kern/74923 [ipx] [panic] kernel panic with ncplist o p [2004/12/10] bin/74929 des DES/BLF login.conf classes not working wi o [2004/12/11] kern/74935 qingli [netinet] [patch] TCP simultaneous open f o [2004/12/12] kern/74968 cdparanoia torture wedges CD-drive and PA o [2004/12/12] kern/74976 [vfs] [panic] 5.3-STABLE: vn_finished_wri o [2004/12/12] i386/74988 i386 dma errors with large maxtor hard drives o [2004/12/15] kern/75099 OpenOffice makes the system freeze o [2004/12/15] kern/75122 andre [netinet] [patch] Incorrect inflight band o [2004/12/16] kern/75157 Cannot print to /dev/lpt0 with HP Laserje f [2004/12/18] amd64/75209 matteo 5.3-Release panics on attempted boot from s [2004/12/18] kern/75233 [fdc] breaking fdformat /dev/fd0 resets d o [2004/12/19] kern/75249 [boot] 5.x install CD hangs on VirtualPC o [2004/12/19] bin/75258 [patch] dd(1) has not async signal safe i o [2004/12/19] threads/75273threads FBSD 5.3 libpthread (KSE) bug o [2004/12/20] ports/75315 lawrance the shells/bash2 port is broken on -CURRE o [2004/12/21] kern/75368 [panic] initiate_write_inodeblock_ufs2() o [2004/12/21] threads/75374threads pthread_kill() ignores SA_SIGINFO flag o [2004/12/22] kern/75407 [an] an(4): no carrier after short time o [2004/12/26] kern/75510 panic: kmem_malloc(4096): kmem_map too sm p [2004/12/27] kern/75542 rwatson Inconsistent naming of a tunable and weir o [2005/01/01] usb/75705 usb [panic] da0 attach / Optio S4 (with backt o [2005/01/01] docs/75711 keramida opendir(3) missing ERRORS section o [2005/01/03] kern/75733 harti ATM driver problem. o [2005/01/03] kern/75755 kmem_malloc(45056): kmem_map too small: 3 o [2005/01/03] kern/75773 [panic] sysctl -a panic o [2005/01/04] kern/75780 [panic] panic: vm_page_free: freeing wire o [2005/01/04] usb/75797 usb 5.3-STABLE(2005 1/4) detect USB headset, o [2005/01/04] kern/75823 [wi] wi0 interface self-destructs after a o [2005/01/06] kern/75875 acd0: FAILURE - READ_BIG ILLEGAL REQUEST o [2005/01/06] i386/75887 i386 [pcvt] with vt0.disabled=0 and PCVT in ke o [2005/01/08] bin/75931 Got "bus error" on running certain apps o [2005/01/09] kern/75978 Linksys WPC11 ver 3 wifi card locks up 5 p [2005/01/09] bin/75980 expand(1) breaks tab columns in Japanese o [2005/01/10] kern/76023 [panic] xmms causes panic f [2005/01/11] kern/76080 [ata] [panic] "bio_completed .. greater t o [2005/01/12] kern/76126 [nfs] [patch] 4.11 client will send a NFS o [2005/01/12] bin/76134 fetch(1) doesn't like 401 errors with -A o [2005/01/12] amd64/76136 amd64 system halts before reboot f [2005/01/13] usb/76204 usb panic while using usb attached modem f [2005/01/13] kern/76207 [xl] [patch] Null pointer dereference in o [2005/01/17] amd64/76336 amd64 racoon/setkey -D cases instant "Fatal Tra o [2005/01/17] i386/76372 i386 cannot burn iso image disk2 of any releas o [2005/01/18] usb/76395 usb USB printer does not work, usbdevs says " s [2005/01/18] i386/76397 i386 [ata] ata raid crashes in g_down (heavy l o [2005/01/18] kern/76398 [libc] stdio can lose data in the presenc o [2005/01/19] kern/76464 mlaier PF, set loginterface & non existing inter o [2005/01/20] i386/76487 i386 Compiled GENERIC kernel (and non-GENERIC) o [2005/01/20] kern/76504 silby Keep-alives doesn't work on half-closed s o [2005/01/21] kern/76525 [fifo] select() hangs on EOF from named p o [2005/01/21] kern/76538 geom [gbde] nfs-write on gbde partition stalls o [2005/01/22] bin/76578 uniq truncates long lines to LINE_MAX o [2005/01/23] bin/76588 OpenSSL fails on loading keyfiles from BI o [2005/01/24] java/76631 java any port linux-*-jdk12 will core dump if o [2005/01/24] ports/76633 ports-bugs Totem will not play DVDs o [2005/01/25] kern/76663 panic with FAST_IPSEC and IPv6 o [2005/01/25] i386/76666 i386 Booting and Sound are mutually exclusive o [2005/01/25] kern/76672 Problem with cardbus and vlans f [2005/01/25] usb/76684 usb [hang] Toshiba PDR-M4 camera connected vi s [2005/01/26] threads/76694threads fork cause hang in dup()/close() function o [2005/01/27] i386/76737 i386 CardBus problem (cbb1: Could not map regi o [2005/01/30] kern/76848 [amr] amr hangs o [2005/01/31] kern/76893 [cam] [patch] Fatal divide in booting pro o [2005/01/31] i386/76925 i386 standard pci-ide, install - "NO DISKS FOU o [2005/02/01] kern/76937 Page fault while in kernel mode under hea o [2005/02/01] i386/76944 i386 [busdma] [patch] i386 bus_dmamap_create() o [2005/02/01] i386/76948 i386 [rl] Slow network with rl0 o [2005/02/01] kern/76968 Failing to boot into machine f [2005/02/02] amd64/77011 matteo consisten 5.3-p5 make crash on installwor o [2005/02/02] kern/77026 umount-ing non-existent device panics sys o [2005/02/04] amd64/77101 obrien feature request: please include ULi M1689 o [2005/02/06] kern/77181 [newfs] [patch] newfs -g largevalue, mkdi o [2005/02/06] usb/77184 usb kernel panic on USB device disconnect s [2005/02/07] kern/77195 darrenr [ipfilter] [patch] ipfilter ioctl SIOCGNA o [2005/02/09] kern/77289 system hangs while trying to unmount prev o [2005/02/09] usb/77294 usb ucom + ulpcom panic o [2005/02/10] i386/77335 i386 Can not initial Ethernet Broadcom UDI PXE o [2005/02/10] kern/77337 Samba3+FAT32->Reboot o [2005/02/13] kern/77432 cel [nfs] [patch] It is not possible to load f [2005/02/13] kern/77439 [ath] WAG511 NETGEAR pccard does not atta o [2005/02/13] i386/77443 i386 [fdc] can't access floppy -- regression o o [2005/02/13] bin/77455 natd(8): fatal trap 19 in natd o [2005/02/14] kern/77493 [pipe] freebsd 5.3 + bash process substit o [2005/02/14] i386/77529 i386 installation of freebsd 5.3 in laptop an o [2005/02/15] kern/77537 [smp] [hang] Conditional breakpoints hang o [2005/02/16] kern/77588 [em] PREEMPTION problems in combination w o [2005/02/17] kern/77631 [sis] sis network driver broken in 5.3 o [2005/02/17] bin/77651 init can loose shutdown related signals o [2005/02/19] kern/77710 emulation [linux] Linux page fault sigcontext infor o [2005/02/20] kern/77753 DVD-writer fails to fixate DVD f [2005/02/20] kern/77805 Boot hangs with ACPI enabled o [2005/02/23] usb/77940 usb [patch] [panic] insertion of usb keyboard f [2005/02/23] amd64/77949 matteo Pb boot FreeBSD 64 o [2005/02/23] kern/77982 [lnc] [patch] lnc0 can NOT be detected in o [2005/02/25] bin/78087 groups program inconsistency o [2005/02/27] docs/78154 doc [PATCH] Make en_US FreeBSD Handbook more o [2005/02/27] gnu/78161 [patch] typo in gzexe o [2005/02/28] kern/78179 [vm] [patch] bus_dmamem_alloc() with BUS_ o [2005/02/28] kern/78216 WRITE_DMA UDMA ICRC errors while copying f [2005/03/01] i386/78218 usb [kue] kue not detected on Sony PCG-F370 V o [2005/03/01] i386/78219 i386 Netgear FA-410TX is incorrectly detected o [2005/03/01] kern/78227 [netinet] [patch] Destroying a network in o [2005/03/03] i386/78339 i386 BTX loader crashes on boot on HP Proliant o [2005/03/03] docs/78357 doc getaddrinfo(3)'s AI_ADDRCONFIG not docume o [2005/03/03] kern/78382 wpaul [ndis] dhclient on ndis0 causes kernel pa o [2005/03/04] kern/78384 [panic] Reproducible panic with port iplo o [2005/03/04] amd64/78406 amd64 [panic]AMD64 w/ SCSI: issue 'rm -r /usr/p o [2005/03/04] ports/78428 openoffice openoffice.org-1.1.4 stops compiling -> d o [2005/03/05] kern/78434 [vfs] [patch] vfs_mount: -current does no p [2005/03/06] kern/78478 rwatson writing to closed socket does not generat o [2005/03/07] i386/78517 i386 [ata] WRITE_DMA and READ_DMA timeouts wit f [2005/03/07] amd64/78558 matteo installation o [2005/03/08] bin/78570 wicontrol(8): "wicontrol -i wi0 -C" outpu o [2005/03/10] i386/78657 i386 [xe] [hang] error installing 5.3-RELEASE o [2005/03/13] conf/78762 ipfw [ipfw] [patch] /etc/rc.d/ipfw should exce f [2005/03/13] kern/78791 [xl] xl(4) input errors and speed problem o [2005/03/14] kern/78801 mux ping: sendto: No buffer space available o [2005/03/14] amd64/78848 amd64 [sis] sis driver on FreeBSD 5.x does not o [2005/03/15] kern/78868 gibbs [scsi] Adaptec 29160 fails with IBM LTO-2 o [2005/03/16] i386/78929 i386 atapicam prevents boot, system hangs o [2005/03/16] i386/78930 i386 SuperMicro web server with 5.3-RELEASE ke o [2005/03/17] kern/78946 [vm] vm_pageout_flush: partially invalid o [2005/03/17] kern/78953 [smbfs] [patch] smbfs getdirentries() fai o [2005/03/17] kern/78956 Only one write operation attempted on RAI o [2005/03/17] bin/78964 qa [sysinstall] can not write labels to hdd o [2005/03/17] kern/78968 FreeBSD freezes on mbufs exhaustion (netw o [2005/03/18] kern/78987 scottl [udf] [patch] udf fs: readdir returns err o [2005/03/18] usb/78989 usb please add USB keyboard support to instal o [2005/03/19] ports/79014 nork building www/linuxpluginwrapper fails. o [2005/03/19] kern/79025 [patch] && in /usr/src/etc/Makefile needs o [2005/03/21] i386/79073 i386 System panic and hang after creating a la o [2005/03/21] i386/79080 acpi acpi thermal changes freezes HP nx6110 o [2005/03/21] i386/79081 acpi ACPI suspend/resume not working on HP nx6 o [2005/03/22] usb/79140 usb WD Firewire/USB Combo hangs under load on o [2005/03/22] i386/79141 i386 [agp] 5.4Beta1 does not recognize my inte o [2005/03/23] kern/79168 Problems running two firewire disks on on o [2005/03/23] i386/79169 i386 freeze with striped USB Drives under high o [2005/03/24] kern/79208 cel [nfs] Deadlock or starvation doing heavy o [2005/03/24] kern/79214 cel [nfs] iozone hurts tcp-based NFS o [2005/03/26] kern/79255 Fixating CDRW with burncd(8) hangs system o [2005/03/26] kern/79262 [dc] Adaptec ANA-6922 not fully supported o [2005/03/27] i386/79268 i386 5.3-RELEASE won't boot on Compaq Armada 4 o [2005/03/27] usb/79269 usb USB ohci da0 plug/unplug causes crashes a o [2005/03/27] usb/79287 usb UHCI hang after interrupt transfer o [2005/03/28] kern/79295 umount oddity with NFS (fwe) over VIA Fir s [2005/03/28] kern/79323 [wi] authmod setup with ifconfig on dlink o [2005/03/29] kern/79324 [bge] Broadcom bge chip initialization fa p [2005/03/29] kern/79332 [ata] [patch] "ffs_mountroot: can't find o [2005/03/29] kern/79333 pjd GEOM MIRROR mount root problem o [2005/03/29] kern/79334 [ata] ATA_IDENTIFY timed out for 5.3 and o [2005/03/29] kern/79336 cel [nfs] NFS client doesn't detect file upda s [2005/03/29] kern/79339 [kernel] [patch] Kernel time code sync wi f [2005/03/30] bin/79376 moused causes random mouse events with a o [2005/03/31] i386/79409 i386 Coming back from idles make the server re o [2005/04/02] kern/79493 [if_tun] [patch] Reproducible if_tun pani o [2005/04/04] usb/79524 usb printing to Minolta PagePro 1[23]xxW via o [2005/04/07] kern/79621 qa [sysinstall] sysinstall does not create a o [2005/04/07] usb/79622 imp USB devices can be freed twice f [2005/04/07] usb/79656 usb [usb] RHSC interrupts lost o [2005/04/08] kern/79660 ATAPI CD driver /dev/acd0tNN fails if dev o [2005/04/08] kern/79665 [panic] "unmount: dangling vnode" on amd o [2005/04/08] threads/79683threads svctcp_create() fails if multiple threads o [2005/04/08] i386/79686 i386 Spurious notebook disk errors from ATA dr o [2005/04/08] kern/79700 cel [nfs] suspending nfs file access hangs ot o [2005/04/09] kern/79703 [hang] RocketRaid 1820A has problems with o [2005/04/09] usb/79722 usb [usb] wrong alignments in ehci.h o [2005/04/09] i386/79729 i386 umass, da0 not detected by devfs for o [2005/04/09] i386/79730 i386 SLIM DRIVE COMBO fails with READ_BIG erro o [2005/04/11] i386/79779 i386 If system memory is above 4GB, one parts o [2005/04/11] kern/79783 [ata] hw.ata.atapi_dma=1 reduces HDD writ o [2005/04/11] i386/79784 i386 [bfe] Broadcom BCM4401 : no carrier o [2005/04/11] kern/79785 realtek NIC will crash a heavy BSD system o [2005/04/12] i386/79807 i386 Lock Up on Old Acer P1 Comp o [2005/04/12] amd64/79813 amd64 Will not install/run on amd64 nForce 4 pl o [2005/04/12] i386/79833 i386 BTX crashes on boot when using Promise TX o [2005/04/14] kern/79895 darrenr [ipfilter] 5.4-RC2 breaks ipfilter NAT wh o [2005/04/14] kern/79905 multimedia [sound] sis7018 sound module problem o [2005/04/14] bin/79910 qa [sysinstall] Cannot escape from failed po o [2005/04/14] kern/79912 multimedia [sound] sound broken for 2 VIA chipsets: o [2005/04/14] kern/79940 [panic] 5.3 with kernel debug causes pani f [2005/04/14] ports/79941 openoffice openoffice.org-1.1 1.1.4_1 binary package o [2005/04/14] i386/79943 i386 Very High interupt rate on PCM o [2005/04/16] kern/79988 darrenr [trap] page faults while in kernel mode o [2005/04/16] kern/80005 [re] re(4) network interface _very_ unpre o [2005/04/17] usb/80040 usb [hang] Use of sound mixer causes system f o [2005/04/17] kern/80042 FreeBSD 5.4 RC2: Promise PDC20265 on A7V o [2005/04/18] bin/80074 [patch] openssl(1): Bug in OpenSSL's sk_i o [2005/04/19] kern/80088 [smbfs] Incorrect file time setting on NT o [2005/04/19] amd64/80114 amd64 kldload snd_ich causes interrupt storm wh o [2005/04/20] kern/80136 [md] [crash] mdconfig can reboot the syst o [2005/04/20] kern/80166 ups [panic] Debugger SMP race panic f [2005/04/22] usb/80260 usb Travan USB tape drive fails to write o [2005/04/22] kern/80266 rwatson [ipx] [patch] IPX routing doesn't work o [2005/04/22] i386/80268 i386 [crash] System with Transmeta Efficeon cp o [2005/04/25] kern/80321 ups [kgdb] serial db problems o [2005/04/25] kern/80322 TCP socket support broken on a busy port o [2005/04/26] usb/80361 usb mounting of usb-stick fails o [2005/04/26] usb/80373 usb usb keyboard does not respond o [2005/04/26] kern/80381 5.4 RC3 can't allocate ps/2 irq, no psm, o [2005/04/27] bin/80389 kuriyama rpc.lockd brokenness o [2005/04/27] sparc64/80410sparc64 [netgraph] netgraph is causing crash with o [2005/04/28] i386/80426 acpi [APIC] [panic] 5.4-RC3 still panic when b o [2005/04/28] threads/80435threads panic on high loads o [2005/04/30] kern/80469 [smbfs] mount_smbfs causes freebsd to reb o [2005/05/01] kern/80519 [ntfs] Write capability for ntfs filesyst o [2005/05/03] kern/80572 [bridge] bridge/ipfw works intermittantly o [2005/05/06] amd64/80691 amd64 amd64 kernel hangs on load o [2005/05/06] kern/80694 [kbd] [patch] atkbd looped on Acer Travel o [2005/05/06] kern/80714 drop/boot to single user hangs on 5.4-REL o [2005/05/07] kern/80739 Strange panic (keyboard related?) on 5.4 o [2005/05/08] kern/80742 [pecoff] [patch] Local DoS in sys/compat/ o [2005/05/08] kern/80784 mux [fxp] fxp gives device timeouts o [2005/05/08] bin/80798 mount_portal pipe leaves file descriptors o [2005/05/09] usb/80829 usb possible panic when loading USB-modules o [2005/05/10] docs/80843 doc [patch] psm(4): Suggested fix for psm0 / o [2005/05/10] kern/80853 [ed] [patch] add support for Compex RL200 o [2005/05/10] usb/80862 usb [patch] USB locking issues: missing some o [2005/05/11] sparc64/80890sparc64 [panic] kmem_malloc(73728): kmem_map too o [2005/05/11] bin/80913 ipfw [patch] /sbin/ipfw2 silently discards MAC s [2005/05/12] kern/80932 [em] [patch] Degraded performance of em d f [2005/05/13] kern/80969 glebius [panic] Repeatable double fault panic aft o [2005/05/13] kern/80980 [i386] [patch] problem in "sys/i386/inclu o [2005/05/13] i386/80989 i386 Cannot install 5.4-RELEASE both in my sys o [2005/05/14] kern/81000 [apic] Via 8235 sound card worked great w o [2005/05/14] kern/81019 [re] re(4) RealTek 8169S32 behaves errati o [2005/05/14] amd64/81037 amd64 SATA problem o [2005/05/16] kern/81095 IPsec connection stops working if associa p [2005/05/16] i386/81111 i386 /boot/loader causes reboot due to CFLAGS+ o [2005/05/17] kern/81146 multimedia [sound] Sound isn't working AT ALL for Si f [2005/05/17] kern/81147 linimon [em] [patch] em0 reinitialization while a o [2005/05/18] kern/81180 [bktr] bktr(4) driver cannot capture both o [2005/05/18] kern/81202 glebius nmap scan causes box to get immediately r o [2005/05/18] kern/81207 [if_ndis] NDIS wrapper doesn't probe buil o [2005/05/18] i386/81215 i386 X Freeze on Dell Inspiron 9100 with Radeo o [2005/05/19] kern/81232 [panic] vrele: negative ref o [2005/05/19] i386/81235 i386 /sys/i386/conf/GENERIC needs "options ASR o [2005/05/19] threads/81258threads Thread specific data is sometimes assigne o [2005/05/20] kern/81301 problems with new "contigmalloc" routine o [2005/05/20] usb/81308 usb [ugen] [patch] polling a ugen(4) control o [2005/05/20] i386/81311 i386 [smp] [hang] Athlon MP SMP + 3ware + em0 o [2005/05/20] kern/81322 [lnc] [hang] lnc driver causes lockups o [2005/05/20] kern/81324 darrenr [panic] "Duplicate free of item %p from z o [2005/05/23] bin/81389 brian ( usermode ppp ) LCP Negotiation Never Fi o [2005/05/23] bin/81390 ( usermode ppp ) LCP Negotiation Never Fi o [2005/05/27] kern/81539 The fxtv program freezes systems o [2005/05/28] amd64/81602 amd64 SATA crashes with parallel pcm access o [2005/05/28] kern/81606 darrenr ipnat fails to start after upgrade to REL o [2005/05/30] kern/81644 [vge] vge(4) does not work properly when o [2005/05/31] gnu/81689 Unable to connect via SSH using protocol o [2005/06/01] kern/81770 cel [nfs] Always "NFS append race" at every N o [2005/06/02] kern/81807 [sio] Silo overflows with serial multipor o [2005/06/04] conf/81882 [patch] missing terminal definition for w o [2005/06/04] kern/81887 scsi [aac] Adaptec SCSI 2130S aac0: GetDeviceP o [2005/06/04] i386/81903 i386 Installer hangs on all menu entries on To o [2005/06/06] kern/81943 des [kernel] [patch] _assert_sbuf_integrity c o [2005/06/07] bin/81997 ntpd fails to bind to IP-address o [2005/06/08] i386/82029 i386 Boot Loader installation on MegaRAID cont o [2005/06/08] kern/82043 multimedia [sound] snd_emu10k1 - mixer does not work o [2005/06/09] kern/82064 anholt [drm] DRM not working with SMP o [2005/06/09] amd64/82071 amd64 incorrect -march's parameter to build 32b f [2005/06/13] usb/82198 usb Panic on attaching of ONKI N-338 USB MP3 o [2005/06/13] bin/82207 [patch] tcpslice(1) incorrectly handles d o [2005/06/14] kern/82219 [panic] in dumping if watchdog enabled. o [2005/06/14] kern/82227 [digi] Xem: chained concentrators not rec a [2005/06/15] bin/82263 compat 4x broken after last update o [2005/06/15] kern/82271 pf [pf] cbq scheduler cause bad latency f [2005/06/15] usb/82272 usb Can not recognize Casio camera EX-Z40 as o [2005/06/15] i386/82285 i386 [race] kernel panic during reboot f [2005/06/15] docs/82296 doc ttys(5) man page misleads about use for n o [2005/06/17] usb/82350 usb [usb] null pointer dereference in USB sta o [2005/06/19] amd64/82425 amd64 [fxp] fxp0: device timeout, fxp interface o [2005/06/20] kern/82442 [panic] Fatal trap 12 in em driver on 4.1 o [2005/06/21] kern/82464 [pccard] Sony Ericsson GC75 GPRS MODEM no o [2005/06/21] kern/82468 Using 64MB tcp send/recv buffers, traffic o [2005/06/21] kern/82491 [bootp] [patch] bootpd shouldn't ignore r o [2005/06/21] kern/82497 [vge] vge(4) on AMD64 only works when loa o [2005/06/22] usb/82520 usb Reboot when USL101 connected o [2005/06/23] amd64/82555 amd64 Kernel Panic - after i connect to my "amd o [2005/06/23] usb/82569 usb [usb] USB mass storage plug/unplug causes o [2005/06/25] kern/82649 [panic] some request to DVDROM causes ker o [2005/06/25] standards/82654standards C99 long double math functions are missin o [2005/06/26] usb/82660 usb EHCI: I/O stuck in state 'physrd'/panic o [2005/06/26] bin/82667 burncd doesn't abort on error conditions o [2005/06/26] kern/82668 ATA timeouts on 5.4-stable o [2005/06/28] bin/82720 [patch] Incorrect help output from growfs o [2005/06/28] kern/82755 [panic] during periodic ncvs.sh script at o [2005/06/29] ports/82759 delphij Source navigator installs in wrong direct o [2005/06/30] kern/82805 cel [nfs] [panic] sched_switch ched_4bsd.c:86 s [2005/06/30] kern/82806 darrenr ipnat doesn't handle out of order fragmen o [2005/07/01] kern/82846 phk Kernel crash in 5.4 with SMP,PAE o [2005/07/02] kern/82881 [netgraph] [panic] ng_fec(4) causes kerne o [2005/07/03] kern/82919 [bridge] [patch] Bridge configuration upd o [2005/07/04] bin/82975 route change does not parse classfull net o [2005/07/05] amd64/83005 amd64 Memory Occupied during installation of th o [2005/07/05] kern/83017 [modules] snd_ich freezes system when bei p [2005/07/07] bin/83085 des [patch] double free() in openpam o [2005/07/07] kern/83098 'vrele: negative ref cnt' in shutdown wit o [2005/07/07] kern/83107 [libc] [patch] libc uuid_compare() doesn' o [2005/07/09] ports/83183 olgeni webmin/perl coredumps o [2005/07/09] bin/83195 nvi loses edited file on network disconne o [2005/07/11] ports/83252 openoffice openoffice.org-1.1 1.1.4 build failure: D o [2005/07/11] kern/83254 [digi] driver can't init Digiboard PC/4e o [2005/07/12] kern/83319 [panic] system crash on heavy hard disk l o [2005/07/12] bin/83336 [patch] libc's parse_ncp() don't check ma o [2005/07/12] bin/83338 [patch] libc's getent() don't check for m o [2005/07/12] bin/83340 [patch] setnetgrent() and supporting func o [2005/07/12] bin/83344 [patch] Improper handling of malloc failu o [2005/07/12] bin/83347 [patch] improper handling of malloc failu o [2005/07/12] bin/83348 [patch] Improper handling of malloc failu o [2005/07/12] bin/83349 [patch] improper handling o malloc's fail o [2005/07/12] bin/83359 [patch] improper handling of malloc failu o [2005/07/13] bin/83364 [patch] improper handling of malloc failu o [2005/07/13] kern/83368 [ipx] [patch] incorrect handling of mallo o [2005/07/13] bin/83369 [patch] incorrect handling of malloc fail o [2005/07/13] kern/83375 phk Fatal trap 12 cloning a pty o [2005/07/13] kern/83384 failure of non-essential IDE partitions c o [2005/07/13] kern/83406 [smp] em/bge drivers: severe performance o [2005/07/14] bin/83426 [ PATCH ] improper handling of malloc fai o [2005/07/14] kern/83429 [ath] ath(4) does not work with the D-Lin o [2005/07/14] kern/83464 [geom] [patch] Unhandled malloc failures o [2005/07/15] kern/83499 fragmented packets does not pass through o [2005/07/15] usb/83504 usb [usb] SpeedTouch USB stop working on rece f [2005/07/15] kern/83521 pjd GEOM_STRIPE Error On Boot o [2005/07/16] kern/83552 [panic] Fatal trap 19 on ti0 when SMP is o [2005/07/16] bin/83558 kernbb(8): usr.sbin/kernbb doesn't compil o [2005/07/16] usb/83563 usb [panic] Page Fault while detaching Mpman o [2005/07/16] i386/83574 i386 installation failure o [2005/07/17] kern/83586 [if_ndis] [panic] ndis panic with Intel P f [2005/07/18] kern/83671 Can't get comconsole to work properly on o [2005/07/18] usb/83677 usb [usb] usb controller often not detected ( o [2005/07/19] i386/83735 i386 [re] network card (realtek 8139) and soun o [2005/07/19] usb/83756 usb Microsoft Intellimouse Explorer 4.0A does o [2005/07/20] kern/83761 [panic] vm-related panic: blst_radix_free f [2005/07/20] ports/83767 tobez lang/perl5.8: Perl5.8.7 coredumps on Text o [2005/07/21] i386/83826 i386 can't install any version on Toshiba Satt o [2005/07/22] threads/83914threads [libc] popen() doesn't work in static thr o [2005/07/22] i386/83925 i386 [boot] can't boot Dell Latitude D610 afte o [2005/07/22] kern/83930 sam crypto_q_mtx recursion when unloading hif o [2005/07/24] usb/83977 usb [ucom] [panic] ucom1: open bulk out error o [2005/07/24] i386/84008 i386 /dev/X? should be /dev/ad1s* o [2005/07/24] kern/84015 [agp] [hang] Nforce3-250Gb freezes on Fre o [2005/07/25] amd64/84027 obrien if_nve gets stuck o [2005/07/25] kern/84052 [modules] [hang] 5.4-STABLE - kldunload s o [2005/07/25] i386/84088 i386 Panic with nforce2 platform on FreeBSD 6. o [2005/07/26] kern/84102 gnn FreeBSD 6.0 BETA 1 install Panic's in VMW o [2005/07/26] kern/84133 [panic] amd64, while making ports (trace o [2005/07/26] kern/84135 pjd [panic] ggatec destroy panics BETA-1 p [2005/07/27] kern/84163 [mlx] 6.0-BETA1 mlx driver don't find any o [2005/07/28] kern/84202 [ed] [patch] Holtek HT80232 PCI NIC recog o [2005/07/28] bin/84217 brian "enable proxy" is ignored in ppp.conf p [2005/07/28] conf/84221 Wrong permissions on /etc/opiekeys o [2005/07/29] i386/84303 i386 boot sometimes stops at "uhci0: 3.5GB o [2005/08/05] kern/84584 [re] re(4) spends too much time in interr o [2005/08/05] kern/84589 [2TB] 5.4-STABLE unresponsive during back o [2005/08/07] kern/84637 pjd [geom] [patch] GEOM LABEL sometimes doesn o [2005/08/07] kern/84656 [panic] when kern.maxdsiz is => hw.physme o [2005/08/08] bin/84668 qa [sysinstall] ssh and sysinstall problem o [2005/08/08] kern/84673 cel [nfs] NFS client problem "Stale NFS file o [2005/08/09] i386/84717 i386 [hang] 5.4-rel booting locks-up on Superm p [2005/08/10] kern/84740 tjr [libc] regcomp("\254") fails o [2005/08/11] kern/84799 [fdc] [patch] can't read beyond track 0 o o [2005/08/11] bin/84816 patch(1) inserts a line in the wrong plac o [2005/08/11] kern/84818 atapi cd: hangup with motor switched on a o [2005/08/12] amd64/84832 amd64 Installation crashes just at boot AMD64/ o [2005/08/13] kern/84861 [ipw] [patch] still can't get working ipw o [2005/08/14] amd64/84930 amd64 [msdosfs] something wrong with msdosfs on o [2005/08/14] docs/84932 doc new document: printing with an Epson ALC- o [2005/08/15] usb/84936 usb install - usb keyboard not recognized o [2005/08/15] i386/84943 i386 "Invalid Partition Table" Intel ICH6 SATA o [2005/08/15] kern/84953 kuriyama [nfs] NFS locking issue in RELENG_6/i386/ o [2005/08/15] kern/84954 imp [CARDBUS] cbb alloc res fail (with hw.car o [2005/08/15] kern/84964 cel [nfs] nfs4 mount doesn't handle NFS4ERR_G o [2005/08/15] kern/84965 cel [nfs] nfs4 mount generates NFS4ERR_BAD_SE o [2005/08/15] kern/84968 cel [nfs] programs on nfs4 mounts won't execu o [2005/08/16] kern/85005 Network interrupt after shutdown method h o [2005/08/17] kern/85042 [smbfs] mount_smbfs: can't get handle to o [2005/08/18] i386/85072 i386 [psm] ps/2 Mouse detection failure on com o [2005/08/19] i386/85101 i386 [libm] nearbyint always returns nan o [2005/08/19] bin/85115 byacc generates uncompileable file o [2005/08/19] kern/85123 [iir] Improper serialization in iir_ioctl o [2005/08/19] kern/85137 [pseudofs] [patch] panic due to sleep wit f [2005/08/20] ports/85155 cy security/tripwire clobbers config files o o [2005/08/20] threads/85160threads [libthr] [patch] libobjc + libpthread/lib o [2005/08/23] kern/85258 mux [fxp] changing promisc mode on nic can le o [2005/08/24] kern/85266 [xe] [patch] xe(4) driver does not recogn o [2005/08/26] kern/85320 [gre] [patch] possible depletion of kerne o [2005/08/26] kern/85326 [smbfs] [panic] saving a file via samba t o [2005/08/27] alpha/85346 alpha PREEMPTION causes unstability in Alpha400 o [2005/08/28] kern/85366 [msdosfs] [patch] MSDOSFS doesn't mark vo o [2005/08/29] amd64/85431 amd64 AMD64 has short but temporary freezes (ha o [2005/08/29] kern/85434 firewire [fwip] fwip (IP over firewire) doesn't wo o [2005/08/29] kern/85444 IPv6 crash, possibly related to destroyin o [2005/08/29] i386/85450 i386 panic: subdisk6 detached (appears to be a o [2005/08/29] amd64/85451 amd64 [hang] 6.0-BETA3 lockups on AMD64 (PREEMP o [2005/08/29] i386/85454 i386 Panic while booting: No virtual memory fo o [2005/08/30] kern/85464 Cannot unmount file-backed disk imported o [2005/08/30] kern/85493 imp [ed] [patch] OLDCARD can't probe ed drive o [2005/09/05] kern/85728 [trap] Crashes on 6.0 when copying data b o [2005/09/05] ports/85730 danfe nvidia-driver eats the /usr/X11R6/lib/mod o [2005/09/05] kern/85751 [devfs] [panic] panic in devfs_setattr() o [2005/09/05] kern/85768 gibbs aic79xx driver timeouts with U160 target o [2005/09/05] ia64/85772 ia64 [gpt] gpt (geom_) needs to adopt g_ctl s [2005/09/06] ports/85779 edwin fmsx 3.0 is unstable (reboting, freezing o [2005/09/06] kern/85791 kernel panic, page fault in kernel mode o [2005/09/06] bin/85796 des pam doesn't work correctly after Upgrade f [2005/09/06] kern/85804 [panic] after chown -R from chrooted shel o [2005/09/06] kern/85809 panic: mutex "ipf state entry" already in o [2005/09/06] bin/85810 nslookup/dig Hang and processes cannot be o [2005/09/06] kern/85813 timeout waiting for read DRQTrying to mou o [2005/09/06] kern/85816 maxproc=1 in login.conf causes kernel pan o [2005/09/07] bin/85830 des [patch] pam_exec incorrectly works with v s [2005/09/07] ports/85850 cperciva portsnap extract silently deletes Makefil o [2005/09/08] i386/85866 i386 [hang] bootloader freezes on Pentium2/3 o [2005/09/09] kern/85894 cel [nfs] [panic] nfs_timer / nfs_socket.c:11 o [2005/09/09] ports/85905 perky mod_python3 pthread_attr_destroy failure o [2005/09/10] kern/85931 panic: "vm_fault: fault on nofault entry" o [2005/09/10] i386/85938 i386 Install fails, unable to write partitions o [2005/09/10] i386/85944 i386 FreeBSD restarts after showing "Welcome t s [2005/09/11] kern/85975 [cam] devfs does not create entries when o [2005/09/11] kern/85993 [panic] emulators/kqemu panics 6.0-BETA4 o [2005/09/12] bin/86012 kpasswd(1) fails if one of the KDC are un o [2005/09/12] usb/86031 usb need support usb nic rt2500 in my 5.4 STA o [2005/09/13] kern/86055 FreeBSD 6.0 beta4 install panic:bio alrea o [2005/09/13] kern/86065 jmg [kqueue] system reboot without sync (and o [2005/09/13] kern/86067 jeff [sched_ule] 6.0-BETA4 hangs while trying f [2005/09/13] kern/86072 pf [pf] Packet Filter rule not working prope o [2005/09/13] amd64/86080 amd64 [radeon] [hang] radeon DRI causes system o [2005/09/14] kern/86103 darrenr [ipfilter] Illegal NAT Traversal in IPFil o [2005/09/14] kern/86107 [procfs] [panic] unrhdr has N allocations o [2005/09/17] kern/86261 brian 'out of buffer space' after many PPPoE re o [2005/09/18] kern/86306 [em] [patch] if_em.c locks up while tryin o [2005/09/19] i386/86325 i386 [install] unable to install FreeBSD on IB o [2005/09/19] kern/86330 [ipsec] [panic] panic in ESP code s [2005/09/20] kern/86361 thompsa [bridge] bridge(4) does not work with VLA o [2005/09/20] i386/86380 i386 i386_set_ioperm doesn't take effect immed o [2005/09/20] ports/86383 openoffice Can't compile openoffice.org-1.1 o [2005/09/21] kern/86411 scottl [amr] Very low performance of amr(4) unde f [2005/09/21] ports/86421 clement Apache-2.0.54_4 PHP popen hangs o [2005/09/21] kern/86423 truckman backgroud fsck leaves incorrect free bloc o [2005/09/21] kern/86427 gnn LOR / Deadlock with FASTIPSEC and nat o [2005/09/22] bin/86456 arp(8) program hangs o [2005/09/23] amd64/86503 amd64 [atapicam] [panic] k3b crash the system l o [2005/09/23] bin/86514 awk -vVAR=val doesn't work without space f [2005/09/24] bin/86518 qa [sysinstall] USB keyboard not supported f [2005/09/24] kern/86525 FreeBSD 6.0BETA5 hangs after boot up syst o [2005/09/25] kern/86550 csjp [panic] kernel (w/ UFS_EXTATTR* and UFS_A s [2005/09/26] kern/86596 daichi [unionfs] unionfs -b brokes file modes o [2005/09/26] kern/86598 [patch] Bug in OpenSSL Padlock Engine o [2005/09/26] i386/86612 i386 SCSI DAT Drive Issue o [2005/09/27] kern/86619 linux emulator interacts oddly with cp o [2005/09/27] i386/86651 i386 FAILURE ATA-IDENTIFY o [2005/09/28] i386/86667 i386 GNOME Battery Applet causing keyboard to f [2005/09/28] ports/86687 tobez Perl ithreads coredump o [2005/09/28] bin/86690 kientzle bsdtar sparse file problems f [2005/09/30] kern/86746 cognet watch/snp don't work in 6.0 o [2005/09/30] kern/86763 [ucom] kernel: ucom0: ucomwritecb: IOERRO o [2005/09/30] usb/86767 usb [usb] bogus "slice starts beyond end of t o [2005/10/01] kern/86775 system reboot without syncing f [2005/10/01] kern/86779 linimon taskqueue_enqueue_fast uses spinlock on s o [2005/10/01] i386/86806 i386 Couldn't alloc kernel virtual memory o [2005/10/03] kern/86848 [pf][multicast] destroying active syncdev o [2005/10/04] i386/86880 i386 [hang] 6.0 hangs or reboots whilst 5.4 is o [2005/10/05] i386/86920 i386 [ndis] ifconfig: SIOCS80211: Invalid argu o [2005/10/05] kern/86944 cel [nfs] [patch] When I use FreeBSD with NFS o [2005/10/06] kern/87010 pjd Reading kernel memory & pagefault under n p [2005/10/06] kern/87014 csjp BPF_MTAP/bpf_mtap are not threadsafe and o [2005/10/07] i386/87085 i386 Will not install on Microtel system s [2005/10/07] kern/87094 5.4 system with SMP and IPFW crashes unde o [2005/10/08] usb/87099 usb panic: ohci_add_done: addr 0x000d1bf0 not o [2005/10/08] kern/87107 Boot process will not complete with IPSEC p [2005/10/08] amd64/87112 peter Boot problems on a 16 processor AMD64 com o [2005/10/08] i386/87122 i386 Installer of 6.0-BETA5 can't find HDD par o [2005/10/09] i386/87155 i386 [boot] [panic] Can't Alloc Virtual Memory o [2005/10/09] amd64/87156 amd64 First Installation: Kernel crashes o [2005/10/10] kern/87194 [fxp] fxp(4) promiscuous mode seems to co o [2005/10/11] kern/87248 [iwi] Data-corruption while using WEP on o [2005/10/11] kern/87255 [md] [panic] large malloc-backed mfs cras o [2005/10/11] amd64/87258 amd64 [smp] [boot] cannot boot with SMP and Are o [2005/10/12] amd64/87305 amd64 [smp] Dual Opteron / FreeBSD 5 & 6 / powe o [2005/10/12] amd64/87316 amd64 [vge] "vge0 attach returned 6" on FreeBSD a [2005/10/12] amd64/87328 amd64 [boot] BTX halted error o [2005/10/12] amd64/87348 amd64 amd64+smp+startkde always crashing o [2005/10/13] i386/87356 i386 6.0 RC1 cannot see 250GB drive o [2005/10/13] i386/87364 scottl [aac] aac controller stopped working betw o [2005/10/13] kern/87368 [msdosfs] fat32 is very slow o [2005/10/13] ports/87397 edwin incorrect use of PAPERSIZE make variable o [2005/10/13] ports/87404 nork Adobe Reader no longer works with www/lin o [2005/10/13] kern/87413 [iwi] 6.0-RC1: "ifconfig iwi0 mode 11g up o [2005/10/14] kern/87421 [netgraph] [panic]: ng_ether + ng_eiface o [2005/10/15] amd64/87472 amd64 I downloaded 5.4 and went to install it, o [2005/10/16] kern/87506 [vr] [patch] Fix alias support on vr inte o [2005/10/16] amd64/87514 amd64 6.0-CURRENT freezes machine using >4GB on o [2005/10/16] usb/87519 usb [kbd] cannot install on USB-only system o [2005/10/16] kern/87521 darrenr [ipfilter] [panic] using ipfilter "auth" o [2005/10/16] kern/87544 geom [gbde] mmaping large files on a gbde file o [2005/10/17] usb/87565 usb [PATCH] Support for Vodaphone 3G/UMTS car o [2005/10/17] i386/87568 acpi [ACPI] [REGRESSION] 6.0-STABLE needs ACPI o [2005/10/17] i386/87576 i386 no installation on Acer aspire 1304xc lap o [2005/10/17] kern/87586 [diskless] [panic] Unable to use networke f [2005/10/18] kern/87596 [panic] OS crash on a Firefox link click f [2005/10/18] misc/87598 make release broken o [2005/10/18] i386/87630 i386 [ndis] No match for NdisIMGetCurrentPacke o [2005/10/18] ports/87631 sobomax zaptel modules loading crashes FreeBSD 6. o [2005/10/19] i386/87654 i386 Marvell Yukon 88E8036 NIC not detected by a [2005/10/19] kern/87658 IO::AIO test suite loops infinitely on 5. o [2005/10/19] amd64/87689 amd64 [powerd] [hang] powerd hangs SMP Opteron o [2005/10/20] kern/87727 [panic] 6.0-RC1 coredumps o [2005/10/20] bin/87729 phk most calls to malloc(3) generate warnings o [2005/10/20] i386/87750 i386 [boot] btx halted error while installatio o [2005/10/20] kern/87758 [ath] [hang] Reboot problem with atheros f [2005/10/21] kern/87791 Kernel crash when running df o [2005/10/21] bin/87792 [patch] very bad performance of cp(1) via f [2005/10/22] kern/87846 5.4 will NOT work with any other os on di o [2005/10/23] kern/87859 [smbfs] System reboot while umount smbfs. o [2005/10/23] i386/87876 i386 Installation Problems for i368 Compaq R30 o [2005/10/24] bin/87911 kientzle tar(1): internal error o [2005/10/25] amd64/87977 amd64 [busdma] [panic] amd64 busdma dflt_lock c s [2005/10/25] ports/87978 portmgr *_DEPENDS gets broken after changing (LOC o [2005/10/25] kern/87986 pjd [geom] [hang] gmirror and quota will hang o [2005/10/25] ports/87996 nork www/linuxpluginwrapper: Flash 7 kills epi o [2005/10/26] kern/88045 jhb [nve] [patch] 6.0rc1: nve0: device timeou o [2005/10/26] kern/88047 [asr] [panic] 6.0-RC1 reboots with SMP an o [2005/10/27] kern/88082 [ath] [panic] cts protection for ath0 cau o [2005/10/27] gnu/88087 c++filt(1) dumps core on a trivial string o [2005/10/28] ports/88115 x11 ivview (installed by inventor port) end i o [2005/10/28] i386/88124 i386 [hang] X -configure freezes 6.0rc1 o [2005/10/28] i386/88130 i386 [hang] Machine hangs on dhcp o [2005/10/28] i386/88139 i386 [i386] feature request: 53C875 Chipset HP o [2005/10/30] kern/88213 [panic] Hang followed by Panic on 6.0-RC1 o [2005/10/30] bin/88215 [patch] syslogd(8) does not pass cleanly o [2005/10/31] kern/88266 [smbfs] smbfs does not implement UIO_NOCO o [2005/10/31] kern/88268 [bpf] yet another null pointer in bpf cod o [2005/10/31] amd64/88299 amd64 swapcontext fails with errno 0 o [2005/11/01] i386/88315 i386 [sym] [hang] Symbios/LSI-HBA (SYM83C895) o [2005/11/03] i386/88459 i386 [panic] Fatal trap 19 (process: idle: cpu s [2005/11/03] ports/88462 lawrance math/GiNaC: ginsh crashes during startup o [2005/11/03] kern/88472 [panic] panic/reboot in 5.4-STABLE o [2005/11/04] kern/88487 [panic] softdep_setup_inomapdep: found in o [2005/11/04] kern/88496 [iwi] iwi0: fatal error - have to reboot o [2005/11/05] kern/88518 rodrigc cannot mount root rw at boot o [2005/11/05] bin/88524 openssl can not work with smtp.gmail.com o [2005/11/06] kern/88555 [panic] ffs_blkfree: freeing free frag on f [2005/11/06] amd64/88568 amd64 [panic] 6.0-RELEASE install cd does not b o [2005/11/07] i386/88583 i386 i can't install freebsd in server ibm xse o [2005/11/07] i386/88610 i386 FreeBSD 6.0 bootonly crashes during boot o [2005/11/08] docs/88636 trhodes handbook instruction could shut down name o [2005/11/08] bin/88655 /bin/tcsh ls-F : Floating exception (core o [2005/11/08] kern/88657 [smbfs] windows client hang when browsing o [2005/11/08] kern/88659 ipfw [modules] ipfw and ip6fw do not work prop o [2005/11/09] i386/88717 i386 freebsd 5.4 boots from lsi 53c1030 only i o [2005/11/09] kern/88718 [aac] [timeout] unable to install on RAID o [2005/11/09] usb/88743 usb [hang] USB makes kernel hang at boot (reg f [2005/11/09] amd64/88746 amd64 Buffer problem with SSH2 under amd64 arch o [2005/11/09] i386/88755 i386 [panic] FreeBSD R6.0 on ThinkPad R40 inst o [2005/11/10] amd64/88790 amd64 kernel panic on first boot (after the Fre o [2005/11/10] kern/88793 [wlan] wlan(4) broken, sends corrupted pa o [2005/11/10] i386/88808 i386 V6.0 crashing on install with ICH7 RAID 5 o [2005/11/11] kern/88823 [modules] atapicam - kernel trap 12 on lo o [2005/11/11] i386/88853 i386 [hang] SMP system FreeBSD 6.0-STABLE cras p [2005/11/11] kern/88856 rwatson [nfs] XDR/RPC breaks when sending msgs > o [2005/11/12] bin/88873 [2TB] gpt create fails "bogus map" "unkno o [2005/11/12] kern/88882 [ndis] ndis IF tx/rx and other problems i o [2005/11/13] kern/88914 [hang] system freeze during file transfer o [2005/11/13] kern/88917 [ipw] ipw can not work in adhoc mode o [2005/11/13] i386/88929 i386 FreeBSD 6.0 install CD fails to find disk o [2005/11/13] kern/88937 [ndis] ifconfig ndis does not show the co o [2005/11/14] usb/88966 usb kldunload ucom.ko returns "Device busy" e o [2005/11/14] usb/89003 usb LaCie Firewire drive not properly support p [2005/11/14] bin/89012 [libz] FreeBSD-6.0 is still using zlib-1. o [2005/11/15] kern/89069 [panic] kernel panic when putting load on o [2005/11/15] kern/89070 [panic] NULL m passed to m_copym() in ip_ s [2005/11/15] ports/89074 x11 Segmentation Violation during "make insta o [2005/11/16] kern/89102 geom [geom_vfs] [panic] panic when forced unmo a [2005/11/16] gnu/89103 gcc segmentation fault errors -- ??memory o [2005/11/16] bin/89144 [sysinstall] failed to install 2 packages o [2005/11/16] kern/89179 Random reboots on Dell PowerEdge 6300 o [2005/11/17] kern/89207 problem install fresbsd, hard disk geomet o [2005/11/18] usb/89218 usb flash disk o [2005/11/18] i386/89249 i386 HighPoint RocketRAID 1520 (HPT372N) can't o [2005/11/18] kern/89258 [mouse] synaptic touchpad support "worse" p [2005/11/19] threads/89262threads [kernel] [patch] multi-threaded process h o [2005/11/19] bin/89267 kientzle Problem with bsdtar(1) o [2005/11/19] kern/89271 [radeon][agp][hang] X.org hangs when heav o [2005/11/19] i386/89288 i386 [acpi] DMA error while booting with acpi o [2005/11/20] ports/89308 apache [patch] www/mod_accounting crash on reque o [2005/11/20] kern/89310 [panic] kmem_malloc fails with "kmem_map o [2005/11/21] i386/89340 i386 [panic] 6.0-STABLE (2005-11-07) panic whe o [2005/11/21] i386/89353 i386 [ata] invalid disk controller recognition o [2005/11/21] kern/89355 [md] mdconfig -t vnode filesystem mount p o [2005/11/21] kern/89368 el portatil se queda completamente colgad o [2005/11/21] i386/89383 i386 [sio] [panic] page fault o [2005/11/21] ports/89393 openoffice can't install OpenOffice 2.0.0 from port o [2005/11/21] kern/89396 [reboot] remounting cdrom causes reboot o [2005/11/22] bin/89410 [PATCH] sh(1) missing \u interpolation an o [2005/11/23] kern/89447 Serial console speed not working properly o [2005/11/24] amd64/89501 amd64 System crashes on install using ftp on lo o [2005/11/24] amd64/89503 amd64 Cant Boot Installation Disk o [2005/11/25] kern/89528 bz [jail] impossible to kill a jail o [2005/11/25] kern/89538 phk [tty] [panic] triggered by "sysctl -a" o [2005/11/25] amd64/89546 amd64 [geom] GEOM error o [2005/11/25] amd64/89549 amd64 [amd64] nve timeouts on 6.0-release o [2005/11/25] amd64/89550 amd64 [amd64] sym0: VTOBUS failed (6.0 Release) o [2005/11/26] conf/89589 secteam virecover follows hardlinks, possibly exp o [2005/11/26] kern/89597 [ata] uncorrectable ATA disc errors can b o [2005/11/27] kern/89633 [sis] [panic] if_sis panic under extended o [2005/11/28] kern/89660 le [patch] [panic] due to g_malloc returning o [2005/11/28] kern/89688 [wi] wi0 cbb remove bug: Danger Will Robi o [2005/11/30] kern/89752 [bpf] [patch] bpf_validate() needs to do s [2005/11/30] kern/89755 daichi [unionfs] [hang] Jailed process deadlocks o [2005/11/30] kern/89775 [kevent] [hang] kevent hangs on second wa o [2005/11/30] gnu/89777 send-pr(1) lies about saved reports o [2005/12/01] kern/89784 phk [patch] [panic] 6.0-RELEASE panics when a o [2005/12/01] bin/89808 brian malformed Framed-IPv6-Prefix crashes ppp( o [2005/12/02] kern/89864 [vr] [panic] if_vr panic under FreeBSD 6 o [2005/12/03] kern/89876 [txp] [patch] txp driver doesn't work wit o [2005/12/03] kern/89878 [pccard] [patch] pccard.c:pccard_safe_quo o [2005/12/03] kern/89880 wpaul [ndis] ndis interface stops rx/tx while l o [2005/12/04] kern/89918 [iwi] [panic] Kernel panic with if_iwi In o [2005/12/05] usb/89954 usb [usb] USB Disk driver race condition? o [2005/12/05] kern/89966 rodrigc [ntfs] [panic] mounting ntfs causes kerne o [2005/12/05] amd64/89968 amd64 [ata] Asus A8N-E MediaShield RAID problem f [2005/12/05] usb/89997 usb [umass] [panic] panic on iPod mini detach f [2005/12/06] kern/90050 [boot] boot -s drops serial console at sh o [2005/12/07] i386/90059 i386 panic in 2 mins after power on PC o [2005/12/07] i386/90065 i386 [wi] System hangs if wireless card wasn't o [2005/12/07] kern/90086 [hang] 5.4p8 on supermicro P8SCT hangs du f [2005/12/07] ports/90088 clement Buildconflict with apr-svn, libtool and a o [2005/12/08] bin/90093 geom fdisk(8) incapable of altering in-core ge o [2005/12/08] kern/90096 [net] [patch] arp mixup if carp and bridg o [2005/12/09] i386/90134 i386 [irq] IDE and SATA disks not detected on o [2005/12/09] usb/90162 usb [usb] [patch] Add support for the MS Wire o [2005/12/10] kern/90167 [em] adding aliases to em0 interfaces cau o [2005/12/10] ports/90184 openoffice Install of OpenOffice 2.0.0 fails o [2005/12/10] kern/90206 [ata] [crash] Server reboot after "FAILUR o [2005/12/10] kern/90214 multimedia [sound] memory leaks in snd_via8233 o [2005/12/11] kern/90237 [panic] kernel panic on startx command o [2005/12/11] ports/90259 roam Error when upgrading mail/vpopmail o [2005/12/12] threads/90278threads libthr, ULE and -current produces >100% W o [2005/12/12] kern/90279 [nge] Appletalk and 0x090007 OUI enet fra o [2005/12/12] kern/90282 scsi [sym] SCSI bus resets cause loss of ch de o [2005/12/13] kern/90330 [linux] linux_compat /dev system freeze p f [2005/12/14] ports/90399 ports-bugs vmware2 port not working on FreeBSD 6.0 o [2005/12/15] kern/90442 [panic] kmem_alloc fails kmem_map: too sm o [2005/12/15] ports/90454 nobutaka libxine 1.1.1 Ports build fails o [2005/12/16] i386/90519 i386 Resume after suspend results in g_vfs_don a [2005/12/17] kern/90526 Can't updata from 5.4-p8 to 6.0release o [2005/12/18] kern/90582 geom [geom_mirror] [panic] Restore cause panic o [2005/12/19] bin/90656 qa [sysinstall] 6.0-RELEASE (i386) cannot be o [2005/12/20] usb/90700 usb Kernel panic on connect/mount/use umass d o [2005/12/21] ports/90730 girgen databases/postgresql[0-9]*: check USE_PGS o [2005/12/21] bin/90736 [libc] dlfunc can not be defined in libc o [2005/12/21] ports/90743 glewis jdk-1.5.0p2_3 compilation failure o [2005/12/21] ports/90748 nobutaka xine-lib-1.1.1compilation failure o [2005/12/21] ports/90759 openoffice cannot save ANY file with "de-openoffice. o [2005/12/21] ports/90777 sergei textproc/xmlto fails to produce most form p [2005/12/22] kern/90800 maxim [kernel] [patch] it is possible to fake c o [2005/12/22] kern/90815 [smbfs] [patch] SMBFS with character conv o [2005/12/23] kern/90837 [pcm] PCM - ICH6 - device is busy, but ol o [2005/12/23] bin/90846 problem in using cu command on 4.11 freeB f [2005/12/23] conf/90863 dougb [patch] 6.0 boot: name resolution broken o [2005/12/24] kern/90890 [vr] Problems with network: vr0: tx shutd o [2005/12/25] bin/90903 [powerd] cpufreq inconsistency / powerd b o [2005/12/27] i386/90949 i386 [panic] kernel panic with opera o [2005/12/27] kern/90973 thompsa [net] [patch] if_bridge does not handle a o [2005/12/28] kern/91023 [sysctl] cpufreq/p4tcc: sysctl: dev.cpu.0 o [2005/12/29] i386/91038 i386 [panic] 6.0-RELEASE on Fujitsu Siemens Am o [2005/12/29] ports/91067 obrien editors/vim - PATCH to conditionally enab f [2006/01/01] kern/91160 mjacob [mpt] system hangs with: mpt0: Request 0x o [2006/01/02] kern/91196 [panic] kernel panic with firewall o [2006/01/02] kern/91229 [feature request] PAN (piconet) Bluetooth o [2006/01/02] usb/91238 usb USB tape unit fails to write a second tap o [2006/01/02] kern/91242 [msdosfs] panic: rofs mod when remounting o [2006/01/03] usb/91263 usb [patch] USB quirk needed for Logitec USB o [2006/01/03] kern/91266 threads [threads] Trying sleep, but thread marked o [2006/01/03] i386/91282 i386 6.0R install CD crashes at eip=0x90db (Pr o [2006/01/03] usb/91283 usb booting very slow with usb devices connec o [2006/01/04] kern/91290 sos [ata] ata(4) error on 7.0-CURRENT-2005122 o [2006/01/04] kern/91311 [aue] aue interface hanging o [2006/01/05] i386/91331 i386 system hangs after citrix_ica_client(wfcm o [2006/01/05] kern/91339 [psm] mousedriver do not recognize aditio o [2006/01/05] kern/91364 [wep] WF-511 RT2500 Card PCI and WEP a [2006/01/06] ports/91378 lioux net-p2p/mldonkey-sancho does not work wit o [2006/01/06] amd64/91405 amd64 [asr] [panic] Kernel panic caused by asr o [2006/01/06] kern/91407 [crypto] [panic] Kernel panic when heavil o [2006/01/06] kern/91408 [irq] ata(4) failure: SETFEATURES SET TRA o [2006/01/06] kern/91417 [ibcs2] No carba el módulo iBCS2 al arran o [2006/01/08] amd64/91492 amd64 BTX halted o [2006/01/08] bin/91536 sos burncd(8): burncd -t feature strangeness o [2006/01/09] usb/91538 usb Unable to print to EPSON CX3500 o [2006/01/09] www/91539 www FreeBSD web site renders very badly o [2006/01/09] kern/91568 [ufs] [panic] writing to UFS/softupdates o [2006/01/09] kern/91572 [ufs] [panic] writing to UFS/softupdates o [2006/01/10] kern/91580 fstat(2) not working properly in 6.0? o [2006/01/10] www/91585 jkoshy I can't find BSD Users Bangalore user gro o [2006/01/10] ports/91588 ahze ports/textproc/p5-xmltv error f [2006/01/10] kern/91597 darrenr [ipfilter] PC crashed after cold reboot i o [2006/01/11] bin/91622 dds cp(1) does not update atime of the source o [2006/01/12] kern/91723 [ata] IDE corruption on ICH controller, a o [2006/01/13] conf/91732 [patch] 800.loginfail: fix log message gr o [2006/01/13] i386/91745 i386 Second processor not detected on Proliant o [2006/01/13] i386/91748 i386 acpi problem on Acer TravelMare 4652LMi ( o [2006/01/13] kern/91760 FAST_IPSEC stops system under high traffi o [2006/01/13] bin/91762 vipw(8): it is possible to add a user nam o [2006/01/14] amd64/91799 pjd ggated core dumps on amd64 after client c o [2006/01/16] ia64/91846 ia64 TLS: malloc(3) exposes DTLS bug in non-th o [2006/01/16] kern/91859 [if_ndis] if_ndis does not work with Asus p [2006/01/16] kern/91879 alfred [patch] Panic in nfs_putpages() on 6-stab o [2006/01/16] kern/91881 panic at boot o [2006/01/16] sparc64/91882sparc64 Ultra 10 mouse/keyboard o [2006/01/17] usb/91906 usb FreeBSD hangs while booting with USB lega p [2006/01/17] gnu/91909 tjr grep(1): grep -w bug (with some locales) o [2006/01/17] kern/91910 scottl [aac] aac driver hangs on Dell PE800 with o [2006/01/17] kern/91914 [ata] Disk System Crashes - Raid Disk o [2006/01/17] kern/91919 [pccbb] pccbb does not supply appropriate o [2006/01/18] kern/91942 [re] [panic] ifconfig causes panic on re( o [2006/01/18] bin/91954 [libpam] [patch] Proposed enhancement for o [2006/01/18] conf/91959 incorrect cross-install ?(/usr/src/etc/Ma o [2006/01/19] kern/92000 [ntfs] [panic] Panic caused by mounting m o [2006/01/20] sparc64/92033sparc64 [dc] dc(4) issues on Ultra10 o [2006/01/20] kern/92039 sysctl -a causes panic o [2006/01/20] kern/92040 scottl [udf] mmap/cp fails on small file in UDF o [2006/01/20] usb/92052 usb usbd causes defunct process with busy fil o [2006/01/20] bin/92058 ssh(1): FreeBSD 6 release Xeon SCSI ssh d f [2006/01/20] kern/92059 [jail] ps(1) "Bus error" under jail o [2006/01/20] kern/92070 imp [pccard] wi0: No irq?! with LG 11Mbps Wir o [2006/01/20] ports/92071 x11 Problem with Xorg and SIS630/730 integrat o [2006/01/20] bin/92074 top(1) aborts in redzone o [2006/01/21] kern/92083 [ural] [panic] panic using WPA on ural NI f [2006/01/21] ports/92088 itetcu lang/ruby18 hangs during build o [2006/01/21] kern/92090 [bge] bge0: watchdog timeout -- resetting o [2006/01/21] kern/92092 [iicbus] [patch] Panic if device with iic o [2006/01/21] kern/92104 [panic] kernel panic near readlink syscal o [2006/01/22] kern/92127 Kernel crash o [2006/01/22] ports/92135 anholt graphics/dri: make fails on 4.x o [2006/01/22] ports/92137 x11 x11-server/xorg-{server,nestserver,prints o [2006/01/22] usb/92142 usb SET_ADDR_FAILED and SHORT_XFER errors fro o [2006/01/22] ports/92157 perky www/mod_python3 uses deprecated Apache ma o [2006/01/22] kern/92164 scottl [ips] SCSI target mode LOR a [2006/01/22] ports/92169 x11 Xorg 6.9, Matrox mga, dri broken (MGAGetB o [2006/01/22] usb/92171 usb [panic] panic unplugging Vodafone Mobile o [2006/01/23] i386/92193 i386 Can't boot from 6.0 Installation CD: BTX o [2006/01/23] ports/92218 openoffice openoffice.org-2.0 build fails with shlib f [2006/01/24] conf/92252 order the packets in freebsd 6 with ipfw o [2006/01/24] kern/92269 [md] [panic] panic with mdconfig and moun o [2006/01/24] kern/92272 [ffs] [hang] Filling a filesystem while c o [2006/01/24] kern/92279 [dc] Core faults everytime I reboot, poss o [2006/01/25] kern/92292 [md] [hang] Heavy IO on a md-backed files o [2006/01/25] i386/92303 i386 [ips] Cannot install FreeBSD 6 on an IBM o [2006/01/26] amd64/92337 amd64 FreeBsd 6.0 Release Intel Pro 1000 MT em1 o [2006/01/26] kern/92351 [iwi] page fault in iwi after ACPI resume o [2006/01/26] kern/92368 LOR in opencrypto/crypto.c p [2006/01/27] conf/92433 brooks [patch] /etc/network.subr cannot handle i o [2006/01/28] kern/92440 Kernel fault in knote when getty opens a o [2006/01/28] ports/92478 nork net/DarwinStreamingServer admin does not o [2006/01/30] kern/92518 Intense disk activity (large FS newfs and o [2006/01/30] kern/92552 net A serious bug in most network drivers fro s [2006/01/31] ports/92592 portmgr Revert USE_FAM default to fam o [2006/01/31] kern/92599 BUG: IEEE 802.3 compliance of autonegotia o [2006/02/01] ports/92672 x11 X.org 6.9.0 brak down sync mga_hal dirver o [2006/02/01] kern/92675 [fxp] [patch] fxp(4) unable to recover fr o [2006/02/01] kern/92690 andre [net] slowstart_flightsize ignored in 6-S o [2006/02/01] ports/92704 anholt graphics/dri: dri-6.4.1,2 fails to build f [2006/02/01] ports/92706 ports-bugs vmware3 panic on 6.0-RELEASE o [2006/02/02] kern/92716 [hifn] [hang] hifn driver hangs after a s o [2006/02/02] kern/92750 [nwfs] Files in mounted Netware filesyste o [2006/02/02] kern/92751 [cam] [reboot] 5.4 crashes after camcontr o [2006/02/03] kern/92776 glebius [carp] kernel-crash using carp o [2006/02/04] kern/92785 Using exported filesystem on OS/2 NFS cli o [2006/02/04] kern/92786 sos [patch] ATA fixes, write support for LSI o [2006/02/04] kern/92792 [tcp] kernel crash with high number of TC o [2006/02/04] kern/92795 [panic] lockmgr panic during sys_exit fil o [2006/02/04] kern/92798 scsi [ahc] SCSI problem with timeouts o [2006/02/05] bin/92839 roberto [ntp] [patch] contrib/ntp PARSE buffer ov o [2006/02/06] amd64/92889 amd64 [libc] xdr double buffer overflow o [2006/02/07] kern/92949 pf [pf] PF + ALTQ problems with latency o [2006/02/07] gnu/92952 tjr grep core dump. f [2006/02/07] kern/92960 kernel page fault o [2006/02/07] kern/92966 imp [cardbus] cardbus.ko loading failed o [2006/02/07] amd64/92991 amd64 FreeBSD(amd64) freezes when primary disk o [2006/02/08] kern/93019 [ppp] ppp and tunX problems: no traffic a o [2006/02/09] ports/93071 x11 x11-servers/xorg-server: Resume fails on o [2006/02/09] kern/93081 [jail] netstat -i fails to report bytes o o [2006/02/09] kern/93083 [firewire] Detach of Firewire Harddisk no o [2006/02/09] bin/93085 support for ACLs (and extattr) missing in f [2006/02/10] kern/93125 sam [ath] ath0 times out periodically o [2006/02/10] kern/93128 scsi [sym] FreeBSD 6.1 BETA 1 has problems wit o [2006/02/10] usb/93155 usb /dev/ulpt0: device busy USB printer doe o [2006/02/11] kern/93170 Changing system date causes panic in nd6_ o [2006/02/11] kern/93199 [kernel] [patch] missing linux rt_sigtime o [2006/02/11] powerpc/93203ppc FreeBSD PPC Can't Write to Partitions. f [2006/02/12] kern/93220 net [inet6] nd6_lookup: failed to add route f o [2006/02/12] kern/93236 dwmalone [netinet] [patch] Received out of window o [2006/02/12] ports/93253 glewis jdk 1.5 port build problem o [2006/02/13] ports/93274 ports-bugs net/nss_ldap: nss_ldap & nss_mysql cause o [2006/02/13] bin/93284 secteam [sysinstall] Insecure placement of user f o [2006/02/13] ports/93299 sobomax misc/zaptel: unload of zaptel kernel modu o [2006/02/13] kern/93300 ipfw ipfw pipe lost packets o [2006/02/13] kern/93305 Machine freezes solid running dhcpclient o [2006/02/14] bin/93317 ld-elf.so doesn't translate unresolved we o [2006/02/15] kern/93380 almost all not polling NICs are doing dev o [2006/02/15] i386/93385 i386 Fatal trap 12 occasionally on reboot (Abi o [2006/02/15] kern/93394 [twa] boot loader hangs in boot-menu on s o [2006/02/15] kern/93396 dlopen crash with locked page o [2006/02/15] usb/93408 usb hw.acpi.cpu.cx_lowest=C3 on AMD Turion ca o [2006/02/16] amd64/93413 amd64 lpd does not remove lock file from /var/s f [2006/02/16] kern/93423 matteo [jail] Applying devfs rulset fails o [2006/02/16] kern/93431 imp [pccard] dc interface attach failed after f [2006/02/17] kern/93458 [smbfs] mount_smbfs(8) fails with authent o [2006/02/17] kern/93461 [smp] Intel 440LX SMP freeze (regression o [2006/02/17] amd64/93469 amd64 uninitialised struct stat in lpd prevents f [2006/02/17] usb/93496 usb USB2.0 umass stalls on VIA o [2006/02/18] i386/93524 i386 Automatic reboot f [2006/02/18] kern/93526 IPv6 Multicast Listener Reports (MLD6 Rep o [2006/02/18] sparc64/93530pf Incorrect checksums when using pf's route o [2006/02/19] gnu/93566 tjr [patch] sort(1): numeric sort is broken o o [2006/02/19] kern/93567 [vr] Via Rhine : Asymetric Bandwith o [2006/02/20] bin/93603 [patch] restore(8) fails if /tmp fills o [2006/02/21] i386/93615 i386 Operating system wont install. Problem w o [2006/02/21] gnu/93629 tjr GNU sort(1) tool dumps core within non-re o [2006/02/21] usb/93640 usb device ehci causes interrupt storm on thi o [2006/02/22] kern/93685 [pipe] select on pipe write fails from '0 f [2006/02/22] ports/93722 hrs Apparent Missing Dependancy in print/acro o [2006/02/23] kern/93750 [ips] Boot hangs on ips0: resetting adapt o [2006/02/23] i386/93752 i386 Cannot activate the serial ports on boot o [2006/02/23] i386/93762 i386 Machine lockup at boot loader countdown o o [2006/02/24] kern/93771 [ar] [panic] atacontrol status ar1 causes o [2006/02/24] bin/93776 [crypto] [patch] SHA256_Update / SHA512_U o [2006/02/24] ports/93777 x11 Starting xorg-server requires reloading s o [2006/02/24] i386/93787 i386 freebsd 6.0 hangs on atkbd0 on Proliant 1 o [2006/02/24] kern/93791 [xl] xl0: watchdog timeout with 3CFE575BT o [2006/02/24] i386/93809 i386 panic: could not copy LDT on RELENG_5_3 t o [2006/02/25] usb/93828 usb ohci causes panic on boot (HP Pavillion d p [2006/02/25] kern/93829 glebius [carp] pfsync state time problem with CAR o [2006/02/26] i386/93845 i386 cross-machine installworld broken in sys/ o [2006/02/27] kern/93885 [ata] ata(4) failure: SETFEATURES SET TRA o [2006/02/27] kern/93886 [ath] Atheros/D-Link DWL-G650 long delay o [2006/02/27] kern/93893 [re] Boot panic from Netgear GA311 o [2006/02/27] conf/93899 mount_smbfs can't load libiconv.so during o [2006/02/27] kern/93910 [netinet6] Kernel bug (Crash), possibly i o [2006/02/27] kern/93914 [socket] panic: uipc 3 o [2006/02/28] i386/93923 i386 [ata] FreeBSD Install, Sil3112: Cannot du o [2006/02/28] kern/93942 [vfs] [patch] panic: ufs_dirbad: bad dir o [2006/02/28] usb/93949 usb ugen(4)-related repeatable kernel panic i o [2006/03/01] amd64/93961 amd64 [busdma] Problem in bounce buffer handlin o [2006/03/01] ports/93966 doceng Better RTF support & CJK TeX support of t o [2006/03/01] kern/93978 [ipw] wireless card can not work in adhoc o [2006/03/01] i386/93989 i386 Can't install FreeBSD from IEEE1394 DVD-R o [2006/03/01] kern/93998 [libstand] [patch] panic in libstand when o [2006/03/02] kern/94020 andre [tcp] tcp_timer_2msl_tw NULL pointer dere o [2006/03/03] ports/94044 ports-bugs emulators/vmware2: running $PREFIX/etc/rc o [2006/03/06] kern/94139 scottl [amr] [regression] amr broken with LSILog o [2006/03/06] i386/94141 i386 [iwi] iwi doesn't work on Acer Laptop o [2006/03/06] kern/94146 [ohci] fwohci parity error crashes kernel o [2006/03/07] kern/94155 [ata] 6.1 CF reader problem: "ad1: FAILUR o [2006/03/07] kern/94162 [bge] 6.x kenel stale with bge(4) o [2006/03/07] usb/94166 usb btx halted with a flashcard plugged o [2006/03/07] kern/94196 [dc] if_dc panics on bad hardware o [2006/03/08] bin/94252 [rpc] rpc.lockd cannot cancel lock reques o [2006/03/09] kern/94256 cel [nfs] nfs locking/rpc.lockd doesn't under o [2006/03/09] bin/94258 [rpc] O_NONBLOCK may block with rpc.lockd o [2006/03/09] ports/94270 openoffice I cant make OpenOffice.org-2.0 p [2006/03/09] kern/94272 imp exca(4) caused panic o [2006/03/09] kern/94279 multimedia [snd_neomagic] snd_neomagic crashes on Fr f [2006/03/11] kern/94307 [bge] kernel panics when passing trafffic o [2006/03/11] i386/94364 i386 [kbd] Unable to boot on NX9110 laptop o [2006/03/11] kern/94373 [ural] if_ural.c:93: error: `USB_PRODUCT_ o [2006/03/12] kern/94380 [em] Laptop panics, related to networking o [2006/03/12] usb/94384 usb kernel panic with usb2 hardware o [2006/03/12] kern/94393 PseudoRAID loses track of the master disk p [2006/03/13] kern/94408 thompsa [if_bridge] [patch] if_bridge breaks prox o [2006/03/13] i386/94420 i386 FreeBSD does NOT support the pcChips M925 o [2006/03/13] kern/94426 [ata] Cannot blank CDs with Samsung TS-L5 o [2006/03/14] kern/94446 FreeBSD 6.0 crash with forkbomb (regressi s [2006/03/15] threads/94467threads send(), sendto() and sendmsg() are not co o [2006/03/18] bin/94635 snapinfo/libufs only works for disk-backe o [2006/03/18] i386/94653 i386 Fatal trap 12: page fault while in kernel o [2006/03/19] kern/94669 [vfs] [patch] Panic from Failed Removable o [2006/03/19] amd64/94677 amd64 panic in amd64 install at non-root user c o [2006/03/20] usb/94717 usb Reading from /dev/ulpt can break work of o [2006/03/20] standards/94729standards fcntl() throws undocumented ENOTTY o [2006/03/20] usb/94742 usb [umass] [patch] umass driver does not rec o [2006/03/20] bin/94750 watch(1) utility faults when tty disconne o [2006/03/21] kern/94769 [ufs] Multiple file deletions on multi-sn o [2006/03/21] kern/94772 [fifo] [patch] FIFOs (named pipes) + sele o [2006/03/21] usb/94813 usb mounting write-protected umass device fre o [2006/03/22] bin/94815 [patch] [sysinstall] Upping the network i o [2006/03/22] ports/94826 ade [patch] Very slow startup for libtool ltd a [2006/03/22] kern/94827 [libc] mmap with given (void *addr) may l o [2006/03/22] kern/94838 scsi Kernel panic while mounting SD card with o [2006/03/23] kern/94863 [bge] [patch] hack to get bge(4) working o [2006/03/24] kern/94890 Fatal trap 18: integer divide fault while s [2006/03/24] bin/94892 [rpc] rpc.lockd does not interoperate wit o [2006/03/24] ports/94894 ports-bugs multimedia/fxtv causes freeze and reboot o [2006/03/24] amd64/94896 amd64 Where support VESA Modes for AMD64 kernel o [2006/03/24] usb/94897 usb Kernel Panic when cleanly unmounting USB o [2006/03/24] kern/94898 [pcmcia] GPRS PCMCIA card cause interrupt f [2006/03/24] ports/94905 ports-bugs Change GraphicsMagick so that it's symbol o [2006/03/24] bin/94909 gshapiro timeout issues after sendmail(1) patches o [2006/03/24] i386/94911 i386 [ata] ata regression with DOM-IDE o [2006/03/26] kern/94977 Kernel panic during normal server operati o [2006/03/27] amd64/94989 amd64 BTX Halts on Sun Fire X2100 w/6.1-BETA4 ( o [2006/03/27] kern/95002 [libc] hash db source code has a bug whic o [2006/03/28] conf/95017 Timezone rules are out of date. o [2006/03/28] i386/95021 i386 PAE enabled kernel boot panic o [2006/03/28] kern/95023 [ata] Hard Drives not recognized by 6.0 C f [2006/03/28] ports/95040 tmclaugh build of lang/mono segfaults p [2006/03/28] bin/95041 maxim [patch] for mrouted(8) subnet mask checki o [2006/03/28] amd64/95056 amd64 Nvidia Nforce ETH Driver -> Timeout Error f [2006/03/29] ports/95081 ports-bugs Problem with enabling logwtmp on POPtop o [2006/03/29] kern/95084 ipfw [ipfw] [patch] IPFW2 ignores "recv/xmit/v o [2006/03/29] i386/95087 i386 System freeze irrespective of load on Pro o [2006/03/30] kern/95098 Can't upgrade system from 5.4 to 6.1 f [2006/03/30] ports/95119 skv databases/firebird-server fails to build o [2006/03/30] usb/95131 usb Boot/setup process does not accept key st o [2006/03/31] i386/95151 i386 Fatal trap 12: page fault while in kernel o [2006/03/31] amd64/95167 amd64 driver for SuperMicro H8DAR-T (Adaptec AI p [2006/03/31] bin/95175 kientzle bsdtar(1) core dump on non-existing symli f [2006/04/01] kern/95184 sos [ata] Intel ICH7 support broke in 6.1 BET o [2006/04/03] kern/95247 [rpc] NFS file locking problem, rpc.lockd o [2006/04/03] kern/95260 [ata] Wrong array detection for LSI v3 SA o [2006/04/03] docs/95261 doc Correction to handbook section 26.5.19.2 o [2006/04/03] docs/95262 doc Correction to handbook section 26.5.20 Po o [2006/04/03] docs/95263 doc Correction to handbook section 26.5.21.3 o [2006/04/03] docs/95265 doc Correction to handbook section 26.5.16 IP o [2006/04/03] kern/95287 [modules] When using NETSMB without SMBFS o [2006/04/03] kern/95288 [tty] [panic] panic in sys/kern/tty_subr. o [2006/04/04] sparc64/95297sparc64 vt100 term does not work in install o [2006/04/04] kern/95307 gnn [netipsec] Panic (race condition?) in ips o [2006/04/05] bin/95339 [libexec] [patch] rtld is thread-unsafe. o [2006/04/05] kern/95342 sos [ata] Unable to run smartd after last com o [2006/04/05] kern/95344 sos [ata] burncd(8) failed to fixate cd after o [2006/04/05] usb/95348 usb USB keyboard unplug causes noise on scree f [2006/04/05] kern/95357 emax [if_tap] knlist of vmnet device is incorr o [2006/04/05] kern/95368 [kernel] [patch] Test for race between ca o [2006/04/06] kern/95392 [ndis] Kernel panic loading ndisgen-creat o [2006/04/06] kern/95405 [libkvm] libkvm does not support /dev/fwm o [2006/04/06] docs/95408 remko install over serial console does not work o [2006/04/06] amd64/95414 amd64 kernel crashes during install o [2006/04/06] kern/95417 [netgraph] [patch] ng_fec doesn't allow j o [2006/04/07] kern/95459 Rebooting the system while rebuilding RAI o [2006/04/07] kern/95462 sam [net80211] Memory leak in ieee 802.11 sta o [2006/04/07] ports/95492 ports-bugs repocopy request: math/vtk-headers to mat o [2006/04/08] kern/95512 [uplcom] uplcom(4) causes system hangups o [2006/04/08] i386/95515 i386 unable to boot FreeBSD 6.x with SATA150 P o [2006/04/08] kern/95519 [ral] ral0 could not map mbuf f [2006/04/09] ports/95536 girgen can not install postgresql 7.2.7 on FreeB o [2006/04/09] ports/95541 roam /usr/ports/net/djbdns WITH_IPV6 queries i o [2006/04/09] kern/95554 sos [ata] undetected sata drive on 6.1, detec o [2006/04/10] usb/95562 usb Write Stress in USB Mass drive cause: [v o [2006/04/10] ports/95566 obrien ports/bash mishandles PREFIX (patch) o [2006/04/10] ports/95584 perky [patch] bsd.python.mk: A port's "USE_ZOPE o [2006/04/11] usb/95636 usb [boot] 5 minute delay at boot when using o [2006/04/12] kern/95661 [pci] [patch] pci_pci still not correct f o [2006/04/12] kern/95665 glebius [if_tun] "ping: sendto: No buffer space a o [2006/04/13] gnu/95691 GDB segfaults on my programme in both Fre o [2006/04/13] bin/95692 GDB in base of both FreeBSD 6 and 5 is an o [2006/04/13] kern/95699 Kernel panics with sbdrop f [2006/04/13] kern/95704 sam [iwi] regression in 802.11 stack o [2006/04/13] kern/95710 [iwi] iwi wont roam o [2006/04/14] kern/95738 [msdosfs] no support for big msdos disks o [2006/04/15] kern/95771 geom [geom] geom mirror provider destroyed (ma o [2006/04/15] kern/95804 kldstat -m fails and succeeds randomly o [2006/04/16] amd64/95888 amd64 kernel: ad2: TIMEOUT - WRITE_DMA retrying o [2006/04/16] kern/95891 [coda] [panic] kernel panic when coda6_cl o [2006/04/16] sparc64/95892sparc64 MAC address of hme interfaces is ff:ff:ff o [2006/04/17] ports/95962 glewis Can't compile jdk15 under -current f [2006/04/17] i386/95964 i386 cannot boot 6.X o [2006/04/17] ports/95969 ports-bugs net/gastman doesn't compile with newest n o [2006/04/18] i386/96014 i386 HP Pavilion zv5000(Intel) reboot installa o [2006/04/19] kern/96030 [bfe] [patch] Install hangs with Broadcom o [2006/04/19] kern/96042 Kernel panics with sbdrop o [2006/04/19] i386/96049 i386 Generic SMP Kernel Panic in 6.1-RC1 durin o [2006/04/20] ports/96088 portmgr Ports .mk files do not run fetch in passi o [2006/04/20] ports/96111 glebius net/mpd4: caught fatal signal bus o [2006/04/20] usb/96120 usb USB mouse not always detected o [2006/04/22] kern/96157 Subtle incompatability of FreeBSD and LIT o [2006/04/22] ports/96160 clement www/apache22 is started before named o [2006/04/23] usb/96224 usb [usb] mount_msdosfs cause page fault in s o [2006/04/23] i386/96225 i386 Toshiba M70-CL3 Hangs Up During Booting o [2006/04/24] conf/96247 matteo [patch] 550.ipfwlimit reports logs even i o [2006/04/24] kern/96268 [socket] TCP socket performance drops by o [2006/04/24] kern/96286 [cbb] [panic] TI1131 PCI CardBus Bridge: o [2006/04/25] ports/96295 rushani shells/scponly cannot work with rsync o [2006/04/25] i386/96302 i386 [ata] nVidia nForce CK804 SATA300 control o [2006/04/25] kern/96322 [re] re driver false positives on the loo o [2006/04/26] kern/96349 Kernel panic after power break reboot o [2006/04/26] i386/96357 i386 FreeBSD cannot recognize all the logical o [2006/04/26] i386/96371 i386 Freeze up when booting FBSD 6.0 RELEASE o o [2006/04/26] i386/96382 i386 [bge] In 6.1-RC1 the bge driver does not o [2006/04/27] ports/96387 kuriyama net-mgmt/net-snmp fails to build o [2006/04/27] bin/96393 [libz] [patch] assembler implementations o [2006/04/27] amd64/96400 amd64 FreeBSD 6.0 Bootin Conflict between Broad o [2006/04/27] ports/96407 joerg [PATCH] devel/avr-gcc-devel fails to buil o [2006/04/27] bin/96412 [rpc] 2 rpc.lockds launched at boot ? blo o [2006/04/27] kern/96413 FreeBSD 6.1-RC Kernel Panic o [2006/04/28] usb/96457 usb fatback on umass = reboot o [2006/04/28] gnu/96481 obrien [patch] native ld(1) does not look for sh o [2006/04/30] kern/96538 multimedia [sound] emu10k1-driver inverts channels f [2006/04/30] ports/96543 ports-bugs [PATCH] emulators/vmware3: fix checking f f [2006/05/01] ports/96613 ports-bugs misc/linux-opengroupware doesn't install o [2006/05/02] i386/96652 i386 kernel page fault o [2006/05/02] kern/96657 Panic : FreeBSD 5.3-RELEASE-p5 o [2006/05/03] kern/96715 [em] [fxp] low speed if speed/duplex set o [2006/05/03] kern/96741 IP forwarding halts o [2006/05/04] ports/96755 mharo math/p5-Math-Pari o [2006/05/04] kern/96767 Automatic KDE boot can crash system when o [2006/05/04] sparc64/96798sparc64 sunkbd does not support "kbdcontrol -k" o [2006/05/05] kern/96806 [bge] [patch] Correction of kernel panic o [2006/05/05] kern/96840 [libc] [patch] getgrent() does not return o [2006/05/06] i386/96870 i386 Crash on loader with ibm intellistation z o [2006/05/07] kern/96927 [loader] Loader(8) cause kernel death on o [2006/05/08] ports/96966 x11 Fatal server error: xf86EnableIO: Failed o [2006/05/08] kern/96981 reproducible instant reboot by unprivileg o [2006/05/09] conf/97014 gifconfig_gif? in rc.conf does not recogn o [2006/05/09] kern/97019 Cannot load the kernel after installation o [2006/05/09] i386/97025 i386 fbsd (2 cd) dont install in vmware 5.5.0 o [2006/05/09] ports/97053 jmz tix build fails with older tcl84 installe p [2006/05/09] kern/97056 [drm] [patch] PCIE radeon DRM doesn't cor o [2006/05/10] amd64/97075 amd64 Panic, Trap 12 p [2006/05/10] kern/97079 flz How to use jail_fstab is wrong in /etc/rc o [2006/05/10] ports/97084 x11 Xorg 6.9.0 Locks Up Keyboard and Mouse f [2006/05/10] ports/97090 perky Apache 2.0.55 with mod_python die only on p [2006/05/10] kern/97095 rwatson page fault on 6.1-RC2 ip_ctloutput o [2006/05/10] bin/97108 qa [sysinstall] write failure on transfer (w o [2006/05/11] i386/97127 i386 IBM Intellistation Z Pro crash when boot f [2006/05/11] ports/97143 clsung textproc/scim-table-imengine: doesn't com p [2006/05/12] conf/97166 flz Bug in /etc/rc.d/jail startup script o [2006/05/12] kern/97174 [patch] [umass] Y-E DATA USB-FDU quirk: n f [2006/05/13] i386/97191 i386 HP Pavilion PII System crash when install o [2006/05/13] kern/97208 [firewire] System hangs / locks up when a o [2006/05/13] docs/97229 blackend [patch] Handbook contains obsolete instru o [2006/05/14] ports/97254 sergei devel/porttools - wrong prefix o [2006/05/14] i386/97263 i386 [ata] FreeBSD only detects first drive p [2006/05/14] usb/97271 iedowse Fix Multiple ugen panics o [2006/05/14] kern/97277 [iso9660] Big files on DVDs are invisible o [2006/05/15] usb/97286 usb MS Wireless Intellimouse Explorer 2.0 doe o [2006/05/15] i386/97287 i386 Screen Corruption In FreeBSD 6.X When App f [2006/05/15] ports/97297 ports-bugs security/amavis-stats: FreeBSD 6.1 amavis f [2006/05/15] ports/97302 ports-bugs graphics/spcaview - freebsd port not work o [2006/05/15] kern/97306 [netgraph] NG_L2TP locks after connection o [2006/05/15] kern/97326 [linux] file descriptor leakage in linux f [2006/05/16] ports/97330 ports-bugs [PATCH] japanese/phpgroupware: install de o [2006/05/16] amd64/97337 amd64 xorg reboots system if dri module is enab o [2006/05/16] ports/97367 x11 vlc and gmplayer crash with X error f [2006/05/16] ports/97373 ports-bugs audio/openal: failed to update to openal- o [2006/05/17] bin/97392 ppp(8) hangs instead terminating f [2006/05/17] ports/97431 ports-bugs dns/powerdns doesn't build with LDAP back o [2006/05/19] bin/97499 one of sshd_config(5) options does not wo o [2006/05/19] kern/97504 ipfw [ipfw] IPFW Rules bug o [2006/05/20] kern/97517 [fdc] Floppy device lost permissions when o [2006/05/20] i386/97525 i386 System freezes when cable modem connected o [2006/05/20] kern/97535 multimedia [snd_mss] doesn't work in 6.0-RELEASE and o [2006/05/21] ports/97574 girgen www/mod_jk: mistake in sample mod_jk.conf f [2006/05/21] ports/97577 garga clamav freshclam dumps core when using li o [2006/05/22] i386/97589 i386 [ata] FAILURE - READ_DMA (regression from o [2006/05/22] kern/97591 6.1-RELEASE crashes on fork bomb s [2006/05/22] kern/97595 daichi [unionfs] FreeBSD 6.1-RELEASE - "lockmgr o [2006/05/22] kern/97616 [agp] 6.1-RELEASE FreeBSD does not recogn o [2006/05/23] kern/97665 [sio] hang in sio driver p [2006/05/23] kern/97679 glebius panic in ifconfig o [2006/05/23] kern/97686 [nfs] massive NFS server performance brea o [2006/05/23] kern/97699 daichi [unionfs] UNIONFS panic f [2006/05/24] i386/97766 linimon 3com fiber optic network card 3CR990B-FX- p [2006/05/24] bin/97768 rodrigc [nfs] NFS rpc.lockd will die automaticall o [2006/05/25] bin/97888 ceri [sysinstall] [patch] sysinstall - give 'd o [2006/05/25] kern/97918 [mouse] Scrollwheel on MX700 Mouse does n o [2006/05/25] kern/97921 rwatson [socket] close() socket deadlocks blocked o [2006/05/26] kern/97951 ipfw [ipfw] [patch] ipfw does not tie interfac o [2006/05/26] kern/97959 [smp] panic while booting SMP kernel o [2006/05/27] kern/97996 [ata] DMA is broken for VIA 82C596B UDMA6 o [2006/05/27] ports/98008 sergei Having set UTF-8 locale break build of se o [2006/05/27] amd64/98016 amd64 Buffer problem with SSH2 under amd64 o [2006/05/27] kern/98034 geom [geom] dereference of NULL pointer in acd f [2006/05/28] ports/98063 ports-bugs ImageMagick is out of date and old packag o [2006/05/29] kern/98078 [arp] Static arp entries may be ignored o [2006/05/29] bin/98082 burncd(8) fails on 6.1-Release o [2006/05/29] kern/98091 scottl [mfi] [patch] Makefile style of mfi kerne o [2006/05/29] kern/98093 geom [geli] Detaching gmirror/geli leads to pa p [2006/05/29] kern/98111 maxim [libc] [patch] /etc/groups: the parser di o [2006/05/30] docs/98115 doc Missing parts after rendering handbook to o [2006/05/30] ports/98127 ports-bugs ghostscript-gnu fails to build o [2006/05/30] i386/98154 i386 6-STABLE crashes when being online via mo o [2006/05/30] kern/98167 multimedia [sound] [es137x] [patch] ES1370 mixer vol f [2006/05/31] kern/98184 oleg [ipfw] ipfw add pass 224.0.0.0/4 multicas f [2006/05/31] ports/98199 pav print/cups-pstoraster's gs implementation o [2006/05/31] i386/98215 i386 [geode] regression: FreeBSD can no longer o [2006/05/31] kern/98216 sos [ata] Intel ICH6 SATA150 with FreeBSD 6.1 o [2006/05/31] bin/98218 [wpa] wpa_supplicant blacklist not workin o [2006/06/01] threads/98256threads gnome-system-monitor core dumps from pthr o [2006/06/01] sparc64/98269sparc64 Fresh 6.1 installation fails to boot o [2006/06/01] ports/98271 openoffice installing printers in editors/openoffice o [2006/06/01] ports/98276 kde I don't start the kdm when i have instal p [2006/06/01] kern/98298 glebius [kernel] panic: mutex gif softc not owned o [2006/06/01] misc/98310 after install the bootonly.iso, i have to o [2006/06/02] ports/98359 ale lang/php5: my php can't run ! f [2006/06/03] docs/98412 trhodes poor documentation? o [2006/06/03] ports/98435 ade aclocal does not see 3rd party m4 files ( o [2006/06/03] bin/98468 newsyslog(8): Value over 99 in newsyslog. o [2006/06/04] bin/98502 iostat(8) does not report statistics for o [2006/06/05] ports/98533 lev devel/subversion: build/linking problem o o [2006/06/05] ports/98539 ale devel/pear build error o [2006/06/05] docs/98541 doc tun man page references obsolite ioctl o [2006/06/05] bin/98542 pppd(8) daemon unexpectently died , Exit o [2006/06/07] kern/98622 [carp] carp with IPv6 broken on 6.1 (regr o [2006/06/08] kern/98694 alternate system clock dies o [2006/06/09] conf/98734 rc [patch] /etc/rc.subr restart_postcmd is f o [2006/06/09] kern/98738 [bge] [patch] if_bge.c Fail to collect li o [2006/06/09] kern/98742 geom [geli] IO errors while using geli o [2006/06/09] kern/98743 [ata] ATA panic and or timeout on IBM/Len f [2006/06/09] kern/98749 kib [nfs] NFS and QUOTA are bad bedfellows o [2006/06/09] kern/98752 multimedia [sound] Intel ich6 82801 FB - on Packard o [2006/06/09] conf/98758 rc [patch] Templatize 'jail_fstab' in /etc/r o [2006/06/09] i386/98765 i386 [ata] timeouts on sata drive o [2006/06/11] kern/98799 [netinet] fastforwarding routes packets t o [2006/06/11] kern/98831 ipfw [ipfw] ipfw has UDP hickups o [2006/06/12] ports/98843 ports-bugs cups-pstoraster fails build w/ WITH_GHOST o [2006/06/12] conf/98846 rc [patch] Templatize 'jail_rootdir' in /etc f [2006/06/12] kern/98858 [kernel] [patch] Local denial of service o [2006/06/12] kern/98869 [ata] can't burn with Lite-ON SOHW-832S D p [2006/06/12] kern/98872 des fetch(3) does not bind ip for ftp data st o [2006/06/12] kern/98875 [netgraph] ng_netflow not send data to fl o [2006/06/13] ports/98891 portmgr [PATCH] bsd.port.mk: Fix DESKTOP_ENTRIES o [2006/06/13] amd64/98893 amd64 cc error at -O2 on amd64/6-STABLE compili f [2006/06/13] ports/98895 ports-bugs [PATCH] net-mgmt/nagios-plugins: Fix chec o [2006/06/13] kern/98910 [kbd] keyboard not working at mountroot p o [2006/06/14] kern/98962 sos [ata] [patch] writing >1 session on ATAPI o [2006/06/15] i386/98964 i386 [iwi] iwi totally freezes system o [2006/06/15] gnu/98975 ncurses: tgetent leaks nearly 10 KB of me o [2006/06/15] kern/98978 darrenr [ipfilter] ipfilter drops OOW packets und o [2006/06/15] ports/98979 obrien [ patch ] editors/vim: update to 7.0 f [2006/06/15] ports/98988 gnome System exception: IDL:Bonobo/GeneralError f [2006/06/16] kern/99036 sam [ath] Long association time for 11b acces o [2006/06/16] kern/99064 [ste] [patch] ste driver does not support o [2006/06/17] ports/99067 ale [PATCH] finance/php4-pfpro: fix default c f [2006/06/17] kern/99085 linimon tgetent call affects ncurses o [2006/06/18] kern/99088 [ata] Critical Problems with VIA 8251 SAT o [2006/06/18] i386/99089 i386 Kernel Panic o [2006/06/18] kern/99094 panic: sleeping thread (Sleeping thread . o [2006/06/19] ports/99168 sem portupgrade: pkgdb -F fails when pkgdb.db o [2006/06/19] ports/99185 naddy Problem building audio/vorbis-tools on cl o [2006/06/19] kern/99188 net [tcp] [patch] FIN in same packet as dupli o [2006/06/20] ports/99196 sobomax misc/zaptel does not build f [2006/06/20] ports/99202 ports-bugs Unbreak port: math/vtk* o [2006/06/20] kern/99205 multimedia [snd_solo] FreeBSD 6.1 freezes after play o [2006/06/21] kern/99256 geom [geli] kernel panic/freeze with geli and o [2006/06/22] ports/99284 openoffice openoffice.org-2.0 fails on current becau o [2006/06/22] ports/99286 clsung ruby-ldap broken on amd64 o [2006/06/22] www/99305 bugmeister send-pr.html is frustrating/broken o [2006/06/22] ports/99323 multimedia jackd audio server broken? o [2006/06/23] ports/99370 portmgr USE_LDCONFIG fails installation for non-d o [2006/06/23] ports/99386 shaun gwave doesn't build on > 5.X o [2006/06/24] kern/99421 Option Globetrotter Fusion card not recog o [2006/06/24] ports/99424 ports-bugs [PATCH] MC's subshell doesn't work with s o [2006/06/24] ports/99428 ports-bugs [PATCH] Case insensetive search in mc doe o [2006/06/24] usb/99431 usb FreeBSD on MSI 6566E (Intel 845E motherbo f [2006/06/25] ports/99449 ports-bugs devel/apr-svn does not install or build l o [2006/06/25] ports/99460 ports-bugs CUPS 1.2.0: Unable to open USB device "us o [2006/06/25] ports/99462 emulation graphics/linux_dri - fetch error o [2006/06/25] ports/99465 gnome seahorse fails to sign an imported key - o [2006/06/25] ports/99466 ports-bugs GPA fails to sign newly imported GPG key o [2006/06/26] kern/99473 FreeBSD Kernel 4.11 does not compile o [2006/06/26] amd64/99475 amd64 Mail attachement was modified o [2006/06/26] kern/99484 enabling net.inet.ip.fastforwarding break 2048 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- a [1996/07/07] bin/1375 eivind [patch] Extraneous warning from mv(1) s [1996/10/14] kern/1791 tegge syslimits.h does not allow overriding def s [1996/11/23] bin/2090 clients may bind to FreeBSD ypserv refusi s [1996/12/02] bin/2137 tegge vm statistics are bad s [1996/12/27] kern/2298 [sio] [patch] support for DSR/DCD swappin s [1996/12/30] kern/2325 quota.user enlarged, no boot on 2.2-BETA a [1997/02/02] bin/2641 wpaul login_access.c doesn't work with NIS by d o [1997/02/19] kern/2768 ktrace(1) -i dumps corrupted trace data o [1997/03/11] bin/2934 sh(1) has problems with $ENV o [1997/07/02] kern/4012 [nfs] 2.2-RELEASE/Digital UNIX NFSv3 0 le o [1997/07/18] bin/4116 Kerberized login as .root fails to s [1997/07/26] bin/4172 des suggest reconnection option added to fetc s [1997/07/28] kern/4184 [netatalk] [patch] minor nits in sys/neta o [1997/07/30] kern/4194 kernel pci driver for Digital 21041 Ether o [1997/08/29] bin/4419 man can display the same man page twice o [1997/08/30] bin/4420 imp find -exedir doesn't chdir for first entr o [1997/09/25] bin/4629 grog calendar doesn't print all dates sometime o [1997/09/28] bin/4646 qa [sysinstall] can't fixit with an NFS-moun o [1997/10/16] kern/4782 Under certain conditions, several krsh's o [1997/11/13] bin/5031 gad lpr does not remove original file if -s i s [1997/11/28] bin/5173 [PATCH] restore ought to deal with root s s [1997/12/15] bin/5296 slattach fails creating pidfile with ioct o [1998/01/12] bin/5483 Login(1) clears utmp entry o [1998/01/27] kern/5577 bde Unnecessary disk I/O and noatime ffs fixe o [1998/01/27] kern/5587 des session id gets dropped o [1998/01/31] bin/5609 gad lpd cannot send long files to HP's JetDir f [1998/02/11] bin/5712 /bin/chio code cleaup and option added o [1998/02/14] bin/5745 nik [PATCH] Add /usr/local/share/mk to defaul o [1998/02/28] kern/5877 kbyanc sb_cc counts control data as well as data f [1998/04/19] conf/6346 linimon Kernel version strings need to relate to s [1998/05/17] kern/6668 babkin [patch] new driver: Virtual Ethernet driv s [1998/05/29] bin/6785 place for all the default dump flags a [1998/07/01] bin/7136 markm kerberized telnetd doesn't use gettytab % s [1998/07/10] bin/7232 qa [sysinstall] suggestion for FreeBSD insta s [1998/07/12] kern/7264 gibbs [scsi] Buslogic BT 950 scsi card not dete o [1998/07/13] bin/7265 [patch] A warning flag is added to ln(1). o [1998/07/15] bin/7287 Incorrect domain name for MAP_UPDATE in m a [1998/07/20] bin/7324 mtm Suggestions for minor modifications to ad s [1998/08/10] kern/7556 sl_compress_init() will fail if called an s [1998/08/13] bin/7606 [patch] NIS Makefile.dist: NOPUSH replace o [1998/09/09] bin/7868 [patch] morse(6): Morse Code Fixups o [1998/09/18] bin/7973 gad lpd: Bad control file owner in case of re f [1998/10/30] kern/8498 dwmalone Race condition between unp_gc() and accep o [1998/11/27] bin/8867 qa [sysinstall] [patch] /stand/sysinstall co a [1998/12/18] bin/9123 pax can't read tar archives that contain s [1998/12/29] bin/9233 gmp's mpq_add and mpq_sub are buggy o [1999/01/19] kern/9570 dfr [ed] [patch] ed(4) irq config enhancement o [1999/01/22] kern/9619 rodrigc Restarting mountd kills existing mounts o [1999/01/25] kern/9679 fix for uninterruptible open in portal fi s [1999/01/29] bin/9770 jmallett [patch] An openpty(3) auxiliary program o [1999/02/02] bin/9868 Patch to add "date -a" o [1999/02/02] kern/9869 When using macros out of function, they s s [1999/02/06] kern/9927 gibbs [ahc] the ahc driver doesn't correctly gr o [1999/02/11] bin/10030 markm Kerberized telnet fails to encrypt when a o [1999/03/02] bin/10358 yar ftp(1) has problems with long pathnames o [1999/03/16] bin/10611 timed enhancement o [1999/03/19] gnu/10670 peter cvs doesn't allow digits in local keyword a [1999/03/24] kern/10778 ru "ipforward_rt" is not cleared when routin a [1999/04/08] kern/11024 mtm getpwnam(3) uses incorrect #define to lim o [1999/04/11] bin/11085 Per-host configuration for syslog.conf s [1999/04/13] bin/11114 harti make(1) does not work as documented with o [1999/04/16] kern/11165 emulation [ibcs2] IBCS2 doesn't work correctly with o [1999/04/23] bin/11294 direct logging to other hosts (no local s o [1999/06/03] kern/12014 alfred Fix SysV Semaphore handling s [1999/06/07] kern/12071 fanf [net] [patch] new function: large scale I o [1999/06/08] i386/12088 imp [ed] [patch] ed(4) has minor problem with o [1999/07/07] kern/12543 [fxp] [patch] cumulative error counters f o [1999/07/07] bin/12545 peter kldload(8) should be more sensitive to er o [1999/07/25] bin/12801 nvi infinite recursion with options "left o [1999/08/09] bin/13042 make(1) doesn't handle wildcards in subdi o [1999/08/12] bin/13108 authunix_create_default includes egid twi a [1999/08/13] bin/13128 krion pkg_delete doesn't handle absolute pathna o [1999/08/14] kern/13141 se [scsi] Multiple LUN support in NCR driver o [1999/08/21] bin/13309 billf Fixes to nos-tun o [1999/08/23] kern/13326 additional timeval interfaces for tags o [2000/07/20] bin/20054 yar ftpd: rotating _PATH_FTPDSTATFILE losts x s [2000/08/01] kern/20333 des [libpam] ftp login fails on unix password o [2000/08/03] kern/20389 ken "device pass" required for CD ripping o [2000/08/04] bin/20391 jhb [sysinstall] sysinstall should check debu o [2000/08/04] kern/20410 [sio] sio support for high speed NS16550A o [2000/08/09] bin/20501 mjacob [patch] extra flag to dump to offline aut o [2000/08/10] kern/20529 wpaul gigabit cards fail to link o [2000/08/21] bin/20742 ps Weird problem with 'more' on 4-1-STABLE o [2000/08/23] bin/20799 peter top's problem o [2000/08/27] bin/20881 There's no reason not to build DNSsec-DSA o [2000/08/27] bin/20889 dwmalone syslogd.c still uses depreciated domain A o [2000/08/28] bin/20908 qa [sysinstall] /stand/sysinstall too limite o [2000/08/30] bin/20944 natd enhancements, default config file an o [2000/09/03] bin/21008 gad Fix for lpr's handling of lots of jobs in o [2000/09/12] kern/21222 [nfs] wrong behavior of concurrent mmap() o [2000/09/16] bin/21312 more incorrectly redraws screen on xterm o [2000/09/16] bin/21315 Shells often behave oddly when executing o [2000/09/24] bin/21519 standards sys/dir.h should be deprecated some more f [2000/09/26] bin/21570 dougb [PATCH] Add -r option to /usr/bin/mail, q s [2000/09/30] bin/21659 Berkeley db library is statically compile o [2000/10/01] i386/21672 obrien [i386] AMD Duron Rev. A0 reports incorrec o [2000/10/01] conf/21675 Better and more disktab entries for MO dr o [2000/10/04] bin/21751 ken libcam's cam_real_open_device() may lose o [2000/10/05] kern/21768 rwatson shouldn't trailing '/' on regular file sy a [2000/10/07] kern/21807 [msdosfs] [patch] Make System attribute c s [2000/10/17] bin/22034 nfsstat(1) lacks useful features found in o [2000/10/21] bin/22182 vi options noprint/print/octal broken s [2000/10/21] kern/22190 threads A threaded read(2) from a socketpair(2) f o [2000/10/26] conf/22308 [nfs] mounting NFS during boot blocks if s [2000/10/31] bin/22442 linimon [PATCH] Increase speed of split(1) o [2000/11/10] bin/22730 fenner tcpslice doesn't handle long file offsets o [2000/11/17] misc/22914 [bootinst] bootinst messages are not upda o [2000/11/24] conf/23063 bms [PATCH] for static ARP tables in rc.netwo p [2000/11/28] kern/23148 getopt(3) works non-intuitively? p [2000/11/29] bin/23178 'talk' not doing right thing o [2000/11/29] bin/23180 Certain KOI8 characters are treated as "w a [2000/12/04] bin/23254 fenner yacc accepts bad grammer p [2000/12/05] kern/23304 kbyanc POSIX clock_gettime, clock_getres return o [2000/12/06] kern/23314 scsi aic driver fails to detect Adaptec 1520B a [2000/12/09] bin/23402 qa [sysinstall] upgrade ought to check parti o [2000/12/14] kern/23546 tanimura [snd_csa] [patch] csa DMA-interrupt probl o [2000/12/15] bin/23562 markm [patch] telnetd doesn't show message in f o [2000/12/25] conf/23822 mtree entries for German X11 man pages a [2000/12/28] bin/23912 underflow of cnt in vs_paint() by O_NUMBE o [2001/01/04] bin/24066 marcel gdb can't detach from programs linked wit o [2001/01/16] bin/24390 standards Replacing old dir-symlinks when using /bi o [2001/01/18] bin/24435 qa [libdisk] changing slice type causes Auto o [2001/01/20] bin/24485 [PATCH] to make cron(8) handle clock jump o [2001/01/21] bin/24513 peter new options for pppd o [2001/01/22] kern/24528 Bad tracking of Modem status s [2001/01/24] standards/24590standards timezone function not compatible witn Sin o [2001/01/31] bin/24757 yar ftpd not RFC compliant o [2001/02/02] docs/24786 doc missing FILES descriptions in sa(4) o [2001/02/05] kern/24882 ktrace not syncing .out file before panic o [2001/02/06] bin/24907 qa [sysinstall] Options screen at MenuMedia o [2001/02/08] bin/24953 green adduser ignores passwd_format in login.co o [2001/02/08] kern/24959 andre proper TCP_NOPUSH/TCP_CORK compatibility o [2001/02/09] i386/24963 i386 [perfmon] perfmon(4) doesn't work on SMP o [2001/02/11] bin/25013 mv(1) cannot move unresolvable symlinks a o [2001/02/11] bin/25015 cp: options -i and -f do not work as docu o [2001/02/11] kern/25018 lstat(2) returns bogus permissions on sym o [2001/02/15] kern/25109 Fujitsu MO device MCC3064AP could't be c o [2001/02/20] bin/25218 mailwrapper(1) invokes sendmail when reso f [2001/02/22] bin/25278 bs accepts -s -c but not -sc o [2001/02/22] alpha/25284 alpha PC164 won't reboot with graphics console f [2001/02/26] kern/25386 multimedia [sound] Incorrect mixer registers (line & o [2001/02/28] kern/25445 kernel statistics are displayed in wrong o [2001/03/01] bin/25477 billf pam_radius fix to allow null passwords fo p [2001/03/02] kern/25499 [kbd] [patch] buffer paste functionality s [2001/03/08] bin/25598 yar patch to let ftpd output message when cha o [2001/03/12] kern/25733 [intpm] mismatch between error reporting o [2001/03/12] bin/25736 ac -d option probrem with overdays logon f [2001/03/13] kern/25777 [kernel] [patch] atime not updated on exe o [2001/03/17] kern/25866 more than 256 ptys, up to 1302 ptys. f [2001/03/22] docs/26003 rwatson getgroups(2) lists NGROUPS_MAX but not sy o [2001/03/22] bin/26005 MIME quoted-printable encoding added to v o [2001/04/01] kern/26261 [sio] silo overflow problem in sio driver o [2001/04/02] docs/26286 doc *printf(3) etc should gain format string o [2001/04/03] kern/26323 [ufs] [patch] Quota system creates zero-l a [2001/04/04] kern/26348 [pcvt] scon -s, page fault in HP mode a [2001/04/13] kern/26534 ipfw [ipfw] Add an option to ipfw to log gid/u o [2001/04/14] kern/26562 [lpt] [patch] /dev/lpt0 returns EBUSY whe o [2001/04/15] kern/26584 kernel boot messages aren't logged correc o [2001/04/16] kern/26618 iedowse unmount(2) can't unmount a filesystem who p [2001/04/17] kern/26646 ache srand() provides only 8-bit table o [2001/04/18] conf/26658 grog update to src/usr.bin/calendar/calendars/ o [2001/04/18] kern/26686 Freeze at boot from 4.3-RC4 floopies - US o [2001/04/19] bin/26695 change request: kill(1)/killall(1) -l out o [2001/04/23] kern/26787 dd sysctl change request s [2001/04/23] bin/26803 des Fix fetch to allow FTP puts in '-o' & all o [2001/04/24] i386/26812 peter old bootstrap /sys/i386/boot/... still in o [2001/04/28] bin/26919 qa [sysinstall] fdisk should ONLY set one bo o [2001/05/01] kern/27008 kernel function sysbeep(xxx, 0) does prod f [2001/05/07] bin/27188 jon fix of rsh non-interactive mode behaviour o [2001/05/08] bin/27216 qa [sysinstall] can not get to shell prompt o [2001/05/09] kern/27232 cel [nfs] On NFSv3 mounted filesystems, stat o [2001/05/10] bin/27258 getty didn't check if if= isn't empty o [2001/05/11] kern/27269 Cannot mount linux extended (logical) par o [2001/05/12] bin/27281 vidcontrol(1) does not have error codes o [2001/05/13] bin/27306 marcel [patch] hw watchpoints work unreliable un o [2001/05/14] bin/27319 obrien df displays amd pid processes o [2001/05/17] kern/27403 [lpt] lpt driver doesn't handle flags any o [2001/05/18] kern/27429 'dependant' is a misspelling o [2001/05/23] kern/27571 daichi [unionfs] Changing policy of shadowing fi o [2001/05/26] kern/27660 Kernel does not return error if adding du o [2001/05/27] bin/27687 fsck wrapper is not properly passing opti o [2001/06/02] bin/27829 pax's uid/gid cache is read-only o [2001/06/02] kern/27835 execve() doesn't conform to execve(2) spe f [2001/06/04] bin/27872 qa [sysinstall] "Load Config" hangs Compaq D o [2001/06/08] bin/27972 losing information with talk a [2001/06/11] bin/28081 qa [sysinstall] /stand/sysinstall errs out i f [2001/06/14] ports/28155 portmgr [patch] DESTDIR is used incorrectly in bs a [2001/06/16] gnu/28189 [PATCH] fix for detecting empty CVS commi o [2001/06/17] conf/28236 [PATCH] iso-8859-1_to_cp437.scm doesn't c o [2001/06/18] misc/28255 small [picobsd] picobsd documentation still ref s [2001/06/18] kern/28260 standards UIO_MAXIOV needs to be made public o [2001/06/22] bin/28333 rtprio/idprio setuid problems o [2001/06/23] bin/28364 lex(1) generated files fail to compile cl o [2001/06/30] docs/28555 trhodes [PATCH] style(9) isn't explicit about boo o [2001/07/02] bin/28620 ru xinstall has no way to pass options to st s [2001/07/03] ports/28678 wosch portcheckout doesn't allow flexible build o [2001/07/07] bin/28789 /usr/bin/last does not filter for uucp co o [2001/07/14] bin/28972 dwmalone gamma returns same result as lgamma s [2001/07/14] i386/28975 [rp] RocketPort problems o [2001/07/18] bin/29062 markm krb4 and krb5 multiply defined version sy o [2001/07/21] bin/29119 menu of fdisk editor in 4.3R does not lis o [2001/07/23] kern/29169 mjacob FC loop that 'goes away' never times out s [2001/07/29] bin/29292 sos The functional addtion to burncd(8) o [2001/08/01] kern/29355 mux [kernel] [patch] add lchflags support o [2001/08/01] bin/29363 gad [PATCH] newsyslog can support time as ext s [2001/08/04] kern/29423 [patch] new feature: kernel security hook o [2001/08/07] bin/29516 markm telnet from an non FreeBSD host still use o [2001/08/09] bin/29581 proposed gethostbyXXXX_r() implementation o [2001/08/14] kern/29698 emulation [linux] [patch] linux ipcs doesn'work o [2001/08/20] bin/29893 qa [sysinstall] suggestions for 4.4 sysinsta o [2001/08/20] bin/29897 des pam_unix patch, which uses loginclass pas a [2001/08/23] docs/30008 doc [patch] French softupdates document shoul o [2001/08/24] kern/30052 mbr [dc] [patch] dc driver queues outgoing pk o [2001/08/29] kern/30186 getaddrinfo does not handle incorrect ser o [2001/09/03] i386/30276 i386 CPUTYPE=486 built on a CPUTYPE=p3 WORLD b o [2001/09/04] bin/30321 strftime(3) '%s' format does not work pro s [2001/09/05] ports/30331 portmgr [patch] Conflict between bsd.port.mk MAKE o [2001/09/05] bin/30360 vmstat returns impossible data s [2001/09/07] kern/30422 [patch] new function: add WDT hardware wa o [2001/09/07] bin/30424 Generalization of vipw to lock pwdb while s [2001/09/09] threads/30464threads pthread mutex attributes -- pshared o [2001/09/12] bin/30517 qa [sysinstall] using sysinstall with instal o [2001/09/13] bin/30542 [PATCH] add -q option to shut up killall o [2001/09/15] conf/30590 /etc/hosts.equiv and ~/.rhosts interactio p [2001/09/16] kern/30608 kern.ps_showallproc=0 doesn't limit queri o [2001/09/18] bin/30654 gad Added ability for newsyslog to archive lo f [2001/09/19] bin/30661 alfred [rpc] [patch] FreeBSD-current fails to do a [2001/09/22] bin/30737 qa sysinstall leaks file descriptors on rest o [2001/09/24] ports/30777 portmgr add a 'make pkg-plist' make target in por o [2001/09/25] conf/30812 [patch] giant termcap database update o [2001/09/26] bin/30854 bootpd/bootpgw change - skip ARP modifica p [2001/09/27] kern/30857 [intr] [patch] intr_machdep.c allows acce o [2001/09/27] bin/30863 bootpd/dovend.c Win95 compatibility impro o [2001/09/30] conf/30929 usb [patch] use usbd to initialize USB ADSL m o [2001/09/30] conf/30938 Improving behavior of /etc/periodic/daily o [2001/10/04] bin/31034 dwmalone regularly add original address logging fo o [2001/10/04] kern/31048 des linprocfs:/proc/meminfo cannot handle mul s [2001/10/07] docs/31109 doc [patch] replace gif images w/ png ones du o [2001/10/10] bin/31199 tunefs error is incorrect when enabling s o [2001/10/10] kern/31201 [libdisk] [patch] add free_space(chunk) t o [2001/10/18] i386/31353 i386 [apm] [patch] 'shutdown -p' does not work o [2001/10/19] kern/31380 cel [nfs] NFS rootfs mount failure message to o [2001/10/20] bin/31387 When getuid()=0, mailwrapper should drop o [2001/10/22] i386/31427 davidxu [pmap] [patch] minor incorrect code in sy o [2001/10/23] kern/31456 [pcn] [patch] register number definition f [2001/10/25] kern/31490 [sysctl] [patch] Panic in sysctl_sysctl_n o [2001/10/29] bin/31588 change request to allow mount(1) to set t o [2001/10/30] kern/31624 writev may return undocumented ECONNRESET o [2001/10/30] kern/31647 socket calls can return undocumented EINV s [2001/11/01] kern/31686 bms Problem with the timestamp option when fl o [2001/11/02] kern/31708 VM system / fsync / flushing delayed inde o [2001/11/05] gnu/31772 New option in dialog(1) o [2001/11/10] kern/31890 [syscons] [patch] new syscons font o [2001/11/11] bin/31906 No method available to unwind atexit(3) s o [2001/11/12] bin/31933 pw can interpret numeric name as userid d o [2001/11/14] kern/31981 [libc] [patch] (mis)feature in getnetent o [2001/11/14] bin/31985 New /etc/remote flag for tip to append LF o [2001/11/14] bin/31987 patch to allow dump(1) to notify operator o [2001/11/15] docs/32020 trhodes loader(8) missing tunables o [2001/11/19] conf/32108 Proposed Firewall (IPv4) configuration sc f [2001/11/20] bin/32144 qa [sysinstall] unattended install with sysi a [2001/11/29] bin/32375 qa [sysinstall] sysinstall doesn't respect U a [2001/11/30] bin/32411 shutdown's absolute-time handling could b o [2001/12/03] kern/32480 [syscons] Missing graphic characters in s o [2001/12/04] bin/32501 trhodes quot(8) is stupid regarding the filesyste s [2001/12/09] usb/32653 usb Added patches to improve USB scanner supp o [2001/12/10] kern/32659 [vm] [patch] vm and vnode leak with vm.sw o [2001/12/10] bin/32667 systat waste too much time reading input o [2001/12/10] bin/32680 [PATCH] Allows users to start jail(1) by o [2001/12/13] bin/32808 dwmalone [PATCH] tcpd.h lacks prototype for hosts_ o [2001/12/13] kern/32812 [bktr] bktr driver missing tuner for eepr o [2001/12/14] bin/32828 w incorrectly handles stale utmp slots wi o [2001/12/21] bin/33066 rwatson sysinstall does not write to new disks as s [2001/12/24] bin/33133 keyinit outputs wrong next login password o [2001/12/26] bin/33182 marcel gdb seg faults when given handle SIGALRM o [2001/12/26] kern/33203 [nfs] "got bad cookie" errors on NFS clie s [2002/01/05] docs/33589 doc [patch] to doc.docbook.mk to post process a [2002/01/07] bin/33661 PAP AuthAck/AuthNak parsing problem in pp o [2002/01/10] bin/33774 Patch for killall(1) o [2002/01/12] bin/33809 mux [patch] mount_nfs(8) has trouble with emb o [2002/01/13] bin/33834 strptime(3) is misleading o [2002/01/14] docs/33852 doc split(1) man page implies that input file o [2002/01/16] bin/33941 /usr/sbin/dev_mkdb dumps core a [2002/01/16] kern/33963 bde Messages at the serial IO port device pro o [2002/01/16] kern/33965 [kbd] [patch] programmable keys of the ke a [2002/01/17] bin/34010 [patch] keyinit takes passwords less than o [2002/01/22] bin/34146 newfs defaults and vfs.usermount=1 tug at s [2002/01/22] bin/34171 yar ftpd indiscrete about unprivileged user a o [2002/01/23] bin/34199 dwmalone [PATCH] top(1) RES/rss display incorrect o [2002/01/24] docs/34239 trhodes tunefs(8) man page doesn't describe argum o [2002/01/26] bin/34309 gad lpd does not garantie that controlfiles b o [2002/01/29] bin/34394 peter tgetent returns wrong value in libtermcap o [2002/01/29] bin/34412 [patch] tftp(1) will still try and receiv o [2002/01/31] bin/34497 grog calendar(1) does not understand calendars s [2002/01/31] bin/34498 Error in vi manpage. o [2002/02/01] bin/34519 pkg_check(8) does not return exit code >0 o [2002/02/05] bin/34628 [pkg_install] [patch] pkg-routines ignore o [2002/02/06] kern/34665 darrenr [ipfilter] ipfilter rcmd proxy "hangs". o [2002/02/07] gnu/34709 marcel [patch] Inaccurate GDB documentation o [2002/02/08] bin/34728 DHCP hostname set as Hexadecimal string o [2002/02/09] bin/34759 Phantasia does not accept [enter] key o [2002/02/10] bin/34788 dwmalone dmesg(1) issues with console output o [2002/02/11] bin/34832 /usr/share/man/cat3/setkey.3.gz linked to o [2002/02/12] kern/34880 luigi Impossibility of grouping IP into a pipe a [2002/02/16] docs/35011 doc There are no commands called "diskless" o f [2002/02/17] bin/35018 brian enhancing daily/460.status-mail-rejects o [2002/02/19] bin/35109 [PATCH] games/morse: add ability to decod o [2002/02/19] bin/35113 grdc enhancement: countdown timer mode o [2002/02/22] docs/35222 doc [patch] getmsg.cgi: mailing list archive o [2002/02/23] kern/35234 scsi World access to /dev/pass? (for scanner) o [2002/02/24] kern/35262 [boot2] [patch] generation of boot block o [2002/02/25] kern/35289 [bktr] [patch] Brooktree device doesnt pr o [2002/02/25] kern/35324 Plug and Play probe fails to configure Di o [2002/02/27] kern/35377 process gets unkillable (-9) in "ttywai" o [2002/02/28] bin/35400 qa [sysinstall] sysinstall could improve man o [2002/03/01] bin/35451 PATCH: pkg_add -r able to save local copy o [2002/03/04] misc/35542 bde [patch] BDECFLAGS needs -U__STRICT_ANSI__ o [2002/03/04] conf/35545 [patch] enhanced periodic scripts: 100.cl o [2002/03/05] bin/35568 make declares target out of date, but $? o [2002/03/06] docs/35608 doc mt(1) page uses "setmark" without explana o [2002/03/06] docs/35609 doc mt(1) page needs explanation of "long era o [2002/03/06] docs/35612 doc ps(1) page "state" description doesn't me o [2002/03/07] kern/35635 [libiconv] [patch] missing dep in libicon o [2002/03/07] www/35647 www www; combine query-by-number and multi-fi o [2002/03/07] docs/35652 trhodes bsd.README seriously obsolete o [2002/03/09] www/35711 bugmeister the "gnats page" should move to its own s o [2002/03/09] bin/35717 which(1) returns wrong exit status for m p [2002/03/10] docs/35732 trhodes adduser(8) page has obsolete reference an o [2002/03/11] bin/35769 w does not correctly interpret X sessions o [2002/03/11] kern/35774 [libutil] logwtmp: Suboptimal auditing po o [2002/03/13] kern/35846 imp timeout in wi_cmd 11, machine hangs for a o [2002/03/14] bin/35886 [patch] pax(1) enhancement: custom time f p [2002/03/14] bin/35894 [patch] popen.c in cron won't build witho o [2002/03/16] docs/35943 doc at(1) config files are misplaced in /var/ o [2002/03/16] docs/35953 doc hosts.equiv(5) manual is confusing or wro s [2002/03/19] standards/36076standards Implementation of POSIX fuser command o [2002/03/20] bin/36118 qa [sysinstall] 4.5 Upgrade says it won't to o [2002/03/20] bin/36143 [patch] Dynamic (non linear) mouse accele o [2002/03/21] kern/36170 [an] [patch] an(4) does an_init() even if o [2002/03/24] bin/36262 [patch] Fixed rusers(1) idle-time reporti o [2002/03/27] bin/36374 Patch (against core dumps) and improvemet o [2002/03/27] bin/36385 luigi crunchgen does not handle Makefiles with o [2002/03/28] docs/36432 doc Proposal for doc/share/mk: make folded bo o [2002/03/29] docs/36449 doc symlink(7) manual doesn't mention trailin a [2002/03/29] kern/36451 [bktr] [patch] Japan IF frequency is inco s [2002/03/29] gnu/36460 cu(1) program does not work very well. f [2002/03/29] bin/36477 gshapiro mailwrapper doesn't handle rmail calls o [2002/03/29] bin/36501 grog /usr/bin/calendar can't handle recurring o [2002/03/30] bin/36553 gad Two new features in newsyslog(8) o [2002/03/31] bin/36556 [patch] regular expressions for tcpwrappe o [2002/04/01] bin/36626 login_cap(3) incorrectly claims that all o [2002/04/04] docs/36724 darrenr ipnat(5) manpage grammar is incomplete an o [2002/04/04] bin/36740 make ps obey locale (particularly for tim o [2002/04/04] bin/36757 which(1) ought to append @ if result is s o [2002/04/05] bin/36786 make ps use 24-hour time by default s [2002/04/08] ports/36901 glewis WITHOUT_X11 Knob for port java/jdk13 o [2002/04/08] kern/36902 [libc] [patch] proposed new format code % o [2002/04/09] kern/36916 qa [libdisk] DOS active partition flag lost o [2002/04/10] kern/36952 ldd comand of linux does not work o [2002/04/10] bin/36960 grog calendar doesn't effect -t option. o [2002/04/12] bin/37013 ls directory name output trailing slash d a [2002/04/14] bin/37074 [PATCH] Typographical error in output of o [2002/04/15] bin/37083 small improvement to talk(1): add clocks o [2002/04/16] bin/37160 qa [sysinstall] coredumps when trying to loa o [2002/04/23] kern/37380 jhb [boot0] [patch] boot0 partition list is o o [2002/04/23] conf/37387 grog bsdmainutils/calendar Hungarian addon fil o [2002/04/24] bin/37424 [patch] nfsstat(1) reports negative value o [2002/04/25] bin/37437 Add HTTP-style support to {vis,unvis}(1). o [2002/04/25] bin/37442 [PATCH] sleep(1) to support time multipli p [2002/04/25] kern/37448 obrien [PATCH] ldd/rtld support for more informa o [2002/04/29] kern/37554 jmg [vm] [patch] make ELF shared libraries im o [2002/04/29] kern/37555 [kernel] [patch] vnode flags appear to be o [2002/04/29] conf/37569 matteo [PATCH] Extend fstab(5) format to allow f o [2002/04/30] kern/37600 multimedia [sound] [partial patch] t4dwave drive doe o [2002/05/02] bin/37672 pw(8) prints warnings after successful NI s [2002/05/02] threads/37676threads libc_r: msgsnd(), msgrcv(), pread(), pwri o [2002/05/03] docs/37719 kensmith [request] Detail VOP_ naming in a relevan o [2002/05/04] bin/37733 su(1) does not behave the way it is descr s [2002/05/07] standards/37843standards manual for pthread_setschedparam(3) is wr o [2002/05/07] bin/37844 [PATCH] make knob to not install progs wi o [2002/05/09] gnu/37910 PATCH: make send-pr(1) respect &'s in /et o [2002/05/13] alpha/38031 alpha osf1.ko not loaded during boot-time of li o [2002/05/14] bin/38055 qa [sysinstall] Groups (creation) item shoul o [2002/05/14] bin/38056 qa [sysinstall] User (creation)'s "Member gr o [2002/05/14] bin/38057 qa [sysinstall] "install" document doesn't d o [2002/05/14] docs/38061 ume [patch] typos in man pages for faith(4) & o [2002/05/16] bin/38156 quotacheck chokes on user -2 o [2002/05/17] bin/38168 [patch] feature request: installing curse o [2002/05/18] bin/38256 linking pax to pax_{cpio|tar} s [2002/05/20] kern/38347 [libutil] [patch] [feature request] new l o [2002/05/23] kern/38445 suggestion: centralize ptrace() permissio o [2002/05/24] bin/38478 qa [sysinstall] In Choose Distributions scre o [2002/05/24] bin/38480 qa [sysinstall] sysinstall should prompt for s [2002/05/24] www/38500 www gnats web form is overenthusiastic about o [2002/05/24] conf/38524 cons25 doesn't support F-keys beyond 12 o [2002/05/25] docs/38540 blackend [patch] make application name capitalizat o [2002/05/25] docs/38556 remko EPS file of beastie, as addition to exist o [2002/05/27] ports/38593 portmgr Third level ports o [2002/05/27] bin/38610 qa [sysinstall] should be able to mount ISO o [2002/05/27] docs/38620 doc suggestion: minor rework of question in C o [2002/05/27] kern/38626 luigi dummynet/traffic shaper: RED: max_th and o [2002/05/30] bin/38727 [patch] mptable(1) should complain about f [2002/05/30] kern/38730 philip Memorex scrollpro mouse is not fully func o [2002/05/30] kern/38749 kientzle Diskless booting fails with some DHCP ser p [2002/05/31] docs/38772 trhodes firewall_type feature not mentioned on Ha o [2002/06/02] kern/38826 [bootmgr] RFE: BootMgr should provide mor o [2002/06/02] kern/38828 scsi [feature request] DPT PM2012B/90 doesn't o [2002/06/03] bin/38854 qa [sysinstall] resetting during setup cause o [2002/06/06] misc/38937 delay between tracks in digital audio dum o [2002/06/06] bin/38940 Change: an option to *stat to allow supre o [2002/06/07] docs/38982 doc [patch] developers-handbook/Jail fix o [2002/06/08] kern/39047 IPSEC Compression (IPCOMP) broken in tunn o [2002/06/12] kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLIN o [2002/06/14] standards/39256standards snprintf/vsnprintf aren't POSIX-conforman o [2002/06/15] docs/39348 doc diskless(8): note that kenv fetch of host o [2002/06/16] bin/39360 qa [sysinstall] if linux emu is added as a d o [2002/06/17] kern/39425 [amd] Auto mounted directory was not foun o [2002/06/17] bin/39439 tcopy will not duplicate tapes with block o [2002/06/18] bin/39463 mtm [PATCH] Add several options to fingerd f [2002/06/19] conf/39505 automate BUILDNAME variable for releases o [2002/06/19] kern/39527 dwmalone getcwd() and unreadable parent directory o [2002/06/19] docs/39530 doc access(2) man page has unnecessarily broa o [2002/06/20] bin/39574 qa [sysinstall] error mounting /dev/acd0c on s [2002/06/20] conf/39580 insecure default settings f [2002/06/22] ports/39660 portmgr [patch] add ${PKGNAMEPREFIX} to (DOCS|EXA o [2002/06/23] kern/39681 [sysctl] [patch] add hidden kernel boot t o [2002/06/26] bin/39893 setusercontext library call differs umask o [2002/06/27] bin/39905 johan cleaning sbin/restore code from warnings o [2002/06/29] conf/39976 vi recovery halting boot process o [2002/06/29] kern/40017 [patch] allows config(8) to specify confi s [2002/06/29] kern/40021 [kernel build] [patch] use ld(1) to build p [2002/07/01] gnu/40057 bugmeister send-pr -a flag does not work with -f f [2002/07/06] bin/40273 dougb some more fortunes o [2002/07/09] kern/40369 [kernel] [patch] rman_reserve_resource - o [2002/07/09] bin/40391 imp [sysinstall] sysinstall with PCCARD<->ISA o [2002/07/10] docs/40423 doc Keyboard(4)'s definition of parameters to o [2002/07/13] kern/40516 [ti] [patch] ti driver has no baudrate se f [2002/07/13] bin/40538 dougb mergemaster fixes and enhancements o [2002/07/14] conf/40548 list of /etc/defaults/make.conf undocumme o [2002/07/14] bin/40572 vipw prints silly message if $EDITOR fail o [2002/07/15] bin/40597 add /sbin/fdisk ability of showing extend s [2002/07/16] threads/40671threads pthread_cancel doesn't remove thread from o [2002/07/19] conf/40777 disktab does not support 2.88MB floppies o [2002/07/23] kern/40919 usage of ucred->cr_uid in sys/netinet/in_ o [2002/07/23] kern/40926 qa [boot] After Upgrading or Clean Installin o [2002/07/24] usb/40948 usb [usb] USB HP CDW8200 does not work o [2002/07/24] i386/40958 i386 [apm] apm on Acer TravelMate 351 could no o [2002/07/27] bin/41060 ready to import gzip 1.3.3 o [2002/07/28] docs/41089 doc pax(1) -B option does not mention interac o [2002/07/30] bin/41159 new sed -c option to allow ; as a separat s [2002/07/30] misc/41179 feature request: LD_LIBRARY_PATH security o [2002/07/31] bin/41190 in sed, report the { linenum instead of E o [2002/07/31] bin/41213 top(1) blocks if NIS-related entries in p o [2002/07/31] kern/41215 [kbd] console revert back to kbd0 (AT) af o [2002/08/01] bin/41238 qa [sysinstall] problems with FreeBSD instal f [2002/08/02] docs/41270 remko [patch] handbook: confusing directions fo o [2002/08/02] bin/41271 Non-suid-crontab. o [2002/08/04] bin/41307 libalias: logging of links lifecycle (add o [2002/08/04] www/41312 cvsadm RCS IDs are off-by-one in the NetBSD cvsw o [2002/08/06] i386/41364 imp [pccard] NewMedia "Bus Toaster" SCSI card f [2002/08/07] usb/41415 usb [usb] [patch] Some USB scanners cannot ta o [2002/08/10] bin/41526 symlinked mount points get mounted more t o [2002/08/11] kern/41543 emulation [patch] feature request: easier wine/w23 f [2002/08/11] bin/41556 obrien [PATCH] wtmp patch for lukemftpd o [2002/08/12] bin/41566 obrien file(1) out of date o [2002/08/12] i386/41569 silo overflow p [2002/08/12] standards/41576standards POSIX compliance of ln(1) a [2002/08/12] bin/41583 assorted mtree bugs (+fixes) o [2002/08/15] bin/41674 ken iostat column formatting overlaps o [2002/08/20] docs/41807 doc [patch] natd(8): document natd -punch_fw o [2002/08/20] bin/41817 pw groupshow doesn't include the login gr o [2002/08/20] docs/41820 doc Device driver confusion in Handbook (sect o [2002/08/21] i386/41856 i386 VESA splash screen problems on ThinkPad 2 o [2002/08/22] docs/41879 hrs cleanup to DOCROOT/share/sgml/freebsd.dsl o [2002/08/23] docs/41919 blackend MINI kernel for bootfloppy (Handbook p.34 o [2002/08/23] kern/41930 declaration clash for ffs() and ${CXX} o [2002/08/23] bin/41947 hexdump(1) unprintable ASCII enhancement o [2002/08/23] bin/41949 qa [sysinstall] sysinstall sorts /etc/rc.con o [2002/08/26] bin/42018 krion pkg_info with PKG_PATH searches through t o [2002/08/26] bin/42022 qa [sysinstall] non-interactive mode prompts o [2002/08/27] kern/42065 [kernel] [patch] kern.ps_showallprocs has o [2002/08/27] bin/42084 luigi [picobsd] PicoBSD's 'netstat -i' reports o [2002/08/29] bin/42162 qa [sysinstall] installation crashes, md0c f o [2002/08/30] docs/42182 trhodes formatting-media article: Making Dedicate o [2002/08/30] bin/42217 libdisk segfaults with 1024 bytes/sector o [2002/09/01] kern/42274 [kernel] [patch] Convert defined variable o [2002/09/02] bin/42336 [PATCH] ISO-fication of /usr/src/contrib/ o [2002/09/03] bin/42386 cleaning code from warnings in libkvm o [2002/09/03] bin/42387 cleaning code of librpcsvc from warnings o [2002/09/04] kern/42422 dbm_delete returns -1 instead of 1 when t o [2002/09/04] kern/42429 [libc] [patch] hash_action called with HA o [2002/09/05] kern/42442 problem in idlequeue/debugging mode ? o [2002/09/06] kern/42461 mdodd if_wi_pci.c,if_wi_pccard.c lack device_re o [2002/09/06] bin/42468 mount_smbfs incorrectly handled configura o [2002/09/06] bin/42469 After mounting by mount_smbfs directories o [2002/09/11] bin/42663 pw(1): pw useradd assigns unique UID's to o [2002/09/13] kern/42728 small [picobsd] many problems in src/usr.sbin/p o [2002/09/14] i386/42766 i386 [vm] [patch] proposal to perform reboot v o [2002/09/15] bin/42803 tconv, tic, captoinfo binaries missing fr o [2002/09/18] bin/42934 qa [sysinstall] installation procedure on in o [2002/09/19] kern/42956 [libc] dlclose gives "invalid shared obje o [2002/09/19] bin/42974 [patch] syslogd(8): add ISO 8601 date for o [2002/09/21] kern/43154 [if_tun] [patch] tunwrite() does not allo o [2002/09/22] i386/43262 i386 [hang] command 'shutdown -r' (also reboot o [2002/09/25] kern/43355 idad driver will work if logical drives d o [2002/09/25] bin/43367 incorrect report from 'who' after 'shutdo o [2002/09/25] bin/43368 krion pkg_create fails if target directory does o [2002/09/27] bin/43434 New option to 'dmesg' which allow to disp o [2002/09/29] docs/43470 blackend solid-state article out of date (x109). o [2002/09/29] kern/43474 [nfs] [patch] dhcp.* values not set in ke s [2002/09/29] bin/43497 mount(8): mount -t nfs -> crunchgen incom o [2002/09/30] conf/43500 rc.syscons "allscreens" improvements o [2002/09/30] i386/43539 i386 [fdc] Cannot mout floppy on Compaq Prolia o [2002/10/02] kern/43577 [kernel] [patch] feature request: new ker o [2002/10/02] bin/43582 passwd(1) fails on nonexistent users o [2002/10/03] kern/43611 [crypto] [patch] static-ize some symbols o [2002/10/03] kern/43616 [zlib] [patch] static-ize some functions o [2002/10/04] docs/43651 doc stab(5) incorrectly states to include jus o [2002/10/05] kern/43716 [puc] [patch] puc driver does not recogni o [2002/10/08] bin/43819 changed truss output for utrace calls o [2002/10/08] docs/43823 doc [PATCH] update to environ(7) manpage o [2002/10/09] docs/43861 doc non-trivial typo in wicontrol(8) man page o [2002/10/11] kern/43905 jmg [kqueue] [patch] kqueues: EV_SET(kevp++, o [2002/10/11] kern/43916 [ex] [hang] Olicom OC-2220 (PC-card) hang o [2002/10/11] docs/43941 doc document the Rationale for Upgrade Sequen o [2002/10/14] docs/44034 trhodes Multiple sysctl variables are not documen o [2002/10/14] kern/44058 [MAKEDEV] [patch] /dev/ch* is created wit o [2002/10/15] docs/44074 doc [patch] ln(1) manual clarifications o [2002/10/15] kern/44098 RealTec-based NIC initialization problem o [2002/10/15] bin/44122 tun0 gets a second ip adress after a disc o [2002/10/17] conf/44170 Add ability to run multiple pppoed(8) on a [2002/10/17] www/44181 www www "Release Information" organization o [2002/10/18] bin/44212 Unify 'recursive' options -r and -R o [2002/10/19] kern/44267 [sio] [patch] One more modem PNP id for / o [2002/10/19] conf/44286 roberto /etc/defaults/rc.conf uses the obsolete n o [2002/10/20] kern/44293 thomas Unable to access audio CD under Linux emu o [2002/10/22] kern/44365 [headers] [patch] introduce ulong and unc o [2002/10/22] kern/44372 roberto some kernel options prevent NTP clock syn o [2002/10/23] standards/44425standards getcwd() succeeds even if current dir has o [2002/10/26] kern/44497 NIC Lags? o [2002/10/26] kern/44500 [bge] [patch] bge(4): add AC1001 Gigabit o [2002/10/29] kern/44580 cel [nfs] NFS updates file access time when f o [2002/10/29] kern/44587 scsi dev/dpt/dpt.h is missing defines required o [2002/10/29] docs/44594 doc Handbook doesn't mention drivers.flp for o [2002/10/30] conf/44717 update login.conf and unify login capabil o [2002/11/04] bin/44894 markm telnet(1): as a local non-root user and r o [2002/11/05] bin/44915 qa [sysinstall] 'choose installation media' o [2002/11/06] gnu/44984 Send-pr can use environmental variable $F o [2002/11/06] docs/45011 trhodes [patch] style(9): '->' and '.' don't requ o [2002/11/07] kern/45026 [nis] Can't set next password change date o [2002/11/08] gnu/45137 peter [PATCH] CVS 1.11.2 cannot reuse log messa o [2002/11/10] bin/45193 [PATCH] truss can't truss itself o [2002/11/11] conf/45222 daily rejected mail hosts report too long o [2002/11/12] conf/45226 rc Fix for rc.network, ppp-user annoyance o [2002/11/12] bin/45229 restore(8) -i: ls reports mising files as o [2002/11/13] bin/45254 qa [sysinstall] [patch] sysinstall installs o [2002/11/14] ports/45289 hrs ja-dvi2ps-3.2 does not handle \special co o [2002/11/14] kern/45293 kevent denies to observe /dev/tty o [2002/11/16] bin/45333 [PATCH] New option -r for chown and chgrp o [2002/11/18] ports/45414 portmgr [patch] make update in /usr/ports missing o [2002/11/19] bin/45486 Support for human readble (-h/-H) output s [2002/11/21] bin/45547 sos a patch to make burncd handle .wav files. o [2002/11/23] bin/45608 qa [sysinstall] install should config all et s [2002/11/23] ports/45613 portmgr make update doesn't o [2002/11/24] kern/45684 systat -vmstat reports "alternate system o [2002/11/25] bin/45701 markm spelling error in rogue o [2002/11/25] conf/45704 [PATCH] request to change cp866b font to o [2002/11/25] bin/45729 make rbootd transfere the default file if o [2002/11/27] kern/45793 [headers] [patch] invalid media subtype a o [2002/11/28] bin/45830 [kerberos] KDC has problems when listenin o [2002/12/01] bin/45896 dwmalone setnetgrent() should return error code o [2002/12/02] docs/45940 doc burncd(1) missing info o [2002/12/07] conf/46062 kris Remove skel from BSD.root.dist. o [2002/12/09] i386/46113 i386 [bus] [patch] busspace bugs in parameter o [2002/12/09] standards/46119standards Priority problems for SCHED_OTHER using p o [2002/12/10] kern/46159 ipfw [ipfw] [patch] ipfw dynamic rules lifetim o [2002/12/10] bin/46163 gad lpc problem. Only root can modify despit o [2002/12/11] docs/46196 doc [patch] menu_format(3): Missing return va o [2002/12/13] bin/46235 rwatson [sysinstall] NTP servers for Finland requ o [2002/12/16] docs/46291 doc correlation between HZ kernel config para o [2002/12/16] docs/46295 doc please add information to Nvi recovery em o [2002/12/17] bin/46328 gad patch for lpd o [2002/12/19] kern/46368 [isa] [patch] MAXDEP in isa/pnpparse.c is s [2002/12/19] bin/46382 ps(1) could use a "repeat" mode o [2002/12/20] conf/46409 Certain periodic scripts check broken NFS o [2002/12/21] standards/46441stefanf /bin/sh does not do parameter expansion i o [2002/12/22] conf/46453 [INTERNATIONALIZATION] cons25l2, ISO8859- a [2003/01/03] docs/46709 peter [patch] tables in terminfo(5) are broken s [2003/01/04] conf/46746 No way to set link addresses through rc.c o [2003/01/04] bin/46758 moused enhancements o [2003/01/09] bin/46888 gad Add script run hook to newsyslog(8) o [2003/01/09] bin/46905 qa [sysinstall] FreeBSD 5.x cannot be instal s [2003/01/10] conf/46913 darrenr ipf denied packets of security run output o [2003/01/10] bin/46925 sysctl -a goes into an infinite loop... o [2003/01/11] kern/46973 [syscons] [patch] syscons virtual termina o [2003/01/19] i386/47223 i386 [pcvt] [PATCH] pcvt(4), ESC sequences do o [2003/01/20] bin/47235 top reports inaccurate cpu usage o [2003/01/21] kern/47311 mdodd [patch] Kernel support for NVIDIA nForce2 o [2003/01/22] bin/47350 rc.network supports only one ppp profile o [2003/01/22] i386/47376 i386 [pcvt] [PATCH], pcvt(4), COLOR_KERNEL_FG, o [2003/01/23] bin/47387 [PATCH] gprof -K still requires "a.out" a o [2003/01/27] bin/47540 Make natd configurable in running state w o [2003/01/27] conf/47566 le [vinum] [patch] add vinum status verifica o [2003/01/28] bin/47576 [PATCH] factor(6)ing of negative numbers o [2003/01/28] docs/47594 doc [PATCH] passwd(5) incorrectly states allo o [2003/01/28] bin/47596 daily security run complains if timezone o [2003/02/02] bin/47815 stty -all should work. o [2003/02/02] docs/47818 doc [patch] ln(1) manpage is confusing o [2003/02/04] bin/47908 qa [sysinstall] /stand/sysinstall can't disp o [2003/02/06] docs/47991 trhodes Handbook section on upgrading kernel says o [2003/02/08] docs/48101 doc [patch] add documentation on the fixit di o [2003/02/09] conf/48105 /etc/disktab has incomplete duplication o o [2003/02/09] misc/48110 [patch] change CVSROOT/log_accum.pl to no o [2003/02/10] conf/48133 /etc/rc: improved vi recovery notificatio o [2003/02/11] kern/48172 ipfw [ipfw] [patch] ipfw does not log size and o [2003/02/12] conf/48195 /var/db/mounttab error on diskless boot o [2003/02/15] bin/48309 pppoe connections fail to establish if th f [2003/02/15] bin/48318 mtm Segmentation fault in sh with attached sc o [2003/02/16] usb/48342 usb [PATCH] usbd dynamic device list. o [2003/02/18] bin/48443 mtm /usr/sbin/periodic executes too many file o [2003/02/18] conf/48444 [patch] security.functions: count connect o [2003/02/19] kern/48471 pjd [kernel] [patch] new feature: private IPC o [2003/02/23] kern/48599 [syscons] [patch] syscons cut-n-paste log o [2003/02/23] bin/48603 Getopt is broken. Patch included. o [2003/02/24] gnu/48638 [PATCH] some bug fixs in libdialog o [2003/02/25] alpha/48676 alpha Changing the baud rate of serial consoles o [2003/03/03] conf/48870 [PATCH] rc.network: allow to cancel inter o [2003/03/03] kern/48894 [nfs] Suggested improvements to the NFS r s [2003/03/06] bin/48962 des [PATCH] modify /usr/bin/fetch to allow ba o [2003/03/06] kern/48976 [modules] nwfs.ko oddity o [2003/03/06] docs/48980 doc [patch] nsgmls -s errors and sect. 3.2.1 o [2003/03/06] bin/48989 qa [sysinstall] Sysinstall's partition edit a [2003/03/07] bin/49023 gad [patch] to lpd(8) (printjob.c) to pass so o [2003/03/08] kern/49039 add support for RS485 hardware where dire o [2003/03/10] kern/49086 ipfw [ipfw] [patch] Make ipfw2 log to differen f [2003/03/12] ports/49955 portmgr [PATCH] bsd.port.mk: add target to automa o [2003/03/12] kern/49957 CRC32 generator should be the common rout o [2003/03/18] misc/50106 [patch] make 'make release' more flexible o [2003/03/19] bin/50118 grog calendar(1) dumps core if there is ./cale p [2003/03/21] conf/50160 ache sl_SI.ISO8859-2 collation sequence is wro o [2003/03/23] docs/50211 doc [PATCH] doc.docbook.mk: fix textfile crea p [2003/03/24] docs/50248 ceri [patch] New FreeBSD books o [2003/03/25] bin/50300 Make the loader's use of terminal-control o [2003/03/26] bin/50310 [libalias] [patch] natd / libalias fix to o [2003/03/27] bin/50331 Changing uid with pw causes duplicate use o [2003/04/01] kern/50526 [kernel] [patch] update to #! line termin o [2003/04/03] bin/50569 /bin/sh doesn't handles ${HOME}/.profile o [2003/04/03] docs/50573 doc resolver(3): return values for res_query/ o [2003/04/06] bin/50656 /bin/cp - wrong error on copying of multi o [2003/04/07] kern/50687 ioctl(.., CDIOCCAPABILITY, ...) always re p [2003/04/08] docs/50735 brueffer [patch] small diff to the developers hand o [2003/04/09] bin/50749 ipfw [ipfw] [patch] ipfw2 incorrectly parses p o [2003/04/10] docs/50773 jmg [patch] NFS problems by jumbo frames to m o [2003/04/12] alpha/50868 alpha fd0 floppy device is not mapped into /dev o [2003/04/14] bin/50949 BUG: mtree doesn't honor the -P when chec p [2003/04/14] conf/50956 matteo daily_status_disks_df_flags in /etc/defau o [2003/04/15] kern/51009 [aue] [patch] buggy aue driver fixed. o [2003/04/16] bin/51070 [patch] add -p option to pom(6) o [2003/04/18] kern/51120 MSGBUF_SIZE doesn't work in makefiles a [2003/04/18] docs/51133 murray RSH environmental variable not described s [2003/04/18] bin/51137 [patch] config(8) should check if a sched o [2003/04/19] bin/51148 Control the cache size for pwd_mkdb to sp f [2003/04/19] ports/51152 portmgr [patch] bsd.port.mk: generic SHEBANG_FILE o [2003/04/21] bin/51205 dwmalone openssl in base system is not compiled th o [2003/04/22] bin/51296 grog calendar wrong for dates based on day+-nu o [2003/04/27] docs/51480 dds Multiple undefined references in the Free o [2003/04/28] bin/51488 Compat patch: more(1) allowed filename to p [2003/04/28] conf/51504 ache New file: src/share/mklocale/zh_CN.GBK.sr p [2003/05/03] conf/51729 ache A patch that can make freebsd support zh_ o [2003/05/06] docs/51875 doc [patch] atkbd(4) adjustment o [2003/05/06] docs/51891 doc DIAGNOSTICS in ed(4) driver manpage don't o [2003/05/07] conf/51920 Collation for no_NO.ISO8859-1 o [2003/05/07] docs/51921 doc [patch] ls(1) manpage lacks some informat o [2003/05/08] kern/51958 usb [usb] [patch] update for urio driver o [2003/05/10] kern/52026 usb [usb] feature request: umass driver suppo o [2003/05/11] docs/52071 doc [PATCH] Add more information about soft u o [2003/05/14] misc/52255 small [picobsd] picobsd build script fails unde o [2003/05/14] misc/52256 small [picobsd] picobsd build script does not r o [2003/05/15] kern/52258 imp pccard non-functional, repeated "card ins o [2003/05/15] bin/52271 qa [sysinstall] sysinstall panics in machine o [2003/05/19] i386/52427 i386 DVD replay under MSI "655 MAX" mobo inter o [2003/05/19] docs/52448 simon [patch] Misc man page reference fixes o [2003/05/20] bin/52469 ppp: Multiple devices using UDP don't wor o [2003/05/21] bin/52517 murray New functionality for /usr/bin/Mail o [2003/05/23] kern/52623 [ex] [patch] IRQ error in driver for the o [2003/05/26] ports/52706 portmgr [patch] bsd.port.mk issues warning if a s o [2003/05/27] kern/52725 [PATCH] installincludes for kmods f [2003/05/28] bin/52746 tcsh fails to handle large arguements o [2003/05/28] kern/52752 [ichsmb] [patch] SMBus controller on ICH4 o [2003/05/28] kern/52764 Impossible to build kernel with COPTFLAGS s [2003/05/28] ports/52765 portmgr [PATCH] Uncompressing manual pages may fa o [2003/05/29] bin/52782 user ppp dumps core when doing pppctl "sh s [2003/05/31] bin/52826 krion Feature Request: Adding Timestamps to pkg o [2003/06/03] kern/52907 phk [libc] [patch] more malloc options for de s [2003/06/03] ports/52917 portmgr [PATCH] bsd.port.mk: update default value p [2003/06/05] kern/52960 jmg [kbd] kbdcontrol macros don't work when l o [2003/06/05] kern/52971 bad macro LIST_HEAD in /usr/include/sys/q o [2003/06/06] kern/52980 mbr [dc] [patch] dc driver fails to init Inte o [2003/06/08] usb/53025 usb [ugen] [patch] ugen does not allow O_NONB o [2003/06/10] bin/53131 qa [sysinstall] "ALL" could not turn check B o [2003/06/13] kern/53265 imp Make Sierra A555 work in FreeBSD o [2003/06/13] docs/53271 hmp bus_dma(9) fails to document alignment re o [2003/06/13] bin/53288 tail will sometimes display more lines th o [2003/06/15] bin/53341 qa [sysinstall] [patch] dump frequency in sy p [2003/06/16] bin/53377 [PATCH] su does not return exit status of o [2003/06/19] bin/53475 cp(1) copies files in reverse order to de o [2003/06/19] kern/53506 [partial patch] support gzipped modules o [2003/06/19] bin/53520 su to another user does not update utmp o [2003/06/20] bin/53560 logging domain names in wtmp is retarded o [2003/06/21] docs/53575 doc Change to Handbook Section 20.9 (SMTP Aut o [2003/06/21] docs/53596 doc Updates to mt(1) manual page o [2003/06/24] www/53676 simon [patch] Don't make people contact doc@ fo o [2003/06/24] standards/53682le [PATCH] add fuser(1) utility o [2003/06/25] docs/53732 doc quota output and quota(1) man page do not o [2003/06/26] docs/53751 hmp bus_dma(9) incorrectly documents BUS_DMA_ a [2003/06/28] bin/53870 das C++ undeclares standard math functions li o [2003/06/29] bin/53899 mktime gives wrong result in Central time o [2003/07/01] kern/53987 [smbfs] smbfs can't access to files with o [2003/07/02] docs/54009 trhodes [patch] clarify the location of the splas o [2003/07/02] bin/54026 bms [patch] Add support for non-standard port o [2003/07/06] bin/54141 wrong behavour of cu(1) o [2003/07/07] conf/54170 error from weekly periodic script 330.cat s [2003/07/07] bin/54185 rwatson UFS2 filesystem ACL flag not enforced o [2003/07/08] kern/54220 [PATCH] /usr/src/Makefile has wrong instr o [2003/07/09] bin/54274 udp-proxy support is not implemented in l o [2003/07/11] bin/54365 [PATCH] add -u option to install(1) for S o [2003/07/11] kern/54383 net [nfs] [patch] NFS root configurations wit o [2003/07/13] kern/54439 [sysctl] [patch] Protecting sysctls varia o [2003/07/13] docs/54451 doc [patch] i386_get_ldt(2): i386_{get|set}_l o [2003/07/14] docs/54461 kensmith [patch] Possible additions to Handbook (B o [2003/07/17] bin/54594 Apply regexps to the entire variable -- a o [2003/07/18] kern/54604 pjd [kernel] [patch] make 'ps -e' procfs-inde o [2003/07/21] bin/54683 sh, redundant history s [2003/07/22] docs/54752 hmp bus_dma explained in ISA section in Handb o [2003/07/23] bin/54784 find -ls wastes space o [2003/07/25] standards/54833standards [pcvt] more pcvt deficits o [2003/07/25] standards/54839standards [pcvt] pcvt deficits s [2003/07/26] bin/54878 incorrect divisor in /usr/bin/jot -r o [2003/07/26] docs/54879 doc jot(1) -r description o [2003/07/26] kern/54884 mckusick FreeBSD -stable and -current free space h o [2003/07/27] bin/54891 libalias/natd and exporting connection-in o [2003/07/27] bin/54897 [PATCH] -y flag for mount_mfs f [2003/07/28] kern/54981 sanpei QUIRK: Add support for Lexar 256MB USB dr o [2003/07/29] conf/55015 [patch] 700.kernelmsg: Security check out p [2003/07/31] standards/55112standards glob.h, glob_t's gl_pathc should be "size o [2003/08/01] kern/55163 [jail] [patch] hide kld system details fr o [2003/08/08] misc/55387 [patch] users LD_LIBRARY_PATH can interfe o [2003/08/08] gnu/55394 marcel GDB on FreeBSD 4.8: Deprecated bfd_read. o [2003/08/11] conf/55470 [pccard] [patch] new pccard.conf entry (I s [2003/08/12] docs/55482 doc document the fact that DUMP has access to s [2003/08/13] ports/55515 portmgr [patch] extract perl stuff from bsd.port. o [2003/08/13] bin/55539 [patch] Parse fstab(5) with spaces in pat o [2003/08/13] bin/55546 cdcontrol(1) play tr m:s.f interface is p o [2003/08/20] kern/55793 [dc] Flaky behavior of if_dc when initial o [2003/08/20] kern/55802 Make kernel.GENERIC suitable for diskless o [2003/08/21] kern/55835 emulation [linux] [patch] Linux IPC emulation missi o [2003/08/21] i386/55838 i386 [kbd] [patch] Dual characters from keyboa o [2003/08/21] ports/55841 portmgr [patch] Mk/bsd.port.mk: add routines to u o [2003/08/22] docs/55883 kensmith [patch] handbook advanced-networking/chap o [2003/08/24] conf/55916 rc [PATCH] ppp-user options o [2003/08/24] kern/55917 tun# devices cannot be created in 4.8-STA o [2003/08/24] gnu/55936 send-pr does not set mail envelope from o [2003/08/26] kern/55984 ipfw [ipfw] [patch] time based firewalling sup s [2003/08/26] bin/56012 [MAKEDEV] [patch] MAKEDEV does not allow o [2003/08/28] usb/56095 usb [usb] [patch] QUIRK: Apacer Pen Drive fai o [2003/08/31] kern/56245 [bktr] Distorted and choppy video with bk o [2003/08/31] bin/56249 obrien lukemftpd has two bugs (motd, munged utmp o [2003/08/31] kern/56250 [ums] [patch] ums(4) doesn't work with MC o [2003/09/04] bin/56447 Extend mt command for AIT-2 tape drives o [2003/09/04] kern/56451 /compat/linux/proc/cpuinfo gives wrong CP o [2003/09/05] standards/56476standards cd9660 unicode support simple hack o [2003/09/07] gnu/56554 re add Cc: maintainer feature to send-pr o [2003/09/09] kern/56632 MTIO incorrect mt_fileno status after MTE o [2003/09/09] bin/56648 le [PATCH] enable rcorder(8) to use a direct o [2003/09/10] kern/56664 bad file# in MTIO status buffer after MTE o [2003/09/11] kern/56720 [libc] feature request: UNICODE support i f [2003/09/16] ports/56928 java jce-aba port should install to $JAVA_HOME o [2003/09/16] conf/56934 rc.firewall rules for natd expect an inte o [2003/09/17] conf/56940 pccard.conf entry for PCET10-CL causes sy o [2003/09/17] bin/56952 re [sysinstall] floppy install error s [2003/09/18] ports/56980 portmgr unprivileged user, extracting of tarballs a [2003/09/18] docs/56981 peter man terminfo(5) from libncurses does not o [2003/09/19] bin/57018 le [PATCH] convert growfs to use libufs(3) o [2003/09/20] kern/57036 No media detected by 3c905b-tx on 4.9-rel o [2003/09/20] bin/57045 trpt(8) option -t was disabled on -curren o [2003/09/21] bin/57054 let test(1) compare the mtime of a file t s [2003/09/22] bin/57088 [cam] [patch] for a possible fd leak in l o [2003/09/22] bin/57089 "w" does not honor the -n option o [2003/09/24] docs/57153 doc S_IRWXU missing in fstat(2) man page? o [2003/09/26] kern/57230 [psm] [patch] psm(4) incorrectly identifi o [2003/09/26] amd64/57250 obrien Broken PTRACE_GETFPREGS and PTRACE_SETFPR o [2003/09/27] standards/57295harti make's handling of MAKEFLAGS is not POSIX o [2003/09/27] docs/57298 blackend [patch] add using compact flash cards inf o [2003/09/30] docs/57388 doc [patch] INSTALL.TXT enhancement: mention s [2003/09/30] bin/57407 bms [patch] Better NTP support for dhclient(8 o [2003/10/01] misc/57464 [boot] loader(8) seems to confuse files [ o [2003/10/02] ports/57498 portmgr HEIMDAL_HOME should be defined in src or s [2003/10/02] ports/57502 ports-bugs ports that define USE_* too late o [2003/10/02] conf/57517 add parameter for /etc/periodic/daily/210 o [2003/10/03] kern/57522 [PATCH] New PID allocater algorithm from o [2003/10/04] docs/57569 doc error on gensetdefs(8) man page p [2003/10/06] bin/57630 lptcontrol gives "device busy" if device a [2003/10/07] kern/57696 cel [nfs] NFS client readdir terminates prema o [2003/10/07] bin/57715 [patch] tcopy(1) enhancement a [2003/10/12] standards/57911tjr fnmatch ("[[:alpha:]]","x", FNM_PATHNAME) o [2003/10/13] docs/57926 doc [patch] amd.conf(5) poorly format as it h o [2003/10/13] docs/57974 doc man page apropos for select macros (FD_SE o [2003/10/13] kern/57976 simple kernel DDB enhancement o [2003/10/14] bin/58012 Multihomed tftpd enhancement o [2003/10/18] conf/58206 [Patch] 460.status-mail-rejects incompati o [2003/10/20] bin/58293 vi replace with CR (ASCII 13) doesn't wor o [2003/10/22] kern/58373 mckusick [ufs] ufs inconsistency between 4.9-RC an o [2003/10/22] bin/58390 bsdlabel fails to display an error messag o [2003/10/24] bin/58483 [patch] mount(8): allow type special or n o [2003/10/24] kern/58497 sysctl knob to return current process' ji f [2003/10/25] kern/58529 dwmalone [libpcap] [patch] RDWR bpf in pcap. o [2003/10/26] conf/58557 Summer/Winter-time change causes daily cr o [2003/10/26] gnu/58583 kan gcc.1, cpp.1 and gcov.1 manpages are outd o [2003/10/27] conf/58595 Default NTP configuration o [2003/10/28] gnu/58656 marcel gdb not ready for prime time o [2003/10/29] standards/58676standards grantpt(3) alters storage used by ptsname o [2003/10/29] bin/58696 /sbin/natd feature request & possible pat o [2003/10/30] docs/58710 doc killpg(2) contains an error regarding sen o [2003/10/31] i386/58784 i386 [ata] ATA does not work in DMA mode (ASUS o [2003/11/01] kern/58803 [kernel] [patch] kern.argmax isn't change o [2003/11/04] conf/58939 [patch] dumb little hack for /etc/rc.fire o [2003/11/05] kern/58967 Kernel kills processes in spite of cputim o [2003/11/05] bin/58970 truss coredumps for the no significant re o [2003/11/07] docs/59044 doc [patch] doc.docbook.mk does not properly o [2003/11/12] bin/59207 uustat list limit of 201 jobs f [2003/11/12] kern/59208 matk [sound] [patch] reduce pops and crackles o [2003/11/12] bin/59220 obrien systat(1) device select (:only) broken o [2003/11/13] docs/59240 blackend [patch] handbook update: linux MATLAB s [2003/11/13] ports/59254 ports-bugs ports that write something after bsd.port o [2003/11/14] kern/59289 [bktr] [patch] ioctl METEORGBRIG in bktr_ o [2003/11/15] www/59307 remko [patch] xml/xsl'ify & update publications o [2003/11/19] kern/59456 fdescfs stat / compress creates only empt o [2003/11/19] docs/59477 doc Outdated Info Documents at http://docs.fr o [2003/11/20] bin/59530 strange bug in /bin/sh o [2003/11/21] bin/59551 marcel Problem with GDB on latest -CURRENT o [2003/11/21] bin/59564 Added an option (-S) to from command to a o [2003/11/23] conf/59600 [PATCH] Improved us.emacs.kbd mapping o [2003/11/23] kern/59624 [ata] [patch] HightPoint HPT371 support f o [2003/11/26] kern/59698 usb [kbd] [patch] Rework of ukbd HID to AT co o [2003/11/26] bin/59708 qa [sysinstall] [patch] add sSMTP support fo o [2003/11/27] docs/59735 kensmith [patch] Adding a reference to Icelandic R o [2003/11/27] docs/59736 kensmith [patch] Updating size of archives in hubs s [2003/11/27] kern/59739 [libc] rmdir(2) and mkdir(2) both return o [2003/11/28] bin/59772 ftpd(8)/FreeBSD 5: support for tcp_wrappe o [2003/11/28] bin/59774 ftpd(8)/FreeBSD 5: syslog facility may be o [2003/11/28] bin/59775 ftpd(8)/FreeBSD 5: incorrect reply for "u p [2003/11/29] conf/59799 New locale: zh_HK.Big5HKSCS o [2003/11/30] kern/59814 FreeBSD mknod refuses to create pipes and o [2003/11/30] docs/59835 doc ipfw(8) man page does not warn about acce f [2003/11/30] i386/59854 anholt [agp] [panic] System panics when AMD 762 o [2003/12/02] kern/59896 trm driver is not in GENERIC f [2003/12/02] docs/59900 kuriyama out of date README.txt and .message files o [2003/12/02] kern/59903 [pci] [patch] "pci_find_device" returns [ o [2003/12/03] bin/59922 Toshiba Portege hangs with Eicon DIVA T/A o [2003/12/09] kern/60089 scottl [udf] UDF filesystem appends garbage to f o [2003/12/12] kern/60174 marcel debugging a kernel module in load/attach o [2003/12/12] kern/60183 sobomax [gre] [patch] No WCCPv2 support in gre f [2003/12/15] usb/60248 usb [patch] Problem with USB printer HP Laser a [2003/12/16] kern/60293 bms FreeBSD arp poison patch o [2003/12/16] kern/60307 [pccard] [patch] wrong product id in pcca o [2003/12/17] i386/60319 i386 [hang] read error 34/0 during installatio o [2003/12/18] bin/60350 qa [sysinstall] in Choose Distributions scre o [2003/12/18] misc/60352 [patch] buildworld fails in sysinstall if o [2003/12/21] kern/60448 PF_KEY protocol does not have a correspon o [2003/12/22] misc/60503 [modules] small error in modules installa o [2003/12/22] bin/60510 [patch] change to less(1) for compressed o [2003/12/23] docs/60529 doc resolver(5) man page is badly out of date o [2003/12/24] docs/60544 doc [patch] getenv(3) manpage doesn't state t o [2003/12/25] kern/60550 silby [kernel] [patch] hitting process limits p f [2003/12/25] ports/60558 portmgr [PATCH] bsd.port.mk: automatically verify f [2003/12/26] kern/60599 multimedia [bktr] [partial patch] No sound for ATI T o [2003/12/27] bin/60632 UI bug in partition label screen in sysin o [2003/12/27] bin/60636 Enhancement to adduser script. o [2003/12/29] kern/60677 multimedia [sound] [patch] No reaction of volume con o [2003/12/29] kern/60697 [pty] [patch] pseudo-tty hack versus teln f [2003/12/29] kern/60699 DVD Multidrive udma mode autosensed wrong o [2003/12/30] kern/60719 ipfw [ipfw] Headerless fragments generate cryp o [2004/01/02] bin/60834 [patch] ftpd(8) send_data()+oldway: anony o [2004/01/03] kern/60874 [feature request] auto-assign devfs rules o [2004/01/04] bin/60892 [patch] added -p option to kldxref(8) to o [2004/01/06] kern/60963 [pecoff] [patch] Win32 Applications abort o [2004/01/06] kern/60982 [pci] [patch] ID for VIA 686A Power Manag o [2004/01/07] i386/61005 i386 [boot] The Boot Manager in FreeBSD 5.2RC o [2004/01/08] docs/61070 doc handbook: Installation docs misleading: f [2004/01/09] kern/61109 [bge] bge on TYAN AMD762-based Thunder/Ti o [2004/01/11] amd64/61209 amd64 ppc0: cannot reserve I/O port range o [2004/01/12] usb/61234 usb [usb] [patch] usbhidaction(1) doesn't sup o [2004/01/12] bin/61239 [patch] bootp enhancement, places the dhc o [2004/01/12] kern/61261 obrien generated header, emu10k1-alsa%diked.h no o [2004/01/12] bin/61264 qa [sysinstall] unable To Use VT100 Terminal o [2004/01/13] conf/61289 /etc/pccard_ether: please use ifn value o o [2004/01/13] kern/61300 [aue] [patch] Enabling HomePNA PHY on aue o [2004/01/13] docs/61301 doc [patch] Manpage patch for aue(4) to enabl o [2004/01/13] i386/61308 i386 Maxproc Limits counts Zombie Processes wh f [2004/01/13] misc/61322 [patch] bsd.dep.mk disallows shell genera o [2004/01/14] i386/61348 i386 Adaptec 1460D PCI SCSI Card does not work o [2004/01/16] bin/61405 cperciva A faster ffs(3) o [2004/01/16] kern/61415 [net80211] [patch] disable broadcast ssid o [2004/01/16] kern/61438 qa [sysinstall] 5.2 nfs tasks running by def o [2004/01/16] i386/61442 i386 Highpoint RocketRAID 1520 uses only UDMA2 o [2004/01/17] i386/61481 i386 [patch] a mechanism to wire io-channel-ch o [2004/01/17] kern/61497 ups [kernel] [patch] __elfN(map_insert) bug o [2004/01/17] bin/61502 dwmalone Incorrect ip6fw output when adding rules o [2004/01/18] kern/61503 [smbfs] mount_smbfs does not work as non- o [2004/01/18] i386/61545 i386 5.2 release cannot see NIC on Dell 1750 o [2004/01/19] i386/61579 i386 [hang] sis 645dx is not working (but on t o [2004/01/20] i386/61603 i386 [sysinstall] wrong geometry guessed s [2004/01/20] kern/61622 Intel Pro/100 Intelligent Server Adapter o [2004/01/20] conf/61641 grog Martin Luther King, Jr. Day missing from o [2004/01/21] bin/61666 peter [patch] mount_nfs(8) parsing bug, segment o [2004/01/21] docs/61667 doc Obsolete documentation on FreeBSD PnP f [2004/01/21] kern/61677 Unable to open CDROM tray if boot_cdrom i a [2004/01/22] kern/61744 andre [netinet] [patch] TCP hangs onto mbufs wi o [2004/01/24] bin/61808 [PATCH] Update RPC prgs to allow binding s [2004/01/24] kern/61810 mounts done within a chroot show up wrong o [2004/01/24] www/61824 www Misleading documentation on FreeBSD insta o [2004/01/24] conf/61847 Additions to file /usr/share/misc/pci_ven o [2004/01/25] i386/61858 bms bus_dmamap_sync with BUS_DMASYNC_POSTREAD o [2004/01/25] docs/61859 doc ddb(4): Incorrect informaiton about trace o [2004/01/25] kern/61909 5.2-Current fails to notice change of CD o [2004/01/26] bin/61971 k5init --renewable fails o [2004/01/27] bin/61975 ume [PATCH] sync src/usr.sbin/traceroute6.c w o [2004/01/27] bin/61978 [PATCH] sync src/usr.sbin/setkey/token.l a [2004/01/27] ports/61998 roam PostgreSQL support for mail/vpopmail 5.3. o [2004/01/27] i386/62003 i386 [loader] [patch] make /boot/loader "reboo o [2004/01/28] kern/62042 luigi [ipfw] ipfw can't no more reject icmp (ic o [2004/01/29] bin/62077 Make it possible to abbreviate device nam o [2004/01/30] kern/62098 [pccard] [patch] Bad CISTPL_VERS_1 and cl o [2004/01/30] kern/62102 alc obreak update o [2004/02/01] bin/62207 ppp crashes with option 'nat punch_fw' wh o [2004/02/02] kern/62257 card reader UCR-61S2B is only half-suppor o [2004/02/03] i386/62288 i386 reopened raid disks on a running system o [2004/02/04] kern/62323 [kbd] Logitech Cordless MX Duo Keyboard/M o [2004/02/04] kern/62333 [dc] syslog: kernel: dc0: discard oversiz o [2004/02/06] docs/62412 doc one of the diskless boot methods describe o [2004/02/08] bin/62513 Errant /usr/bin/krb5-config on 4-STABLE p [2004/02/08] gnu/62555 readline 4.3 should be patched o [2004/02/10] ports/62657 portmgr Port linux-jpeg have decreaseed version n o [2004/02/11] bin/62702 qa [sysinstall] backup of /etc and /root dur o [2004/02/11] bin/62711 qa [sysinstall] installation: "Insert Next C o [2004/02/12] docs/62719 doc cross-reference pccardd(8) and devd(8) o [2004/02/12] docs/62724 doc [patch] host(1) manpage does not include o [2004/02/12] kern/62742 [hang] system "hangs" for a some time whi o [2004/02/12] kern/62746 tjr [smbfs] SMBFS and vfs.usermount. User can f [2004/02/13] ports/62761 portmgr [patch] for phasing out distinfo files o [2004/02/13] bin/62766 ``systat -vm'' does not work on diskless f [2004/02/14] java/62837 java linux-sun-jdk14 executables hang with COM s [2004/02/14] standards/62858standards malloc(0) not C99 compliant o [2004/02/15] bin/62885 des pam_radius doesn't maintain multiple stat o [2004/02/15] kern/62890 ups proc pointer set by fork1 can be stale in f [2004/02/17] bin/62965 krion pkg_add -r fails if fetching multiple pac o [2004/02/17] i386/62977 i386 Mouse daemon during install/setup o [2004/02/19] bin/63064 strptime fails on %z o [2004/02/19] docs/63084 des Several Man-pages reference non-existant o [2004/02/20] kern/63096 rwatson [mac] [patch] MAC entry point for route m o [2004/02/20] ports/63108 obrien amd64/bento-fix: devel/gdb52 and devel/gd o [2004/02/21] amd64/63188 amd64 [ti] ti(4) broken on amd64 o [2004/02/22] bin/63197 tftp Bus error, core dumped o [2004/02/22] docs/63215 doc Wrong prototypes in mi_switch(9) (ref doc o [2004/02/24] bin/63319 burncd fixate error o [2004/02/26] bin/63413 dbm_delete return value incorrect o [2004/02/29] conf/63527 AM/PM date format should be localized. o [2004/02/29] www/63551 ceri Lack of DTD in cgi scripts o [2004/02/29] www/63552 remko Validation errors due to CAPs in attribut o [2004/03/01] docs/63570 ceri [patch] Language cleanup for the Handbook o [2004/03/01] bin/63608 Add a -c option to time(1) to display csh o [2004/03/02] i386/63628 bms [loader] [patch] i386 master boot record o [2004/03/02] bin/63659 /usr/sbin/pw does not honor symlinks in s s [2004/03/03] ports/63716 portmgr [patch] Mk/bsd.port.mk: move sysctl to ${ o [2004/03/04] kern/63746 vmnet0 makes vmnet4096 o [2004/03/04] kern/63768 Must access /dev/acd0c before using /dev/ o [2004/03/05] i386/63815 i386 boot loader waste a lot of time (10 min) o [2004/03/06] usb/63837 usb [uhid] [patch] USB: hid_is_collection() o o [2004/03/07] kern/63863 glebius [netgraph] [patch] feature request: imple s [2004/03/07] kern/63897 makeoptions CONF_CFLAGS are ignored when o [2004/03/10] bin/64036 Linux application Sophos Mailmonitor not o [2004/03/11] kern/64114 [vga] [patch] bad vertical refresh for co o [2004/03/12] bin/64153 dd mdmfs features via fstab o [2004/03/12] kern/64178 jmg [kqueue] [patch] kqueue does not work wit o [2004/03/13] bin/64198 [patch] init(8) may keep zombies f [2004/03/15] ports/64304 portmgr geography category o [2004/03/16] bin/64327 [patch] make(1): document surprising beha o [2004/03/17] conf/64381 qa lo0 not up and no IPs assigned after inst p [2004/03/19] bin/64464 rwatson pam_krb5 module ignores no_ccache option o [2004/03/20] kern/64522 3COM 3C920B onboard Asus P4R800-VM not su o [2004/03/22] kern/64556 [sis] if_sis short cable fix problems wit o [2004/03/22] kern/64588 [joy] [patch] Extend joystick driver arch o [2004/03/23] i386/64626 i386 AP initialization problem on GIGABYTE GA- s [2004/03/24] bin/64664 bms Reboot command needs to protect itself fr o [2004/03/26] kern/64772 Mouse Movement Problem o [2004/03/26] kern/64788 nsswitch with ldap and starting ppp on bo o [2004/03/27] docs/64807 doc Handbook section on NAT incomplete o [2004/03/27] bin/64811 systat can't display big numbers in some s [2004/03/29] kern/64875 standards [libc] [patch] [feature request] add a sy o [2004/03/30] bin/64921 vmstat -i is not reporting IRQ usage on a o [2004/03/31] kern/64971 A squid process larger than 3G o [2004/04/01] bin/65045 ftp doesn't remember binary mode if setti o [2004/04/02] docs/65065 doc [patch] improper language ntpd(8) man pag o [2004/04/03] i386/65124 i386 Unable to disable TERM_EMU cleanly o [2004/04/05] kern/65206 adding floppy drive seems to force PIO mo o [2004/04/05] bin/65228 [Patch] Allow rup(1) to parse hostnames f o [2004/04/06] bin/65258 save /etc/rc.firewall from changing for s o [2004/04/07] kern/65278 ups [sio] [patch] kgdb debugger port initiali o [2004/04/07] bin/65299 vi temp path contains double / o [2004/04/08] bin/65306 obrien [patch] Portability fixes for FreeBSD bui f [2004/04/09] ports/65344 portmgr [patch] USE_ macros for graphics librarie o [2004/04/09] kern/65355 [pci] [patch] TC1000 serial ports need en o [2004/04/12] kern/65448 jhb _mtx_unlock_sleep() race condition if ADA o [2004/04/13] docs/65477 doc release notes: installation instruction f o [2004/04/13] bin/65483 vi -r crashes o [2004/04/14] i386/65528 i386 [psm] mouse cursor disapears on moving o [2004/04/14] docs/65530 doc [patch] minor improvement to getgrent(3) p [2004/04/15] bin/65557 des passwd uses passwd_format of default logi o [2004/04/16] kern/65627 [i386] [patch] store P3 serial number in o [2004/04/17] bin/65649 gad Add `-u name' option to env(1) o [2004/04/18] bin/65707 scp does not deal with local file copies o [2004/04/19] kern/65769 usb [usb] Call to tcflush(x, TCIFLUSH) stops s [2004/04/20] ports/65794 ports-bugs net/ripetools is obsolete o [2004/04/20] bin/65803 gad bin/ps enhancements (posix syntax, and mo s [2004/04/20] ports/65804 portmgr [PATCH] bsd.port.mk is gratuitously slow f [2004/04/23] ports/65915 portmgr [PATCH] bsd.port.mk: handle interactive c o [2004/04/25] bin/65973 Problem logging in to the NIS slave and N o [2004/04/27] ports/66032 portmgr [PATCH] bsd.port.mk: clean room installat o [2004/04/29] kern/66079 bms route change default causes panic in cert o [2004/04/29] kern/66095 [pam] template_user is broken in pam_radi o [2004/05/03] kern/66185 [twe] twe driver generates gratuitous war o [2004/05/03] kern/66225 [netgraph] [patch] extend ng_eiface(4) co o [2004/05/04] docs/66265 doc [patch] Document what -f and LD_TRACE_LOA o [2004/05/04] kern/66268 glebius [socket] [patch] Socket buffer resource l o [2004/05/05] gnu/66279 less(1) -- add support for stty(1) erase2 p [2004/05/05] docs/66289 brueffer [patch] lib/libc/gen/ualarm.3 refers to n o [2004/05/05] docs/66296 doc [patch] contrib/amd/amq/amq.8 uses log_op p [2004/05/06] bin/66311 fenner TCPDUMP ISAKMP payload handling denial-of o [2004/05/07] ports/66342 portmgr [PATCH] fix ECHO_MSG breakage in java por o [2004/05/07] docs/66343 doc [patch] unlisted supported card on man pa o [2004/05/07] standards/66357standards make POSIX conformance problem ('sh -e' & o [2004/05/08] ports/66389 portmgr [PATCH] bsd.port.mk: follow MOVED ports o [2004/05/10] bin/66445 [patch] Add options to last(1) to ignore o [2004/05/10] alpha/66478 alpha unexpected machine check: panic for 4.9, o [2004/05/10] ports/66480 openoffice editors/openoffice.org-1.1 port uses root o [2004/05/10] docs/66483 doc [patch] share/man/man4/csa.4 grammar nits p [2004/05/10] bin/66492 cpio -o -Hustar creates broken timestamps o [2004/05/11] docs/66505 trhodes escaping '~' and '$' characters in login. o [2004/05/11] standards/66531standards _gettemp uses a far smaller set of filena o [2004/05/11] kern/66547 usb [usb] Palm Tungsten T USB does not initia o [2004/05/12] kern/66564 [xl] 3c920-MV00 PHY detection problem s [2004/05/12] ports/66566 portmgr [PATCH] bsd.port.mk: fix build when /usr/ o [2004/05/12] kern/66589 processes get stuck in "inode" state when o [2004/05/13] bin/66594 marcel gdb dumps core f [2004/05/14] kern/66642 multimedia [sound] pcm0: play: 0: play interrupt tim o [2004/05/16] bin/66677 mv incorrectly copies somedir/.. to ./.. o [2004/05/17] conf/66726 /etc/periodic/security/ 800.loginfail scr o [2004/05/17] bin/66763 mdmfs: sync arguments with those of newfs o [2004/05/17] docs/66770 doc [patch] share/man/man4/ng_pppoe.4 tyops, o [2004/05/17] docs/66771 imp [patch] usr.sbin/pccard/pccardc/pccardc.8 o [2004/05/17] docs/66775 roam [patch] clarification to committer's guid o [2004/05/19] bin/66893 [patch] rpc.yppasswdd(8): Linux NIS clien o [2004/05/20] bin/66941 [patch] gcc2.95 (FreeBSD-specific): fix u o [2004/05/21] kern/66981 Can't read audio CDs with a samsung sw-25 o [2004/05/21] bin/66988 [Patch] apm.c check validation of the ret o [2004/05/21] i386/67011 mdodd [vpd] [patch] MFC of vpd driver for IBM x o [2004/05/22] bin/67041 "fortune -m" peeks in "fortune" file only o [2004/05/22] i386/67055 i386 [psm] Mouse (wheel) detection problem on o [2004/05/23] docs/67078 doc [patch] MFC of a rtld(1) man page is inco o [2004/05/24] bin/67142 rpc.yppasswdd incorrectly throws errors a o [2004/05/25] bin/67172 w,finger display the remote host incorrec o [2004/05/26] bin/67231 [patch] pam_krb5 doesn't honor default fl o [2004/05/28] bin/67307 ready to import bootstrap_cmds/decomment o [2004/05/28] bin/67308 ready to import bootstrap_cmds/relpath fr o [2004/05/28] kern/67309 acpi zzz reboot computer (ACPI S3) a [2004/05/29] bin/67317 bms [patch] to nfsd.c to make it slightly mor o [2004/05/30] i386/67383 i386 [i386] [patch] do a better job disassembl f [2004/06/01] ports/67436 portmgr [patch] bsd.port.mk: GNU_CONFIGURE_PREFIX o [2004/06/01] ports/67437 portmgr [patch] bsd.port.mk: NO_BUILD and PKGNAME o [2004/06/02] misc/67502 cvsadm cvs-all commit message did not include al f [2004/06/03] ports/67531 portmgr New spanish virtual category o [2004/06/03] kern/67545 [nfs] NFS Diskless Mount Option Suggestio p [2004/06/03] conf/67549 No Cents for es_ES monetdef (Euro) o [2004/06/03] bin/67550 Add BLK_SIZE option to tftpd server o [2004/06/04] www/67554 www man-cgi visual glitch on 3-word titles o [2004/06/04] gnu/67565 SIGPIPE processing in cvs 1.11.5 may lead o [2004/06/04] i386/67578 i386 [kbd] Keyboard error IBM xSeries 335 o [2004/06/04] kern/67580 request to add hints for boot failures f [2004/06/06] kern/67627 phk [panic] gbde kernel panic s [2004/06/08] kern/67706 daichi [unionfs] cvs update over a union mount s o [2004/06/08] bin/67723 FreeBSD 5.x restore cannot handle other p o [2004/06/09] kern/67763 [pccard] [patch] PCMCIA: MELCO manufactur o [2004/06/10] i386/67773 i386 5.x series - md5 on dev no longer works e f [2004/06/10] docs/67806 doc [patch] Let 5.x users know how to boot in s [2004/06/11] ports/67815 ports-bugs graphics/ImageMagick no longer recognizes o [2004/06/11] kern/67830 [smp] [patch] CPU affinity problem with f o [2004/06/13] alpha/67903 alpha hw.chipset.memory: 1099511627776 - thats o [2004/06/14] bin/67943 find(1) fails when current directory is n o [2004/06/16] bin/68014 stty -pendin does not turn off pendin mod o [2004/06/16] bin/68016 Bug in visual bell on console (kbdcontrol o [2004/06/17] bin/68062 standalone repeat(1) command o [2004/06/18] kern/68081 [headers] [patch] sys/time.h (lint fix) o [2004/06/19] conf/68108 [patch] Adding mac-address /conf selector s [2004/06/19] kern/68110 hsu [netinet] [patch] RFC 3522 for -HEAD o [2004/06/19] i386/68117 i386 serious network collisions after NIC "med o [2004/06/20] bin/68134 rwatson 'invalid hostname' displayed in w/who out o [2004/06/20] i386/68140 i386 Problem with Sony AIT ATAPI Tape dirve a [2004/06/22] kern/68189 luigi arp -a discloses non-jail interfaces with o [2004/06/22] kern/68192 Cannot use quotas on jailed systems p [2004/06/22] docs/68201 keramida [patch] pthread_atfork(3) man page o [2004/06/23] usb/68232 usb [ugen] [patch] ugen(4) isochronous handli o [2004/06/25] kern/68311 [patch] it is impossible to override defa o [2004/06/25] bin/68312 be able to create fdisk partions using si o [2004/06/25] kern/68315 [ata] [patch] atacontrol(8) addspare for o [2004/06/25] kern/68317 [kernel] [patch] on soft (clean) reboots o [2004/06/25] bin/68328 enable configuration of extra listen sock o [2004/06/27] usb/68412 usb [usb] [patch] QUIRK: Philips KEY013 USB M o [2004/06/27] kern/68435 wpaul xl driver in freebsd 5.x only works if pr o [2004/06/28] bin/68437 conscontrol DEVDIR -> _PATH_DEV fix and m o [2004/06/28] kern/68458 Burning DVD causes lots of FAILURE - READ o [2004/06/28] kern/68459 [vfs] [patch] Patches to mknod(2) behave o [2004/06/30] kern/68514 [re] Realtek driver halts on oversized fr o [2004/06/30] i386/68518 i386 [agp] [hang] hangs while loading 82443BX p [2004/06/30] conf/68524 Including the Basque in the system p [2004/06/30] conf/68525 matteo Loader's verbose boot mode has rc.d/local o [2004/06/30] bin/68527 Resizing 'top' running in a terminal to o o [2004/07/01] bin/68552 tip(1) does not set noncanonical mode inp o [2004/07/02] bin/68586 dwmalone [patch] allow syslogd to forward to non-d o [2004/07/03] kern/68623 [sf] [patch] sf(4) (Adaptec StarFire) mul o [2004/07/05] kern/68690 [libc] write(2) returns wrong value when p [2004/07/05] bin/68691 dwmalone syslogd - correct program name handling s [2004/07/05] kern/68692 andre [net] [patch] Move ARP out of routing tab o [2004/07/06] kern/68719 [msdosfs] [patch] poor performance with m o [2004/07/07] i386/68754 i386 [hang] SMP reset bug (Tyan Thunder100, 44 o [2004/07/07] kern/68765 [mmap] a little data can be stored beyond o [2004/07/08] bin/68797 cut(1) patches to fflush after each write o [2004/07/09] docs/68843 doc Dates on rc.subr(8) & rc(8) are whack. o [2004/07/09] docs/68845 doc The .At macro produces unexpected results o [2004/07/09] bin/68848 [patch] find(1) shows pathname as optiona a [2004/07/11] bin/68904 krion pkg_install fixes (_PATH_*, sprintf -> sn o [2004/07/11] misc/68905 core dump ownership issue o [2004/07/13] bin/68981 unlogic jot behaviour. o [2004/07/13] bin/69010 [patch] Portability fixes for FreeBSD bui s [2004/07/13] threads/69020threads pthreads library leaks _gc_mutex o [2004/07/14] kern/69064 [kernel] [patch] No multiple ip4/6's coul o [2004/07/15] bin/69083 [patch] basic modelines for contrib/nvi o [2004/07/17] bin/69164 marcel GDB/amd64: coredump while debugging a cor o [2004/07/17] ports/69191 roam SRV patch for dnbs/djbdns o [2004/07/18] i386/69257 i386 [i386] [patch] in_cksum_hdr is non-functi o [2004/07/19] bin/69268 wpaul [patch] Fix ndiscvt(8) to warn you if it' o [2004/07/19] ports/69309 ale mysql database backup script for periodic o [2004/07/21] bin/69362 mbr amd(8) does not properly detect the local o [2004/07/22] bin/69398 [patch] cleartext display of password in o [2004/07/22] kern/69448 socket.h: cmsghdr macros don't work with o [2004/07/23] kern/69502 [modules] kldload will load modules that o [2004/07/27] kern/69650 [patch] make getserv* functions work with o [2004/07/28] amd64/69705 amd64 IPC problem (msq_queues) o [2004/07/28] i386/69722 i386 [wi] wi0: init failed, Lucent Technologie o [2004/07/29] kern/69730 [puc] [patch] puc driver doesn't support o [2004/07/29] i386/69750 acpi Boot without ACPI failed on ASUS L5 o [2004/07/30] kern/69825 [libc] 1st group supplied to setgroups() o [2004/07/30] kern/69826 [libc] 16th group has no effect when acce o [2004/08/01] docs/69861 doc [patch] usr.bin/csplit/csplit.1 does not o [2004/08/01] bin/69875 [patch] mlxcontrol(8): `mlxcontrol status o [2004/08/03] kern/69963 ipfw [ipfw] install_state warning about alread o [2004/08/03] ports/69965 portmgr [patch] check for moved ports in "make de o [2004/08/04] bin/69986 qa [sysinstall] [patch] no job control in fi o [2004/08/04] kern/69989 killing process that uses snp + unloading o [2004/08/04] bin/70002 qa [sysinstall] fails to locate FTP dirs if o [2004/08/05] conf/70048 magic(5) file has a typo at second test f o [2004/08/08] bin/70182 [patch] fortune -e implementation bug o [2004/08/09] docs/70217 doc [patch] Suggested rewrite of docproj/sgml o [2004/08/10] bin/70245 re Change to src/release/Makefile to aid doc o [2004/08/10] conf/70252 add System Administrator Appreciation Day o [2004/08/10] bin/70283 mtm adduser aborts in batch mode with comment o [2004/08/11] bin/70297 request to make amd timeouts per-mount lo o [2004/08/12] bin/70335 inconsistent syslog behavior when max chi o [2004/08/12] bin/70336 telnetd always exits with value 1 f [2004/08/12] usb/70362 sanpei [usbdevs] [patch] LaCie 160GB USB drive o [2004/08/13] kern/70401 darrenr [modules] Could not load ipl.ko when no I o [2004/08/15] bin/70476 sbin/reboot change, -p behavior default f o [2004/08/16] bin/70511 When fread()ing with buffering turned off o [2004/08/16] usb/70523 usb [usb] [patch] umct sending/receiving wron o [2004/08/16] bin/70528 No libffi on amd64, either with native co o [2004/08/16] bin/70536 reboot -dp tries to dump when powering of o [2004/08/17] docs/70583 ceri [patch] Update freebsd-glossary o [2004/08/18] kern/70608 [irq] ethernet-error (card uses duplicate o [2004/08/18] i386/70610 i386 [speaker] [patch] spkr(4): hardcoded assu o [2004/08/19] docs/70652 hmp [patch] New man page: portindex(5) o [2004/08/20] docs/70697 doc pcm(4) is out of date o [2004/08/20] kern/70708 [nfs] gcore/procfs not finding /proc/pid/ o [2004/08/20] conf/70715 Lack of year in dates in auth.log can cau o [2004/08/21] bin/70756 [PATCH] indent(1) mishandles code that is o [2004/08/21] kern/70798 Compatibility: Sun/Solaris has an fcntl() o [2004/08/22] kern/70810 [pci] [patch] Enable SMBus device on Asus o [2004/08/22] standards/70813standards [PATCH] ls(1) not Posix compliant o [2004/08/22] ports/70831 tobez make perl5.8 port SU_CMD aware o [2004/08/22] i386/70832 i386 [re] serious problems with RealTek NIC us a [2004/08/24] ports/70900 edwin [patch] devel/sdl12 inconsistency between o [2004/08/24] kern/70904 darrenr [ipfilter] ipfilter ipnat problem with h3 o [2004/08/25] usb/70942 usb [usb] Genius Wireless USB mouse: moused d o [2004/08/27] kern/71045 [dhcp] DHCP-Request is sets other device' o [2004/08/29] bin/71098 CVS keywords are not expanded with CVS 1. o [2004/08/31] kern/71184 andre tcp-sessions hangs on FIN_WAIT_2 state o [2004/08/31] gnu/71210 Update to GNU sdiff: add user-preference o [2004/09/01] kern/71219 /proc/*/map dont tell file offset o [2004/09/01] conf/71254 ncurses: xterm vs. cons* termtypes or sc( o [2004/09/01] kern/71258 [vm] [patch] anonymous mmappings not alwa f [2004/09/02] kern/71280 [aue] aue0 device (linksys usb100tx) does o [2004/09/03] kern/71334 [mem] [patch] mem_range_attr_{set|get} ar o [2004/09/04] kern/71366 ipfw [ipfw] "ipfw fwd" sometimes rewrites dest o [2004/09/05] conf/71386 loader.conf: hint.apic.0.disabled="YES" d o [2004/09/06] usb/71416 usb [usb] Cryptoflex e-gate USB token (ugen0) o [2004/09/06] usb/71417 usb [usb] Cryptoflex e-gate USB token (ugen0) o [2004/09/06] kern/71422 csjp LOR in sys/net/bpf o [2004/09/07] kern/71450 [de] de(4): MAC address change on 21040 " o [2004/09/07] usb/71455 usb [usb] Slow USB umass performance of 5.3 o [2004/09/07] kern/71469 default route to internet magically disap o [2004/09/07] kern/71474 route lookup does not skip interfaces mar o [2004/09/09] kern/71532 Multiple SCSI-Busses are seen differently p [2004/09/09] ports/71544 arved devel/tvision might need these extra patc o [2004/09/10] conf/71549 /etc/termcap missing passthrough printing o [2004/09/10] docs/71555 doc handbook: changes for how to run matlab o o [2004/09/11] i386/71586 i386 FreeBSD 5.3-BETA3 #3 hang during boot on o [2004/09/11] usb/71605 usb [umass] [patch] umass doesn't recognize m o [2004/09/11] kern/71608 [pccard] XIRCOM REM56-100 Ethernet 10/100 o [2004/09/12] bin/71613 [PATCH] cleanup of the usr.sbin/tracerout o [2004/09/12] bin/71616 [PATCH] cleanup of the usr.sbin/yp_mkdb c o [2004/09/12] bin/71617 [PATCH] cleanup of the usr.sbin/ypserv co o [2004/09/12] bin/71618 [PATCH] cleanup of the usr.sbin/timed cod o [2004/09/12] bin/71619 [PATCH] cleanup of the usr.sbin/tcpdump c o [2004/09/12] bin/71620 [PATCH] cleanup of the usr.sbin/sysinstal o [2004/09/12] bin/71621 [PATCH] cleanup of the usr.sbin/sliplogin o [2004/09/12] bin/71622 [PATCH] cleanup of the usr.sbin/sicontrol o [2004/09/12] bin/71623 [pcvt] [patch] cleanup of the usr.sbin/pc o [2004/09/12] bin/71624 [PATCH] cleanup of the usr.sbin/rtadvd co o [2004/09/12] bin/71625 [rpc] [patch] cleanup of the usr.sbin/rpc o [2004/09/12] bin/71626 [PATCH] cleanup of the usr.sbin/rpc.statd o [2004/09/12] bin/71628 [PATCH] cleanup of the usr.sbin/rpcbind c o [2004/09/12] bin/71629 [PATCH] cleanup of the usr.sbin/pppstats o [2004/09/12] bin/71630 [PATCH] cleanup of the usr.sbin/pppd code o [2004/09/12] bin/71631 [PATCH] cleanup of the usr.sbin/pppctl co o [2004/09/12] bin/71632 [PATCH] cleanup of the usr.sbin/ndp code o [2004/09/12] bin/71633 [PATCH] cleanup of the usr.sbin/mrouted c o [2004/09/12] bin/71659 [PATCH] cleanup of the usr.sbin/mount_por o [2004/09/12] bin/71660 [PATCH] cleanup of the usr.sbin/kgmon cod o [2004/09/12] bin/71661 [PATCH] cleanup of the usr.sbin/keyserv c o [2004/09/12] bin/71664 [PATCH] cleanup of the usr.sbin/fwcontrol o [2004/09/12] bin/71665 [PATCH] cleanup of the usr.sbin/dconschat o [2004/09/12] bin/71667 [PATCH] cleanup of the usr.sbin/bootparam o [2004/09/12] bin/71669 [PATCH] cleanup of the usr.sbin/atm code o [2004/09/12] bin/71671 [PATCH] cleanup of the usr.sbin/apmd code o [2004/09/12] kern/71683 [nis] NIS/NFS problem [4.8] o [2004/09/13] docs/71690 doc [patch] inaccurate information in systat( o [2004/09/13] kern/71711 [bpf] [patch] generate a single bpf times o [2004/09/15] bin/71749 [PATCH] truss -f causes circular wait whe o [2004/09/15] conf/71767 [patch] French translations for keyboards s [2004/09/15] bin/71773 des [patch] genericize.pl -c misses some comm o [2004/09/15] kern/71774 [ntfs] NTFS cannot "see" files on a WinXP p [2004/09/16] docs/71782 trhodes mount_nfs(8) man page is a bit out of dat o [2004/09/16] bin/71801 [patch] Add ncurses utility programs: inf o [2004/09/17] kern/71813 I get a geometry error on my wd 200gb hd f [2004/09/17] kern/71818 sanpei QUIRK: support for DMR1000 USP flash pen/ o [2004/09/17] kern/71833 multiple process disc access / injustice s [2004/09/18] bin/71855 [patch] making kdump WARNS=6 clean o [2004/09/20] i386/71924 i386 timeouts with ata+hpt366 controller on BE o [2004/09/20] bin/71928 Disk quota doesn't work with numeric logi o [2004/09/20] conf/71952 missing past participles in /usr/share/di s [2004/09/21] kern/71965 andre TCP MSS issue in combination with ipfw fw o [2004/09/21] threads/71966threads Mlnet Core Dumped : Fatal error '_pq_inse f [2004/09/21] docs/71980 doc Handbook says that no other software is k o [2004/09/22] conf/71994 [patch] dot.login: login shell may unnece o [2004/09/22] standards/72006standards floating point formating in non-C locales f [2004/09/24] ports/72067 obrien [PATCH] editors/vim: i18n and extra suppo o [2004/09/25] conf/72076 [patch] German locales use old %d.%m.%y d o [2004/09/27] bin/72124 [patch] rm -P can't unlink u-w files o [2004/09/29] bin/72173 csplit(1) ver 1.9 wrong behaviour with ne o [2004/09/29] i386/72179 i386 [acpi] [patch] Inconsistent apm(8) output o [2004/09/30] kern/72194 stack backtrace after wakeup from sleepin s [2004/09/30] ports/72202 simon portaudit warns about the CVS server vuln o [2004/09/30] kern/72217 [netinet6] [patch] Bug in calculation of f [2004/09/30] kern/72218 multimedia [sound] audio recording broken with emu10 o [2004/09/30] conf/72219 Sysinstall doesn't enable 3rd party MTA i a [2004/10/01] kern/72224 anholt [agp] umass devices broken by DRM (AGP is o [2004/10/01] bin/72232 qa [sysinstall] Installer installs gui-enabl o [2004/10/03] conf/72277 [patch] update for /usr/share/skel o [2004/10/04] kern/72293 [de] de(4) NIC performance degradation wi o [2004/10/04] kern/72296 [bfe] bfe0: discard oversize frame (ether o [2004/10/04] kern/72338 calcru: runtime wen backwards from ... o [2004/10/05] kern/72352 [puc] [patch] Support for VScom PCI-100L o [2004/10/05] bin/72355 Can't run "strings" on a (disk) device, e o [2004/10/06] usb/72380 usb [usb] USB does not work [dual Celeron Abi o [2004/10/06] docs/72383 doc manpage for awk(1) is terribly small and o [2004/10/06] bin/72398 emulators/mtools man pages are too funky o [2004/10/07] kern/72433 [amr] [patch] AMR raid, amrreg.h struct a o [2004/10/09] conf/72465 [patch] United States International keybo o [2004/10/09] kern/72468 andre OS does not know how to handle broadcast. o [2004/10/11] kern/72498 [libc] timestamp code on jailed SMP machi o [2004/10/11] bin/72501 cperciva script(1) loops after EOF is read p [2004/10/11] conf/72505 brian [patch] Fix rc.d/ppp-user to make use of o [2004/10/11] bin/72517 Minor Bug in /etc/login.access o [2004/10/12] kern/72560 jeff [sched_ule] [patch] small cleanup of SCHE o [2004/10/12] kern/72585 [syscons] [patch] iso05-8x16.fnt lacks le o [2004/10/12] bin/72588 [patch] iostat(8) tty stats field concate a [2004/10/13] kern/72639 5.3-BETA7 kernel config option ALT_BREAK_ o [2004/10/13] kern/72659 jeff [sched_ule] [patch] little bug in sched_u o [2004/10/14] bin/72674 [patch] make /usr/bin/whois use SK-NIC's o [2004/10/15] usb/72732 usb [patch] Kyocera 7135 quirk. o [2004/10/15] usb/72733 usb Kyocera 7135 Palm OS connection problem. o [2004/10/15] misc/72741 qa ssh broken on fixit cd (missing /dev/rand o [2004/10/17] bin/72787 gtar in base system doesn't seem to honor o [2004/10/17] bin/72793 [patch] wicontrol(8) prints out non-print a [2004/10/18] bin/72814 bms [patch] libpcap opens bpf as O_RDONLY - d o [2004/10/19] bin/72875 des Some utilities used in debugging do not f o [2004/10/19] bin/72881 yppush pushes map to local server o [2004/10/20] conf/72901 [patch]: dot.profile: prevent printing wh a [2004/10/20] kern/72920 emulation [linux]: path "prefixing" is not done on f [2004/10/20] kern/72933 yar [netgraph] [patch] promisc mode on vlan i a [2004/10/21] conf/72978 [patch] add danish syscons keymap with ac o [2004/10/22] kern/72987 ipfw [ipfw] ipfw/dummynet pipe/queue 'queue [B o [2004/10/22] kern/72995 multimedia [sound] Intel ICH2 (82801BA) - sound near o [2004/10/22] kern/72997 [sk] Network performance down [6-CURRENT] o [2004/10/22] sparc64/72998sparc64 [kernel] [patch] set_mcontext() change sy o [2004/10/23] kern/73034 [libalias] libalias does not handle lower o [2004/10/23] kern/73051 [if_tun] tun0: Warning: ff02:5::/32: Chan o [2004/10/23] usb/73056 usb [usb] Sun Microsystems Type 6 USB mouse n p [2004/10/25] bin/73110 rwatson [patch] ffsinfo conversion from atol() to p [2004/10/25] bin/73112 rwatson [patch] change atol() to strtol() in bads o [2004/10/26] kern/73145 severe network slowdown with DEC 21140 ne o [2004/10/27] kern/73195 bad PATH, missing HOME and TERM env var o o [2004/10/29] kern/73276 ipfw [ipfw] [patch] ipfw2 vulnerability (parse o [2004/10/29] kern/73294 [hang] hangs in default mode when AcceleP o [2004/10/30] i386/73308 i386 unable to install on AMD 2500+,NF2,GF MX4 o [2004/10/30] kern/73328 top shows NICE as -111 on processes start o [2004/10/31] bin/73337 nsswitch: potential invalid free o [2004/11/01] kern/73375 [panic] vinvalbuf: dirty bufs during umas f [2004/11/01] kern/73388 emax [usb] usb-keyboard stops working o [2004/11/02] bin/73411 [patch] FTPD could set attributes to 0600 o [2004/11/03] kern/73492 [feature request] Reliable Temporary File o [2004/11/03] kern/73496 [feature request] A more flexible version o [2004/11/04] kern/73514 [ntfs] [patch] mount_ntfs: can't access t o [2004/11/04] kern/73517 [pfil] pfil_hooks (ipfw,pf etc) and ipsec o [2004/11/05] www/73549 www Mail list archive navigation difficulty s [2004/11/05] www/73551 www List archive 'quoted-printable' corruptio f [2004/11/05] usb/73553 usb [usb] Microsoft USB Internet Keyboard not o [2004/11/06] docs/73583 doc [patch] add missing instructions to ndis( o [2004/11/07] docs/73638 doc ipfw(8): Clarify syntax for use of tables o [2004/11/07] kern/73646 [ahd] I/O performance: with/without MEMIO o [2004/11/07] conf/73653 Proposal of changes to the GENERIC kernel o [2004/11/08] kern/73675 [atapicam] atapicam causes interrupt stor o [2004/11/08] conf/73677 [patch] add support for powernow states t o [2004/11/08] docs/73679 doc FreeBSD 5.3 Release notes mention new nat o [2004/11/09] i386/73742 i386 5.3 rel i386 disk2 image not copying s [2004/11/09] ports/73743 x11 XOrg/XFree xauth add/startx problem o [2004/11/10] kern/73777 emulation [linux] [patch] linux emulation: root dir o [2004/11/10] conf/73786 added WARNING in spanish to stable-supfil p [2004/11/11] conf/73799 Move the last stuff out of usbd.conf o [2004/11/11] i386/73822 acpi [request] add thermal support to ACPI o [2004/11/11] kern/73823 acpi [feature request] acpi / power-on by time o [2004/11/12] bin/73884 Add NetBSD's rawrite32 to install tools o [2004/11/14] i386/73921 i386 [sysctl] [patch] sysctlbyname for machdep o [2004/11/14] conf/73929 dougb [patch] /etc/rc.d/named will not work wit o [2004/11/15] kern/73961 [fdc] floppy disk drive performance probl o [2004/11/16] conf/74004 [PATCH] add fam support to inetd.conf o [2004/11/16] conf/74006 dougb [PATCH] /etc/rc.d/named minor fixes f [2004/11/17] kern/74030 acpi Unplugging AC causes battery % to stay lo o [2004/11/17] kern/74037 [ppc] ppc(4) cannot find parallel port on o [2004/11/18] bin/74062 [gre] ifconfig(8) does not display tunnel o [2004/11/20] bin/74140 ntpdate(8): ntpdate does not try all IPs o [2004/11/20] i386/74153 i386 [pst] FreeBSD 5.3 cannot boot ftom pst o [2004/11/20] kern/74159 [headers] [patch] fix warnings concerned o [2004/11/20] bin/74178 [patch] grdc(6) - scrolling does not work o [2004/11/21] threads/74180threads KSE problem. Applications those riched ma o [2004/11/21] usb/74211 usb USB flash drive causes CAM status 0x4 on o [2004/11/21] conf/74213 [PATCH] Connect src/etc/periodic/security o [2004/11/21] i386/74216 i386 system halts o [2004/11/21] i386/74218 i386 boot floppy (2nd time) read error o [2004/11/23] kern/74281 [digi] digi(4): Digiboard PCI Xem (64-por o [2004/11/24] kern/74314 [resolver] DNS resolver broken under cert o [2004/11/24] i386/74327 i386 [pmap] [patch] mlock() causes physical me s [2004/11/25] kern/74352 NFSCLIENT and booting to an mfsroot via T f [2004/11/25] usb/74358 usb [umass] unplugging at boot time an umass o [2004/11/25] bin/74360 [patch] ndiscvt(8) generates a driver whi a [2004/11/25] bin/74387 linprocfs can be mounted on top of itself o [2004/11/26] bin/74404 sh(1) does not handle signals to subshell s [2004/11/26] ports/74416 fenner update for rtpmon o [2004/11/27] bin/74450 [libalias] [patch] enable libalias/natd t o [2004/11/27] usb/74453 usb Q-lity CD-RW USB ECW-043 (ScanLogic SL11R o [2004/11/27] i386/74454 i386 [bsd.cpu.mk] [patch] Adding VIA Eden fami o [2004/11/28] docs/74477 doc [patch] Correct several links in the cont o [2004/11/29] kern/74498 [pccard] [patch] new CIS id for Intersil o [2004/11/29] bin/74506 [patch] bad top command display o [2004/11/30] kern/74549 [modules] [patch] Allow third party KLDs o [2004/11/30] usb/74557 usb imation 500mb usb key can only be written o [2004/11/30] bin/74567 [2TB] [patch] du doesn't handle sizes >1T o [2004/12/02] amd64/74608 amd64 [mpt] [hang] mpt hangs 5 minutes when boo o [2004/12/02] usb/74609 usb [usb] [patch] allowing cdma modems to wor o [2004/12/02] docs/74612 doc [patch] updates to the glossary o [2004/12/03] i386/74650 i386 System Reboot with umount command o [2004/12/03] gnu/74654 libsupc++.a lacks necessary functions o [2004/12/03] i386/74658 i386 [ata] ATAPI CD not recognized after booti o [2004/12/05] bin/74743 [patch] wctype.c declares static array on o [2004/12/06] ports/74752 simon make takes a little while before anything o [2004/12/06] kern/74777 [request] Bootup "beep" in 5.3 should be o [2004/12/06] kern/74786 [irq] [patch] Smartlink Modem causes inte o [2004/12/07] i386/74803 i386 regression: lost 3Com509B in 5.X o [2004/12/07] amd64/74811 amd64 [nfs] df, nfs mount, negative Avail -> 32 o [2004/12/07] conf/74817 [patch] network.subr: fixed automatic con o [2004/12/07] kern/74827 [fdc] Problem writing data to floppies [5 o [2004/12/08] usb/74849 usb [usb] [patch] Samsung SPH-i500 does not a o [2004/12/08] kern/74868 [acpi] ACPI enabled in 5.3 Release make K o [2004/12/09] usb/74880 usb [usb] [patch] Samsung N400 cellphone/acm o [2004/12/09] ports/74907 apache [PATCH] www/mod_perl: cleanups o [2004/12/10] ports/74919 ale [PATCH] lang/php4: Add hardened-php.org p o [2004/12/10] kern/74920 [ep] [panic] 3Com 3C509-Combo Etherlink I o [2004/12/12] i386/74966 i386 [rl] Realtek driver seems to misinterpret s [2004/12/12] kern/74986 glebius [patch] sysctlize a parameter of if_em's o [2004/12/13] ports/75015 bz cvsup on amd64 coredumps with either runs o [2004/12/14] docs/75068 doc login.conf(5) manual page says nothing ab o [2004/12/15] i386/75090 i386 [ata] READ_BIG errors with Sony CRX1611 o [2004/12/15] kern/75121 Wrong behaviour of IFF_LINK2 bit in 6in6 o [2004/12/15] ports/75130 danfe [NEW PORT] www/mono-xsp: A light-weight w o [2004/12/15] kern/75132 jhb [puc] [patch] add support for the Davicom o [2004/12/15] conf/75137 jhb add snd_* modules support to /etc/rc.d/mi o [2004/12/17] bin/75175 jot duplicates numbers in simple invocati o [2004/12/17] bin/75177 philip Bug selecting psm operation level in mous o [2004/12/17] i386/75185 i386 ACPI doesn't power off Tyan S2460 o [2004/12/19] kern/75254 [wi] [patch] PRISM3-based adapter ZCOM XI o [2004/12/20] kern/75298 [pccard] [patch] add missing device id fo o [2004/12/20] kern/75312 [rl] Built-in RTL8281BL on Asus Pundit AB o [2004/12/21] bin/75362 contrib/smbfs mount_smbfs No buffer space o [2004/12/22] bin/75378 login(1): login/wtmp/utmp not updating pr o [2004/12/22] kern/75380 can not open("..") from top-level directo o [2004/12/23] i386/75420 i386 CMD 648 PCI not work o [2004/12/24] ports/75464 portmgr [patch] bsd.port.mk install default confi o [2004/12/26] conf/75502 [patch] Fix LC_NUMERIC and LC_MONETARY fo o [2004/12/27] docs/75545 trhodes [patch] typos in man3 manual pages, form_ o [2004/12/28] bin/75570 chflags nosappnd directory doesn't work o [2004/12/28] docs/75577 doc [patch] typos in man3 manual pages, login p [2004/12/28] kern/75582 glebius [dc] [patch] Add support for Linksys PCMP o [2004/12/28] i386/75583 i386 Installation fails o [2004/12/28] bin/75585 matteo [unionfs] mount -p on unionfs results in o [2004/12/29] bin/75632 le gvinum commands not consistent with vinum o [2004/12/30] gnu/75662 less -f behavior contradicts man page o [2005/01/01] kern/75702 dwmalone [libc] -O5 flag breaks some compiles in / o [2005/01/01] kern/75710 [cue] cue0 device configuration causes ke o [2005/01/03] kern/75764 [umass] [patch] "umass0: Phase Error" - n o [2005/01/03] bin/75766 [patch] nfsd(8) loops with TCP + multiple o [2005/01/03] bin/75767 WANTED: "fdclose" function in libc o [2005/01/04] i386/75776 i386 NO ps/2 keyboard using USB keyboard under o [2005/01/04] usb/75800 usb ucom1: init failed STALLED error in time o [2005/01/05] bin/75855 getpwent functions on 5.3 with large pass o [2005/01/05] docs/75865 doc comments on "backup-basics" in handbook o [2005/01/06] kern/75873 Usability problem with non-RFC-compliant o [2005/01/06] i386/75881 i386 ACPI suspend/resume doesn't work on ASUS o [2005/01/06] ports/75883 demon mrtg + ucd-snmp give wrong results o [2005/01/06] bin/75884 m4(1): syscmd's output is out of sync wit o [2005/01/06] i386/75898 i386 Exception and reboot: Loader and kernel u o [2005/01/07] usb/75928 usb Cytronix SmartMedia card (SMC) reader has o [2005/01/08] kern/75934 [libcrypt] [patch] missing blowfish funct o [2005/01/09] docs/75995 doc hcreate(3) documentation(?) bug s [2005/01/10] ports/76021 sem portupgrade: package delete can remove ne o [2005/01/10] sparc64/76052marius Incorrect panic strings in sparc64 files o [2005/01/10] gnu/76069 FreeBSD's definition of offsetof isn't go o [2005/01/11] kern/76081 [rl] [patch] Add support for CardBUS NIC o [2005/01/11] bin/76089 The "-n" option in /usr/bin/w is broken o [2005/01/11] docs/76094 doc handbook: incorrect statement about parti p [2005/01/11] ports/76116 ports-bugs PORT UPDATE: graphics/lcms (with PATCH) o [2005/01/12] conf/76124 [patch] Mistake in /usr/share/misc/pci_ve o [2005/01/12] kern/76144 [fifo] poll doesn't set POLLHUP when FIFO o [2005/01/12] gnu/76169 [patch] Add PAM support to cvs pserver o [2005/01/12] kern/76178 scsi [ahd] Problem with ahd and large SCSI Rai o [2005/01/13] conf/76226 Default local.9600 gettytab initially use s [2005/01/14] ports/76247 grog net/arla port update o [2005/01/15] conf/76298 fstab doesn't pass mntops properly o [2005/01/17] docs/76333 doc [patch] ferror(3): EOF indicator can be c o [2005/01/17] bin/76362 sys directory link points to wrong locati o [2005/01/18] kern/76432 gnn [net] [patch] recursive locking in the ne o [2005/01/19] usb/76461 usb [umass] disklabel of umass(4)-CAM(4)-da(4 o [2005/01/20] kern/76485 sched_getparam returns weird priority num s [2005/01/20] conf/76491 Addition into /etc/security few new funct o [2005/01/20] bin/76494 [patch] passwd(1) does not indicate a suc p [2005/01/20] bin/76497 tcpdump dumps core on ppp ipv6cp packets o [2005/01/20] conf/76509 [patch] New locale uk_UA.CP1251 support o [2005/01/20] docs/76515 doc [patch] misleading use of make -j flag in s [2005/01/21] kern/76520 [libiconv] [patch] Add new kernel-side li o [2005/01/21] kern/76539 [dummynet] [patch] ipnat + dummynet on ou o [2005/01/21] kern/76551 [re] [patch] re0: watchdog timeout o [2005/01/23] i386/76587 i386 ps2 mouse weird... o [2005/01/23] bin/76590 adding -mapall in nfs exports requires re o [2005/01/24] conf/76626 [patch] 460.status-mail-rejects shows des o [2005/01/25] i386/76653 i386 Problem with Asahi Optical usb device (Pe o [2005/01/25] kern/76678 rwatson [libpam] [patch] Allow pam_krb5 to authen o [2005/01/26] ports/76695 ports-bugs RPM complaints on installation of linux_b o [2005/01/26] bin/76697 newsyslog keeps one more archive files th o [2005/01/26] kern/76710 [mii] [patch] rgephy does not deal with s o [2005/01/26] bin/76711 parse error in rm.c:check() while parsing o [2005/01/27] usb/76732 usb Mouse problems with USB KVM Switch o [2005/01/27] bin/76736 dwmalone syslogd pipelines losing messages o [2005/01/27] bin/76752 /usr/bin/login o [2005/01/27] bin/76756 des function pw_equal in pw_util.c does not t o [2005/01/29] kern/76818 rwatson ACL modifications touch file's mtime o [2005/01/30] kern/76857 Samsung mouse misbehaviour o [2005/01/31] ports/76915 portmgr [patch] Handle port deinstall scripts whe o [2005/02/01] kern/76950 ACPI wrongly blacklisted on Micron Client o [2005/02/01] kern/76966 udp/520 reply packets when routed is not o [2005/02/01] kern/76972 64-bit integer overflow computing user cp o [2005/02/02] bin/77001 sysinstall binary upgrade clobbers /etc/l o [2005/02/02] bin/77031 [patch] comm(1) unable to handle lines gr f [2005/02/03] bin/77082 krion src/usr.sbin/pkg_install - Add 3 new macr o [2005/02/04] docs/77087 doc [patch] the bootvinum script given in the o [2005/02/04] bin/77089 /sbin/natd: natd ignores -u with passive o [2005/02/04] kern/77091 Keyboard quits working under X with MAXCO o [2005/02/06] kern/77156 FreeBSD does not redirect packets on prop o [2005/02/07] conf/77197 [patch] calendar.judaic is out of date o [2005/02/07] kern/77239 [xl] 3Com 3CXFEM656C does not seem to be o [2005/02/08] bin/77260 df behaviour has changed between 4.x and o [2005/02/08] bin/77261 login doesn't chdir into a group-protecte o [2005/02/08] kern/77273 darrenr [ipfilter] ipfilter breaks ipv6 statefull o [2005/02/10] kern/77341 problems with IPV6 impementation o [2005/02/10] kern/77355 [i386] [patch] Detect i*86 subarches for o [2005/02/10] kern/77365 [amdpm] [patch] amdpm driver has wrong PC o [2005/02/11] kern/77377 Slow downloading from FreeBSD server with o [2005/02/13] bin/77445 ntpd(8): too many recvbufs(40) when ntpd o [2005/02/14] i386/77477 i386 AHA-1542CP SCSI failed to probe o [2005/02/15] bin/77554 type mismatch in IPv6 firewall rule parse o [2005/02/18] kern/77662 diskless hostname set via DHCP only if AC o [2005/02/18] conf/77663 rc Suggestion: add /etc/rc.d/addnetswap afte o [2005/02/21] kern/77826 [ext2fs] ext2fs usb filesystem will not m o [2005/02/21] kern/77841 [libc] [patch] cast away const in getpubl f [2005/02/21] ports/77873 portmgr [patch] New variable: USE_BSD_MK o [2005/02/21] ports/77876 portmgr [patch] Ensure uniqueness of (DOCS|EXAMPL o [2005/02/22] kern/77902 cel [nfs] NFS client should use VA_UTIMES_NUL o [2005/02/22] kern/77913 [wi] [patch] Add the APDL-325 WLAN pccard o [2005/02/22] bin/77918 ceri quota does not exit with a status != 0, i o [2005/02/23] kern/77958 [smbfs] can't delete read-only files via o [2005/02/24] bin/78021 sem_open(3) doesn't mention fnctl.h inclu o [2005/02/24] docs/78041 doc [patch] docs for md(4) need further expla o [2005/02/25] kern/78057 ad0: FAILURE - READ_DMA status=51 error=4 o [2005/02/25] kern/78072 [lge] [patch] Potential memory leak in lg o [2005/02/25] kern/78090 [ipf] ipf filtering on bridged packets do o [2005/02/26] kern/78114 phk [geom] [patch] Solaris/x86 label structur o [2005/02/26] bin/78131 geom gbde "destroy" not working. o [2005/02/27] docs/78138 doc [patch] Error in pre-installation section o [2005/02/27] bin/78170 [patch] Fix signal handler in bootpd a [2005/02/28] docs/78174 markus [patch] Update for Bluetooth-related manp o [2005/03/01] docs/78240 doc [patch] handbook: replace with o [2005/03/02] bin/78304 Signal handler abuse in comsat(8) o [2005/03/03] kern/78342 jeff top -S shows potentially incorrect CPU us f [2005/03/03] usb/78371 usb Philips Wearable Audio Player (128) fails o [2005/03/04] kern/78388 [vr] vr network drivers cause watchdog ti o [2005/03/04] conf/78419 /etc/termcap is a symbolic link o [2005/03/04] bin/78424 Internal IPs on router, natd/libalias bre f [2005/03/05] docs/78440 doc POSIX semaphores don't work by default in o [2005/03/05] kern/78444 jeff [sched_ule] doesn't keep track of the sle p [2005/03/05] kern/78464 ambrisko Rename /proc/mtab to /proc/mounts o [2005/03/06] docs/78480 doc Networked printer setup unnecessarily com o [2005/03/06] ports/78490 portmgr [patch] bsd.port.mk: add PORTEXAMPLES and o [2005/03/07] docs/78520 doc error in man(5) lpd.conf, lpd.perms pages o [2005/03/07] kern/78526 problem with ST380011A Segate and FreeBSD o [2005/03/07] bin/78529 'df' shows wrong info about hard drive af o [2005/03/07] standards/78537phk times(2) not functioning per the Posix sp o [2005/03/07] ports/78554 portmgr [patch] bsd.port.mk: allow install port w o [2005/03/07] bin/78562 Add numerical sorting option to join(1) o [2005/03/09] kern/78646 [libmap] [patch] libmap should canonicali o [2005/03/10] kern/78673 cel [nfs] [patch] nfs client open resets attr o [2005/03/11] ports/78712 perky [Update Ports] Rename ja-pycodec to ja-py o [2005/03/12] bin/78728 ntpd -- noisy when IPv4 or IPv6 interface o [2005/03/12] kern/78756 [libc] [patch] src/lib/libc/nls/fr_FR.ISO o [2005/03/13] kern/78758 sos [ata] [patch] Add support for re-sizing A o [2005/03/13] bin/78759 patch: verbosity for bin/chflags a [2005/03/13] ports/78760 lioux [PATCH] multimedia/kmplayer: Make TV view o [2005/03/13] bin/78763 pjd [PATCH] Added jail support to ps o [2005/03/13] bin/78768 pjd [Patch] Added jail support to top o [2005/03/13] bin/78785 ipfw [ipfw] [patch] ipfw verbosity locks machi o [2005/03/13] kern/78787 sysconf(_SC_CLK_TCK) may return incorrect o [2005/03/14] kern/78812 [workaround] logitech cordless mouse with o [2005/03/15] kern/78849 phk Problems with GBDE encrypted partitions o [2005/03/15] kern/78884 cel [nfs] [patch] nfs client cache negative l o [2005/03/16] conf/78906 rc [patch] Allow mixer_enable="NO" in rc.con o [2005/03/16] docs/78915 doc rfork(2)'s RFTHREAD is not documented o [2005/03/17] amd64/78954 amd64 kerberos 5 failed to build o [2005/03/17] kern/78957 time counter per process stops (syscall: f [2005/03/18] usb/78984 usb Creative MUVO umass failure f [2005/03/18] ports/78990 ache [update] {news,chinese}/tin: integrate pa o [2005/03/19] bin/79008 add option for pom(6) to specify EPOCH o [2005/03/20] kern/79035 le [vinum] gvinum unable to create a striped s [2005/03/20] kern/79048 [libc] realloc() copies data even when th o [2005/03/20] standards/79055stefanf Add an IFS regression test for shells o [2005/03/20] standards/79056standards regex(3) regression tests o [2005/03/20] kern/79058 [panic] floppy umount crash on accidental p [2005/03/20] bin/79063 tjr grep(1) - strange behaviour (most likely o [2005/03/21] kern/79066 [bktr] bktr(4) eating about 10% CPU load o [2005/03/21] standards/79067stefanf /bin/sh should be more intelligent about o [2005/03/21] i386/79091 i386 [i386] [patch] Small optimization for i38 o [2005/03/21] ports/79093 mi net/rdist6 ignore ssh transport s [2005/03/22] kern/79117 isdn [iavc] iavc(4) for AVM B1 PCI does not at o [2005/03/22] i386/79136 i386 disk controller not detected o [2005/03/22] kern/79138 rwatson close while sending on connected UNIX-dom p [2005/03/22] kern/79139 rodrigc [pci] [patch] Support for more PCIe chips o [2005/03/22] kern/79143 [bge] Broadcom NIC driver do not work for o [2005/03/23] docs/79156 doc buffersize knob for sound(4) is a tunable o [2005/03/24] conf/79196 [PATCH] configurable dummynet loading fr o [2005/03/25] bin/79228 [patch] extend /sbin/arp to be able to cr o [2005/03/25] bin/79232 WARNS6 clean libexec/comsat o [2005/03/26] kern/79251 geom [2TB] newfs fails on 2.6TB gbde device o [2005/03/26] kern/79266 [pci] [patch] RELENG_4 pci CONF1_ENABLE_M o [2005/03/27] i386/79274 i386 Autoconfigure fails for O2Micro OZ6812/68 o [2005/03/28] bin/79296 "umount -a -t msdos" not work o [2005/03/28] i386/79317 i386 Freebsd Erasing NVRAM a [2005/03/30] ports/79351 lofi Character passing error in security/pinen o [2005/03/30] kern/79352 [feature request] double tagged q-in-q ne o [2005/03/30] ports/79382 ume package information for cyrus-sasl2-sasla o [2005/03/31] ports/79398 portmgr [patch] bsd.port.mk: add USE_MAKESELF kno p [2005/03/31] conf/79415 Fix "Mothers Day" in calendar.french. o [2005/03/31] kern/79416 darrenr ipf in 4.11 breaks POLA o [2005/04/02] kern/79441 [msdosfs] problem writing on mounted msdo o [2005/04/05] bin/79570 Dynamic OpenSSL engine load disabled o [2005/04/06] bin/79607 obrien grok and default to bzip2-compressed manu o [2005/04/07] kern/79635 82545GM reports the EEPROM Checksum Is No o [2005/04/07] ports/79651 clement [patch] mail/ssmtp: add per-user smtp aut o [2005/04/08] kern/79678 multimedia [sound] sound works except recording from o [2005/04/08] ports/79694 kuriyama net-mgmt/net-snmp: net-snmp-5-2-1.1 witho f [2005/04/09] kern/79705 trhodes mac_seeotheruids not blocking root o [2005/04/09] bin/79714 marcel kgdb user I/O nits o [2005/04/09] usb/79723 usb [usb] prepare for high speed isochronous o [2005/04/09] usb/79725 usb [usb] [patch] USB device speed is not dou o [2005/04/12] i386/79840 i386 Partitioning and formating a new disk fai o [2005/04/13] threads/79887threads [patch] freopen() isn't thread-safe o [2005/04/14] i386/79890 i386 burncd fails on a Pioneer DVD drive o [2005/04/14] usb/79893 usb [umass] [patch] new usbdevs/umass quirks o [2005/04/15] kern/79944 virtual floppy controller of Virtual PC d o [2005/04/15] bin/79965 top(1) messes up narrow terminals while d o [2005/04/16] usb/80010 usb [aue] [patch] add support for the AEI USB o [2005/04/17] kern/80031 [coda] [patch] Remove insque/remque from o [2005/04/18] kern/80048 [aac] [patch] support for HP ML110 G2 SAT p [2005/04/18] bin/80058 adduser -f exits silently if file has emp o [2005/04/18] i386/80081 i386 [if_ndis] Problem loading a NDIS kernel m o [2005/04/19] i386/80092 i386 PC Cards do not work at all on laptop Com o [2005/04/19] i386/80095 i386 ld-elf.so.1 crashes with executables prod o [2005/04/19] ports/80111 ume patch to make WITH_KERBEROS4 working for o [2005/04/19] bin/80117 qa [sysinstall] [patch] smbfs install option o [2005/04/20] conf/80158 request configuration option for specifin o [2005/04/20] docs/80159 doc [patch] rtld(1) mentions "%m" but it's no o [2005/04/21] bin/80176 des fetch does not always work with https wit o [2005/04/21] docs/80186 imp [patch] Footnote is wrong in the /usr/src o [2005/04/22] bin/80256 /rescue/vi doesn't work without terminal o [2005/04/22] bin/80258 [PATCH] Comment why some Binaries are sta o [2005/04/22] kern/80265 D-Link NIC with VIA Rhine II has no carr o [2005/04/23] kern/80269 [libtacplus] [patch] libtacplus tac_get_a o [2005/04/23] kern/80283 [reboot] SMP problem a [2005/04/23] standards/80293standards sysconf() does not support well-defined u p [2005/04/25] bin/80348 rs(1) handles command line arguments impr o [2005/04/27] bin/80411 [patch] df(1): bin/df/df.c sign errors in f [2005/04/27] usb/80420 usb atapicam stops iPod functionality o [2005/04/29] kern/80465 multimedia [sound] pcm0:record:0: record interrupt t o [2005/05/01] conf/80504 [patch] de_DE.ISO8859-1 libc message cata o [2005/05/02] bin/80530 man(1) should become Unicode aware o [2005/05/02] bin/80534 feature request: enumeration of filesyste o [2005/05/03] kern/80580 [panic] 4.11 router panic in lockmgr: loc f [2005/05/04] bin/80610 [patch] netstat(1): lost data due lu form o [2005/05/04] bin/80620 des [patch] fetch -U does not work o [2005/05/04] kern/80626 Out of memory ? then dead o [2005/05/05] kern/80632 multimedia pcm driver missing support for CMI8738 au o [2005/05/05] kern/80642 ipfw [ipfw] [patch] ipfw small patch - new RUL o [2005/05/06] bin/80687 [patch] Missing NULL termination after st o [2005/05/07] bin/80732 [PATCH]: getty(8) and telnetd(8) ignore t f [2005/05/08] usb/80773 usb "usbd_get_string()" could have taken a le o [2005/05/08] usb/80774 usb have "usbd_find_desc" in line with the ot o [2005/05/08] kern/80775 sysctl_handle_string should have a timeou o [2005/05/08] usb/80776 usb [udav] UDAV device driver shouldn't use u o [2005/05/08] usb/80777 usb usb_rem_task() should wait for callback t o [2005/05/09] bin/80812 [ new util ] request to add new util: get o [2005/05/10] kern/80844 [psm] [patch] Increase compatibility of p o [2005/05/10] usb/80854 usb suggestion for new iface-no-probe mechani o [2005/05/10] bin/80868 /bin/sh gives wrong line number of unterm o [2005/05/11] docs/80871 doc terminfo(5) man page source corrupted o [2005/05/11] conf/80907 tmpmfs default change o [2005/05/12] bin/80924 fsck should show CTIME. o [2005/05/12] usb/80935 usb uvisor.c is not work with CLIE TH55. o [2005/05/12] ports/80943 ale lang/php4: update PHP for new mnogosearch s [2005/05/12] ports/80944 lawrance [NEW PORT] www/mnogosearch-php: Mnogosear o [2005/05/12] ports/80946 ale www/php4-mnogosearch: Mnogosearch PHP4 Ex o [2005/05/13] threads/80992threads abort() sometimes not caught by gdb depen o [2005/05/14] kern/80999 [hang] artswrapper freezes system with 1.04, r o [2005/07/27] docs/84154 doc Handbook somewhat off in use of /boot/ker o [2005/07/27] bin/84162 (t)csh: builtins commands with redirectio o [2005/07/27] conf/84172 loader.conf(5) is missing an entry for "d o [2005/07/28] kern/84199 dlinfo in libexec/elf-rtld/rtld.c does no o [2005/07/28] bin/84208 qa [sysinstall] "Leave the MBR untouched" op o [2005/07/28] ports/84212 cy sysutils/screen port can't talk to TTYs o [2005/07/28] kern/84215 [jail] [patch] wildcard ip (INADDR_ANY) s o [2005/07/28] kern/84219 [ncurses] [patch] ncurses.h wchar_t confl o [2005/07/28] kern/84225 gnn losing default route changing netmask on o [2005/07/29] docs/84265 doc [patch] chmod(1) manpage omits implicatio p [2005/07/29] docs/84266 doc [patch] security(8) manpage should have i o [2005/07/29] docs/84267 doc [patch] chflags(1) manual doesn't say it' o [2005/07/29] docs/84268 doc chmod(1) manpage's BUGS entry is either w o [2005/07/29] docs/84271 ceri [patch] compress(1) doesn't warn about na p [2005/07/29] docs/84273 keramida [patch] disktab(5) manual has bad SEE ALS o [2005/07/29] bin/84298 [patch] allow mount(8) to recognize relat o [2005/07/29] kern/84311 multimedia [sound] 82801FB/FR/FW/FRW Intel High Defi o [2005/07/29] docs/84317 doc fdp-primer doesn't show class=USERNAME di o [2005/07/31] kern/84386 Feature Request: PPPoA Authentication bui o [2005/07/31] docs/84408 doc [patch] dump(8) manpage doesn't require a f [2005/08/01] ports/84448 portmgr [patch] bsd.port.mk: Add "make test" to p o [2005/08/02] docs/84467 doc [patch] bsdlabel(8) manpage uses archaic o [2005/08/02] bin/84494 rpcbind TCP cannot be told to bind to a s f [2005/08/03] kern/84507 multimedia [sound] fm801: Not every card supports va s [2005/08/03] docs/84519 doc [patch] mdoc(7) manpage needs more about o [2005/08/03] bin/84520 whatis(1) program burps on /bin/[ o [2005/08/04] docs/84538 doc sk(4) driver supports Marvell 88E800x chi o [2005/08/04] docs/84549 doc [patch] errno(2) manpage uses "<...>" for s [2005/08/04] docs/84550 doc mdoc(7) manpage erroneously requires SYNO o [2005/08/04] i386/84555 i386 boot2 unable to load kernel directly. o [2005/08/05] bin/84569 rm -W sometime does not work o [2005/08/05] conf/84581 [patch] Teach config(8) to look for kerne o [2005/08/07] bin/84634 fjoe [geom] [patch] new utility to control GEO o [2005/08/07] docs/84645 doc intro(6) manpage should always be install o [2005/08/07] ports/84650 ale customizable pid filename for databases/m o [2005/08/07] amd64/84652 amd64 kbdmap -r dumps core f [2005/08/08] bin/84667 qa [sysinstall] annoying installation proble o [2005/08/08] docs/84670 doc [patch] tput(1) manpage missing ENVIRONME o [2005/08/08] bin/84674 qa [sysinstall] Installer trying to install o [2005/08/09] bin/84705 fdisk(8) program warning about sector num f [2005/08/09] ports/84718 girgen [PATCH] databases/postgresql74-server: Ad o [2005/08/10] ports/84742 java make ports/java/jdk14 use dynamic Motif l o [2005/08/10] conf/84752 [patch] 100.clean-disks cleans file syste o [2005/08/10] kern/84761 shutdown() of non-connected socket should o [2005/08/10] docs/84764 doc [patch] hosts.equiv(5) manpage should SEE o [2005/08/11] kern/84797 [libutil] [patch] State engine in the lib o [2005/08/11] conf/84800 obrien [patch] setting CPUTYPE=nocona on an Inte o [2005/08/11] docs/84806 doc mdoc(7) manpage has section ordering prob s [2005/08/11] ports/84819 ports-bugs [MAINTAINER] math/coq: enable on ia64 s [2005/08/12] misc/84833 netchild include make.conf NO_* targets into delet o [2005/08/12] docs/84849 doc [patch] fdisk(8) manpage doesn't warn fdi o [2005/08/14] bin/84911 [patch] ndisgen(8) can't cope with .sys-f o [2005/08/14] docs/84913 doc bsdlabel(8) manpage seems wrong about fsi o [2005/08/14] kern/84920 math programs reporting incorrect values o [2005/08/15] docs/84955 doc [patch] mdoc(7) manpage should mention mi o [2005/08/15] docs/84956 doc [patch] intro(5) manpage doesn't mention o [2005/08/15] kern/84957 fire_saver.ko causes high CPU usage by sw o [2005/08/15] docs/84961 blackend [patch] Sync NDIS documentation with real o [2005/08/16] gnu/84976 System ncruses does not have wide charact o [2005/08/16] kern/84981 [headers] [patch] header protection for < o [2005/08/16] kern/84983 scottl [udf] [patch] udf filesystem: stat-ting f o [2005/08/16] bin/84992 gcc4.x cleanup of usr.bin/hexdump o [2005/08/16] bin/84993 kientzle gcc4.x cleanup of usr.bin/tar o [2005/08/16] bin/84994 gcc4.x cleanup of usr.bin/wc p [2005/08/16] docs/85008 keramida [patch] environ(7) manpage references bui f [2005/08/16] bin/85011 imp /sbin/restore on 5.4 will not read Solari o [2005/08/17] ports/85031 itetcu [NEW PORT] net/astfax o [2005/08/17] docs/85062 doc [patch] tr(1) manpage omits several chara o [2005/08/17] docs/85063 doc [patch] expand(1) manpage needs to clarif o [2005/08/17] docs/85066 doc [patch] builtin(1) manpage has incomplete o [2005/08/18] usb/85067 usb Cannot attach ScanJet 4300C to usb device p [2005/08/18] docs/85079 keramida [patch] umodem(4) - add "ELSA MicroLink 5 o [2005/08/18] standards/85080standards output of long double subnormals (with pr o [2005/08/18] kern/85086 [ef] [patch] Locking fixes for ef(4) (+re o [2005/08/18] docs/85097 doc [patch] devd.conf.5 lacks a lot of vital p [2005/08/18] standards/85099tjr POSIX violation in split(1) o [2005/08/18] docs/85100 doc NOTES: ICH audio device support statement o [2005/08/19] kern/85106 The ICH7 smb interface is not recognised o [2005/08/19] docs/85118 doc [PATCH] opiekey(1) references non-existin o [2005/08/19] docs/85127 doc [patch] loader(8) manpage uses too-rare " o [2005/08/19] docs/85128 doc loader.conf(5) autoboot_delay incompletly s [2005/08/19] ports/85132 x11 XOrg 6.8.2 won't start on Toshiba Satelli o [2005/08/20] conf/85143 grog [patch] fix usr.bin/calendar/calendars/de o [2005/08/20] amd64/85144 amd64 Asus K8S-MX mobo, integ LAN not recognize o [2005/08/20] ports/85151 kuriyama net-mgmt/net-snmp patch addition request p [2005/08/21] kern/85176 des [kernel] [patch] optimization of fdalloc o [2005/08/21] docs/85186 doc [patch] ktrace(1) manpage doesn't warn ab o [2005/08/21] docs/85187 doc [patch] find(1) manpage missing block inf p [2005/08/22] kern/85203 andre [headers] [patch] add TH_PUSH to TH_FLAGS o [2005/08/22] bin/85204 [patch] add read-ahead to amd(8) for NFS p [2005/08/22] docs/85209 glebius pfsync(4) man page corrections o [2005/08/23] i386/85242 i386 [libc] [patch] libc contains relocation t o [2005/08/23] docs/85243 doc Missing icmp related abbreviations for pf o [2005/08/23] i386/85246 i386 unable to install from CD on Asus PC-DL D a [2005/08/23] ports/85254 ports-bugs [patch] emulators/linux_base-rh-9: add /u o [2005/08/23] kern/85257 [boot] BTX boot loader fails on USB CDROM o [2005/08/24] i386/85273 i386 FreeBSD (NetBSD or OpenBSD) not install o o [2005/08/27] docs/85353 doc [patch] minor cosmetic/punctuation change o [2005/08/27] conf/85363 rc syntax error in /etc/rc.d/devfs o [2005/08/28] bin/85367 qa [sysinstall] [patch] fix package categori o [2005/08/28] i386/85417 i386 [i386] [patch] Possible bug in ia32 float o [2005/08/28] i386/85423 i386 [ex] ex(4) does not correctly recognize N o [2005/08/29] bin/85445 ifconfig(8): deprecated keyword to ifconf o [2005/08/30] bin/85494 fsck_ffs: unchecked use of cg_inosused ma o [2005/08/30] bin/85502 dump prints negative time and gt 100% don o [2005/08/31] ports/85513 netchild Intel C++ compiler not 100% binary compat o [2005/09/02] kern/85648 [net] [patch] provide more specific defau f [2005/09/02] kern/85649 rodrigc [msdosfs] [patch] allow mounting msdos fi o [2005/09/02] kern/85650 [libstand] [patch] modifications to tftp- o [2005/09/02] kern/85651 [kernel] [patch] debugging code to show e o [2005/09/02] i386/85652 i386 [loader] [patch] deal with out-of-memory o [2005/09/02] i386/85653 i386 [i386] [patch] relieve hangs in tight loo o [2005/09/02] i386/85654 i386 [i386] [patch] separate max cpu from max o [2005/09/02] i386/85655 i386 [i386] [patch] expose cpu info for i386 s o [2005/09/02] i386/85656 i386 [i386] [patch] expose more i386 specific o [2005/09/02] kern/85657 [kernel] [patch] capture and expose per-C o [2005/09/02] kern/85658 jeff [sched_ule] [patch] add DDB command, show s [2005/09/04] ports/85704 portmgr [patch] Add WITH_GL user variable to bsd. o [2005/09/04] ports/85707 nork port www/linuxpluginwrapper makes mozilla o [2005/09/04] bin/85712 uncompress(1) program emits bogus "overwr o [2005/09/06] kern/85780 'panic: bogus refcnt 0' in routing/ipv6 o [2005/09/06] kern/85792 53c1030 is detected, but doesn't work pro o [2005/09/06] amd64/85812 amd64 "Rebooting..." on serial console appears o [2005/09/07] conf/85819 [patch] script allowing multiuser mode in o [2005/09/07] amd64/85820 amd64 1.5 times slower performance with SCHED_U o [2005/09/07] gnu/85824 obrien gas crashes when assembling this file o [2005/09/07] i386/85851 i386 system hangs on during booting the machin o [2005/09/08] kern/85886 [an] an0: timeouts with Cisco 350 minipci o [2005/09/09] gnu/85895 [PATCH] cc -print-search-dirs returns (nu o [2005/09/09] kern/85902 strange sysctl output f [2005/09/11] kern/85964 multimedia [sound] Can't play 24 bit audio (Audigy 2 o [2005/09/11] kern/85971 jeff [uma] [patch] minor optimization to uma o [2005/09/11] bin/85977 mount_smbfs needs port parameter p [2005/09/11] docs/85986 keramida FreeBSD keyword missing if you display se o [2005/09/11] usb/85992 usb [uhid] [patch] USB stops working when try o [2005/09/12] kern/86003 Startup reports "failed to attach P_CNT" o [2005/09/13] kern/86049 laptop fan does not turn off if it is "on f [2005/09/14] ports/86098 ale [PATCH] devel/pear-PEAR/Makefile.common: s [2005/09/14] ports/86106 portmgr [patch] ${CC} should be added to ${MAKE_E o [2005/09/14] kern/86124 [em] dell 1850 pro/1000 slow (em problem? o [2005/09/14] docs/86134 blackend [patch] fix inconsistency in handbook sec f [2005/09/15] ports/86145 portmgr devel/m4 should not build its own getopt o [2005/09/15] bin/86148 [patch] dirname(1) doesn't take multiple o [2005/09/16] usb/86195 usb [patch] allow USB Ethernet Adaptor "ELECO o [2005/09/16] ports/86206 openoffice editors/openoffice.org-2.0: Unable to bui o [2005/09/16] ia64/86218 ia64 Mozilla / Firefox: regxpcom or regchrome p [2005/09/16] docs/86228 keramida typos in man4 manual pages, fe.4. p [2005/09/16] docs/86234 keramida Need to explain * in master.passwd in pas o [2005/09/17] conf/86252 gshapiro [PATCH] /etc/rc.d/sendmail wants to build o [2005/09/18] ports/86283 perky devel/newt build WITH_PYTHON fails on amd o [2005/09/18] kern/86290 jeff [kernel] [patch] minor optimizations + cl o [2005/09/18] usb/86298 usb Known good USB mouse won't work with corr o [2005/09/19] kern/86319 cel [nfs] [feature request] support a "noac" o [2005/09/19] ports/86334 ports-bugs x11-clocks/wmclockmon :: bug in internet o [2005/09/19] kern/86336 rwatson [kernel] LOR in kern/uipc_usrreq.c and ke o [2005/09/19] docs/86342 doc bikeshed entry of Handbook is wrong o [2005/09/20] ports/86384 mnag openssh-portable GSSAPI key-exchange patc o [2005/09/21] bin/86388 [patch] periodic(8) daily should backup b s [2005/09/21] ports/86401 ports-bugs new ports multimedia/zapping o [2005/09/21] bin/86405 /usr/bin/more segmentation fault o [2005/09/21] misc/86412 can not link shared libs to libstdc++ and o [2005/09/21] kern/86429 [if_tap] [patch] if_tap doesn't filter fr p [2005/09/21] kern/86437 andre tcp_input.c and tcp_sack.c refer to obsol o [2005/09/21] usb/86438 usb Fix for non-working iPod over USB is in N o [2005/09/22] bin/86454 qa [sysinstall] sysinstall terminates with s f [2005/09/23] standards/86484rwatson [PATCH] mkfifo(1) uses wrong permissions o [2005/09/23] bin/86485 [PATCH] hexdump -s speedup on /dev o [2005/09/25] i386/86563 i386 System doesn't reboot on "shutdown -r now o [2005/09/26] ports/86580 ale [new port] databases/php5-oci8: Oracle OC o [2005/09/26] bin/86587 rm -r /PATH fails with lots of small file o [2005/09/26] bin/86600 qa [sysinstall] Sysinstall boot manager scre o [2005/09/26] ports/86608 ale lang/php5: Enhancement to allow dynamic o p [2005/09/27] gnu/86627 brooks src/contrib/bc / option -h / contains typ o [2005/09/27] bin/86635 [patch] pfctl: allow new page character ( o [2005/09/27] bin/86647 natd(8) copy to limited buffer size witho o [2005/09/27] kern/86655 [msdosfs] [patch] msdosfs incorrectly han o [2005/09/28] kern/86657 [kbd] [patch] change to USB keyboard opti o [2005/09/28] bin/86665 qa [sysinstall] sysinstall binary upgrade cl p [2005/09/29] kern/86693 maxim [nis] [patch] inconsistency between getus o [2005/09/29] docs/86733 doc [patch] handbook: add using kldload as an o [2005/09/30] bin/86742 kientzle [libarchive] [patch] Add archive_open_ to a [2005/09/30] kern/86752 mlaier pf does not use default timeouts when rel o [2005/09/30] bin/86765 bsdlabel assing wrong fs type. f [2005/10/01] ports/86776 portmgr [patch] bsd.port.mk - fetch-list doesn't f [2005/10/01] i386/86820 i386 ISO Install Disk hangs after acd0: o [2005/10/03] bin/86859 qa [sysinstall] Installer should ask about L o [2005/10/03] kern/86871 allocation logic for PCBs in TIME_WAIT st o [2005/10/03] bin/86873 file(1) does not recognize 5.x filesystem f [2005/10/04] ports/86899 multimedia multimedia/mjpegtools - lavplay/glav clai o [2005/10/05] kern/86957 ipfw [ipfw] [patch] ipfw mac logging o [2005/10/06] kern/86965 [ntfs] NTFS driver returns incorrect 'num o [2005/10/06] kern/86966 LG GCC-4242N CD-RW write failure o [2005/10/06] conf/86973 Daily periodic mail rejects out of contro o [2005/10/07] bin/87022 telnet hang in ptcout o [2005/10/07] kern/87032 ipfw [ipfw] [patch] ipfw ioctl interface imple o [2005/10/07] kern/87074 mlaier pf does not log dropped packets when max- s [2005/10/07] ports/87092 obrien [UPDATE] editors/vim: notify the user abo o [2005/10/08] www/87119 hrs [patch] encode copyright and such symboli o [2005/10/08] ports/87120 lev [PATCH] Add libiconv support to devel/min o [2005/10/09] ports/87151 nobutaka Update port: editors/emacs Fix package bu p [2005/10/10] conf/87196 matteo human readable disk free in daily output f [2005/10/10] ports/87204 tjr [UPDATE PATCH] net/coda6_server & depende o [2005/10/10] usb/87224 usb Cannot mount USB Zip750 o [2005/10/10] bin/87230 [PATCH] -G is ignored when adduser get ac o [2005/10/11] ports/87234 edwin [patch] bsd.port.mk: add patch-dos2unix t o [2005/10/11] ports/87245 nork DarwinStreamingServer port fails on amd64 a [2005/10/12] ports/87312 obrien Update misc/figlet to 2.2.2 o [2005/10/12] kern/87350 Reproducible 6.0-RC1 kernel panic s [2005/10/13] bin/87352 glebius [PATCH] Add line edit and history support o [2005/10/13] bin/87359 /usr/src/crypto/openssh does not honour N o [2005/10/14] ports/87420 portmgr [patch] bsd.port.mk: implementing WITH_OP p [2005/10/14] docs/87445 trhodes comments for improvement of handbook/kern f [2005/10/16] i386/87507 remko installation of 6.0 RC1 failed to create o [2005/10/16] kern/87515 Splash screen fails to load on boot s [2005/10/16] ports/87528 x11 Missing koi8-r encoding for xorg-fonts-en o [2005/10/16] bin/87529 "pw lock", "pw unlock" should support the f [2005/10/17] ports/87562 ume cyrus-sasl2 make package fails o [2005/10/18] ports/87642 portmgr Contrary to ports(7) there is no target " o [2005/10/19] usb/87648 usb [mouse] Logitech USB-optical mouse proble o [2005/10/19] bin/87651 [patch] fsck(8) (on superblock error) tel o [2005/10/19] kern/87653 [drm] ATI Radeon Mobile X600SE not detect p [2005/10/20] docs/87698 jcamou Missing manual entry for rc.conf.local o [2005/10/20] bin/87724 cal(1)/ncal(1) not multibyte aware o [2005/10/20] bin/87726 gssapi.h is not c++ aware o [2005/10/21] kern/87782 multimedia [sound] snd_t4dwave and pcm0:record:0: re o [2005/10/22] kern/87836 [devfs] If using ATAPICAM with cd(dvd)rw o [2005/10/22] bin/87841 fetch should have options to set http "if f [2005/10/22] bin/87843 FreeBSD specific gcc compiler error o [2005/10/22] kern/87845 [sio] [patch] sio(4) should on probe retu o [2005/10/23] docs/87857 doc ifconfig(8) wireless options order matter o [2005/10/23] amd64/87882 amd64 emu10k1 and APCI on amd64 is just noisy o [2005/10/24] conf/87925 [patch] feature request: modify output of o [2005/10/24] docs/87936 doc Handbook chapter on NIS/YP lacks good inf o [2005/10/25] bin/87966 [PATCH] introduce -A flag for newfs to en o [2005/10/25] i386/87968 i386 [fdc] cannot access the floppy device f [2005/10/25] bin/87981 darrenr [patch] ipmon(8) writes pid file even whe o [2005/10/25] kern/87990 [kernel] [patch] SMP Race Condition in kd p [2005/10/26] docs/88015 keramida typo in top(1) manual page o [2005/10/26] i386/88020 i386 cannot boot unless: hint.apic.0.disabled= o [2005/10/26] bin/88056 [patch] feature request: cp(1) could real o [2005/10/27] bin/88077 w(1): w -n problems with IPv6 addresses a o [2005/10/28] kern/88117 [rtld] [patch] support of $ORIGIN in rtld o [2005/10/28] bin/88119 [patch] partial matching for ifconfig(8) o [2005/10/28] kern/88150 des [pam] PAM does not search /usr/local/lib o [2005/10/29] kern/88182 [ural] wep is broken in ural(4) hostap mo p [2005/10/30] conf/88222 [patch] wrong date format in sv_SE.UTF-8 f [2005/10/30] ports/88246 gerald gcc-3.4.5 port does not compile on FreeBS o [2005/10/30] bin/88252 units(1) table errors/omissions for troy o [2005/10/31] www/88263 fenner http://docs.freebsd.org/cgi/mid.cgi outpu o [2005/11/01] ports/88316 obrien [patch] add extra tarballs to vim and pat o [2005/11/01] kern/88320 [nfs] ypxfr(8) talks IPv6 to IPv4-only po o [2005/11/01] kern/88336 [kernel] [patch] setkey(8) -D fails to re o [2005/11/01] bin/88365 [patch] rm(1): "/bin/rm -P" cannot remove o [2005/11/02] bin/88404 ggatec and ggated links to library in /us o [2005/11/02] usb/88408 usb axe0 read PHY failed o [2005/11/03] kern/88450 andre SYN+ACK reports strange size of window o [2005/11/04] docs/88477 doc Possible addition to xl(4) manpage, Diagn o [2005/11/04] bin/88486 [patch] make periodic(8) quiet (configura o [2005/11/04] i386/88491 i386 [panic] Panic when boot installation CD1 o [2005/11/04] docs/88503 doc mkuzip(8) references nonexistant geom_uzi o [2005/11/05] docs/88512 doc [patch] mount_ext2fs(8) man page has no d p [2005/11/05] conf/88515 NTP not starting from RC when using /etc/ a [2005/11/06] bin/88538 [patch] tcsh(1) ls-F spacing incorrect. o [2005/11/07] kern/88576 imp [fe] revision 1.31 to if_fe_pccard.c brea f [2005/11/07] i386/88585 i386 [fdc] Cannot mount floppy (HP Proliant ML o [2005/11/07] bin/88599 ifconfig(8): change in default behavior w o [2005/11/07] kern/88601 pjd Geli cause kernel panic under heavy disk o [2005/11/07] bin/88619 brian [ppp] ppp chat auth fails ( pppoe ) o [2005/11/08] misc/88680 !compiling freebsd components o [2005/11/08] conf/88692 [patch] Amend /etc/periodic/daily/502.pgs o [2005/11/09] kern/88709 [modules] [panic] sysctl -a after kldunlo o [2005/11/09] conf/88712 [patch] freebsd-tips: Add "how to strip U o [2005/11/09] kern/88714 sos [ata] cannot record CD-R since 6.0 (regre o [2005/11/09] amd64/88730 amd64 kernel panics during booting from the ins o [2005/11/10] bin/88780 [PATCH] Baseline ipmon(8) uses LOG_LOCAL0 f [2005/11/11] kern/88820 multimedia [sound] Erratic recognition of VIA 8285 s o [2005/11/11] bin/88821 pjd [PATCH] IPv6 support for ggate o [2005/11/11] bin/88826 qa [sysinstall] sysinstall infinity wait for f [2005/11/11] ports/88829 mnag [NEW PORT] sysutils/logwatch: Customizabl o [2005/11/11] ports/88836 clement Update port: www/apache2 (fix harcoded pi s [2005/11/12] ports/88900 ports-bugs www/flashplugin-mozilla causes Firefox to o [2005/11/13] conf/88913 rc [patch] wrapper support for rc.subr o [2005/11/13] ports/88918 dougb Suggested updates of mail/pine4 Makefile o [2005/11/13] usb/88939 usb Fix cheapy Myson USB-IDE adapter o [2005/11/13] ports/88941 anders Suggested updates of mail/cclient Makefil o [2005/11/13] ports/88942 anders Suggested update of mail/imap-uw Makefile o [2005/11/13] kern/88962 [panic] Kernel panic with ACPI is enabled o [2005/11/14] i386/88965 i386 vidcontrol hangs with 2 modules of RAM o [2005/11/14] ports/89023 leeym USE_BDB doesn't set name of Berkely dB, o o [2005/11/15] conf/89061 [patch] IPv6 6to4 auto-configuration enha f [2005/11/15] usb/89087 usb usb external harddrive hangs with BBB res o [2005/11/16] ports/89097 kris security/dsniff does not build when net/l o [2005/11/16] ports/89098 kris security/dsniff does not build o [2005/11/16] kern/89166 [mouse] jumpy mouse movement o [2005/11/18] kern/89247 [ffs] [patch] QUOTA in 6.0/7.0-current le o [2005/11/19] i386/89294 i386 [identcpu] [patch] unknown CPU (i386/amd6 o [2005/11/20] kern/89305 [vr] [patch] D-Link NIC with VIA Rhine II o [2005/11/20] docs/89325 doc [PATCH] Clarification of kbdmap(5), atkbd o [2005/11/20] bin/89326 [PATCH] Add pattern matching to login.acc s [2005/11/20] ports/89333 perl Fix the cannot create lockfile /root/.spa f [2005/11/21] ports/89349 x11 xorg problem: math/gnuplot: BadAtom (inva o [2005/11/21] kern/89362 Stale references to freed memory f [2005/11/21] ports/89398 portmgr [PATCH] bsd.wx.mk and patches o [2005/11/22] bin/89403 fetch(1) doesn't honour authentication cr o [2005/11/22] kern/89411 [acpi] acpiconf bug o [2005/11/23] ports/89441 hrs TeX support in FreeBSD is problematic. p [2005/11/24] kern/89481 keramida [ata] Spelling error in ata-lowlevel.c o [2005/11/24] docs/89492 doc vfs doc: some VOP_*(9) manual pages are o o [2005/11/25] kern/89522 6.0-RELEASE will not boot on some Compaqs o [2005/11/25] kern/89553 [bktr] [patch] going from 5.3 -> 6.0 winT f [2005/11/26] i386/89568 i386 [NOTES] XBOX options missing from NOTES s [2005/11/27] ports/89648 portmgr OPTIONS and conditional USE_* conflict in o [2005/11/28] ports/89670 ade [patch] Automake 1.9 not detecting cppuni o [2005/11/29] kern/89738 [ndis] [hang] Can't make WL8000PCM wifi c o [2005/11/30] docs/89747 doc [PATCH] faq: s/kbd0/ukbd0/ when USB keybo o [2005/11/30] kern/89748 dwmalone [bpf] [patch] BPF indexed byte load can s o [2005/11/30] bin/89762 [patch] top(1) startup is very slow on sy o [2005/11/30] bin/89770 des [patch] pam_krb5 'authentication token fa o [2005/12/01] bin/89799 [patch] Making natd(8) not require a newl o [2005/12/02] kern/89837 [pci] PCI code outputs superfluous "faile o [2005/12/02] conf/89860 matteo [patch] Add ability to set up vnode backe o [2005/12/03] conf/89870 rc [patch] feature request to make netif ver o [2005/12/03] kern/89885 [ata] Writing to S-ATA HDD in DMA mode fa o [2005/12/03] ports/89896 ale [PATCH] Add support for multiple versions o [2005/12/05] bin/89959 brooks dhclient(8): dhcp: ip length 314 disagree o [2005/12/05] ports/89972 apache portupgrade apache+ssl fails on dependenc o [2005/12/05] bin/89988 [patch] bootparamd(8) null host support a o [2005/12/05] bin/89989 [patch] Add option to /usr/sbin/jail: -I o [2005/12/05] kern/89991 [ufs] softupdates with mount -ur causes f o [2005/12/05] ports/89996 ports-bugs Update linux-winetools to latest version o [2005/12/06] kern/90012 scottl [ips] [patch] IBM/Adaptec ServeRAID 7x su o [2005/12/07] kern/90063 [procfs] access("/proc/123", F_OK) doesn' s [2005/12/07] conf/90082 matteo [syscons] [patch] curses ACS line graphic a [2005/12/08] ports/90094 roam Update port: security/mhash to 0.9.3 o [2005/12/08] bin/90114 [patch] pw(8) takes strings after option o [2005/12/09] bin/90130 [patch] sysctl(8): print temperature in c f [2005/12/09] ports/90146 tmclaugh [New Port] database/castle.activerecord ( o [2005/12/09] kern/90155 [netinet] [patch] use sysctl(8) to contro a [2005/12/09] conf/90163 dougb [patch] Easily launch non-forking daemons o [2005/12/10] kern/90181 [NOTES] [patch] IPSEC_FILTERGIF documenta o [2005/12/11] i386/90243 i386 Laptop fan doesn't turn off (ACPI enabled o [2005/12/12] bin/90266 philip bsnmpd(1) returns bad data during a snmpw o [2005/12/12] bin/90299 Segmentation fault in fdisk(8) o [2005/12/12] bin/90311 [patch] add "eject" to mt(1) o [2005/12/13] sparc64/90316sparc64 [kbd] Keyboard "lock" key lights not work o [2005/12/13] kern/90333 das [libc] libc/gdtoa::__hldtoa() bug s [2005/12/13] bin/90367 [feature request] libmap.conf needs exclu o [2005/12/13] kern/90368 pxeboot misses ${class} parameter when bo f [2005/12/14] ports/90383 ache wu-ftpd does't work with anonymous in Fre o [2005/12/14] bin/90384 [patch] chroot patch for sftp-server(8) o [2005/12/15] conf/90413 tap0 interface not configured at boot-tim o [2005/12/15] bin/90415 [patch] Add -Z (no newfs) to mount_mfs(8) o [2005/12/15] ports/90436 portmgr [patch] Add a way to handle configuration o [2005/12/16] ports/90484 perky lib/python2.4/lib-dynload/nis.so: Cannot o [2005/12/17] kern/90521 [udf] [patch] UDF driver might calculate o [2005/12/17] bin/90524 reset(1) doesn't fully restore terminal s o [2005/12/17] bin/90580 wordexp(3) fails to check for EINTR o [2005/12/20] bin/90680 [patch] make(1) thinks "^.for.o:" is a di o [2005/12/20] bin/90687 [patch] side effect of -delete option of o [2005/12/20] bin/90690 ps(1) errorneously respects terminal colu p [2005/12/20] docs/90711 davidxu missing man page for sigtimedwait(2) o [2005/12/22] kern/90820 [ata] aborting burncd may keep drive "loc f [2005/12/22] i386/90821 remko Install cd fails on vectra 6/180 w/ scsi o [2005/12/22] bin/90823 [PATCH] cp(1) should use lchflags() o [2005/12/22] ports/90829 perky Remove fcntlmodule.c patch from lang/pyth o [2005/12/23] i386/90839 i386 [ata] burncd gets error on CDRIOCFIXATE w o [2005/12/23] bin/90854 [ata] problem with cd recorder (RICOH CD- f [2005/12/24] kern/90871 acpi ACPI problems with ASUS A8N-VM-CSM o [2005/12/26] ports/90922 az `New port: editors/yzis A vim-like editor o [2005/12/27] kern/90990 [PATCH] ncurses doesn't compile with --en o [2005/12/28] bin/91002 calendar(1): funky sorting when going aro o [2005/12/28] kern/91010 daichi [unionfs] [patch] new source code and som o [2005/12/28] bin/91034 [patch] minor fix to iostat(8) so that co o [2005/12/29] bin/91049 [patch] dump(8): make dumps more rsync-fr o [2005/12/30] bin/91101 [patch] /usr/src/usr.bin/whereis/whereis. o [2005/12/30] conf/91106 date definitions in pl_PL locale are wron o [2005/12/31] bin/91134 [smbfs] [patch] Preserve access and modif o [2005/12/31] docs/91149 doc read(2) can return EINVAL for unaligned a o [2006/01/01] docs/91174 ceri [REQUEST] Handbook: Addition of Oracle 9i f [2006/01/01] usb/91191 usb HP LaserJet 1020 (USB printer) not recogn o [2006/01/02] amd64/91195 amd64 FreeBSD 6.0(amd64) and Asus A8R-MVP o [2006/01/02] bin/91205 qa [sysinstall] sysinstall package options s o [2006/01/02] ports/91219 olgeni sysutils/webmin: Webmin / Nvidia / Gnome o [2006/01/02] bin/91226 phk make buildworld fails with read-only /usr f [2006/01/03] ports/91244 java Bad instruction on making process of jdk1 o [2006/01/04] kern/91293 emulation [svr4] [patch] *Experimental* Update to t o [2006/01/04] docs/91297 doc restore(8) man page not accurate? o [2006/01/04] bin/91299 yar [patch] add ftpd(8) SITE SHA256 command o [2006/01/04] ports/91310 obrien Thare is a bug in the port's Makefile for p [2006/01/04] kern/91315 anholt [agp] [patch] add Intel E7505 chipset sup o [2006/01/04] bin/91316 pax(1): pax -pe does not preserve times o o [2006/01/05] kern/91332 [patch] Linksys EG1032 V3.0 Gigabit card f [2006/01/05] sparc64/91334sparc64 FreeBSD 6.0 don't support tftp boot from o [2006/01/05] conf/91342 [devfs] Errors in devfs.rules files don't o [2006/01/05] kern/91347 rodrigc [pci] [patch] Add another PCI-e chipset f o [2006/01/06] bin/91393 window(1) changes console cursor shape to f [2006/01/06] bin/91394 brian ppp(8) sets mtu 1500 for PPPoE link p [2006/01/06] kern/91412 andre [netinet] [patch] Problem with PMTU Disco o [2006/01/06] kern/91414 emaste [kernel] [patch] Polling for devices othe o [2006/01/06] kern/91419 [netgraph] libnetgraph/debug.c compile er p [2006/01/07] docs/91448 keramida [patch] fdc(4) man page refers to non-exi s [2006/01/07] ports/91451 ports-bugs lftp may segfaults when linked with Readl o [2006/01/07] kern/91476 [fdc] [patch] floppy drive doesn't work i o [2006/01/08] kern/91488 [isofs] [patch] cd9660 filesystem cannot f [2006/01/08] misc/91498 CVSCMDARGS has incorrect syntax in src/re o [2006/01/08] kern/91502 sos [ata] [patch] ICH7 - finds only 2 out of o [2006/01/08] docs/91506 doc ndis(4) man page should be more specific f [2006/01/08] usb/91516 usb [umass] umass0 problems, with Freecom Cla p [2006/01/08] docs/91518 trhodes [patch] Update handbook section "Rebuildi o [2006/01/09] usb/91546 usb [umodem] [patch] Nokia 6630 mobile phone o [2006/01/09] ports/91553 secteam Make portaudit call programs in /sbin wit o [2006/01/09] ports/91558 lioux Upgrade math/mprime from 0.0.23.5 to 0.0. o [2006/01/10] i386/91594 i386 FreeBSD > 5.4 w/ACPI fails to detect Inte o [2006/01/10] bin/91606 sha1(1): sha1 /dev is suspended o [2006/01/10] bin/91608 tar(1) reports (Empty error message) on t o [2006/01/10] i386/91609 i386 Booting takes *a long time* unless power o [2006/01/11] ports/91681 clement apache-2.0.54_4 building modules fails us o [2006/01/12] i386/91719 [pxe] BZ2_bzDecompress returned -3 error o [2006/01/12] kern/91720 [pxe] pxeboot always tries to do an rpc c o [2006/01/13] i386/91761 i386 [ata] NEC_DVD-RW + system start: semaphor f [2006/01/13] kern/91777 darrenr [ipfilter] [patch] wrong behaviour with s o [2006/01/15] usb/91811 usb Compact Flash in HP Photosmart 2610 retur o [2006/01/15] ports/91838 danfe [BUG] graphics/svgalib: tty switching is o [2006/01/15] ports/91843 anders [patch] thttpd with USE_SENDFILE generate o [2006/01/16] kern/91847 ipfw [ipfw] ipfw with vlanX as the device p [2006/01/16] kern/91851 andre [netinet] [patch] cannot collect multicas o [2006/01/16] i386/91871 i386 [boot1] [patch] boot1: jump to 0xf000:0xf a [2006/01/17] ports/91893 danfe [UPDATE] games/fuhquake: remove some opti o [2006/01/17] usb/91896 usb Serial Number of USB Memory Sticks is not o [2006/01/17] kern/91908 darrenr [ipnat] loading ipl.ko to the kernel comp o [2006/01/18] ports/91933 marcus Mk/bsd.port.mk - introduce USE_LDCONFIG{, p [2006/01/18] bin/91973 des [libfetch] [patch] relax fetch(1) reactio o [2006/01/19] bin/91980 yppasswdd(1) leaves zombie sh processes o [2006/01/19] bin/91993 sam dhclient(8) option missing, script incomp s [2006/01/19] ports/92022 oliver Adding event to the calendar fails when m o [2006/01/19] kern/92023 [kernel] 'options DEVICE_POLLING' makes l o [2006/01/20] bin/92062 mdconfig(8): mdconfig -l shows 95 entries o [2006/01/21] ports/92093 lev russian/apache13-modssl doesn't compile o [2006/01/22] ports/92123 portmgr [patch] bsd.port.mk: PLIST_SUBX and SUBX_ f [2006/01/22] ports/92133 ports-bugs [PATCH] comms/spandsp: 0.0.2p22 fixes var o [2006/01/23] ports/92197 aaron New port: www/ojs2 Open Journal Systems o [2006/01/24] kern/92238 [ata] Spurious "atapci1: failed to enable o [2006/01/24] kern/92270 glebius ppp(8): ppp does not work on renamed netw o [2006/01/24] ports/92284 ports-bugs audio/aureal-kmod - au88x0-1.3_4 is unfet o [2006/01/25] ports/92289 ports-bugs audio/mbrolavox - fr4 and nl3 are incorre o [2006/01/25] usb/92306 usb [quirk] [patch] Support for iRiver U10 US o [2006/01/25] kern/92323 [iwi] [patch] XI330_IEEE missing from if_ o [2006/01/26] standards/92360standards [headers] [patch] Missing TAB3 in kernel o [2006/01/26] standards/92362standards [headers] [patch] Missing SIGPOLL in kern o [2006/01/26] bin/92370 pppd(8): ppp server not accessible to IPV o [2006/01/26] kern/92381 [drm] i915 drm module unuseable by X.org o [2006/01/26] bin/92395 [patch] truss(1) does not work properly, o [2006/01/27] usb/92403 usb [uplcom] uplcom.c needs new entry for 4.0 o [2006/01/27] bin/92412 [patch] rup(1): rpc.rstatd reports bogus o [2006/01/27] ports/92429 ports-bugs new port: science/caret (advice needed) o [2006/01/27] ports/92434 portmgr Patch: Mk/bsd.port.mk automatic show pkg- o [2006/01/28] ports/92445 portmgr [patch] change all bogus uses of BROKEN t f [2006/01/28] usb/92462 usb [patch] Add support for Epson CX3500/3600 o [2006/01/29] ports/92490 clement www/apache22: crash in bn_mul_add_words i o [2006/01/29] i386/92501 i386 [irq] Hang on boot with ACPI enabled on A o [2006/01/29] kern/92512 multimedia [sound] distorted mono output with emu10k o [2006/01/30] conf/92523 rc [patch] allow rc scripts to kill process o [2006/01/30] amd64/92527 amd64 no driver for "CICADA VSC 8201 Gigabit LA o [2006/01/30] conf/92541 [PATCH] add ca_AD, ca_FR and ca_IT locale o [2006/01/30] ports/92548 ahze [PATCH] textproc/p5-xmltv: Fix 'bad makef o [2006/01/30] kern/92557 multimedia [sound] Contrary to 6.0 release notes, sn a [2006/01/31] ports/92588 linimon make fetchindex failed with FETCHINDEX=wg o [2006/01/31] ports/92604 ale mysql41-client broken with non-default ch o [2006/01/31] ports/92620 glewis jdk14 under the environment where net.ine o [2006/01/31] docs/92626 doc jail manpage should mention disabling som p [2006/01/31] standards/92640schweikh A pristine /bin/sh does not set the PWD v f [2006/02/01] ports/92651 itetcu graphics/gmt - WITH_EVERYTHING doesn't fe o [2006/02/01] ports/92655 glebius update net/mpd4 f [2006/02/01] ports/92688 portmgr [PATCH] bsd.port.mk: add check to USE_DOS f [2006/02/01] ports/92689 portmgr [UPDATE] Replace USE_CRLF with USE_DOS2UN o [2006/02/01] ports/92707 gerald lang/gcc42 fails to build on FreeBSD 4.11 o [2006/02/02] bin/92723 [feature request] fdisk(8) should be able o [2006/02/02] ports/92737 openoffice editors/openoffice.org-2.0 build failure o [2006/02/02] ports/92738 bms [patch] net/libpcap LIBPCAP_OVERWRITE_BAS o [2006/02/02] kern/92744 [rl] problems with a realtek network card f [2006/02/03] ports/92755 ports-bugs databases/slony1: Add ability to run slon f [2006/02/04] ports/92804 lawrance mozplugger doesn't find /usr/local/etc/mo o [2006/02/05] usb/92852 usb Vertical scroll not working properly on A o [2006/02/06] bin/92866 krion pkg_add(1) should return a different resu o [2006/02/06] bin/92867 krion pkg_add(1) needs an option to disable dep o [2006/02/06] kern/92880 [libc] [patch] almost rewritten inet_netw o [2006/02/06] kern/92926 [headers] [patch] Missing copyright in /u s [2006/02/07] www/92973 www [patch] mailto.sgml o [2006/02/07] amd64/93002 amd64 amd64 (6.0) coredumps at unpredictable ti o [2006/02/08] ports/93007 portmgr Add power of find utility to USE_DOS2UNIX f [2006/02/08] usb/93011 usb HP ScanJet 6200C & uscanner problem o [2006/02/08] ports/93032 ports-bugs LPRng uses incorrect paths to config file o [2006/02/08] ports/93033 tobez Problem using perlcc o [2006/02/09] amd64/93090 amd64 NIC on GA-K8NF-9 motherboard is recognize o [2006/02/09] kern/93093 [libc] xdr_string might call strlen(3) on o [2006/02/09] ports/93107 ale MySQL ports missing switch to compile wit o [2006/02/10] gnu/93127 [PATCH] add __FreeBSD_kernel__ to pre-def o [2006/02/10] docs/93130 keramida addition to handbook section 14.11 Open S o [2006/02/11] bin/93171 roberto ntpdate returns garbage output on amd64 o [2006/02/11] kern/93172 [isp] [patch] uintXX_t style(9) updates o [2006/02/11] ports/93185 ale graphics/pecl-imagick port causes SIGABRT o [2006/02/11] kern/93197 [libc] strptime(3) succeeds on formats it f [2006/02/12] ports/93216 lawrance [PATCH] finance/gnucash-devel: Add develo o [2006/02/12] docs/93249 doc rewrite of handbook chapter 23 (PPP & SLI o [2006/02/13] bin/93275 qa [sysinstall] Failure to install after res p [2006/02/13] ports/93276 secteam [patch] security/ca-roots: Update expired o [2006/02/13] ports/93279 skv devel/cvsmonitor: not useable (/dev/mem: f [2006/02/13] ports/93304 itetcu [PATCH] sysutils/bacula-server port to no f [2006/02/13] bin/93309 [PATCH] rpc.rquotad: group quota support o [2006/02/13] bin/93310 des [libpam] [patch] pam_unix ignores 'passwo o [2006/02/14] ports/93318 ports-bugs New port: x11-toolkits/swt32, Eclipse SWT o [2006/02/14] kern/93331 [kernel] [patch] broken asm in kernel o [2006/02/14] misc/93341 phk make more flexibitily for NanoBSD customi o [2006/02/14] docs/93363 doc Handbook 23.11. SMTP-Authentifizierung o [2006/02/15] kern/93368 sos [ata] [patch] ATA_SMART command is missin o [2006/02/15] kern/93369 [ata] [patch] Fix failed detection of Nvi o [2006/02/15] ports/93373 portmgr bsd.port.mk: introduce a new keyword for o [2006/02/15] ports/93374 obrien ports/net/rdesktop does not compile on 4. o [2006/02/15] kern/93378 [tcp] Slow data transfer in Postfix and C o [2006/02/15] kern/93381 reboot(8) works but 'reboot -n' hangs o [2006/02/15] usb/93389 usb Digital Camera Pentax S60 don't work o [2006/02/15] kern/93393 imp [ed] [patch] Add Micro Research PCMCIA LA o [2006/02/15] ports/93397 aaron [NEW PORT] print/easylatex: Perl script w f [2006/02/15] bin/93400 anonymous ftp(1) login failing with base o [2006/02/16] kern/93414 scottl [aac] [patch] compilation problem in aac_ o [2006/02/16] kern/93422 ipfw ipfw divert rule no longer works in 6.0 ( o [2006/02/16] kern/93435 [ufs] [panic] kernel panic after setting f [2006/02/16] kern/93448 glebius [carp] CARP advskew not propagated to VRR o [2006/02/17] bin/93473 des [patch] Let pam_unix(8) use "passwordtime o [2006/02/17] usb/93484 usb [umass] [patch] QUIRK: Toshiba TransMemor o [2006/02/17] docs/93491 doc discrepancy man page for pam_unix(8) f [2006/02/18] docs/93517 doc Presented usage of Ports in Handbook lack o [2006/02/18] ports/93540 kuriyama [PATCH] security/gnupg; enable OPTIONS; c o [2006/02/19] ports/93559 openoffice OpenOffice.org-2.0.2 compile error o [2006/02/19] ports/93560 roam [PATCH] dns/djbdns-ipv6: Update IPv6 patc o [2006/02/19] ports/93569 wes Patches to update mail/mimedefang to 2.56 o [2006/02/20] docs/93590 doc [patch] pf.conf's man page mentions route f [2006/02/20] ports/93601 portmgr bsd.port.mk: new ports' feature: make mis o [2006/02/21] kern/93634 [msdosfs] False access to renamed files/d o [2006/02/21] misc/93661 [patch] loader(8): prevent *.4th files an o [2006/02/21] ports/93667 x11 x11/xorg-libraries: undefined symbol in l p [2006/02/21] ports/93671 gnome [UPDATE] graphics/glitz to 0.5.3 o [2006/02/21] kern/93676 [agp] Yet another i915G drm/agp issue o [2006/02/22] docs/93683 jcamou [PATCH] some typos in klist(1) o [2006/02/22] ports/93687 portmgr [PATCH] Split bsd.port.pre.mk - allow OPT s [2006/02/22] ports/93690 portmgr /usr/ports/Mk/bsd.gcc.mk doesn't know abo f [2006/02/22] ports/93693 itetcu [New Port] biology/io_lib: trace file rea o [2006/02/22] kern/93705 standards [headers] [patch] ENODATA and EGREGIOUS ( o [2006/02/22] ports/93726 ports-bugs [NEW PORT] deskutils/kxdocker and plugins o [2006/02/22] ports/93730 roam mhash port update from 0.9.2 to 0.9.4a. o [2006/02/23] powerpc/93746ppc Did not detect aic7901 scsci card o [2006/02/23] kern/93755 [kernel] [patch] 2 copy'n'paste-os in sys o [2006/02/23] docs/93764 jcamou [patch] addition to firewalls section - i o [2006/02/23] kern/93770 ati 9600 PRO radeon not recognized by the o [2006/02/24] ports/93781 az [NEW PORT] comms/ktrack: Amateur Radio sa o [2006/02/24] docs/93785 yar The man page for ftpchroot(5)/ftpusers(5) a [2006/02/24] kern/93790 cperciva cpufreq missing frequencies o [2006/02/24] i386/93793 i386 [kbd] Keyboard stops working after a shut o [2006/02/24] ports/93802 ports-bugs net-mgmt/cidr has Corrupted redzones in 7 o [2006/02/25] conf/93815 rc [patch] Adds in the ability to save ipfw o [2006/02/25] kern/93825 pf [pf] pf reply-to doesn't work o [2006/02/25] misc/93838 [patch] Add notice to /usr/src/Makefile t o [2006/02/25] bin/93841 dwmalone [patch] fix seg fault with dmesg(8) o [2006/02/26] www/93854 www Cannot proceed to page after the first in o [2006/02/26] bin/93857 [patch] kiconv_cs_preload(8): Utility for o [2006/02/26] kern/93860 [msdosfs] [patch] sectors-per-track limit o [2006/02/26] usb/93872 usb [patch] SCSI quirk required for ELTA 8061 a [2006/02/27] ports/93883 aaron New port: textproc/p5-libxmlenno The "li o [2006/02/27] kern/93887 [kernel] cpu_spinwait calls missing in su p [2006/02/27] kern/93897 emax [if_tap] [patch] if_tap doesn't handle kq o [2006/02/27] bin/93915 krion [patch] pkg_add(1) behaves improperly whe o [2006/02/28] ports/93920 aaron New port: databases/ocaml-sqlite3 OCaml b o [2006/02/28] ports/93957 aaron New port: devel/ocaml-ounit Unit test fra f [2006/02/28] ports/93958 ports-bugs New port: cad/jspice3 o [2006/03/01] kern/93976 [if_tun] [patch] if_tun doesn't handle kq o [2006/03/01] i386/93986 multimedia Acer TravelMate 4652LMi pcm0 channel dead o [2006/03/01] ports/93987 tobez lang/perl5x: Allow the perl ports to spec o [2006/03/01] ports/94000 ports-bugs request: fork of security/srm with update f [2006/03/02] ports/94011 pav Mark textproc/py-4suite 1.0b1 as unusable o [2006/03/02] ports/94013 portmgr WITHOUT_X11 does not stop X11 ports from o [2006/03/02] ports/94016 ports-bugs new port mail/contactsmenu o [2006/03/02] ports/94024 sat New port: net-im/py-punjab HTTP jabber c f [2006/03/02] bin/94032 krion [patch] Enhancement to pkg_add(1) to add o [2006/03/02] ports/94036 ports-bugs Minor graphics/mesagl update to 5.0.2 o [2006/03/03] ports/94043 ade [patch] bsd.autotools.mk: aclocal can't f o [2006/03/03] bin/94045 [nullfs] dump(8) seg-fault on nullfs o [2006/03/03] bin/94051 login(1): IP network in login.access igno o [2006/03/03] bin/94052 [PATCH]: Adds option to script(1) to supp o [2006/03/04] bin/94060 Users can hide themselves with a trick o [2006/03/04] ports/94073 ports-bugs [NEW PORTS] x11-toolkits/libsmokeqt, x11- o [2006/03/04] ports/94074 ports-bugs [NEW PORTS] x11-toolkits/ruby-qt3, x11-to o [2006/03/05] kern/94082 [re] [patch] USR 997902 Gig-Ethernet card o [2006/03/05] kern/94091 sos [ata] Audio CD is still detected even aft o [2006/03/05] ports/94093 kde qt/KDE install from ports creates files o o [2006/03/06] docs/94125 doc DGE-530T doesn't work on FreeBSD v6.0 o [2006/03/06] usb/94132 usb USB QUIRK for CENTURY EX35QUAT disk enclo o [2006/03/06] ports/94138 portmgr [patch] Mk/bsd.gcc.mk, Mk/bsd.port.mk: CP o [2006/03/06] bin/94140 some "make check-old" missed files f [2006/03/06] usb/94147 usb doesn't recognise my USB keyboard o [2006/03/06] usb/94148 usb Make if_cdce work with ARM linux handheld o [2006/03/07] bin/94154 [sysinstall] [patch] add release and arch s [2006/03/07] bin/94159 feature request: ipsecctl ported from ope o [2006/03/07] ports/94167 x11 [patch] x11/xorg-clients: install xdm/Xst o [2006/03/07] www/94168 www Typo in release notes for 6.0R o [2006/03/07] ports/94172 openoffice editors/openoffice.org-2.0 needs sane sym p [2006/03/07] bin/94180 ume portsnap does not handle HTTP_PROXY_AUTH p [2006/03/07] bin/94181 ume portsnap should remove the trailing dot f s [2006/03/07] kern/94182 [altq] [feature request] altq support for o [2006/03/07] ports/94188 lioux multimedia/libdv reorder_block() incorrec o [2006/03/07] ports/94189 ports-bugs New port: Linux Matlab 6.5r13 o [2006/03/07] sparc64/94190sparc64 hw.physmem tunable does not work on sparc o [2006/03/08] ports/94216 sumikawa add patch to net/zebra o [2006/03/08] kern/94227 'no dump device defined' on random occasi o [2006/03/08] ports/94244 aaron New Port: security/pecl-crack o [2006/03/08] kern/94249 andre [netinet] Inconsistent use of time_second o [2006/03/09] ports/94259 lawrance nsca port needs an rc.d script (included) o [2006/03/09] kern/94269 [nullfs] procfs shows wrong data if execu f [2006/03/09] ports/94271 ports-bugs New Port: ifp-manager (a GUI interface fo o [2006/03/09] kern/94273 gnn [netipsec] [patch] IPIP decapsulation pro f [2006/03/09] ports/94286 itetcu [NEW PORT]: devel/staf An extensible mult o [2006/03/10] kern/94299 pjd [geom] missing printf locking for geom_mi o [2006/03/11] ports/94301 hrs ports update ( databases/grass-i18n ) o [2006/03/11] usb/94311 usb [ugen][PATCH] allow interrupt IN transact o [2006/03/11] ports/94331 x11 x11/xorg: advocating for DRI support for o [2006/03/11] bin/94367 [patch] wall(1): fix `wall: /dev/:0: No s o [2006/03/11] kern/94369 [bktr] [patch] Patch to support Leadtek W o [2006/03/12] kern/94390 [vr] poor network performance after promi o [2006/03/13] bin/94409 qa [sysinstall] [patch] add geom.debugflags- o [2006/03/13] kern/94410 Cannot disable hyperthreading if more tha o [2006/03/13] kern/94413 [kernel] wine fails when increasing kern. o [2006/03/13] kern/94417 [request] GENERIC kernel should include a o [2006/03/13] www/94423 www [patch] XML'ified release todo list o [2006/03/13] kern/94424 [bge] BGE5721 or BGE5750? o [2006/03/14] usb/94439 usb [patch] Add support for JNC MP3 Player o [2006/03/14] ports/94453 lioux Change Maintainership: net-p2p/mldonkey o [2006/03/15] ports/94465 ports-bugs [NEW PORT] devel/pikdev: Simple graphic I o [2006/03/15] kern/94480 [kernel] [patch] bread(3) & bwrite(3) can o [2006/03/15] sparc64/94483sparc64 [ath] ath_hal does not work on 6-release/ o [2006/03/16] kern/94519 [libc] [patch] Add UF_HIDDEN file flag; m o [2006/03/16] ports/94526 ade repocopy request devel/gmake -> deve/gmak o [2006/03/16] kern/94528 [linprocfs] linprocfs /proc/memory report o [2006/03/16] bin/94546 [PATCH] Make telnet(1) accept 'host:port' p [2006/03/16] bin/94577 emax [bluetooth] [patch] Wrong mouse button ma o [2006/03/16] kern/94578 [panic] Panic by using rtorrent sometimes o [2006/03/17] kern/94583 [libm] std::isnan()/std::isinf() are not s [2006/03/17] www/94593 www AMD64 Motherboard Page Update - MSI K8NGM f [2006/03/17] ports/94603 lawrance www/tomcat55 - "tomcat55.sh stop" fails o [2006/03/17] docs/94625 doc [patch] growfs man page -- document "pani o [2006/03/18] ports/94626 shaun [NEW PORT] security/knock - flexible port o [2006/03/18] kern/94632 geom [geom] Kernel output resets input while G o [2006/03/18] gnu/94640 gcc(1): php broken bit operator s [2006/03/18] ports/94662 oliver [UPDATE] sysutil/xfce4-battery-plugin 0.2 o [2006/03/19] ports/94674 ports-bugs [NEW PORT]: x11/yakuake f [2006/03/19] ports/94680 portmgr [patch] bsd.port.mk - introduce ONLY_FOR_ o [2006/03/19] ports/94681 ports-bugs New port: devel/powerpc-binutils GNU binu o [2006/03/19] ports/94682 ports-bugs New port: devel/powerpc-gcc GNU gcc 4.1.0 o [2006/03/19] ports/94690 ume [PATCH] Daemons in /usr/local/etc/rc.d/ m o [2006/03/19] gnu/94695 bugmeister send-pr.el is missing from send-pr distri o [2006/03/20] kern/94733 [smbfs] smbfs may cause double unlock o [2006/03/21] docs/94803 doc Slightly confusing/misleading man page fo o [2006/03/21] bin/94810 fsck incorrectly reports 'file system mar o [2006/03/22] kern/94823 [drm] DRM doesnt't work with i915.ko o [2006/03/22] kern/94829 thompsa [patch] feature request: adapt OpenBSD's o [2006/03/22] kern/94830 cel [nfs] [patch] mount_nfs causes a fatal tr o [2006/03/22] kern/94844 [smbfs] mount_smbfs(8) don't work o [2006/03/22] bin/94845 fortune(6) seems to select 0 a lot o [2006/03/23] kern/94849 [ufs] rename on UFS filesystem is not ato o [2006/03/23] i386/94850 i386 [bge] FreeBSD 6.0 on Fujitsu BX300, netwo o [2006/03/24] ports/94895 ports-bugs [PATCH] mail/postgrey: The shutting donw o [2006/03/24] ports/94910 clement www/apache: FreeBSD 6.0 Release Apache-20 o [2006/03/25] ports/94917 dougb mail/pine4 doesn't quote replies to GMail o [2006/03/25] bin/94920 [rpc] rpc.statd(8) conflict with cups ove o [2006/03/25] ports/94921 simon isakmpd fails on amd64 o [2006/03/25] ports/94935 cy security/aide o [2006/03/26] usb/94946 usb [uhub][patch] code dynamic status size fo f [2006/03/26] docs/94969 ale [patch] correct information about install o [2006/03/26] ports/94976 clement Add rc.d script for net/pen o [2006/03/26] kern/94978 [pam] pam_opie module option without "no_ o [2006/03/27] kern/94992 pf [pf] [patch] pfctl complains about ALTQ m o [2006/03/27] ports/94997 seanc [patch] port databases/memcached performa f [2006/03/27] ports/94998 lawrance Update devel/openthreads port to latest O o [2006/03/27] ports/95005 aaron New port: databases/opendbx o [2006/03/28] ports/95018 ports-bugs new port: security/sguil-sensor o [2006/03/28] ports/95019 ports-bugs New port: www/suphp-devel: suPHP 0.6.1 o [2006/03/28] docs/95026 tjr tr manual page typo o [2006/03/28] kern/95031 [netinet] [patch] routing table doesn't u o [2006/03/28] usb/95037 usb USB disk didnt recognized on hot-plug. o [2006/03/28] docs/95039 doc [patch] small cosmetic syslog.conf(5) fix p [2006/03/29] docs/95059 ceri [patch] Incorrect example in wordexp(3) m o [2006/03/29] ports/95060 bms net/libpcap broken with -DLIBPCAP_OVERWRI o [2006/03/29] ports/95071 ports-bugs New Port: audio/ventrilo-server o [2006/03/29] kern/95077 firewire [firewire] fatal trap 19 at fwohci_pci_in o [2006/03/29] bin/95079 [patch] apply(1) dies when there are two o [2006/03/29] bin/95082 [patch] ping(1) won't handle large preloa o [2006/03/29] ports/95085 portmgr [PATCH]: bsd.port.mk: Add knob to allow f o [2006/03/29] kern/95086 multimedia [sound] uaudio line in problem with sbdm o [2006/03/30] www/95094 remko Change to Southern Gazer Consultant o [2006/03/30] ports/95097 ume [patch] to build security/cyrus-sasl2 wit o [2006/03/30] ports/95102 ume [PATCH] security/cyrus-sasl2 - change aut o [2006/03/30] kern/95103 jhb panic after mtx_destroy() on locked spinl o [2006/03/30] docs/95104 doc tsleep() man page mentions nonexistent 'm o [2006/03/30] i386/95106 i386 cannot install freebsd o [2006/03/30] ports/95120 ijliao Update Port: net/p5-Frontier-RPC o [2006/03/30] ports/95121 maho A directory missed when installing biolog o [2006/03/30] ports/95122 danfe NVIDIA's X11 driver needs much shared mem o [2006/03/30] ports/95129 ports-bugs New port: www/knowledgeTree Web-based doc o [2006/03/31] docs/95139 doc FAQ to move filesystem to new disk fails: o [2006/03/31] bin/95146 ipfw [ipfw][patch]ipfw -p option handler is bo o [2006/03/31] ports/95153 tobez perl binary packages should be build with o [2006/03/31] kern/95155 [ufs] Creation of UFS snapshot turns 'acl o [2006/03/31] conf/95162 rc [patch] Missing feature in rc.subr o [2006/03/31] ports/95166 ports-bugs New port: NLM Insight Toolkit 2.4.1 o [2006/03/31] usb/95173 usb [usb] cannot mount external usb harddisk o [2006/04/01] ports/95179 grog devel/ptmalloc doesn't include a header o [2006/04/02] kern/95222 [iso9660] File sections on ISO9660 level o [2006/04/02] kern/95239 [patch] nftw(3) returns EINVAL for large o [2006/04/02] usb/95241 usb Patch to add USB ID for OEM Pharos 360 GP o [2006/04/03] ports/95258 ports-bugs New port: www/sahana2 :Web based disaster o [2006/04/03] kern/95267 net packet drops periodically appear o [2006/04/03] kern/95277 [netinet] IP Encapsulation mask_match() r o [2006/04/03] ports/95278 miwi New Port: x11-fonts/manu-gothica o [2006/04/03] ports/95279 ports-bugs (New Port) FreeBPX: a web gui to the aste o [2006/04/03] amd64/95282 amd64 [ed] fix ed for RELENG_5 amd64 so that it o [2006/04/04] ports/95294 jkoshy netpipe doesn't work on amd64 o [2006/04/04] ports/95302 perl p5-Net-XWhois denic-aware o [2006/04/05] ports/95335 perky mod_python3 fails to build p [2006/04/05] docs/95360 keramida "man ath" update o [2006/04/05] ports/95361 aaron New port: deskutils/wyrd curses front end o [2006/04/05] powerpc/95367ppc docs for ppc release. o [2006/04/05] ports/95371 ade autoconf not well enough integrated with o [2006/04/06] kern/95391 [bfe] [patch] minor if_bfe error f [2006/04/06] ports/95399 ports-bugs java/phpeclipse upgrade to 1.1.7 o [2006/04/06] kern/95407 [atapicam] atapicam, cd and /etc/rc.d/dev o [2006/04/06] ports/95416 pb multimedia/kino build failure WITH_QUCKTI p [2006/04/06] ports/95428 vs games/hlserver-esf: add distfile mirrrors o [2006/04/06] ports/95429 vs games/hlserver-glbwar: Tidy up port f [2006/04/06] ports/95430 vs games/hlserver-ns: Tidy up port f [2006/04/06] ports/95441 vs lang/smalltalk: unbreak on amd64. f [2006/04/06] ports/95447 ports-bugs net/generic-nqs maintainer update o [2006/04/07] ports/95494 aaron [NEW PORT] textproc/ecromedos: A document o [2006/04/08] kern/95509 [uplcom] uplcom(4) module load after devi f [2006/04/08] ports/95513 tmclaugh [port update] lang/mono o [2006/04/09] ports/95529 ports-bugs new port: finance/opentaxsolver o [2006/04/09] kern/95532 [gif] if_gif has artificial limitations o [2006/04/09] bin/95550 [patch] ntpd(8): NTPD/ntpdate complain ab o [2006/04/09] ports/95556 ports-bugs new port: x11-wm/wmii-devel: next generat o [2006/04/10] kern/95559 RELENG_6: write(2) fails with EPERM on TC o [2006/04/10] ports/95563 shaun [NEW PORT] net-mgmt/netdisco - web-based p [2006/04/11] usb/95616 usb [patch] Add support for USB Acer 640BT sc o [2006/04/11] ports/95618 az [patch] irc/weechat p [2006/04/11] kern/95625 jhb [PATCH] Bug in cdboot's ISO9660 file name o [2006/04/12] ports/95643 barner devel/boost[-gcc3] is broken on 4.x o [2006/04/13] ports/95687 ports-bugs new port: emulators/wine-etersoft-public o [2006/04/13] bin/95698 philip [patch] moused(8): Software control of sy f [2006/04/13] ports/95708 ports-bugs freebsd startup script for sec port o [2006/04/13] ports/95709 ports-bugs New port: security/kovpn A simple GUI for o [2006/04/13] kern/95711 [fdescfs] rm on fdescfs causes panic: loc o [2006/04/13] ports/95712 ports-bugs [NEW PORT] editors/drjava: A lightweight f [2006/04/13] bin/95713 ping(1) is not scalable. p [2006/04/13] bin/95715 [patch] random(6) busy loop under some co o [2006/04/14] ports/95733 kris dsniff ports kit does not compile o [2006/04/14] ports/95746 tmclaugh new port: graphics/autopano-sift o [2006/04/14] ports/95747 ports-bugs [NEW PORT] java/eclipse-drjava: DrJava pl o [2006/04/14] conf/95754 [patch] Portuguese timedef s [2006/04/14] ports/95759 portmgr [patch] bsd.port.mk parallel port builds a [2006/04/15] ports/95788 danfe [PATCH] audio/soundtouch: update to 1.3.1 o [2006/04/15] misc/95792 [patch] environment variable EDITOR is se o [2006/04/15] ports/95800 danfe x11/nvidia-driver - build faliure o [2006/04/15] usb/95803 usb Add support for AnyData ADU-E100H o [2006/04/15] usb/95805 usb Add Support for Siemens ES75 modem o [2006/04/16] ports/95854 ports-bugs New Port: www/ochusha o [2006/04/16] ports/95881 danfe [Update] x11-wm/wmii o [2006/04/16] ports/95895 ports-bugs [NEW PORT] graphics/jdraw: A pixel orient o [2006/04/17] conf/95905 brooks [PATCH] /etc/rc.d/dhclient doesn't intera o [2006/04/17] ports/95909 ports-bugs net-mgmt/kismet o [2006/04/17] ports/95920 ports-bugs New port: www/karpion, a KDE OpenPhishing o [2006/04/17] gnu/95936 egrep(1) misparses multiline parenthetica o [2006/04/17] ports/95938 anders [update] sysutils/flog f [2006/04/17] ports/95953 ports-bugs port www/vtiger pkg-plist seems to be inc o [2006/04/17] kern/95957 gnn [netinet6] [patch] missing check for fail p [2006/04/17] docs/95975 trhodes Documentation in /usr/src/Makefile out of o [2006/04/18] bin/95979 burncd(8) fixating CD's o [2006/04/18] ports/95990 ports-bugs New Port: emulators/xjoypad o [2006/04/18] i386/95993 i386 Cyrix 5530 unable to map interrupt s [2006/04/18] ports/95994 itetcu New port: x11/oooqs2, OpenOffice 2.x quic o [2006/04/18] conf/96015 uncommenting the msgs invocation in /etc/ o [2006/04/18] standards/96016standards clock_getres et al should be in o [2006/04/18] bin/96018 dhclient broadcasts unicast DHCPREQUEST r o [2006/04/19] kern/96040 [mpt] LSI1030 mpt0: bullet missed in time o [2006/04/19] kern/96077 [libdisk] memory leak in libdisk(3)'s Dis o [2006/04/20] conf/96094 startup scripts do not configure gif inte o [2006/04/20] ports/96101 tobez [PATCH] security/p5-GSSAPI does not depen o [2006/04/21] docs/96127 doc add hint to pass arp packets through filt o [2006/04/21] bin/96128 [PATCH] Make aicasm WARNS=6 clean o [2006/04/21] kern/96133 scsi [scsi] [patch] add scsi quirk for joyfly o [2006/04/21] ports/96147 tegge [patch] devel/linuxthreads uses pre-insta o [2006/04/21] bin/96150 pf pfctl(8) -k non-functional o [2006/04/22] ports/96167 cy [PATCH] sysutils/screen: new knob WITH_CJ o [2006/04/23] kern/96171 [ata] burncd (ATA driver) fails to write o [2006/04/23] ports/96199 ports-bugs new port java/jdic: The JDesktop Integrat o [2006/04/23] docs/96207 doc Comments of a sockaddr_un structure could f [2006/04/23] ports/96227 grog [update] misc/tempcontrol f [2006/04/23] ports/96232 aaron New port: lang/abcl Armed Bear Common Lis o [2006/04/23] standards/96236standards [PATCH] [POSIX] sed.1 incorrectly describ o [2006/04/24] kern/96242 [rpc] rpcbind ignores NO_INET6=yes in mak o [2006/04/24] bin/96248 vipw fail on RO /etc f [2006/04/24] ports/96263 pav port update: net/bounce . bind outgoing c o [2006/04/25] ports/96306 roam [PATCH] Add necessary DOS2UNIX to textpro o [2006/04/25] ports/96310 lth [PATCH] net/smokeping: Use fixed uid/gid p [2006/04/25] kern/96326 [libdisk] [patch] update to id -> partiti p [2006/04/25] bin/96335 delphij [libutil] [patch] ignored NO_INET6 knob f [2006/04/25] ports/96339 mnag Three updated files for net-mgmt/ourmon. o [2006/04/26] conf/96343 [patch] rc.d order change to start inet6 o [2006/04/26] kern/96346 [modules] [patch] disable build of module o [2006/04/26] i386/96373 i386 install CD - don't boot o [2006/04/26] usb/96381 usb [patch] add a quirk table entry for a fla o [2006/04/27] i386/96397 i386 [dc] strange behaveour of the dc driver o o [2006/04/27] i386/96406 i386 System freezes on IBM xSeries 335 with Fr o [2006/04/27] ports/96428 ale lang/php5: add SASL support to php5-ldap o [2006/04/27] kern/96429 [kernel] [patch] kern_linker.c hardcodes o [2006/04/27] i386/96430 i386 boot2 is unable to load kernel directly o [2006/04/27] ports/96436 x11 [patch] x11/xorg-clients: logging on xdm o [2006/04/28] i386/96452 i386 twiddle in cdboot does not work o [2006/04/28] ports/96467 ports-bugs request for removal of net/openh323-112 o [2006/04/28] ports/96469 seanc [PATCH] devel/tla: update to 1.3.4 o [2006/04/28] ports/96488 mbr update: audio/xmms-uade -> 2.02 o [2006/04/29] ports/96508 girgen [fix] www/mod_jk: support for apache >2.0 p [2006/04/29] conf/96509 glebius [patch] Can't set sysctl containing space o [2006/04/29] amd64/96516 amd64 FreeBSD/amd64 intermittent Network-Proble o [2006/04/29] bin/96528 dougb Fix mergemaster(8) to be upgrade-friendly o [2006/04/30] bin/96540 [patch] catman(1) does not deal correctly o [2006/04/30] usb/96546 usb [usb] [patch] Add support (quirk) for Eas f [2006/04/30] ports/96555 lawrance [UPDATE] net-mgmt/nsca from 2.4 to 2.6 o [2006/05/01] ports/96567 lioux update multimedia/mkvtoolnix to 1.7.0 s [2006/05/01] ports/96576 ports-bugs R 2.3.0 fails to compile: undefined refer o [2006/05/01] conf/96589 Periodic monthly invalid times with 32 ch o [2006/05/01] usb/96599 usb [patch] [usb] Sony Handycam DCR-HC32E mem o [2006/05/01] kern/96605 kernel panic: FreeBSD 7.0 o [2006/05/02] ports/96642 hrs Update port: print/acroread7 (fix plist; o [2006/05/02] kern/96644 crash after mount/umount disturbance: fat p [2006/05/02] docs/96660 keramida [patch] mountd(8) fails to indicate debug o [2006/05/02] ports/96673 edwin [UPDATE] mail/p3scan to 2.3.2 a [2006/05/03] ports/96703 dinoex www/apache13-modssl doesn't compile with o [2006/05/03] usb/96714 usb Update uvisor to support the Fossil Abacu s [2006/05/03] ports/96731 ports-bugs textproc/docbook-utils doesn`t build o [2006/05/04] kern/96743 [sk] [patch] broken 32-bit register opera o [2006/05/04] conf/96746 [nanobsd] [patch] Configuration changes a o [2006/05/04] ports/96748 ale Support Berkeley DB 4.4 in PHP5 (php5-dba o [2006/05/04] ports/96749 clement Support Berkeley DB in Apache 2 o [2006/05/04] conf/96766 rc run_rc_command doesn't work for Python sc o [2006/05/04] ports/96777 portmgr fix handling of OPTIONS default values in s [2006/05/04] ports/96783 itetcu Crash in x11/gtk2-theme-switch o [2006/05/05] ports/96828 ports-bugs New port: sysutils/cdcat A QT based tool o [2006/05/05] ports/96836 aaron [NEW PORT] textproc/sdcv: A text-based ut o [2006/05/06] bin/96854 imp [patch] devd(8) parses events incorrectly f [2006/05/06] ports/96865 ache www/apache13 doesn`t compile f [2006/05/06] ports/96891 ports-bugs [patch] port dns/powerdns does not have o o [2006/05/06] ports/96892 obrien [REPOCOPY] ports/editors/vim ports/editor o [2006/05/07] usb/96901 usb [patch] Add support for X-Micro Flash Dis o [2006/05/07] www/96902 keramida [patch] update the URL for NanoBSD projec o [2006/05/07] ports/96913 thomas [update] security/calife o [2006/05/07] ports/96919 paul net/ldapsdk: make fetchable a [2006/05/07] ports/96953 clement apache22 port uses its own directories f [2006/05/08] ports/96959 ports-bugs [update] emulators/kqemu-kmod o [2006/05/08] ports/96971 ports-bugs [patch] graphics/xv incorrectly handles x o [2006/05/08] kern/96974 obrien [patch] to build FreeBSD kernel with binu o [2006/05/08] kern/96999 [procfs] [patch] procfs reports incorrect o [2006/05/08] kern/97000 [kernel] [patch] bogus "All threads purge o [2006/05/08] bin/97002 [patch] crond(8) fails quietly if /usr/sb o [2006/05/09] kern/97057 pf IPSEC + pf stateful filtering does not wo p [2006/05/09] docs/97059 cokane pax(1): -b option description could be fl f [2006/05/09] ports/97061 ports-bugs Remove port: x11-toolkits/gtk20-apirefere p [2006/05/09] kern/97063 obrien [nve] [patch] Added DEFINE to if_nve.c/if o [2006/05/10] kern/97071 [jail] [patch] add security.jail.jid sysc o [2006/05/10] ports/97081 jylefort gnome-bluecurve-theme crashes gnome wm o [2006/05/10] bin/97083 [patch] passwd(1) does not support _PWF_H o [2006/05/10] ports/97097 dd [update] lang/tuareg-mode.el/ o [2006/05/10] ports/97106 ports-bugs [NEW PORT] sysutils/biosfont: Kernel modu o [2006/05/11] ports/97125 portmgr automatically invalidate saved OPTIONS on o [2006/05/11] kern/97153 [patch] When -NO_KERBEROS is set, libcom_ o [2006/05/11] www/97154 www freebsd.org doesn't display well in Firef o [2006/05/12] bin/97164 [libdisk] libdisk's Open_Disk() crashes o [2006/05/12] usb/97175 usb USB cardreader hangs system f [2006/05/12] ports/97177 clsung [patch] chinese/qterm cannot be compiled o [2006/05/12] ports/97181 dd Update port: lang/gawk Update to version a [2006/05/12] ports/97183 roam Update port: net/libnids to 1.21 o [2006/05/13] bin/97198 [patch] powerd(8) unable to reduce CPU fr o [2006/05/13] ports/97199 mnag [UPDATE] math/octave to 2.1.73 o [2006/05/13] kern/97228 sos [ata] [patch] Support new ATA ICH7 contro o [2006/05/13] docs/97231 doc [patch] ndis(4) man page outdated o [2006/05/13] www/97233 www [patch] Change the "Report a Bug" link on o [2006/05/13] www/97234 www [patch] Re-order links in bugreports.html o [2006/05/14] docs/97237 doc [patch] Fix dead links in FAQ o [2006/05/14] ports/97253 lioux [PATCH] multimedia/ogle: portlint(1) fixe o [2006/05/14] ports/97257 kris security/dsniff doesn't build when net/li o [2006/05/14] ports/97259 stefan gcc41 is required to run print/pdftk f [2006/05/14] kern/97265 System hangs at the end of shutdown -h no f [2006/05/14] kern/97266 System hangs at kernel time after boot: / o [2006/05/14] ports/97272 ale www/apache13 coredumps with lang/php4 and o [2006/05/14] ports/97275 aaron New port: databases/mysqlwrapped, sane C+ f [2006/05/14] ports/97279 shaun [PATCH] net/linphone-base: Fix build on 4 o [2006/05/15] ports/97282 shaun [NEW PORT] devel/lazarus - Delphi-like ID o [2006/05/15] conf/97311 [patch] /etc/rc.d/ipfilter reload can loa o [2006/05/16] kern/97329 matteo [nfs] [patch] code simplification o [2006/05/16] www/97344 itetcu I have submitted our site, and tried to f o [2006/05/17] docs/97375 doc [PATCH] remove nonexistent man page refer o [2006/05/17] kern/97377 [ntfs] [patch] syntax cleanup for ntfs_ih o [2006/05/17] kern/97381 [fdc] [patch] Patch to add zero-sector an o [2006/05/17] kern/97383 Volume buttons on IBM Thinkpad crash syst o [2006/05/17] ports/97385 apache www/mod_auth_kerb configure script faults o [2006/05/17] ports/97389 ale graphics/gqview: linker failed to found p o [2006/05/17] ports/97395 ports-bugs New Port: devel/h8300-hms-binutils, Gnu b o [2006/05/17] ports/97396 ports-bugs New Port: devel/h8300-hms-gcc, Gnu GCC fo o [2006/05/17] ports/97398 ports-bugs New Port: devel/h8300-hms-gdb5, Gnu GDB 5 o [2006/05/17] kern/97401 [xe] Xircom CreditCard Ethernet 10/100, a f [2006/05/17] www/97405 pav Motherboard f [2006/05/17] ports/97406 portmgr [PATCH] bsd.port.mk: ghostscript port det o [2006/05/17] bin/97407 /usr/share/misc/termcap overwritten by in o [2006/05/17] www/97408 www [patch] updates for www/en/myths.sgml o [2006/05/17] docs/97409 doc Incorrect command name in Kerberos sectio o [2006/05/18] kern/97458 [ath] ath driver hangs up system during r o [2006/05/18] java/97461 java Diablo JDK does not report Update level i o [2006/05/18] bin/97467 [patch] ftpd(8) has no way to specify soc o [2006/05/18] i386/97468 i386 [acpi] ACPI on ASUS A7V hangs on shutdown o [2006/05/18] usb/97472 usb [patch] add support for Olympus C150,D390 o [2006/05/18] ports/97476 sat New port: russian/tideup_mail Remove unsa o [2006/05/19] bin/97478 umount -f /card -> hardware-reset is need o [2006/05/19] ports/97480 lth [Port Update] audio/daapd to 0.2.4b o [2006/05/19] amd64/97489 amd64 nForce 410 ATA controller dma time out o [2006/05/19] kern/97494 [ntfs] Cannot access large file on NTFS v o [2006/05/19] ports/97497 ports-bugs audio/libtunepimp: libtunepimp.so neglect s [2006/05/19] bin/97498 [feature request] newfs(8) has no option o [2006/05/19] kern/97505 [procfs] file entry of procfs points to " o [2006/05/20] ports/97507 portmgr New category proposal: ports-mgmt - ports o [2006/05/20] ports/97508 aaron [NEW PORT] devel/ccrtp: Implementation of f [2006/05/20] ports/97511 mich UPDATE ports/audio amarok o [2006/05/20] usb/97512 usb add Motorola A41x/V32x USB phone support f [2006/05/20] bin/97513 umount: unmount of /card failed: Device b o [2006/05/21] ports/97544 sumikawa patch for net/zebra's ospfd snmp f [2006/05/21] ports/97545 pav Update net/pear-Net_Sieve to 1.1.3 f [2006/05/21] ports/97546 pav Update security/pear-Auth_SASL f [2006/05/21] ports/97547 ports-bugs sysutils/dar: dar needs an entry in UPDAT f [2006/05/21] ports/97548 itetcu [Maintainer Update] sysutils/kdar: mark i f [2006/05/21] ports/97551 itetcu Update port: graphics/blender-devel o [2006/05/21] ports/97568 danfe [UPDATE PATCH] x11-wm/wmii to version 3 o [2006/05/21] ports/97569 lioux Upgrade sysutils/knutclient to 0.8.6 and a [2006/05/21] ports/97579 delphij [patch] ports mail/spamd to reflect the p o [2006/05/22] ports/97588 ale lang/php5: Build failure on -CURRENT o [2006/05/22] ports/97598 tobez new port: devel/p5-UI-Dialog o [2006/05/22] kern/97609 multimedia [sound] Load Sound Module - VIA8233 - fai o [2006/05/22] ports/97620 joerg [update] devel/dwarfdump f [2006/05/22] ports/97622 miwi [patch] devel/gauche-sdl o [2006/05/22] kern/97624 sos [ata] [patch] enable SATA RAID on ASUS N4 o [2006/05/22] ports/97653 sergei [patch] databases/puredb o [2006/05/22] ports/97654 anholt [patch] games/enigma o [2006/05/23] ports/97672 clement www/apache22 BROKEN on FreeBSD 4 o [2006/05/23] ports/97673 kuriyama Update port: net-mgmt/net-snmp 5.2.2 -> 5 p [2006/05/23] conf/97697 matteo [PATCH] rc.conf - jail__exec_afterstar o [2006/05/23] sparc64/97707sparc64 mkskel.sh has bogus timestamp, causing bu o [2006/05/23] ports/97708 roam [patch]misc/bogosort o [2006/05/23] ports/97711 anholt [patch] graphics/driconf update to 0.9.0 o [2006/05/23] ports/97714 aaron [patch]lang/harbour o [2006/05/23] ports/97715 roam [patch] misc/histring o [2006/05/23] ports/97724 lioux [patch]multimedia/libdivxdecore-devel/ f [2006/05/23] ports/97725 mi [patch]graphics/libfpx o [2006/05/23] ports/97729 lioux [patch] multimedia/ldvd o [2006/05/23] ports/97730 lioux [patch]multimedia/libdivxdecore o [2006/05/23] ports/97732 markm [update]math/jacal o [2006/05/23] ports/97745 lioux [patch]net-p2p/mldonkey-sancho o [2006/05/23] ports/97746 lioux [patch]mldonkey-serverspy o [2006/05/23] ports/97750 lev [patch]games/xwelltris o [2006/05/24] ports/97767 girgen [PATCH] Some improvements over postgresql o [2006/05/24] ports/97773 sat [NEW PORT] russian/xpi-imagezoom Russian o [2006/05/24] ports/97778 sat [NEW PORT] russian/xpi-tabextensions Russ o [2006/05/24] kern/97786 [udf] [patch] fs/udf: incorrect timestamp o [2006/05/24] ports/97789 sat [NEW PORT] www/xpi-imglikeopera ImgLikeOp o [2006/05/24] ports/97794 sergei [patch] sysutils/installwatch f [2006/05/24] ports/97802 lawrance [patch] sysutils/rename f [2006/05/24] ports/97803 thierry New port: emulators/xhomer - Emulator for o [2006/05/24] ports/97818 roam [patch]net/magictun f [2006/05/24] ports/97834 pav [patch] science/bblimage o [2006/05/24] ports/97841 roam [patch]net/tcpcat o [2006/05/25] ports/97873 adamw games/ppracer: Fix build on 4.x; Use Berl o [2006/05/25] ports/97883 apache www/mod_bw 0.7 doesn't work on 4.x due to o [2006/05/25] ports/97894 lioux multimedia/linux-divx4linux: enable for a o [2006/05/25] www/97902 www Add us to the WWW list for ISPs please o [2006/05/25] ports/97931 portmgr [UPDATE] games/quake3-q3base: move to gam o [2006/05/25] ports/97933 ale unable to compile the port "mysql50-serve o [2006/05/25] ports/97934 jhay [update]net/p5-Net-SMPP o [2006/05/26] docs/97939 doc some mistake in man of amq(8) f [2006/05/26] ports/97940 mich Port update net/kiax o [2006/05/26] ports/97941 ijliao [PATCH] databases/dbh: update to 4.5.0 o [2006/05/26] usb/97948 usb [patch] CMOTECH CDMA USB modem support f [2006/05/26] ports/97955 ports-bugs [PATCH] news/inn-stable: update to 2.4.4- o [2006/05/26] ports/97958 ports-bugs update to net-mgmt/arpwatch f [2006/05/26] ports/97960 clsung [PATCH] chinese/libtabe: update to 0.2.6 f [2006/05/26] ports/97987 pav Maintainer Update: japanese/xyaku cleanup o [2006/05/27] ports/98006 aaron Update port: lang/fpc2 a [2006/05/27] docs/98009 dougb nslookup(8) man page is missing nslookup o [2006/05/27] kern/98015 [bfe] [patch] bfe(4): double free in erro o [2006/05/28] docs/98058 blackend Edit of scanner portion of Handbook Multi o [2006/05/28] ports/98062 perky Apache 2.0.58 with www/mod_python3 core d f [2006/05/28] ports/98066 itetcu [PATCH] editors/tamago: apply anthy patch o [2006/05/29] ports/98089 ports-bugs prepared to assume maintainership of germ f [2006/05/29] ports/98100 ports-bugs [Changing MAINTAINER] Taking ownership of f [2006/05/29] ports/98101 itetcu [repocopy] mail/rssyl --> mail/sylpheed-c o [2006/05/29] ports/98105 portmgr [patch] new feature: IA32_BINARY_PORT mac o [2006/05/29] ports/98113 aaron [new port] devel/libleaftag - Leaftag is o [2006/05/30] kern/98116 [kernel] Crash with sparse files and exec o [2006/05/30] ports/98118 aaron [new port] deskutils/tagutils : tagutils o [2006/05/30] docs/98129 doc older versions of the handbook not easy t o [2006/05/30] bin/98134 [patch] fwcontrol(8): MPEG2-TS/HDV suppor o [2006/05/30] ports/98159 joerg update devel/libdwarf and devel/dwarfdump s [2006/05/30] kern/98162 [feature request] AcerHK driver port need o [2006/05/30] kern/98171 acpi [acpi] ACPI 1304 / 0501 errors on Acer 50 f [2006/05/31] ports/98182 ports-bugs cad/brlcad is not installing the mged scr f [2006/05/31] www/98186 www bsd web site not working o [2006/05/31] ports/98205 ports-bugs (deskutils/taskjuggler) TaskJugglerUI cra o [2006/05/31] ports/98206 portmgr bsd.port.mk - whitespace and CHECKSUM_ALG a [2006/05/31] kern/98219 thompsa [pf] pf needs a way of matching on decaps o [2006/05/31] bin/98220 wpa_supplicant operation does not match d f [2006/05/31] ports/98222 ports-bugs port update comms/hylafax to 4.3.0 o [2006/05/31] www/98224 www Possibly add BSDPortal.org as a news reso f [2006/05/31] ports/98229 itetcu www/mod_musicindex needs -fPIC on amd64 o [2006/06/01] ports/98283 mharo [patch] security/sudo: fix `OME' instead o [2006/06/01] ports/98286 aaron Update port: sysutils/webjob 1.5.0 --> 1. f [2006/06/01] ports/98287 itetcu In port ports/sysutils/syslog-ng it is im o [2006/06/01] ports/98295 danfe [UPDATE] games/cleanq3: security patch, f o [2006/06/01] ports/98299 ports-bugs New port: japanese/citrix_ica o [2006/06/01] ports/98300 ports-bugs Udate port: sysutils/psgconf Version upda o [2006/06/01] ports/98307 ports-bugs New port: sysutils/p5-Sys-Filesystem Perl o [2006/06/01] ports/98320 mharo [PATCH] security/p5-Crypt-DSA: update to o [2006/06/01] ports/98325 mharo [PATCH] math/p5-Math-Pari: use gcc >= 3.2 o [2006/06/02] usb/98343 usb BBB reset failed errors with Creative Muv f [2006/06/02] docs/98344 linimon [patch] An update of the article "Choosin o [2006/06/02] amd64/98346 amd64 [kbd] caps lock and other keys are always f [2006/06/02] ports/98353 ports-bugs ipsec-tools fails to exchange keys betwee f [2006/06/02] ports/98364 ports-bugs [PATCH] net-mgmt/nagios-plugins: add seve o [2006/06/02] i386/98366 i386 [em] Intel PRO/1000 MT Dual PCI-X: simula o [2006/06/02] ports/98369 lth ifgraph port doesn't work out-of-box o [2006/06/02] ports/98371 mharo [PATCH] security/p5-Crypt-DSA: update to o [2006/06/02] ports/98373 johans update security/tor o [2006/06/02] bin/98374 column(1) can not work with lines that ha s [2006/06/02] misc/98383 [feature request] include the mt command o [2006/06/02] usb/98385 usb [patch] add support for libretto DVD Dock o [2006/06/02] kern/98388 [ata] FreeBSD 6.1 - WDC WD1200JS SATA II r [2006/06/02] misc/98403 ncvs [repocopy] src/sys/doc -> src/tools/kerne r [2006/06/02] misc/98405 ncvs [repocopy] parts of sysinstall -> src/usr o [2006/06/03] kern/98414 [libc] fts_read(3) disregards permissions o [2006/06/03] ports/98426 lawrance Upgrade graphics/openproducer port to lat f [2006/06/03] ports/98441 ports-bugs New port: multimedia/mplayer-devel Fast m o [2006/06/03] ports/98446 jkoshy [update] textproc/rxp: update to 1.4.4 o [2006/06/03] ports/98458 jylefort [PATCH] games/xpilot-ng-server: update to o [2006/06/03] ports/98459 obrien [PATCH] shells/bash o [2006/06/03] kern/98460 [kernel] [patch] fpu_clean_state() cannot o [2006/06/03] ports/98462 jylefort [update] shells/viewglob: update to 2.0.4 o [2006/06/04] ports/98473 marcus [NEW PORT] net-im/gaim-devel: Multi-proto o [2006/06/04] www/98474 www /pub/FreeBSD/doc/ja contains old document o [2006/06/04] kern/98477 [isofs] [patch] For big size of file of c o [2006/06/04] bin/98489 matteo [patch] usr.bin/top to display jail id o [2006/06/04] kern/98496 multimedia [snd_ich] some functions don't work in my f [2006/06/04] ports/98499 ports-bugs [PATCH] misc/libpri: update to 1.2.3 o [2006/06/04] bin/98500 [rpc] rpc.lockd(+statd) bind to any ip o [2006/06/04] kern/98504 multimedia [sound] Sound is distorted with SB Live 5 o [2006/06/04] ports/98508 lioux audio/liba52 does not work without librar f [2006/06/04] ports/98509 ports-bugs [patch] multimedia/totem, multimedia/tote f [2006/06/04] ports/98512 ports-bugs [patch] multimedia/transcode: update pkg- o [2006/06/05] ports/98517 ports-bugs deskutils/taskjuggler port does not build p [2006/06/05] kern/98529 glebius [netgraph] False "ng_generic_msg: number o [2006/06/05] ports/98537 kuriyama mail/p5-IMAP-Sieve fails PLAIN authentica o [2006/06/05] kern/98538 geom [geom] Kernel panic on ggate destroy o [2006/06/05] ports/98560 roam [PATCH] www/p5-WWW-Curl: update to 3.02 o [2006/06/06] ports/98565 portmgr [PATCH] Add PKGVERSION to bsd.port.mk f [2006/06/06] ports/98572 sat [PATCH] mail/linux-thunderbird: Disable a o [2006/06/06] bin/98577 dhclient(8): the link check by dhclient s o [2006/06/06] ports/98581 hq www/tomcat55 update, 5.5.12 -> 5.5.17 o [2006/06/06] ports/98583 ports-bugs New ports: jananese/scim-honoka and honok o [2006/06/06] ports/98590 lioux [FIX] ports rxvt-devel on amd64 crashes i o [2006/06/06] ports/98596 ports-bugs [patch] shell script to clean up ports wo o [2006/06/06] kern/98597 [netinet6] Bug in FreeBSD 6.1 IPv6 link-l o [2006/06/06] conf/98603 [PATCH] /etc/rc.d/ramdisk + ramdisk-own r f [2006/06/07] ports/98607 ports-bugs [PATCH] deskutils/ruby-alexandria: [pkg-p o [2006/06/07] ports/98613 eclipse [PATCH] java/eclipse: Problem with org.ec o [2006/06/07] ports/98614 knu [PATCH] Port databases/ruby-bdb does not a [2006/06/07] ports/98615 brooks [patch] net/globus4: fix test for the Pow o [2006/06/07] kern/98618 [libexpat] [patch] src/lib/libexpat is se o [2006/06/07] ports/98624 mharo [update] graphics/mapserver: Fix incorrec p [2006/06/07] bin/98625 maxim ypserv ignores the -n option (it always a f [2006/06/07] ports/98639 ports-bugs [PATCH] japanese/ja-edict-utf-8: update t o [2006/06/08] ports/98668 lioux ports/multimedia/tovid: change mplayer's o [2006/06/08] ports/98687 openoffice openoffice.org-2.0 ports "couldn't fetch" o [2006/06/08] bin/98693 [patch] top(1): Reduce NIS server loading f [2006/06/08] ports/98709 itetcu [PATCH] mail/dspam - ClamAV not supported o [2006/06/08] usb/98713 usb QUIRK: Rekam USB Camera o [2006/06/08] ports/98718 sem portversion misses some needed updates o [2006/06/08] ports/98729 clsung new port: devel/ruby-game A game-developm o [2006/06/08] ports/98731 portmgr add bsd.scons.mk to Mk/ o [2006/06/09] ports/98747 knu devel/ruby-gettext: update to 1.6.0 f [2006/06/09] ports/98753 aaron New port: sysutils/rdup A backup utility o [2006/06/09] ports/98757 ports-bugs New port: mail/squirrelmail-tmda-plugin t o [2006/06/09] docs/98759 doc [patch] sbp_targ(4) man page missing refe o [2006/06/09] ports/98768 ports-bugs [NEW PORT] net-im/jabber-pyaim-transport: o [2006/06/10] ports/98774 danfe [UPDATE] games/warsow: fix mouse problems o [2006/06/10] ports/98778 miwi [repocopy] www/dokuwiki -> www/dokuwiki-d f [2006/06/10] ports/98779 pav Updating Port: qSheff o [2006/06/10] ports/98782 aaron [PATCH] BasiliskII Upgrade o [2006/06/10] kern/98788 [syscons] [patch] Add sysctl to disallow o [2006/06/10] ports/98792 adamw [PATCH] audio/cmus: update to 2.0.2 o [2006/06/11] www/98798 www Our statistics page is out of date f [2006/06/11] ports/98800 ports-bugs Update port: sysutils/graveman to 0.3.12. o [2006/06/11] docs/98801 doc [patch] gmirror(8) and glabel(8) manpages o [2006/06/11] ports/98802 ports-bugs [PATCH] upgrade emulators/xmame 0.104 to o [2006/06/11] kern/98804 [ar] VIA V-RAID metadata mis-read o [2006/06/11] bin/98805 [new feature] [patch] ddate(1) for BSD o [2006/06/11] ports/98814 philip [MAINTAINER-UPDATE] sysutils/bacula-serve o [2006/06/11] conf/98815 [PATCH] Add euro symbol to pt_PT locale u r [2006/06/11] ports/98832 portmgr repocopy www/xpi-tablesort to www/xpi-tab o [2006/06/11] ports/98833 ports-bugs [maintainer update] devel/tigcc o [2006/06/11] ports/98834 dd textproc/syck: Update to 0.55 o [2006/06/11] ports/98835 dd textproc/py-syck: Update to 0.55 o [2006/06/11] ports/98837 aaron New port: misc/fcalc o [2006/06/12] docs/98842 doc misc requests for gdbe f [2006/06/12] ports/98844 ports-bugs [PATCH] net/libeXosip2: update to 2.2.3 o [2006/06/12] kern/98848 [bge] BGE is recognized as 1000baseSX but o [2006/06/12] bin/98860 [patch] mount_mfs(8): allow create md wit o [2006/06/12] ports/98868 demon [PATCH] devel/p5-Tree-Simple: update to 1 o [2006/06/12] kern/98873 des [libfetch] allow fetch(3) to force using f [2006/06/12] ports/98878 ports-bugs [upgrade/vulnerability fix] mail/courier f [2006/06/13] ports/98886 ports-bugs x11-clocks/wmclock: correct year display, o [2006/06/13] ports/98888 roam [PATCH] devel/p5-File-Append-TempFile: up o [2006/06/13] www/98894 www I could not browse the site in freebsd o [2006/06/13] ports/98897 marcus Ethereal Project changes the name "Wiresh o [2006/06/13] kern/98898 [pci] [patch] fix random sound problems i o [2006/06/13] ports/98909 portmgr [PATCH] bsd.port.mk: Extend DISTVERSION-> o [2006/06/13] bin/98911 getopt(1): getopt.c license issue f [2006/06/13] ports/98912 pav Patch for graphics/sane-backends to fix h o [2006/06/13] www/98913 remko We would like to submit our web hosting c o [2006/06/13] ports/98916 ports-bugs [NEW PORT] comms/o2sms f [2006/06/14] ports/98924 aaron [PATCH] textproc/p5-Excel-Template: updat o [2006/06/14] i386/98932 i386 [i386] [patch] Kernel compilation failed o [2006/06/14] ports/98935 clsung Update port: devel/ruby-rcov to 0.6.0 o [2006/06/14] docs/98941 doc Partitioning resize - only commercial pro o [2006/06/14] ports/98943 clement Apache dies on SIGSEGV in mod_php5 on squ o [2006/06/14] ports/98946 dougb [patch] xscreensaver and PAM support o [2006/06/14] ports/98949 openoffice editors/openoffice.org-2.0: Build fails w f [2006/06/14] ports/98960 jmelo [maintainer update] www/zope-epoz: MASTER o [2006/06/15] docs/98974 doc Missing tunables in loader(8) manpage r [2006/06/15] ports/98982 portmgr [repocopy] www/rt34 -> www/rt36 p [2006/06/15] usb/98983 matteo Hamlet eXagerate XURS232 USB-Serial not s o [2006/06/15] ports/98986 ports-bugs Update port: x11-toolkits/gtkada o [2006/06/15] ports/98989 miwi Update port: www/mediawiki (maintainer-up f [2006/06/15] ports/98995 aaron [PATCH] net/p5-POE-Component-Jabber: upda f [2006/06/16] ports/98997 itetcu [update port] net-mgmt/netams f [2006/06/16] ports/99002 aaron [PATCH] textproc/p5-POE-Filter-XML: updat o [2006/06/16] ports/99003 jmz [PATCH] lang/p5-Utils-F77: update to 1.15 f [2006/06/16] ports/99005 itetcu New port: x11-toolkits/gtkada-devel o [2006/06/16] docs/99007 doc [patch] misleading nat configuration info o [2006/06/16] ports/99012 jmz [PATCH] graphics/pgperl: update to 2.19 o [2006/06/16] kern/99017 sos [ata] [patch] FreeBSD versions above 5.3 f [2006/06/16] ports/99019 aaron [PATCH] graphics/p5-GD: update to 2.34 f [2006/06/16] ports/99023 aaron [PATCH] lang/p5-Error: update to 0.15.009 f [2006/06/16] ports/99025 aaron [PATCH] graphics/p5-Image-Size: update to o [2006/06/16] ports/99029 demon [PATCH] net/p5-Net-RawIP: update to 0.2 o [2006/06/16] ports/99030 demon [PATCH] misc/p5-I18N-Charset: update to 1 o [2006/06/16] ports/99033 ports-bugs New port: security/dns-proxy-tor resolves o [2006/06/16] ports/99034 ports-bugs New port: security/trans-proxy-tor a tran o [2006/06/16] ports/99035 ports-bugs New port: devel/tailor o [2006/06/16] www/99037 www DialogBlocks RAD tool for wxWidgets s [2006/06/16] i386/99039 i386 SATA timeouts on HP DL140 G2 o [2006/06/16] ports/99050 roam [patch] Update port ftp/curl to 7.15.4 o [2006/06/16] ports/99052 ports-bugs [NEW PORT] devel/google-perftools: high-p o [2006/06/16] ports/99053 ijliao [PATCH] net/p5-Frontier-RPC: update to 0. o [2006/06/16] ports/99055 kbyanc [PATCH] net/p5-Net-Radius: update to 1.44 o [2006/06/16] ports/99056 kuriyama [PATCH] japanese/p5-Jcode: update to 2.05 o [2006/06/16] ports/99057 kuriyama [PATCH] devel/p5-IO-KQueue: update to 0.3 o [2006/06/16] ports/99058 kuriyama [PATCH] converters/p5-JSON: update to 1.0 o [2006/06/16] ports/99059 kuriyama [PATCH] math/p5-Math-Vec: update to 0.040 o [2006/06/16] ports/99060 kuriyama [PATCH] databases/p5-Search-Namazu: updat o [2006/06/16] ports/99061 kuriyama [PATCH] ftp/p5-Net-FTP-Common: update to o [2006/06/16] ports/99062 itetcu New port: palm/pilot-link-devel developme o [2006/06/17] kern/99068 [linux] Linux emulator crashed by java, w o [2006/06/17] ports/99069 ports-bugs [NEW PORT] devel/pear-Date_Holidays: PEAR o [2006/06/17] ports/99070 ports-bugs ccmalloc: no backtraces on amd64 when com o [2006/06/18] kern/99090 [kbd] some keys don't work with kbdmux o [2006/06/18] ports/99091 gioria [PATCH] net/delegate: update to 9.2.2 o [2006/06/18] ports/99092 shaun [patch] devel/monotone update to 0.27 f [2006/06/18] ports/99100 shaun editors/nvi-perl broken o [2006/06/18] ports/99110 lev [PATCH] textproc/p5-XML-XUpdate-LibXML: u o [2006/06/18] ports/99111 sobomax asterisk shutdown doesn't kill mpg123 o [2006/06/18] ports/99117 lth [PATCH] textproc/p5-PPI: update to 1.115 o [2006/06/18] ports/99126 osa [PATCH] math/p5-Statistics-Lite: update t o [2006/06/18] ports/99131 stefan [MAINTAINER] Update multimedia/libtheora o [2006/06/19] ports/99134 roam [PATCH] audio/p5-Net-FreeDB: update to 0. o [2006/06/19] ports/99135 roam [PATCH] devel/p5-File-Append-TempFile: up f [2006/06/19] ports/99136 aaron [PATCH] devel/p5-ReadLine-Perl: update to o [2006/06/19] ports/99138 skv [PATCH] www/p5-Apache-Test: update to 1.2 f [2006/06/19] ports/99141 itetcu [PATCH] audio/musepack: portlint(1) fixes f [2006/06/19] ports/99145 itetcu [PATCH] audio/pd: portlint(1) fixes f [2006/06/19] ports/99151 itetcu [PATCH] audio/spiralsynthmodular: portlin f [2006/06/19] ports/99152 itetcu [PATCH] audio/tuneradio: portlint(1) fixe f [2006/06/19] ports/99163 itetcu [PATCH] polish/gadugadu OPTIONS fix o [2006/06/19] ports/99169 tobez [PATCH] www/p5-Jifty: update to 0.60616 o [2006/06/19] gnu/99173 [PATCH] replace gnu patch with a bsd-lice o [2006/06/19] ports/99175 stefan [PATCH] x11/xbindkeys_config run-depends o [2006/06/19] ports/99177 lev [ports/subversion] Added findutils as a d o [2006/06/19] ports/99179 sem Portupgrade: when STDIN is detected close o [2006/06/19] ports/99180 ports-bugs [new port] port deskutils/taskstep - php o [2006/06/19] kern/99183 [PATCH] Gvinum stylefix o [2006/06/19] www/99184 www Viewing HP-UX manpages with http://www.fr o [2006/06/19] kern/99186 [PATCH] Gvinum dumpconfig/setstate/stop i f [2006/06/19] ports/99190 clement rc.d & mac_portacl: Add ability in rc.d s o [2006/06/20] ports/99193 clsung textproc/srilm installation failed o [2006/06/20] kern/99200 [bluetooth] SMP-Kernel crashes reliably w o [2006/06/20] ports/99206 x11 x11-servers/XFree86-4-Server broken (make o [2006/06/20] ports/99207 ehaupt [MAINTAINER] math/asymptote: update to 1. o [2006/06/20] docs/99209 doc non working reference in FAQ about Change o [2006/06/20] ports/99213 ports-bugs [NEW PORT] mail/squirrelmail-newuser_wiz- o [2006/06/20] www/99214 www Add to Support List o [2006/06/20] docs/99215 doc Documentation change for sshd_config o [2006/06/20] kern/99216 [bfe] [patch] make bfe(4) always detect L o [2006/06/20] bin/99217 [patch] pam_ssh(8) waits for a wrong ssh- o [2006/06/21] ports/99234 ports-bugs [NEW PORT] mail/squirrelmail-secure_login o [2006/06/21] ports/99235 ports-bugs [PATCH] comms/linrad: update to 2.14 o [2006/06/21] ports/99244 shaun Update port: net/dosdetector o [2006/06/21] ports/99247 mat repocopy x11-toolkits/p5-Tcl-Tk to x11-to o [2006/06/21] ports/99248 shaun math/qtiplot: change maintainership and u o [2006/06/21] ports/99258 ports-bugs Update port devel/subclipse to latest rel f [2006/06/21] ports/99261 ports-bugs [PATCH] sysutils/fusefs-libs: update to 2 o [2006/06/21] ports/99268 ports-bugs [MAINTAINER] deskutils/superkaramba-lwp: f [2006/06/21] ports/99269 miwi [update] security/xmlsec1: update to 1.2. f [2006/06/21] ports/99271 miwi [update] security/fakeroot: update to 1.5 f [2006/06/21] ports/99272 miwi [update] graphics/q-graph: update to 1.6 f [2006/06/21] ports/99279 miwi [update] misc/detachtty: update to 9 o [2006/06/22] ports/99288 danfe Update port: games/nexuiz update to 2.0 o [2006/06/22] kern/99290 [ntfs] mount_ntfs ignorant of cluster siz f [2006/06/22] ports/99292 clement ldap-account-manager update to 1.0.2 f [2006/06/22] ports/99293 ports-bugs net/freeradius: Unknown module "eap" o [2006/06/22] ports/99294 lofi [PATCH][OPTIONS] multimedia/xvid options o [2006/06/22] www/99295 www we are a vendor developing a mail server f [2006/06/22] ports/99300 itetcu [NEW PORT] audio/fapg: Fast Audio Playlis o [2006/06/22] ports/99302 jdp [patch] net/cvsup options s [2006/06/22] ports/99303 itetcu sysutils/maint is too old r [2006/06/22] ports/99306 portmgr net/rwhois port is wrong package - need t o [2006/06/22] bin/99307 [patch] mount_nfs(8) incompatible with zV o [2006/06/22] ports/99308 ports-bugs [NEW PORT] devel/fpc-gconf: Free Pascal i o [2006/06/22] ports/99309 ports-bugs [NEW PORT] x11-toolkits/fpc-zvt: Free Pas o [2006/06/22] ports/99310 ports-bugs [NEW PORT] x11-toolkits/fpc-gnome: Free P o [2006/06/22] ports/99315 ports-bugs [MAINTAINER] lang/fpc-units: Added missin o [2006/06/22] ports/99317 ports-bugs [New port] security/p5-openxpki : Perl ba f [2006/06/22] ports/99318 itetcu [NEW PORT] audio/euphoria: XMMS2 GUI fron f [2006/06/22] ports/99321 pav maintainer-update: Update www/mod_frontpa f [2006/06/22] ports/99322 itetcu [net-mgmt/netams] rc.d script doesn't che o [2006/06/22] ports/99324 ports-bugs maintainer-change: take back maintainersh o [2006/06/22] www/99326 www Update www/en/projects/projects.sgml o [2006/06/22] ports/99327 ehaupt [MAINTAINER] devel/cgdb: fix typo o [2006/06/22] conf/99328 [patch] updates for src/share/examples/cv f [2006/06/22] ports/99329 ehaupt [NEW PORT] games/diameter: Arcade-style g o [2006/06/23] docs/99336 doc Unclear handbook wording about firewall_e o [2006/06/23] ports/99340 danfe games/qstat: Fix plist f [2006/06/23] ports/99342 shaun net/dimes: Fix plist o [2006/06/23] ports/99344 brooks www/pubcookie-login-server: Fix plist o [2006/06/23] ports/99351 ports-bugs [update]: x11-themes/kde-windeco-neos f [2006/06/23] ports/99352 aaron [PATCH] net/p5-Net-Delicious: update to 1 o [2006/06/23] ports/99353 ports-bugs [UPDATE PORT]: x11-themes/kde-windeco-cry o [2006/06/23] ports/99354 andreas [patch] print/apsfilter incorrectly speci o [2006/06/23] docs/99356 doc man page of sendmsg(2) does not include E o [2006/06/23] ports/99357 ports-bugs [NEW PORT] cad/gspiceui: GUI frontend for f [2006/06/23] ports/99359 itetcu [NEW PORT] x11/e17-module-bling: Composit f [2006/06/23] ports/99361 itetcu [NEW PORT] x11/e17-module-deskshow: E17 m o [2006/06/23] kern/99363 [smbfs] ïÛÉÂËÁ mount_smb o [2006/06/23] bin/99364 df(1) command shows negative space used f [2006/06/23] ports/99368 itetcu [NEW PORT] x11/e17-module-uptime: An e17 f [2006/06/23] ports/99372 stefan update games/ftjava o [2006/06/23] ports/99384 ports-bugs databases/mysq51-client WITH_PROC_SCOPE_P o [2006/06/23] ports/99389 skv [PATCH] databases/firebird-devel: Use USE o [2006/06/23] ports/99392 vanilla devel/eet fails to configure o [2006/06/23] ports/99394 itetcu mail/postfixadmin - add mysqli dependency o [2006/06/24] ports/99398 shaun [PATCH] audio/glame: [SUMMARIZE CHANGES] o [2006/06/24] ports/99399 ports-bugs [NEW PORT] cad/tclspice: Improved version o [2006/06/24] ports/99401 ports-bugs [Maintainer Update] sysutils/lineakd: Upd o [2006/06/24] ports/99402 ports-bugs [Maintainer Update] sysutils/lineak_defau o [2006/06/24] ports/99403 ports-bugs [Maintainer Update] sysutils/lineak_xosdp o [2006/06/24] ports/99404 ports-bugs [Maintainer Update] sysutils/lineak_kdepl o [2006/06/24] ports/99405 ports-bugs [New Port] sysutils/klineakconfig: kde-ut o [2006/06/24] ports/99406 ports-bugs [NEW PORT] devel/libmpcbdm: Standalone li f [2006/06/24] ports/99416 miwi [update] devel/xxl: update to 1.0.1 o [2006/06/24] ports/99417 ports-bugs [PATCH] devel/cvs2svn: update to 1.3.1 o [2006/06/24] usb/99419 usb external usb harddrive slow to accept o [2006/06/24] kern/99425 [ipv6] ping6 memory leak due to IPV6_RTHD o [2006/06/24] ports/99426 ports-bugs [Maintainer] mail/usendmail: define regre f [2006/06/24] ports/99432 itetcu [update port] security/rkhunter - added d o [2006/06/24] ports/99433 miwi [update port] www/coppermine - update to o [2006/06/24] ports/99434 stefan [update port] port dns/adns - update to 1 o [2006/06/25] ports/99438 miwi [maintainer] update www/phpbb to 2.0.21 o [2006/06/25] ports/99441 aaron [PATCH] devel/commoncpp: update to 1.4.2, o [2006/06/25] ports/99442 ports-bugs [patch] Update ports editors/scite and x1 o [2006/06/25] conf/99444 rc [patch] Enhancement: rc.subr could easily o [2006/06/25] ports/99445 ports-bugs [NEW PORT] www/p5-ClearSilver: Perl bindi o [2006/06/25] ports/99447 miwi [MAINTAINER] devel/rth: update to 1.5.5 o [2006/06/25] ports/99451 ports-bugs [new port] net-mgmt/ipacco - Web based to o [2006/06/25] ports/99453 ports-bugs [maintainer] multimedia/kbtv: update to 1 o [2006/06/25] ports/99455 pirzyk [PATCH] sysutils/p5-File-Stat-Bits: updat o [2006/06/25] ports/99456 pirzyk [PATCH] sysutils/p5-Filesys-Df: update to f [2006/06/25] ports/99457 aaron [PATCH] devel/p5-Object-InsideOut: update f [2006/06/25] ports/99458 aaron [PATCH] devel/p5-CPANPLUS: update to 0.07 f [2006/06/25] ports/99463 ports-bugs pkg-plist problem on multimedia/transcode o [2006/06/25] kern/99464 [sysctl] 'sysctl -a' panics at dev2udev o [2006/06/25] ports/99467 joerg [UPDATE] devel/libbfd: remove BROKEN sinc f [2006/06/26] ports/99468 ports-bugs [PATCH] cad/libgeda update f [2006/06/26] ports/99469 ports-bugs [PATCH] cad/geda-symbols update o [2006/06/26] ports/99474 ports-bugs [MAINTAINER] www/fluxcms: update to 1.4.0 f [2006/06/26] ports/99476 ports-bugs [PATCH] cad/gschem update f [2006/06/26] ports/99477 ports-bugs [PATCH] cad/gnetlist update f [2006/06/26] ports/99478 ports-bugs [PATCH] cad/geda-utils update f [2006/06/26] ports/99479 ports-bugs [PATCH] cad/geda-symcheck update o [2006/06/26] ports/99480 ports-bugs [NEW PORT] cad/gattrib: GEDA's attribute o [2006/06/26] ports/99481 ports-bugs [NEW PORT] cad/geda-projectmanager: The g f [2006/06/26] ports/99482 ports-bugs [PATCH] cad/geda update o [2006/06/26] ports/99483 mat [patch][maintainer-update] irc/ircservice o [2006/06/26] i386/99485 i386 Disk IO Causes mplayer To Drop Frames o [2006/06/26] ports/99486 ports-bugs [MAINTAINER-UPDATE] sysutils/bacula-serve 3212 problems total. From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 26 12:11:20 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 111DA16A40E for ; Mon, 26 Jun 2006 12:11:20 +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 3AC8743DAF for ; Mon, 26 Jun 2006 12: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 k5QCAMIP049401 for ; Mon, 26 Jun 2006 12: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 k5QCAMgZ049400; Mon, 26 Jun 2006 12:10:22 GMT (envelope-from gnats) Resent-Date: Mon, 26 Jun 2006 12:10:22 GMT Resent-Message-Id: <200606261210.k5QCAMgZ049400@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, Jordi Haarman Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2521B16A575 for ; Mon, 26 Jun 2006 12:08:19 +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 F37F9446BD for ; Mon, 26 Jun 2006 11:31:56 +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 k5QBVWDL089288 for ; Mon, 26 Jun 2006 11:31:32 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id k5QBVWOL089278; Mon, 26 Jun 2006 11:31:32 GMT (envelope-from nobody) Message-Id: <200606261131.k5QBVWOL089278@www.freebsd.org> Date: Mon, 26 Jun 2006 11:31:32 GMT From: Jordi Haarman To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: misc/99489: New port:devel/py-simpletal 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 12:11:20 -0000 >Number: 99489 >Category: misc >Synopsis: New port:devel/py-simpletal >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jun 26 12:10:21 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Jordi Haarman >Release: >Organization: Synantics >Environment: FreeBSD angelite 6.0-RELEASE-p5 FreeBSD 6.0-RELEASE-p5 #0: Tue Mar 21 14:13:31 CET 2006 jhaarman@estro.adam.synantics.net:/usr/obj/usr/src/sys/freebsd60 i386 >Description: >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # . # ./distinfo # ./Makefile # ./port # ./pkg-descr # ./pkg-plist # echo c - . mkdir -p . > /dev/null 2>&1 echo x - ./distinfo sed 's/^X//' >./distinfo << 'END-of-./distinfo' XMD5 (SimpleTAL-4.1.tar.gz) = 16c5673382967310b336c68591ae6786 XSHA256 (SimpleTAL-4.1.tar.gz) = b613282c0b5690cd038a6a4c2bac02f4bf0130f4002e64c7c7f414e3a9340b55 XSIZE (SimpleTAL-4.1.tar.gz) = 95813 END-of-./distinfo echo x - ./Makefile sed 's/^X//' >./Makefile << 'END-of-./Makefile' X# New ports collection makefile for: py-simpletal X# Date created: 26 June 2006 X# Whom: Jordi Haarman X# X# $FreeBSD$ X# X XPORTNAME= simpletal XPORTVERSION= 4.1 XCATEGORIES= devel textproc www python XMASTER_SITES= http://www.owlfish.com/software/simpleTAL/downloads/ XPKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} XDISTNAME= SimpleTAL-${PORTVERSION} X XMAINTAINER= ports@FreeBSD.org XCOMMENT= Stand alone TAL Python implementation to power \ X HTML & XML templates X XUSE_PYTHON= yes XUSE_PYDISTUTILS=yes X X.include END-of-./Makefile echo x - ./port sed 's/^X//' >./port << 'END-of-./port' X# This is a shell archive. Save it in a file, remove anything before X# this line, and then unpack it by entering "sh file". Note, it may X# create directories; files and directories will be owned by you and X# have default permissions. X# X# This archive contains: X# X# . X# ./distinfo X# ./Makefile X# ./port X# ./pkg-descr X# ./pkg-plist X# Xecho c - . Xmkdir -p . > /dev/null 2>&1 Xecho x - ./distinfo Xsed 's/^X//' >./distinfo << 'END-of-./distinfo' XXMD5 (SimpleTAL-4.1.tar.gz) = 16c5673382967310b336c68591ae6786 XXSHA256 (SimpleTAL-4.1.tar.gz) = b613282c0b5690cd038a6a4c2bac02f4bf0130f4002e64c7c7f414e3a9340b55 XXSIZE (SimpleTAL-4.1.tar.gz) = 95813 XEND-of-./distinfo Xecho x - ./Makefile Xsed 's/^X//' >./Makefile << 'END-of-./Makefile' XX# New ports collection makefile for: py-simpletal XX# Date created: 26 June 2006 XX# Whom: Jordi Haarman XX# XX# $FreeBSD$ XX# XX XXPORTNAME= simpletal XXPORTVERSION= 4.1 XXCATEGORIES= devel textproc www python XXMASTER_SITES= http://www.owlfish.com/software/simpleTAL/downloads/ XXPKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} XXDISTNAME= SimpleTAL-${PORTVERSION} XX XXMAINTAINER= ports@FreeBSD.org XXCOMMENT= Stand alone TAL Python implementation to power \ XX HTML & XML templates XX XXUSE_PYTHON= yes XXUSE_PYDISTUTILS=yes XX XX.include XEND-of-./Makefile Xecho x - ./port Xsed 's/^X//' >./port << 'END-of-./port' END-of-./port echo x - ./pkg-descr sed 's/^X//' >./pkg-descr << 'END-of-./pkg-descr' XSimpleTAL is a stand alone Python implementation of the TAL, TALES and METAL Xspecifications used in Zope to power HTML and XML templates. SimpleTAL is an Xidependent implementation of TAL; there are no dependencies on Zope nor is any Xof the Zope work re-used. X XWWW: http://www.owlfish.com/software/simpleTAL/ END-of-./pkg-descr echo x - ./pkg-plist sed 's/^X//' >./pkg-plist << 'END-of-./pkg-plist' X%%PYTHON_SITELIBDIR%%/simpletal/DummyLogger.py X%%PYTHON_SITELIBDIR%%/simpletal/DummyLogger.pyc X%%PYTHON_SITELIBDIR%%/simpletal/DummyLogger.pyo X%%PYTHON_SITELIBDIR%%/simpletal/FixedHTMLParser.py X%%PYTHON_SITELIBDIR%%/simpletal/FixedHTMLParser.pyc X%%PYTHON_SITELIBDIR%%/simpletal/FixedHTMLParser.pyo X%%PYTHON_SITELIBDIR%%/simpletal/__init__.py X%%PYTHON_SITELIBDIR%%/simpletal/__init__.pyc X%%PYTHON_SITELIBDIR%%/simpletal/__init__.pyo X%%PYTHON_SITELIBDIR%%/simpletal/sgmlentitynames.py X%%PYTHON_SITELIBDIR%%/simpletal/sgmlentitynames.pyc X%%PYTHON_SITELIBDIR%%/simpletal/sgmlentitynames.pyo X%%PYTHON_SITELIBDIR%%/simpletal/simpleElementTree.py X%%PYTHON_SITELIBDIR%%/simpletal/simpleElementTree.pyc X%%PYTHON_SITELIBDIR%%/simpletal/simpleElementTree.pyo X%%PYTHON_SITELIBDIR%%/simpletal/simpleTAL.py X%%PYTHON_SITELIBDIR%%/simpletal/simpleTAL.pyc X%%PYTHON_SITELIBDIR%%/simpletal/simpleTAL.pyo X%%PYTHON_SITELIBDIR%%/simpletal/simpleTALES.py X%%PYTHON_SITELIBDIR%%/simpletal/simpleTALES.pyc X%%PYTHON_SITELIBDIR%%/simpletal/simpleTALES.pyo X%%PYTHON_SITELIBDIR%%/simpletal/simpleTALUtils.py X%%PYTHON_SITELIBDIR%%/simpletal/simpleTALUtils.pyc X%%PYTHON_SITELIBDIR%%/simpletal/simpleTALUtils.pyo X@dirrm %%PYTHON_SITELIBDIR%%/simpletal/ END-of-./pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 26 14:33:49 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 5D6BD16A400; Mon, 26 Jun 2006 14:33:49 +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 167E743DE0; Mon, 26 Jun 2006 14:33:49 +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 k5QEXmnA059843; Mon, 26 Jun 2006 14:33:48 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5QEXmV3059839; Mon, 26 Jun 2006 14:33:48 GMT (envelope-from linimon) Date: Mon, 26 Jun 2006 14:33:48 GMT From: Mark Linimon Message-Id: <200606261433.k5QEXmV3059839@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/99489: New port: devel/py-simpletal 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 14:33:49 -0000 Old Synopsis: New port:devel/py-simpletal New Synopsis: New port: devel/py-simpletal Class-Changed-From-To: sw-bug->change-request Class-Changed-By: linimon Class-Changed-When: Mon Jun 26 14:33:16 UTC 2006 Class-Changed-Why: Make this a ports PR. Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Mon Jun 26 14:33:16 UTC 2006 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=99489 From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 26 17:39:10 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 CF0A416AADF; Mon, 26 Jun 2006 17:39:10 +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 A721F448E0; Mon, 26 Jun 2006 17:09:59 +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 k5QH9qQm070206; Mon, 26 Jun 2006 17:09:52 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5QH9qMP070202; Mon, 26 Jun 2006 17:09:52 GMT (envelope-from linimon) Date: Mon, 26 Jun 2006 17:09:52 GMT From: Mark Linimon Message-Id: <200606261709.k5QH9qMP070202@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/99408: problems with ppp and arp 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 17:39:11 -0000 Synopsis: problems with ppp and arp Responsible-Changed-From-To: freebsd-i386->freebsd-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Mon Jun 26 17:09:39 UTC 2006 Responsible-Changed-Why: This does not sound i386-specific. http://www.freebsd.org/cgi/query-pr.cgi?pr=99408 From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 26 18:43: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 4BE8416A40D for ; Mon, 26 Jun 2006 18:43:13 +0000 (UTC) (envelope-from ienchev@kytex.bg) Received: from kytex.bg (s001.kytex.bg [62.176.74.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5981345698 for ; Mon, 26 Jun 2006 15:57:08 +0000 (GMT) (envelope-from ienchev@kytex.bg) Received: from webmail.kytex.bg ([127.0.0.1]) by kytex.bg with esmtp; Mon, 26 Jun 2006 18:56:54 +0300 Received: from 213.91.244.52 (SquirrelMail authenticated user ienchev) by webmail.kytex.bg with HTTP; Mon, 26 Jun 2006 18:56:54 +0300 (EEST) Message-ID: <1202.213.91.244.52.1151337414.squirrel@webmail.kytex.bg> Date: Mon, 26 Jun 2006 18:56:54 +0300 (EEST) From: ienchev@kytex.bg To: freebsd-bugs@FreeBSD.org User-Agent: SquirrelMail/1.4.5 Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) Importance: Normal X-BitDefender-SpamStamp: 1.1.4 049000040111 X-BitDefender-Scanner: Clean, Agent: BitDefender Courier MTA Agent 1.6.2 on s001.kytex.bg X-Mime-Autoconverted: from 8bit to 7bit by courier 0.45 Cc: Subject: fatal trap 12 on 2xOpteron and Arima SW310 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 18:43:13 -0000 Hello to everyone, I am having a serious problem not even beeing able to install FreeBSD 6.1 on this new serever rig. Here is the hardware configuration and the kernel error message. I am using original FreeBSD 6.1 i386 images download from ftp.freebsd.org The hardware setup is: Arima SW310 AMD Opteron 270 - Dual Core 2.0Ghz 1GB Kingston ECC Registered 400Mhz Memory No additional hardware installed in the server. Problem is I can not even get through the boot process of the CD. After the loader prompt when the OS starts booting it crashes immediately with the following message. Fatal trap 12: page fault while in kernel mode fault virtual address = 0x5a fault code = supervisor read, page not present instruction pointer = 0x20:0xc07b85cb stack pointer = 0x28:0xc1020bd0 frame pointer = 0x28:0xc1020c9c code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 0 () trap number = 12 panic: page fault Uptime: 1s On a second note if i disable ACPI form the loader prompt the boot process gets further but crashes again with the following error. Fatal trap 9: general protection fault while in kernel mode instruction pointer = 0x70:0x2d10 stack pointer = 0x28:0xf70 frame pointer = 0x28:0xfc0 code segment = base 0xc00f0000, limit 0xffff, type 0x1b = DPL 0, pres 1, def32 0, gran 0 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 0 (swapper) trap number = 9 panic: general protection fault Uptime: 1s Any ideas of what might be causing the problem are highly appreciated. The BIOS version of the MB is up to date. If there is any other info i can provide you with please ask. Again this is off of the boot cd so i do not have a crash dump. I will be trying the amd64 version later tonight - can that be the problem? Regards: Ivan Georgiev From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 26 19:40:49 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 76C0F16A70F for ; Mon, 26 Jun 2006 19:40:49 +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 ACC60451C9 for ; Mon, 26 Jun 2006 19:00:41 +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 k5QJ0fNs078171 for ; Mon, 26 Jun 2006 19:00:41 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5QJ0fLj078170; Mon, 26 Jun 2006 19:00:41 GMT (envelope-from gnats) Date: Mon, 26 Jun 2006 19:00:41 GMT Message-Id: <200606261900.k5QJ0fLj078170@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: James Juran Cc: Subject: Re: kern/98858: [kernel] [patch] Local denial of service (mbuf exhaustion) via setsockopt() X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: James Juran List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jun 2006 19:40:49 -0000 The following reply was made to PR kern/98858; it has been noted by GNATS. From: James Juran To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/98858: [kernel] [patch] Local denial of service (mbuf exhaustion) via setsockopt() Date: Mon, 26 Jun 2006 09:35:04 -0400 I've confirmed that HEAD as of June 23 has this issue fixed. -- James Juran Senior Secure Systems Analyst XTS-400 Operating Systems BAE Systems Information Technology James.Juran@baesystems.com (703) 563-8081 From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 26 20:14:51 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 2242A16A5F2; Mon, 26 Jun 2006 20:14:51 +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 66BE543DC8; Mon, 26 Jun 2006 20:13:29 +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 k5QKDTnW082213; Mon, 26 Jun 2006 20:13:29 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5QKDTMa082209; Mon, 26 Jun 2006 20:13:29 GMT (envelope-from linimon) Date: Mon, 26 Jun 2006 20:13:29 GMT From: Mark Linimon Message-Id: <200606262013.k5QKDTMa082209@freefall.freebsd.org> To: James.Juran@baesystems.com, linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/98858: [kernel] [patch] Local denial of service (mbuf exhaustion) via setsockopt() 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 20:14:51 -0000 Synopsis: [kernel] [patch] Local denial of service (mbuf exhaustion) via setsockopt() State-Changed-From-To: feedback->closed State-Changed-By: linimon State-Changed-When: Mon Jun 26 20:13:04 UTC 2006 State-Changed-Why: Submitter confirms the patch fixed the problem. http://www.freebsd.org/cgi/query-pr.cgi?pr=98858 From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 26 22:32:53 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 EF0E216A40F for ; Mon, 26 Jun 2006 22:32:52 +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 8BFE343D68 for ; Mon, 26 Jun 2006 22:31:25 +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 k5QMUReH093898 for ; Mon, 26 Jun 2006 22:30:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5QMURGR093897; Mon, 26 Jun 2006 22:30:27 GMT (envelope-from gnats) Resent-Date: Mon, 26 Jun 2006 22:30:27 GMT Resent-Message-Id: <200606262230.k5QMURGR093897@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, Craig Leres Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2802116A404 for ; Mon, 26 Jun 2006 22:24:19 +0000 (UTC) (envelope-from leres@ee.lbl.gov) Received: from fun.ee.lbl.gov (fun.ee.lbl.gov [131.243.1.81]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89DD844810 for ; Mon, 26 Jun 2006 22:24:11 +0000 (GMT) (envelope-from leres@ee.lbl.gov) Received: from fun.ee.lbl.gov (localhost [127.0.0.1]) by fun.ee.lbl.gov (8.13.7/8.13.7) with ESMTP id k5QMOBos015436 for ; Mon, 26 Jun 2006 15:24:11 -0700 (PDT) Received: from fun.ee.lbl.gov (leres@localhost) by fun.ee.lbl.gov (8.13.7/8.13.7/Submit) with ESMTP id k5QMOBgT015433 for ; Mon, 26 Jun 2006 15:24:11 -0700 (PDT) Message-Id: <200606262224.k5QMOBgT015433@fun.ee.lbl.gov> Date: Mon, 26 Jun 2006 15:24:11 -0700 From: Craig Leres To: To: ; X-Send-Pr-Version: 3.113 Cc: Subject: kern/99500: [netgraph] [patch] netgraph doesn't honor the monitor interface flag 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 22:32:53 -0000 >Number: 99500 >Category: kern >Synopsis: [netgraph] [patch] netgraph doesn't honor the monitor interface flag >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jun 26 22:30:26 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Craig Leres >Release: FreeBSD 6.1-RELEASE i386 >Organization: Lawrence Berkeley National Laboratory >Environment: fox 128 % uname -a FreeBSD fox.ee.lbl.gov 6.1-RELEASE FreeBSD 6.1-RELEASE #3: Tue Jun 20 11:50:33 PDT 2006 leres@fox.ee.lbl.gov:/usr/src/6.1-RELEASE/sys/i386/compile/LBLSMP i386 >Description: When using netgraph to "bond" two syskonnect gige interfaces together for a packet capture application, we see output errors on the pseudo interface that is the sum of the number of packets input on the two syskonnect NICs. Examination of the code reveals that this is because the packets cannot be transmitted out the pseudo interface. >How-To-Repeat: This is our setup: kldload ng_ether ifconfig sk0 promisc -arp up ifconfig sk1 promisc -arp up ngctl mkpeer . eiface hook ether ngctl mkpeer ngeth0: one2many lower one ngctl connect sk0: ngeth0:lower lower many0 ngctl connect sk1: ngeth0:lower lower many1 ifconfig ngeth0 -arp monitor up >Fix: The appended patch causes netgraph to check the monitor bit and discard the packet if it's set; it also increments the input packet counter (which perhaps it should always do?) I suspect there are other places in netgraph where this should be done. =================================================================== RCS file: netgraph/RCS/ng_eiface.c,v retrieving revision 1.1 diff -c -r1.1 netgraph/ng_eiface.c *** netgraph/ng_eiface.c 2006/06/26 21:56:36 1.1 --- netgraph/ng_eiface.c 2006/06/26 22:14:40 *************** *** 25,31 **** * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * ! * $FreeBSD: src/sys/netgraph/ng_eiface.c,v 1.32.2.4 2006/02/14 06:21:47 ru Exp $ */ #include --- 25,31 ---- * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * ! * $FreeBSD: src/sys/netgraph/ng_eiface.c,v 1.32.2.4+ 2006/02/14 06:21:47 ru Exp $ */ #include *************** *** 233,238 **** --- 233,244 ---- * XXX is this safe? locking? */ BPF_MTAP(ifp, m); + + if (ifp->if_flags & IFF_MONITOR) { + ifp->if_ipackets++; + m_freem(m); + continue; + } /* * Send packet; if hook is not connected, mbuf will get >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 26 22:33:23 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 101F316A409; Mon, 26 Jun 2006 22:33:23 +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 1CB1643E3E; Mon, 26 Jun 2006 22:32:58 +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 k5QMW8DE095217; Mon, 26 Jun 2006 22:32:08 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5QMW8eV095213; Mon, 26 Jun 2006 22:32:08 GMT (envelope-from linimon) Date: Mon, 26 Jun 2006 22:32:08 GMT From: Mark Linimon Message-Id: <200606262232.k5QMW8eV095213@freefall.freebsd.org> To: James.Juran@baesystems.com, linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/98858: [kernel] [patch] Local denial of service (mbuf exhaustion) via setsockopt() 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 22:33:23 -0000 Synopsis: [kernel] [patch] Local denial of service (mbuf exhaustion) via setsockopt() State-Changed-From-To: closed->patched State-Changed-By: linimon State-Changed-When: Mon Jun 26 22:31:52 UTC 2006 State-Changed-Why: Not MFCed yet. http://www.freebsd.org/cgi/query-pr.cgi?pr=98858 From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 26 22:50:26 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 B6CCB16A400 for ; Mon, 26 Jun 2006 22:50:26 +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 1C54343D7B for ; Mon, 26 Jun 2006 22:50:26 +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 k5QMoP69096368 for ; Mon, 26 Jun 2006 22:50:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5QMoPNl096367; Mon, 26 Jun 2006 22:50:25 GMT (envelope-from gnats) Date: Mon, 26 Jun 2006 22:50:25 GMT Message-Id: <200606262250.k5QMoPNl096367@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Thomas Schweikle 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: Thomas Schweikle List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jun 2006 22:50:26 -0000 The following reply was made to PR kern/99473; it has been noted by GNATS. From: Thomas Schweikle To: bug-followup@FreeBSD.org Cc: tps@vr-web.de Subject: Re: kern/99473: FreeBSD Kernel 4.11 does not compile Date: Tue, 27 Jun 2006 00:49:02 +0200 (CEST) > RELENG_4 GENERIG builds OK. > Could you please try again from the > pristine environment (updated src tree, > empty /usr/obj, empty /etc/make.conf)? Tried that now too. No change. Latest checkout does not compile, missing module subdirectory bce. From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 26 23:10: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 7EC3016A402 for ; Mon, 26 Jun 2006 23:10: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 98B2043D45 for ; Mon, 26 Jun 2006 23:10:28 +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 k5QNASt5097660 for ; Mon, 26 Jun 2006 23:10:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5QNAS82097659; Mon, 26 Jun 2006 23:10:28 GMT (envelope-from gnats) Date: Mon, 26 Jun 2006 23:10:28 GMT Message-Id: <200606262310.k5QNAS82097659@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 23:10:30 -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: Tue, 27 Jun 2006 03:05:48 +0400 (MSD) On Mon, 26 Jun 2006, 22:50-0000, Thomas Schweikle wrote: > The following reply was made to PR kern/99473; it has been noted by GNATS. > > From: Thomas Schweikle > To: bug-followup@FreeBSD.org > Cc: tps@vr-web.de > Subject: Re: kern/99473: FreeBSD Kernel 4.11 does not compile > Date: Tue, 27 Jun 2006 00:49:02 +0200 (CEST) > > > RELENG_4 GENERIG builds OK. > > Could you please try again from the > > pristine environment (updated src tree, > > empty /usr/obj, empty /etc/make.conf)? > > Tried that now too. No change. Latest checkout does not compile, > missing module subdirectory bce. Can't believe that :-) Remove the whole src tree, cvsup from the cvsup5.ru.freebsd.org, remove obj tree, make buildworld buildkernel __MAKE_CONF=/dev/null \ KERNCONF="your config". Please show your kernel config file also. -- Maxim Konovalov From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 27 01:20:17 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 CDFBC16A403 for ; Tue, 27 Jun 2006 01:20: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 4ABA14447B for ; Tue, 27 Jun 2006 01:20:17 +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 k5R1KHiK005561 for ; Tue, 27 Jun 2006 01:20:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5R1KHbm005557; Tue, 27 Jun 2006 01:20:17 GMT (envelope-from gnats) Resent-Date: Tue, 27 Jun 2006 01:20:17 GMT Resent-Message-Id: <200606270120.k5R1KHbm005557@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, Arseny Nasokin Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 85CCD16A400 for ; Tue, 27 Jun 2006 01:13:41 +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 4A7B34447C for ; Tue, 27 Jun 2006 01:13:41 +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 k5R1DfCC090369 for ; Tue, 27 Jun 2006 01:13:41 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id k5R1Dfap090367; Tue, 27 Jun 2006 01:13:41 GMT (envelope-from nobody) Message-Id: <200606270113.k5R1Dfap090367@www.freebsd.org> Date: Tue, 27 Jun 2006 01:13:41 GMT From: Arseny Nasokin To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: misc/99509: [PATCH][bsd.port.mk] move USE_OPENSSL to post section X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jun 2006 01:20:17 -0000 >Number: 99509 >Category: misc >Synopsis: [PATCH][bsd.port.mk] move USE_OPENSSL to post section >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Jun 27 01:20:16 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Arseny Nasokin >Release: FreeBSD 7.0-CURRENT >Organization: Moscow State University >Environment: >Description: Reason of it: too many ports want use OpenSSL optionally >How-To-Repeat: >Fix: Index: bsd.port.mk =================================================================== RCS file: /home/ncvs/ports/Mk/bsd.port.mk,v retrieving revision 1.535 diff -r1.535 bsd.port.mk 1363,1366d1362 < .if defined(USE_OPENSSL) < .include "${PORTSDIR}/Mk/bsd.openssl.mk" < .endif < 1524a1521,1524 > .if defined(USE_OPENSSL) > .include "${PORTSDIR}/Mk/bsd.openssl.mk" > .endif > >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 27 02:10:34 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 BBC4E16A4A0 for ; Tue, 27 Jun 2006 02:10:34 +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 E591643D68 for ; Tue, 27 Jun 2006 02:10:20 +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 k5R2AKcg008976 for ; Tue, 27 Jun 2006 02:10:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5R2AKkP008975; Tue, 27 Jun 2006 02:10:20 GMT (envelope-from gnats) Resent-Date: Tue, 27 Jun 2006 02:10:20 GMT Resent-Message-Id: <200606270210.k5R2AKkP008975@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, Cristopher Atienza Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 51B0716A407 for ; Tue, 27 Jun 2006 02:01:50 +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 DDD8143D78 for ; Tue, 27 Jun 2006 02:01:45 +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 k5R21jOd007838 for ; Tue, 27 Jun 2006 02:01:45 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id k5R21jkF007837; Tue, 27 Jun 2006 02:01:45 GMT (envelope-from nobody) Message-Id: <200606270201.k5R21jkF007837@www.freebsd.org> Date: Tue, 27 Jun 2006 02:01:45 GMT From: Cristopher Atienza To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: misc/99515: /usr/local/etc/rc.d script files won't load during bootup via Diskless X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jun 2006 02:10:34 -0000 >Number: 99515 >Category: misc >Synopsis: /usr/local/etc/rc.d script files won't load during bootup via Diskless >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Jun 27 02:10:19 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Cristopher Atienza >Release: FreeBSD 6.1 Release >Organization: >Environment: FreeBSD latitude 6.1-RELEASE FreeBSD 6.1-RELEASE #0: Fri Jun 23 11:11:04 PHT 2006 cfa@hp.decorp.com.ph:/usr/src/sys/i386/compile/CUSTOM i386 >Description: I have FreeBSD 6.1 release diskless server serving 10 Diskless client machines same version from the server. The problem is that when the diskless client bootup all the script on /usr/local/etc/rc.d would not load properly without any error messages. Why is it like that while the diskless server loaded all the script on /usr/local/etc/rc.d. btw: I have also several machines running on FreeBSD 6.1 release like laptops and desktops without any problem on bootup all the script are being loaded properly. Here are the following script on my /usr/local/etc/rc.d. 000.compat4x 000.compat5x 000.grass.sh 000.wine.sh cupsd dbus hylafax.sh.sample mdnsresponder.sh rsyncd samba.sh note: I have entered the following lines to my /etc/rc.conf file. compat4x_enable="YES" compat5x_enable="YES" cupsd_enable="YES" samba_enable="YES" dbus_enable="YES" others: I have notice that booting from diskless even usbd_enable="YES" won't work but as I have said booting from local no problem at all. What is the reason behind this? from my FreeBSD 6.0 release before I have no problem like this. regards, cris >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 27 02:29:25 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 3E94916A403; Tue, 27 Jun 2006 02:29:25 +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 BD00E43D6A; Tue, 27 Jun 2006 02:29:23 +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 k5R2TNc1009846; Tue, 27 Jun 2006 02:29:23 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5R2TNo6009842; Tue, 27 Jun 2006 02:29:23 GMT (envelope-from linimon) Date: Tue, 27 Jun 2006 02:29:23 GMT From: Mark Linimon Message-Id: <200606270229.k5R2TNo6009842@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, portmgr@FreeBSD.org Cc: Subject: Re: ports/99509: [PATCH][bsd.port.mk] move USE_OPENSSL to post section X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jun 2006 02:29:25 -0000 Synopsis: [PATCH][bsd.port.mk] move USE_OPENSSL to post section Responsible-Changed-From-To: freebsd-bugs->portmgr Responsible-Changed-By: linimon Responsible-Changed-When: Tue Jun 27 02:28:50 UTC 2006 Responsible-Changed-Why: Make this a ports PR and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=99509 From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 27 06:20: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 0AABD16A404 for ; Tue, 27 Jun 2006 06:20: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 EA72643D45 for ; Tue, 27 Jun 2006 06:20:20 +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 k5R6KKsM029893 for ; Tue, 27 Jun 2006 06:20:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5R6KK7p029892; Tue, 27 Jun 2006 06:20:20 GMT (envelope-from gnats) Resent-Date: Tue, 27 Jun 2006 06:20:20 GMT Resent-Message-Id: <200606270620.k5R6KK7p029892@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, Bartek Siebab Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 367F716A513 for ; Tue, 27 Jun 2006 06:12:39 +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 1565244456 for ; Tue, 27 Jun 2006 05:52:32 +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 k5R5qVW1008540 for ; Tue, 27 Jun 2006 05:52:31 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id k5R5qVqZ008539; Tue, 27 Jun 2006 05:52:31 GMT (envelope-from nobody) Message-Id: <200606270552.k5R5qVqZ008539@www.freebsd.org> Date: Tue, 27 Jun 2006 05:52:31 GMT From: Bartek Siebab To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: misc/99529: [amr] DELL PowerEdge 2600 with streamer PowerVault 100T-DAT72 - device sa0 not exist X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jun 2006 06:20:30 -0000 >Number: 99529 >Category: misc >Synopsis: [amr] DELL PowerEdge 2600 with streamer PowerVault 100T-DAT72 - device sa0 not exist >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Jun 27 06:20:19 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Bartek Siebab >Release: 6.1 RELEASE >Organization: >Environment: >Description: I found a problem with that streamer on raid controller Dell Perc-4Di. It seems that booting with FreeBSD 6.0 install cd, device sa0 exist: sa0 at amr0 bus 1 target 6 lun 0 sa0: Removable Sequential Access SCSI-3 device Serial Number ...... but booting with FreeBSD 6.1 install cd, device sa0 doesn't exist, verbose dmesg doesn't show any such device. Full installation of 6.1 and cvsup, build, install world + kernel (either GENERIC or SMP) doesn't help at all. Matthew Jacob on freebsd-scsi mailing list said: >How-To-Repeat: On any such Dell server with that tape drive and FreeBSD 6.1 Release or Stable >Fix: >Release-Note: >Audit-Trail: >Unformatted: >Some changes to AMR caused passthru scsi devices to not appear... >search the lists for a discssion some weeks back about it. Can't >remember waht the outcome was... It seems that somewhere between 6.0R and 6.1R something bad happens to kernel or FreeBSD amr driver scsi subsystem. From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 27 07:30:20 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 84E1F16A408 for ; Tue, 27 Jun 2006 07:30:20 +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 A3DE6445C2 for ; Tue, 27 Jun 2006 07:30: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 k5R7UJgO033707 for ; Tue, 27 Jun 2006 07:30:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5R7UJbL033703; Tue, 27 Jun 2006 07:30:19 GMT (envelope-from gnats) Resent-Date: Tue, 27 Jun 2006 07:30:19 GMT Resent-Message-Id: <200606270730.k5R7UJbL033703@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, skv@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 25D1616A403 for ; Tue, 27 Jun 2006 07:22:55 +0000 (UTC) (envelope-from skv@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA70F445C2 for ; Tue, 27 Jun 2006 07:22:54 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from freefall.freebsd.org (skv@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k5R7MsUk033480 for ; Tue, 27 Jun 2006 07:22:54 GMT (envelope-from skv@freefall.freebsd.org) Received: (from skv@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5R7MsDC033479; Tue, 27 Jun 2006 07:22:54 GMT (envelope-from skv) Message-Id: <200606270722.k5R7MsDC033479@freefall.freebsd.org> Date: Tue, 27 Jun 2006 07:22:54 GMT From: skv@FreeBSD.org To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.2 Cc: Subject: bin/99531: [patch] mtree: import "optional" keyword from NetBSD X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: skv@FreeBSD.org List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jun 2006 07:30:20 -0000 >Number: 99531 >Category: bin >Synopsis: [patch] mtree: import "optional" keyword from NetBSD >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: Tue Jun 27 07:30:18 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Sergey Skvortsov >Release: FreeBSD 6.1-STABLE i386 >Organization: >Environment: >Description: Import very useful "optional" keyword: http://netbsd.gw.com/cgi-bin/man-cgi?mtree++NetBSD-current >How-To-Repeat: >Fix: Index: misc.c =================================================================== RCS file: /home/ncvs/src/usr.sbin/mtree/misc.c,v retrieving revision 1.16 diff -u -r1.16 misc.c --- misc.c 29 Mar 2005 11:44:17 -0000 1.16 +++ misc.c 27 Jun 2006 06:57:36 -0000 @@ -66,6 +66,7 @@ {"mode", F_MODE, NEEDVALUE}, {"nlink", F_NLINK, NEEDVALUE}, {"nochange", F_NOCHANGE, 0}, + {"optional", F_OPT, 0}, #ifdef RMD160 {"ripemd160digest", F_RMD160, NEEDVALUE}, #endif Index: mtree.8 =================================================================== RCS file: /home/ncvs/src/usr.sbin/mtree/mtree.8,v retrieving revision 1.53 diff -u -r1.53 mtree.8 --- mtree.8 31 Jul 2005 03:30:47 -0000 1.53 +++ mtree.8 27 Jun 2006 06:53:30 -0000 @@ -221,6 +221,9 @@ The number of hard links the file is expected to have. .It Cm nochange Make sure this file or directory exists but otherwise ignore all attributes. +.It Sy optional +The file is optional; don't complain about the file if it's +not in the file hierarchy. .It Cm uid The file owner as a numeric value. .It Cm uname Index: mtree.h =================================================================== RCS file: /home/ncvs/src/usr.sbin/mtree/mtree.h,v retrieving revision 1.7 diff -u -r1.7 mtree.h --- mtree.h 29 Mar 2005 11:44:17 -0000 1.7 +++ mtree.h 27 Jun 2006 06:56:36 -0000 @@ -78,6 +78,7 @@ #define F_RMD160 0x40000 /* RIPEMD160 digest */ #define F_FLAGS 0x80000 /* file flags */ #define F_SHA256 0x100000 /* SHA-256 digest */ +#define F_OPT 0x200000 /* existence optional */ u_int flags; /* items set */ #define F_BLOCK 0x001 /* block special */ Index: spec.c =================================================================== RCS file: /home/ncvs/src/usr.sbin/mtree/spec.c,v retrieving revision 1.22 diff -u -r1.22 spec.c --- spec.c 29 Mar 2005 11:44:17 -0000 1.22 +++ spec.c 27 Jun 2006 07:02:42 -0000 @@ -236,6 +236,9 @@ errx(1, "line %d: invalid link count %s", lineno, val); break; + case F_OPT: + /* just set flag bit */ + break; case F_SIZE: ip->st_size = strtoq(val, &ep, 10); if (*ep) Index: verify.c =================================================================== RCS file: /home/ncvs/src/usr.sbin/mtree/verify.c,v retrieving revision 1.24 diff -u -r1.24 verify.c --- verify.c 11 Aug 2005 15:43:55 -0000 1.24 +++ verify.c 27 Jun 2006 07:00:48 -0000 @@ -158,6 +158,8 @@ int serr; for (; p; p = p->next) { + if (p->flags & F_OPT && !(p->flags & F_VISIT)) + continue; if (p->type != F_DIR && (dflag || p->flags & F_VISIT)) continue; (void)strcpy(tail, p->name); >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 27 09:30: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 9499516A407 for ; Tue, 27 Jun 2006 09:30:18 +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 830F243D49 for ; Tue, 27 Jun 2006 09:30:13 +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 k5R9UDfP044386 for ; Tue, 27 Jun 2006 09:30:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5R9UDWu044385; Tue, 27 Jun 2006 09:30:13 GMT (envelope-from gnats) Resent-Date: Tue, 27 Jun 2006 09:30:13 GMT Resent-Message-Id: <200606270930.k5R9UDWu044385@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, Kostik Belousov Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9676216A400 for ; Tue, 27 Jun 2006 09:23:21 +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 6EE2A43D73 for ; Tue, 27 Jun 2006 09:23:17 +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 k5R9NH7k046604 for ; Tue, 27 Jun 2006 09:23:17 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id k5R9NHED046603; Tue, 27 Jun 2006 09:23:17 GMT (envelope-from nobody) Message-Id: <200606270923.k5R9NHED046603@www.freebsd.org> Date: Tue, 27 Jun 2006 09:23:17 GMT From: Kostik Belousov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: misc/99533: devel/doxygen 1.4.7 build error (/opt/share/tmake) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jun 2006 09:30:18 -0000 >Number: 99533 >Category: misc >Synopsis: devel/doxygen 1.4.7 build error (/opt/share/tmake) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Jun 27 09:30:12 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Kostik Belousov >Release: 6.1-STABLE >Organization: - >Environment: >Description: Upgrading doxygen 1.4.6 to, 1.4.7 I got the following: ===> Building for doxygen-1.4.7 echo "char versionString[]=\"1.4.7\";" > src/version.cpp gmake -j2 -C qtools gmake[1]: Entering directory `/usr/home/buddha/portsworkdir/usr/ports/devel/doxygen/work/doxygen-1.4.7/qtools' env TMAKEPATH=/opt/share/tmake/freebsd-g++ /usr/local/bin/perl /opt/bin/tmake qtools.pro >Makefile.qtools Can't open perl script "/opt/bin/tmake": No such file or directory gmake[1]: *** [Makefile.qtools] Ошибка 2 gmake[1]: Leaving directory `/usr/home/buddha/portsworkdir/usr/ports/devel/doxygen/work/doxygen-1.4.7/qtools' gmake: *** [all] Ошибка 2 *** Error code 2 >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 27 10:00:45 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 8F5C016A4DF for ; Tue, 27 Jun 2006 10:00:45 +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 DCB8B43D72 for ; Tue, 27 Jun 2006 10:00:33 +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 k5RA0Xkd049299 for ; Tue, 27 Jun 2006 10:00:33 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5RA0XvK049293; Tue, 27 Jun 2006 10:00:33 GMT (envelope-from gnats) Resent-Date: Tue, 27 Jun 2006 10:00:33 GMT Resent-Message-Id: <200606271000.k5RA0XvK049293@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, "Andrey V. Elsukov" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC44116A406 for ; Tue, 27 Jun 2006 09:54:57 +0000 (UTC) (envelope-from butcher@heavennet.ru) Received: from mail.insysnet.ru (ns2.insysnet.ru [81.18.141.4]) by mx1.FreeBSD.org (Postfix) with SMTP id 6474B43D64 for ; Tue, 27 Jun 2006 09:54:53 +0000 (GMT) (envelope-from butcher@heavennet.ru) Received: (qmail 20775 invoked by uid 3005); 27 Jun 2006 04:27:29 -0000 Received: from butcher@heavennet.ru by mail.insysnet.ru by uid 3002 with qmail-scanner-1.15 (Virus scan Clear:. Processed in 0.268305 secs); 27 Jun 2006 04:27:29 -0000 Received: from unknown (HELO mail.heavennet.ru) (81.18.141.41) by mail.insysnet.ru with SMTP; 27 Jun 2006 04:27:29 -0000 Received: by mail.heavennet.ru (Postfix, from userid 1000) id E394E15C4A; Tue, 27 Jun 2006 08:27:28 +0400 (MSD) Message-Id: <20060627042728.E394E15C4A@mail.heavennet.ru> Date: Tue, 27 Jun 2006 08:27:28 +0400 (MSD) From: "Andrey V. Elsukov" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Brooks Davis , Ed Maste Subject: bin/99534: [patch] dhclient Classless Static Routes support X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Andrey V. Elsukov" List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jun 2006 10:00:45 -0000 >Number: 99534 >Category: bin >Synopsis: [patch] dhclient Classless Static Routes support >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Jun 27 10:00:32 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Andrey V. Elsukov >Release: FreeBSD >Organization: >Environment: Tested on 6.1-STABLE. >Description: I have implemented RFC3442 support for the FreeBSD dhclient. I have a small bit of testing with isc-dhcpd and dnsmasqd. It tested and works with: 1) classless routes: 10.0.0.0/21 router, 10.1.0.0/19 router; 2) default route; 3) link routes (different networks on the same interface): 192.168.0.0/24 0.0.0.0, 192.168.1.0/24 0.0.0.0 Brooks Davis has suggested filling a PR. RFC: http://www.ietf.org/rfc/rfc3442.txt patch: http://butcher.heavennet.ru/patches/other/dhclient/ FreeBSD Projects ideas: http://www.freebsd.org/projects/ideas/#p-rfc3442 isc-dhcpd configuration: http://www.opennet.ru/tips/info/666.shtml >How-To-Repeat: >Fix: --- dhclient.diff begins here --- Index: src/sbin/dhclient/clparse.c =================================================================== RCS file: /ncvs/src/sbin/dhclient/clparse.c,v retrieving revision 1.2 diff -u -r1.2 clparse.c --- src/sbin/dhclient/clparse.c 23 Aug 2005 23:59:55 -0000 1.2 +++ src/sbin/dhclient/clparse.c 17 Jun 2006 20:48:13 -0000 @@ -90,6 +90,8 @@ top_level_config.requested_options [top_level_config.requested_option_count++] = DHO_TIME_OFFSET; top_level_config.requested_options + [top_level_config.requested_option_count++] = DHO_CLASSLESS_ROUTES; + top_level_config.requested_options [top_level_config.requested_option_count++] = DHO_ROUTERS; top_level_config.requested_options [top_level_config.requested_option_count++] = DHO_DOMAIN_NAME; Index: src/sbin/dhclient/dhclient-script =================================================================== RCS file: /ncvs/src/sbin/dhclient/dhclient-script,v retrieving revision 1.14 diff -u -r1.14 dhclient-script --- src/sbin/dhclient/dhclient-script 26 Jan 2006 21:05:39 -0000 1.14 +++ src/sbin/dhclient/dhclient-script 17 Jun 2006 20:48:13 -0000 @@ -86,8 +86,43 @@ fi } +fill_classless_routes() { + set $1 + while [ $# -gt 5 ]; do + if [ $1 -eq 0 ]; then + route="default" + elif [ $1 -lt 9 ]; then + route="$2.0.0.0/$1" + shift + elif [ $1 -lt 17 ]; then + route="$2.$3.0.0/$1" + shift; shift + elif [ $1 -lt 25 ]; then + route="$2.$3.$4.0/$1" + shift; shift; shift + else + route="$2.$3.$4.$5/$1" + shift; shift; shift; shift + fi + shift + router="$1.$2.$3.$4" + classless_routes="$classless_routes $route $router" + shift; shift; shift; shift + done +} + delete_old_routes() { #route delete "$old_ip_address" $LOCALHOST >/dev/null 2>&1 + if [ -n "$old_classless_routes" ]; then + fill_classless_routes "$old_classless_routes" + set $classless_routes + while [ $# -gt 1 ]; do + route delete "$1" "$2" + shift; shift + done + return 0; + fi + for router in $old_routers; do if [ $if_defaultroute = x -o $if_defaultroute = $interface ]; then route delete default $route >/dev/null 2>&1 @@ -107,6 +142,31 @@ add_new_routes() { #route add $new_ip_address $LOCALHOST >/dev/null 2>&1 + + # RFC 3442: If the DHCP server returns both a Classless Static + # Routes option and a Router option, the DHCP client MUST ignore + # the Router option. + # + # DHCP clients that support this option (Classless Static Routes) + # MUST NOT install the routes specified in the Static Routes + # option (option code 33) if both a Static Routes option and the + # Classless Static Routes option are provided. + + if [ -n "$new_classless_routes" ]; then + fill_classless_routes "$new_classless_routes" + $LOGGER "New Classless Static Routes ($interface): $classless_routes" + set $classless_routes + while [ $# -gt 1 ]; do + if [ "0.0.0.0" = "$2" ]; then + route add "$1" -iface "$interface" + else + route add "$1" "$2" + fi + shift; shift + done + return + fi + for router in $new_routers; do if [ "$new_ip_address" = "$router" ]; then route add default -iface $router >/dev/null 2>&1 Index: src/sbin/dhclient/dhclient.c =================================================================== RCS file: /ncvs/src/sbin/dhclient/dhclient.c,v retrieving revision 1.15 diff -u -r1.15 dhclient.c --- src/sbin/dhclient/dhclient.c 23 May 2006 16:57:47 -0000 1.15 +++ src/sbin/dhclient/dhclient.c 17 Jun 2006 20:48:13 -0000 @@ -115,6 +115,7 @@ void routehandler(struct protocol *); void usage(void); int check_option(struct client_lease *l, int option); +int check_classless_option(unsigned char *data, int len); int ipv4addrs(char * buf); int res_hnok(const char *dn); int check_search(const char *srch); @@ -2379,12 +2380,77 @@ case DHO_DHCP_USER_CLASS_ID: case DHO_END: return (1); + case DHO_CLASSLESS_ROUTES: + return (check_classless_option(l->options[option].data, + l->options[option].len)); default: warning("unknown dhcp option value 0x%x", option); return (unknown_ok); } } +/* RFC 3442 The Classless Static Routes option checks */ +int +check_classless_option(unsigned char *data, int len) +{ + int i = 0; + unsigned char width; + in_addr_t addr, mask; + + if (len < 5) { + warning("Too small length: %d", len); + return (0); + } + while(i < len) { + width = data[i++]; + if (width == 0) { + i += 4; continue; + } else if (width < 9) { + addr = (in_addr_t)(data[i] << 24); + i += 1; + } else if (width < 17) { + addr = (in_addr_t)(data[i] << 24) + + (in_addr_t)(data[i + 1] << 16); + i += 2; + } else if (width < 25) { + addr = (in_addr_t)(data[i] << 24) + + (in_addr_t)(data[i + 1] << 16) + + (in_addr_t)(data[i + 2] << 8); + i += 3; + } else if (width < 33) { + addr = (in_addr_t)(data[i] << 24) + + (in_addr_t)(data[i + 1] << 16) + + (in_addr_t)(data[i + 2] << 8) + + data[i + 3]; + i += 4; + } else { + warning("Incorrect subnet width: %d", width); + return(0); + } + mask = (in_addr_t)(~0) << (32 - width); + addr = ntohl(addr); + mask = ntohl(mask); + + /* From RFC 3442: + * ... After deriving a subnet number and subnet mask + * from each destination descriptor, the DHCP client + * MUST zero any bits in the subnet number where the + * corresponding bit in the mask is zero... + */ + if ((addr & mask) != addr) { + addr &= mask; + data[i - 1] = (unsigned char)( + (addr >> (((32 - width)/8)*8)) & 0xFF); + } + i += 4; + } + if (i > len) { + warning("Incorrect data length: %d (must be %d)", len, i); + return (0); + } + return (1); +} + int res_hnok(const char *dn) { Index: src/sbin/dhclient/dhclient.conf =================================================================== RCS file: /ncvs/src/sbin/dhclient/dhclient.conf,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 dhclient.conf --- src/sbin/dhclient/dhclient.conf 7 Jun 2005 04:05:07 -0000 1.1.1.1 +++ src/sbin/dhclient/dhclient.conf 17 Jun 2006 20:48:13 -0000 @@ -3,8 +3,9 @@ send dhcp-lease-time 3600; supersede domain-name "fugue.com home.vix.com"; prepend domain-name-servers 127.0.0.1; -request subnet-mask, broadcast-address, time-offset, routers, - domain-name, domain-name-servers, host-name; +request subnet-mask, broadcast-address, time-offset, + classless-routes, routers, domain-name, + domain-name-servers, host-name; require subnet-mask, domain-name-servers; timeout 60; retry 60; Index: src/sbin/dhclient/dhcp.h =================================================================== RCS file: /ncvs/src/sbin/dhclient/dhcp.h,v retrieving revision 1.2 diff -u -r1.2 dhcp.h --- src/sbin/dhclient/dhcp.h 30 Jun 2005 05:50:52 -0000 1.2 +++ src/sbin/dhclient/dhcp.h 17 Jun 2006 20:48:13 -0000 @@ -162,6 +162,7 @@ #define DHO_FINGER_SERVER 73 #define DHO_IRC_SERVER 74 #define DHO_DHCP_USER_CLASS_ID 77 +#define DHO_CLASSLESS_ROUTES 121 #define DHO_END 255 /* DHCP message types. */ Index: src/sbin/dhclient/tables.c =================================================================== RCS file: /ncvs/src/sbin/dhclient/tables.c,v retrieving revision 1.3 diff -u -r1.3 tables.c --- src/sbin/dhclient/tables.c 23 Aug 2005 23:59:55 -0000 1.3 +++ src/sbin/dhclient/tables.c 17 Jun 2006 20:48:13 -0000 @@ -186,7 +186,7 @@ { "option-118", "X", &dhcp_universe, 118 }, { "option-119", "X", &dhcp_universe, 119 }, { "option-120", "X", &dhcp_universe, 120 }, - { "option-121", "X", &dhcp_universe, 121 }, + { "classless-routes", "BA", &dhcp_universe, 121 }, { "option-122", "X", &dhcp_universe, 122 }, { "option-123", "X", &dhcp_universe, 123 }, { "option-124", "X", &dhcp_universe, 124 }, @@ -337,6 +337,7 @@ DHO_DHCP_CLIENT_IDENTIFIER, DHO_SUBNET_MASK, DHO_TIME_OFFSET, + DHO_CLASSLESS_ROUTES, DHO_ROUTERS, DHO_TIME_SERVERS, DHO_NAME_SERVERS, @@ -392,7 +393,7 @@ 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, - 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, + 119, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, --- dhclient.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 27 10:50: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 4928416A400 for ; Tue, 27 Jun 2006 10:50:36 +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 C055D43D66 for ; Tue, 27 Jun 2006 10:50:34 +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 k5RAoYHf056562 for ; Tue, 27 Jun 2006 10:50:34 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5RAoYtK056561; Tue, 27 Jun 2006 10:50:34 GMT (envelope-from gnats) Date: Tue, 27 Jun 2006 10:50:34 GMT Message-Id: <200606271050.k5RAoYtK056561@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Colin Petrie Cc: Subject: Re: kern/99484: enabling net.inet.ip.fastforwarding breaks rfc2644 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Colin Petrie List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jun 2006 10:50:36 -0000 The following reply was made to PR kern/99484; it has been noted by GNATS. From: Colin Petrie To: bug-followup@FreeBSD.org, cpetrie@xcalibre.co.uk Cc: Subject: Re: kern/99484: enabling net.inet.ip.fastforwarding breaks rfc2644 Date: Tue, 27 Jun 2006 11:46:17 +0100 Hi, The following patch appears to resolve the problem but I thought a bit of peer review would be nice. Anyone see any problems with this patch? Cheers Colin *** ip_fastfwd.c Tue Jun 27 11:29:01 2006 --- ip_fastfwd.c.new Tue Jun 27 11:30:18 2006 *************** ip_fastforward(struct mbuf *m) *** 162,167 **** --- 162,168 ---- u_short sum, ip_len; int error = 0; int hlen, mtu; + int isbroadcast; #ifdef IPFIREWALL_FORWARD struct m_tag *fwd_tag; #endif *************** ip_fastforward(struct mbuf *m) *** 275,280 **** --- 276,282 ---- goto drop; } + #ifdef ALTQ /* * Is packet dropped by traffic conditioner? *************** passin: *** 421,426 **** --- 423,439 ---- */ if (ro.ro_rt->rt_flags & RTF_BLACKHOLE) goto drop; + + /* + * Is packet a directed network broadcast packet? + */ + isbroadcast = in_broadcast(dst->sin_addr, ifp); + if (isbroadcast) { + printf("ip_fastfwd: dropping directed broadcast - to %s\n", + inet_ntoa(dst->sin_addr)); + ipstat.ips_badaddr++; + goto drop; + } /* * Step 5: outgoing firewall packet processing From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 27 10:50:42 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 0C96316A400 for ; Tue, 27 Jun 2006 10:50:42 +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 B5BB243D6B for ; Tue, 27 Jun 2006 10:50:35 +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 k5RAoZAA056579 for ; Tue, 27 Jun 2006 10:50:35 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5RAoZW9056578; Tue, 27 Jun 2006 10:50:35 GMT (envelope-from gnats) Resent-Date: Tue, 27 Jun 2006 10:50:35 GMT Resent-Message-Id: <200606271050.k5RAoZW9056578@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, dawnshade Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 74CC216A404 for ; Tue, 27 Jun 2006 10:47:18 +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 EC46C43D6B for ; Tue, 27 Jun 2006 10:47:13 +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 k5RAlDZ0022781 for ; Tue, 27 Jun 2006 10:47:13 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id k5RAlDxr022780; Tue, 27 Jun 2006 10:47:13 GMT (envelope-from nobody) Message-Id: <200606271047.k5RAlDxr022780@www.freebsd.org> Date: Tue, 27 Jun 2006 10:47:13 GMT From: dawnshade To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: conf/99536: [UPDATE] /etc/pf.os to OpenBSD rev 1.20 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jun 2006 10:50:42 -0000 >Number: 99536 >Category: conf >Synopsis: [UPDATE] /etc/pf.os to OpenBSD rev 1.20 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Jun 27 10:50:35 GMT 2006 >Closed-Date: >Last-Modified: >Originator: dawnshade >Release: 6.1-RELEASE >Organization: - >Environment: FreeBSD mail.host.ru 6.1-RELEASE FreeBSD 6.1-RELEASE #0: Thu Jun 8 09:39:16 MSD 2006 root@mail.host.ru:/usr/src/sys/i386/compile/mail_kern_7 i386 >Description: Update /etc/pf.os to OpenBSD rev 1.20 http://www.openbsd.org/cgi-bin/cvsweb/src/etc/pf.os?rev=1.20&content-type=text/x-cvsweb-markup >How-To-Repeat: - >Fix: - >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 27 11:00:49 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 1A6FB16A40F for ; Tue, 27 Jun 2006 11:00:49 +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 46F0243D82 for ; Tue, 27 Jun 2006 11:00:44 +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 k5RB0gtw058354 for ; Tue, 27 Jun 2006 11:00:42 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5RB0gee058353; Tue, 27 Jun 2006 11:00:42 GMT (envelope-from gnats) Date: Tue, 27 Jun 2006 11:00:42 GMT Message-Id: <200606271100.k5RB0gee058353@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Colin Petrie Cc: Subject: Re: kern/98799: [netinet] fastforwarding routes packets to network ip address X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Colin Petrie List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jun 2006 11:00:49 -0000 The following reply was made to PR kern/98799; it has been noted by GNATS. From: Colin Petrie To: bug-followup@FreeBSD.org, dmitry@trifle.net Cc: Subject: Re: kern/98799: [netinet] fastforwarding routes packets to network ip address Date: Tue, 27 Jun 2006 11:58:57 +0100 This is a multi-part message in MIME format. --------------020208010008040701020709 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Hi, This patch should fix your issue, could you give it a try and let me know if it works? I make no promises about this code being any good but it appears to do the job at my end where I have the same problem Please let me know if this helps Regards, Colin --------------020208010008040701020709 Content-Type: text/x-patch; name="fastfwd.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="fastfwd.patch" *** ip_fastfwd.c Tue Jun 27 11:29:01 2006 --- ip_fastfwd.c.new Tue Jun 27 11:30:18 2006 *************** ip_fastforward(struct mbuf *m) *** 162,167 **** --- 162,168 ---- u_short sum, ip_len; int error = 0; int hlen, mtu; + int isbroadcast; #ifdef IPFIREWALL_FORWARD struct m_tag *fwd_tag; #endif *************** ip_fastforward(struct mbuf *m) *** 275,280 **** --- 276,282 ---- goto drop; } + #ifdef ALTQ /* * Is packet dropped by traffic conditioner? *************** passin: *** 421,426 **** --- 423,439 ---- */ if (ro.ro_rt->rt_flags & RTF_BLACKHOLE) goto drop; + + /* + * Is packet a directed network broadcast packet? + */ + isbroadcast = in_broadcast(dst->sin_addr, ifp); + if (isbroadcast) { + printf("ip_fastfwd: dropping directed broadcast - to %s\n", + inet_ntoa(dst->sin_addr)); + ipstat.ips_badaddr++; + goto drop; + } /* * Step 5: outgoing firewall packet processing --------------020208010008040701020709-- From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 27 11:50:26 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 184F816A49E for ; Tue, 27 Jun 2006 11:50:26 +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 39E1843D70 for ; Tue, 27 Jun 2006 11:50:18 +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 k5RBoI2Q065585 for ; Tue, 27 Jun 2006 11:50:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5RBoHY3065580; Tue, 27 Jun 2006 11:50:17 GMT (envelope-from gnats) Resent-Date: Tue, 27 Jun 2006 11:50:17 GMT Resent-Message-Id: <200606271150.k5RBoHY3065580@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, Dmitry Kazarov Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 70E9016A403 for ; Tue, 27 Jun 2006 11:43:00 +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 3B7FF43D55 for ; Tue, 27 Jun 2006 11:43:00 +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 k5RBgxnR034247 for ; Tue, 27 Jun 2006 11:42:59 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id k5RBgxPn034246; Tue, 27 Jun 2006 11:42:59 GMT (envelope-from nobody) Message-Id: <200606271142.k5RBgxPn034246@www.freebsd.org> Date: Tue, 27 Jun 2006 11:42:59 GMT From: Dmitry Kazarov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: kern/99538: while using USB keyboard default params of atkbd and kbdmux lead to long delays on changes of keyboard state X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jun 2006 11:50:26 -0000 >Number: 99538 >Category: kern >Synopsis: while using USB keyboard default params of atkbd and kbdmux lead to long delays on changes of keyboard state >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Jun 27 11:50:17 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Dmitry Kazarov >Release: 6.1-STABLE >Organization: Multicom Ltd, Moscow >Environment: FreeBSD kazarov.cds.ru 6.1-STABLE FreeBSD 6.1-STABLE #1: Tue Jun 27 12:44:34 MSD 2006 root@kazarov.cds.ru:/var/tmp/obj/usr/src/sys/CE i386 >Description: I use an USB keyboard only. When I press CapsLock there is delay about second. It's dramatically decrease speed of typing since I use CapsLock quite often - it's configured as a switch between Cyrillic and Latin keyboard layouts. Also the same delay occures on switching between virtual consoles. There is no delay when AT keyboard is attached regardless which keyboard is used. The reason of this problem is kbdmux in conjunction with atkbdc driver. On changes in the state of virtual keyboard the kbdmux tryies to set state of absent AT keyboard. Since no keyboard is attached atkbd driver waits until timeout. >How-To-Repeat: Attach USB keyboard, detach AT keyboard and switch between virtual consoles (Alt-F1, Alt-F2). >Fix: If no AT keyboard is used at all the simplest workaround is to disable atkbd by adding next line to /boot/device.hints hint.atkbd.0.flags="1" >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 27 13:47:03 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 2075F16A400 for ; Tue, 27 Jun 2006 13:47:03 +0000 (UTC) (envelope-from archwndas@yahoo.com) Received: from web55202.mail.re4.yahoo.com (web55202.mail.re4.yahoo.com [206.190.58.166]) by mx1.FreeBSD.org (Postfix) with SMTP id 6AB3C43D46 for ; Tue, 27 Jun 2006 13:47:02 +0000 (GMT) (envelope-from archwndas@yahoo.com) Received: (qmail 44032 invoked by uid 60001); 27 Jun 2006 13:47:01 -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=v19HwUdU7k14MEAoKJJ7BV3EFmKwTlvXuzzdFWvnxBepQAi5pJx2TkbF19ZNu/+vfYEMohoC/Hq/Mp8qUto96F/CrkWc8HBhLIp8RuUp2IXE02FdGiL1ulDtoUwJC8uwegJIPPeqyj2wlhkoTbW81L6PBKBCayFkL4CpbWtpT3s= ; Message-ID: <20060627134701.44026.qmail@web55202.mail.re4.yahoo.com> Received: from [87.203.107.254] by web55202.mail.re4.yahoo.com via HTTP; Tue, 27 Jun 2006 06:47:01 PDT Date: Tue, 27 Jun 2006 06:47:01 -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: Tue, 27 Jun 2006 13:47:03 -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 Tue Jun 27 14:28:20 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 22C8416A40F for ; Tue, 27 Jun 2006 14:28:20 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from garek.tecnik93.com (garek.tecnik93.com [82.76.1.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1500E43D7D for ; Tue, 27 Jun 2006 14:27:58 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from garek.tecnik93.com (localhost [127.0.0.1]) by garek.tecnik93.com (Postfix) with ESMTP id E941761A1; Tue, 27 Jun 2006 17:27:57 +0300 (EEST) Received: from it.buh.cameradicommercio.ro (it.buh.cameradicommercio.ro [192.168.0.10]) by garek.tecnik93.com (Postfix) with ESMTP; Tue, 27 Jun 2006 17:27:57 +0300 (EEST) Received: from it.buh.cameradicommercio.ro (localhost.buh.tecnik93.com [127.0.0.1]) by it.buh.cameradicommercio.ro (Postfix) with ESMTP id 8AFA8144; Tue, 27 Jun 2006 17:27:57 +0300 (EEST) Date: Tue, 27 Jun 2006 17:27:56 +0300 From: Ion-Mihai "IOnut" Tetcu To: Simeon Nifos Message-ID: <20060627172756.005be387@it.buh.cameradicommercio.ro> In-Reply-To: <20060627134701.44026.qmail@web55202.mail.re4.yahoo.com> References: <20060627134701.44026.qmail@web55202.mail.re4.yahoo.com> X-Mailer: Sylpheed-Claws 2.1.1 (GTK+ 2.8.19; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: multipart/signed; boundary=Sig_QkV.lb73sely2I8kEGX53wn; protocol="application/pgp-signature"; micalg=PGP-SHA1 X-AV-Checked: on buh by ClamAV using ClamSMTP Cc: freebsd-bugs@freebsd.org Subject: Re: 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: Tue, 27 Jun 2006 14:28:20 -0000 --Sig_QkV.lb73sely2I8kEGX53wn Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable On Tue, 27 Jun 2006 06:47:01 -0700 (PDT) Simeon Nifos wrote: > Hello, > I would like to report a strange behaviour of=20 > FreeBSD AMD64 ver. 6.1. I installed it on a=20 > QUAD Opteron 846 with Tayan motherbord and 4GB RAM. [ ... ] Please post this on freebsd-amd64@freebsd.org as freebsd-bugs is a listed for automated mails from GNATS. --=20 IOnut Un^d^dregistered ;) FreeBSD "user" --Sig_QkV.lb73sely2I8kEGX53wn Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.4 (FreeBSD) iD8DBQFEoUBtBX6fi0k6KXsRAlVjAJ0ShrJU+kiWLKDdMU5QPxAwbLWD1wCeP7RJ dgPpNFL3paD6ZS/k62ivlu0= =azdH -----END PGP SIGNATURE----- --Sig_QkV.lb73sely2I8kEGX53wn-- From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 27 16:18:45 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 5B86D16A407; Tue, 27 Jun 2006 16:18:45 +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 0FE1744B56; Tue, 27 Jun 2006 16:18:45 +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 k5RGIi6b097431; Tue, 27 Jun 2006 16:18:44 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5RGIiW3097427; Tue, 27 Jun 2006 16:18:44 GMT (envelope-from linimon) Date: Tue, 27 Jun 2006 16:18:44 GMT From: Mark Linimon Message-Id: <200606271618.k5RGIiW3097427@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/99538: [kbd] while using USB keyboard default params of atkbd and kbdmux lead to long delays on changes of keyboard state X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jun 2006 16:18:45 -0000 Old Synopsis: while using USB keyboard default params of atkbd and kbdmux lead to long delays on changes of keyboard state New Synopsis: [kbd] while using USB keyboard default params of atkbd and kbdmux lead to long delays on changes of keyboard state Responsible-Changed-From-To: freebsd-bugs->freebsd-usb Responsible-Changed-By: linimon Responsible-Changed-When: Tue Jun 27 16:18:23 UTC 2006 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=99538 From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 27 16:29:26 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 F011E16A554; Tue, 27 Jun 2006 16:29:26 +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 5E982449F8; Tue, 27 Jun 2006 16:09:35 +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 k5RG9Zuc096967; Tue, 27 Jun 2006 16:09:35 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5RG9ZOQ096963; Tue, 27 Jun 2006 16:09:35 GMT (envelope-from linimon) Date: Tue, 27 Jun 2006 16:09:35 GMT From: Mark Linimon Message-Id: <200606271609.k5RG9ZOQ096963@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/99533: devel/doxygen 1.4.7 build error (/opt/share/tmake) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jun 2006 16:29:27 -0000 Synopsis: devel/doxygen 1.4.7 build error (/opt/share/tmake) Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Tue Jun 27 16:09:15 UTC 2006 Responsible-Changed-Why: Make this a ports PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=99533 From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 27 21:01: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 0541816A40E for ; Tue, 27 Jun 2006 21:01: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 0392243EA5 for ; Tue, 27 Jun 2006 21:00:52 +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 k5RL0mts015873 for ; Tue, 27 Jun 2006 21:00:48 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5RL0mpJ015872; Tue, 27 Jun 2006 21:00:48 GMT (envelope-from gnats) Resent-Date: Tue, 27 Jun 2006 21:00:48 GMT Resent-Message-Id: <200606272100.k5RL0mpJ015872@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, jim Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5171316AB1E for ; Tue, 27 Jun 2006 20:56:55 +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 CF7AD4576A for ; Tue, 27 Jun 2006 20:26:01 +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 k5RKQ1aD027126 for ; Tue, 27 Jun 2006 20:26:01 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id k5RKQ12S027125; Tue, 27 Jun 2006 20:26:01 GMT (envelope-from nobody) Message-Id: <200606272026.k5RKQ12S027125@www.freebsd.org> Date: Tue, 27 Jun 2006 20:26:01 GMT From: jim To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: misc/99562: gtk12 doesnt make in ports X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jun 2006 21:01:30 -0000 >Number: 99562 >Category: misc >Synopsis: gtk12 doesnt make in ports >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Jun 27 21:00:46 GMT 2006 >Closed-Date: >Last-Modified: >Originator: jim >Release: 6.1 >Organization: none >Environment: FreeBSD jimred 6.1-RELEASE FreeBSD 6.1-RELEASE #0: Sun May 7 04:42:56 UTC 2006 root@opus.cse.buffalo.edu:/usr/obj/usr/src/sys/SMP i386 >Description: /usr/ports/x11-toolkits/gtk12 fails to make. .. the last few lines are - /libltdl/aclocal.m4' install -o root -g wheel -m 444 'libltdl/Makefile.in' '/usr/local/share/libtool/libltdl/Makefile.in' install -o root -g wheel -m 444 'libltdl/configure' '/usr/local/share/libtool/libltdl/configure' install: libltdl/configure: No such file or directory *** Error code 71 Stop in /usr/ports/devel/libtool15/work/libtool-1.5.22. *** Error code 1 Stop in /usr/ports/devel/libtool15/work/libtool-1.5.22. *** Error code 1 Stop in /usr/ports/devel/libtool15/work/libtool-1.5.22. *** Error code 1 Stop in /usr/ports/devel/libtool15. *** Error code 1 Stop in /usr/ports/x11-toolkits/gtk12. -- I'm not a developer. Just letting you know. I dont plan to pursue this. I"ll probably uninstall and use an OS that I know doesnt have this issue. Thanks Jim >How-To-Repeat: Install 6.1 and try to make gtk12 >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 27 22:20:21 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 DD62C16A403; Tue, 27 Jun 2006 22:20:20 +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 1931944C0A; Tue, 27 Jun 2006 21:24:32 +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 k5RLOVS5016624; Tue, 27 Jun 2006 21:24:31 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5RLOVLZ016620; Tue, 27 Jun 2006 21:24:31 GMT (envelope-from linimon) Date: Tue, 27 Jun 2006 21:24:31 GMT From: Mark Linimon Message-Id: <200606272124.k5RLOVLZ016620@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, gnome@FreeBSD.org Cc: Subject: Re: ports/99562: gtk12 doesnt make in ports X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jun 2006 22:20:21 -0000 Synopsis: gtk12 doesnt make in ports Responsible-Changed-From-To: freebsd-bugs->gnome Responsible-Changed-By: linimon Responsible-Changed-When: Tue Jun 27 21:23:58 UTC 2006 Responsible-Changed-Why: Make this a ports PR and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=99562 From owner-freebsd-bugs@FreeBSD.ORG Wed Jun 28 00:33: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 578BF16A416 for ; Wed, 28 Jun 2006 00:33: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 A92EF43FDA for ; Wed, 28 Jun 2006 00:10:21 +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 k5S0ALM1026093 for ; Wed, 28 Jun 2006 00:10:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5S0ALXO026092; Wed, 28 Jun 2006 00:10:21 GMT (envelope-from gnats) Resent-Date: Wed, 28 Jun 2006 00:10:21 GMT Resent-Message-Id: <200606280010.k5S0ALXO026092@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, Cheng-Lung Sung Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4CB4316A40B for ; Wed, 28 Jun 2006 00:05:04 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 091AC43D58 for ; Wed, 28 Jun 2006 00:05:04 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from freefall.freebsd.org (clsung@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k5S053Gu026005 for ; Wed, 28 Jun 2006 00:05:03 GMT (envelope-from clsung@freefall.freebsd.org) Received: (from clsung@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5S053ql026004; Wed, 28 Jun 2006 00:05:03 GMT (envelope-from clsung) Message-Id: <200606280005.k5S053ql026004@freefall.freebsd.org> Date: Wed, 28 Jun 2006 00:05:03 GMT From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: bin/99566: [patch][jail] /usr/bin/fstat according to specified jid X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Cheng-Lung Sung List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Jun 2006 00:33:30 -0000 >Number: 99566 >Category: bin >Synopsis: [patch][jail] /usr/bin/fstat according to specified jid >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Jun 28 00:10:21 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 6.0-STABLE i386 >Organization: >Environment: System: FreeBSD freefall.freebsd.org 6.0-STABLE FreeBSD 6.0-STABLE #0: Sat Dec 10 03:18:20 UTC 2005 kensmith@freefall.freebsd.org:/usr/obj/usr/src/sys/FREEFALL i386 >Description: Let fstat can accept jid and then display active files according to the specified jid. Ref: http://bsdblogs.droso.org/clsung/2006/06/06/patchjail-fstat-according-to-specified-jid/ >How-To-Repeat: % fstat >Fix: http://people.freebsd.org/~clsung/patch_fstat_jid >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Jun 28 00:40:25 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 A41F116A4D0 for ; Wed, 28 Jun 2006 00:40:25 +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 2339543D48 for ; Wed, 28 Jun 2006 00:40:25 +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 k5S0eOO2028141 for ; Wed, 28 Jun 2006 00:40:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5S0eOHl028140; Wed, 28 Jun 2006 00:40:24 GMT (envelope-from gnats) Resent-Date: Wed, 28 Jun 2006 00:40:24 GMT Resent-Message-Id: <200606280040.k5S0eOHl028140@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, Steve Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C2A1116A47B for ; Wed, 28 Jun 2006 00: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 8AFC543E94 for ; Wed, 28 Jun 2006 00:07: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 k5S07gtZ027772 for ; Wed, 28 Jun 2006 00:07:42 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id k5S07gVV027771; Wed, 28 Jun 2006 00:07:42 GMT (envelope-from nobody) Message-Id: <200606280007.k5S07gVV027771@www.freebsd.org> Date: Wed, 28 Jun 2006 00:07:42 GMT From: Steve To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: misc/99567: Powerup of sleeping IDE drives causes system reboot. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Jun 2006 00:40:25 -0000 >Number: 99567 >Category: misc >Synopsis: Powerup of sleeping IDE drives causes system reboot. >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jun 28 00:40:24 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Steve >Release: 5.5 >Organization: >Environment: FreeBSD Torhelm.mil 5.5-RELEASE FreeBSD 5.5-RELEASE #0: Tue May 23 14:58:27 UTC 2006 root@perseus.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: Occasionally, accessing a hard disk drive that is powered down causes the system to freeze (likely a kernel panic) and then reboot. If accessing a powered down hard drive does not cause a lockup, then messages such as the following are reported: kernel: ad1: TIMEOUT - READ_DMA retrying (2 retries left) LBA=32547130 >From my websearching, it seems the IDE subsystem in the 5.x branch is the problem and 4.x and 6.x lack the issues I'm reporting. I was hoping that 5.5 would contain the patch that Søren Schmidt released (ATA-mkIII), but apparently that is not the case. Note that I'm only writting this bug report because the server has rebooted 4 times today, and WindowsXP is starting to look much much more stable than FreeBSD. >How-To-Repeat: >Fix: If one turns off powering down of hard disk drives, this would obviously solve the problem. The patch by Søren Schmidt may or may not also work. Migrating to 6.x should also work. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Jun 28 05:10:04 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 3E93516A400 for ; Wed, 28 Jun 2006 05:10:04 +0000 (UTC) (envelope-from r4@sovserv.ru) Received: from burned.sovietservers.com (burned.sovietservers.com [83.217.192.243]) by mx1.FreeBSD.org (Postfix) with ESMTP id 392E143D5D for ; Wed, 28 Jun 2006 05:10:02 +0000 (GMT) (envelope-from r4@sovserv.ru) Received: from [192.168.255.23] (gw1.infoline.su [83.217.192.13]) by burned.sovietservers.com (Postfix) with ESMTP id CFDD659E61C for ; Wed, 28 Jun 2006 09:09:55 +0400 (MSD) Message-ID: <44A20F23.1040901@sovserv.ru> Date: Wed, 28 Jun 2006 09:09:55 +0400 From: Ivan Kolosovskiy User-Agent: Thunderbird 1.5 (X11/20060405) MIME-Version: 1.0 To: freebsd-bugs@freebsd.org Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 7bit Subject: zoneli X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Jun 2006 05:10:04 -0000 What means "zoneli" stat for process in top? Process halts and kill (9,15) cannot kill him. Only reboot can. System 6.1-RELEASE/i386 From owner-freebsd-bugs@FreeBSD.ORG Wed Jun 28 10:32:53 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 6170316A591; Wed, 28 Jun 2006 10:32:53 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 946A0444B5; Wed, 28 Jun 2006 10:07:09 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from freefall.freebsd.org (yar@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k5SA79Hv064867; Wed, 28 Jun 2006 10:07:09 GMT (envelope-from yar@freefall.freebsd.org) Received: (from yar@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5SA79bj064863; Wed, 28 Jun 2006 10:07:09 GMT (envelope-from yar) Date: Wed, 28 Jun 2006 10:07:09 GMT From: Yar Tikhiy Message-Id: <200606281007.k5SA79bj064863@freefall.freebsd.org> To: yar@FreeBSD.org, freebsd-bugs@FreeBSD.org, imp@FreeBSD.org Cc: Subject: Re: kern/87845: [sio] [patch] sio(4) should on probe return BUS_PROBE_GENERIC to allow other drivers to attach X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Jun 2006 10:32:53 -0000 Synopsis: [sio] [patch] sio(4) should on probe return BUS_PROBE_GENERIC to allow other drivers to attach Responsible-Changed-From-To: freebsd-bugs->imp Responsible-Changed-By: yar Responsible-Changed-When: Wed Jun 28 09:55:17 UTC 2006 Responsible-Changed-Why: This PR proposes a change to code introduced by Warner. In http://docs.freebsd.org/cgi/mid.cgi?20051022.103242.98606517.imp Warner said that the change looked OK to him. (However, in http://docs.freebsd.org/cgi/mid.cgi?200510241120.31203.jhb John Baldwin expressed some reservation about the change.) http://www.freebsd.org/cgi/query-pr.cgi?pr=87845 From owner-freebsd-bugs@FreeBSD.ORG Wed Jun 28 18:21:21 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 F069B16A551 for ; Wed, 28 Jun 2006 18:21:20 +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 5D95A43F6A for ; Wed, 28 Jun 2006 18:20:24 +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 k5SIKOhm093454 for ; Wed, 28 Jun 2006 18:20:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5SIKOWS093452; Wed, 28 Jun 2006 18:20:24 GMT (envelope-from gnats) Resent-Date: Wed, 28 Jun 2006 18:20:24 GMT Resent-Message-Id: <200606281820.k5SIKOWS093452@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dan Ponte Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 62B5716A403 for ; Wed, 28 Jun 2006 18:14:55 +0000 (UTC) (envelope-from dcp1990@fez.theamigan.net) Received: from eastrmmtao03.cox.net (eastrmmtao03.cox.net [68.230.240.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9CED43E98 for ; Wed, 28 Jun 2006 18:14:53 +0000 (GMT) (envelope-from dcp1990@fez.theamigan.net) Received: from styx.theamigan.net ([68.9.18.102]) by eastrmmtao03.cox.net (InterMail vM.6.01.06.01 201-2131-130-101-20060113) with ESMTP id <20060628181452.CHSN23863.eastrmmtao03.cox.net@styx.theamigan.net>; Wed, 28 Jun 2006 14:14:52 -0400 Received: from fez.theamigan.net (fez.danponte.net [10.10.10.2]) by styx.theamigan.net (8.13.6/8.13.4) with ESMTP id k5SIEqwC016259; Wed, 28 Jun 2006 14:14:52 -0400 (EDT) (envelope-from dcp1990@fez.theamigan.net) Received: from fez.theamigan.net (localhost.theamigan.net [127.0.0.1]) by fez.theamigan.net (8.13.6/8.13.6) with ESMTP id k5SIEotV033969; Wed, 28 Jun 2006 14:14:50 -0400 (EDT) (envelope-from dcp1990@fez.theamigan.net) Received: (from dcp1990@localhost) by fez.theamigan.net (8.13.6/8.13.6/Submit) id k5SIEouW033968; Wed, 28 Jun 2006 14:14:50 -0400 (EDT) (envelope-from dcp1990) Message-Id: <200606281814.k5SIEouW033968@fez.theamigan.net> Date: Wed, 28 Jun 2006 14:14:50 -0400 (EDT) From: Dan Ponte To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: dan@theamigan.net Subject: bin/99585: [PATCH] Add option to tee(1) to also copy to standard error X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dan Ponte List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Jun 2006 18:21:21 -0000 >Number: 99585 >Category: bin >Synopsis: [PATCH] Add option to tee(1) to also copy to standard error >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Jun 28 18:20:23 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Dan Ponte >Release: FreeBSD 6.1-STABLE amd64 >Organization: Unix Users Anonymous >Environment: System: FreeBSD fez.theamigan.net 6.1-STABLE FreeBSD 6.1-STABLE #13: Sun Jun 25 23:43:46 EDT 2006 root@fez.theamigan.net:/usr/obj/usr/src/sys/FEZ amd64 >Description: I recently found myself in a situation where having tee(1) copy to standard error and standard output at the same time would be useful, so I implemented it. >How-To-Repeat: Find yourself in said situation. >Fix: Diff below. --- tee.diff begins here --- diff -ur tee.old/tee.1 tee/tee.1 --- tee.old/tee.1 Wed Jun 28 14:11:16 2006 +++ tee/tee.1 Wed Jun 28 14:07:37 2006 @@ -43,7 +43,7 @@ .Nd pipe fitting .Sh SYNOPSIS .Nm -.Op Fl ai +.Op Fl ais .Op Ar .Sh DESCRIPTION The @@ -61,6 +61,8 @@ Ignore the .Dv SIGINT signal. +.It Fl s +Copy to standard error as well. .El .Pp The following operands are available: diff -ur tee.old/tee.c tee/tee.c --- tee.old/tee.c Wed Jun 28 14:11:16 2006 +++ tee/tee.c Wed Jun 28 14:06:37 2006 @@ -71,12 +71,14 @@ LIST *p; int n, fd, rval, wval; char *bp; - int append, ch, exitval; + int append, ch, exitval, sterrout; char *buf; #define BSIZE (8 * 1024) append = 0; - while ((ch = getopt(argc, argv, "ai")) != -1) + sterrout = 0; + + while ((ch = getopt(argc, argv, "ais")) != -1) switch((char)ch) { case 'a': append = 1; @@ -84,6 +86,9 @@ case 'i': (void)signal(SIGINT, SIG_IGN); break; + case 's': + sterrout = 1; + break; case '?': default: usage(); @@ -96,6 +101,9 @@ add(STDOUT_FILENO, "stdout"); + if (sterrout) + add(STDERR_FILENO, "stderr"); + for (exitval = 0; *argv; ++argv) if ((fd = open(*argv, append ? O_WRONLY|O_CREAT|O_APPEND : O_WRONLY|O_CREAT|O_TRUNC, DEFFILEMODE)) < 0) { @@ -125,7 +133,7 @@ static void usage(void) { - (void)fprintf(stderr, "usage: tee [-ai] [file ...]\n"); + (void)fprintf(stderr, "usage: tee [-ais] [file ...]\n"); exit(1); } --- tee.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Jun 28 19:50:19 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 6BBDA16A4E6 for ; Wed, 28 Jun 2006 19:50:19 +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 5824F43D67 for ; Wed, 28 Jun 2006 19:50:18 +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 k5SJoICA098781 for ; Wed, 28 Jun 2006 19:50:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5SJoIPw098780; Wed, 28 Jun 2006 19:50:18 GMT (envelope-from gnats) Resent-Date: Wed, 28 Jun 2006 19:50:18 GMT Resent-Message-Id: <200606281950.k5SJoIPw098780@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, Helio Luchtenberg Junior Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DCC7916A608 for ; Wed, 28 Jun 2006 19:43:31 +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 F0A7F44537 for ; Wed, 28 Jun 2006 18:47:31 +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 k5SIlVvt029833 for ; Wed, 28 Jun 2006 18:47:31 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id k5SIlVql029832; Wed, 28 Jun 2006 18:47:31 GMT (envelope-from nobody) Message-Id: <200606281847.k5SIlVql029832@www.freebsd.org> Date: Wed, 28 Jun 2006 18:47:31 GMT From: Helio Luchtenberg Junior To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: kern/99588: UFS2 filesystems hang when doing "fsck -B" or "dump -L" or "mksnapffs" in a moderated I/O filesystem with many file locks/unlocks X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Jun 2006 19:50:19 -0000 >Number: 99588 >Category: kern >Synopsis: UFS2 filesystems hang when doing "fsck -B" or "dump -L" or "mksnapffs" in a moderated I/O filesystem with many file locks/unlocks >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jun 28 19:50:17 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Helio Luchtenberg Junior >Release: FreeBSD 5.4p12 >Organization: Viamidia Tecnologia S.A. >Environment: FreeBSD freeteste.viamidia.com 5.4-RELEASE-p12 FreeBSD 5.4-RELEASE-p12 #1: Wed Mar 8 16:08:29 UTC 2006 :/usr/obj/usr/src/sys/VIAMIDIA i386 >Description: We have noted filesystem "freezing" when creating filesystem snapshots (mksnap_ffs), or fsck'ing in background (fsck -B), or dumping (dump -L) on a filesystem of type UFS2 (default for FreeBSD 5.x) with a moderate I/O and many processes doing intensive file "locking/unlocking" on that filesystem. After the filesystem freezes, we could see that no activity was being done on the processes trying to access files on that filesystem. These processes are kept in the "D" state (Disk wait) forever. This seems to be a deadlock because the processes that are keeping locks on that filesystem can not be killed/aborted in any way (even with kill -9) and all they are seem in a "D" state. The "iostat" showed no disk activity on that filesystem after some time. We could reproduce the problem, see the description of how to do this below. >How-To-Repeat: We have created three directories below mountpoint (a UFS2 filesystem) "/jails": /jails/teste1, /jails/teste2, /jails/teste3. In each of these directories we have put 120 files. After running six instances of the program below, being two copies of it modified as to point to the files on "/jails/teste1", and other two copies of it modified as to point to the files on "/jails/teste2" and finally more two copies of it modified as to point to "/jails/teste3". When these six copies of the program below are run, and we try to create a filesystem snapshot of that filesystem (/jails), after some time the filesystem hangs and no other activity can be seen on it. All six copies of the program are found to be in "D" state, waiting for a disk operation to complete. The only solution found to restore the filesystem to a running state is to reboot the server. --------------------------------- #include #include #include #include #include struct dirent *dp; DIR *dirp; char name[4096]; int arq; main(int argc, char *argv[]) { arq=0; while(1) { dirp = opendir("/jails/teste1"); arq=0; dp=readdir(dirp); /* skip directory "." */ dp=readdir(dirp); /* skip directory ".." */ while ((dp = readdir(dirp)) != NULL) { sprintf(name,"/jails/teste1/%s",dp->d_name); arq=open(name,O_RDWR); flock(arq,LOCK_EX); close(arq); } (void)closedir(dirp); dirp = opendir("/jails/teste1"); arq=0; dp=readdir(dirp); /* skip directory "." */ dp=readdir(dirp); /* skip directory ".." */ while ((dp = readdir(dirp)) != NULL) { sprintf(name,"/jails/teste1/%s",dp->d_name); arq=open(name,O_RDWR); flock(arq,LOCK_UN); close(arq); } (void)closedir(dirp); } } ------------------------------- >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Jun 28 20:26:16 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 56B1D16A47B; Wed, 28 Jun 2006 20:26:16 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2958344906; Wed, 28 Jun 2006 20:26:16 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from freefall.freebsd.org (bms@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k5SKQG3w000397; Wed, 28 Jun 2006 20:26:16 GMT (envelope-from bms@freefall.freebsd.org) Received: (from bms@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5SKQF76000393; Wed, 28 Jun 2006 20:26:15 GMT (envelope-from bms) Date: Wed, 28 Jun 2006 20:26:15 GMT From: Bruce M Simpson Message-Id: <200606282026.k5SKQF76000393@freefall.freebsd.org> To: citrin@citrin.ru, bms@FreeBSD.org, freebsd-bugs@FreeBSD.org, bms@FreeBSD.org Cc: Subject: Re: kern/99558: FreeBSD 6.1 can't send packets to INADDR_BROADCAST X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Jun 2006 20:26:16 -0000 Synopsis: FreeBSD 6.1 can't send packets to INADDR_BROADCAST State-Changed-From-To: open->feedback State-Changed-By: bms State-Changed-When: Wed Jun 28 20:24:04 UTC 2006 State-Changed-Why: This behaviour is by design. Please read the manual page ip(4) for information on the IP_ONESBCAST option. The INADDR_BROADCAST destination is by its nature non specific and link local therefore you need to use the IP_ONESBCAST option to cause undirected broadcasts to be sent on a particular interface. Responsible-Changed-From-To: freebsd-bugs->bms Responsible-Changed-By: bms Responsible-Changed-When: Wed Jun 28 20:24:04 UTC 2006 Responsible-Changed-Why: This behaviour is by design. Please read the manual page ip(4) for information on the IP_ONESBCAST option. The INADDR_BROADCAST destination is by its nature non specific and link local therefore you need to use the IP_ONESBCAST option to cause undirected broadcasts to be sent on a particular interface. http://www.freebsd.org/cgi/query-pr.cgi?pr=99558 From owner-freebsd-bugs@FreeBSD.ORG Wed Jun 28 22:30:29 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 9F5F916A596 for ; Wed, 28 Jun 2006 22:30:29 +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 5292643ECB for ; Wed, 28 Jun 2006 22:30:24 +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 k5SMUOq3008235 for ; Wed, 28 Jun 2006 22:30:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5SMUOnU008230; Wed, 28 Jun 2006 22:30:24 GMT (envelope-from gnats) Resent-Date: Wed, 28 Jun 2006 22:30:24 GMT Resent-Message-Id: <200606282230.k5SMUOnU008230@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, "Anish Mistry" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1CBFC16A505 for ; Wed, 28 Jun 2006 22:26:51 +0000 (UTC) (envelope-from amistry@am-productions.biz) Received: from smtp2.fuse.net (mail-out2.fuse.net [216.68.8.175]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC29743E1B for ; Wed, 28 Jun 2006 22:25:51 +0000 (GMT) (envelope-from amistry@am-productions.biz) Received: from gx4.fuse.net ([69.61.164.22]) by smtp2.fuse.net (InterMail vM.6.01.04.04 201-2131-118-104-20050224) with ESMTP id <20060628222546.YNUK23063.smtp2.fuse.net@gx4.fuse.net> for ; Wed, 28 Jun 2006 18:25:46 -0400 Received: from bigguy.am-productions.biz ([69.61.164.22]) by gx4.fuse.net (InterMail vG.1.02.00.02 201-2136-104-102-20041210) with ESMTP id <20060628222542.HEQI11137.gx4.fuse.net@bigguy.am-productions.biz> for ; Wed, 28 Jun 2006 18:25:42 -0400 Message-Id: <1151533587.65137@bigguy.am-productions.biz> Date: Wed, 28 Jun 2006 18:26:27 -0400 From: "Anish Mistry" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.7 Cc: Subject: conf/99593: Add iana HP I/O and Status ports X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Jun 2006 22:30:29 -0000 >Number: 99593 >Category: conf >Synopsis: Add iana HP I/O and Status ports >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Jun 28 22:30:23 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Anish Mistry >Release: FreeBSD 6.1-RELEASE-p1 i386 >Organization: AM Productions >Environment: System: FreeBSD 6.1-RELEASE-p1 #0: Thu Jun 1 21:16:20 EDT 2006 amistry@bigguy.am-productions.biz:/usr/obj/usr/src/sys/BIGGUY >Description: HP has been assigned 2 ports (May 2006) for their I/O and Status daemons. Since there has been talk of turning hpiod and hpssd into network services it would be easier to get this in now rather than later. http://www.iana.org/assignments/port-numbers >How-To-Repeat: >Fix: --- hp-services.patch begins here --- --- services.orig Wed Jun 28 18:17:38 2006 +++ services Wed Jun 28 18:20:03 2006 @@ -1880,6 +1880,10 @@ rkinit 2108/udp #Kerberos (v4) remote initialization ats 2201/tcp #Advanced Training System Program ats 2201/udp #Advanced Training System Program +hpssd 2207/tcp #HP Status and Services +hpssd 2207/udp #HP Status and Services +hpiod 2208/tcp #HP I/O Backend +hpiod 2208/udp #HP I/O Backend ivs-video 2232/tcp #IVS Video default ivs-video 2232/udp #IVS Video default ivsd 2241/tcp #IVS Daemon --- hp-services.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Jun 28 23:30:16 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 E3F5A16A410 for ; Wed, 28 Jun 2006 23:30:16 +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 46C23454BF for ; Wed, 28 Jun 2006 23:30:16 +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 k5SNUGxj011636 for ; Wed, 28 Jun 2006 23:30:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5SNUFVr011635; Wed, 28 Jun 2006 23:30:16 GMT (envelope-from gnats) Resent-Date: Wed, 28 Jun 2006 23:30:16 GMT Resent-Message-Id: <200606282330.k5SNUFVr011635@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, Craig Leres Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6EA6516A40F for ; Wed, 28 Jun 2006 23:26:37 +0000 (UTC) (envelope-from leres@ee.lbl.gov) Received: from fun.ee.lbl.gov (fun.ee.lbl.gov [131.243.1.81]) by mx1.FreeBSD.org (Postfix) with ESMTP id 26B65454B9 for ; Wed, 28 Jun 2006 23:26:37 +0000 (GMT) (envelope-from leres@ee.lbl.gov) Received: from fun.ee.lbl.gov (localhost [127.0.0.1]) by fun.ee.lbl.gov (8.13.7/8.13.7) with ESMTP id k5SNQbN8047536 for ; Wed, 28 Jun 2006 16:26:37 -0700 (PDT) Received: from fun.ee.lbl.gov (leres@localhost) by fun.ee.lbl.gov (8.13.7/8.13.7/Submit) with ESMTP id k5SNQbkw047533 for ; Wed, 28 Jun 2006 16:26:37 -0700 (PDT) Message-Id: <200606282326.k5SNQbkw047533@fun.ee.lbl.gov> Date: Wed, 28 Jun 2006 16:26:37 -0700 From: Craig Leres To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: conf/99595: [PATCH] /etc/rc.d/dhclient doesn't interact well with the ports isc dhcp client X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Jun 2006 23:30:17 -0000 >Number: 99595 >Category: conf >Synopsis: [PATCH] /etc/rc.d/dhclient doesn't interact well with the ports isc dhcp client >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jun 28 23:30:15 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Craig Leres >Release: FreeBSD 6.1-RELEASE i386 >Organization: Lawrence Berkeley National Laboratory >Environment: fox 15 % uname -a FreeBSD fox.ee.lbl.gov 6.1-RELEASE FreeBSD 6.1-RELEASE #3: Tue Jun 20 11:50:33 PDT 2006 leres@fox.ee.lbl.gov:/usr/src/6.1-RELEASE/sys/i386/compile/LBLSMP i386 fox 16 % pkg_info | grep isc-dhcp3-client isc-dhcp3-client-3.0.4 The ISC Dynamic Host Configuration Protocol client >Description: The test in /etc/rc.d/dhclient that is supposed to prevent dhclient from being launched if one is already running doesn't work with the ports version of dhclient. If you have an interface configured for dhcp in /etc/rc.conf, dhclient runs and gets a lease normally but then is run again later at which point it sets the interface address to 0.0.0.0, ending network access via that NIC. >How-To-Repeat: Install the isc-dhcp3-client and configure a NIC to use it: ifconfig_em0="dhcp" Then reboot. The interface will come up when dhclient runs. Later when it's run again, you'll see this message: Internet Systems Consortium DHCP Client V3.0.3 Copyright 2004-2005 Internet Systems Consortium. All rights reserved. For info, please visit http://www.isc.org/products/DHCP Listening on BPF/em0/00:30:48:00:00:01 Sending on BPF/em0/00:30:48:00:00:01 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. At this point the original dhclient is still running but the interface is misconfigured and you're hosed. >Fix: The simplest solution is to check /var/run/dhclient.pid in addition doing the pgrep test that's already in the rc script. The appended patch implements this. A more complete solution would be to also change the base version of dhclient to manage the /var/run/dhclient.pid file and remove the pgrep test from the rc.d script. (If there is interest in that, I'd be happy to generate the diffs.) ------- =_aaaaaaaaaa0 Content-Type: text/plain; name="a.txt"; charset="us-ascii" Content-ID: <47530.1151537075.2@fun.ee.lbl.gov> *** dhclient 2006/06/14 18:16:09 1.1 --- dhclient 2006/06/14 18:16:19 *************** *** 18,28 **** --- 18,40 ---- dhclient_start() { + local f rc_flags pid pids + # prevent unnecessicary restarts # XXX: should use a pidfile if [ -x /usr/bin/pgrep ]; then pids=`/usr/bin/pgrep -f "dhclient: $ifn(\$| .*)"` if [ -n "$pids" ]; then + exit 0 + fi + fi + + # deal with isc dhclient too + f="/var/run/dhclient.pid" + if [ -s ${f} ]; then + pid="`cat ${f}`" + kill -0 "${pid}" >/dev/null 2>&1 + if [ $? -eq 0 ]; then exit 0 fi fi ------- =_aaaaaaaaaa0-- >Release-Note: >Audit-Trail: >Unformatted: ------- =_aaaaaaaaaa0 Content-Type: text/plain; charset="us-ascii" Content-ID: <47530.1151537075.1@fun.ee.lbl.gov> From owner-freebsd-bugs@FreeBSD.ORG Thu Jun 29 00:22:41 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 C9D0116A412; Thu, 29 Jun 2006 00:22:41 +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 6C63744F96; Thu, 29 Jun 2006 00:22:41 +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 k5T0Mfbu014492; Thu, 29 Jun 2006 00:22:41 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5T0Mft2014488; Thu, 29 Jun 2006 00:22:41 GMT (envelope-from linimon) Date: Thu, 29 Jun 2006 00:22:41 GMT From: Mark Linimon Message-Id: <200606290022.k5T0Mft2014488@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-rc@FreeBSD.org Cc: Subject: Re: conf/99595: [PATCH] /etc/rc.d/dhclient doesn't interact well with the ports isc dhcp client X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 00:22:41 -0000 Synopsis: [PATCH] /etc/rc.d/dhclient doesn't interact well with the ports isc dhcp client Responsible-Changed-From-To: freebsd-bugs->freebsd-rc Responsible-Changed-By: linimon Responsible-Changed-When: Thu Jun 29 00:22:32 UTC 2006 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=99595 From owner-freebsd-bugs@FreeBSD.ORG Thu Jun 29 00:24:14 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 59E5016A40F; Thu, 29 Jun 2006 00:24:14 +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 14ED544FA7; Thu, 29 Jun 2006 00:24:14 +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 k5T0ODem014567; Thu, 29 Jun 2006 00:24:13 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5T0ODNW014563; Thu, 29 Jun 2006 00:24:13 GMT (envelope-from linimon) Date: Thu, 29 Jun 2006 00:24:13 GMT From: Mark Linimon Message-Id: <200606290024.k5T0ODNW014563@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-rc@FreeBSD.org Cc: Subject: Re: conf/98603: [PATCH] /etc/rc.d/ramdisk + ramdisk-own replacement X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 00:24:14 -0000 Synopsis: [PATCH] /etc/rc.d/ramdisk + ramdisk-own replacement Responsible-Changed-From-To: freebsd-bugs->freebsd-rc Responsible-Changed-By: linimon Responsible-Changed-When: Thu Jun 29 00:24:01 UTC 2006 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=98603 From owner-freebsd-bugs@FreeBSD.ORG Thu Jun 29 00:24: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 D246316A403; Thu, 29 Jun 2006 00:24:36 +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 8E85644FB3; Thu, 29 Jun 2006 00:24:34 +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 k5T0OYAN014618; Thu, 29 Jun 2006 00:24:34 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5T0OYA5014614; Thu, 29 Jun 2006 00:24:34 GMT (envelope-from linimon) Date: Thu, 29 Jun 2006 00:24:34 GMT From: Mark Linimon Message-Id: <200606290024.k5T0OYA5014614@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-rc@FreeBSD.org Cc: Subject: Re: conf/97311: [patch] /etc/rc.d/ipfilter reload can load bad files X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 00:24:36 -0000 Synopsis: [patch] /etc/rc.d/ipfilter reload can load bad files Responsible-Changed-From-To: freebsd-bugs->freebsd-rc Responsible-Changed-By: linimon Responsible-Changed-When: Thu Jun 29 00:24:24 UTC 2006 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=97311 From owner-freebsd-bugs@FreeBSD.ORG Thu Jun 29 00:25:08 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 1836A16A412; Thu, 29 Jun 2006 00:25:08 +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 9056044FAF; Thu, 29 Jun 2006 00:25:07 +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 k5T0P7ka014682; Thu, 29 Jun 2006 00:25:07 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5T0P7er014678; Thu, 29 Jun 2006 00:25:07 GMT (envelope-from linimon) Date: Thu, 29 Jun 2006 00:25:07 GMT From: Mark Linimon Message-Id: <200606290025.k5T0P7er014678@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-rc@FreeBSD.org Cc: Subject: Re: conf/96343: [patch] rc.d order change to start inet6 before pf X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 00:25:08 -0000 Synopsis: [patch] rc.d order change to start inet6 before pf Responsible-Changed-From-To: freebsd-bugs->freebsd-rc Responsible-Changed-By: linimon Responsible-Changed-When: Thu Jun 29 00:24:57 UTC 2006 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=96343 From owner-freebsd-bugs@FreeBSD.ORG Thu Jun 29 00:59:34 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 CE25116A522; Thu, 29 Jun 2006 00:59:34 +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 48AA244BDA; Thu, 29 Jun 2006 00:29:28 +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 k5T0TSw5014967; Thu, 29 Jun 2006 00:29:28 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5T0TSSc014963; Thu, 29 Jun 2006 00:29:28 GMT (envelope-from linimon) Date: Thu, 29 Jun 2006 00:29:28 GMT From: Mark Linimon Message-Id: <200606290029.k5T0TSSc014963@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-rc@FreeBSD.org Cc: Subject: Re: conf/74817: [patch] network.subr: fixed automatic configuration of multiple I/F in IPv6 environment X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 00:59:35 -0000 Synopsis: [patch] network.subr: fixed automatic configuration of multiple I/F in IPv6 environment Responsible-Changed-From-To: freebsd-bugs->freebsd-rc Responsible-Changed-By: linimon Responsible-Changed-When: Thu Jun 29 00:28:57 UTC 2006 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=74817 From owner-freebsd-bugs@FreeBSD.ORG Thu Jun 29 00:59: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 BE8C116A638; Thu, 29 Jun 2006 00:59:36 +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 17A8344136; Thu, 29 Jun 2006 00:27:17 +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 k5T0RGYt014821; Thu, 29 Jun 2006 00:27:16 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5T0RGcb014817; Thu, 29 Jun 2006 00:27:16 GMT (envelope-from linimon) Date: Thu, 29 Jun 2006 00:27:16 GMT From: Mark Linimon Message-Id: <200606290027.k5T0RGcb014817@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-rc@FreeBSD.org Cc: Subject: Re: conf/85819: [patch] script allowing multiuser mode in spite of fsck errors X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 00:59:38 -0000 Synopsis: [patch] script allowing multiuser mode in spite of fsck errors Responsible-Changed-From-To: freebsd-bugs->freebsd-rc Responsible-Changed-By: linimon Responsible-Changed-When: Thu Jun 29 00:26:52 UTC 2006 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=85819 From owner-freebsd-bugs@FreeBSD.ORG Thu Jun 29 00:59:38 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 CFB9916A641; Thu, 29 Jun 2006 00:59:36 +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 1ED7444C63; Thu, 29 Jun 2006 00:31:11 +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 k5T0VAo8016420; Thu, 29 Jun 2006 00:31:10 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5T0VArk016416; Thu, 29 Jun 2006 00:31:10 GMT (envelope-from linimon) Date: Thu, 29 Jun 2006 00:31:10 GMT From: Mark Linimon Message-Id: <200606290031.k5T0VArk016416@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-rc@FreeBSD.org Cc: Subject: Re: conf/58939: [patch] dumb little hack for /etc/rc.firewall{,6} X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 00:59:40 -0000 Synopsis: [patch] dumb little hack for /etc/rc.firewall{,6} Responsible-Changed-From-To: freebsd-bugs->freebsd-rc Responsible-Changed-By: linimon Responsible-Changed-When: Thu Jun 29 00:31:00 UTC 2006 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=58939 From owner-freebsd-bugs@FreeBSD.ORG Thu Jun 29 00:59:49 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 2119A16A770; Thu, 29 Jun 2006 00:59:49 +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 35A8744CB0; Thu, 29 Jun 2006 00:32:05 +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 k5T0W5Db016559; Thu, 29 Jun 2006 00:32:05 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5T0W5nH016555; Thu, 29 Jun 2006 00:32:05 GMT (envelope-from linimon) Date: Thu, 29 Jun 2006 00:32:05 GMT From: Mark Linimon Message-Id: <200606290032.k5T0W5nH016555@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-rc@FreeBSD.org Cc: Subject: Re: conf/48870: [PATCH] rc.network: allow to cancel interface status display X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 00:59:49 -0000 Synopsis: [PATCH] rc.network: allow to cancel interface status display Responsible-Changed-From-To: freebsd-bugs->freebsd-rc Responsible-Changed-By: linimon Responsible-Changed-When: Thu Jun 29 00:31:56 UTC 2006 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=48870 From owner-freebsd-bugs@FreeBSD.ORG Thu Jun 29 00:59: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 CA35216A543; Thu, 29 Jun 2006 00:59: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 CCE2A44C0B; Thu, 29 Jun 2006 00:30:08 +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 k5T0U87O015036; Thu, 29 Jun 2006 00:30:08 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5T0U81U015032; Thu, 29 Jun 2006 00:30:08 GMT (envelope-from linimon) Date: Thu, 29 Jun 2006 00:30:08 GMT From: Mark Linimon Message-Id: <200606290030.k5T0U81U015032@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-rc@FreeBSD.org Cc: Subject: Re: conf/73677: [patch] add support for powernow states to power_profile X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 00:59:51 -0000 Synopsis: [patch] add support for powernow states to power_profile Responsible-Changed-From-To: freebsd-bugs->freebsd-rc Responsible-Changed-By: linimon Responsible-Changed-When: Thu Jun 29 00:29:57 UTC 2006 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=73677 From owner-freebsd-bugs@FreeBSD.ORG Thu Jun 29 00:59:51 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 D38F916A590; Thu, 29 Jun 2006 00:59: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 CB2F544C8F; Thu, 29 Jun 2006 00:31:46 +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 k5T0Vkm9016490; Thu, 29 Jun 2006 00:31:46 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5T0VkaW016486; Thu, 29 Jun 2006 00:31:46 GMT (envelope-from linimon) Date: Thu, 29 Jun 2006 00:31:46 GMT From: Mark Linimon Message-Id: <200606290031.k5T0VkaW016486@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-rc@FreeBSD.org Cc: Subject: Re: conf/48881: [PATCH] The influence of /etc/start_ifname on /etc/rc.firewall is obscure and harmfull X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 00:59:51 -0000 Synopsis: [PATCH] The influence of /etc/start_ifname on /etc/rc.firewall is obscure and harmfull Responsible-Changed-From-To: freebsd-bugs->freebsd-rc Responsible-Changed-By: linimon Responsible-Changed-When: Thu Jun 29 00:31:33 UTC 2006 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=48881 From owner-freebsd-bugs@FreeBSD.ORG Thu Jun 29 00:59:56 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 1F0F016A785; Thu, 29 Jun 2006 00:59:56 +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 0B54943F3F; Thu, 29 Jun 2006 00:26:19 +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 k5T0QI1v014767; Thu, 29 Jun 2006 00:26:18 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5T0QIB0014763; Thu, 29 Jun 2006 00:26:18 GMT (envelope-from linimon) Date: Thu, 29 Jun 2006 00:26:18 GMT From: Mark Linimon Message-Id: <200606290026.k5T0QIB0014763@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-rc@FreeBSD.org Cc: Subject: Re: conf/89061: [patch] IPv6 6to4 auto-configuration enhancement X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 00:59:56 -0000 Synopsis: [patch] IPv6 6to4 auto-configuration enhancement Responsible-Changed-From-To: freebsd-bugs->freebsd-rc Responsible-Changed-By: linimon Responsible-Changed-When: Thu Jun 29 00:26:04 UTC 2006 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=89061 From owner-freebsd-bugs@FreeBSD.ORG Thu Jun 29 00:59:57 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 CB29A16A5FA; Thu, 29 Jun 2006 00:59:57 +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 6FBE744268; Thu, 29 Jun 2006 00:28:17 +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 k5T0SHep014894; Thu, 29 Jun 2006 00:28:17 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5T0SHZg014890; Thu, 29 Jun 2006 00:28:17 GMT (envelope-from linimon) Date: Thu, 29 Jun 2006 00:28:17 GMT From: Mark Linimon Message-Id: <200606290028.k5T0SHZg014890@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-rc@FreeBSD.org Cc: Subject: Re: conf/79196: [PATCH] configurable dummynet loading from /etc/rc.conf script X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 00:59:58 -0000 Synopsis: [PATCH] configurable dummynet loading from /etc/rc.conf script Responsible-Changed-From-To: freebsd-bugs->freebsd-rc Responsible-Changed-By: linimon Responsible-Changed-When: Thu Jun 29 00:28:05 UTC 2006 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=79196 From owner-freebsd-bugs@FreeBSD.ORG Thu Jun 29 05:55: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 26A1D16A4CE; Thu, 29 Jun 2006 05:55:27 +0000 (UTC) (envelope-from bu7cher@yandex.ru) Received: from mx18.yandex.ru (smtp2.yandex.ru [213.180.200.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6869A43D8C; Thu, 29 Jun 2006 05:55:24 +0000 (GMT) (envelope-from bu7cher@yandex.ru) Received: from mail.kirov.so-cdu.ru ([81.18.142.225]:4105 "EHLO [127.0.0.1]" smtp-auth: "bu7cher" TLS-CIPHER: "DHE-RSA-AES256-SHA keybits 256/256 version TLSv1/SSLv3" TLS-PEER-CN1: ) by mail.yandex.ru with ESMTP id S3377188AbWF2FzU (ORCPT + 4 others); Thu, 29 Jun 2006 09:55:20 +0400 X-Comment: RFC 2476 MSA function at smtp2.yandex.ru logged sender identity as: bu7cher Message-ID: <44A36B44.1030100@yandex.ru> Date: Thu, 29 Jun 2006 09:55:16 +0400 From: "Andrey V. Elsukov" User-Agent: Mozilla Thunderbird 1.5 (FreeBSD/20051231) MIME-Version: 1.0 To: Bruce M Simpson References: <200606282026.k5SKQF76000393@freefall.freebsd.org> In-Reply-To: <200606282026.k5SKQF76000393@freefall.freebsd.org> Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 7bit Cc: Robert Watson , freebsd-bugs@FreeBSD.org, Gleb Smirnoff , andre@freebsd.org, citrin@citrin.ru Subject: Re: kern/99558: FreeBSD 6.1 can't send packets to INADDR_BROADCAST X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 05:55:27 -0000 Bruce M Simpson wrote: > Please read the manual page ip(4) for information on the IP_ONESBCAST > option. The INADDR_BROADCAST destination is by its nature non specific > and link local therefore you need to use the IP_ONESBCAST option to > cause undirected broadcasts to be sent on a particular interface. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=99558 Ok. I've tested 5.4-STABLE. Without IP_ONESBCAST: 09:24:50.293393 IP 10.0.0.4.5000 > 10.0.7.255.5000: UDP, length: 4 0x0000: ffff ffff ffff 0007 e909 d5b3 0800 4500 ..............E. 0x0010: 0020 24d7 0000 4011 39f4 0a00 0004 0a00 ..$...@.9....... 0x0020: 07ff 1388 1388 000c 1c20 7465 7374 ..........test With IP_ONESBCAST: 09:28:08.275418 IP 10.0.0.4.54715 > 255.255.255.255.5000: UDP,length:4 0x0000: ffff ffff ffff 0007 e909 d5b3 0800 4500 ..............E. 0x0010: 0020 8987 0000 4011 e742 0a00 0004 ffff ......@..B...... 0x0020: ffff d5bb 1388 000c 0a21 7465 7374 .........!test In result we have difference only in IP destination address. I want to pay attention that a Ethernet destination address is a ethernet broadcast! Now for 6.1-STABLE. Without IP_ONESBCAST: 10:43:15.384080 IP 172.21.81.19.58298 > 255.255.255.255.5000: UDP, length 4 0x0000: 0011 936b 3c91 0080 4819 86df 0800 4500 ...k<...H.....E. 0x0010: 0020 a670 0000 4011 d734 ac15 5113 ffff ...p..@..4..Q... 0x0020: ffff e3ba 1388 000c 2391 7465 7374 0000 ........#.test.. 0x0030: 0000 0000 0000 0000 0000 0000 ............ With IP_ONESBCAST: 10:44:20.320314 IP 172.21.81.19.53276 > 255.255.255.255.5000: UDP, length 4 0x0000: 0011 936b 3c91 0080 4819 86df 0800 4500 ...k<...H.....E. 0x0010: 0020 a998 0000 4011 d40c ac15 5113 ffff ......@.....Q... 0x0020: ffff d01c 1388 000c 372f 7465 7374 0000 ........7/test.. 0x0030: 0000 0000 0000 0000 0000 0000 ............ In result we have an identical datagrams with *incorrect* ethernet destination addresses. When my system don't have default route, he can not send broadcast. I've got error message "sendto(): Network is unreachable"! -- WBR, Andrey V. Elsukov From owner-freebsd-bugs@FreeBSD.ORG Thu Jun 29 06:42: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 EFB7816A40F; Thu, 29 Jun 2006 06:42:50 +0000 (UTC) (envelope-from oleg@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A63A743D5A; Thu, 29 Jun 2006 06:42:50 +0000 (GMT) (envelope-from oleg@FreeBSD.org) Received: from freefall.freebsd.org (oleg@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k5T6go0Y044681; Thu, 29 Jun 2006 06:42:50 GMT (envelope-from oleg@freefall.freebsd.org) Received: (from oleg@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5T6goQR044677; Thu, 29 Jun 2006 06:42:50 GMT (envelope-from oleg) Date: Thu, 29 Jun 2006 06:42:50 GMT From: Oleg Bulyzhin Message-Id: <200606290642.k5T6goQR044677@freefall.freebsd.org> To: jumper99@gmx.de, oleg@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/98848: [bge] BGE is recognized as 1000baseSX but is connected via 1000baseT X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 06:42:51 -0000 Synopsis: [bge] BGE is recognized as 1000baseSX but is connected via 1000baseT State-Changed-From-To: open->closed State-Changed-By: oleg State-Changed-When: Thu Jun 29 06:41:54 UTC 2006 State-Changed-Why: Problem was solved using options BGE_FAKE_AUTONEG http://www.freebsd.org/cgi/query-pr.cgi?pr=98848 From owner-freebsd-bugs@FreeBSD.ORG Thu Jun 29 08:47:05 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 CAB4E16A403 for ; Thu, 29 Jun 2006 08:47:05 +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 5E2AC43F0F for ; Tue, 27 Jun 2006 17:10:21 +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 k5RHAL0e001546 for ; Tue, 27 Jun 2006 17:10:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5RHALZ2001544; Tue, 27 Jun 2006 17:10:21 GMT (envelope-from gnats) Resent-Date: Tue, 27 Jun 2006 17:10:21 GMT Resent-Message-Id: <200606271710.k5RHALZ2001544@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, "Andrey V. Elsukov" , Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0412716A409 for ; Tue, 27 Jun 2006 17:02:13 +0000 (UTC) (envelope-from butcher@heavennet.ru) Received: from mail.insysnet.ru (ns2.insysnet.ru [81.18.141.4]) by mx1.FreeBSD.org (Postfix) with SMTP id 4CD5743D79 for ; Tue, 27 Jun 2006 17:02:11 +0000 (GMT) (envelope-from butcher@heavennet.ru) Received: (qmail 6010 invoked by uid 3005); 27 Jun 2006 15:47:39 -0000 Received: from butcher@heavennet.ru by mail.insysnet.ru by uid 3002 with qmail-scanner-1.15 (Virus scan Clear:. Processed in 0.105265 secs); 27 Jun 2006 15:47:39 -0000 Received: from unknown (HELO mail.heavennet.ru) (81.18.141.41) by mail.insysnet.ru with SMTP; 27 Jun 2006 15:47:39 -0000 Received: by mail.heavennet.ru (Postfix, from userid 1000) id EEAA615C4A; Tue, 27 Jun 2006 19:47:37 +0400 (MSD) Message-Id: <20060627154737.EEAA615C4A@mail.heavennet.ru> Date: Tue, 27 Jun 2006 19:47:37 +0400 (MSD) From: "Andrey V. Elsukov" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: rwatson@FreeBSD.org, glebius@FreeBSD.org, andre@FreeBSD.org Subject: kern/99558: FreeBSD 6.1 can't send packets to INADDR_BROADCAST X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Andrey V. Elsukov" , citrin@citrin.ru List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 08:47:05 -0000 >Number: 99558 >Category: kern >Synopsis: FreeBSD 6.1 can't send packets to INADDR_BROADCAST >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Jun 27 17:10:20 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Andrey V. Elsukov >Release: FreeBSD 6.1 >Organization: >Environment: FreeBSD 6.1-PRERELEASE, 6.1-STABLE have this bug FreeBSD 4.11-RELEASE, FreeBSD 5.4-STABLE, FreeBSD 5.5-RELEASE works ok. >Description: FreeBSD 6.1 can't send UDP Broadcast. Here is simple test programm: --- test.c --- #include #include #include #include #include #include #include int main(void) { int sock, val, ret; struct sockaddr_in addr; sock = socket(AF_INET, SOCK_DGRAM, 0); if (sock < 0) err(1, "socket()"); addr.sin_family = AF_INET; addr.sin_port = htons(5000); addr.sin_addr.s_addr = htonl(INADDR_BROADCAST); val = 1; ret = setsockopt(sock, SOL_SOCKET, SO_BROADCAST, (const char*)&val, sizeof(val)); if (ret < 0) err(2, "setsockopt()"); ret = sendto(sock, "test", 4, 0, (struct sockaddr*)&addr, sizeof(addr)); if (ret != 4) err(3, "sendto()"); close(sock); return (0); } --- test.c --- 1. I've connect via PPTP tunnel and my host have default route. [butcher@btr butcher]> ./test [butcher@btr butcher]> sudo tcpdump -ni ng0 -XX udp port 5000 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on ng0, link-type NULL (BSD loopback), capture size 96 bytes 19:25:32.169657 IP 192.168.3.6.53565 > 255.255.255.255.5000: UDP, length 4 0x0000: 0200 0000 4500 0020 241a 0000 4011 9305 ....E...$...@... 0x0010: c0a8 0306 ffff ffff d13d 1388 000c 6f88 .........=....o. 0x0020: 7465 7374 test ^C Message was send, but via PPTP to default destination. 2. I've not connected to PPTP server and don't have default route. [butcher@btr butcher]> netstat -rnf inet | grep default [butcher@btr butcher]> ./test test: sendto(): Network is unreachable test programm was fail with error. 3. I have the default route. [butcher@btr butcher]> sudo route add default server add net default: gateway server [butcher@btr butcher]> ./test [butcher@btr butcher]> sudo tcpdump -ni nve0 -XX udp port 5000 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on nve0, link-type EN10MB (Ethernet), capture size 96 bytes 19:29:51.988429 IP 192.168.4.234.54134 > 255.255.255.255.5000: UDP, length 4 0x0000: 0080 4836 9531 4255 5443 4821 0800 4500 ..H6.1BUTCH!..E. 0x0010: 0020 2459 0000 4011 90e2 c0a8 04ea ffff ..$Y..@......... 0x0020: ffff d376 1388 000c 6b6b 7465 7374 ...v....kktest ^C Message was send to default destination with router's destination MAC address. >How-To-Repeat: Always. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu Jun 29 09:51:34 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 161F816A403 for ; Thu, 29 Jun 2006 09:51:34 +0000 (UTC) (envelope-from jannmichaelhiolen@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4AFC243D55 for ; Thu, 29 Jun 2006 09:51:27 +0000 (GMT) (envelope-from jannmichaelhiolen@gmail.com) Received: by nz-out-0102.google.com with SMTP id 13so113563nzn for ; Thu, 29 Jun 2006 02:51:26 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type; b=ackYqyc8waNZ9ugocoQrdyZTz1a9DcZSkI7crWu+DaL1Xb3Sw59HzBBbRtVCvl0+Y+Vz7JyXVqgnN3HEBy2ODUZwylr6YEg4Tr/Sb9pN3hA50C0ZEpCYj3q2tEypsgUJcwSb3fKtqzN/XYDym2IekU5YcccBhPAErla1p81RIKo= Received: by 10.36.140.2 with SMTP id n2mr2714639nzd; Thu, 29 Jun 2006 02:51:25 -0700 (PDT) Received: by 10.36.250.12 with HTTP; Thu, 29 Jun 2006 02:51:24 -0700 (PDT) Message-ID: <8d3e42080606290251o587a76f9q489a3db3c48a0550@mail.gmail.com> Date: Thu, 29 Jun 2006 17:51:24 +0800 From: "jann michael hiolen" To: freebsd-bugs@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: fatal trap X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 09:51:34 -0000 hi guys, what is this error? /===start===/ Fatal trap 12: page fault while in kernel mode fault virtual address = 0x10 fault code = supervisor read, page not present instrution pointer = 0x20:0xc06b3a94 stack pointer = 0x20:0xc0c209f0 frame pointer = 0x20:0xc0c209f0 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pros1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 0 (swapper) trap number = 12 panic: page fault Uptime: 1s /===end===/ -- Regards, Jann Michael Hiolen Philippines,Cebu City From owner-freebsd-bugs@FreeBSD.ORG Thu Jun 29 10:28:29 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 AEC4F16A403 for ; Thu, 29 Jun 2006 10:28:29 +0000 (UTC) (envelope-from jannmichaelhiolen@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.200]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E60E448CC for ; Thu, 29 Jun 2006 10:28:28 +0000 (GMT) (envelope-from jannmichaelhiolen@gmail.com) Received: by nz-out-0102.google.com with SMTP id s18so123357nze for ; Thu, 29 Jun 2006 03:28:28 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=rVjqE6CPavHsJLuM6TazqiYvj5111v6x+lBVkD9K4/bI9Sj3SqSxnKcwqKmfdaEDMSrkujJMV+EdP27GERZmxiRsFkl3pehsIT4khDp1ozoRqu9xSd1n6kDqQ7NfBxARVMaOmR8S2uDT9AknsOcMKrbcUoPfYLhdIsuq39Jsn40= Received: by 10.36.10.20 with SMTP id 20mr2732622nzj; Thu, 29 Jun 2006 03:28:28 -0700 (PDT) Received: by 10.36.250.12 with HTTP; Thu, 29 Jun 2006 03:28:27 -0700 (PDT) Message-ID: <8d3e42080606290328x3f726834p679cbf7bb1ff4708@mail.gmail.com> Date: Thu, 29 Jun 2006 18:28:27 +0800 From: "jann michael hiolen" To: freebsd-bugs@freebsd.org In-Reply-To: <8d3e42080606290251o587a76f9q489a3db3c48a0550@mail.gmail.com> MIME-Version: 1.0 References: <8d3e42080606290251o587a76f9q489a3db3c48a0550@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Fwd: fatal trap X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 10:28:29 -0000 ---------- Forwarded message ---------- From: jann michael hiolen Date: Jun 29, 2006 5:51 PM Subject: fatal trap To: freebsd-bugs@freebsd.org hi guys, what is this error? /===start===/ Fatal trap 12: page fault while in kernel mode fault virtual address = 0x10 fault code = supervisor read, page not present instrution pointer = 0x20:0xc06b3a94 stack pointer = 0x20:0xc0c209f0 frame pointer = 0x20:0xc0c209f0 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pros1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 0 (swapper) trap number = 12 panic: page fault Uptime: 1s /===end===/ -- Regards, Jann Michael Hiolen Philippines,Cebu City -- Regards, Jann Michael Hiolen Philippines,Cebu City +63 9173287141 From owner-freebsd-bugs@FreeBSD.ORG Thu Jun 29 12:06:46 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 4E57F16A50B for ; Thu, 29 Jun 2006 12:06:46 +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 E9EA6448A5 for ; Thu, 29 Jun 2006 11:40:24 +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 k5TBeOQb063630 for ; Thu, 29 Jun 2006 11:40:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5TBeOUQ063629; Thu, 29 Jun 2006 11:40:24 GMT (envelope-from gnats) Date: Thu, 29 Jun 2006 11:40:24 GMT Message-Id: <200606291140.k5TBeOUQ063629@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: John Baldwin Cc: Subject: Re: kern/99094: panic: sleeping thread (Sleeping thread ... owns a non-sleepable lock) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: John Baldwin List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 12:06:46 -0000 The following reply was made to PR kern/99094; it has been noted by GNATS. From: John Baldwin To: bug-followup@freebsd.org, ltning-freebsd@anduin.net Cc: Subject: Re: kern/99094: panic: sleeping thread (Sleeping thread ... owns a non-sleepable lock) Date: Thu, 29 Jun 2006 07:26:17 -0400 You need to get a stack trace of the thread mentioned in the message that actually misbehaved. It actually should have been printed on the console when it panic'd since you have DDB in the kernel. -- John Baldwin From owner-freebsd-bugs@FreeBSD.ORG Thu Jun 29 12:36:04 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 8801C16A403; Thu, 29 Jun 2006 12:36:04 +0000 (UTC) (envelope-from bde@zeta.org.au) Received: from mailout2.pacific.net.au (mailout2.pacific.net.au [61.8.0.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C4A543DA1; Thu, 29 Jun 2006 12:36:04 +0000 (GMT) (envelope-from bde@zeta.org.au) Received: from mailproxy1.pacific.net.au (mailproxy1.pacific.net.au [61.8.2.162]) by mailout2.pacific.net.au (Postfix) with ESMTP id CD2D76E730; Thu, 29 Jun 2006 22:36:00 +1000 (EST) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailproxy1.pacific.net.au (8.13.4/8.13.4/Debian-3sarge1) with ESMTP id k5TCZvZi022685; Thu, 29 Jun 2006 22:35:58 +1000 Date: Thu, 29 Jun 2006 22:35:57 +1000 (EST) From: Bruce Evans X-X-Sender: bde@delplex.bde.org To: Dan Ponte In-Reply-To: <200606281814.k5SIEouW033968@fez.theamigan.net> Message-ID: <20060629214004.W78383@delplex.bde.org> References: <200606281814.k5SIEouW033968@fez.theamigan.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-bugs@freebsd.org, FreeBSD-gnats-submit@freebsd.org, dan@theamigan.net Subject: Re: bin/99585: [PATCH] Add option to tee(1) to also copy to standard error X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 12:36:04 -0000 On Wed, 28 Jun 2006, Dan Ponte wrote: >> Description: > I recently found myself in a situation where having tee(1) copy to standard error and standard output at the same time would be useful, so I implemented it. >> How-To-Repeat: > Find yourself in said situation. >> Fix: > Diff below. Why not use a standard utility (tee itself in this case)? genoutput | tee /dev/stderr | tee foo copies the stdout of `genoutput' to stderr and to file foo. This can be generalized to any number of copies on any numbers of file descriptors or files. The main problem with the utility method is is that the plumbing is very confusing even for only one extra pipeline stage. /dev/stderr in the above refers to the initial stderr so it isn't affected by redirection unless the pipeline stages are run in subshells. Running some of the stages in subshells makes the plumbing even more confusing. Bruce From owner-freebsd-bugs@FreeBSD.ORG Thu Jun 29 12: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 B612816A403 for ; Thu, 29 Jun 2006 12: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 3E1AB43D7E for ; Thu, 29 Jun 2006 12:40:25 +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 k5TCePPc067057 for ; Thu, 29 Jun 2006 12:40:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5TCeP5U067056; Thu, 29 Jun 2006 12:40:25 GMT (envelope-from gnats) Date: Thu, 29 Jun 2006 12:40:25 GMT Message-Id: <200606291240.k5TCeP5U067056@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Bruce Evans Cc: Subject: Re: bin/99585: [PATCH] Add option to tee(1) to also copy to standard error X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Bruce Evans List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 12:40:30 -0000 The following reply was made to PR bin/99585; it has been noted by GNATS. From: Bruce Evans To: Dan Ponte Cc: FreeBSD-gnats-submit@freebsd.org, dan@theamigan.net, freebsd-bugs@freebsd.org Subject: Re: bin/99585: [PATCH] Add option to tee(1) to also copy to standard error Date: Thu, 29 Jun 2006 22:35:57 +1000 (EST) On Wed, 28 Jun 2006, Dan Ponte wrote: >> Description: > I recently found myself in a situation where having tee(1) copy to standard error and standard output at the same time would be useful, so I implemented it. >> How-To-Repeat: > Find yourself in said situation. >> Fix: > Diff below. Why not use a standard utility (tee itself in this case)? genoutput | tee /dev/stderr | tee foo copies the stdout of `genoutput' to stderr and to file foo. This can be generalized to any number of copies on any numbers of file descriptors or files. The main problem with the utility method is is that the plumbing is very confusing even for only one extra pipeline stage. /dev/stderr in the above refers to the initial stderr so it isn't affected by redirection unless the pipeline stages are run in subshells. Running some of the stages in subshells makes the plumbing even more confusing. Bruce From owner-freebsd-bugs@FreeBSD.ORG Thu Jun 29 14:30: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 16B6116A403 for ; Thu, 29 Jun 2006 14:30:18 +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 2C5C444D45 for ; Thu, 29 Jun 2006 14:30:17 +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 k5TEUGwm072826 for ; Thu, 29 Jun 2006 14:30:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5TEUGY8072824; Thu, 29 Jun 2006 14:30:16 GMT (envelope-from gnats) Resent-Date: Thu, 29 Jun 2006 14:30:16 GMT Resent-Message-Id: <200606291430.k5TEUGY8072824@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, Den Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B548016A410 for ; Thu, 29 Jun 2006 14:24:22 +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 9017B44D4C for ; Thu, 29 Jun 2006 14:24:21 +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 k5TEOLYH099336 for ; Thu, 29 Jun 2006 14:24:21 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id k5TEOL2V099335; Thu, 29 Jun 2006 14:24:21 GMT (envelope-from nobody) Message-Id: <200606291424.k5TEOL2V099335@www.freebsd.org> Date: Thu, 29 Jun 2006 14:24:21 GMT From: Den To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: kern/99607: pppd fail kernel from more interrupts in serilal port (/dev/cuad0) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 14:30:18 -0000 >Number: 99607 >Category: kern >Synopsis: pppd fail kernel from more interrupts in serilal port (/dev/cuad0) >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Jun 29 14:30:16 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Den >Release: 6.1-RELEASE-p2 >Organization: >Environment: FreeBSD master.local 6.1-RELEASE-p2 FreeBSD 6.1-RELEASE-p2 #4: Sat Jun 24 23:48:55 YEKST 2006 root@master.local:/usr/src/sys/i386/compile/MY i386 >Description: Use pppd fail kernel from more interrupts in serilal port (/dev/cuad0) >How-To-Repeat: Use pppd and modem dial-up (50kb/s, serial port /dev/cuad0) from conect ISP. Get more messages: Jun 29 20:12:13 master kernel: sio0: 16 more interrupt-level buffer overf lows (total 16) Jun 29 20:12:14 master kernel: sio0: 83 more interrupt-level buffer overflows (t otal 99) Jun 29 20:12:16 master kernel: sio0: 16 more interrupt-level buffer overflows (t otal 115) Jun 29 20:12:37 master kernel: sio0: 16 more interrupt-level buffer overflows (t otal 131) Jun 29 20:12:48 master kernel: sio0: 16 more interrupt-level buffer overflows (t otal 147) And Fail kernel , frozen OS. >Fix: Don't use pppd, clear kernel, no pppd in her. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu Jun 29 15:55:02 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 083BC16A407; Thu, 29 Jun 2006 15:55:01 +0000 (UTC) (envelope-from dcp1990@saturn.atopia.net) Received: from saturn.atopia.net (saturn.atopia.net [72.36.141.58]) by mx1.FreeBSD.org (Postfix) with ESMTP id 049D44447A; Thu, 29 Jun 2006 15:54:58 +0000 (GMT) (envelope-from dcp1990@saturn.atopia.net) Received: by saturn.atopia.net (Postfix, from userid 1004) id 43F574AC45; Thu, 29 Jun 2006 11:54:57 -0400 (EDT) Date: Thu, 29 Jun 2006 11:54:57 -0400 From: Dan Ponte To: Bruce Evans Message-ID: <20060629155456.GA15303@neptune.atopia.net> References: <200606281814.k5SIEouW033968@fez.theamigan.net> <20060629214004.W78383@delplex.bde.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060629214004.W78383@delplex.bde.org> User-Agent: Mutt/1.5.11 Cc: freebsd-bugs@freebsd.org, FreeBSD-gnats-submit@freebsd.org Subject: Re: bin/99585: [PATCH] Add option to tee(1) to also copy to standard error X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 15:55:02 -0000 On Thu, Jun 29, 2006 at 10:35:57PM +1000, Bruce Evans was witnessed plotting the following conspiracy: > On Wed, 28 Jun 2006, Dan Ponte wrote: > > >>Description: > > I recently found myself in a situation where having tee(1) copy to > > standard error and standard output at the same time would be useful, > > so I implemented it. > >>How-To-Repeat: > > Find yourself in said situation. > >>Fix: > > Diff below. > > Why not use a standard utility (tee itself in this case)? > > genoutput | tee /dev/stderr | tee foo > > copies the stdout of `genoutput' to stderr and to file foo. This can be > generalized to any number of copies on any numbers of file descriptors > or files. > > The main problem with the utility method is is that the plumbing is > very confusing even for only one extra pipeline stage. /dev/stderr > in the above refers to the initial stderr so it isn't affected by > redirection unless the pipeline stages are run in subshells. Running > some of the stages in subshells makes the plumbing even more confusing. > > Bruce > Hrm...this is a good idea. I never thought about that. -Dan -- Dan Ponte http://www.theamigan.net/ -- ICQ: 175527699 Jabber: dan@styx.theamigan.net -- AIM: amiganWS/amigan940 To get something done, a committee should consist of no more than three persons, two of them absent. From owner-freebsd-bugs@FreeBSD.ORG Thu Jun 29 16:01:10 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 3348F16A640 for ; Thu, 29 Jun 2006 16:01:10 +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 5385943D69 for ; Thu, 29 Jun 2006 16:00:46 +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 k5TG0kol078900 for ; Thu, 29 Jun 2006 16:00:46 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5TG0kw1078899; Thu, 29 Jun 2006 16:00:46 GMT (envelope-from gnats) Date: Thu, 29 Jun 2006 16:00:46 GMT Message-Id: <200606291600.k5TG0kw1078899@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Dan Ponte Cc: Subject: Re: bin/99585: [PATCH] Add option to tee(1) to also copy to standard error X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dan Ponte List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 16:01:10 -0000 The following reply was made to PR bin/99585; it has been noted by GNATS. From: Dan Ponte To: Bruce Evans Cc: FreeBSD-gnats-submit@freebsd.org, freebsd-bugs@freebsd.org Subject: Re: bin/99585: [PATCH] Add option to tee(1) to also copy to standard error Date: Thu, 29 Jun 2006 11:54:57 -0400 On Thu, Jun 29, 2006 at 10:35:57PM +1000, Bruce Evans was witnessed plotting the following conspiracy: > On Wed, 28 Jun 2006, Dan Ponte wrote: > > >>Description: > > I recently found myself in a situation where having tee(1) copy to > > standard error and standard output at the same time would be useful, > > so I implemented it. > >>How-To-Repeat: > > Find yourself in said situation. > >>Fix: > > Diff below. > > Why not use a standard utility (tee itself in this case)? > > genoutput | tee /dev/stderr | tee foo > > copies the stdout of `genoutput' to stderr and to file foo. This can be > generalized to any number of copies on any numbers of file descriptors > or files. > > The main problem with the utility method is is that the plumbing is > very confusing even for only one extra pipeline stage. /dev/stderr > in the above refers to the initial stderr so it isn't affected by > redirection unless the pipeline stages are run in subshells. Running > some of the stages in subshells makes the plumbing even more confusing. > > Bruce > Hrm...this is a good idea. I never thought about that. -Dan -- Dan Ponte http://www.theamigan.net/ -- ICQ: 175527699 Jabber: dan@styx.theamigan.net -- AIM: amiganWS/amigan940 To get something done, a committee should consist of no more than three persons, two of them absent. From owner-freebsd-bugs@FreeBSD.ORG Thu Jun 29 16:12:50 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 8479E16A415; Thu, 29 Jun 2006 16:12:50 +0000 (UTC) (envelope-from rivers@dignus.com) Received: from dignus.com (client196-2.dsl.intrex.net [209.42.196.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E56B43D5A; Thu, 29 Jun 2006 16:12:47 +0000 (GMT) (envelope-from rivers@dignus.com) Received: from lakes.dignus.com (lakes.dignus.com [10.1.0.3]) by dignus.com (8.13.1/8.12.9) with ESMTP id k5TGBnlR001704; Thu, 29 Jun 2006 12:11:49 -0400 (EDT) (envelope-from rivers@dignus.com) Received: (from rivers@localhost) by lakes.dignus.com (8.11.6/8.11.3) id k5TGDA302019; Thu, 29 Jun 2006 12:13:10 -0400 (EDT) (envelope-from rivers) Date: Thu, 29 Jun 2006 12:13:10 -0400 (EDT) From: Thomas David Rivers Message-Id: <200606291613.k5TGDA302019@lakes.dignus.com> To: bde@zeta.org.au, dcp1990@neptune.atopia.net In-Reply-To: <20060629155456.GA15303@neptune.atopia.net> X-Spam-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED autolearn=failed version=3.0.1 X-Spam-Checker-Version: SpamAssassin 3.0.1 (2004-10-22) on office.dignus.com Cc: freebsd-bugs@freebsd.org, FreeBSD-gnats-submit@freebsd.org Subject: Re: bin/99585: [PATCH] Add option to tee(1) to also copy to standard error X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 16:12:50 -0000 > > >>Description: > > I recently found myself in a situation where having tee(1) copy to > > standard error and standard output at the same time would be useful, > > so I implemented it. > >>How-To-Repeat: > > Find yourself in said situation. > >>Fix: > > Diff below. > > Why not use a standard utility (tee itself in this case)? > > genoutput | tee /dev/stderr | tee foo > > copies the stdout of `genoutput' to stderr and to file foo. This can be > generalized to any number of copies on any numbers of file descriptors > or files. > Uhh... What's wrong with: genoutput 2>&1 | tee foo - Dave Rivers - -- rivers@dignus.com Work: (919) 676-0847 Get your mainframe programming tools at http://www.dignus.com From owner-freebsd-bugs@FreeBSD.ORG Thu Jun 29 16:20:13 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 36F8D16A492 for ; Thu, 29 Jun 2006 16:20:13 +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 820E543D77 for ; Thu, 29 Jun 2006 16:20:12 +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 k5TGKCUY079850 for ; Thu, 29 Jun 2006 16:20:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5TGKChr079848; Thu, 29 Jun 2006 16:20:12 GMT (envelope-from gnats) Date: Thu, 29 Jun 2006 16:20:12 GMT Message-Id: <200606291620.k5TGKChr079848@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Thomas David Rivers Cc: Subject: Re: bin/99585: [PATCH] Add option to tee(1) to also copy to standard error X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Thomas David Rivers List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 16:20:13 -0000 The following reply was made to PR bin/99585; it has been noted by GNATS. From: Thomas David Rivers To: bde@zeta.org.au, dcp1990@neptune.atopia.net Cc: freebsd-bugs@freebsd.org, FreeBSD-gnats-submit@freebsd.org Subject: Re: bin/99585: [PATCH] Add option to tee(1) to also copy to standard error Date: Thu, 29 Jun 2006 12:13:10 -0400 (EDT) > > >>Description: > > I recently found myself in a situation where having tee(1) copy to > > standard error and standard output at the same time would be useful, > > so I implemented it. > >>How-To-Repeat: > > Find yourself in said situation. > >>Fix: > > Diff below. > > Why not use a standard utility (tee itself in this case)? > > genoutput | tee /dev/stderr | tee foo > > copies the stdout of `genoutput' to stderr and to file foo. This can be > generalized to any number of copies on any numbers of file descriptors > or files. > Uhh... What's wrong with: genoutput 2>&1 | tee foo - Dave Rivers - -- rivers@dignus.com Work: (919) 676-0847 Get your mainframe programming tools at http://www.dignus.com From owner-freebsd-bugs@FreeBSD.ORG Thu Jun 29 17:38:07 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 3433216A410; Thu, 29 Jun 2006 17:38:07 +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 DE3CE43D6E; Thu, 29 Jun 2006 17:38:06 +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 k5THc6OY085381; Thu, 29 Jun 2006 17:38:06 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5THc6ev085376; Thu, 29 Jun 2006 17:38:06 GMT (envelope-from linimon) Date: Thu, 29 Jun 2006 17:38:06 GMT From: Mark Linimon Message-Id: <200606291738.k5THc6ev085376@freefall.freebsd.org> To: dcp1990@neptune.atopia.net, linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: bin/99585: [PATCH] Add option to tee(1) to also copy to standard error X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 17:38:07 -0000 Synopsis: [PATCH] Add option to tee(1) to also copy to standard error State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Thu Jun 29 17:37:19 UTC 2006 State-Changed-Why: There are alternative approaches available with the existing tools. But thanks for the submission. http://www.freebsd.org/cgi/query-pr.cgi?pr=99585 From owner-freebsd-bugs@FreeBSD.ORG Thu Jun 29 20:50:23 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 A36C616A417 for ; Thu, 29 Jun 2006 20:50:23 +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 003F443D6A for ; Thu, 29 Jun 2006 20:50: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 k5TKoMKG095653 for ; Thu, 29 Jun 2006 20:50:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5TKoMEt095652; Thu, 29 Jun 2006 20:50:22 GMT (envelope-from gnats) Resent-Date: Thu, 29 Jun 2006 20:50:22 GMT Resent-Message-Id: <200606292050.k5TKoMEt095652@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Richard Bejtlich Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A710316A63B for ; Thu, 29 Jun 2006 20:43:28 +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 59E8544950 for ; Thu, 29 Jun 2006 19:51:31 +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 k5TJpVpG027643 for ; Thu, 29 Jun 2006 19:51:31 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id k5TJpVql027642; Thu, 29 Jun 2006 19:51:31 GMT (envelope-from nobody) Message-Id: <200606291951.k5TJpVql027642@www.freebsd.org> Date: Thu, 29 Jun 2006 19:51:31 GMT From: Richard Bejtlich To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: misc/99619: fragroute package not including dependencies X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 20:50:23 -0000 >Number: 99619 >Category: misc >Synopsis: fragroute package not including dependencies >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Jun 29 20:50:22 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Richard Bejtlich >Release: 6.1 REL >Organization: TaoSecurity >Environment: FreeBSD poweredge.taosecurity.com 6.1-RELEASE FreeBSD 6.1-RELEASE #0: Sun May 7 04:42:56 UTC 2006 root@opus.cse.buffalo.edu:/usr/obj/usr/src/sys/SMP i386 >Description: I just installed fragroute from the 6-STABLE package. It did not automatically add the dependent packages libdnet or libevent. >How-To-Repeat: pkg_add -vr fragroute # fragtest /libexec/ld-elf.so.1: Shared object "libdnet.so.1" not found, required by "fragtest" (after adding libdnet) # fragtest /libexec/ld-elf.so.1: Shared object "libevent-1.1a.so.1" not found, required by "fragtest" >Fix: # pkg_add -vr libdnet looking up ftp.freebsd.org connecting to ftp.freebsd.org:21 setting passive mode opening data connection initiating transfer Fetching ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-6-stable/Latest/libdnet.tbz...x +CONTENTS x +COMMENT x +DESC x +MTREE_DIRS x man/man3/dnet.3.gz x man/man8/dnet.8.gz x bin/dnet-config x sbin/dnet x lib/libdnet.a x lib/libdnet.la x lib/libdnet.so x lib/libdnet.so.1 x include/dnet/addr.h x include/dnet/arp.h x include/dnet/blob.h x include/dnet/eth.h x include/dnet/fw.h x include/dnet/icmp.h x include/dnet/intf.h x include/dnet/ip.h x include/dnet/ip6.h x include/dnet/os.h x include/dnet/rand.h x include/dnet/route.h x include/dnet/tcp.h x include/dnet/tun.h x include/dnet/udp.h x include/dnet.h tar command returns 0 status Done. extract: Package name is libdnet-1.10_1 extract: CWD to /usr/local extract: /usr/local/man/man3/dnet.3.gz extract: /usr/local/man/man8/dnet.8.gz extract: /usr/local/bin/dnet-config extract: /usr/local/sbin/dnet extract: /usr/local/lib/libdnet.a extract: /usr/local/lib/libdnet.la extract: /usr/local/lib/libdnet.so extract: /usr/local/lib/libdnet.so.1 extract: /usr/local/include/dnet/addr.h extract: /usr/local/include/dnet/arp.h extract: /usr/local/include/dnet/blob.h extract: /usr/local/include/dnet/eth.h extract: /usr/local/include/dnet/fw.h extract: /usr/local/include/dnet/icmp.h extract: /usr/local/include/dnet/intf.h extract: /usr/local/include/dnet/ip.h extract: /usr/local/include/dnet/ip6.h extract: /usr/local/include/dnet/os.h extract: /usr/local/include/dnet/rand.h extract: /usr/local/include/dnet/route.h extract: /usr/local/include/dnet/tcp.h extract: /usr/local/include/dnet/tun.h extract: /usr/local/include/dnet/udp.h extract: /usr/local/include/dnet.h extract: execute '/sbin/ldconfig -m /usr/local/lib' extract: CWD to . Running mtree for libdnet-1.10_1.. mtree -U -f +MTREE_DIRS -d -e -p /usr/local >/dev/null Attempting to record package into /var/db/pkg/libdnet-1.10_1.. Package libdnet-1.10_1 registered in /var/db/pkg/libdnet-1.10_1 # pkg_add -vr libevent looking up ftp.freebsd.org connecting to ftp.freebsd.org:21 setting passive mode opening data connection initiating transfer Fetching ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-6-stable/Latest/libevent.tbz...x +CONTENTS x +COMMENT x +DESC x +MTREE_DIRS x man/man3/event.3.gz x man/man3/event_init.3.gz x man/man3/event_dispatch.3.gz x man/man3/event_loop.3.gz x man/man3/event_loopexit.3.gz x man/man3/event_set.3.gz x man/man3/event_add.3.gz x man/man3/event_del.3.gz x man/man3/event_once.3.gz x man/man3/event_pending.3.gz x man/man3/event_initialized.3.gz x man/man3/event_priority_init.3.gz x man/man3/event_priority_set.3.gz x man/man3/evtimer_set.3.gz x man/man3/evtimer_add.3.gz x man/man3/evtimer_del.3.gz x man/man3/evtimer_pending.3.gz x man/man3/evtimer_initialized.3.gz x man/man3/signal_set.3.gz x man/man3/signal_add.3.gz x man/man3/signal_del.3.gz x man/man3/signal_pending.3.gz x man/man3/signal_initialized.3.gz x man/man3/bufferevent_new.3.gz x man/man3/bufferevent_free.3.gz x man/man3/bufferevent_write.3.gz x man/man3/bufferevent_write_buffer.3.gz x man/man3/bufferevent_read.3.gz x man/man3/bufferevent_enable.3.gz x man/man3/bufferevent_disable.3.gz x man/man3/bufferevent_settimeout.3.gz x man/man3/evbuffer_new.3.gz x man/man3/evbuffer_free.3.gz x man/man3/evbuffer_add.3.gz x man/man3/evbuffer_add_buffer.3.gz x man/man3/evbuffer_add_printf.3.gz x man/man3/evbuffer_drain.3.gz x man/man3/evbuffer_write.3.gz x man/man3/evbuffer_read.3.gz x man/man3/evbuffer_find.3.gz x include/event.h x lib/libevent-1.1a.so x lib/libevent-1.1a.so.1 x lib/libevent.a x lib/libevent.la x lib/libevent.so tar command returns 0 status Done. extract: Package name is libevent-1.1a_1 extract: CWD to /usr/local extract: /usr/local/man/man3/event.3.gz extract: /usr/local/man/man3/event_init.3.gz extract: /usr/local/man/man3/event_dispatch.3.gz extract: /usr/local/man/man3/event_loop.3.gz extract: /usr/local/man/man3/event_loopexit.3.gz extract: /usr/local/man/man3/event_set.3.gz extract: /usr/local/man/man3/event_add.3.gz extract: /usr/local/man/man3/event_del.3.gz extract: /usr/local/man/man3/event_once.3.gz extract: /usr/local/man/man3/event_pending.3.gz extract: /usr/local/man/man3/event_initialized.3.gz extract: /usr/local/man/man3/event_priority_init.3.gz extract: /usr/local/man/man3/event_priority_set.3.gz extract: /usr/local/man/man3/evtimer_set.3.gz extract: /usr/local/man/man3/evtimer_add.3.gz extract: /usr/local/man/man3/evtimer_del.3.gz extract: /usr/local/man/man3/evtimer_pending.3.gz extract: /usr/local/man/man3/evtimer_initialized.3.gz extract: /usr/local/man/man3/signal_set.3.gz extract: /usr/local/man/man3/signal_add.3.gz extract: /usr/local/man/man3/signal_del.3.gz extract: /usr/local/man/man3/signal_pending.3.gz extract: /usr/local/man/man3/signal_initialized.3.gz extract: /usr/local/man/man3/bufferevent_new.3.gz extract: /usr/local/man/man3/bufferevent_free.3.gz extract: /usr/local/man/man3/bufferevent_write.3.gz extract: /usr/local/man/man3/bufferevent_write_buffer.3.gz extract: /usr/local/man/man3/bufferevent_read.3.gz extract: /usr/local/man/man3/bufferevent_enable.3.gz extract: /usr/local/man/man3/bufferevent_disable.3.gz extract: /usr/local/man/man3/bufferevent_settimeout.3.gz extract: /usr/local/man/man3/evbuffer_new.3.gz extract: /usr/local/man/man3/evbuffer_free.3.gz extract: /usr/local/man/man3/evbuffer_add.3.gz extract: /usr/local/man/man3/evbuffer_add_buffer.3.gz extract: /usr/local/man/man3/evbuffer_add_printf.3.gz extract: /usr/local/man/man3/evbuffer_drain.3.gz extract: /usr/local/man/man3/evbuffer_write.3.gz extract: /usr/local/man/man3/evbuffer_read.3.gz extract: /usr/local/man/man3/evbuffer_find.3.gz extract: /usr/local/include/event.h extract: /usr/local/lib/libevent-1.1a.so extract: /usr/local/lib/libevent-1.1a.so.1 extract: /usr/local/lib/libevent.a extract: /usr/local/lib/libevent.la extract: /usr/local/lib/libevent.so extract: execute '/sbin/ldconfig -m /usr/local/lib' extract: CWD to . Running mtree for libevent-1.1a_1.. mtree -U -f +MTREE_DIRS -d -e -p /usr/local >/dev/null Attempting to record package into /var/db/pkg/libevent-1.1a_1.. Package libevent-1.1a_1 registered in /var/db/pkg/libevent-1.1a_1 poweredge:/root# rehash poweredge:/root# fragtest Usage: fragtest TESTS ... where TESTS is any combination of the following (or "all"): ping prerequisite for all tests ip-opt determine supported IP options ip-tracert determine path to target frag try 8-byte IP fragments frag-new try 8-byte fwd-overlapping IP fragments, favoring new data frag-old try 8-byte fwd-overlapping IP fragments, favoring old data frag-timeout determine IP fragment reassembly timeout >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Jun 30 00:14:00 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 2A89016A403; Fri, 30 Jun 2006 00:14:00 +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 DB31345530; Fri, 30 Jun 2006 00:13:59 +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 k5U0DxuB006635; Fri, 30 Jun 2006 00:13:59 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5U0DxqH006631; Fri, 30 Jun 2006 00:13:59 GMT (envelope-from linimon) Date: Fri, 30 Jun 2006 00:13:59 GMT From: Mark Linimon Message-Id: <200606300013.k5U0DxqH006631@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/99619: security/fragroute package not including dependencies X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jun 2006 00:14:00 -0000 Old Synopsis: fragroute package not including dependencies New Synopsis: security/fragroute package not including dependencies Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Fri Jun 30 00:12:55 UTC 2006 Responsible-Changed-Why: Make this a ports PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=99619 From owner-freebsd-bugs@FreeBSD.ORG Fri Jun 30 02:00: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 2A90316A40F for ; Fri, 30 Jun 2006 02:00: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 5FB3343D55 for ; Fri, 30 Jun 2006 02: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 k5U20aH0014118 for ; Fri, 30 Jun 2006 02: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 k5U20Zfx014117; Fri, 30 Jun 2006 02:00:35 GMT (envelope-from gnats) Resent-Date: Fri, 30 Jun 2006 02:00:35 GMT Resent-Message-Id: <200606300200.k5U20Zfx014117@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, Arseny Nasokin Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 86CA516A4A0 for ; Fri, 30 Jun 2006 01:55:27 +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 5642243D48 for ; Fri, 30 Jun 2006 01:55:27 +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 k5U1tR69050041 for ; Fri, 30 Jun 2006 01:55:27 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id k5U1tROa050040; Fri, 30 Jun 2006 01:55:27 GMT (envelope-from nobody) Message-Id: <200606300155.k5U1tROa050040@www.freebsd.org> Date: Fri, 30 Jun 2006 01:55:27 GMT From: Arseny Nasokin To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: misc/99627: [PATCH] make update & CVSROOT X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jun 2006 02:00:37 -0000 >Number: 99627 >Category: misc >Synopsis: [PATCH] make update & CVSROOT >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jun 30 02:00:35 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Arseny Nasokin >Release: FreeBSD 7.0-CURRENT >Organization: Moscow State University >Environment: affected many years. >Description: CVSROOT variable, defined by make(1), not in make(1) envirounment, is not used in update via CVS. >How-To-Repeat: !!! updating with CVS, not CVSUp !!! cd /usr/src && make update -DCVS_UPDATE CVSROOT='any-string' -------------------------------------------------------------- >Fix: There is patch for lastest Makefile.inc1 for CURRENT, but same patch is for othes branches. --- Makefile.inc1.orig Tue Jun 6 22:07:58 2006 +++ Makefile.inc1 Fri Jun 30 05:45:29 2006 @@ -79,6 +79,9 @@ .endif CVS?= cvs +.if defined(CVSROOT) && !empty(CVSROOT) +CVS:= ${CVS} -d ${CVSROOT} +.endif CVSFLAGS?= -A -P -d -I! SUP?= /usr/bin/csup SUPFLAGS?= -g -L 2 >Release-Note: >Audit-Trail: >Unformatted: >>> Updating /usr/src from CVS repository any-string -------------------------------------------------------------- cd /usr/src; cvs -R -q update -A -P -d -I! ..(normal cvs update output) From owner-freebsd-bugs@FreeBSD.ORG Fri Jun 30 05:50:22 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 A2F9216A4AB for ; Fri, 30 Jun 2006 05:50:22 +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 143E243D5F for ; Fri, 30 Jun 2006 05:50:15 +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 k5U5oEZM032150 for ; Fri, 30 Jun 2006 05:50:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5U5oE8A032147; Fri, 30 Jun 2006 05:50:14 GMT (envelope-from gnats) Resent-Date: Fri, 30 Jun 2006 05:50:14 GMT Resent-Message-Id: <200606300550.k5U5oE8A032147@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, Cheng-Lung Sung Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C3FF16A403 for ; Fri, 30 Jun 2006 05:43:36 +0000 (UTC) (envelope-from clsung@going04.iis.sinica.edu.tw) Received: from going04.iis.sinica.edu.tw (going04.iis.sinica.edu.tw [140.109.19.154]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C9DB43D48 for ; Fri, 30 Jun 2006 05:43:36 +0000 (GMT) (envelope-from clsung@going04.iis.sinica.edu.tw) Received: by going04.iis.sinica.edu.tw (Postfix, from userid 1002) id AEC262844B; Fri, 30 Jun 2006 13:45:35 +0800 (CST) Message-Id: <20060630054535.AEC262844B@going04.iis.sinica.edu.tw> Date: Fri, 30 Jun 2006 13:45:35 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/99632: [typo] sys/kern/kern_thread.c X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Cheng-Lung Sung List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jun 2006 05:50:22 -0000 >Number: 99632 >Category: kern >Synopsis: [typo] sys/kern/kern_thread.c >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Fri Jun 30 05:50:14 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 6.1-STABLE i386 >Organization: >Environment: System: FreeBSD going04.iis.sinica.edu.tw 6.1-STABLE FreeBSD 6.1-STABLE #20: Tue Jun 6 10:27:46 CST 2006 root@going04.iis.sinica.edu.tw:/usr/obj/usr/src/sys/GOING04 i386 >Description: accellerated shoule be accelerated >How-To-Repeat: >Fix: --- sys/kern/kern_thread.c.orig Fri Apr 7 10:40:16 2006 +++ sys/kern/kern_thread.c Fri Jun 30 13:42:15 2006 @@ -698,7 +698,7 @@ * There are no threads in user mode. Threads in the kernel must be * allowed to continue until they get to the user boundary. They may even * copy out their return values and data before suspending. They may however be - * accellerated in reaching the user boundary as we will wake up + * accelerated in reaching the user boundary as we will wake up * any sleeping threads that are interruptable. (PCATCH). */ int >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Jun 30 08:12:14 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 3BD6616A407; Fri, 30 Jun 2006 08:12:14 +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 ECD5543D45; Fri, 30 Jun 2006 08:12:13 +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 k5U8CDDG041515; Fri, 30 Jun 2006 08:12:13 GMT (envelope-from maxim@freefall.freebsd.org) Received: (from maxim@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5U8CD9k041511; Fri, 30 Jun 2006 08:12:13 GMT (envelope-from maxim) Date: Fri, 30 Jun 2006 08:12:13 GMT From: Maxim Konovalov Message-Id: <200606300812.k5U8CD9k041511@freefall.freebsd.org> To: clsung@FreeBSD.org, maxim@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/99632: [typo] sys/kern/kern_thread.c X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jun 2006 08:12:14 -0000 Synopsis: [typo] sys/kern/kern_thread.c State-Changed-From-To: open->closed State-Changed-By: maxim State-Changed-When: Fri Jun 30 08:11:14 UTC 2006 State-Changed-Why: Fixed. See no problem if you commit such a trivial fix yourself. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=99632 From owner-freebsd-bugs@FreeBSD.ORG Fri Jun 30 09:30:16 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 9E3F416A416 for ; Fri, 30 Jun 2006 09:30:16 +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 558BF43D8C for ; Fri, 30 Jun 2006 09:30:08 +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 k5U9U8CB045920 for ; Fri, 30 Jun 2006 09:30:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5U9U8LI045919; Fri, 30 Jun 2006 09:30:08 GMT (envelope-from gnats) Resent-Date: Fri, 30 Jun 2006 09:30:08 GMT Resent-Message-Id: <200606300930.k5U9U8LI045919@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, George Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC90F16A415 for ; Fri, 30 Jun 2006 09:21:34 +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 74C3743D45 for ; Fri, 30 Jun 2006 09:21:34 +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 k5U9LWFm065539 for ; Fri, 30 Jun 2006 09:21:32 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id k5U9LWkW065538; Fri, 30 Jun 2006 09:21:32 GMT (envelope-from nobody) Message-Id: <200606300921.k5U9LWkW065538@www.freebsd.org> Date: Fri, 30 Jun 2006 09:21:32 GMT From: George To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: misc/99639: FreeBSD 4.11 hangs while trying to play sound on ICH4 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jun 2006 09:30:16 -0000 >Number: 99639 >Category: misc >Synopsis: FreeBSD 4.11 hangs while trying to play sound on ICH4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jun 30 09:30:07 GMT 2006 >Closed-Date: >Last-Modified: >Originator: George >Release: FreeBSD 4.11 >Organization: >Environment: FreeBSD yz.iptelecom.net.ua 4.11-STABLE FreeBSD 4.11-STABLE #53: Wed Jun 21 18:27:49 EEST 2006 root@yz.iptelecom.net.ua:/usr/src/sys/compile/YZ i386 >Description: Intel ICH4 chip integrated (AC'97 codec, RealTek ALC202A) device pcm compiled in kernel system hags after a few seconds of playing sound or just opening /dev/dsp device >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Jun 30 10:22:28 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 9B59A16A40F for ; Fri, 30 Jun 2006 10:22:28 +0000 (UTC) (envelope-from andre@freebsd.org) Received: from c00l3r.networx.ch (c00l3r.networx.ch [62.48.2.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23A43445F3 for ; Fri, 30 Jun 2006 10:22:26 +0000 (GMT) (envelope-from andre@freebsd.org) Received: (qmail 95954 invoked from network); 30 Jun 2006 10:20:09 -0000 Received: from c00l3r.networx.ch (HELO [127.0.0.1]) ([62.48.2.2]) (envelope-sender ) by c00l3r.networx.ch (qmail-ldap-1.03) with SMTP for ; 30 Jun 2006 10:20:09 -0000 Message-ID: <44A4FB69.1070609@freebsd.org> Date: Fri, 30 Jun 2006 12:22:33 +0200 From: Andre Oppermann User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) MIME-Version: 1.0 To: "Andrey V. Elsukov" References: <200606282026.k5SKQF76000393@freefall.freebsd.org> <44A36B44.1030100@yandex.ru> In-Reply-To: <44A36B44.1030100@yandex.ru> Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 7bit Cc: Robert Watson , freebsd-bugs@FreeBSD.org, Gleb Smirnoff , Bruce M Simpson , citrin@citrin.ru Subject: Re: kern/99558: FreeBSD 6.1 can't send packets to INADDR_BROADCAST X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jun 2006 10:22:28 -0000 Andrey V. Elsukov wrote: > Bruce M Simpson wrote: >> Please read the manual page ip(4) for information on the IP_ONESBCAST >> option. The INADDR_BROADCAST destination is by its nature non specific >> and link local therefore you need to use the IP_ONESBCAST option to >> cause undirected broadcasts to be sent on a particular interface. >> >> http://www.freebsd.org/cgi/query-pr.cgi?pr=99558 > > Ok. I've tested 5.4-STABLE. > Without IP_ONESBCAST: > 09:24:50.293393 IP 10.0.0.4.5000 > 10.0.7.255.5000: UDP, length: 4 > 0x0000: ffff ffff ffff 0007 e909 d5b3 0800 4500 ..............E. > 0x0010: 0020 24d7 0000 4011 39f4 0a00 0004 0a00 ..$...@.9....... > 0x0020: 07ff 1388 1388 000c 1c20 7465 7374 ..........test > > With IP_ONESBCAST: > 09:28:08.275418 IP 10.0.0.4.54715 > 255.255.255.255.5000: UDP,length:4 > 0x0000: ffff ffff ffff 0007 e909 d5b3 0800 4500 ..............E. > 0x0010: 0020 8987 0000 4011 e742 0a00 0004 ffff ......@..B...... > 0x0020: ffff d5bb 1388 000c 0a21 7465 7374 .........!test > > In result we have difference only in IP destination address. > I want to pay attention that a Ethernet destination address is a > ethernet broadcast! > > Now for 6.1-STABLE. Without IP_ONESBCAST: > 10:43:15.384080 IP 172.21.81.19.58298 > 255.255.255.255.5000: UDP, length 4 > 0x0000: 0011 936b 3c91 0080 4819 86df 0800 4500 ...k<...H.....E. > 0x0010: 0020 a670 0000 4011 d734 ac15 5113 ffff ...p..@..4..Q... > 0x0020: ffff e3ba 1388 000c 2391 7465 7374 0000 ........#.test.. > 0x0030: 0000 0000 0000 0000 0000 0000 ............ > > With IP_ONESBCAST: > 10:44:20.320314 IP 172.21.81.19.53276 > 255.255.255.255.5000: UDP, length 4 > 0x0000: 0011 936b 3c91 0080 4819 86df 0800 4500 ...k<...H.....E. > 0x0010: 0020 a998 0000 4011 d40c ac15 5113 ffff ......@.....Q... > 0x0020: ffff d01c 1388 000c 372f 7465 7374 0000 ........7/test.. > 0x0030: 0000 0000 0000 0000 0000 0000 ............ > > In result we have an identical datagrams with *incorrect* ethernet > destination addresses. When my system don't have default route, he > can not send broadcast. I've got error message "sendto(): Network is > unreachable"! The attached patch should fix the problem with SENDONES (untested). -- Andre Index: net/if.c =================================================================== RCS file: /home/ncvs/src/sys/net/if.c,v retrieving revision 1.259 diff -u -p -r1.259 if.c --- net/if.c 21 Jun 2006 06:02:35 -0000 1.259 +++ net/if.c 30 Jun 2006 10:20:19 -0000 @@ -1007,6 +1007,33 @@ done: } /* + * Locate an interface based on the broadcast address. + */ +/* ARGSUSED */ +struct ifaddr * +ifa_ifwithbroadaddr(struct sockaddr *addr) +{ + struct ifnet *ifp; + struct ifaddr *ifa; + + IFNET_RLOCK(); + TAILQ_FOREACH(ifp, &ifnet, if_link) + TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) { + if (ifa->ifa_addr->sa_family != addr->sa_family) + continue; + if ((ifp->if_flags & IFF_BROADCAST) && + ifa->ifa_broadaddr && + ifa->ifa_broadaddr->sa_len != 0 && + sa_equal(ifa->ifa_broadaddr, addr)) + goto done; + } + ifa = NULL; +done: + IFNET_RUNLOCK(); + return (ifa); +} + +/* * Locate the point to point interface with a given destination address. */ /*ARGSUSED*/ Index: net/if_var.h =================================================================== RCS file: /home/ncvs/src/sys/net/if_var.h,v retrieving revision 1.107 diff -u -p -r1.107 if_var.h --- net/if_var.h 19 Jun 2006 22:20:44 -0000 1.107 +++ net/if_var.h 30 Jun 2006 10:20:19 -0000 @@ -682,6 +682,7 @@ int ifpromisc(struct ifnet *, int); struct ifnet *ifunit(const char *); struct ifaddr *ifa_ifwithaddr(struct sockaddr *); +struct ifaddr *ifa_ifwithbroadaddr(struct sockaddr *); struct ifaddr *ifa_ifwithdstaddr(struct sockaddr *); struct ifaddr *ifa_ifwithnet(struct sockaddr *); struct ifaddr *ifa_ifwithroute(int, struct sockaddr *, struct sockaddr *); Index: netinet/ip_output.c =================================================================== RCS file: /home/ncvs/src/sys/netinet/ip_output.c,v retrieving revision 1.257 diff -u -p -r1.257 ip_output.c --- netinet/ip_output.c 21 May 2006 17:52:08 -0000 1.257 +++ netinet/ip_output.c 30 Jun 2006 10:20:20 -0000 @@ -198,6 +198,15 @@ again: ifp = ia->ia_ifp; ip->ip_ttl = 1; isbroadcast = in_broadcast(dst->sin_addr, ifp); + } else if (flags & IP_SENDONES) { + if ((ia = ifatoia(ifa_ifwithbroadaddr(sintosa(dst)))) == NULL) { + ipstat.ips_noroute++; + error = ENETUNREACH; + goto bad; + } + ifp = ia->ia_ifp; + ip->ip_dst.s_addr = INADDR_BROADCAST; + isbroadcast = 1; } else if (IN_MULTICAST(ntohl(ip->ip_dst.s_addr)) && imo != NULL && imo->imo_multicast_ifp != NULL) { /* @@ -381,8 +390,6 @@ again: error = EMSGSIZE; goto bad; } - if (flags & IP_SENDONES) - ip->ip_dst.s_addr = INADDR_BROADCAST; m->m_flags |= M_BCAST; } else { m->m_flags &= ~M_BCAST; From owner-freebsd-bugs@FreeBSD.ORG Fri Jun 30 11:51:34 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 03F7016A403; Fri, 30 Jun 2006 11:51:34 +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 AD38B4463C; Fri, 30 Jun 2006 11:51:33 +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 k5UBpXOl055368; Fri, 30 Jun 2006 11:51:33 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5UBpXLM055364; Fri, 30 Jun 2006 11:51:33 GMT (envelope-from linimon) Date: Fri, 30 Jun 2006 11:51:33 GMT From: Mark Linimon Message-Id: <200606301151.k5UBpXLM055364@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-multimedia@FreeBSD.org Cc: Subject: Re: kern/99639: [sound] FreeBSD 4.11 hangs while trying to play sound on ICH4 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jun 2006 11:51:34 -0000 Synopsis: [sound] FreeBSD 4.11 hangs while trying to play sound on ICH4 Responsible-Changed-From-To: freebsd-bugs->freebsd-multimedia Responsible-Changed-By: linimon Responsible-Changed-When: Fri Jun 30 11:51:16 UTC 2006 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=99639 From owner-freebsd-bugs@FreeBSD.ORG Fri Jun 30 12:10:39 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 677F816A416 for ; Fri, 30 Jun 2006 12:10:39 +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 54CCF43D55 for ; Fri, 30 Jun 2006 12:10: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 k5UCAJx9056035 for ; Fri, 30 Jun 2006 12:10:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5UCAJhT056034; Fri, 30 Jun 2006 12:10:19 GMT (envelope-from gnats) Resent-Date: Fri, 30 Jun 2006 12:10:19 GMT Resent-Message-Id: <200606301210.k5UCAJhT056034@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, Roman Bogorodskiy Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 623FF16A540 for ; Fri, 30 Jun 2006 12:00:45 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FFE14435C for ; Fri, 30 Jun 2006 11:33:38 +0000 (GMT) (envelope-from novel@FreeBSD.org) Received: from freefall.freebsd.org (novel@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k5UBXcHi054630 for ; Fri, 30 Jun 2006 11:33:38 GMT (envelope-from novel@freefall.freebsd.org) Received: (from novel@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5UBXcT4054629; Fri, 30 Jun 2006 11:33:38 GMT (envelope-from novel) Message-Id: <200606301133.k5UBXcT4054629@freefall.freebsd.org> Date: Fri, 30 Jun 2006 11:33:38 GMT From: Roman Bogorodskiy To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: misc/99643: request to remove src/tools/tools/portsinfo because it's obsolete and not needed X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Roman Bogorodskiy List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jun 2006 12:10:39 -0000 >Number: 99643 >Category: misc >Synopsis: request to remove src/tools/tools/portsinfo because it's obsolete and not needed >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Jun 30 12:10:18 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Roman Bogorodskiy >Release: FreeBSD 6.0-STABLE i386 >Organization: >Environment: System: FreeBSD freefall.freebsd.org 6.0-STABLE FreeBSD 6.0-STABLE #0: Sat Dec 10 03:18:20 UTC 2005 kensmith@freefall.freebsd.org:/usr/obj/usr/src/sys/FREEFALL i386 >Description: I'd like src/tools/tools/portsinfo to be removed from the tree because of the following reasons: - It's broken. http://www.freebsd.org/cgi/ports.cgi, which portsinfo tries to use doesn't provide needed information anymore, so the script simply doesn't work. - It's not needed. The are about hundred new ports every two weeks and even more updated ports. Information is such amount is useless IMO. Though, if somebody feels like this tools is really needed, I think it should be rewritten to use freshports and placed into ports/Tools/scripts. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Jun 30 15:00:41 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 58C8C16A40F for ; Fri, 30 Jun 2006 15:00:41 +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 22943443E6 for ; Fri, 30 Jun 2006 15:00:41 +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 k5UF0eTF066519 for ; Fri, 30 Jun 2006 15:00:40 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5UF0ePp066518; Fri, 30 Jun 2006 15:00:40 GMT (envelope-from gnats) Date: Fri, 30 Jun 2006 15:00:40 GMT Message-Id: <200606301500.k5UF0ePp066518@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: =?ISO-8859-1?Q?Eirik_=D8verby?= Cc: Subject: Re: kern/99094: panic: sleeping thread (Sleeping thread ... owns a non-sleepable lock) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: =?ISO-8859-1?Q?Eirik_=D8verby?= List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jun 2006 15:00:41 -0000 The following reply was made to PR kern/99094; it has been noted by GNATS. From: =?ISO-8859-1?Q?Eirik_=D8verby?= To: John Baldwin Cc: bug-followup@freebsd.org Subject: Re: kern/99094: panic: sleeping thread (Sleeping thread ... owns a non-sleepable lock) Date: Fri, 30 Jun 2006 16:56:14 +0200 Hm, I thought I had that in my report? I have to find a way to automate this. I've just moved the installation to a newly partitioned array, to make sure I have room for crash dumps, and I have the following in rc.conf: dumpdev="AUTO" dumpdir="/usr/crash" from my reading, that should be enough. In addition I added KDB_UNATTENDED to the kernel config, as I cannot risk that the box is down for hours before I have a chance to get to the debugger console every time. The question is: Will it actually do an automatic dump before rebooting, or will a dump *always* require manual intervention? And will a dump contain all necessary information? Thanks, /Eirik On Jun 29, 2006, at 1:26 PM, John Baldwin wrote: > You need to get a stack trace of the thread mentioned in the message > that actually misbehaved. It actually should have been printed on > the console when it panic'd since you have DDB in the kernel. > > -- > John Baldwin > > From owner-freebsd-bugs@FreeBSD.ORG Fri Jun 30 15:10:33 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 1BA4C16A47B for ; Fri, 30 Jun 2006 15:10:33 +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 5FA7F43E81 for ; Fri, 30 Jun 2006 15:10:24 +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 k5UFAOev066745 for ; Fri, 30 Jun 2006 15:10:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5UFANKX066738; Fri, 30 Jun 2006 15:10:23 GMT (envelope-from gnats) Date: Fri, 30 Jun 2006 15:10:23 GMT Message-Id: <200606301510.k5UFANKX066738@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: John Baldwin Cc: Subject: Re: kern/99094: panic: sleeping thread (Sleeping thread ... owns a non-sleepable lock) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: John Baldwin List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jun 2006 15:10:33 -0000 The following reply was made to PR kern/99094; it has been noted by GNATS. From: John Baldwin To: Eirik =?iso-8859-1?q?=D8verby?= Cc: bug-followup@freebsd.org Subject: Re: kern/99094: panic: sleeping thread (Sleeping thread ... owns a non-sleepable lock) Date: Fri, 30 Jun 2006 11:06:47 -0400 On Friday 30 June 2006 10:56, Eirik =D8verby wrote: > Hm, I thought I had that in my report? =46rom the messages: Sleeping thread (tid 100082, pid 84236) owns a non-sleepable lock panic: sleeping thread cpuid =3D 0 KDB: enter: panic [thread pid 84235 tid 100474 ] This means pid 84236 misbehaved, and pid 84235 found that it had misbehaved= =2E =20 The sole stack trace is of pid 84235: db> bt Tracing pid 84235 tid 100474 td 0xffffff006f759000 ^^^^^ :) > I have to find a way to automate this. I've just moved the =20 > installation to a newly partitioned array, to make sure I have room =20 > for crash dumps, and I have the following in rc.conf: >=20 > dumpdev=3D"AUTO" > dumpdir=3D"/usr/crash" >=20 > from my reading, that should be enough. >=20 > In addition I added KDB_UNATTENDED to the kernel config, as I cannot =20 > risk that the box is down for hours before I have a chance to get to =20 > the debugger console every time. The question is: Will it actually do =20 > an automatic dump before rebooting, or will a dump *always* require =20 > manual intervention? And will a dump contain all necessary information? You can get a stack trace from the dump using kgdb. You'll have to use 'in= fo=20 threads' in gdb to find the thread with the corresponding pid, then use the= =20 gdb 'thread' command to switch to that thread (using the gdb thread number,= =20 not the tid or pid) and then do a 'bt' or 'where' to get the trace. =2D-=20 John Baldwin From owner-freebsd-bugs@FreeBSD.ORG Fri Jun 30 15:50: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 4C55A16A47C for ; Fri, 30 Jun 2006 15:50:18 +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 6ABC643D55 for ; Fri, 30 Jun 2006 15:50:17 +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 k5UFoHaq069390 for ; Fri, 30 Jun 2006 15:50:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5UFoHGd069389; Fri, 30 Jun 2006 15:50:17 GMT (envelope-from gnats) Resent-Date: Fri, 30 Jun 2006 15:50:17 GMT Resent-Message-Id: <200606301550.k5UFoHGd069389@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, David Gilbert Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 46B3216A415 for ; Fri, 30 Jun 2006 15:46:22 +0000 (UTC) (envelope-from dgilbert@daveg.ca) Received: from ox.eicat.ca (ox.eicat.ca [66.96.30.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 025F043D48 for ; Fri, 30 Jun 2006 15:46:21 +0000 (GMT) (envelope-from dgilbert@daveg.ca) Received: by ox.eicat.ca (Postfix, from userid 66) id A1EE91D59B; Fri, 30 Jun 2006 11:46:20 -0400 (EDT) Received: by canoe.dclg.ca (Postfix, from userid 101) id D37E34AC2B; Fri, 30 Jun 2006 11:46:21 -0400 (EDT) Message-Id: <20060630154621.D37E34AC2B@canoe.dclg.ca> Date: Fri, 30 Jun 2006 11:46:21 -0400 (EDT) From: David Gilbert To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/99649: SiI 3112 controller hangs with read/write load X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: David Gilbert List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jun 2006 15:50:18 -0000 >Number: 99649 >Category: kern >Synopsis: SiI 3112 controller hangs with read/write load >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jun 30 15:50:16 GMT 2006 >Closed-Date: >Last-Modified: >Originator: David Gilbert >Release: FreeBSD 6.1-STABLE i386 >Organization: DaveG.ca >Environment: FreeBSD virtual.accountingreality.com 6.1-RELEASE-p2 FreeBSD 6.1-RELEASE-p2 #2: Wed Jul 26 22:50:39 EDT 2006 root@virtual.accountingreality.ca:/usr/obj/usr/src/sys/VR amd64 >Description: The system has an onboard nVidia nForce MCP51 SATA300 controller ... which (in some other PR) has a known issue where you can only attach one drive to it. Since I had a SiI 3112 SATA150 controller PCI card lying around, I attached one drive to the motherboard and one drive to the SiI. The problem occurs under heavy write load with some reading. fsck alone will not trigger the problem. A Geom mirror sync works fine, too. The fact that the geom sync worked fine (which writes at 65 to 75 megabytes per second) gave the the idea that write-only was good. Anyways... some moderate amount of tars running causes the system to hang with WRITE_DMA48 timeouts. The system will run fine with geom_mirror on prefer ... such that the SiI connected drive receives only write requests. >How-To-Repeat: I copy a bunch of data from one place to another place on the drive. It's possible that this is queue related because the L(q) parameter on gstat tends to be more than 100 when it hangs. >Fix: None known. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Jun 30 16:30:32 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 20B7316A403 for ; Fri, 30 Jun 2006 16:30:32 +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 EE20943D45 for ; Fri, 30 Jun 2006 16:30:20 +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 k5UGUKGT071007 for ; Fri, 30 Jun 2006 16:30:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5UGUKt4071006; Fri, 30 Jun 2006 16:30:20 GMT (envelope-from gnats) Resent-Date: Fri, 30 Jun 2006 16:30:20 GMT Resent-Message-Id: <200606301630.k5UGUKt4071006@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, David Gilbert Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F212216A75D for ; Fri, 30 Jun 2006 16:26:58 +0000 (UTC) (envelope-from dgilbert@daveg.ca) Received: from ox.eicat.ca (ox.eicat.ca [66.96.30.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 62A9C44166 for ; Fri, 30 Jun 2006 15:56:26 +0000 (GMT) (envelope-from dgilbert@daveg.ca) Received: by ox.eicat.ca (Postfix, from userid 66) id DB7C11E30B; Fri, 30 Jun 2006 11:56:25 -0400 (EDT) Received: by canoe.dclg.ca (Postfix, from userid 101) id 2F2B44AC2B; Fri, 30 Jun 2006 11:56:27 -0400 (EDT) Message-Id: <20060630155627.2F2B44AC2B@canoe.dclg.ca> Date: Fri, 30 Jun 2006 11:56:27 -0400 (EDT) From: David Gilbert To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/99652: nVidia controller hangs w/ 2 drives. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: David Gilbert List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jun 2006 16:30:32 -0000 >Number: 99652 >Category: kern >Synopsis: nVidia controller hangs w/ 2 drives. >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jun 30 16:30:19 GMT 2006 >Closed-Date: >Last-Modified: >Originator: David Gilbert >Release: FreeBSD 6.1-STABLE i386 >Organization: DaveG.ca >Environment: FreeBSD virtual.accountingreality.com 6.1-RELEASE-p2 FreeBSD 6.1-RELEASE-p2 #2: Wed Jul 26 22:50:39 EDT 2006 root@virtual.accountingreality.ca:/usr/obj/usr/src/sys/VR amd64 are connected >Description: This machine has an onboard atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xffa0-0xffaf at device 13.0 on pci0 and if one drive is connected, everything is fine. If two drives are connected, it hangs after detecting the first drive. The drives in question are both ad4: 238475MB at ata2-master SATA300 >How-To-Repeat: Attach two drives to the controller >Fix: None known. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Jun 30 17:51:11 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 1AC4316A559 for ; Fri, 30 Jun 2006 17:51:11 +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 EC281440E4 for ; Fri, 30 Jun 2006 17:20:24 +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 k5UHKOBC074916 for ; Fri, 30 Jun 2006 17:20:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5UHKOCO074915; Fri, 30 Jun 2006 17:20:24 GMT (envelope-from gnats) Date: Fri, 30 Jun 2006 17:20:24 GMT Message-Id: <200606301720.k5UHKOCO074915@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Henrik Brix Andersen Cc: Subject: Re: kern/97383: Volume buttons on IBM Thinkpad crash system with ACPI X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Henrik Brix Andersen List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jun 2006 17:51:11 -0000 The following reply was made to PR kern/97383; it has been noted by GNATS. From: Henrik Brix Andersen To: bug-followup@FreeBSD.org, fotios@prometheus.csh.rit.edu Cc: Subject: Re: kern/97383: Volume buttons on IBM Thinkpad crash system with ACPI Date: Fri, 30 Jun 2006 19:10:37 +0200 --a8Wt8u1KmwUX3Y2C Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable I can reproduce this problem with FreeBSD 6.1-RELEASE on my IBM ThinkPad X31. Whenever I attempt to access the hardware through ACPI, either by powering down (shutdown -h now), rebooting (shutdown -r now), loading the acpi_ibm kernel module (kldload acpi_ibm), pressing the volume keys etc, the system locks up with no sign as to why. I have found many postings on various mailing lists (see e.g. [1] and [2]) that suggest using PS2.EXE from IBM to disable the secondary IDE channel, but I have yet to find a way to try that as I do not have access to a Microsoft Windows environment. [1]: http://lists.freebsd.org/pipermail/freebsd-acpi/2004-November/000870.h= tml [2]: http://lists.freebsd.org/pipermail/freebsd-current/2004-January/019435= =2Ehtml --=20 Henrik Brix Andersen --a8Wt8u1KmwUX3Y2C Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.4 (GNU/Linux) Comment: GnuPG signed iD8DBQFEpVsNv+Q4flTiePgRAkV9AKC2aiTwue6qh/2UljvG/xs37htmSwCfcct9 AWQqMfupmbqQneBmv7t9tps= =KDUa -----END PGP SIGNATURE----- --a8Wt8u1KmwUX3Y2C-- From owner-freebsd-bugs@FreeBSD.ORG Fri Jun 30 19:20:21 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 8267316A415 for ; Fri, 30 Jun 2006 19:20:21 +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 4522D43D8A for ; Fri, 30 Jun 2006 19:20:15 +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 k5UJKF1T077379 for ; Fri, 30 Jun 2006 19:20:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5UJKFoR077378; Fri, 30 Jun 2006 19:20:15 GMT (envelope-from gnats) Resent-Date: Fri, 30 Jun 2006 19:20:15 GMT Resent-Message-Id: <200606301920.k5UJKFoR077378@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, Lowell Gilbert Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4FADE16A558 for ; Fri, 30 Jun 2006 19:13:29 +0000 (UTC) (envelope-from lowell@be-well.ilk.org) Received: from mail6.sea5.speakeasy.net (mail6.sea5.speakeasy.net [69.17.117.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id A750B4431D for ; Fri, 30 Jun 2006 18:53:22 +0000 (GMT) (envelope-from lowell@be-well.ilk.org) Received: (qmail 6008 invoked from network); 30 Jun 2006 18:53:21 -0000 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail6.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 30 Jun 2006 18:53:21 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id 587BF28449; Fri, 30 Jun 2006 14:53:21 -0400 (EDT) Message-Id: <20060630185321.587BF28449@be-well.ilk.org> Date: Fri, 30 Jun 2006 14:53:21 -0400 (EDT) From: Lowell Gilbert To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/99663: [PATCH] add ICH6 support X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Lowell Gilbert List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jun 2006 19:20:21 -0000 >Number: 99663 >Category: kern >Synopsis: [PATCH] add ICH6 support >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Jun 30 19:20:14 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Lowell Gilbert >Release: FreeBSD 6.1-STABLE i386 >Organization: The Ilk >Environment: System: FreeBSD be-well.ilk.org 6.1-STABLE FreeBSD 6.1-STABLE #0: Thu Jun 15 10:01:36 EDT 2006 root@Lowell-Desk:/usr/obj/usr/src/sys/BE-WELL6 i386 >Description: Our SMB code can't handle Intel ICH6. >How-To-Repeat: n/a >Fix: All it really needs is the new device IDs. --- /usr/src/sys/dev/ichsmb/ichsmb_pci.c.ORIG Fri Aug 19 14:38:55 2005 +++ /usr/src/sys/dev/ichsmb/ichsmb_pci.c Fri Jun 30 14:41:29 2006 @@ -73,6 +73,7 @@ #define ID_82801CA 0x24838086 #define ID_82801DC 0x24C38086 #define ID_82801EB 0x24D38086 +#define ID_82801FB 0x266A8086 #define ID_6300ESB 0x25a48086 #define PCIS_SERIALBUS_SMBUS_PROGIF 0x00 @@ -142,6 +143,9 @@ break; case ID_82801EB: device_set_desc(dev, "Intel 82801EB (ICH5) SMBus controller"); + break; + case ID_82801FB: + device_set_desc(dev, "Intel 82801FB (ICH6) SMBus controller"); break; case ID_6300ESB: device_set_desc(dev, "Intel 6300ESB (ICH) SMBus controller"); >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Jun 30 19:20:25 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 65ECE16A47E for ; Fri, 30 Jun 2006 19:20:25 +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 B3D4643D7C for ; Fri, 30 Jun 2006 19:20:14 +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 k5UJKEqw077328 for ; Fri, 30 Jun 2006 19:20:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5UJKEmX077324; Fri, 30 Jun 2006 19:20:14 GMT (envelope-from gnats) Resent-Date: Fri, 30 Jun 2006 19:20:14 GMT Resent-Message-Id: <200606301920.k5UJKEmX077324@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, Jui-Nan Lin Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0FBC016A508 for ; Fri, 30 Jun 2006 19:13:24 +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 D04EA4408B for ; Fri, 30 Jun 2006 18:44:10 +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 k5UIiAiU075112 for ; Fri, 30 Jun 2006 18:44:10 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id k5UIiAxl075111; Fri, 30 Jun 2006 18:44:10 GMT (envelope-from nobody) Message-Id: <200606301844.k5UIiAxl075111@www.freebsd.org> Date: Fri, 30 Jun 2006 18:44:10 GMT From: Jui-Nan Lin To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: bin/99662: quota information leak while rpc.rquotad is used X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jun 2006 19:20:25 -0000 >Number: 99662 >Category: bin >Synopsis: quota information leak while rpc.rquotad is used >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jun 30 19:20:14 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Jui-Nan Lin >Release: 6.0-RELEASE >Organization: Department of Computer Science, NCTU >Environment: FreeBSD cchome 6.0-RELEASE-p7 FreeBSD 6.0-RELEASE-p7 #3: Sun Apr 30 05:53:52 CST 2006 root@cchome.csie.nctu.edu.tw:/usr/obj/usr/src/sys/CCHOME i386 >Description: When I try to query other user's quota in the NFS server, it told me "quota: /raid/quota.user: Permission denied". But when I try to query other user's quota in the NFS client, it will return his/her quota. >How-To-Repeat: nfsserver% quota -v someuser quota: /raid/quota.user: Permission denied nfsclient% quota -v someuser Disk quotas for user someuser (uid xxxxx): Filesystem usage quota limit grace files quota limit grace /amd/raid 17178 120000 150000 1406 12000 15000 >Fix: In FreeBSD 4.x, the problem is solved by checking uid in src/usr.bin/quota/quota.c. But I think it would be better if we check the uid in the rpc.rquotad. But I am not familiar with SUNRPC, and I don't know if there will be the uid information transmitted in the RPC request/reponse. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Jun 30 19:30:22 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 99F7816A492 for ; Fri, 30 Jun 2006 19:30:22 +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 4DAF243D79 for ; Fri, 30 Jun 2006 19:30: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 k5UJUJs0077892 for ; Fri, 30 Jun 2006 19:30:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5UJUJcH077891; Fri, 30 Jun 2006 19:30:19 GMT (envelope-from gnats) Date: Fri, 30 Jun 2006 19:30:19 GMT Message-Id: <200606301930.k5UJUJcH077891@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Henrik Brix Andersen Cc: Subject: Re: kern/97383: Volume buttons on IBM Thinkpad crash system with ACPI X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Henrik Brix Andersen List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jun 2006 19:30:22 -0000 The following reply was made to PR kern/97383; it has been noted by GNATS. From: Henrik Brix Andersen To: bug-followup@FreeBSD.org, fotios@prometheus.csh.rit.edu Cc: Subject: Re: kern/97383: Volume buttons on IBM Thinkpad crash system with ACPI Date: Fri, 30 Jun 2006 21:22:09 +0200 I managed to get hold of an MS-DOS environment for running "PS2.EXE IDE2 Disable" from IBM [1] on my IBM ThinkPad X31 as adviced in the previously mentioned mailing list posts. After disabling the secondary IDE bus I can no longer reproduce the problem described here. Disabling the seconday IDE bus will, however, also make it impossible to use a secondary HDD or CDROM drive in an UltraBay docking station, so this is not an optimal solution - only a work-around. Footnote: this problem doesn't exist with other operating systems such as GNU/Linux, which indicates that it is a problem that can be solved in software. [1]: http://www-307.ibm.com/pc/support/site.wss/document.do?sitestyle=lenovo&lndocid=MIGR-4ZFPEG -- Henrik Brix Andersen From owner-freebsd-bugs@FreeBSD.ORG Fri Jun 30 22:20:20 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 7816016A40F for ; Fri, 30 Jun 2006 22:20:20 +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 23B0F43D55 for ; Fri, 30 Jun 2006 22:20: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 k5UMKIRp088397 for ; Fri, 30 Jun 2006 22:20:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5UMKIUn088396; Fri, 30 Jun 2006 22:20:18 GMT (envelope-from gnats) Resent-Date: Fri, 30 Jun 2006 22:20:18 GMT Resent-Message-Id: <200606302220.k5UMKIUn088396@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, Matthew Jacob Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C44E616A417 for ; Fri, 30 Jun 2006 22:12:40 +0000 (UTC) (envelope-from mjacob@ns1.feral.com) Received: from ns1.feral.com (ns1.feral.com [192.67.166.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 329AA43D55 for ; Fri, 30 Jun 2006 22:12:40 +0000 (GMT) (envelope-from mjacob@ns1.feral.com) Received: from ns1.feral.com (localhost [127.0.0.1]) by ns1.feral.com (8.13.6/8.13.6) with ESMTP id k5UMCd3C045945 for ; Fri, 30 Jun 2006 15:12:39 -0700 (PDT) (envelope-from mjacob@ns1.feral.com) Received: (from mjacob@localhost) by ns1.feral.com (8.13.6/8.13.6/Submit) id k5UMCdDC045944; Fri, 30 Jun 2006 15:12:39 -0700 (PDT) (envelope-from mjacob) Message-Id: <200606302212.k5UMCdDC045944@ns1.feral.com> Date: Fri, 30 Jun 2006 15:12:39 -0700 (PDT) From: Matthew Jacob To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/99664: mountd and/or nfsd have to sometimes have to be restarted for linux mounts to succeed X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthew Jacob List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jun 2006 22:20:20 -0000 >Number: 99664 >Category: kern >Synopsis: mountd and/or nfsd have to sometimes have to be restarted for linux mounts to succeed >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jun 30 22:20:18 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Matthew Jacob >Release: FreeBSD 6.1-STABLE i386 >Organization: Feral Software >Environment: System: FreeBSD ns1.feral.com 6.1-STABLE FreeBSD 6.1-STABLE #0: Mon May 15 16:12:09 PDT 2006 root@ns1.feral.com:/usr/obj/usr/src/sys/FERAL i386 Shuttle X box, NATD interface to front public interface (192.67.166), two private subnets (172.16,1 && 172.16.10) out a dual em interface to the back. ------- exports: /home -alldirs -maproot=root -network 172.16.1 -mask 255.255.255.0 /home -alldirs -maproot=root -network 172.16.10 -mask 255.255.255.0 /usr/distfiles \ /usr/ports \ /usr/src.CURRENT \ /usr/src.RELENG_2 \ /usr/src.RELENG_4 \ /usr/src.RELENG_5 \ /usr/src.RELENG_6 \ -maproot=root -network 172.16.1 -mask 255.255.255.0 /usr/distfiles \ /usr/ports \ /usr/src.CURRENT \ /usr/src.RELENG_2 \ /usr/src.RELENG_4 \ /usr/src.RELENG_5 \ /usr/src.RELENG_6 \ -maproot=root -network 172.16.10 -mask 255.255.255.0 -------- rc.conf: network_interfaces="rl0 em0 em1 lo0" ifconfig_rl0="inet 192.67.166.1 netmask 255.255.255.0" ifconfig_rl0_alias0="inet 192.67.166.2 netmask 0xffffffff" ifconfig_em0="inet 172.16.1.79 netmask 255.255.255.0" ifconfig_em0_alias0="inet 172.16.1.1 netmask 0xffffffff" ifconfig_em0_alias1="inet 172.16.1.254 netmask 0xffffffff" ifconfig_em1="inet 172.16.10.79 netmask 255.255.255.0" ifconfig_em1_alias0="inet 172.16.10.1 netmask 0xffffffff" ifconfig_em1_alias1="inet 172.16.10.254 netmask 0xffffffff" defaultrouter="192.67.166.3" gateway_enable="YES" hostname="ns1.feral.com" nfs_client_enable="YES" nfs_server_enable="YES" nfs_server_flags="-u -t -n 32 -h 172.16.1.79 -h 172.16.10.79" nfs_reserved_port_only="YES" sshd_enable="YES" ntpdate_enable="YES" ntpdate_flags="-b 66.187.224.4" xntpd_enable="YES" rpcbind_enable="YES" sendmail_enable="YES" #dumpdev="/dev/ad0s1b" linux_enable="YES" #log_in_vain="YES" # YES to log connects to ports w/o listeners. named_enable="YES" #kern_securelevel_enable="YES" #kern_securelevel="2" clear_tmp_enable="YES" tmpmfs="YES" tmpsize="1024m" # Size of mfs /tmp if created natd_enable="YES" natd_interface="rl0" # Public interface or IPaddress to use. natd_flags="-u" firewall_enable="YES" firewall_type="OPEN" usbd_enable="YES" # nessus suggested changes rpc_statd_enable="NO" #tcp_drop_synfin="YES" apache_enable="YES" mountd_enable="YES" mountd_flags="-rl" # Flags to mountd (if NFS server enabled). dhcpd_enable="YES" dhcpd_flags="-q" dhcpd_conf="/usr/local/etc/dhcpd.conf" dhcpd_ifaces="em0 em1" dhcpd_withumask="022" lpd_enable="YES" accounting_enable="YES" inetd_enable="YES" smartd_enable="YES" healthd_enable="YES" compat4x_enable="YES" compat5x_enable="YES" mysql_enable="YES" ---------- hosts.allow stuff that's relevant: rpcbind: lportal.in1.lcl : deny rpcbind: 172.16.1.0/255.255.255.0 : allow rpcbind: 172.16.10.0/255.255.255.0 : allow rpcbind: 192.67.166.1 : allow rpcbind: 192.67.166.2 : allow rpcbind: 127.0.0.1 : allow ------------------------ >Description: The client machine is a RedHat ES4 amd64. The fstab line is: beppo:/home /home nfs defaults,nfsvers=2,noauto 0 0 (the nfsvers=2 line is not apparently relevant). Since this machine is under test, I crash it a lot. About very 10th crash, the mount of /home hangs (hence the 'noauto' token). Normally I'd just call it a linux problem, but issuing /etc/rc.d/nfsd restart /etc/rc.d/mountd restart on the server caused the mount to wake up and succeed. Interestingly enough, the messages file on the server claims that the mountd request succeeded. But the last tiem this happened, the mount didn't actually occur until after I did the described restart: Jun 30 15:01:41 ns1 mountd[45438]: mount request succeeded from 172.16.1.11 for /home Jun 30 15:02:41 ns1 sudo: mjacob : TTY=ttype ; PWD=/home/mjacob ; USER=root ; COMMAND=/etc/rc.d/nfsd restart Jun 30 15:02:53 ns1 sudo: mjacob : TTY=ttype ; PWD=/home/mjacob ; USER=root ; COMMAND=/etc/rc.d/mountd restart >How-To-Repeat: See above. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Jun 30 23:40: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 D28F616A416 for ; Fri, 30 Jun 2006 23:40:18 +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 505C343D58 for ; Fri, 30 Jun 2006 23:40:18 +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 k5UNeI7a093430 for ; Fri, 30 Jun 2006 23: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 k5UNeIag093429; Fri, 30 Jun 2006 23:40:18 GMT (envelope-from gnats) Resent-Date: Fri, 30 Jun 2006 23:40:18 GMT Resent-Message-Id: <200606302340.k5UNeIag093429@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, alexus Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0296016A415 for ; Fri, 30 Jun 2006 23:30:42 +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 C3E4243D46 for ; Fri, 30 Jun 2006 23:30:41 +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 k5UNUfvZ056661 for ; Fri, 30 Jun 2006 23:30:41 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id k5UNUfqX056658; Fri, 30 Jun 2006 23:30:41 GMT (envelope-from nobody) Message-Id: <200606302330.k5UNUfqX056658@www.freebsd.org> Date: Fri, 30 Jun 2006 23:30:41 GMT From: alexus To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: misc/99665: 6.1 ISO/FTP missing /boot/GENERIC or /boot/kernel X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jun 2006 23:40:18 -0000 >Number: 99665 >Category: misc >Synopsis: 6.1 ISO/FTP missing /boot/GENERIC or /boot/kernel >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jun 30 23:40:17 GMT 2006 >Closed-Date: >Last-Modified: >Originator: alexus >Release: 6.1-RELEASE >Organization: ALEXUSBIZ CORP. >Environment: FreeBSD foo.bar.com 6.1-RELEASE FreeBSD 6.1-RELEASE #0: Sun May 7 04:04:14 UTC 2006 root@bloom.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: i've tryed both i386 and amd64, i went and download ISO (compared MD5) seems fine comparing against your website. i also tryed ISO and installation through FTP, both end up with same message in second debug window (ALT+F2) mv: /boot/GENERIC /boot/kernel :No such file or directory and once I try to reboot server I end up with following: BTX loader 1.00 BTX version is 1.01 Consoles: internal video/keyboard BIOS drive C: is disk0 BIOS 640kB/3406496kB available memory FreeBSD/i386 bootstrap loader, Revision 1.1 (root@bloom.cse.buffalo.edu, Sun May 7 02:16:38 UTC 2006) Loading /boot/defaults/loader.conf Unable to load a kernel! / can't load 'kernel' Type '?' for a list of commands, 'help' for more detailed help. OK if i type "ls" i see all my directories if i type ls /boot/kernel i get open '/boot/kernel/' failed:no such file or directory. >How-To-Repeat: installed few times through FTP, ISO i386 and amd64 >Fix: n/a >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Jul 1 00:08:57 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 D61B116A407; Sat, 1 Jul 2006 00:08:57 +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 8C3B243D4C; Sat, 1 Jul 2006 00:08:57 +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 k6108v36094816; Sat, 1 Jul 2006 00:08:57 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k6108vaA094812; Sat, 1 Jul 2006 00:08:57 GMT (envelope-from linimon) Date: Sat, 1 Jul 2006 00:08:57 GMT From: Mark Linimon Message-Id: <200607010008.k6108vaA094812@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, re@FreeBSD.org Cc: Subject: Re: misc/99665: 6.1 ISO/FTP missing /boot/GENERIC or /boot/kernel X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Jul 2006 00:08:57 -0000 Synopsis: 6.1 ISO/FTP missing /boot/GENERIC or /boot/kernel Responsible-Changed-From-To: freebsd-bugs->re Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jul 1 00:08:40 UTC 2006 Responsible-Changed-Why: Sounds like a re@ issue. http://www.freebsd.org/cgi/query-pr.cgi?pr=99665 From owner-freebsd-bugs@FreeBSD.ORG Sat Jul 1 08:30:20 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 1AD2F16A4D4 for ; Sat, 1 Jul 2006 08:30:20 +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 3AB3443D46 for ; Sat, 1 Jul 2006 08:30: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 k618UJAB073559 for ; Sat, 1 Jul 2006 08:30:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k618UJ8v073558; Sat, 1 Jul 2006 08:30:19 GMT (envelope-from gnats) Resent-Date: Sat, 1 Jul 2006 08:30:19 GMT Resent-Message-Id: <200607010830.k618UJ8v073558@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, KIYOHARA Takashi Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC26C16A403 for ; Sat, 1 Jul 2006 08:28:42 +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 7C0CA43D48 for ; Sat, 1 Jul 2006 08:28: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 k618SgMd090744 for ; Sat, 1 Jul 2006 08:28:42 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id k618SgS9090743; Sat, 1 Jul 2006 08:28:42 GMT (envelope-from nobody) Message-Id: <200607010828.k618SgS9090743@www.freebsd.org> Date: Sat, 1 Jul 2006 08:28:42 GMT From: KIYOHARA Takashi To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: kern/99676: The strange expression in if_ural.c::ural_set_chan() X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Jul 2006 08:30:20 -0000 >Number: 99676 >Category: kern >Synopsis: The strange expression in if_ural.c::ural_set_chan() >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Jul 01 08:30:18 GMT 2006 >Closed-Date: >Last-Modified: >Originator: KIYOHARA Takashi >Release: -current >Organization: >Environment: >Description: I look and think strange expression in if_ural.c::ural_set_chan(). I guess the "i<..." is an accident. if_ural.c::ural_set_chan() --- /* dual-band RF */ case RAL_RF_5222: for (i = 0; i < ural_rf5222[i].chan != chan; i++); ^^^^^ ural_rf_write(sc, RAL_RF1, ural_rf5222[i].r1); --- if_ural.c::ural_set_chan() >How-To-Repeat: >Fix: /* dual-band RF */ case RAL_RF_5222: - for (i = 0; i < ural_rf5222[i].chan != chan; i++); + for (i = 0; ural_rf5222[i].chan != chan; i++); ural_rf_write(sc, RAL_RF1, ural_rf5222[i].r1); >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Jul 1 09:20:20 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 5664D16A412 for ; Sat, 1 Jul 2006 09:20:20 +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 210A843D5D for ; Sat, 1 Jul 2006 09:20:08 +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 k619K8kS076992 for ; Sat, 1 Jul 2006 09:20:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k619K8bD076986; Sat, 1 Jul 2006 09:20:08 GMT (envelope-from gnats) Resent-Date: Sat, 1 Jul 2006 09:20:08 GMT Resent-Message-Id: <200607010920.k619K8bD076986@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, Kyryll A Mirneko Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D65516A403 for ; Sat, 1 Jul 2006 09:14:40 +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 3016543D49 for ; Sat, 1 Jul 2006 09:14: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 k619EbEV009894 for ; Sat, 1 Jul 2006 09:14:37 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id k619EbT9009893; Sat, 1 Jul 2006 09:14:37 GMT (envelope-from nobody) Message-Id: <200607010914.k619EbT9009893@www.freebsd.org> Date: Sat, 1 Jul 2006 09:14:37 GMT From: Kyryll A Mirneko To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: misc/99678: editors/vim build fails WITH_TCL X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Jul 2006 09:20:20 -0000 >Number: 99678 >Category: misc >Synopsis: editors/vim build fails WITH_TCL >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Jul 01 09:20:08 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Kyryll A Mirneko >Release: 6.1 >Organization: none >Environment: FreeBSD myhost 6.1-RELEASE-p1 FreeBSD 6.1-RELEASE-p1 #5: Sat Jun 3 18:17:08 EEST 2006 mirya@myhost:/usr/src/sys/i386/compile/MY-LITE i386 >Description: $ cd /usr/ports/editors/vim $ make WITH_TCL=yes .. CC="cc -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/tcl -D_REENTRANT=1 -D_THREAD_SAFE=1 long " srcdir=. sh ./osdef.sh cc: long: No such file or directory cc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include -O2 -pipe -ffast-math -I/usr/X11R6/include -I/usr/local/include/tcl -D_REENTRANT=1 -D_THREAD_SAFE=1 long -o objects/buffer.o buffer.c cc: long: No such file or directory *** Error code 1 Stop in /usr/ports/editors/vim/work/vim70/src $ pkg_info -x tcl Information for tcl-threads-8.4.13_1,1 .. >How-To-Repeat: as described above >Fix: none so far >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Jul 1 09:32:00 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 EA9E316A407; Sat, 1 Jul 2006 09:32:00 +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 A601143D45; Sat, 1 Jul 2006 09:32:00 +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 k619W0fI080012; Sat, 1 Jul 2006 09:32:00 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k619W0rY080008; Sat, 1 Jul 2006 09:32:00 GMT (envelope-from linimon) Date: Sat, 1 Jul 2006 09:32:00 GMT From: Mark Linimon Message-Id: <200607010932.k619W0rY080008@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, obrien@FreeBSD.org Cc: Subject: Re: ports/99678: editors/vim build fails WITH_TCL X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Jul 2006 09:32:01 -0000 Synopsis: editors/vim build fails WITH_TCL Responsible-Changed-From-To: freebsd-bugs->obrien Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jul 1 09:31:39 UTC 2006 Responsible-Changed-Why: Make this a ports PR and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=99678 From owner-freebsd-bugs@FreeBSD.ORG Sat Jul 1 10:47:00 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 A468F16A4DE; Sat, 1 Jul 2006 10:47:00 +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 B362F446C7; Sat, 1 Jul 2006 10:27:05 +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 k61AR5U1082413; Sat, 1 Jul 2006 10:27:05 GMT (envelope-from maxim@freefall.freebsd.org) Received: (from maxim@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k61AR56P082409; Sat, 1 Jul 2006 10:27:05 GMT (envelope-from maxim) Date: Sat, 1 Jul 2006 10:27:05 GMT From: Maxim Konovalov Message-Id: <200607011027.k61AR56P082409@freefall.freebsd.org> To: tps@vr-web.de, maxim@FreeBSD.org, freebsd-bugs@FreeBSD.org 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 List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Jul 2006 10:47:00 -0000 Synopsis: FreeBSD Kernel 4.11 does not compile State-Changed-From-To: open->closed State-Changed-By: maxim State-Changed-When: Sat Jul 1 10:25:55 UTC 2006 State-Changed-Why: The submitter reported he solved the problem. http://www.freebsd.org/cgi/query-pr.cgi?pr=99473 From owner-freebsd-bugs@FreeBSD.ORG Sat Jul 1 10:50:29 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 C9B5616A407 for ; Sat, 1 Jul 2006 10:50:29 +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 92C1943D49 for ; Sat, 1 Jul 2006 10:50:23 +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 k61AoNdt084447 for ; Sat, 1 Jul 2006 10:50:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k61AoNDZ084446; Sat, 1 Jul 2006 10:50:23 GMT (envelope-from gnats) Date: Sat, 1 Jul 2006 10:50:23 GMT Message-Id: <200607011050.k61AoNDZ084446@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Maxim Konovalov Cc: Subject: Re: kern/99473: FreeBSD Kernel 4.11 does not compile (fwd) 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: Sat, 01 Jul 2006 10:50:29 -0000 The following reply was made to PR kern/99473; it has been noted by GNATS. From: Maxim Konovalov To: bug-followup@freebsd.org Cc: Subject: Re: kern/99473: FreeBSD Kernel 4.11 does not compile (fwd) Date: Sat, 1 Jul 2006 14:15:32 +0400 (MSD) Adding to the audit trail. -- Maxim Konovalov ---------- Forwarded message ---------- Date: Sat, 01 Jul 2006 10:42:17 +0200 From: Thomas Schweikle To: Maxim Konovalov Subject: Re: kern/99473: FreeBSD Kernel 4.11 does not compile Maxim Konovalov wrote: > On Mon, 26 Jun 2006, 22:50-0000, Thomas Schweikle wrote: > >> The following reply was made to PR kern/99473; it has been noted by GNATS. >> >> From: Thomas Schweikle >> To: bug-followup@FreeBSD.org >> Cc: tps@vr-web.de >> Subject: Re: kern/99473: FreeBSD Kernel 4.11 does not compile >> Date: Tue, 27 Jun 2006 00:49:02 +0200 (CEST) >> >> > RELENG_4 GENERIG builds OK. >> > Could you please try again from the >> > pristine environment (updated src tree, >> > empty /usr/obj, empty /etc/make.conf)? >> >> Tried that now too. No change. Latest checkout does not compile, >> missing module subdirectory bce. > > Can't believe that :-) > > Remove the whole src tree, cvsup from the cvsup5.ru.freebsd.org, > remove obj tree, make buildworld buildkernel __MAKE_CONF=/dev/null \ > KERNCONF="your config". Please show your kernel config file also. OK, folowed your advice. This time I could compile the Kernel without problems --- looks like there was an error with one of the last checkouts not corrected by later ones :-( Next time this happens, I'll try that first, before asking...! -- Thomas From owner-freebsd-bugs@FreeBSD.ORG Sat Jul 1 12:10:43 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 9824C16A403 for ; Sat, 1 Jul 2006 12:10:43 +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 82DA843D60 for ; Sat, 1 Jul 2006 12:10:23 +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 k61CAMtA088034 for ; Sat, 1 Jul 2006 12: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 k61CAMqE088033; Sat, 1 Jul 2006 12:10:22 GMT (envelope-from gnats) Date: Sat, 1 Jul 2006 12:10:22 GMT Message-Id: <200607011210.k61CAMqE088033@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: =?ISO-8859-1?Q?Eirik_=D8verby?= Cc: Subject: Re: kern/99094: panic: sleeping thread (Sleeping thread ... owns a non-sleepable lock) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: =?ISO-8859-1?Q?Eirik_=D8verby?= List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Jul 2006 12:10:43 -0000 The following reply was made to PR kern/99094; it has been noted by GNATS. From: =?ISO-8859-1?Q?Eirik_=D8verby?= To: John Baldwin Cc: bug-followup@freebsd.org Subject: Re: kern/99094: panic: sleeping thread (Sleeping thread ... owns a non-sleepable lock) Date: Sat, 1 Jul 2006 14:04:08 +0200 --Apple-Mail-4--497926925 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Hi again, I now have WITNESS and INVARIANTS in the kernel, and today it hung again. It looks somewhat different than before, but I am fairly certain it's the same error. I've tried to include everything asked for, except that I was silly enough to do a "call boot()" before dumping, so it only started dumping after the boot() call failed. Nevertheless; I do have a dump now, if it's of any use. Below you'll find the panic message, a bt, a ps, and then the output of a "c", which is exactly the same as the first message except it's not chopped off due to terminal size, and finally the panic resulting from the boot() call. /Eirik Expensive timeout(9) function: 0xffffffff802944a0(0xffffffff86ca7000) 0.016565232 s Expensive timeout(9) function: 0xffffffff804f3b00(0) 0.021799841 s Expensive timeout(9) function: 0xffffffff804455e0(0xffffff007ad7b000) 0.047916735 s malloc(M_WAITOK) of "1024", forcing M_NOWAIT with the following non- sleepable locks held: exclusive sleep mutex vm object (standard object) r = 0 (0xffffff0018f3fe00) locked @ /usr/src/sys/compat/linprocfs/lin9 KDB: enter: witness_warn [thread pid 77487 tid 100323 ] Stopped at kdb_enter+0x2f: nop db> db> bt Tracing pid 77487 tid 100323 td 0xffffff00531794c0 kdb_enter() at kdb_enter+0x2f witness_warn() at witness_warn+0x2e0 uma_zalloc_arg() at uma_zalloc_arg+0x1ee malloc() at malloc+0xab vn_fullpath() at vn_fullpath+0x56 linprocfs_doprocmaps() at linprocfs_doprocmaps+0x31e pfs_read() at pfs_read+0x2a7 VOP_READ_APV() at VOP_READ_APV+0x74 vn_read() at vn_read+0x232 dofileread() at dofileread+0x94 kern_readv() at kern_readv+0x60 read() at read+0x4a ia32_syscall() at ia32_syscall+0x167 Xint0x80_syscall() at Xint0x80_syscall+0x5d db> ps pid proc uid ppid pgrp flag stat wmesg wchan cmd 77510 ffffff0027630340 2 77485 77462 0004000 [RUNQ] mv 77509 ffffff0036d2a000 2 77466 77441 0006000 [RUNQ] dd 77502 ffffff00342d0340 0 77457 77457 0004000 [RUNQ] perl 77492 ffffff0072508680 90 77454 77454 0004000 [SLPQ sbwait 0xffffff000d7513a0][SLP] fetchmail 77489 ffffff004d91c9c0 91 77470 77470 0004000 [RUNQ] python2.4 77488 ffffff006a4e0680 91 77469 77469 0004000 [RUNQ] python2.4 77487 ffffff0034673680 0 77451 77451 0004000 [CPU 0] bdc 77485 ffffff0050a969c0 2 77462 77462 0004000 [SLPQ wait 0xffffff0050a969c0][SLP] sh 77480 ffffff004d2b7000 0 77452 77452 0004000 [CPU 1] perl5.8.8 77479 ffffff006a4e0000 0 77453 77453 0004000 [SLPQ vnread 0xffffffff9fe13b08][SLP] antivir 77470 ffffff00506f0680 91 77465 77470 0004000 [SLPQ wait 0xffffff00506f0680][SLP] sh 77469 ffffff0072508340 91 77459 77469 0004000 [SLPQ wait 0xffffff0072508340][SLP] sh 77466 ffffff0061b3c680 2 77441 77441 0004000 [SLPQ wait 0xffffff0061b3c680][SLP] sh 77465 ffffff00215f3000 0 1026 1026 0000000 [SLPQ piperd 0xffffff00209e4000][SLP] cron 77462 ffffff0014911680 2 77456 77462 0004000 [SLPQ wait 0xffffff0014911680][SLP] sh 77459 ffffff0036d2a680 0 1026 1026 0000000 [SLPQ piperd 0xffffff003c30c900][SLP] cron 77457 ffffff0036028000 0 77449 77457 0004000 [SLPQ wait 0xffffff0036028000][SLP] sh 77456 ffffff0037a4a9c0 0 1026 1026 0000000 [SLPQ piperd 0xffffff0036b82c00][SLP] cron 77454 ffffff004a2c2680 90 77448 77454 0004000 [SLPQ wait 0xffffff004a2c2680][SLP] sh 77453 ffffff0038ef2000 0 77446 77453 0004000 [SLPQ wait 0xffffff0038ef2000][SLP] sh 77452 ffffff0037a4a000 0 77447 77452 0004000 [SLPQ wait 0xffffff0037a4a000][SLP] sh 77451 ffffff004d91c680 0 77445 77451 0004000 [SLPQ wait 0xffffff004d91c680][SLP] sh 77449 ffffff00274119c0 0 1026 1026 0000000 [SLPQ piperd 0xffffff0060f41900][SLP] cron 77448 ffffff002f74f000 0 1026 1026 0000000 [SLPQ piperd 0xffffff0011eb3600][SLP] cron 77447 ffffff0049c40000 0 1026 1026 0000000 [SLPQ piperd 0xffffff0001a8f300][SLP] cron 77446 ffffff004b9c29c0 0 1026 1026 0000000 [SLPQ piperd 0xffffff0008eedc00][SLP] cron 77445 ffffff0036028340 0 1026 1026 0000000 [SLPQ piperd 0xffffff002c885300][SLP] cron 77441 ffffff0038ef2340 2 77438 77441 0004000 [SLPQ wait 0xffffff0038ef2340][SLP] sh 77438 ffffff005c5f0680 0 2842 2842 0000000 [SLPQ piperd 0xffffff0008547000][SLP] cron 76840 ffffff0059fc79c0 80 2553 2553 0000100 [RUNQ] httpd 76832 ffffff0035d0b9c0 80 2553 2553 0000100 [RUNQ] httpd 76831 ffffff00346739c0 80 2553 2553 0000100 [SLPQ select 0xffffffff809c6310][SLP] httpd 76830 ffffff0038ef29c0 80 2553 2553 0000100 [SLPQ select 0xffffffff809c6310][SLP] httpd 76829 ffffff005d0ce680 80 2553 2553 0000100 [SLPQ accept 0xffffff004c6b6c66][SLP] httpd 76828 ffffff006053e680 80 2553 2553 0000100 [SLPQ accept 0xffffff004c6b6c66][SLP] httpd 76827 ffffff00739e9340 80 2553 2553 0000100 [SLPQ accept 0xffffff004c6b6c66][SLP] httpd 76823 ffffff0032f879c0 80 2553 2553 0000100 [SLPQ accept 0xffffff004c6b6c66][SLP] httpd 76821 ffffff0061fd8000 80 2553 2553 0000100 [RUNQ] httpd 76810 ffffff00342d09c0 80 2553 2553 0000100 [SLPQ accept 0xffffff004c6b6c66][SLP] httpd 76798 ffffff005342b340 80 2553 2553 0000100 [SLPQ accept 0xffffff004c6b6c66][SLP] httpd 76782 ffffff0032f87000 1000 979 979 0004000 [SLPQ select 0xffffffff809c6310][SLP] imapd 76304 ffffff005115b340 125 2598 2598 0004100 [SLPQ select 0xffffffff809c6310][SLP] pickup 76163 ffffff0032f87680 0 812 812 0000000 [SLPQ select 0xffffffff809c6310][SLP] perl5.8.8 73976 ffffff005ff7d680 1000 979 979 0004000 [SLPQ select 0xffffffff809c6310][SLP] imapd 72957 ffffff00342d0680 0 812 812 0000000 [SLPQ select 0xffffffff809c6310][SLP] perl5.8.8 72944 ffffff005d0ce000 1001 979 979 0004000 [SLPQ select 0xffffffff809c6310][SLP] imapd 72008 ffffff00360289c0 80 742 742 0000100 [SLPQ accept 0xffffff005d10c9fe][SLP] httpd 72007 ffffff0074950680 80 742 742 0000100 [SLPQ accept 0xffffff005d10c9fe][SLP] httpd 71893 ffffff006c2ce000 6676 71892 71893 0004002 [SLPQ ttyin 0xffffff0060795810][SLP] bash 71892 ffffff002456d680 6676 71890 71890 0000100 [SLPQ select 0xffffffff809c6310][SLP] sshd 71890 ffffff004b361000 0 1021 71890 0004100 [SLPQ sbwait 0xffffff002c38c870][SLP] sshd 71889 ffffff004a2c2340 90 979 979 0004000 [SLPQ select 0xffffffff809c6310][SLP] imapd 66142 ffffff0074950000 1000 66141 66142 0004102 [SLPQ pause 0xffffff0074950068][SLP] screen 66141 ffffff0035ae9680 1000 66140 66141 0004002 [SLPQ wait 0xffffff0035ae9680][SLP] bash 66140 ffffff004db7a340 1000 66135 66135 0000100 [SLPQ select 0xffffffff809c6310][SLP] sshd 66135 ffffff002c60b680 0 1021 66135 0004100 [SLPQ sbwait 0xffffff0049d3d3a0][SLP] sshd 58735 ffffff0051e7d9c0 10002 1 58735 0000000 [SLPQ select 0xffffffff809c6310][SLP] ezb 56610 ffffff0051cfc9c0 80 742 742 0000100 [SLPQ accept 0xffffff005d10c9fe][SLP] httpd 35196 ffffff005fe7f000 80 742 742 0000100 [SLPQ accept 0xffffff005d10c9fe][SLP] httpd 35192 ffffff006a4e0340 80 742 742 0000100 [SLPQ accept 0xffffff005d10c9fe][SLP] httpd 35191 ffffff0061b3c000 80 742 742 0000100 [SLPQ accept 0xffffff005d10c9fe][SLP] httpd 35190 ffffff00506f09c0 80 742 742 0000100 [SLPQ accept 0xffffff005d10c9fe][SLP] httpd 35189 ffffff004e009000 80 742 742 0000100 [SLPQ accept 0xffffff005d10c9fe][SLP] httpd 35188 ffffff002f74f340 80 742 742 0000100 [SLPQ accept 0xffffff005d10c9fe][SLP] httpd 35185 ffffff002c60b340 80 742 742 0000100 [SLPQ accept 0xffffff005d10c9fe][SLP] httpd 14960 ffffff0035ae99c0 6694 14958 14960 0004002 [SLPQ select 0xffffffff809c6310][SLP] irssi 14958 ffffff0034673000 6694 1 14958 0000100 [SLPQ select 0xffffffff809c6310][SLP] screen 12267 ffffff0074950340 2003 979 979 0004000 [SLPQ select 0xffffffff809c6310][SLP] imapd 11765 ffffff00739e9000 2003 979 979 0004000 [SLPQ select 0xffffffff809c6310][SLP] imapd 11500 ffffff006143e340 80 2556 2556 0000100 [SLPQ accept 0xffffff00451b59fe][SLP] httpd 10483 ffffff0047119340 80 2353 2353 0000100 [SLPQ accept 0xffffff004c4d52c6][SLP] httpd 10481 ffffff003be99680 80 2353 2353 0000100 [SLPQ accept 0xffffff004c4d52c6][SLP] httpd 3244 ffffff0035b71000 1017 979 979 0004000 [SLPQ select 0xffffffff809c6310][SLP] imapd 3231 ffffff0047f369c0 90 979 979 0004000 [SLPQ select 0xffffffff809c6310][SLP] imapd 3228 ffffff005ba74000 1006 979 979 0004000 [SLPQ select 0xffffffff809c6310][SLP] imapd 3227 ffffff0061b3c340 90 979 979 0004000 [SLPQ select 0xffffffff809c6310][SLP] imapd 3100 ffffff006143e000 80 2353 2353 0000100 [SLPQ accept 0xffffff004c4d52c6][SLP] httpd 3029 ffffff003bec4340 1026 979 979 0004000 [SLPQ select 0xffffffff809c6310][SLP] imapd 3007 ffffff004b9c2680 1017 979 979 0004000 [SLPQ select 0xffffffff809c6310][SLP] imapd 2962 ffffff0051cfc000 0 1497 2962 0004100 [SLPQ select 0xffffffff809c6310][SLP] fam 2945 ffffff004db7a9c0 0 2944 2945 0004002 [SLPQ ttyin 0xffffff0066152410][SLP] bash 2944 ffffff0032f87340 0 2941 2944 0004102 [SLPQ wait 0xffffff0032f87340][SLP] su 2941 ffffff0050f1d000 1000 2939 2941 0004002 [SLPQ wait 0xffffff0050f1d000][SLP] bash 2939 ffffff004b864340 1000 1 2939 0000100 [SLPQ select 0xffffffff809c6310][SLP] screen 2911 ffffff004a2c29c0 0 1 2911 0000000 [SLPQ nanslp 0xffffffff8093c780][SLP] cron 2901 ffffff0050a96000 0 1 2901 0000000 [SLPQ select 0xffffffff809c6310][SLP] inetd 2885 ffffff003ceda680 25 1 2885 0000100 [SLPQ pause 0xffffff003ceda6e8][SLP] sendmail 2879 ffffff0051264680 0 1 2879 0000000 [SLPQ nanslp 0xffffffff8093c780][SLP] cron 2868 ffffff0052df3340 0 1 2868 0000000 [SLPQ select 0xffffffff809c6310][SLP] inetd 2842 ffffff003be99000 0 1 2842 0000000 [SLPQ nanslp 0xffffffff8093c780][SLP] cron 2838 ffffff004d91c340 25 1 2838 0000100 [SLPQ pause 0xffffff004d91c3a8][SLP] sendmail 2834 ffffff0048118340 0 1 2834 0000100 [SLPQ select 0xffffffff809c6310][SLP] sendmail 2824 ffffff0049c40680 0 1 2824 0000000 [SLPQ select 0xffffffff809c6310][SLP] inetd 2818 ffffff003c4f8000 0 1 2818 0000100 [SLPQ select 0xffffffff809c6310][SLP] sshd 2805 ffffff005366a340 0 1 2805 0000100 [SLPQ select 0xffffffff809c6310][SLP] sshd 2801 ffffff0050f31340 25 1 2801 0000100 [SLPQ pause 0xffffff0050f313a8][SLP] sendmail 2797 ffffff003c4f8680 0 1 2797 0000100 [SLPQ select 0xffffffff809c6310][SLP] sendmail 2790 ffffff003be999c0 0 1 2790 0000100 [SLPQ select 0xffffffff809c6310][SLP] sshd 2784 ffffff003ca17340 0 1 2784 0000000 [SLPQ nanslp 0xffffffff8093c780][SLP] cron 2772 ffffff0050f319c0 0 1 2772 0000000 [SLPQ select 0xffffffff809c6310][SLP] inetd 2768 ffffff003ca179c0 88 2708 2707 000c080 (threaded) mysqld thread 0xffffff004809c720 ksegrp 0xffffff004de38240 [SLPQ kserel 0xffffff004de38298][SLP] thread 0xffffff000ac4d000 ksegrp 0xffffff004de38240 [SLPQ kserel 0xffffff004de38298][SLP] thread 0xffffff00380434c0 ksegrp 0xffffff004de38240 [SLPQ select 0xffffffff809c6310][SLP] thread 0xffffff00397e0720 ksegrp 0xffffff004ccb9480 [SLPQ sigwait 0xffffffffb52c5a38][SLP] thread 0xffffff00397e0980 ksegrp 0xffffff003b203360 [SLPQ ksesigwait 0xffffff003ca17ba8][SLP] 2715 ffffff003ceda340 25 1 2715 0000100 [SLPQ pause 0xffffff003ceda3a8][SLP] sendmail 2711 ffffff003ceda9c0 0 1 2711 0000100 [SLPQ pause 0xffffff003cedaa28][SLP] sendmail 2708 ffffff003bec4680 88 1 2707 0004000 [SLPQ wait 0xffffff003bec4680][SLP] sh 2689 ffffff004cf9b9c0 125 2598 2598 0004100 [SLPQ select 0xffffffff809c6310][SLP] qmgr 2674 ffffff0050817680 0 1 2674 0000100 [SLPQ select 0xffffffff809c6310][SLP] sshd 2664 ffffff005ff7d340 1001 1 2664 0000000 [SLPQ accept 0xffffff0048155c66][SLP] svnserve 2662 ffffff00512649c0 88 2614 2603 000c080 (threaded) mysqld thread 0xffffff0046cbd4c0 ksegrp 0xffffff0050c43870 [SLPQ kserel 0xffffff0050c438c8][SLP] thread 0xffffff0038043be0 ksegrp 0xffffff0050c43870 [SLPQ select 0xffffffff809c6310][SLP] thread 0xffffff004a031720 ksegrp 0xffffff0050c43870 [SLPQ kserel 0xffffff0050c438c8][SLP] thread 0xffffff0061935720 ksegrp 0xffffff003b203900 [SLPQ kserel 0xffffff003b203958][SLP] thread 0xffffff00474c5260 ksegrp 0xffffff004ccb9090 [SLPQ kserel 0xffffff004ccb90e8][SLP] thread 0xffffff003c17bbe0 ksegrp 0xffffff004ccb9120 [SLPQ sbwait 0xffffff003d154d40][SLP] thread 0xffffff003c121260 ksegrp 0xffffff004ccb91b0 [SLPQ sigwait 0xffffffffb52d9a38][SLP] thread 0xffffff004cf7e260 ksegrp 0xffffff004ccb9240 [SLPQ ksesigwait 0xffffff0051264ba8][SLP] 2631 ffffff0047119000 80 2556 2556 0000100 [SLPQ accept 0xffffff00451b59fe][SLP] httpd 2630 ffffff0050f31000 80 2556 2556 0000100 [SLPQ accept 0xffffff00451b59fe][SLP] httpd 2629 ffffff004d2b7680 80 2556 2556 0000100 [SLPQ accept 0xffffff00451b59fe][SLP] httpd 2628 ffffff0047f36000 80 2556 2556 0000100 [SLPQ accept 0xffffff00451b59fe][SLP] httpd 2627 ffffff00507159c0 80 2556 2556 0000100 [SLPQ accept 0xffffff00451b59fe][SLP] httpd 2614 ffffff0051264340 88 1 2603 0004000 [SLPQ wait 0xffffff0051264340][SLP] sh 2607 ffffff004a2c2000 80 1 2606 0000100 [SLPQ kqread 0xffffff004c3d5600][SLP] lighttpd 2598 ffffff005fe7f9c0 0 1 2598 0004100 [SLPQ select 0xffffffff809c6310][SLP] master 2556 ffffff0050817340 0 1 2556 0000000 [SLPQ nanslp 0xffffffff8093c780][SLP] httpd 2553 ffffff0050a96340 0 1 2553 0000000 [SLPQ select 0xffffffff809c6310][SLP] httpd 2552 ffffff004d2b79c0 80 2353 2353 0000100 [SLPQ accept 0xffffff004c4d52c6][SLP] httpd 2548 ffffff006253c340 80 2353 2353 0000100 [SLPQ accept 0xffffff004c4d52c6][SLP] httpd 2513 ffffff0051cfc680 88 2417 2330 000c080 (threaded) mysqld thread 0xffffff001455d260 ksegrp 0xffffff005bfb5480 [SLPQ kserel 0xffffff005bfb54d8][SLP] thread 0xffffff00563734c0 ksegrp 0xffffff002d4d4480 [SLPQ kserel 0xffffff002d4d44d8][SLP] thread 0xffffff00160c0720 ksegrp 0xffffff005bfb5480 [SLPQ kserel 0xffffff005bfb54d8][SLP] thread 0xffffff0013e554c0 ksegrp 0xffffff005bfb5480 [SLPQ select 0xffffffff809c6310][SLP] thread 0xffffff004cf7e4c0 ksegrp 0xffffff004de38480 [SLPQ sigwait 0xffffffffb51b2a38][SLP] thread 0xffffff00474c5000 ksegrp 0xffffff004ccb92d0 [SLPQ ksesigwait 0xffffff0051cfc868][SLP] 2507 ffffff0048118000 0 1 2507 0000000 [SLPQ nanslp 0xffffffff8093c780][SLP] cron 2492 ffffff004b9c2340 0 1 2492 0000000 [SLPQ select 0xffffffff809c6310][SLP] inetd 2460 ffffff004b8649c0 194 1 2460 0000000 [SLPQ kqread 0xffffff0050da5a00][SLP] ircd 2457 ffffff0052df3680 0 1 2457 0000000 [SLPQ nanslp 0xffffffff8093c780][SLP] cron 2452 ffffff004db7a680 25 1 2452 0000100 [SLPQ pause 0xffffff004db7a6e8][SLP] sendmail 2437 ffffff0047e57000 0 1 2437 0000000 [SLPQ select 0xffffffff809c6310][SLP] inetd 2431 ffffff0047f36340 0 1 2431 0000100 [SLPQ select 0xffffffff809c6310][SLP] sendmail 2417 ffffff004b361680 88 1 2330 0004000 [SLPQ wait 0xffffff004b361680][SLP] sh 2396 ffffff0049c409c0 25 1 2396 0000100 [SLPQ pause 0xffffff0049c40a28][SLP] sendmail 2365 ffffff004cf9b000 0 1 2365 0000100 [SLPQ select 0xffffffff809c6310][SLP] sendmail 2353 ffffff0062199340 0 1 2353 0000000 [SLPQ select 0xffffffff809c6310][SLP] httpd 2338 ffffff005d0ce9c0 0 1 2338 0000100 [SLPQ select 0xffffffff809c6310][SLP] sshd 2301 ffffff004b9c2000 0 1 2301 0000100 [SLPQ select 0xffffffff809c6310][SLP] sshd 2296 ffffff004b864000 0 1 2296 0000000 [SLPQ nanslp 0xffffffff8093c780][SLP] cron 2275 ffffff0050f31680 0 1 2275 0000000 [SLPQ select 0xffffffff809c6310][SLP] inetd 2241 ffffff004cf9b680 25 1 2241 0000100 [SLPQ pause 0xffffff004cf9b6e8][SLP] sendmail 2233 ffffff005ccef340 0 1 2233 0000100 [SLPQ select 0xffffffff809c6310][SLP] sendmail 2208 ffffff0050f1d340 88 2113 1989 000c080 (threaded) mysqld thread 0xffffff00214ec260 ksegrp 0xffffff00625be480 [SLPQ kserel 0xffffff00625be4d8][SLP] thread 0xffffff001afcabe0 ksegrp 0xffffff00625be480 [SLPQ kserel 0xffffff00625be4d8][SLP] thread 0xffffff000f979000 ksegrp 0xffffff00625be480 [SLPQ select 0xffffffff809c6310][SLP] thread 0xffffff0057bd9720 ksegrp 0xffffff004ccb93f0 [SLPQ sigwait 0xffffffffb4fe6a38][SLP] thread 0xffffff005c10b720 ksegrp 0xffffff004de38510 [SLPQ ksesigwait 0xffffff0050f1d528][SLP] 2113 ffffff004d2b7340 88 1 1989 0004000 [SLPQ wait 0xffffff004d2b7340][SLP] sh 2093 ffffff005366a680 0 1 2093 0000100 [SLPQ select 0xffffffff809c6310][SLP] sshd 1991 ffffff005115b680 0 1 1991 0000000 [SLPQ select 0xffffffff809c6310][SLP] syslogd 1921 ffffff004db7a000 0 1 1921 0000000 [SLPQ select 0xffffffff809c6310][SLP] syslogd 1874 ffffff005ba749c0 0 1 1874 0000000 [SLPQ select 0xffffffff809c6310][SLP] syslogd 1821 ffffff006053e9c0 0 1 1821 0000000 [SLPQ select 0xffffffff809c6310][SLP] syslogd 1677 ffffff0050715000 0 1 1677 0000000 [SLPQ select 0xffffffff809c6310][SLP] syslogd 1669 ffffff005d0ce340 0 1 1669 0000000 [SLPQ select 0xffffffff809c6310][SLP] syslogd 1583 ffffff005115b9c0 0 1 1583 0000000 [SLPQ select 0xffffffff809c6310][SLP] syslogd 1527 ffffff0052df39c0 0 1 1527 0004002 [SLPQ ttyin 0xffffff0079a09810][SLP] getty 1526 ffffff0050817000 0 1 1526 0004002 [SLPQ ttyin 0xffffff0079368410][SLP] getty 1525 ffffff0061834680 0 1 1525 0004002 [SLPQ ttyin 0xffffff0079368c10][SLP] getty 1524 ffffff0050f1d9c0 0 1 1524 0004002 [SLPQ ttyin 0xffffff0079e74c10][SLP] getty 1523 ffffff0050f1d680 0 1 1523 0004002 [SLPQ ttyin 0xffffff0078447010][SLP] getty 1522 ffffff006257d9c0 0 1 1522 0004002 [SLPQ ttyin 0xffffff0079e6a410][SLP] getty 1521 ffffff0050715340 0 1 1521 0004002 [SLPQ ttyin 0xffffff0079e74010][SLP] getty 1520 ffffff0059fc7680 0 1 1520 0004002 [SLPQ ttyin 0xffffff0079a49010][SLP] getty 1519 ffffff005b1b3340 0 1 1519 0004002 [SLPQ ttyin 0xffffff0079a49810][SLP] getty 1497 ffffff0051cfc340 0 1 1497 0000000 [SLPQ select 0xffffffff809c6310][SLP] inetd 1464 ffffff0051264000 0 1 46 0000002 [SLPQ select 0xffffffff809c6310][SLP] rxstack 1064 ffffff007ac01680 0 1063 1063 0000000 [SLPQ select 0xffffffff809c6310][SLP] fsavd 1063 ffffff005b8ca9c0 0 1 1063 0000000 [SLPQ select 0xffffffff809c6310][SLP] fsavd 1026 ffffff0059fc7000 0 1 1026 0000000 [SLPQ nanslp 0xffffffff8093c780][SLP] cron 1021 ffffff0052ea9680 0 1 1021 0000100 [SLPQ select 0xffffffff809c6310][SLP] sshd 1008 ffffff005c5f09c0 70 1007 1004 0000000 [SLPQ select 0xffffffff809c6310][SLP] postgres 1007 ffffff0052ea9000 70 1004 1004 0000000 [SLPQ select 0xffffffff809c6310][SLP] postgres 1006 ffffff0052ea99c0 70 1004 1004 0000000 [SLPQ select 0xffffffff809c6310][SLP] postgres 1004 ffffff005fe7f340 70 1 1004 0000000 [SLPQ select 0xffffffff809c6310][SLP] postgres 989 ffffff005342b9c0 0 988 989 0004002 [SLPQ select 0xffffffff809c6310][SLP] couriertcpd 988 ffffff005342b680 0 1 988 0000003 [SLPQ piperd 0xffffff00613a9600][SLP] courierlogger 979 ffffff005ff7d9c0 0 978 979 0004002 [SLPQ select 0xffffffff809c6310][SLP] couriertcpd 978 ffffff005ccef9c0 0 1 978 0000003 [SLPQ piperd 0xffffff005a1e8900][SLP] courierlogger 967 ffffff005ba74680 0 966 967 0004002 [SLPQ select 0xffffffff809c6310][SLP] couriertcpd 966 ffffff005b1b39c0 0 1 966 0000003 [SLPQ piperd 0xffffff005a1e8600][SLP] courierlogger 936 ffffff005366a9c0 389 1 936 0008181 (threaded) slapd thread 0xffffff003b892260 ksegrp 0xffffff0061c57d80 [SLPQ kserel 0xffffff0061c57dd8][SLP] thread 0xffffff00372904c0 ksegrp 0xffffff0061c57d80 [SLPQ select 0xffffffff809c6310][SLP] thread 0xffffff0054338720 ksegrp 0xffffff0061c57d80 [SLPQ kserel 0xffffff0061c57dd8][SLP] thread 0xffffff0056a8d720 ksegrp 0xffffff00625be3f0 [SLPQ ksesigwait 0xffffff005366aba8][SLP] 861 ffffff00600fa000 0 1 860 0000000 [SLPQ select 0xffffffff809c6310][SLP] snmpd 817 ffffff0061fd8680 26 1 817 0000100 [SLPQ select 0xffffffff809c6310][SLP] exim-4.62-0 812 ffffff005ba74340 0 1 812 0000000 [SLPQ select 0xffffffff809c6310][SLP] perl5.8.8 809 ffffff005c5f0340 0 793 789 0000002 [SLPQ select 0xffffffff809c6310][SLP] authdaemond 808 ffffff005b1b3000 0 793 789 0000002 [SLPQ select 0xffffffff809c6310][SLP] authdaemond 807 ffffff006053e340 0 793 789 0000002 [SLPQ select 0xffffffff809c6310][SLP] authdaemond 806 ffffff006257d000 0 793 789 0000002 [SLPQ select 0xffffffff809c6310][SLP] authdaemond 805 ffffff006257d340 0 793 789 0000002 [SLPQ select 0xffffffff809c6310][SLP] authdaemond 804 ffffff005ccef000 88 774 773 000c082 (threaded) mysqld thread 0xffffff002e921980 ksegrp 0xffffff007ba04bd0 [SLPQ kserel 0xffffff007ba04c28][SLP] thread 0xffffff006419e260 ksegrp 0xffffff007ba04bd0 [SLPQ kserel 0xffffff007ba04c28][SLP] thread 0xffffff000c50c720 ksegrp 0xffffff007ba04bd0 [SLPQ select 0xffffffff809c6310][SLP] thread 0xffffff0057bd9000 ksegrp 0xffffff005bfb56c0 [SLPQ sigwait 0xffffffffb4fd7a38][SLP] thread 0xffffff005c10bbe0 ksegrp 0xffffff005bfb5750 [SLPQ ksesigwait 0xffffff005ccef1e8][SLP] 793 ffffff0062199680 0 789 789 0004002 [SLPQ select 0xffffffff809c6310][SLP] authdaemond 789 ffffff005fe7f680 0 1 789 0000003 [SLPQ piperd 0xffffff0060f41600][SLP] courierlogger 774 ffffff005c5f0000 88 1 773 0004002 [SLPQ wait 0xffffff005c5f0000][SLP] sh 765 ffffff005ccef680 106 1 765 0000100 [SLPQ pause 0xffffff005ccef6e8][SLP] freshclam 760 ffffff006257d680 106 1 760 0008180 (threaded) clamd thread 0xffffff004a031000 ksegrp 0xffffff007ba18090 [SLPQ kserel 0xffffff007ba180e8][SLP] thread 0xffffff005153a000 ksegrp 0xffffff007ba18090 [SLPQ kserel 0xffffff007ba180e8][SLP] thread 0xffffff00292da4c0 ksegrp 0xffffff007ba18090 [SLPQ accept 0xffffff005c77d796][SLP] thread 0xffffff0057bd94c0 ksegrp 0xffffff005bfb55a0 [SLPQ ksesigwait 0xffffff006257d868][SLP] 742 ffffff005b1b3680 0 1 742 0000000 [SLPQ select 0xffffffff809c6310][SLP] httpd 720 ffffff005b8ca680 0 1 720 0000000 [SLPQ select 0xffffffff809c6310][SLP] ntpd 643 ffffff00621999c0 0 638 638 0000000 [SLPQ - 0xffffff005d435400][SLP] nfsd 642 ffffff0061834340 0 638 638 0000000 [SLPQ - 0xffffff005fc5e200][SLP] nfsd 640 ffffff005ff7d000 0 638 638 0000000 [SLPQ - 0xffffff005fc5e400][SLP] nfsd 639 ffffff0061834000 0 638 638 0000000 [SLPQ - 0xffffff005f83f600][SLP] nfsd 638 ffffff0062199000 0 1 638 0000000 [SLPQ select 0xffffffff809c6310][SLP] nfsd 636 ffffff0061fd8340 0 1 636 0000000 [SLPQ select 0xffffffff809c6310][SLP] mountd 633 ffffff00600fa9c0 0 1 633 0000000 [SLPQ select 0xffffffff809c6310][SLP] amd 567 ffffff006253c9c0 0 1 567 0000000 [SLPQ select 0xffffffff809c6310][SLP] rpcbind 532 ffffff007ac019c0 53 1 532 0000100 [SLPQ select 0xffffffff809c6310][SLP] named 465 ffffff00600fa340 0 1 465 0000000 [SLPQ select 0xffffffff809c6310][SLP] syslogd 411 ffffff007ac01340 0 1 411 0000000 [SLPQ select 0xffffffff809c6310][SLP] devd 230 ffffff006253c000 0 0 0 0000204 [SLPQ mdwait 0xffffff00619fc000][SLP] md0 212 ffffff0061fd89c0 0 1 212 0000000 [SLPQ pause 0xffffff0061fd8a28][SLP] adjkerntz 45 ffffff007acf99c0 0 0 0 0000204 [SLPQ m:w1 0xffffff000109ec00][SLP] g_mirror boot0s1 44 ffffff007aafd000 0 0 0 0000204 [SLPQ - 0xffffffffb2adebe4][SLP] schedcpu 43 ffffff007aafd340 0 0 0 0000204 [SLPQ sdflush 0xffffffff809e2e00][SLP] softdepflush 42 ffffff007aafd680 0 0 0 0000204 [SLPQ vlruwt 0xffffff007aafd680][SLP] vnlru 41 ffffff007aafd9c0 0 0 0 0000204 [SLPQ syncer 0xffffffff8093c360][SLP] syncer 40 ffffff007ac00000 0 0 0 0000204 [SLPQ psleep 0xffffffff809c6bd8][SLP] bufdaemon 39 ffffff007ac00340 0 0 0 000020c [SLPQ pgzero 0xffffffff809e4780][SLP] pagezero 38 ffffff007ac00680 0 0 0 0000204 [SLPQ psleep 0xffffffff809e3e4c][SLP] vmdaemon 37 ffffff007ac009c0 0 0 0 0000204 [SLPQ psleep 0xffffffff809e3dfc][SLP] pagedaemon 36 ffffff007ac01000 0 0 0 0000204 [IWAIT] irq7: ppc0 35 ffffff007b9e1680 0 0 0 0000204 [SLPQ - 0xffffff007ab0e848][SLP] fdc0 34 ffffff007b9e19c0 0 0 0 0000204 [IWAIT] swi0: sio 33 ffffff007ab56000 0 0 0 0000204 [IWAIT] irq1: atkbd0 32 ffffff007ab56340 0 0 0 0000204 [SLPQ idle 0xffffffff86ca3000][SLP] aic_recovery1 31 ffffff007ab56680 0 0 0 0000204 [IWAIT] irq25: bge1 ahd1 30 ffffff007ab569c0 0 0 0 0000204 [SLPQ idle 0xffffffff86c9f000][SLP] aic_recovery0 29 ffffff007acf9000 0 0 0 0000204 [LOCK Giant ffffff000123fb00] irq24: bge0 ahd0 28 ffffff007acf9340 0 0 0 0000204 [IWAIT] irq15: ata1 27 ffffff007acf9680 0 0 0 0000204 [IWAIT] irq14: ata0 26 ffffff007ba0a680 0 0 0 0000204 [IWAIT] irq18: fxp0 25 ffffff007ba0a9c0 0 0 0 0000204 [SLPQ usbevt 0xffffffff86c9b420][SLP] usb1 24 ffffff007ba5d000 0 0 0 0000204 [SLPQ usbtsk 0xffffffff80937510][SLP] usbtask 23 ffffff007ba5d340 0 0 0 0000204 [SLPQ usbevt 0xffffffff86c99420][SLP] usb0 22 ffffff007ba5d680 0 0 0 0000204 [IWAIT] irq19: ohci0 ohci+ 21 ffffff007ba5d9c0 0 0 0 0000204 [IWAIT] irq9: acpi0 9 ffffff007b9e1000 0 0 0 0000204 [SLPQ - 0xffffff0000e85500][SLP] kqueue taskq 8 ffffff007b9e1340 0 0 0 0000204 [SLPQ - 0xffffff0000d71400][SLP] acpi_task2 7 ffffff007ba039c0 0 0 0 0000204 [SLPQ - 0xffffff0000d71400][SLP] acpi_task1 6 ffffff007ba28000 0 0 0 0000204 [SLPQ - 0xffffff0000d71400][SLP] acpi_task0 20 ffffff007ba28340 0 0 0 0000204 [IWAIT] swi6: task queue 19 ffffff007ba28680 0 0 0 0000204 [IWAIT] swi6: + 5 ffffff007ba289c0 0 0 0 0000204 [SLPQ - 0xffffff0000d71900][SLP] thread taskq 18 ffffff007ba0a000 0 0 0 0000204 [IWAIT] swi5: + 17 ffffff007ba0a340 0 0 0 0000204 [IWAIT] swi2: cambio 16 ffffff007ba5a340 0 0 0 0000204 [SLPQ - 0xffffffff809350c0][SLP] yarrow 4 ffffff007ba5a680 0 0 0 0000204 [SLPQ - 0xffffffff80937e08][SLP] g_down 3 ffffff007ba5a9c0 0 0 0 0000204 [SLPQ - 0xffffffff80937e00][SLP] g_up 2 ffffff007ba03000 0 0 0 0000204 [SLPQ - 0xffffffff80937df0][SLP] g_event 15 ffffff007ba03340 0 0 0 0000204 [IWAIT] swi3: vm 14 ffffff007ba03680 0 0 0 000020c [LOCK Giant ffffff000123fb00] swi4: clock sio 13 ffffff007ba33000 0 0 0 0000204 [IWAIT] swi1: net 12 ffffff007ba33340 0 0 0 000020c [Can run] idle: cpu0 11 ffffff007ba33680 0 0 0 000020c [Can run] idle: cpu1 1 ffffff007ba339c0 0 0 1 0004200 [SLPQ wait 0xffffff007ba339c0][SLP] init 10 ffffff007ba5a000 0 0 0 0000204 [SLPQ ktrace 0xffffffff80938f00][SLP] ktrace 0 ffffffff80937f60 0 0 0 0000200 [IWAIT] swapper 11503 ffffff0061b3c9c0 80 2607 2606 0006000 zomb[INACTIVE] perl 2663 ffffff004b864680 80 2607 2606 0006000 zomb[INACTIVE] perl 2632 ffffff0049c40340 80 2607 2606 0006000 zomb[INACTIVE] perl db> c malloc(M_WAITOK) of "1024", forcing M_NOWAIT with the following non- sleepable locks held: exclusive sleep mutex vm object (standard object) r = 0 (0xffffff0018f3fe00) locked @ /usr/src/sys/compat/linprocfs/ linprocfs.c:879 KDB: enter: witness_warn [thread pid 77487 tid 100323 ] Stopped at kdb_enter+0x2f: nop db> call boot() panic: blockable sleep lock (sleep mutex) eventhandler @ /usr/src/sys/ kern/subr_eventhandler.c:212 cpuid = 0 KDB: stack backtrace: panic() at panic+0x253 witness_checkorder() at witness_checkorder+0x5c3 _mtx_lock_flags() at _mtx_lock_flags+0x4a eventhandler_find_list() at eventhandler_find_list+0x32 boot() at boot+0x96 db_fncall() at db_fncall+0xb1 db_command_loop() at db_command_loop+0x3b5 db_trap() at db_trap+0x63 kdb_trap() at kdb_trap+0xa9 trap() at trap+0x1b4 calltrap() at calltrap+0x5 --- trap 0x3, rip = 0xffffffff8043d68f, rsp = 0xffffffffb5374390, rbp = 0xffffffffb53743a0 --- kdb_enter() at kdb_enter+0x2f witness_warn() at witness_warn+0x2e0 uma_zalloc_arg() at uma_zalloc_arg+0x1ee malloc() at malloc+0xab vn_fullpath() at vn_fullpath+0x56 linprocfs_doprocmaps() at linprocfs_doprocmaps+0x31e pfs_read() at pfs_read+0x2a7 VOP_READ_APV() at VOP_READ_APV+0x74 vn_read() at vn_read+0x232 dofileread() at dofileread+0x94 kern_readv() at kern_readv+0x60 read() at read+0x4a ia32_syscall() at ia32_syscall+0x167 Xint0x80_syscall() at Xint0x80_syscall+0x5d Uptime: 17h2m19s Dumping 2047 MB (2 chunks) chunk 0: 1MB (156 pages) ... ok --Apple-Mail-4--497926925 Content-Transfer-Encoding: quoted-printable Content-Type: text/html; charset=ISO-8859-1 Hi again,

I now have WITNESS and = INVARIANTS in the kernel, and today it hung again. It looks somewhat = different than before, but I am fairly certain it's the same = error.

I've= tried to include everything asked for, except that I was silly enough = to do a "call boot()" before dumping, so it only started dumping after = the boot() call failed. Nevertheless; I do have a dump now, if it's of = any use.

Below = you'll find the panic message, a bt, a ps, and then the output of a "c", = which is exactly the same as the first message except it's not chopped = off due to terminal size, and finally the panic resulting from the = boot() call.

/Eirik

Expensive timeout(9) = function: 0xffffffff802944a0(0xffffffff86ca7000) 0.016565232 = s
Expensive timeout(9) function: 0xffffffff804f3b00(0) = 0.021799841 s
Expensive timeout(9) function: = 0xffffffff804455e0(0xffffff007ad7b000) 0.047916735 = s
malloc(M_WAITOK) of "1024", forcing M_NOWAIT with the = following non-sleepable locks held:
exclusive sleep mutex vm = object (standard object) r =3D 0 (0xffffff0018f3fe00) locked @ = /usr/src/sys/compat/linprocfs/lin9
KDB: enter: = witness_warn
[thread pid 77487 tid 100323 ]
Stopped = at=A0 =A0 =A0 kdb_enter+0x2f: nop
db>


db> bt=A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0
Tracing pid 77487 tid 100323 td 0xffffff00531794c0=A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =
kdb_enter() at kdb_enter+0x2f=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0=A0
witness_warn() at witness_warn+0x2e0=A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0
uma_zalloc_arg() at = uma_zalloc_arg+0x1ee=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0
malloc() at = malloc+0xab=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0= =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0=A0 =
vn_fullpath() at vn_fullpath+0x56=A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0=A0
linprocfs_doprocmaps() at = linprocfs_doprocmaps+0x31e=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0
pfs_read() at pfs_read+0x2a7=A0 =A0= =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0
VOP_READ_APV() at = VOP_READ_APV+0x74=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0=A0 =
vn_read() at vn_read+0x232=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0
dofileread() at dofileread+0x94=A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0=A0
kern_readv() at = kern_readv+0x60=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0= =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0=A0 =
read() at read+0x4a=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0=A0
ia32_syscall() at = ia32_syscall+0x167=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =
Xint0x80_syscall() at Xint0x80_syscall+0x5d=A0 =A0 =A0=A0 =A0=A0= =A0=A0 =A0=A0 =A0=A0 =A0=A0 =A0=A0 =A0=A0 =A0=A0 =A0=A0 =A0=A0 =A0=A0 = =A0=A0 =A0


db> ps =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0= =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0
=A0 = pid = =A0 = proc = =A0 =A0 = uid=A0 = ppid=A0 = pgrp=A0 = flag = =A0 = stat=A0 = wmesg=A0= =A0 wchan=A0= cmd = =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0
77510 ffffff0027630340=A0 =A0 2 77485 77462 0004000 [RUNQ] = mv=A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0
77509 = ffffff0036d2a000=A0= =A0 2 77466 77441 = 0006000 [RUNQ] dd=A0= =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0
77502 ffffff00342d0340=A0 =A0 0 77457 77457 0004000 [RUNQ] = perl=A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0
77492 = ffffff0072508680 =A0= 90 77454 77454 = 0004000 [SLPQ sbwait 0xffffff000d7513a0][SLP] = fetchmail=A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0
77489 = ffffff004d91c9c0 =A0= 91 77470 77470 = 0004000 [RUNQ] python2.4 =A0= =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0
77488 = ffffff006a4e0680 =A0= 91 77469 77469 = 0004000 [RUNQ] python2.4 =A0= =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0
77487 = ffffff0034673680=A0= =A0 0 77451 77451 = 0004000 [CPU 0] bdc=A0= =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0
77485 ffffff0050a969c0=A0 =A0 2 77462 77462 0004000 [SLPQ wait = 0xffffff0050a969c0][SLP] sh =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0= =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0
77480 ffffff004d2b7000=A0 =A0 0 77452 77452 0004000 [CPU 1] = perl5.8.8=A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0
77479 = ffffff006a4e0000=A0= =A0 0 77453 77453 = 0004000 [SLPQ vnread 0xffffffff9fe13b08][SLP] antivir=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0= =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0
77470 ffffff00506f0680 =A0 91 77465 77470 0004000 [SLPQ wait = 0xffffff00506f0680][SLP] sh =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0= =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0
77469 ffffff0072508340 =A0 91 77459 77469 0004000 [SLPQ wait = 0xffffff0072508340][SLP] sh =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0= =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0
77466 ffffff0061b3c680=A0 =A0 2 77441 77441 0004000 [SLPQ wait = 0xffffff0061b3c680][SLP] sh =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0= =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0
77465 ffffff00215f3000=A0 =A0 0=A0 1026=A0 = 1026 0000000 [SLPQ = piperd 0xffffff00209e4000][SLP] cron =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0= =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0
77462 ffffff0014911680=A0 =A0 2 77456 77462 0004000 [SLPQ wait = 0xffffff0014911680][SLP] sh =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0= =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0
77459 ffffff0036d2a680=A0 =A0 0=A0 1026=A0 = 1026 0000000 [SLPQ = piperd 0xffffff003c30c900][SLP] cron =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0= =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0
77457 ffffff0036028000=A0 =A0 0 77449 77457 0004000 [SLPQ wait = 0xffffff0036028000][SLP] sh =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0= =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0
77456 ffffff0037a4a9c0=A0 =A0 0=A0 1026=A0 = 1026 0000000 [SLPQ = piperd 0xffffff0036b82c00][SLP] cron =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0= =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0
77454 ffffff004a2c2680 =A0 90 77448 77454 0004000 [SLPQ wait = 0xffffff004a2c2680][SLP] sh =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0
77453 = ffffff0038ef2000=A0= =A0 0 77446 77453 = 0004000 [SLPQ wait 0xffffff0038ef2000][SLP] sh =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0= =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0
77452 = ffffff0037a4a000=A0= =A0 0 77447 77452 = 0004000 [SLPQ wait 0xffffff0037a4a000][SLP] sh =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0= =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0
77451 = ffffff004d91c680=A0= =A0 0 77445 77451 = 0004000 [SLPQ wait 0xffffff004d91c680][SLP] sh =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0= =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0
77449 = ffffff00274119c0=A0= =A0 0=A0 = 1026=A0 = 1026 0000000 [SLPQ = piperd 0xffffff0060f41900][SLP] cron =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0= =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0
77448 ffffff002f74f000=A0 =A0 0=A0 1026=A0 = 1026 0000000 [SLPQ = piperd 0xffffff0011eb3600][SLP] cron =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0= =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0
77447 ffffff0049c40000=A0 =A0 0=A0 1026=A0 = 1026 0000000 [SLPQ = piperd 0xffffff0001a8f300][SLP] cron =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0= =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0
77446 ffffff004b9c29c0=A0 =A0 0=A0 1026=A0 = 1026 0000000 [SLPQ = piperd 0xffffff0008eedc00][SLP] cron =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0= =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0
77445 ffffff0036028340=A0 =A0 0=A0 1026=A0 = 1026 0000000 [SLPQ = piperd 0xffffff002c885300][SLP] cron =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0= =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0
77441 ffffff0038ef2340=A0 =A0 2 77438 77441 0004000 [SLPQ wait = 0xffffff0038ef2340][SLP] sh =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0= =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0
77438 ffffff005c5f0680=A0 =A0 0=A0 2842=A0 = 2842 0000000 [SLPQ = piperd 0xffffff0008547000][SLP] cron =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0= =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0
76840 ffffff0059fc79c0 =A0 80=A0 2553=A0 2553 0000100 [RUNQ] httpd =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0= =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0
76832 ffffff0035d0b9c0 =A0 80=A0 2553=A0 2553 0000100 [RUNQ] httpd =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0= =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0
76831 ffffff00346739c0 =A0 80=A0 2553=A0 2553 0000100 [SLPQ select = 0xffffffff809c6310][SLP] httpd=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0= =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0
76830 ffffff0038ef29c0 =A0 80=A0 2553=A0 2553 0000100 [SLPQ select = 0xffffffff809c6310][SLP] httpd=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0= =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0
76829 ffffff005d0ce680 =A0 80=A0 2553=A0 2553 0000100 [SLPQ accept = 0xffffff004c6b6c66][SLP] httpd
76828 = ffffff006053e680 =A0= 80=A0 = 2553=A0 = 2553 0000100 [SLPQ = accept 0xffffff004c6b6c66][SLP] httpd
76827 = ffffff00739e9340 =A0= 80=A0 = 2553=A0 = 2553 0000100 [SLPQ = accept 0xffffff004c6b6c66][SLP] httpd
76823 = ffffff0032f879c0 =A0= 80=A0 = 2553=A0 = 2553 0000100 [SLPQ = accept 0xffffff004c6b6c66][SLP] httpd
76821 = ffffff0061fd8000 =A0= 80=A0 = 2553=A0 = 2553 0000100 = [RUNQ] httpd
76810 ffffff00342d09c0 =A0 80=A0 2553=A0 2553 0000100 [SLPQ accept = 0xffffff004c6b6c66][SLP] httpd
76798 = ffffff005342b340 =A0= 80=A0 = 2553=A0 = 2553 0000100 [SLPQ = accept 0xffffff004c6b6c66][SLP] httpd
76782 = ffffff0032f87000 1000 =A0= 979 = =A0 = 979 0004000 [SLPQ = select 0xffffffff809c6310][SLP] imapd
76304 = ffffff005115b340=A0= 125=A0 = 2598=A0 = 2598 0004100 [SLPQ = select 0xffffffff809c6310][SLP] pickup
76163 = ffffff0032f87680=A0= =A0 0 = =A0 = 812 = =A0 = 812 0000000 [SLPQ = select 0xffffffff809c6310][SLP] perl5.8.8
73976 = ffffff005ff7d680 1000 =A0= 979 = =A0 = 979 0004000 [SLPQ = select 0xffffffff809c6310][SLP] imapd
72957 = ffffff00342d0680=A0= =A0 0 = =A0 = 812 = =A0 = 812 0000000 [SLPQ = select 0xffffffff809c6310][SLP] perl5.8.8
72944 = ffffff005d0ce000 1001 =A0= 979 = =A0 = 979 0004000 [SLPQ = select 0xffffffff809c6310][SLP] imapd
72008 = ffffff00360289c0 =A0= 80 = =A0 = 742 = =A0 = 742 0000100 [SLPQ = accept 0xffffff005d10c9fe][SLP] httpd
72007 = ffffff0074950680 =A0= 80 = =A0 = 742 = =A0 = 742 0000100 [SLPQ = accept 0xffffff005d10c9fe][SLP] httpd
71893 = ffffff006c2ce000 6676 71892 71893 0004002 [SLPQ ttyin = 0xffffff0060795810][SLP] bash
71892 ffffff002456d680 6676 71890 71890 = 0000100 [SLPQ select 0xffffffff809c6310][SLP] = sshd
71890 ffffff004b361000=A0 =A0 0=A0 1021 71890 = 0004100 [SLPQ sbwait 0xffffff002c38c870][SLP] = sshd
71889 ffffff004a2c2340 =A0 90 =A0 979 =A0 979 0004000 [SLPQ select = 0xffffffff809c6310][SLP] imapd
66142 = ffffff0074950000 1000 66141 66142 0004102 [SLPQ pause = 0xffffff0074950068][SLP] screen
66141 = ffffff0035ae9680 1000 66140 66141 0004002 [SLPQ wait = 0xffffff0035ae9680][SLP] bash
66140 ffffff004db7a340 1000 66135 66135 = 0000100 [SLPQ select 0xffffffff809c6310][SLP] = sshd
66135 ffffff002c60b680=A0 =A0 0=A0 1021 66135 = 0004100 [SLPQ sbwait 0xffffff0049d3d3a0][SLP] = sshd
58735 ffffff0051e7d9c0 10002 = =A0 =A0 = 1 58735 0000000 = [SLPQ select 0xffffffff809c6310][SLP] ezb
56610 = ffffff0051cfc9c0 =A0= 80 = =A0 = 742 = =A0 = 742 0000100 [SLPQ = accept 0xffffff005d10c9fe][SLP] httpd
35196 = ffffff005fe7f000 =A0= 80 = =A0 = 742 = =A0 = 742 0000100 [SLPQ = accept 0xffffff005d10c9fe][SLP] httpd
35192 = ffffff006a4e0340 =A0= 80 = =A0 = 742 = =A0 = 742 0000100 [SLPQ = accept 0xffffff005d10c9fe][SLP] httpd
35191 = ffffff0061b3c000 =A0= 80 = =A0 = 742 = =A0 = 742 0000100 [SLPQ = accept 0xffffff005d10c9fe][SLP] httpd
35190 = ffffff00506f09c0 =A0= 80 = =A0 = 742 = =A0 = 742 0000100 [SLPQ = accept 0xffffff005d10c9fe][SLP] httpd
35189 = ffffff004e009000 =A0= 80 = =A0 = 742 = =A0 = 742 0000100 [SLPQ = accept 0xffffff005d10c9fe][SLP] httpd
35188 = ffffff002f74f340 =A0= 80 = =A0 = 742 = =A0 = 742 0000100 [SLPQ = accept 0xffffff005d10c9fe][SLP] httpd
35185 = ffffff002c60b340 =A0= 80 = =A0 = 742 = =A0 = 742 0000100 [SLPQ = accept 0xffffff005d10c9fe][SLP] httpd
14960 = ffffff0035ae99c0 6694 14958 14960 0004002 [SLPQ select = 0xffffffff809c6310][SLP] irssi
14958 = ffffff0034673000 6694 =A0= =A0 1 14958 0000100 = [SLPQ select 0xffffffff809c6310][SLP] screen
12267 = ffffff0074950340 2003 =A0= 979 = =A0 = 979 0004000 [SLPQ = select 0xffffffff809c6310][SLP] imapd
11765 = ffffff00739e9000 2003 =A0= 979 = =A0 = 979 0004000 [SLPQ = select 0xffffffff809c6310][SLP] imapd
11500 = ffffff006143e340 =A0= 80=A0 = 2556=A0 = 2556 0000100 [SLPQ = accept 0xffffff00451b59fe][SLP] httpd
10483 = ffffff0047119340 =A0= 80=A0 = 2353=A0 = 2353 0000100 [SLPQ = accept 0xffffff004c4d52c6][SLP] httpd
10481 = ffffff003be99680 =A0= 80=A0 = 2353=A0 = 2353 0000100 [SLPQ = accept 0xffffff004c4d52c6][SLP] httpd
=A03244 = ffffff0035b71000 1017 =A0= 979 = =A0 = 979 0004000 [SLPQ = select 0xffffffff809c6310][SLP] imapd
=A03231 = ffffff0047f369c0 =A0= 90 = =A0 = 979 = =A0 = 979 0004000 [SLPQ = select 0xffffffff809c6310][SLP] imapd
=A03228 = ffffff005ba74000 1006 =A0= 979 = =A0 = 979 0004000 [SLPQ = select 0xffffffff809c6310][SLP] imapd
=A03227 = ffffff0061b3c340 =A0= 90 = =A0 = 979 = =A0 = 979 0004000 [SLPQ = select 0xffffffff809c6310][SLP] imapd
=A03100 = ffffff006143e000 =A0= 80=A0 = 2353=A0 = 2353 0000100 [SLPQ = accept 0xffffff004c4d52c6][SLP] httpd
=A03029 = ffffff003bec4340 1026 =A0= 979 = =A0 = 979 0004000 [SLPQ = select 0xffffffff809c6310][SLP] imapd
=A03007 = ffffff004b9c2680 1017 =A0= 979 = =A0 = 979 0004000 [SLPQ = select 0xffffffff809c6310][SLP] imapd
=A02962 = ffffff0051cfc000=A0= =A0 0=A0 = 1497=A0 = 2962 0004100 [SLPQ = select 0xffffffff809c6310][SLP] fam
=A02945 = ffffff004db7a9c0=A0= =A0 0=A0 = 2944=A0 = 2945 0004002 [SLPQ = ttyin 0xffffff0066152410][SLP] bash
=A02944 = ffffff0032f87340=A0= =A0 0=A0 = 2941=A0 = 2944 0004102 [SLPQ = wait 0xffffff0032f87340][SLP] su
=A02941 = ffffff0050f1d000 1000=A0= 2939=A0 = 2941 0004002 [SLPQ = wait 0xffffff0050f1d000][SLP] bash
=A02939 = ffffff004b864340 1000 =A0= =A0 1=A0 = 2939 0000100 [SLPQ = select 0xffffffff809c6310][SLP] screen
=A02911 = ffffff004a2c29c0=A0= =A0 0 = =A0 =A0 = 1=A0 = 2911 0000000 [SLPQ = nanslp 0xffffffff8093c780][SLP] cron
=A02901 = ffffff0050a96000=A0= =A0 0 = =A0 =A0 = 1=A0 = 2901 0000000 [SLPQ = select 0xffffffff809c6310][SLP] inetd
=A02885 = ffffff003ceda680 =A0= 25 = =A0 =A0 = 1=A0 = 2885 0000100 [SLPQ = pause 0xffffff003ceda6e8][SLP] sendmail
=A02879 = ffffff0051264680=A0= =A0 0 = =A0 =A0 = 1=A0 = 2879 0000000 [SLPQ = nanslp 0xffffffff8093c780][SLP] cron
=A02868 = ffffff0052df3340=A0= =A0 0 = =A0 =A0 = 1=A0 = 2868 0000000 [SLPQ = select 0xffffffff809c6310][SLP] inetd
=A02842 = ffffff003be99000=A0= =A0 0 = =A0 =A0 = 1=A0 = 2842 0000000 [SLPQ = nanslp 0xffffffff8093c780][SLP] cron
=A02838 = ffffff004d91c340 =A0= 25 = =A0 =A0 = 1=A0 = 2838 0000100 [SLPQ = pause 0xffffff004d91c3a8][SLP] sendmail
=A02834 = ffffff0048118340=A0= =A0 0 = =A0 =A0 = 1=A0 = 2834 0000100 [SLPQ = select 0xffffffff809c6310][SLP] sendmail
=A02824 = ffffff0049c40680=A0= =A0 0 = =A0 =A0 = 1=A0 = 2824 0000000 [SLPQ = select 0xffffffff809c6310][SLP] inetd
=A02818 = ffffff003c4f8000=A0= =A0 0 = =A0 =A0 = 1=A0 = 2818 0000100 [SLPQ = select 0xffffffff809c6310][SLP] sshd
=A02805 = ffffff005366a340=A0= =A0 0 = =A0 =A0 = 1=A0 = 2805 0000100 [SLPQ = select 0xffffffff809c6310][SLP] sshd
=A02801 = ffffff0050f31340 =A0= 25 = =A0 =A0 = 1=A0 = 2801 0000100 [SLPQ = pause 0xffffff0050f313a8][SLP] sendmail
=A02797 = ffffff003c4f8680=A0= =A0 0 = =A0 =A0 = 1=A0 = 2797 0000100 [SLPQ = select 0xffffffff809c6310][SLP] sendmail
=A02790 = ffffff003be999c0=A0= =A0 0 = =A0 =A0 = 1=A0 = 2790 0000100 [SLPQ = select 0xffffffff809c6310][SLP] sshd
=A02784 = ffffff003ca17340=A0= =A0 0 = =A0 =A0 = 1=A0 = 2784 0000000 [SLPQ = nanslp 0xffffffff8093c780][SLP] cron
=A02772 = ffffff0050f319c0=A0= =A0 0 = =A0 =A0 = 1=A0 = 2772 0000000 [SLPQ = select 0xffffffff809c6310][SLP] inetd
=A02768 = ffffff003ca179c0 =A0= 88=A0 = 2708=A0 = 2707 000c080 = (threaded)=A0 = mysqld
=A0=A0 thread 0xffffff004809c720 ksegrp = 0xffffff004de38240 [SLPQ kserel = 0xffffff004de38298][SLP]
=A0=A0 thread 0xffffff000ac4d000 ksegrp = 0xffffff004de38240 [SLPQ kserel = 0xffffff004de38298][SLP]
=A0=A0 thread 0xffffff00380434c0 ksegrp = 0xffffff004de38240 [SLPQ select = 0xffffffff809c6310][SLP]
=A0=A0 thread 0xffffff00397e0720 ksegrp = 0xffffff004ccb9480 [SLPQ sigwait = 0xffffffffb52c5a38][SLP]
=A0=A0 thread 0xffffff00397e0980 ksegrp = 0xffffff003b203360 [SLPQ ksesigwait = 0xffffff003ca17ba8][SLP]
=A02715 ffffff003ceda340 =A0 25 =A0 =A0 1=A0 2715 0000100 = [SLPQ pause 0xffffff003ceda3a8][SLP] sendmail
=A02711 = ffffff003ceda9c0=A0= =A0 0 = =A0 =A0 = 1=A0 = 2711 0000100 [SLPQ = pause 0xffffff003cedaa28][SLP] sendmail
=A02708 = ffffff003bec4680 =A0= 88 = =A0 =A0 = 1=A0 = 2707 0004000 [SLPQ = wait 0xffffff003bec4680][SLP] sh
=A02689 = ffffff004cf9b9c0=A0= 125=A0 = 2598=A0 = 2598 0004100 [SLPQ = select 0xffffffff809c6310][SLP] qmgr
=A02674 = ffffff0050817680=A0= =A0 0 = =A0 =A0 = 1=A0 = 2674 0000100 [SLPQ = select 0xffffffff809c6310][SLP] sshd
=A02664 = ffffff005ff7d340 1001 =A0= =A0 1=A0 = 2664 0000000 [SLPQ = accept 0xffffff0048155c66][SLP] svnserve
=A02662 = ffffff00512649c0 =A0= 88=A0 = 2614=A0 = 2603 000c080 = (threaded)=A0 = mysqld
=A0=A0 thread 0xffffff0046cbd4c0 ksegrp = 0xffffff0050c43870 [SLPQ kserel = 0xffffff0050c438c8][SLP]
=A0=A0 thread 0xffffff0038043be0 ksegrp = 0xffffff0050c43870 [SLPQ select = 0xffffffff809c6310][SLP]
=A0=A0 thread 0xffffff004a031720 ksegrp = 0xffffff0050c43870 [SLPQ kserel = 0xffffff0050c438c8][SLP]
=A0=A0 thread 0xffffff0061935720 ksegrp = 0xffffff003b203900 [SLPQ kserel = 0xffffff003b203958][SLP]
=A0=A0 thread 0xffffff00474c5260 ksegrp = 0xffffff004ccb9090 [SLPQ kserel = 0xffffff004ccb90e8][SLP]
=A0=A0 thread 0xffffff003c17bbe0 ksegrp = 0xffffff004ccb9120 [SLPQ sbwait = 0xffffff003d154d40][SLP]
=A0=A0 thread 0xffffff003c121260 ksegrp = 0xffffff004ccb91b0 [SLPQ sigwait = 0xffffffffb52d9a38][SLP]
=A0=A0 thread 0xffffff004cf7e260 ksegrp = 0xffffff004ccb9240 [SLPQ ksesigwait = 0xffffff0051264ba8][SLP]
=A02631 ffffff0047119000 =A0 80=A0 2556=A0 2556 0000100 [SLPQ accept = 0xffffff00451b59fe][SLP] httpd
=A02630 = ffffff0050f31000 =A0= 80=A0 = 2556=A0 = 2556 0000100 [SLPQ = accept 0xffffff00451b59fe][SLP] httpd
=A02629 = ffffff004d2b7680 =A0= 80=A0 = 2556=A0 = 2556 0000100 [SLPQ = accept 0xffffff00451b59fe][SLP] httpd
=A02628 = ffffff0047f36000 =A0= 80=A0 = 2556=A0 = 2556 0000100 [SLPQ = accept 0xffffff00451b59fe][SLP] httpd
=A02627 = ffffff00507159c0 =A0= 80=A0 = 2556=A0 = 2556 0000100 [SLPQ = accept 0xffffff00451b59fe][SLP] httpd
=A02614 = ffffff0051264340 =A0= 88 = =A0 =A0 = 1=A0 = 2603 0004000 [SLPQ = wait 0xffffff0051264340][SLP] sh
=A02607 = ffffff004a2c2000 =A0= 80 = =A0 =A0 = 1=A0 = 2606 0000100 [SLPQ = kqread 0xffffff004c3d5600][SLP] lighttpd
=A02598 = ffffff005fe7f9c0=A0= =A0 0 = =A0 =A0 = 1=A0 = 2598 0004100 [SLPQ = select 0xffffffff809c6310][SLP] master
=A02556 = ffffff0050817340=A0= =A0 0 = =A0 =A0 = 1=A0 = 2556 0000000 [SLPQ = nanslp 0xffffffff8093c780][SLP] httpd
=A02553 = ffffff0050a96340=A0= =A0 0 = =A0 =A0 = 1=A0 = 2553 0000000 [SLPQ = select 0xffffffff809c6310][SLP] httpd
=A02552 = ffffff004d2b79c0 =A0= 80=A0 = 2353=A0 = 2353 0000100 [SLPQ = accept 0xffffff004c4d52c6][SLP] httpd
=A02548 = ffffff006253c340 =A0= 80=A0 = 2353=A0 = 2353 0000100 [SLPQ = accept 0xffffff004c4d52c6][SLP] httpd
=A02513 = ffffff0051cfc680 =A0= 88=A0 = 2417=A0 = 2330 000c080 = (threaded)=A0 = mysqld
=A0=A0 thread 0xffffff001455d260 ksegrp = 0xffffff005bfb5480 [SLPQ kserel = 0xffffff005bfb54d8][SLP]
=A0=A0 thread 0xffffff00563734c0 ksegrp = 0xffffff002d4d4480 [SLPQ kserel = 0xffffff002d4d44d8][SLP]
=A0=A0 thread 0xffffff00160c0720 ksegrp = 0xffffff005bfb5480 [SLPQ kserel = 0xffffff005bfb54d8][SLP]
=A0=A0 thread 0xffffff0013e554c0 ksegrp = 0xffffff005bfb5480 [SLPQ select = 0xffffffff809c6310][SLP]
=A0=A0 thread 0xffffff004cf7e4c0 ksegrp = 0xffffff004de38480 [SLPQ sigwait = 0xffffffffb51b2a38][SLP]
=A0=A0 thread 0xffffff00474c5000 ksegrp = 0xffffff004ccb92d0 [SLPQ ksesigwait = 0xffffff0051cfc868][SLP]
=A02507 ffffff0048118000=A0 =A0 0 =A0 =A0 1=A0 2507 0000000 = [SLPQ nanslp 0xffffffff8093c780][SLP] cron
=A02492 = ffffff004b9c2340=A0= =A0 0 = =A0 =A0 = 1=A0 = 2492 0000000 [SLPQ = select 0xffffffff809c6310][SLP] inetd
=A02460 = ffffff004b8649c0=A0= 194 = =A0 =A0 = 1=A0 = 2460 0000000 [SLPQ = kqread 0xffffff0050da5a00][SLP] ircd
=A02457 = ffffff0052df3680=A0= =A0 0 = =A0 =A0 = 1=A0 = 2457 0000000 [SLPQ = nanslp 0xffffffff8093c780][SLP] cron
=A02452 = ffffff004db7a680 =A0= 25 = =A0 =A0 = 1=A0 = 2452 0000100 [SLPQ = pause 0xffffff004db7a6e8][SLP] sendmail
=A02437 = ffffff0047e57000=A0= =A0 0 = =A0 =A0 = 1=A0 = 2437 0000000 [SLPQ = select 0xffffffff809c6310][SLP] inetd
=A02431 = ffffff0047f36340=A0= =A0 0 = =A0 =A0 = 1=A0 = 2431 0000100 [SLPQ = select 0xffffffff809c6310][SLP] sendmail
=A02417 = ffffff004b361680 =A0= 88 = =A0 =A0 = 1=A0 = 2330 0004000 [SLPQ = wait 0xffffff004b361680][SLP] sh
=A02396 = ffffff0049c409c0 =A0= 25 = =A0 =A0 = 1=A0 = 2396 0000100 [SLPQ = pause 0xffffff0049c40a28][SLP] sendmail
=A02365 = ffffff004cf9b000=A0= =A0 0 = =A0 =A0 = 1=A0 = 2365 0000100 [SLPQ = select 0xffffffff809c6310][SLP] sendmail
=A02353 = ffffff0062199340=A0= =A0 0 = =A0 =A0 = 1=A0 = 2353 0000000 [SLPQ = select 0xffffffff809c6310][SLP] httpd
=A02338 = ffffff005d0ce9c0=A0= =A0 0 = =A0 =A0 = 1=A0 = 2338 0000100 [SLPQ = select 0xffffffff809c6310][SLP] sshd
=A02301 = ffffff004b9c2000=A0= =A0 0 = =A0 =A0 = 1=A0 = 2301 0000100 [SLPQ = select 0xffffffff809c6310][SLP] sshd
=A02296 = ffffff004b864000=A0= =A0 0 = =A0 =A0 = 1=A0 = 2296 0000000 [SLPQ = nanslp 0xffffffff8093c780][SLP] cron
=A02275 = ffffff0050f31680=A0= =A0 0 = =A0 =A0 = 1=A0 = 2275 0000000 [SLPQ = select 0xffffffff809c6310][SLP] inetd
=A02241 = ffffff004cf9b680 =A0= 25 = =A0 =A0 = 1=A0 = 2241 0000100 [SLPQ = pause 0xffffff004cf9b6e8][SLP] sendmail
=A02233 = ffffff005ccef340=A0= =A0 0 = =A0 =A0 = 1=A0 = 2233 0000100 [SLPQ = select 0xffffffff809c6310][SLP] sendmail
=A02208 = ffffff0050f1d340 =A0= 88=A0 = 2113=A0 = 1989 000c080 = (threaded)=A0 = mysqld
=A0=A0 thread 0xffffff00214ec260 ksegrp = 0xffffff00625be480 [SLPQ kserel = 0xffffff00625be4d8][SLP]
=A0=A0 thread 0xffffff001afcabe0 ksegrp = 0xffffff00625be480 [SLPQ kserel = 0xffffff00625be4d8][SLP]
=A0=A0 thread 0xffffff000f979000 ksegrp = 0xffffff00625be480 [SLPQ select = 0xffffffff809c6310][SLP]
=A0=A0 thread 0xffffff0057bd9720 ksegrp = 0xffffff004ccb93f0 [SLPQ sigwait = 0xffffffffb4fe6a38][SLP]
=A0=A0 thread 0xffffff005c10b720 ksegrp = 0xffffff004de38510 [SLPQ ksesigwait = 0xffffff0050f1d528][SLP]
=A02113 ffffff004d2b7340 =A0 88 =A0 =A0 1=A0 1989 0004000 = [SLPQ wait 0xffffff004d2b7340][SLP] sh
=A02093 = ffffff005366a680=A0= =A0 0 = =A0 =A0 = 1=A0 = 2093 0000100 [SLPQ = select 0xffffffff809c6310][SLP] sshd
=A01991 = ffffff005115b680=A0= =A0 0 = =A0 =A0 = 1=A0 = 1991 0000000 [SLPQ = select 0xffffffff809c6310][SLP] syslogd
=A01921 = ffffff004db7a000=A0= =A0 0 = =A0 =A0 = 1=A0 = 1921 0000000 [SLPQ = select 0xffffffff809c6310][SLP] syslogd
=A01874 = ffffff005ba749c0=A0= =A0 0 = =A0 =A0 = 1=A0 = 1874 0000000 [SLPQ = select 0xffffffff809c6310][SLP] syslogd
=A01821 = ffffff006053e9c0=A0= =A0 0 = =A0 =A0 = 1=A0 = 1821 0000000 [SLPQ = select 0xffffffff809c6310][SLP] syslogd
=A01677 = ffffff0050715000=A0= =A0 0 = =A0 =A0 = 1=A0 = 1677 0000000 [SLPQ = select 0xffffffff809c6310][SLP] syslogd
=A01669 = ffffff005d0ce340=A0= =A0 0 = =A0 =A0 = 1=A0 = 1669 0000000 [SLPQ = select 0xffffffff809c6310][SLP] syslogd
=A01583 = ffffff005115b9c0=A0= =A0 0 = =A0 =A0 = 1=A0 = 1583 0000000 [SLPQ = select 0xffffffff809c6310][SLP] syslogd
=A01527 = ffffff0052df39c0=A0= =A0 0 = =A0 =A0 = 1=A0 = 1527 0004002 [SLPQ = ttyin 0xffffff0079a09810][SLP] getty
=A01526 = ffffff0050817000=A0= =A0 0 = =A0 =A0 = 1=A0 = 1526 0004002 [SLPQ = ttyin 0xffffff0079368410][SLP] getty
=A01525 = ffffff0061834680=A0= =A0 0 = =A0 =A0 = 1=A0 = 1525 0004002 [SLPQ = ttyin 0xffffff0079368c10][SLP] getty
=A01524 = ffffff0050f1d9c0=A0= =A0 0 = =A0 =A0 = 1=A0 = 1524 0004002 [SLPQ = ttyin 0xffffff0079e74c10][SLP] getty
=A01523 = ffffff0050f1d680=A0= =A0 0 = =A0 =A0 = 1=A0 = 1523 0004002 [SLPQ = ttyin 0xffffff0078447010][SLP] getty
=A01522 = ffffff006257d9c0=A0= =A0 0 = =A0 =A0 = 1=A0 = 1522 0004002 [SLPQ = ttyin 0xffffff0079e6a410][SLP] getty
=A01521 = ffffff0050715340=A0= =A0 0 = =A0 =A0 = 1=A0 = 1521 0004002 [SLPQ = ttyin 0xffffff0079e74010][SLP] getty
=A01520 = ffffff0059fc7680=A0= =A0 0 = =A0 =A0 = 1=A0 = 1520 0004002 [SLPQ = ttyin 0xffffff0079a49010][SLP] getty
=A01519 = ffffff005b1b3340=A0= =A0 0 = =A0 =A0 = 1=A0 = 1519 0004002 [SLPQ = ttyin 0xffffff0079a49810][SLP] getty
=A01497 = ffffff0051cfc340=A0= =A0 0 = =A0 =A0 = 1=A0 = 1497 0000000 [SLPQ = select 0xffffffff809c6310][SLP] inetd
=A01464 = ffffff0051264000=A0= =A0 0 = =A0 =A0 = 1=A0 =A0 = 46 0000002 [SLPQ = select 0xffffffff809c6310][SLP] rxstack
=A01064 = ffffff007ac01680=A0= =A0 0=A0 = 1063=A0 = 1063 0000000 [SLPQ = select 0xffffffff809c6310][SLP] fsavd
=A01063 = ffffff005b8ca9c0=A0= =A0 0 = =A0 =A0 = 1=A0 = 1063 0000000 [SLPQ = select 0xffffffff809c6310][SLP] fsavd
=A01026 = ffffff0059fc7000=A0= =A0 0 = =A0 =A0 = 1=A0 = 1026 0000000 [SLPQ = nanslp 0xffffffff8093c780][SLP] cron
=A01021 = ffffff0052ea9680=A0= =A0 0 = =A0 =A0 = 1=A0 = 1021 0000100 [SLPQ = select 0xffffffff809c6310][SLP] sshd
=A01008 = ffffff005c5f09c0 =A0= 70=A0 = 1007=A0 = 1004 0000000 [SLPQ = select 0xffffffff809c6310][SLP] postgres
=A01007 = ffffff0052ea9000 =A0= 70=A0 = 1004=A0 = 1004 0000000 [SLPQ = select 0xffffffff809c6310][SLP] postgres
=A01006 = ffffff0052ea99c0 =A0= 70=A0 = 1004=A0 = 1004 0000000 [SLPQ = select 0xffffffff809c6310][SLP] postgres
=A01004 = ffffff005fe7f340 =A0= 70 = =A0 =A0 = 1=A0 = 1004 0000000 [SLPQ = select 0xffffffff809c6310][SLP] postgres
=A0 = 989 = ffffff005342b9c0=A0= =A0 0 = =A0 = 988 = =A0 = 989 0004002 [SLPQ = select 0xffffffff809c6310][SLP] couriertcpd
=A0 = 988 = ffffff005342b680=A0= =A0 0 = =A0 =A0 = 1 = =A0 = 988 0000003 [SLPQ = piperd 0xffffff00613a9600][SLP] courierlogger
=A0 = 979 = ffffff005ff7d9c0=A0= =A0 0 = =A0 = 978 = =A0 = 979 0004002 [SLPQ = select 0xffffffff809c6310][SLP] couriertcpd
=A0 = 978 = ffffff005ccef9c0=A0= =A0 0 = =A0 =A0 = 1 = =A0 = 978 0000003 [SLPQ = piperd 0xffffff005a1e8900][SLP] courierlogger
=A0 = 967 = ffffff005ba74680=A0= =A0 0 = =A0 = 966 = =A0 = 967 0004002 [SLPQ = select 0xffffffff809c6310][SLP] couriertcpd
=A0 = 966 = ffffff005b1b39c0=A0= =A0 0 = =A0 =A0 = 1 = =A0 = 966 0000003 [SLPQ = piperd 0xffffff005a1e8600][SLP] courierlogger
=A0 = 936 = ffffff005366a9c0=A0= 389 = =A0 =A0 = 1 = =A0 = 936 0008181 = (threaded)=A0 = slapd
=A0=A0 thread 0xffffff003b892260 ksegrp = 0xffffff0061c57d80 [SLPQ kserel = 0xffffff0061c57dd8][SLP]
=A0=A0 thread 0xffffff00372904c0 ksegrp = 0xffffff0061c57d80 [SLPQ select = 0xffffffff809c6310][SLP]
=A0=A0 thread 0xffffff0054338720 ksegrp = 0xffffff0061c57d80 [SLPQ kserel = 0xffffff0061c57dd8][SLP]
=A0=A0 thread 0xffffff0056a8d720 ksegrp = 0xffffff00625be3f0 [SLPQ ksesigwait = 0xffffff005366aba8][SLP]
=A0 861 ffffff00600fa000=A0 =A0 0 =A0 =A0 1 =A0 860 0000000 [SLPQ select = 0xffffffff809c6310][SLP] snmpd
=A0 = 817 = ffffff0061fd8680 =A0= 26 = =A0 =A0 = 1 = =A0 = 817 0000100 [SLPQ = select 0xffffffff809c6310][SLP] exim-4.62-0
=A0 = 812 = ffffff005ba74340=A0= =A0 0 = =A0 =A0 = 1 = =A0 = 812 0000000 [SLPQ = select 0xffffffff809c6310][SLP] perl5.8.8
=A0 = 809 = ffffff005c5f0340=A0= =A0 0 = =A0 = 793 = =A0 = 789 0000002 [SLPQ = select 0xffffffff809c6310][SLP] authdaemond
=A0 = 808 = ffffff005b1b3000=A0= =A0 0 = =A0 = 793 = =A0 = 789 0000002 [SLPQ = select 0xffffffff809c6310][SLP] authdaemond
=A0 = 807 = ffffff006053e340=A0= =A0 0 = =A0 = 793 = =A0 = 789 0000002 [SLPQ = select 0xffffffff809c6310][SLP] authdaemond
=A0 = 806 = ffffff006257d000=A0= =A0 0 = =A0 = 793 = =A0 = 789 0000002 [SLPQ = select 0xffffffff809c6310][SLP] authdaemond
=A0 = 805 = ffffff006257d340=A0= =A0 0 = =A0 = 793 = =A0 = 789 0000002 [SLPQ = select 0xffffffff809c6310][SLP] authdaemond
=A0 = 804 = ffffff005ccef000 =A0= 88 = =A0 = 774 = =A0 = 773 000c082 = (threaded)=A0 = mysqld
=A0=A0 thread 0xffffff002e921980 ksegrp = 0xffffff007ba04bd0 [SLPQ kserel = 0xffffff007ba04c28][SLP]
=A0=A0 thread 0xffffff006419e260 ksegrp = 0xffffff007ba04bd0 [SLPQ kserel = 0xffffff007ba04c28][SLP]
=A0=A0 thread 0xffffff000c50c720 ksegrp = 0xffffff007ba04bd0 [SLPQ select = 0xffffffff809c6310][SLP]
=A0=A0 thread 0xffffff0057bd9000 ksegrp = 0xffffff005bfb56c0 [SLPQ sigwait = 0xffffffffb4fd7a38][SLP]
=A0=A0 thread 0xffffff005c10bbe0 ksegrp = 0xffffff005bfb5750 [SLPQ ksesigwait = 0xffffff005ccef1e8][SLP]
=A0 793 ffffff0062199680=A0 =A0 0 =A0 789 =A0 789 0004002 [SLPQ select = 0xffffffff809c6310][SLP] authdaemond
=A0 = 789 = ffffff005fe7f680=A0= =A0 0 = =A0 =A0 = 1 = =A0 = 789 0000003 [SLPQ = piperd 0xffffff0060f41600][SLP] courierlogger
=A0 = 774 = ffffff005c5f0000 =A0= 88 = =A0 =A0 = 1 = =A0 = 773 0004002 [SLPQ = wait 0xffffff005c5f0000][SLP] sh
=A0 = 765 = ffffff005ccef680=A0= 106 = =A0 =A0 = 1 = =A0 = 765 0000100 [SLPQ = pause 0xffffff005ccef6e8][SLP] freshclam
=A0 = 760 = ffffff006257d680=A0= 106 = =A0 =A0 = 1 = =A0 = 760 0008180 = (threaded)=A0 = clamd
=A0=A0 thread 0xffffff004a031000 ksegrp = 0xffffff007ba18090 [SLPQ kserel = 0xffffff007ba180e8][SLP]
=A0=A0 thread 0xffffff005153a000 ksegrp = 0xffffff007ba18090 [SLPQ kserel = 0xffffff007ba180e8][SLP]
=A0=A0 thread 0xffffff00292da4c0 ksegrp = 0xffffff007ba18090 [SLPQ accept = 0xffffff005c77d796][SLP]
=A0=A0 thread 0xffffff0057bd94c0 ksegrp = 0xffffff005bfb55a0 [SLPQ ksesigwait = 0xffffff006257d868][SLP]
=A0 742 ffffff005b1b3680=A0 =A0 0 =A0 =A0 1 =A0 742 0000000 [SLPQ select = 0xffffffff809c6310][SLP] httpd
=A0 = 720 = ffffff005b8ca680=A0= =A0 0 = =A0 =A0 = 1 = =A0 = 720 0000000 [SLPQ = select 0xffffffff809c6310][SLP] ntpd
=A0 = 643 = ffffff00621999c0=A0= =A0 0 = =A0 = 638 = =A0 = 638 0000000 [SLPQ = - 0xffffff005d435400][SLP] nfsd
=A0 = 642 = ffffff0061834340=A0= =A0 0 = =A0 = 638 = =A0 = 638 0000000 [SLPQ = - 0xffffff005fc5e200][SLP] nfsd
=A0 = 640 = ffffff005ff7d000=A0= =A0 0 = =A0 = 638 = =A0 = 638 0000000 [SLPQ = - 0xffffff005fc5e400][SLP] nfsd
=A0 = 639 = ffffff0061834000=A0= =A0 0 = =A0 = 638 = =A0 = 638 0000000 [SLPQ = - 0xffffff005f83f600][SLP] nfsd
=A0 = 638 = ffffff0062199000=A0= =A0 0 = =A0 =A0 = 1 = =A0 = 638 0000000 [SLPQ = select 0xffffffff809c6310][SLP] nfsd
=A0 = 636 = ffffff0061fd8340=A0= =A0 0 = =A0 =A0 = 1 = =A0 = 636 0000000 [SLPQ = select 0xffffffff809c6310][SLP] mountd
=A0 = 633 = ffffff00600fa9c0=A0= =A0 0 = =A0 =A0 = 1 = =A0 = 633 0000000 [SLPQ = select 0xffffffff809c6310][SLP] amd
=A0 = 567 = ffffff006253c9c0=A0= =A0 0 = =A0 =A0 = 1 = =A0 = 567 0000000 [SLPQ = select 0xffffffff809c6310][SLP] rpcbind
=A0 = 532 = ffffff007ac019c0 =A0= 53 = =A0 =A0 = 1 = =A0 = 532 0000100 [SLPQ = select 0xffffffff809c6310][SLP] named
=A0 = 465 = ffffff00600fa340=A0= =A0 0 = =A0 =A0 = 1 = =A0 = 465 0000000 [SLPQ = select 0xffffffff809c6310][SLP] syslogd
=A0 = 411 = ffffff007ac01340=A0= =A0 0 = =A0 =A0 = 1 = =A0 = 411 0000000 [SLPQ = select 0xffffffff809c6310][SLP] devd
=A0 = 230 = ffffff006253c000=A0= =A0 0 = =A0 =A0 = 0 = =A0 =A0 = 0 0000204 [SLPQ = mdwait 0xffffff00619fc000][SLP] md0
=A0 = 212 = ffffff0061fd89c0=A0= =A0 0 = =A0 =A0 = 1 = =A0 = 212 0000000 [SLPQ = pause 0xffffff0061fd8a28][SLP] adjkerntz
=A0=A0 = 45 = ffffff007acf99c0=A0= =A0 0 = =A0 =A0 = 0 = =A0 =A0 = 0 0000204 [SLPQ = m:w1 0xffffff000109ec00][SLP] g_mirror boot0s1
=A0=A0 = 44 = ffffff007aafd000=A0= =A0 0 = =A0 =A0 = 0 = =A0 =A0 = 0 0000204 [SLPQ - = 0xffffffffb2adebe4][SLP] schedcpu
=A0=A0 = 43 = ffffff007aafd340=A0= =A0 0 = =A0 =A0 = 0 = =A0 =A0 = 0 0000204 [SLPQ = sdflush 0xffffffff809e2e00][SLP] softdepflush
=A0=A0 = 42 = ffffff007aafd680=A0= =A0 0 = =A0 =A0 = 0 = =A0 =A0 = 0 0000204 [SLPQ = vlruwt 0xffffff007aafd680][SLP] vnlru
=A0=A0 = 41 = ffffff007aafd9c0=A0= =A0 0 = =A0 =A0 = 0 = =A0 =A0 = 0 0000204 [SLPQ = syncer 0xffffffff8093c360][SLP] syncer
=A0=A0 = 40 = ffffff007ac00000=A0= =A0 0 = =A0 =A0 = 0 = =A0 =A0 = 0 0000204 [SLPQ = psleep 0xffffffff809c6bd8][SLP] bufdaemon
=A0=A0 = 39 = ffffff007ac00340=A0= =A0 0 = =A0 =A0 = 0 = =A0 =A0 = 0 000020c [SLPQ = pgzero 0xffffffff809e4780][SLP] pagezero
=A0=A0 = 38 = ffffff007ac00680=A0= =A0 0 = =A0 =A0 = 0 = =A0 =A0 = 0 0000204 [SLPQ = psleep 0xffffffff809e3e4c][SLP] vmdaemon
=A0=A0 = 37 = ffffff007ac009c0=A0= =A0 0 = =A0 =A0 = 0 = =A0 =A0 = 0 0000204 [SLPQ = psleep 0xffffffff809e3dfc][SLP] pagedaemon
=A0=A0 = 36 = ffffff007ac01000=A0= =A0 0 = =A0 =A0 = 0 = =A0 =A0 = 0 0000204 [IWAIT] = irq7: ppc0
=A0=A0 35 ffffff007b9e1680=A0 =A0 0 =A0 =A0 0 =A0 =A0 0 0000204 [SLPQ - 0xffffff007ab0e848][SLP] = fdc0
=A0=A0 34 ffffff007b9e19c0=A0 =A0 0 =A0 =A0 0 =A0 =A0 0 0000204 [IWAIT] swi0: = sio
=A0=A0 33 ffffff007ab56000=A0= =A0 0 = =A0 =A0 = 0 = =A0 =A0 = 0 0000204 [IWAIT] = irq1: atkbd0
=A0=A0 32 ffffff007ab56340=A0 =A0 0 =A0 =A0 0 =A0 =A0 0 0000204 [SLPQ idle 0xffffffff86ca3000][SLP] = aic_recovery1
=A0=A0 31 ffffff007ab56680=A0 =A0 0 =A0 =A0 0 =A0 =A0 0 0000204 [IWAIT] irq25: bge1 = ahd1
=A0=A0 30 ffffff007ab569c0=A0 =A0 0 =A0 =A0 0 =A0 =A0 0 0000204 [SLPQ idle 0xffffffff86c9f000][SLP] = aic_recovery0
=A0=A0 29 ffffff007acf9000=A0 =A0 0 =A0 =A0 0 =A0 =A0 0 0000204 [LOCK=A0 Giant ffffff000123fb00] irq24: bge0 = ahd0
=A0=A0 28 ffffff007acf9340=A0 =A0 0 =A0 =A0 0 =A0 =A0 0 0000204 [IWAIT] irq15: = ata1
=A0=A0 27 ffffff007acf9680=A0 =A0 0 =A0 =A0 0 =A0 =A0 0 0000204 [IWAIT] irq14: = ata0
=A0=A0 26 ffffff007ba0a680=A0 =A0 0 =A0 =A0 0 =A0 =A0 0 0000204 [IWAIT] irq18: = fxp0
=A0=A0 25 ffffff007ba0a9c0=A0 =A0 0 =A0 =A0 0 =A0 =A0 0 0000204 [SLPQ usbevt = 0xffffffff86c9b420][SLP] usb1
=A0=A0 24 ffffff007ba5d000=A0 =A0 0 =A0 =A0 0 =A0 =A0 0 0000204 [SLPQ usbtsk = 0xffffffff80937510][SLP] usbtask
=A0=A0 = 23 = ffffff007ba5d340=A0= =A0 0 = =A0 =A0 = 0 = =A0 =A0 = 0 0000204 [SLPQ = usbevt 0xffffffff86c99420][SLP] usb0
=A0=A0 = 22 = ffffff007ba5d680=A0= =A0 0 = =A0 =A0 = 0 = =A0 =A0 = 0 0000204 [IWAIT] = irq19: ohci0 ohci+
=A0=A0 21 ffffff007ba5d9c0=A0 =A0 0 =A0 =A0 0 =A0 =A0 0 0000204 [IWAIT] irq9: = acpi0
=A0 =A0 9 ffffff007b9e1000=A0 =A0 0 =A0 =A0 0 =A0 =A0 0 0000204 [SLPQ - 0xffffff0000e85500][SLP] = kqueue taskq
=A0 =A0 8 ffffff007b9e1340=A0 =A0 0 =A0 =A0 0 =A0 =A0 0 0000204 [SLPQ - 0xffffff0000d71400][SLP] = acpi_task2
=A0 =A0 7 ffffff007ba039c0=A0 =A0 0 =A0 =A0 0 =A0 =A0 0 0000204 [SLPQ - 0xffffff0000d71400][SLP] = acpi_task1
=A0 =A0 6 ffffff007ba28000=A0 =A0 0 =A0 =A0 0 =A0 =A0 0 0000204 [SLPQ - 0xffffff0000d71400][SLP] = acpi_task0
=A0=A0 20 ffffff007ba28340=A0 =A0 0 =A0 =A0 0 =A0 =A0 0 0000204 [IWAIT] swi6: task = queue
=A0=A0 19 ffffff007ba28680=A0 =A0 0 =A0 =A0 0 =A0 =A0 0 0000204 [IWAIT] swi6: = +
=A0= =A0 5 = ffffff007ba289c0=A0= =A0 0 = =A0 =A0 = 0 = =A0 =A0 = 0 0000204 [SLPQ - = 0xffffff0000d71900][SLP] thread taskq
=A0=A0 = 18 = ffffff007ba0a000=A0= =A0 0 = =A0 =A0 = 0 = =A0 =A0 = 0 0000204 [IWAIT] = swi5: +
=A0=A0 17 ffffff007ba0a340=A0 =A0 0 =A0 =A0 0 =A0 =A0 0 0000204 [IWAIT] swi2: = cambio
=A0=A0 16 ffffff007ba5a340=A0 =A0 0 =A0 =A0 0 =A0 =A0 0 0000204 [SLPQ - 0xffffffff809350c0][SLP] = yarrow
=A0 =A0 4 ffffff007ba5a680=A0 =A0 0 =A0 =A0 0 =A0 =A0 0 0000204 [SLPQ - 0xffffffff80937e08][SLP] = g_down
=A0 =A0 3 ffffff007ba5a9c0=A0 =A0 0 =A0 =A0 0 =A0 =A0 0 0000204 [SLPQ - 0xffffffff80937e00][SLP] = g_up
=A0 =A0 2 ffffff007ba03000=A0 =A0 0 =A0 =A0 0 =A0 =A0 0 0000204 [SLPQ - 0xffffffff80937df0][SLP] = g_event
=A0=A0 15 ffffff007ba03340=A0 =A0 0 =A0 =A0 0 =A0 =A0 0 0000204 [IWAIT] swi3: = vm
=A0=A0 14 ffffff007ba03680=A0= =A0 0 = =A0 =A0 = 0 = =A0 =A0 = 0 000020c = [LOCK=A0 = Giant = ffffff000123fb00] swi4: clock sio
=A0=A0 = 13 = ffffff007ba33000=A0= =A0 0 = =A0 =A0 = 0 = =A0 =A0 = 0 0000204 [IWAIT] = swi1: net
=A0=A0 12 ffffff007ba33340=A0 =A0 0 =A0 =A0 0 =A0 =A0 0 000020c [Can run] idle: = cpu0
=A0=A0 11 ffffff007ba33680=A0 =A0 0 =A0 =A0 0 =A0 =A0 0 000020c [Can run] idle: = cpu1
=A0 =A0 1 ffffff007ba339c0=A0 =A0 0 =A0 =A0 0 =A0 =A0 1 0004200 [SLPQ wait 0xffffff007ba339c0][SLP] = init
=A0=A0 10 ffffff007ba5a000=A0 =A0 0 =A0 =A0 0 =A0 =A0 0 0000204 [SLPQ ktrace = 0xffffffff80938f00][SLP] ktrace
=A0 =A0 = 0 = ffffffff80937f60=A0= =A0 0 = =A0 =A0 = 0 = =A0 =A0 = 0 0000200 [IWAIT] = swapper
11503 ffffff0061b3c9c0 =A0 80=A0 2607=A0 2606 0006000 zomb[INACTIVE] = perl
=A02663 ffffff004b864680 =A0 80=A0 2607=A0 2606 0006000 zomb[INACTIVE] = perl
=A02632 ffffff0049c40340 =A0 80=A0 2607=A0 2606 0006000 zomb[INACTIVE] = perl


db>=A0 = c
malloc(M_WAITOK) of "1024", forcing M_NOWAIT with the = following non-sleepable locks held:
exclusive sleep mutex vm = object (standard object) r =3D 0 (0xffffff0018f3fe00) locked @ = /usr/src/sys/compat/linprocfs/linprocfs.c:879
KDB: enter: = witness_warn
[thread pid 77487 tid 100323 ]
Stopped = at=A0 =A0 =A0 kdb_enter+0x2f: nop=A0 =A0=A0


db> call = boot()
panic: blockable sleep lock (sleep mutex) eventhandler = @ /usr/src/sys/kern/subr_eventhandler.c:212
cpuid =3D = 0
KDB: stack backtrace:
panic() at = panic+0x253
witness_checkorder() at = witness_checkorder+0x5c3
_mtx_lock_flags() at = _mtx_lock_flags+0x4a
eventhandler_find_list() at = eventhandler_find_list+0x32
boot() at = boot+0x96
db_fncall() at = db_fncall+0xb1
db_command_loop() at = db_command_loop+0x3b5
db_trap() at = db_trap+0x63
kdb_trap() at kdb_trap+0xa9
trap() at = trap+0x1b4
calltrap() at calltrap+0x5
--- trap 0x3, = rip =3D 0xffffffff8043d68f, rsp =3D 0xffffffffb5374390, rbp =3D = 0xffffffffb53743a0 ---
kdb_enter() at = kdb_enter+0x2f
witness_warn() at = witness_warn+0x2e0
uma_zalloc_arg() at = uma_zalloc_arg+0x1ee
malloc() at = malloc+0xab
vn_fullpath() at = vn_fullpath+0x56
linprocfs_doprocmaps() at = linprocfs_doprocmaps+0x31e
pfs_read() at = pfs_read+0x2a7
VOP_READ_APV() at = VOP_READ_APV+0x74
vn_read() at = vn_read+0x232
dofileread() at = dofileread+0x94
kern_readv() at = kern_readv+0x60
read() at read+0x4a
ia32_syscall() = at ia32_syscall+0x167
Xint0x80_syscall() at = Xint0x80_syscall+0x5d
Uptime: 17h2m19s
Dumping 2047 = MB (2 chunks)
=A0 chunk 0: 1MB (156 pages) ... = ok

= --Apple-Mail-4--497926925-- From owner-freebsd-bugs@FreeBSD.ORG Sat Jul 1 14:07:09 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 18A0216A516; Sat, 1 Jul 2006 14:07:09 +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 4A7CB44136; Sat, 1 Jul 2006 13:39:51 +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 k61DdppC095593; Sat, 1 Jul 2006 13:39:51 GMT (envelope-from maxim@freefall.freebsd.org) Received: (from maxim@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k61DdpUG095589; Sat, 1 Jul 2006 13:39:51 GMT (envelope-from maxim) Date: Sat, 1 Jul 2006 13:39:51 GMT From: Maxim Konovalov Message-Id: <200607011339.k61DdpUG095589@freefall.freebsd.org> To: kiyohara@netbsd.org, maxim@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/99676: [ural] [patch] strange expression in if_ural.c::ural_set_chan() X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Jul 2006 14:07:09 -0000 Synopsis: [ural] [patch] strange expression in if_ural.c::ural_set_chan() State-Changed-From-To: open->patched State-Changed-By: maxim State-Changed-When: Sat Jul 1 13:39:29 UTC 2006 State-Changed-Why: Fixed in HEAD. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=99676 From owner-freebsd-bugs@FreeBSD.ORG Sat Jul 1 16:38: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 4BB4216A517 for ; Sat, 1 Jul 2006 16:38: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 5157044D93 for ; Sat, 1 Jul 2006 16:10:18 +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 k61GAIgf004633 for ; Sat, 1 Jul 2006 16:10:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k61GAHCq004632; Sat, 1 Jul 2006 16:10:18 GMT (envelope-from gnats) Resent-Date: Sat, 1 Jul 2006 16:10:18 GMT Resent-Message-Id: <200607011610.k61GAHCq004632@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Robert Sebastian Gerus Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 20F6916A508 for ; Sat, 1 Jul 2006 16:03:52 +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 B9F434485D for ; Sat, 1 Jul 2006 15:39:33 +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 k61FdX66069068 for ; Sat, 1 Jul 2006 15:39:33 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id k61FdXGv069067; Sat, 1 Jul 2006 15:39:33 GMT (envelope-from nobody) Message-Id: <200607011539.k61FdXGv069067@www.freebsd.org> Date: Sat, 1 Jul 2006 15:39:33 GMT From: Robert Sebastian Gerus To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: misc/99692: A pl_PL.dvorak keymap for syscons. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Jul 2006 16:38:37 -0000 >Number: 99692 >Category: misc >Synopsis: A pl_PL.dvorak keymap for syscons. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Jul 01 16:10:17 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Robert Sebastian Gerus >Release: Gentoo/FreeBSD-6.1 >Organization: >Environment: >Description: Had some free time and created a pl_PL.dvorak keymap. Available at http://bugs.gentoo.org/attachment.cgi?id=90618 and http://hive.bsic.pl/pl_PL.dvorak.kbd (the latter might not be up 24/7) >How-To-Repeat: >Fix: # Polish dvorak keymap by Robert Sebastian Gerus (17:05 01-07-2006 CEST) # (arachnist@gmail.com) # Based on pl_PL.ISO-8859-2 and us.dvorak keymaps. # scan cntrl alt alt cntrl lock # code base shift cntrl shift alt shift cntrl shift state # ------------------------------------------------------------------ 000 nop nop nop nop nop nop nop nop O 001 esc esc esc esc esc esc debug esc O 002 '1' '!' nop nop '1' '!' nop nop O 003 '2' '@' nul nul '2' '@' nul nul O 004 '3' '#' nop nop '3' '#' nop nop O 005 '4' '$' nop nop '4' '$' nop nop O 006 '5' '%' nop nop '5' '%' nop nop O 007 '6' '^' rs rs '6' '^' rs rs O 008 '7' '&' nop nop '7' '&' nop nop O 009 '8' '*' nop nop '8' '*' nop nop O 010 '9' '(' nop nop '9' '(' nop nop O 011 '0' ')' nop nop '0' ')' nop nop O 012 '[' '{' esc esc '[' '{' esc esc O 013 ']' '}' gs gs ']' '}' gs gs O 014 bs bs del del bs bs del del O 015 ht btab nop nop ht btab nop nop O 016 ''' '"' nop nop ''' '"' nop nop O 017 ',' '<' nop nop ',' '<' nop nop O 018 '.' '>' nop nop '.' '>' nop nop O 019 'p' 'P' dle dle 'p' 'P' dle dle C 020 'y' 'Y' em em 'y' 'Y' em em C 021 'f' 'F' ack ack 'f' 'F' ack ack C 022 'g' 'G' bel bel 'g' 'G' bel bel C 023 'c' 'C' etx etx 230 198 etx etx C 024 'r' 'R' dc2 dc2 'r' 'R' dc2 dc2 C 025 'l' 'L' ff ff 179 163 ff ff C 026 '/' '?' nop nop '/' '?' nop nop O 027 '=' '+' nop nop '=' '+' nop nop O 028 cr cr nl nl cr cr nl nl O 029 lctrl lctrl lctrl lctrl lctrl lctrl lctrl lctrl O 030 'a' 'A' soh soh 177 161 soh soh C 031 'o' 'O' si si 243 211 si si C 032 'e' 'E' enq enq 234 202 enq enq C 033 'u' 'U' nak nak 'u' 'U' nak nak C 034 'i' 'I' ht ht 'i' 'I' ht ht C 035 'd' 'D' eot eot 'd' 'D' eot eot C 036 'h' 'H' bs bs 'h' 'H' bs bs C 037 't' 'T' dc4 dc4 't' 'T' dc4 dc4 C 038 'n' 'N' so so 241 209 so so C 039 's' 'S' dc3 dc3 182 166 dc3 dc3 C 040 '-' '_' us us '-' '_' us us O 041 '`' '~' nop nop '`' '~' nop nop O 042 lshift lshift lshift lshift lshift lshift lshift lshift O 043 '\' '|' fs fs '\' '|' fs fs O 044 ';' ':' nop nop ';' ':' nop nop O 045 'q' 'Q' dc1 dc1 'q' 'Q' dc1 dc1 C 046 'j' 'J' nl nl 'j' 'J' nl nl C 047 'k' 'K' vt vt 'k' 'K' vt vt C 048 'x' 'X' can can 'x' 'X' can can C 049 'b' 'B' stx stx 'b' 'B' stx stx C 050 'm' 'M' cr cr 'm' 'M' cr cr C 051 'w' 'W' etb etb 'w' 'W' etb etb C 052 'v' 'V' syn syn 188 172 syn syn C 053 'z' 'Z' sub sub 191 175 sub sub C 054 rshift rshift rshift rshift rshift rshift rshift rshift O 055 '*' '*' '*' '*' '*' '*' '*' '*' O 056 lalt lalt lalt lalt lalt lalt lalt lalt O 057 ' ' ' ' nul ' ' ' ' ' ' susp ' ' O 058 clock clock clock clock clock clock clock clock O 059 fkey01 fkey13 fkey25 fkey37 scr01 scr11 scr01 scr11 O 060 fkey02 fkey14 fkey26 fkey38 scr02 scr12 scr02 scr12 O 061 fkey03 fkey15 fkey27 fkey39 scr03 scr13 scr03 scr13 O 062 fkey04 fkey16 fkey28 fkey40 scr04 scr14 scr04 scr14 O 063 fkey05 fkey17 fkey29 fkey41 scr05 scr15 scr05 scr15 O 064 fkey06 fkey18 fkey30 fkey42 scr06 scr16 scr06 scr16 O 065 fkey07 fkey19 fkey31 fkey43 scr07 scr07 scr07 scr07 O 066 fkey08 fkey20 fkey32 fkey44 scr08 scr08 scr08 scr08 O 067 fkey09 fkey21 fkey33 fkey45 scr09 scr09 scr09 scr09 O 068 fkey10 fkey22 fkey34 fkey46 scr10 scr10 scr10 scr10 O 069 nlock nlock nlock nlock nlock nlock nlock nlock O 070 slock slock slock slock slock slock slock slock O 071 fkey49 '7' '7' '7' '7' '7' '7' '7' N 072 fkey50 '8' '8' '8' '8' '8' '8' '8' N 073 fkey51 '9' '9' '9' '9' '9' '9' '9' N 074 fkey52 '-' '-' '-' '-' '-' '-' '-' N 075 fkey53 '4' '4' '4' '4' '4' '4' '4' N 076 fkey54 '5' '5' '5' '5' '5' '5' '5' N 077 fkey55 '6' '6' '6' '6' '6' '6' '6' N 078 fkey56 '+' '+' '+' '+' '+' '+' '+' N 079 fkey57 '1' '1' '1' '1' '1' '1' '1' N 080 fkey58 '2' '2' '2' '2' '2' '2' '2' N 081 fkey59 '3' '3' '3' '3' '3' '3' '3' N 082 fkey60 '0' '0' '0' '0' '0' '0' '0' N 083 del '.' '.' '.' '.' '.' boot boot N 084 nop nop nop nop nop nop nop nop O 085 nop nop nop nop nop nop nop nop O 086 nop nop nop nop nop nop nop nop O 087 fkey11 fkey23 fkey35 fkey47 scr11 scr11 scr11 scr11 O 088 fkey12 fkey24 fkey36 fkey48 scr12 scr12 scr12 scr12 O 089 cr cr cr cr cr cr cr cr O 090 rctrl rctrl rctrl rctrl rctrl rctrl rctrl rctrl O 091 '/' '/' '/' '/' '/' '/' '/' '/' O 092 nscr pscr debug debug nop nop nop nop O 093 ralt ralt ralt ralt ralt ralt ralt ralt O 094 fkey49 fkey49 fkey49 fkey49 fkey49 fkey49 fkey49 fkey49 O 095 fkey50 fkey50 fkey50 fkey50 fkey50 fkey50 fkey50 fkey50 O 096 fkey51 fkey51 fkey51 fkey51 fkey51 fkey51 fkey51 fkey51 O 097 fkey53 fkey53 fkey53 fkey53 fkey53 fkey53 fkey53 fkey53 O 098 fkey55 fkey55 fkey55 fkey55 fkey55 fkey55 fkey55 fkey55 O 099 fkey57 fkey57 fkey57 fkey57 fkey57 fkey57 fkey57 fkey57 O 100 fkey58 fkey58 fkey58 fkey58 fkey58 fkey58 fkey58 fkey58 O 101 fkey59 fkey59 fkey59 fkey59 fkey59 fkey59 fkey59 fkey59 O 102 fkey60 paste fkey60 fkey60 fkey60 fkey60 fkey60 fkey60 O 103 fkey61 fkey61 fkey61 fkey61 fkey61 fkey61 boot fkey61 O 104 slock saver slock saver susp nop susp nop O 105 fkey62 fkey62 fkey62 fkey62 fkey62 fkey62 fkey62 fkey62 O 106 fkey63 fkey63 fkey63 fkey63 fkey63 fkey63 fkey63 fkey63 O 107 fkey64 fkey64 fkey64 fkey64 fkey64 fkey64 fkey64 fkey64 O 108 nop nop nop nop nop nop nop nop O >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Jul 1 16:44:08 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 C389E16A492 for ; Sat, 1 Jul 2006 16:44:08 +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 E9E2E4411B for ; Sat, 1 Jul 2006 16: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 k61GeJQk007314 for ; Sat, 1 Jul 2006 16:40:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k61GeJAM007309; Sat, 1 Jul 2006 16:40:19 GMT (envelope-from gnats) Resent-Date: Sat, 1 Jul 2006 16:40:19 GMT Resent-Message-Id: <200607011640.k61GeJAM007309@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, pri vate Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 12DB116A407 for ; Sat, 1 Jul 2006 16:35:29 +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 C2C0B44F82 for ; Sat, 1 Jul 2006 16:35:28 +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 k61GZReB046245 for ; Sat, 1 Jul 2006 16:35:27 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id k61GZR7O046244; Sat, 1 Jul 2006 16:35:27 GMT (envelope-from nobody) Message-Id: <200607011635.k61GZR7O046244@www.freebsd.org> Date: Sat, 1 Jul 2006 16:35:27 GMT From: pri vate To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: bin/99693: [patch] add magic(5)/file(1) support for FreeBSD 6.1 dump(8) format X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Jul 2006 16:44:09 -0000 >Number: 99693 >Category: bin >Synopsis: [patch] add magic(5)/file(1) support for FreeBSD 6.1 dump(8) format >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Jul 01 16:40:18 GMT 2006 >Closed-Date: >Last-Modified: >Originator: pri vate >Release: RELENG_6_1_0_RELEASE >Organization: yes it's me >Environment: >Description: file(1) does not grok 6.1's new dump format (ufs2). >How-To-Repeat: >Fix: the fix is ugly because it does not support the 64 bit date stamps, but here it goes anyway: + + ############################################################################## + + 24 belong 0x19540119 new-fs dump file (ufs2, big endian), + >12 belong >0 Volume %ld, + >692 belong 0 Level zero, type: + >692 belong >0 Level %d, type: + >0 belong 1 tape header, + >0 belong 2 beginning of file record, + >0 belong 3 map of inodes on tape, + >0 belong 4 continuation of file record, + >0 belong 5 end of volume, + >0 belong 6 map of inodes deleted, + >0 belong 7 end of medium (for floppy), + >676 string >\0 Label %s, + >696 string >\0 Filesystem %s, + >760 string >\0 Device %s, + >824 string >\0 Host %s, + >888 belong >0 Flags %x + # next two are actually 64-bit times, we use only the lowermost 32 bits + >900 bedate x This dump %s, + >908 bedate x Previous dump %s, + + 24 lelong 0x19540119 new-fs dump file (ufs2, little endian), + >12 lelong >0 Volume %ld, + >692 lelong 0 Level zero, type: + >692 lelong >0 Level %d, type: + >0 lelong 1 tape header, + >0 lelong 2 beginning of file record, + >0 lelong 3 map of inodes on tape, + >0 lelong 4 continuation of file record, + >0 lelong 5 end of volume, + >0 lelong 6 map of inodes deleted, + >0 lelong 7 end of medium (for floppy), + >676 string >\0 Label %s, + >696 string >\0 Filesystem %s, + >760 string >\0 Device %s, + >824 string >\0 Host %s, + >888 lelong >0 Flags %x + # next two are actually 64-bit times, we use only the lowermost 32 bits + >896 ledate x This dump %s, + >904 ledate x Previous dump %s, >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Jul 1 22:40:29 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 6B8E316A416 for ; Sat, 1 Jul 2006 22:40:29 +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 69BED43DB2 for ; Sat, 1 Jul 2006 22:40:17 +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 k61MeHnU029804 for ; Sat, 1 Jul 2006 22:40:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k61MeHga029799; Sat, 1 Jul 2006 22:40:17 GMT (envelope-from gnats) Resent-Date: Sat, 1 Jul 2006 22:40:17 GMT Resent-Message-Id: <200607012240.k61MeHga029799@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, George Mitchell Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A15A16A40F for ; Sat, 1 Jul 2006 22:31:00 +0000 (UTC) (envelope-from george@m5p.com) Received: from mailhost.m5p.com (209-162-215-52.dq1sn.easystreet.com [209.162.215.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id DAA1443D45 for ; Sat, 1 Jul 2006 22:30:59 +0000 (GMT) (envelope-from george@m5p.com) Received: from m5p.com (home.m5p.com [IPv6:2001:418:3fd::f4]) by mailhost.m5p.com (8.13.7/8.13.7) with ESMTP id k61MUvAG079574 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES256-SHA bits=256 verify=OK) for ; Sat, 1 Jul 2006 15:30:57 -0700 (PDT) Received: (from george@localhost) by m5p.com (8.13.7/8.13.7/Submit) id k61MUvVr002728; Sat, 1 Jul 2006 15:30:57 -0700 (PDT) Message-Id: <200607012230.k61MUvVr002728@m5p.com> Date: Sat, 1 Jul 2006 15:30:57 -0700 (PDT) From: George Mitchell To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: bin/99702: Files missing from libsupc++ X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: George Mitchell List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Jul 2006 22:40:29 -0000 >Number: 99702 >Category: bin >Synopsis: Files missing from libsupc++ >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Jul 01 22:40:16 GMT 2006 >Closed-Date: >Last-Modified: >Originator: George Mitchell >Release: FreeBSD 5.3-RELEASE i386 >Organization: Mitchell Voting Products, Inc. >Environment: System: FreeBSD parkstreet.m5p.com 5.3-RELEASE FreeBSD 5.3-RELEASE #2: Fri Jul 15 22:25:47 PDT 2005 george@parkstreet.m5p.com:/ad0/usr/src/sys/i386/compile/PARKSTREET i386 All machines, FreeBSD 5.3, 6.0, 6.1, libsupc++.a >Description: libsupc++.a does not include all object files in contrib/libstc++/libsupc++ >How-To-Repeat: Try to build the FLTK2 library (starting from fltk-2.0.x-r5252/tar/bz2). When linking fluid2, there are undefined symbols due to missing object files in the library. >Fix: The following patch fixes the problem, which apparently arose in 2002 (see /usr/src/contrib/libstdc++/ChangeLog-2002, entry dated Dec. 25) when eh_terminate.cc was split into three pieces and a new file vterminate.cc was added to the library. --- gnu/lib/libsupc++/Makefile.orig Tue Jul 27 22:27:19 2004 +++ gnu/lib/libsupc++/Makefile Sat Jul 1 15:12:35 2006 @@ -10,8 +10,9 @@ SRCS= del_op.cc del_opnt.cc del_opv.cc del_opvnt.cc \ eh_alloc.cc eh_aux_runtime.cc eh_catch.cc eh_exception.cc \ eh_globals.cc eh_personality.cc eh_terminate.cc eh_throw.cc eh_type.cc \ + eh_term_handler.cc eh_unex_handler.cc \ guard.cc new_handler.cc new_op.cc new_opnt.cc new_opv.cc new_opvnt.cc \ - pure.cc tinfo.cc tinfo2.cc vec.cc + pure.cc tinfo.cc tinfo2.cc vec.cc vterminate.cc # from libiberty: SRCS+= cp-demangle.c >Release-Note: >Audit-Trail: >Unformatted: