From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 12 11:40:24 2003 Return-Path: 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 0386F16A4B3 for ; Sun, 12 Oct 2003 11:40:24 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1AD3943FD7 for ; Sun, 12 Oct 2003 11:40:20 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h9CIeJFY019906 for ; Sun, 12 Oct 2003 11:40:19 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h9CIeJLJ019905; Sun, 12 Oct 2003 11:40:19 -0700 (PDT) (envelope-from gnats) Resent-Date: Sun, 12 Oct 2003 11:40:19 -0700 (PDT) Resent-Message-Id: <200310121840.h9CIeJLJ019905@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, Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D3F816A4B3 for ; Sun, 12 Oct 2003 11:35:03 -0700 (PDT) Received: from conure.mail.pas.earthlink.net (conure.mail.pas.earthlink.net [207.217.120.54]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6624743F85 for ; Sun, 12 Oct 2003 11:35:02 -0700 (PDT) (envelope-from andrei@andruxa.sytes.net) Received: from h-68-164-30-157.snvacaid.dynamic.covad.net ([68.164.30.157] helo=andruxa.sytes.net) by conure.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 1A8l3T-0004Wr-00 for FreeBSD-gnats-submit@freebsd.org; Sun, 12 Oct 2003 11:34:59 -0700 Received: from andruxa.sytes.net (localhost [127.0.0.1]) by andruxa.sytes.net (8.12.9p2/8.12.9) with ESMTP id h9CIYTRl000557 for ; Sun, 12 Oct 2003 11:34:29 -0700 (PDT) (envelope-from andrei@andruxa.sytes.net) Received: (from andrei@localhost) by andruxa.sytes.net (8.12.9p2/8.12.9/Submit) id h9CIYOkG000556; Sun, 12 Oct 2003 11:34:24 -0700 (PDT) (envelope-from andrei) Message-Id: <200310121834.h9CIYOkG000556@andruxa.sytes.net> Date: Sun, 12 Oct 2003 11:34:24 -0700 (PDT) From: Andrew Konstantinov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/57908: 'return-rst' does not work for ipv6 in ipfilter X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Andrew Konstantinov List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Oct 2003 18:40:24 -0000 >Number: 57908 >Category: kern >Synopsis: 'return-rst' does not work for ipv6 in ipfilter >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 12 11:40:19 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Andrew Konstantinov >Release: FreeBSD 4.9-RC i386 >Organization: Andrew's Co. >Environment: System: FreeBSD andruxa.sytes.net 4.9-RC FreeBSD 4.9-RC #0: Fri Oct 10 19:29:06 PDT 2003 root@andruxa.sytes.net:/usr/obj/usr/src/sys/CUSTOM i386 RELENG_4, with IPFILTER and INET6 compiled in kernel >Description: IPfilter has a feature called 'return-rst.' Whenever a packet matches the description and the line with that description contains 'return-rst,' ipfilter simply returns the TCP packet (provided that the original packet was also TCP) with RST flag on. This works perfectly fine with ipv4, but it does not work with ipv6. >How-To-Repeat: Get RELENG_4 sources, compile IPFILTER and INET6 in kernel. Then put the following line in the configuration file for ipf and reload that file with ipf -6f /path/to/your/file The line is: block return-rst in quick on lo0 proto tcp from any to any port = 111 Try to 'telnet localhost 111' and you will get connection timeout, while originally, ipfilter is supposed to send RST packet and abort the connection. >Fix: I found an old patch originated by Peter Postma, changed it a little and here it is. After applying this patch everything works perfectly (return-rst returns RST packets). --- ip_fil.patch begins here --- --- ip_fil.c.orig Fri Dec 6 12:45:45 2002 +++ ip_fil.c Tue Mar 25 17:05:09 2003 @@ -1937,24 +1937,24 @@ struct route_in6 ip6route; struct sockaddr_in6 *dst6; struct route_in6 *ro; - struct ifnet *ifp; + struct ifnet *ifp = (fdp != NULL) ? fdp->fd_ifp : fin->fin_ifp; frentry_t *fr; #if defined(OpenBSD) && (OpenBSD >= 200211) struct route_in6 *ro_pmtu = NULL; struct in6_addr finaldst; - ip6_t *ip6; #endif + ip6_t *ip6; u_long mtu; int error; - ifp = NULL; ro = &ip6route; + ip6 = mtod(m0, struct ip6_t *); fr = fin->fin_fr; bzero((caddr_t)ro, sizeof(*ro)); dst6 = (struct sockaddr_in6 *)&ro->ro_dst; dst6->sin6_family = AF_INET6; dst6->sin6_len = sizeof(struct sockaddr_in6); - dst6->sin6_addr = fin->fin_fi.fi_src.in6; + dst6->sin6_addr = ip6->ip6_dst; if (fdp != NULL) ifp = fdp->fd_ifp; --- ip_fil.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 12 18:30:22 2003 Return-Path: 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 4EF2316A4B3 for ; Sun, 12 Oct 2003 18:30:22 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 67B9343F93 for ; Sun, 12 Oct 2003 18:30:21 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h9D1ULFY064816 for ; Sun, 12 Oct 2003 18:30:21 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h9D1ULWb064815; Sun, 12 Oct 2003 18:30:21 -0700 (PDT) (envelope-from gnats) Date: Sun, 12 Oct 2003 18:30:21 -0700 (PDT) Message-Id: <200310130130.h9D1ULWb064815@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Peter Postma Subject: Re: kern/57908: 'return-rst' does not work for ipv6 in ipfilter X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Peter Postma List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Oct 2003 01:30:22 -0000 The following reply was made to PR kern/57908; it has been noted by GNATS. From: Peter Postma To: freebsd-gnats-submit@FreeBSD.org, abkonstantinov@earthlink.net Cc: Subject: Re: kern/57908: 'return-rst' does not work for ipv6 in ipfilter Date: Mon, 13 Oct 2003 03:27:08 +0200 That patch isn't correct... This one (from Darren) is better: --- ip_fil.c.orig Sat Mar 1 04:55:54 2003 +++ ip_fil.c Sat May 10 16:48:51 2003 @@ -1950,17 +1950,18 @@ u_long mtu; int error; - ifp = NULL; ro = &ip6route; fr = fin->fin_fr; bzero((caddr_t)ro, sizeof(*ro)); dst6 = (struct sockaddr_in6 *)&ro->ro_dst; dst6->sin6_family = AF_INET6; dst6->sin6_len = sizeof(struct sockaddr_in6); - dst6->sin6_addr = fin->fin_fi.fi_src.in6; + dst6->sin6_addr = fin->fin_fi.fi_dst.in6; if (fdp != NULL) ifp = fdp->fd_ifp; + else + ifp = fin->fin_ifp; if ((fr != NULL) && (fin->fin_rev != 0)) { if ((ifp != NULL) && (fdp == &fr->fr_tif)) From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 12 22:00:35 2003 Return-Path: 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 5F4CF16A4B3 for ; Sun, 12 Oct 2003 22:00:35 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C8E7643F75 for ; Sun, 12 Oct 2003 22:00:34 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h9D50YFY099451 for ; Sun, 12 Oct 2003 22:00:34 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h9D50Y2N099450; Sun, 12 Oct 2003 22:00:34 -0700 (PDT) (envelope-from gnats) Date: Sun, 12 Oct 2003 22:00:34 -0700 (PDT) Message-Id: <200310130500.h9D50Y2N099450@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: "Sergey N. Voronkov" Subject: Re: bin/56942: module build broken after MFC of src/sys/dev/aac/aac.c X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "Sergey N. Voronkov" List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Oct 2003 05:00:35 -0000 The following reply was made to PR bin/56942; it has been noted by GNATS. From: "Sergey N. Voronkov" To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: bin/56942: module build broken after MFC of src/sys/dev/aac/aac.c Date: Mon, 13 Oct 2003 10:59:44 +0600 Please, close this PR. Already fixed by author. From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 13 00:49:33 2003 Return-Path: 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 7F5B816A4B3; Mon, 13 Oct 2003 00:49:33 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0343043FBD; Mon, 13 Oct 2003 00:49:33 -0700 (PDT) (envelope-from jmg@FreeBSD.org) Received: from freefall.freebsd.org (jmg@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h9D7nWFY038583; Mon, 13 Oct 2003 00:49:32 -0700 (PDT) (envelope-from jmg@freefall.freebsd.org) Received: (from jmg@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h9D7nWF9038579; Mon, 13 Oct 2003 00:49:32 -0700 (PDT) (envelope-from jmg) Date: Mon, 13 Oct 2003 00:49:32 -0700 (PDT) From: John-Mark Gurney Message-Id: <200310130749.h9D7nWF9038579@freefall.freebsd.org> To: boris@cs.tu-berlin.de, jmg@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/45291: kevent(2) ignores timeout if nevents == 0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Oct 2003 07:49:33 -0000 Synopsis: kevent(2) ignores timeout if nevents == 0 State-Changed-From-To: open->feedback State-Changed-By: jmg State-Changed-When: Mon Oct 13 00:46:53 PDT 2003 State-Changed-Why: to quote the man page: If timeout is a non-NULL pointer, it specifies a maximum interval to wait for an event, The behavior is correct since you wanted to wait for 0 events, and since it has delivered all the events it can (none), it returns. Unless provide with good reason (or maybe a patch to the manpage to document this feature?) I will close the PR in 5 days. http://www.freebsd.org/cgi/query-pr.cgi?pr=45291 From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 13 00:50:00 2003 Return-Path: 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 E7DBF16A4B3; Mon, 13 Oct 2003 00:50:00 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 68EBC43FAF; Mon, 13 Oct 2003 00:50:00 -0700 (PDT) (envelope-from jmg@FreeBSD.org) Received: from freefall.freebsd.org (jmg@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h9D7o0FY038633; Mon, 13 Oct 2003 00:50:00 -0700 (PDT) (envelope-from jmg@freefall.freebsd.org) Received: (from jmg@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h9D7o0VV038629; Mon, 13 Oct 2003 00:50:00 -0700 (PDT) (envelope-from jmg) Date: Mon, 13 Oct 2003 00:50:00 -0700 (PDT) From: John-Mark Gurney Message-Id: <200310130750.h9D7o0VV038629@freefall.freebsd.org> To: jmg@FreeBSD.org, freebsd-bugs@FreeBSD.org, jmg@FreeBSD.org Subject: Re: kern/45291: kevent(2) ignores timeout if nevents == 0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Oct 2003 07:50:01 -0000 Synopsis: kevent(2) ignores timeout if nevents == 0 Responsible-Changed-From-To: freebsd-bugs->jmg Responsible-Changed-By: jmg Responsible-Changed-When: Mon Oct 13 00:49:38 PDT 2003 Responsible-Changed-Why: need to take ownership of this. http://www.freebsd.org/cgi/query-pr.cgi?pr=45291 From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 13 01:40:18 2003 Return-Path: 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 524B516A4B3 for ; Mon, 13 Oct 2003 01:40:18 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C925943F85 for ; Mon, 13 Oct 2003 01:40:17 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h9D8eHFY044567 for ; Mon, 13 Oct 2003 01:40:17 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h9D8eH2Q044566; Mon, 13 Oct 2003 01:40:17 -0700 (PDT) (envelope-from gnats) Date: Mon, 13 Oct 2003 01:40:17 -0700 (PDT) Message-Id: <200310130840.h9D8eH2Q044566@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: "Matt Costello" Subject: Re: misc/42849: MBR is scribbled on by by freebsd X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Matt Costello List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Oct 2003 08:40:18 -0000 The following reply was made to PR misc/42849; it has been noted by GNATS. From: "Matt Costello" To: , Cc: Subject: Re: misc/42849: MBR is scribbled on by by freebsd Date: Mon, 13 Oct 2003 09:37:46 +0100 This is a multi-part message in MIME format. ------=_NextPart_000_0002_01C3916D.A907CF70 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit I have not tried since. Have decided that it is safer to stick to dedicated machine for each OS. Matt. Brighton New Media ltd. --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.524 / Virus Database: 321 - Release Date: 06/10/2003 ------=_NextPart_000_0002_01C3916D.A907CF70 Content-Type: text/html; charset="Windows-1252" Content-Transfer-Encoding: quoted-printable Message
I have = not tried=20 since. Have decided that it is safer to stick to dedicated machine for = each=20 OS.
 
Matt.
Brighton New Media=20 ltd.

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.524 / Virus Database: 321 - Release Date: 06/10/2003

------=_NextPart_000_0002_01C3916D.A907CF70-- From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 13 01:53:50 2003 Return-Path: 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 8B4CE16A4B3 for ; Mon, 13 Oct 2003 01:53:50 -0700 (PDT) Received: from www3.hotbox.ru (www3.hotbox.ru [80.68.244.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5097243FCB for ; Mon, 13 Oct 2003 01:53:49 -0700 (PDT) (envelope-from icehard@pisem.net) Received: by HotBOX.Ru WebMail v2.1 id h9D8reQ7077018 for ; Date: Mon, 13 Oct 2003 12:53:40 +0400 (MSD) Message-Id: <200310130853.h9D8reQ7077018@www3.hotbox.ru> From: IceHard To: freebsd-bugs@FreeBSD.ORG MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 8bit X-Mailer: Free WebMail HotBOX.ru X-Originating-IP: [193.232.119.137] Subject: APG BUG ON GATEWAY ALR7200 SERVER X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Oct 2003 08:53:50 -0000 Tried to install FREE BSD 4.8 on GATEWAY ALR 7200 SERVER with intel motherboard but system hangs on initialization of integrated video controller (Cirrus Logic CL-GD54M30 chip). Pre-hang message is "agp0: mem 0-0x3ffffff at device 0.0 on pci0" 5.1 in verbose mode generates message "agp0: allocating GATT for aperture of size 64M" then hangs... What I have to do? Is it my fault or kernel recompilation needed? From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 13 01:57:09 2003 Return-Path: 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 1AFA516A4B3; Mon, 13 Oct 2003 01:57:09 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 92ADB43FBD; Mon, 13 Oct 2003 01:57:08 -0700 (PDT) (envelope-from maxim@FreeBSD.org) Received: from freefall.freebsd.org (maxim@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h9D8v8FY045654; Mon, 13 Oct 2003 01:57:08 -0700 (PDT) (envelope-from maxim@freefall.freebsd.org) Received: (from maxim@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h9D8v8g1045650; Mon, 13 Oct 2003 01:57:08 -0700 (PDT) (envelope-from maxim) Date: Mon, 13 Oct 2003 01:57:08 -0700 (PDT) From: Maxim Konovalov Message-Id: <200310130857.h9D8v8g1045650@freefall.freebsd.org> To: serg@tmn.ru, maxim@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/56942: module build broken after MFC of src/sys/dev/aac/aac.c X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Oct 2003 08:57:09 -0000 Synopsis: module build broken after MFC of src/sys/dev/aac/aac.c State-Changed-From-To: open->closed State-Changed-By: maxim State-Changed-When: Mon Oct 13 01:56:16 PDT 2003 State-Changed-Why: Fixed in rev. 1.9.2.16 sys/dev/aac/aac.c by scottl, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=56942 From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 13 03:20:12 2003 Return-Path: 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 45D0716A4B3 for ; Mon, 13 Oct 2003 03:20:12 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DA5543FB1 for ; Mon, 13 Oct 2003 03:20:10 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h9DAKAFY057444 for ; Mon, 13 Oct 2003 03:20:10 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h9DAK9eE057443; Mon, 13 Oct 2003 03:20:10 -0700 (PDT) (envelope-from gnats) Resent-Date: Mon, 13 Oct 2003 03:20:10 -0700 (PDT) Resent-Message-Id: <200310131020.h9DAK9eE057443@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, Stefan Farfeleder Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 65CAB16A4B3 for ; Mon, 13 Oct 2003 03:16:07 -0700 (PDT) Received: from fafoe.narf.at (chello212186121237.14.vie.surfer.at [212.186.121.237]) by mx1.FreeBSD.org (Postfix) with ESMTP id A2AB643F75 for ; Mon, 13 Oct 2003 03:16:04 -0700 (PDT) (envelope-from stefan@fafoe.dyndns.org) Received: from frog.fafoe.narf.at (frog.fafoe.narf.at [192.168.2.101]) by fafoe.narf.at (Postfix) with ESMTP id 7510640ED; Mon, 13 Oct 2003 12:15:57 +0200 (CEST) Received: by frog.fafoe.narf.at (Postfix, from userid 1001) id 7FFCA482; Mon, 13 Oct 2003 12:15:56 +0200 (CEST) Message-Id: <20031013101556.7FFCA482@frog.fafoe.narf.at> Date: Mon, 13 Oct 2003 12:15:56 +0200 (CEST) From: Stefan Farfeleder To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: stefan@fafoe.narf.at Subject: kern/57945: [patch] Add locking to kqueue to make it MP-safe X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Stefan Farfeleder List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Oct 2003 10:20:12 -0000 >Number: 57945 >Category: kern >Synopsis: [patch] Add locking to kqueue to make it MP-safe >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 13 03:20:09 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Stefan Farfeleder >Release: FreeBSD 5.1-CURRENT i386 >Organization: >Environment: System: FreeBSD frog.fafoe.narf.at 5.1-CURRENT FreeBSD 5.1-CURRENT #14: Mon Oct 13 02:25:41 CEST 2003 freebsd@frog.fafoe.narf.at:/freebsd/frog/obj/freebsd/frog/src/sys/FROG i386 >Description: The current kqueue implementation does not seem to be MP-safe. The kqueue facility does not having its own locks, I believe it was intended to rely on Giant. As Giant gets locked down, kqueue was apparently forgotten. The KNOTE() macro is spread over the whole kernel, sometimes called with Giant hold, sometimes not. The function knote_enqueue() (called via knote() and KNOTE_ACTIVATE()) inserts a node into a TAILQ, this operation isn't atomic. If another processor executes KNOTE() or kevent() at the same time, the queue might get corrupted. >How-To-Repeat: A good test is to decomment -DUSE_QUEUE in the make(1) Makefile, recompile it and do a buildworld with, say, -j8. Almost always this will result in a null pointer dereference in kqueue_scan() (this happens rather seldomly nowadays) or a deadlock on my dual Athlon MP box. The only thing I can do then is to break into ddb via the serial console: %% db> t siointr1(c6506800,0,c05d9669,6a0,e402cca4) at siointr1+0xc9 siointr(c6506800) at siointr+0x35 Xfastintr4() at Xfastintr4+0xba --- interrupt, eip = 0xc048f818, esp = 0xe402cc18, ebp = 0xe402cca4 --- kqueue_scan(c7090594,4,bfbfeb40,0,c70d9850) at kqueue_scan+0x228 kevent(c70d9850,e402cd14,c05dca42,3ec,6) at kevent+0x1df syscall(2f,2f,2f,bfbff918,bfbff928) at syscall+0x233 Xint0x80_syscall() at Xint0x80_syscall+0x1d --- syscall (363, FreeBSD ELF32, kevent), eip = 0x806740b, esp = 0xbfbfeb0c, ebp = 0xbfbfeba8 --- db> ps pid proc uarea uid ppid pgrp flag stat wmesg wchan cmd 1637 c66afd3c e3db6000 1005 1635 83873 0004002 [SLP]piperd 0xc714f60c] as 1636 c70dd5ac e404b000 1005 1635 83873 0000002 [LOCK Giant c0619140] cc 1635 c68f5974 e3e44000 1005 1626 83873 0004002 [SLP]wait 0xc68f5974] cc 1634 c6a97b58 e3f12000 1005 1632 83873 0004002 [SLP]piperd 0xc66c6204] as 1633 c6a971e4 e3f0d000 1005 1632 83873 0000002 [LOCK Giant c0619140] cc 1632 c6a975ac e3f0f000 1005 1627 83873 0004002 [SLP]wait 0xc6a975ac] cc 1631 c712ad3c e40bd000 1005 98527 83873 0004002 [LOCK Giant c0619140] sh 1630 c6a97000 e3f0c000 1005 1628 83873 0004002 [LOCK Giant c0619140] as 1629 c68f5d3c e3e46000 1005 1628 83873 0004002 [LOCK Giant c0619140] cc1 1628 c66afb58 e3db5000 1005 1597 83873 0004002 [SLP]wait 0xc66afb58] cc 1627 c7160d3c e413c000 1005 1375 83873 0004002 [SLP]wait 0xc7160d3c] sh 1626 c71605ac e40ea000 1005 1137 83873 0004002 [SLP]wait 0xc71605ac] sh 1625 c67e03c8 e3de3000 1005 1060 83873 0004002 [LOCK Giant c0619140] sh 1624 c70ae790 e3f98000 1005 1375 83873 0004002 [LOCK Giant c0619140] sh 1623 c6a8a1e4 e3ecd000 1005 1060 83873 0004002 [LOCK Giant c0619140] sh 1622 c70ae5ac e3f97000 1005 1620 83873 0004002 [LOCK Giant c0619140] as 1621 c6ab7000 e3f25000 1005 1620 83873 0004002 [LOCK Giant c0619140] cc1 1620 c67df1e4 e3dda000 1005 1610 83873 0004002 [SLP]wait 0xc67df1e4] cc 1619 c70dd000 e4048000 1005 1613 83873 0004002 [SLP]piperd 0xc6a59b6c] as --More-- 1618 c70ae1e4 e3f95000 1005 1613 83873 0004002 [LOCK Giant c0619140] cc1 --More-- 1617 c712a000 e4068000 1005 1615 83873 0004002 [LOCK Giant c0619140] as 1616 c70dad3c e4047000 1005 1615 83873 0004002 [LOCK Giant c0619140] cc1 1615 c6a201e4 e3e77000 1005 1611 83873 0004002 [SLP]wait 0xc6a201e4] cc 1614 c70acb58 e3f92000 1005 1375 83873 0004002 [LOCK Giant c0619140] sh 1613 c70da790 e4044000 1005 1612 83873 0004002 [SLP]wait 0xc70da790] cc 1612 c6a96d3c e3f0b000 1005 98527 83873 0004002 [SLP]wait 0xc6a96d3c] sh 1611 c6a8a3c8 e3ece000 1005 1060 83873 0004002 [SLP]wait 0xc6a8a3c8] sh 1610 c70da974 e4045000 1005 1375 83873 0004002 [SLP]wait 0xc70da974] sh 1609 c70d75ac e3fed000 1005 1607 83873 0004002 [SLP]piperd 0xc6b2e8bc] as 1608 c6a20d3c e3ecb000 1005 1607 83873 0004002 [LOCK Giant c0619140] cc1 1607 c70dab58 e4046000 1005 1606 83873 0004002 [SLP]wait 0xc70dab58] cc 1606 c6a1f974 e3e73000 1005 1137 83873 0004002 [SLP]wait 0xc6a1f974] sh 1603 c70aeb58 e3fe8000 1005 1601 83873 0004002 [SLP]piperd 0xc66c42b0] as 1602 c70ac790 e3f90000 1005 1601 83873 0004002 [LOCK Giant c0619140] cc1 1601 c6a1f000 e3e6e000 1005 1600 83873 0004002 [SLP]wait 0xc6a1f000] cc 1600 c70dd3c8 e404a000 1005 1060 83873 0004002 [SLP]wait 0xc70dd3c8] sh 1597 c6a1f1e4 e3e6f000 1005 98527 83873 0004002 [SLP]wait 0xc6a1f1e4] sh 1578 c718e3c8 e413f000 1005 1575 83873 0004002 [SLP]piperd 0xc716b0ac] as 1576 c712ab58 e40bc000 1005 1575 83873 0004002 [LOCK Giant c0619140] cc1 1575 c70da000 e4040000 1005 1572 83873 0004002 [SLP]wait 0xc70da000] cc --More-- 1572 c66473c8 e1b40000 1005 98527 83873 0004002 [SLP]wait 0xc66473c8] sh 1375 c71603c8 e40e9000 1005 1317 83873 0004002 [SLP]kqread 0xc6a93000] make 1317 c715f974 e40e4000 1005 96810 83873 0004002 [SLP]wait 0xc715f974] sh 1137 c718e000 e413d000 1005 184 83873 0004002 [LOCK Giant c0619140] make 1060 c715fd3c e40e6000 1005 99104 83873 0004002 [CPU 0] make 184 c70dd1e4 e4049000 1005 183 83873 0004002 [SLP]wait 0xc70dd1e4] sh 183 c70ae3c8 e3f96000 1005 99167 83873 0004002 [SLP]kqread 0xcd046000] make 99167 c712a790 e406c000 1005 96810 83873 0004002 [SLP]wait 0xc712a790] sh 99104 c67e0d3c e3e0f000 1005 96810 83873 0004002 [SLP]wait 0xc67e0d3c] sh 98527 c68f5000 e3e18000 1005 96820 83873 0004002 [SLP]kqread 0xc6fdd400] make 96820 c6ab73c8 e3f27000 1005 96810 83873 0004002 [SLP]wait 0xc6ab73c8] sh 96810 c718e5ac e4140000 1005 96271 83873 0004002 [SLP]kqread 0xc867b900] make 96271 c70acd3c e3f93000 1005 96264 83873 0004002 [SLP]wait 0xc70acd3c] sh 96264 c70d73c8 e3fec000 1005 96263 83873 0004002 [SLP]kqread 0xc6a8f100] make 96263 c70ac3c8 e3f8e000 1005 83901 83873 0004002 [SLP]wait 0xc70ac3c8] sh 83901 c6a97d3c e3f13000 1005 83899 83873 0004002 [SLP]kqread 0xc6feb700] make 83899 c712e1e4 e40bf000 1005 83873 83873 0004002 [SLP]wait 0xc712e1e4] sh 83873 c6ab7790 e3f29000 1005 593 83873 0004002 [SLP]kqread 0xc6fe4e00] make 83845 c6a1fd3c e3e75000 1001 83844 83845 0004002 [SLP]ttyin 0xc6802c40] bash 83844 c70da5ac e4043000 1001 83842 83842 0000100 [CV]select 0xc06418d4] sshd --More--83842 c70ddd3c e404f000 0 428 83842 0000100 [SLP]sbwait 0xc6819664] sshd 593 c67e0b58 e3e0e000 1005 565 593 0004002 [SLP]wait 0xc67e0b58] bash 582 c66af5ac e3db2000 0 0 0 0000204 [SLP]mdwait 0xc68d0e00] md0 565 c67df790 e3ddd000 1001 564 565 0004002 [SLP]wait 0xc67df790] bash 564 c68f53c8 e3e1a000 1001 562 562 0000100 [CV]select 0xc06418d4] sshd 562 c68f55ac e3e42000 0 428 562 0000100 [SLP]sbwait 0xc6815a64] sshd 561 c67df3c8 e3ddb000 0 1 561 0004002 [SLP]ttyin 0xc686cc10] getty 560 c67dfb58 e3ddf000 0 1 560 0004002 [SLP]ttyin 0xc686d010] getty 559 c67df974 e3dde000 0 1 559 0004002 [SLP]ttyin 0xc686d410] getty 558 c67e0000 e3de1000 0 1 558 0004002 [SLP]ttyin 0xc686d810] getty 557 c66493c8 e1b48000 0 1 557 0004002 [SLP]ttyin 0xc6680e10] getty 556 c6649b58 e1b73000 0 1 556 0004002 [SLP]ttyin 0xc6754810] getty 555 c67dfd3c e3de0000 0 1 555 0004002 [SLP]ttyin 0xc6754010] getty 554 c67e01e4 e3de2000 0 1 554 0004002 [SLP]ttyin 0xc64d9a10] getty 542 c66af1e4 e3db0000 0 1 542 0000000 [CV]select 0xc06418d4] inetd 517 c66495ac e1b49000 1006 510 510 0004100 [LOCK Giant c0619140] qmgr 516 c6647000 e1b3e000 1006 510 510 0004100 [CV]select 0xc06418d4] pickup 510 c66af000 e3d61000 0 1 510 0004100 [CV]select 0xc06418d4] master 450 c66af974 e3db4000 0 1 450 0000000 [SLP]nanslp 0xc061b80c] cron 428 c6649790 e1b4a000 0 1 428 0000100 [CV]select 0xc06418d4] sshd --More-- 406 c66af790 e3db3000 0 1 406 0000000 [CV]select 0xc06418d4] ntpd 284 c64eed3c e1b33000 0 1 284 0000000 [CV]select 0xc06418d4] rpcbind 265 c66471e4 e1b3f000 0 1 265 0000000 [CV]select 0xc06418d4] syslogd 37 c66475ac e1b41000 0 0 0 0000204 [SLP]syncer 0xc061b1c0] syncer 36 c6647790 e1b42000 0 0 0 0000204 [SLP]vlruwt 0xc6647790] vnlru 35 c6647974 e1b43000 0 0 0 0000204 [SLP]psleep 0xc0641d68] bufdaemon 34 c6647b58 e1b44000 0 0 0 000020c [SLP]pgzero 0xc0645588] pagezero 33 c6647d3c e1b45000 0 0 0 0000204 [SLP]psleep 0xc06455e0] vmdaemon 9 c6649000 e1b46000 0 0 0 0000204 [SLP]psleep 0xc06455cc] pagedaemon 32 c66491e4 e1b47000 0 0 0 0000204 new [IWAIT] irq8: rtc 31 c646d5ac e1afa000 0 0 0 0000204 new [IWAIT] irq0: clk 30 c646d790 e1afb000 0 0 0 0000204 new [IWAIT] irq3: sio1 29 c646d974 e1afc000 0 0 0 0000204 new [IWAIT] irq4: sio0 28 c646db58 e1afd000 0 0 0 0000204 [IWAIT] swi0: tty:sio 27 c646dd3c e1afe000 0 0 0 0000204 new [IWAIT] irq7: ppc0 26 c64ee000 e1b05000 0 0 0 0000204 [LOCK Giant c0619140] irq11: fxp0 25 c64ee1e4 e1b06000 0 0 0 0000204 new [IWAIT] irq15: ata1 24 c64ee3c8 e1b07000 0 0 0 0000204 [IWAIT] irq14: ata0 8 c64ee5ac e1b08000 0 0 0 0000204 [SLP]actask 0xc071224c] acpi_task2 7 c64ee790 e1b09000 0 0 0 0000204 [SLP]actask 0xc071224c] acpi_task1 --More-- 6 c64ee974 e1b0a000 0 0 0 0000204 [SLP]actask 0xc071224c] acpi_task0 23 c25ac1e4 e00c8000 0 0 0 0000204 new [IWAIT] irq9: acpi0 22 c25ac3c8 e00c9000 0 0 0 0000204 new [IWAIT] swi3: cambio 21 c25ac5ac e00ca000 0 0 0 0000204 new [IWAIT] swi2: camnet 20 c25ac790 e00cb000 0 0 0 0000204 new [IWAIT] swi5:+ 5 c25ac974 e00cc000 0 1 0 0000204 [SLP]tqthr 0xc061cd68] taskqueue 19 c25acb58 e00cd000 0 0 0 0000204 [IWAIT] swi7: acpitaskq 18 c25acd3c e00f5000 0 0 0 0000204 new [IWAIT] swi6:+ 17 c646d000 e1af7000 0 0 0 0000204 [IWAIT] swi7: task queue 16 c646d1e4 e1af8000 0 0 0 0000204 [SLP]- 0xc0608c60] random 4 c646d3c8 e1af9000 0 0 0 0000204 [SLP]- 0xc06155e0] g_down 3 c25a5000 e0071000 0 0 0 0000204 [SLP]- 0xc06155dc] g_up 2 c25a51e4 e00c0000 0 0 0 0000204 [SLP]- 0xc06155d4] g_event 15 c25a53c8 e00c1000 0 0 0 0000204 new [IWAIT] swi4: vm 14 c25a55ac e00c2000 0 0 0 000020c [LOCK Giant c0619140] swi8: tty:sio clock 13 c25a5790 e00c3000 0 0 0 0000204 [IWAIT] swi1: net 12 c25a5974 e00c4000 0 0 0 000020c [Can run] idle: cpu0 11 c25a5b58 e00c5000 0 0 0 000020c [CPU 1] idle: cpu1 1 c25a5d3c e00c6000 0 0 1 0004200 [SLP]wait 0xc25a5d3c] init 10 c25ac000 e00c7000 0 0 0 0000204 [CV]ktrace 0xc0618b94] ktrace --More-- 0 c0615680 c081f000 0 0 0 0000200 [SLP]sched 0xc0615680] swapper db> show witness Sleep locks: 0 taskqueue kthread -- last acquired @ /freebsd/testing/src/sys/kern/subr_taskqueue.c:253 0 g_xdown -- last acquired @ /freebsd/testing/src/sys/geom/geom_io.c:356 3 ATA queue lock -- last acquired @ /freebsd/testing/src/sys/dev/ata/ata-queue.c:174 9 Malloc Stats -- last acquired @ /freebsd/testing/src/sys/kern/kern_malloc.c:335 1 ATA disk bioqueue lock -- last acquired @ /freebsd/testing/src/sys/dev/ata/ata-disk.c:240 3 bio queue -- last acquired @ /freebsd/testing/src/sys/geom/geom_io.c:64 1 md bio queue -- last acquired @ /freebsd/testing/src/sys/dev/md/md.c:603 9 system map -- last acquired @ /freebsd/testing/src/sys/vm/vm_map.c:2910 10 kmem object -- last acquired @ /freebsd/testing/src/sys/vm/vm_object.c:433 11 vm page queue mutex -- last acquired @ /freebsd/testing/src/sys/vm/vm_fault.c:907 12 vnode interlock -- last acquired @ /freebsd/testing/src/sys/kern/vfs_subr.c:2176 13 vnode_free_list -- last acquired @ /freebsd/testing/src/sys/kern/vfs_subr.c:962 13 spechash -- last acquired @ /freebsd/testing/src/sys/kern/vfs_subr.c:1989 13 Syncer mtx -- last acquired @ /freebsd/testing/src/sys/kern/vfs_subr.c:1663 13 Name Cache -- last acquired @ /freebsd/testing/src/sys/kern/vfs_cache.c:849 12 UMA pcpu -- last acquired @ /freebsd/testing/src/sys/vm/uma_core.c:1390 13 KMAP ENTRY -- last acquired @ /freebsd/testing/src/sys/vm/uma_core.c:361 13 UMA zone -- last acquired @ /freebsd/testing/src/sys/vm/uma_core.c:1435 12 CMAPCADDR12 -- last acquired @ /freebsd/testing/src/sys/i386/i386/pmap.c:2475 10 vm object -- last acquired @ /freebsd/testing/src/sys/vm/vm_object.c:1787 11 vm page queue mutex -- (already displayed) 0 g_xup -- last acquired @ /freebsd/testing/src/sys/geom/geom_io.c:375 2 Giant -- last acquired @ /freebsd/testing/src/sys/kern/kern_event.c:444 3 kernel linker -- last acquired @ /freebsd/testing/src/sys/kern/kern_linker.c:430 3 malloc -- last acquired @ /freebsd/testing/src/sys/kern/kern_malloc.c:502 3 devstat -- last acquired @ /freebsd/testing/src/sys/kern/subr_devstat.c:190 3 eventhandler -- last acquired @ /freebsd/testing/src/sys/kern/subr_eventhandler.c:213 4 eventhandler list -- last acquired @ /freebsd/testing/src/sys/kern/kern_exit.c:210 3 ipflow list head -- last acquired @ /freebsd/testing/src/sys/netinet/ip_flow.c:288 3 vm object_list -- last acquired @ /freebsd/testing/src/sys/vm/vm_object.c:218 10 kmem object -- (already displayed) 10 vm object -- (already displayed) 3 ithread -- last acquired @ /freebsd/testing/src/sys/kern/kern_intr.c:265 3 sf_bufs list lock -- last acquired @ /freebsd/testing/src/sys/i386/i386/vm_machdep.c:577 9 Malloc Stats -- (already displayed) 9 system map -- (already displayed) 3 GEOM orphanage -- last acquired @ /freebsd/testing/src/sys/geom/geom_event.c:169 3 taskqueue list -- last acquired @ /freebsd/testing/src/sys/kern/subr_taskqueue.c:384 3 ipqlock -- last acquired @ /freebsd/testing/src/sys/netinet/ip_input.c:1237 3 accounting -- last acquired @ /freebsd/testing/src/sys/kern/kern_acct.c:232 3 rman head -- last acquired @ /freebsd/testing/src/sys/kern/subr_rman.c:110 3 ACPI semaphore -- last acquired @ /freebsd/testing/src/sys/dev/acpica/Osd/OsdSynch.c:320 3 rman -- last acquired @ /freebsd/testing/src/sys/kern/subr_rman.c:445 9 Malloc Stats -- (already displayed) 9 system map -- (already displayed) 3 devd -- last acquired @ /freebsd/testing/src/sys/kern/subr_bus.c:479 9 Malloc Stats -- (already displayed) 12 UMA pcpu -- (already displayed) 3 pseudofs_vncache -- last acquired @ /freebsd/testing/src/sys/fs/pseudofs/pseudofs_vncache.c:225 3 p_peers -- last acquired @ /freebsd/testing/src/sys/kern/kern_exit.c:252 3 bio queue -- (already displayed) 3 taskqueue -- last acquired @ /freebsd/testing/src/sys/kern/subr_taskqueue.c:210 3 pseudofs -- last acquired @ /freebsd/testing/src/sys/fs/pseudofs/pseudofs_fileno.c:86 3 acpica subsystem lock -- last acquired @ /freebsd/testing/src/sys/dev/acpica/Osd/OsdSynch.c:381 3 pbuf mutex -- last acquired @ /freebsd/testing/src/sys/vm/vm_pager.c:443 3 domain list -- last acquired @ /freebsd/testing/src/sys/kern/uipc_domain.c:114 3 dirhash list -- last acquired @ /freebsd/testing/src/sys/ufs/ufs/ufs_dirhash.c:342 4 dirhash -- last acquired @ /freebsd/testing/src/sys/ufs/ufs/ufs_dirhash.c:657 3 sem -- last acquired @ /freebsd/testing/src/sys/kern/sysv_sem.c:1158 3 mntvnode -- last acquired @ /freebsd/testing/src/sys/kern/vfs_subr.c:1054 12 vnode interlock -- (already displayed) 3 ufs ihash -- last acquired @ /freebsd/testing/src/sys/ufs/ufs/ufs_ihash.c:160 12 vnode interlock -- (already displayed) 3 mntid -- last acquired @ /freebsd/testing/src/sys/kern/vfs_subr.c:586 4 mountlist -- last acquired @ /freebsd/testing/src/sys/kern/vfs_subr.c:3500 3 ATA queue lock -- (already displayed) 3 netisr lock -- last acquired @ /freebsd/testing/src/sys/net/netisr.c:229 4 tcp -- last acquired @ /freebsd/testing/src/sys/netinet/tcp_usrreq.c:653 5 inp -- last acquired @ /freebsd/testing/src/sys/netinet/tcp_usrreq.c:670 6 random reseed -- last acquired @ /freebsd/testing/src/sys/dev/random/yarrow.c:172 6 radix node head -- last acquired @ /freebsd/testing/src/sys/netinet/if_ether.c:146 7 rtentry -- last acquired @ /freebsd/testing/src/sys/net/route.c:1170 8 ifaddr -- last acquired @ /freebsd/testing/src/sys/net/route.c:670 8 network driver -- last acquired @ /freebsd/testing/src/sys/dev/fxp/if_fxp.c:1279 9 Malloc Stats -- (already displayed) 9 if send queue -- last acquired @ /freebsd/testing/src/sys/dev/fxp/if_fxp.c:1320 9 mbuf PCPU list lock -- last acquired @ /freebsd/testing/src/sys/kern/subr_mbuf.c:645 10 mbuf subsystem general lists lock -- last acquired @ /freebsd/testing/src/sys/kern/subr_mbuf.c:676 9 system map -- (already displayed) 7 ifnet -- last acquired @ /freebsd/testing/src/sys/net/if.c:1172 6 arc4_mtx -- last acquired @ /freebsd/testing/src/sys/libkern/arc4random.c:137 6 ip_inq -- last acquired @ /freebsd/testing/src/sys/net/netisr.c:137 6 sellck -- last acquired @ /freebsd/testing/src/sys/kern/sys_generic.c:816 11 sleep mtxpool -- last acquired @ /freebsd/testing/src/sys/kern/kern_descrip.c:1807 4 arp_inq -- last acquired @ /freebsd/testing/src/sys/net/netisr.c:137 4 udp -- last acquired @ /freebsd/testing/src/sys/netinet/udp_usrreq.c:263 5 inp -- (already displayed) 5 UMA lock -- last acquired @ /freebsd/testing/src/sys/vm/uma_core.c:1201 9 Malloc Stats -- (already displayed) 9 system map -- (already displayed) 3 ACPI task -- last acquired @ /freebsd/testing/src/sys/dev/acpica/Osd/OsdSchedule.c:110 3 bdone lock -- last acquired @ /freebsd/testing/src/sys/kern/vfs_bio.c:3752 3 buffer daemon lock -- last acquired @ /freebsd/testing/src/sys/kern/vfs_bio.c:396 3 needsbuffer lock -- last acquired @ /freebsd/testing/src/sys/kern/vfs_bio.c:291 3 runningbufspace lock -- last acquired @ /freebsd/testing/src/sys/kern/vfs_bio.c:309 3 rtsock route_cb lock -- last acquired @ /freebsd/testing/src/sys/net/rtsock.c:190 3 buf queue lock -- last acquired @ /freebsd/testing/src/sys/kern/vfs_bio.c:1490 12 vnode interlock -- (already displayed) 3 linux osname -- last acquired @ /freebsd/frog/src/sys/compat/linux/linux_mib.c:225 3 fdesc -- last acquired @ /freebsd/testing/src/sys/kern/kern_descrip.c:1515 4 filedesc structure -- last acquired @ /freebsd/testing/src/sys/kern/kern_descrip.c:1837 9 mbuf PCPU list lock -- (already displayed) 5 pipe mutex -- last acquired @ /freebsd/testing/src/sys/kern/sys_pipe.c:1051 6 sellck -- (already displayed) 6 sigio lock -- last acquired @ /freebsd/testing/src/sys/kern/kern_descrip.c:587 7 process group -- last acquired @ /freebsd/testing/src/sys/kern/kern_fork.c:575 8 process lock -- last acquired @ /freebsd/testing/src/sys/kern/kern_condvar.c:456 9 ktrace -- last acquired @ /freebsd/testing/src/sys/kern/kern_fork.c:601 9 struct pargs.ref -- last acquired @ /freebsd/testing/src/sys/kern/kern_proc.c:1071 9 sigacts -- last acquired @ /freebsd/testing/src/sys/kern/kern_condvar.c:457 9 session -- last acquired @ /freebsd/testing/src/sys/kern/kern_fork.c:584 12 vnode interlock -- (already displayed) 10 uidinfo hash -- last acquired @ /freebsd/testing/src/sys/kern/kern_resource.c:878 11 sleep mtxpool -- (already displayed) 11 uidinfo struct -- last acquired @ order list:0 12 allprison -- last acquired @ /freebsd/testing/src/sys/kern/kern_jail.c:414 0 g_disk_done -- last acquired @ /freebsd/testing/src/sys/geom/geom_disk.c:183 3 bio queue -- (already displayed) 12 UMA pcpu -- (already displayed) 0 GEOM event stalling -- last acquired @ /freebsd/testing/src/sys/geom/geom_event.c:157 1 GEOM topology -- last acquired @ /freebsd/testing/src/sys/geom/geom_event.c:158 2 swapdev -- last acquired @ /freebsd/testing/src/sys/vm/swap_pager.c:2285 2 Giant -- (already displayed) 0 module subsystem sx lock -- last acquired @ /freebsd/testing/src/sys/kern/kern_module.c:331 0 sysctl lock -- last acquired @ /freebsd/testing/src/sys/kern/kern_sysctl.c:1273 2 swapdev -- (already displayed) 1 filelist lock -- last acquired @ /freebsd/testing/src/sys/kern/kern_descrip.c:1181 4 filedesc structure -- (already displayed) 1 rip -- last acquired @ /freebsd/testing/src/sys/netinet/raw_ip.c:743 1 allproc -- last acquired @ /freebsd/testing/src/sys/kern/kern_proc.c:255 2 Giant -- (already displayed) 0 kernel environment -- last acquired @ /freebsd/testing/src/sys/kern/kern_environment.c:288 0 proctree -- last acquired @ /freebsd/testing/src/sys/kern/kern_exit.c:573 1 allproc -- (already displayed) Spin locks: Locks which were never acquired: pseudofs_fileno msq semid ACPI global lock strategy bounce pages lock umtx securelevel mutex lock jumbo mutex UUID generator mutex lock phys_pager list dev_pager list dev_pager create swap_pager list vm map sleep mutex lockmgr vm86 lock %% >Fix: I'm using patches similar to this one since about a year, the kqueue-enabled make(1) runs without problems with it. Unfortunately the mutex is (I'm not sure it has to be) acquired and released rather often in the loop in kqueue_scan() to avoid deadlocks due to LORs. Maybe a spin lock would increase the performance? (I didn't do any benchmarks.) I mailed jlemon@ some time ago about the problem, but never got a response. FWIW, a very similar fix was committed to NetBSD in the meantime. --- kqueue_lock.diff begins here --- Index: src/sys/kern/kern_event.c =================================================================== RCS file: /usr/home/ncvs/src/sys/kern/kern_event.c,v retrieving revision 1.60 diff -u -r1.60 kern_event.c --- src/sys/kern/kern_event.c 18 Jun 2003 18:16:39 -0000 1.60 +++ src/sys/kern/kern_event.c 13 Oct 2003 00:35:42 -0000 @@ -389,6 +389,7 @@ goto done2; kq = malloc(sizeof(struct kqueue), M_KQUEUE, M_WAITOK | M_ZERO); TAILQ_INIT(&kq->kq_head); + mtx_init(&kq->kq_mtx, "kqueue mutex", NULL, MTX_DEF); FILE_LOCK(fp); fp->f_flag = FREAD | FWRITE; fp->f_type = DTYPE_KQUEUE; @@ -662,7 +663,7 @@ struct kevent *kevp; struct timeval atv, rtv, ttv; struct knote *kn, marker; - int s, count, timeout, nkev = 0, error = 0; + int count, timeout, nkev = 0, error = 0; FILE_LOCK_ASSERT(fp, MA_NOTOWNED); @@ -704,15 +705,16 @@ start: kevp = kq->kq_kev; - s = splhigh(); + mtx_lock(&kq->kq_mtx); if (kq->kq_count == 0) { if (timeout < 0) { error = EWOULDBLOCK; + mtx_unlock(&kq->kq_mtx); } else { kq->kq_state |= KQ_SLEEP; - error = tsleep(kq, PSOCK | PCATCH, "kqread", timeout); + error = msleep(kq, &kq->kq_mtx, PSOCK | PCATCH | PDROP, + "kqread", timeout); } - splx(s); if (error == 0) goto retry; /* don't restart after signals... */ @@ -728,20 +730,22 @@ kn = TAILQ_FIRST(&kq->kq_head); TAILQ_REMOVE(&kq->kq_head, kn, kn_tqe); if (kn == &marker) { - splx(s); + mtx_unlock(&kq->kq_mtx); if (count == maxevents) goto retry; goto done; } + kq->kq_count--; + mtx_unlock(&kq->kq_mtx); if (kn->kn_status & KN_DISABLED) { kn->kn_status &= ~KN_QUEUED; - kq->kq_count--; + mtx_lock(&kq->kq_mtx); continue; } if ((kn->kn_flags & EV_ONESHOT) == 0 && kn->kn_fop->f_event(kn, 0) == 0) { kn->kn_status &= ~(KN_QUEUED | KN_ACTIVE); - kq->kq_count--; + mtx_lock(&kq->kq_mtx); continue; } *kevp = kn->kn_kevent; @@ -749,34 +753,34 @@ nkev++; if (kn->kn_flags & EV_ONESHOT) { kn->kn_status &= ~KN_QUEUED; - kq->kq_count--; - splx(s); kn->kn_fop->f_detach(kn); knote_drop(kn, td); - s = splhigh(); } else if (kn->kn_flags & EV_CLEAR) { kn->kn_data = 0; kn->kn_fflags = 0; kn->kn_status &= ~(KN_QUEUED | KN_ACTIVE); - kq->kq_count--; } else { + mtx_lock(&kq->kq_mtx); + kq->kq_count++; TAILQ_INSERT_TAIL(&kq->kq_head, kn, kn_tqe); + mtx_unlock(&kq->kq_mtx); } count--; if (nkev == KQ_NEVENTS) { - splx(s); error = copyout(&kq->kq_kev, ulistp, sizeof(struct kevent) * nkev); ulistp += nkev; nkev = 0; kevp = kq->kq_kev; - s = splhigh(); - if (error) + if (error) { + mtx_lock(&kq->kq_mtx); break; + } } + mtx_lock(&kq->kq_mtx); } TAILQ_REMOVE(&kq->kq_head, &marker, kn_tqe); - splx(s); + mtx_unlock(&kq->kq_mtx); done: if (nkev != 0) error = copyout(&kq->kq_kev, ulistp, @@ -900,6 +904,7 @@ } } FILEDESC_UNLOCK(fdp); + mtx_destroy(&kq->kq_mtx); free(kq, M_KQUEUE); fp->f_data = NULL; @@ -1052,14 +1057,14 @@ knote_enqueue(struct knote *kn) { struct kqueue *kq = kn->kn_kq; - int s = splhigh(); KASSERT((kn->kn_status & KN_QUEUED) == 0, ("knote already queued")); + mtx_lock(&kq->kq_mtx); TAILQ_INSERT_TAIL(&kq->kq_head, kn, kn_tqe); kn->kn_status |= KN_QUEUED; kq->kq_count++; - splx(s); + mtx_unlock(&kq->kq_mtx); kqueue_wakeup(kq); } @@ -1067,14 +1072,14 @@ knote_dequeue(struct knote *kn) { struct kqueue *kq = kn->kn_kq; - int s = splhigh(); KASSERT(kn->kn_status & KN_QUEUED, ("knote not queued")); + mtx_lock(&kq->kq_mtx); TAILQ_REMOVE(&kq->kq_head, kn, kn_tqe); kn->kn_status &= ~KN_QUEUED; kq->kq_count--; - splx(s); + mtx_unlock(&kq->kq_mtx); } static void Index: src/sys/sys/eventvar.h =================================================================== RCS file: /usr/home/ncvs/src/sys/sys/eventvar.h,v retrieving revision 1.4 diff -u -r1.4 eventvar.h --- src/sys/sys/eventvar.h 18 Jul 2000 19:31:48 -0000 1.4 +++ src/sys/sys/eventvar.h 8 Mar 2003 19:42:34 -0000 @@ -35,6 +35,7 @@ struct kqueue { TAILQ_HEAD(kqlist, knote) kq_head; /* list of pending event */ int kq_count; /* number of pending events */ + struct mtx kq_mtx; struct selinfo kq_sel; struct filedesc *kq_fdp; int kq_state; --- kqueue_lock.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 13 07:30:19 2003 Return-Path: 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 2BB7116A4D8 for ; Mon, 13 Oct 2003 07:30:19 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9BDA843F75 for ; Mon, 13 Oct 2003 07:30:18 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h9DEUIFY022528 for ; Mon, 13 Oct 2003 07:30:18 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h9DEUINj022527; Mon, 13 Oct 2003 07:30:18 -0700 (PDT) (envelope-from gnats) Date: Mon, 13 Oct 2003 07:30:18 -0700 (PDT) Message-Id: <200310131430.h9DEUINj022527@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Maxim Konovalov Subject: Re: bin/56696: atacontrol core dump (sscanf on unintialized pointer) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 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, 13 Oct 2003 14:30:19 -0000 The following reply was made to PR bin/56696; it has been noted by GNATS. From: Maxim Konovalov To: Igor Truszkowski Cc: sos@freebsd.org, bug-followup@freebsd.org Subject: Re: bin/56696: atacontrol core dump (sscanf on unintialized pointer) Date: Mon, 13 Oct 2003 18:27:41 +0400 (MSD) Please try enclosed patch. Index: atacontrol.c =================================================================== RCS file: /home/ncvs/src/sbin/atacontrol/atacontrol.c,v retrieving revision 1.26 diff -u -r1.26 atacontrol.c --- atacontrol.c 24 Aug 2003 09:23:54 -0000 1.26 +++ atacontrol.c 13 Oct 2003 14:22:34 -0000 @@ -339,14 +339,19 @@ int disk, dev, offset; iocmd.cmd = ATARAIDCREATE; - if (!strcmp(argv[2], "RAID0") || !strcmp(argv[2], "stripe")) - iocmd.u.raid_setup.type = 1; - if (!strcmp(argv[2], "RAID1") || !strcmp(argv[2],"mirror")) - iocmd.u.raid_setup.type = 2; - if (!strcmp(argv[2], "RAID0+1")) - iocmd.u.raid_setup.type = 3; - if (!strcmp(argv[2], "SPAN") || !strcmp(argv[2], "JBOD")) - iocmd.u.raid_setup.type = 4; + if (argc > 2) { + if (!strcmp(argv[2], "RAID0") || + !strcmp(argv[2], "stripe")) + iocmd.u.raid_setup.type = 1; + if (!strcmp(argv[2], "RAID1") || + !strcmp(argv[2], "mirror")) + iocmd.u.raid_setup.type = 2; + if (!strcmp(argv[2], "RAID0+1")) + iocmd.u.raid_setup.type = 3; + if (!strcmp(argv[2], "SPAN") || + !strcmp(argv[2], "JBOD")) + iocmd.u.raid_setup.type = 4; + } if (!iocmd.u.raid_setup.type) { fprintf(stderr, "atacontrol: Invalid RAID type\n"); fprintf(stderr, "atacontrol: Valid RAID types : \n"); @@ -356,7 +361,7 @@ } if (iocmd.u.raid_setup.type & 1) { - if (!sscanf(argv[3], "%d", + if (argc < 4 || !sscanf(argv[3], "%d", &iocmd.u.raid_setup.interleave) == 1) { fprintf(stderr, "atacontrol: Invalid interleave\n"); exit(EX_USAGE); %%% -- Maxim Konovalov, maxim@macomnet.ru, maxim@FreeBSD.org From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 13 09:20:17 2003 Return-Path: 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 819AD16A4B3 for ; Mon, 13 Oct 2003 09:20:17 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6FBFE43FD7 for ; Mon, 13 Oct 2003 09:20:14 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h9DGKEFY034871 for ; Mon, 13 Oct 2003 09:20:14 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h9DGKEWJ034870; Mon, 13 Oct 2003 09:20:14 -0700 (PDT) (envelope-from gnats) Resent-Date: Mon, 13 Oct 2003 09:20:14 -0700 (PDT) Resent-Message-Id: <200310131620.h9DGKEWJ034870@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, dirk.meyer@dinoex.sub.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B49616A4B3 for ; Mon, 13 Oct 2003 09:17:59 -0700 (PDT) Received: from uucp.dinoex.sub.de (uucp.dinoex.sub.de [212.184.201.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6679443FCB for ; Mon, 13 Oct 2003 09:17:57 -0700 (PDT) (envelope-from dm@home.dinoex.sub.de) Received: from home.dinoex.sub.de (home.dinoex.sub.de [217.6.200.196]) by uucp.dinoex.sub.de (8.12.10/8.12.10) with ESMTP id h9DGHh9E011401 for ; Mon, 13 Oct 2003 18:17:43 +0200 (CEST) (envelope-from dm@home.dinoex.sub.de) Received: (from dm@localhost) by home.dinoex.sub.de (8.12.10/8.12.9/Submit) id h9DGHmgD083608; Mon, 13 Oct 2003 18:17:48 +0200 (CEST) (envelope-from dm) Message-Id: <200310131617.h9DGHmgD083608@home.dinoex.sub.de> Date: Mon, 13 Oct 2003 18:17:48 +0200 (CEST) From: dirk.meyer@dinoex.sub.org To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/57961: kmem_malloc(65536): kmem_map too small: 202833920 total allocated X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: dirk.meyer@dinoex.sub.org List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Oct 2003 16:20:17 -0000 >Number: 57961 >Category: kern >Synopsis: kmem_malloc(65536): kmem_map too small: 202833920 total allocated >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 13 09:20:13 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Dirk Meyer >Release: FreeBSD 5.1-CURRENT i386 >Organization: privat >Environment: FreeBSD 5.1-CURRENT #3: Thu Oct 2 22:43:56 CEST 2003 root@current.dinoex.sub.de:/usr/obj/usr/src/sys/NET5 Preloaded elf kernel "/boot/kernel/kernel" at 0xc0a64000. Preloaded elf module "/boot/kernel/acpi.ko" at 0xc0a6421c. Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: AMD Duron(tm) Processor (1300.05-MHz 686-class CPU) Origin = "AuthenticAMD" Id = 0x671 Stepping = 1 Features=0x383f9ff AMD Features=0xc0400000 real memory = 503250944 (479 MB) avail memory = 479154176 (456 MB) Pentium Pro MTRR support enabled [...] tapci0: port 0xff00-0xff0f at device 2.5 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata0: [MPSAFE] ata1: at 0x170 irq 15 on atapci0 ata1: [MPSAFE] [...] acd0: DVDROM at ata0-slave PIO4 (probe1:ata0:0:1:0): Recovered Sense (probe1:ata0:0:1:0): INQUIRY. CDB: 12 1 80 0 ff 0 (probe1:ata0:0:1:0): CAM Status: SCSI Status Error (probe1:ata0:0:1:0): SCSI Status: Check Condition (probe1:ata0:0:1:0): ILLEGAL REQUEST asc:24,0 (probe1:ata0:0:1:0): Invalid field in CDB (probe1:ata0:0:1:0): Recovered Sense (probe1:ata0:0:1:0): INQUIRY. CDB: 12 1 80 0 ff 0 (probe1:ata0:0:1:0): CAM Status: SCSI Status Error (probe1:ata0:0:1:0): SCSI Status: Check Condition (probe1:ata0:0:1:0): ILLEGAL REQUEST asc:24,0 (probe1:ata0:0:1:0): Invalid field in CDB GEOM: create disk cd0 dp=0xc461ee00 GENERIC kernel with additinal line: device atapicam >Description: panic: kmem_malloc(65536): kmem_map too small: 202833920 total allocated panic: from debugger Uptime: 31m43s Dumping 479 MB 16 32 48 64 80 96 112 128 144 160 176 192 208 224 240 256 272 288 304 320 336 352 368 384 400 416 432 448 464 --- kgdb) bt #0 0xc0630f0b in doadump () #1 0xc0631541 in boot () #2 0xc06318d7 in panic () #3 0xc0464302 in db_panic () #4 0xc0464262 in db_command () #5 0xc04643a5 in db_command_loop () #6 0xc04673a5 in db_trap () #7 0xc07bb32c in kdb_trap () #8 0xc07ccded in trap () #9 0xc07bccd8 in calltrap () #10 0xc0631865 in panic () #11 0xc07824c0 in kmem_malloc () #12 0xc0793917 in page_alloc () #13 0xc0795582 in uma_large_malloc () #14 0xc0625e2b in malloc () #15 0xc469e874 in MMalloc (size=65536, file=0xc46a750c "/usr/src/sys/dev/vinum/vinumrequest.c", line=271) at /usr/src/sys/dev/vinum/vinummemory.c:170 #16 0xc46a05b3 in vinumstart (bp=0xcde15808, reviveok=0) at /usr/src/sys/dev/vinum/vinumrequest.c:271 #17 0xc46a02d8 in vinumstrategy (biop=0xcde15808) at /usr/src/sys/dev/vinum/vinumrequest.c:161 #18 0xc05f70e8 in spec_xstrategy () #19 0xc05f7172 in spec_specstrategy () #20 0xc05f6108 in spec_vnoperate () #21 0xc0779060 in ufs_strategy () #22 0xc0779dd8 in ufs_vnoperate () #23 0xc0678557 in bwrite () #24 0xc0678dbc in bawrite () #25 0xc068118a in cluster_wbuild () #26 0xc0680941 in cluster_write () #27 0xc076c542 in ffs_write () #28 0xc06966f2 in vn_write () #29 0xc06596e8 in dofilewrite () #30 0xc065951e in write () #31 0xc07cd723 in syscall () #32 0xc07bcd2d in Xint0x80_syscall () ---Can't read userspace from dump, or kernel process--- # du Data/ 2267426 Slayers-2/VIDEO_TS 2267428 Slayers-2/ maybe related to: http://groups.google.de/groups?hl=de&lr=&ie=UTF-8&newwindow=1&th=ae413a9f59a235ae&rnum=8 >How-To-Repeat: reading from DVD causes the panic each time: # vobcopy -v -v -m -t Data /cdrom >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 13 09:38:10 2003 Return-Path: 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 C4BC216A4BF; Mon, 13 Oct 2003 09:38:10 -0700 (PDT) Received: from blake.polstra.com (dsl081-189-066.sea1.dsl.speakeasy.net [64.81.189.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F01043F93; Mon, 13 Oct 2003 09:38:07 -0700 (PDT) (envelope-from jdp@polstra.com) Received: from strings.polstra.com (dsl081-189-067.sea1.dsl.speakeasy.net [64.81.189.67]) by blake.polstra.com (8.12.9p2/8.12.9) with ESMTP id h9DGbxOH028760; Mon, 13 Oct 2003 09:37:59 -0700 (PDT) (envelope-from jdp@polstra.com) Message-ID: X-Mailer: XFMail 1.5.4 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200310130749.h9D7nWF9038579@freefall.freebsd.org> Date: Mon, 13 Oct 2003 09:37:59 -0700 (PDT) From: John Polstra To: John-Mark Gurney X-Bogosity: No, tests=bogofilter, spamicity=0.476372, version=0.14.5 cc: boris@cs.tu-berlin.de cc: freebsd-bugs@freebsd.org Subject: Re: kern/45291: kevent(2) ignores timeout if nevents == 0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Oct 2003 16:38:10 -0000 On 13-Oct-2003 John-Mark Gurney wrote: > Synopsis: kevent(2) ignores timeout if nevents == 0 > > State-Changed-From-To: open->feedback > State-Changed-By: jmg > State-Changed-When: Mon Oct 13 00:46:53 PDT 2003 > State-Changed-Why: > to quote the man page: If timeout is a non-NULL pointer, it specifies > a maximum interval to wait for an event, > > The behavior is correct since you wanted to wait for 0 events, and since > it has delivered all the events it can (none), it returns. Unless provide > with good reason (or maybe a patch to the manpage to document this feature?) > I will close the PR in 5 days. I disagree. The current behavior is not correct. It is inconsistent with the longstanding behavior of both poll() and select(). Also, from a practical standpoint, returning immediately instead of waiting for the timeout to expire makes writing a typical event loop more awkward. It requires the addition of a special case in the application code to deal with the situation where no events are being awaited. That's not necessary when using poll() or select(). John From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 13 10:57:58 2003 Return-Path: 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 90C7116A4BF; Mon, 13 Oct 2003 10:57:58 -0700 (PDT) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7203543FBD; Mon, 13 Oct 2003 10:57:52 -0700 (PDT) (envelope-from bde@zeta.org.au) Received: from gamplex.bde.org (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3p2/8.8.7) with ESMTP id DAA07663; Tue, 14 Oct 2003 03:57:40 +1000 Date: Tue, 14 Oct 2003 03:56:19 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Stefan Farfeleder In-Reply-To: <20031013101556.7FFCA482@frog.fafoe.narf.at> Message-ID: <20031014031151.V32155@gamplex.bde.org> References: <20031013101556.7FFCA482@frog.fafoe.narf.at> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: freebsd-bugs@freebsd.org cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: kern/57945: [patch] Add locking to kqueue to make it MP-safe X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Oct 2003 17:57:58 -0000 On Mon, 13 Oct 2003, Stefan Farfeleder wrote: > >Description: > The current kqueue implementation does not seem to be MP-safe. The > kqueue facility does not having its own locks, I believe it was > intended to rely on Giant. As Giant gets locked down, kqueue was > apparently forgotten. The KNOTE() macro is spread over the whole > kernel, sometimes called with Giant hold, sometimes not. The function > knote_enqueue() (called via knote() and KNOTE_ACTIVATE()) inserts a node > into a TAILQ, this operation isn't atomic. If another processor > executes KNOTE() or kevent() at the same time, the queue might get > corrupted. > ... > >Fix: > I'm using patches similar to this one since about a year, the > kqueue-enabled make(1) runs without problems with it. Unfortunately the > mutex is (I'm not sure it has to be) acquired and released rather often > in the loop in kqueue_scan() to avoid deadlocks due to LORs. Maybe a > spin lock would increase the performance? (I didn't do any benchmarks.) The small critical sections seem to be mostly required. Spin mutexes are actually less efficient, since in the usual uncontested case they do the same things plus extra calls to critical_enter() and critical exit. > --- kqueue_lock.diff begins here --- > Index: src/sys/kern/kern_event.c > =================================================================== > RCS file: /usr/home/ncvs/src/sys/kern/kern_event.c,v > retrieving revision 1.60 > diff -u -r1.60 kern_event.c > --- src/sys/kern/kern_event.c 18 Jun 2003 18:16:39 -0000 1.60 > +++ src/sys/kern/kern_event.c 13 Oct 2003 00:35:42 -0000 > ... > @@ -704,15 +705,16 @@ > > start: > kevp = kq->kq_kev; > - s = splhigh(); > + mtx_lock(&kq->kq_mtx); > if (kq->kq_count == 0) { > if (timeout < 0) { > error = EWOULDBLOCK; > + mtx_unlock(&kq->kq_mtx); > } else { > kq->kq_state |= KQ_SLEEP; > - error = tsleep(kq, PSOCK | PCATCH, "kqread", timeout); > + error = msleep(kq, &kq->kq_mtx, PSOCK | PCATCH | PDROP, > + "kqread", timeout); > } > - splx(s); Not copying the spl locking seems to give a bug here. msleep() returns with the mutex held. > if (error == 0) > goto retry; > /* don't restart after signals... */ > @@ -728,20 +730,22 @@ > kn = TAILQ_FIRST(&kq->kq_head); > TAILQ_REMOVE(&kq->kq_head, kn, kn_tqe); > if (kn == &marker) { > - splx(s); > + mtx_unlock(&kq->kq_mtx); > if (count == maxevents) > goto retry; > goto done; > } > + kq->kq_count--; > + mtx_unlock(&kq->kq_mtx); > if (kn->kn_status & KN_DISABLED) { > kn->kn_status &= ~KN_QUEUED; > - kq->kq_count--; > + mtx_lock(&kq->kq_mtx); > continue; > } I don't see any reason to unlock/lock here. There were no splx()/splhigh()'s. splhigh() is very global but kq_mtx is very local so keeping the critical sections short should be much less needed than before. > if ((kn->kn_flags & EV_ONESHOT) == 0 && > kn->kn_fop->f_event(kn, 0) == 0) { > kn->kn_status &= ~(KN_QUEUED | KN_ACTIVE); > - kq->kq_count--; > + mtx_lock(&kq->kq_mtx); > continue; > } > *kevp = kn->kn_kevent; Here dropping the mutex seems to be be necessary for calling the function, but the function call was locked by splhigh() before. BTW, what locks kn? Bruce From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 13 11:00:42 2003 Return-Path: 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 A6D8916A4C0 for ; Mon, 13 Oct 2003 11:00:42 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 576F743FE0 for ; Mon, 13 Oct 2003 11:00:40 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h9DI0dFY043153 for ; Mon, 13 Oct 2003 11:00:39 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h9DI0duG043149; Mon, 13 Oct 2003 11:00:39 -0700 (PDT) (envelope-from gnats) Date: Mon, 13 Oct 2003 11:00:39 -0700 (PDT) Message-Id: <200310131800.h9DI0duG043149@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Bruce Evans Subject: Re: kern/57945: [patch] Add locking to kqueue to make it MP-safe X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Bruce Evans List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Oct 2003 18:00:42 -0000 X-List-Received-Date: Mon, 13 Oct 2003 18:00:42 -0000 The following reply was made to PR kern/57945; it has been noted by GNATS. From: Bruce Evans To: Stefan Farfeleder Cc: FreeBSD-gnats-submit@freebsd.org, freebsd-bugs@freebsd.org Subject: Re: kern/57945: [patch] Add locking to kqueue to make it MP-safe Date: Tue, 14 Oct 2003 03:56:19 +1000 (EST) On Mon, 13 Oct 2003, Stefan Farfeleder wrote: > >Description: > The current kqueue implementation does not seem to be MP-safe. The > kqueue facility does not having its own locks, I believe it was > intended to rely on Giant. As Giant gets locked down, kqueue was > apparently forgotten. The KNOTE() macro is spread over the whole > kernel, sometimes called with Giant hold, sometimes not. The function > knote_enqueue() (called via knote() and KNOTE_ACTIVATE()) inserts a node > into a TAILQ, this operation isn't atomic. If another processor > executes KNOTE() or kevent() at the same time, the queue might get > corrupted. > ... > >Fix: > I'm using patches similar to this one since about a year, the > kqueue-enabled make(1) runs without problems with it. Unfortunately the > mutex is (I'm not sure it has to be) acquired and released rather often > in the loop in kqueue_scan() to avoid deadlocks due to LORs. Maybe a > spin lock would increase the performance? (I didn't do any benchmarks.) The small critical sections seem to be mostly required. Spin mutexes are actually less efficient, since in the usual uncontested case they do the same things plus extra calls to critical_enter() and critical exit. > --- kqueue_lock.diff begins here --- > Index: src/sys/kern/kern_event.c > =================================================================== > RCS file: /usr/home/ncvs/src/sys/kern/kern_event.c,v > retrieving revision 1.60 > diff -u -r1.60 kern_event.c > --- src/sys/kern/kern_event.c 18 Jun 2003 18:16:39 -0000 1.60 > +++ src/sys/kern/kern_event.c 13 Oct 2003 00:35:42 -0000 > ... > @@ -704,15 +705,16 @@ > > start: > kevp = kq->kq_kev; > - s = splhigh(); > + mtx_lock(&kq->kq_mtx); > if (kq->kq_count == 0) { > if (timeout < 0) { > error = EWOULDBLOCK; > + mtx_unlock(&kq->kq_mtx); > } else { > kq->kq_state |= KQ_SLEEP; > - error = tsleep(kq, PSOCK | PCATCH, "kqread", timeout); > + error = msleep(kq, &kq->kq_mtx, PSOCK | PCATCH | PDROP, > + "kqread", timeout); > } > - splx(s); Not copying the spl locking seems to give a bug here. msleep() returns with the mutex held. > if (error == 0) > goto retry; > /* don't restart after signals... */ > @@ -728,20 +730,22 @@ > kn = TAILQ_FIRST(&kq->kq_head); > TAILQ_REMOVE(&kq->kq_head, kn, kn_tqe); > if (kn == &marker) { > - splx(s); > + mtx_unlock(&kq->kq_mtx); > if (count == maxevents) > goto retry; > goto done; > } > + kq->kq_count--; > + mtx_unlock(&kq->kq_mtx); > if (kn->kn_status & KN_DISABLED) { > kn->kn_status &= ~KN_QUEUED; > - kq->kq_count--; > + mtx_lock(&kq->kq_mtx); > continue; > } I don't see any reason to unlock/lock here. There were no splx()/splhigh()'s. splhigh() is very global but kq_mtx is very local so keeping the critical sections short should be much less needed than before. > if ((kn->kn_flags & EV_ONESHOT) == 0 && > kn->kn_fop->f_event(kn, 0) == 0) { > kn->kn_status &= ~(KN_QUEUED | KN_ACTIVE); > - kq->kq_count--; > + mtx_lock(&kq->kq_mtx); > continue; > } > *kevp = kn->kn_kevent; Here dropping the mutex seems to be be necessary for calling the function, but the function call was locked by splhigh() before. BTW, what locks kn? Bruce From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 13 11:00:43 2003 Return-Path: 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 0509A16A4C0 for ; Mon, 13 Oct 2003 11:00:43 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9EA9043FEA for ; Mon, 13 Oct 2003 11:00:41 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h9DI0fFY043188 for ; Mon, 13 Oct 2003 11:00:41 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h9DI0esP043174 for freebsd-bugs@freebsd.org; Mon, 13 Oct 2003 11:00:40 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 13 Oct 2003 11:00:40 -0700 (PDT) Message-Id: <200310131800.h9DI0esP043174@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.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Oct 2003 18:00:43 -0000 Current FreeBSD problem reports Critical problems Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2003/10/08] pending/57767gnats-admin [MAINTAINER] misc/libhome: update to 0.7 o [2003/10/09] pending/57821gnats-admin Re: [PATCH] databases/py-cdb: install exa o [2003/10/13] pending/57948gnats-admin followup: ports/57906 o [2003/10/13] pending/57949gnats-admin followup: java/57901 4 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2003/10/08] pending/57782gnats-admin update patch for graphics viewer xzgv fro 1 problem total. From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 13 11:05:21 2003 Return-Path: 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 D009816A4BF for ; Mon, 13 Oct 2003 11:05:21 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE1E543FAF for ; Mon, 13 Oct 2003 11:00:48 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h9DI0mFY043306 for ; Mon, 13 Oct 2003 11:00:48 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h9DI0fZ7043200 for freebsd-bugs@freebsd.org; Mon, 13 Oct 2003 11:00:41 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 13 Oct 2003 11:00:41 -0700 (PDT) Message-Id: <200310131800.h9DI0fZ7043200@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: Current problem reports X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Oct 2003 18:05:22 -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 ------------------------------------------------------------------------------- o [1998/07/12] kern/7264 gibbs Buslogic BT 950 scsi card not detected o [1998/11/25] kern/8861 mdodd under heavy (multi interface) traffic ep0 s [1999/06/05] kern/12041 n_hibma Crashes on startup if Zip drive is switch f [1999/06/25] kern/12395 gibbs Buslogic SCSI cards (BT948) time out unde f [2000/01/17] misc/16157 green "fire" screensave kills network performan o [2000/03/27] kern/17620 jhay Digi/570i sync driver (if_ar.c) causes sy o [2000/05/09] misc/18466 jwd install via nfs or ftp media silently tru o [2000/05/17] misc/18641 paul FreeBSD V4.0 crashes when using ifconfig f [2000/05/29] kern/18874 peter 32bit NFS servers export wrong negative v o [2000/06/13] kern/19247 threads uthread_sigaction.c does not do anything o [2000/07/12] gnu/19882 obrien ld does not detect all undefined symbols! o [2000/07/30] i386/20308 yokota vidcontrol VESA_800x600 causes a kernel p f [2000/07/31] kern/20310 groudier Symbios 53c875j drivers don't work o [2000/08/05] kern/20429 yokota setting flags 0x1 in atkbd0 locks keyboar o [2000/08/28] kern/20895 groudier sym driver doesn't work for SYM53C895A f [2000/09/04] misc/21025 msmith BTX loader 1.00 gets 1Gb of memory from B f [2000/09/04] i386/21042 mdodd Keyboard driver problems with PS/2 Model o [2000/09/12] kern/21220 msmith mlx0: I/O error - attempt to write beyond o [2000/09/14] kern/21272 wpaul USB interrupts seem to be turned off f [2000/11/03] bin/22595 brian telnetd tricked into using arbitrary peer o [2000/11/20] gnu/22972 obrien Internal Compiler Error o [2000/11/25] misc/23103 fenner lacks many ISO C99 features (NAN f [2000/11/27] i386/23145 brian pppoe-test-program panics the server a [2000/12/14] kern/23547 msmith only one logical device on Mylex AcceleRA s [2001/01/30] kern/24740 cy filesystem corruption CFP1080 CAM SCSI ca o [2001/03/09] kern/25632 njl USB modem (umodem) may destroy the cfreel o [2001/03/20] kern/25950 obrien Bad drives on asr look zero-length and pa o [2001/03/24] kern/26048 obrien 4.3-RC: SMP and asr driver don't work to o [2001/04/13] kern/26549 IPsec policies for more than one pair of f [2001/05/03] kern/27059 groudier (symbios) SCSI subsystem hangs under heav a [2001/05/10] kern/27250 bp unionfs filesystem panics in large number f [2001/05/11] kern/27275 kernel bug ? o [2001/07/14] kern/28966 pirzyk math libraries in linux emulation do not o [2001/07/15] ports/28995 max deMime produces blank line in header part o [2001/07/24] misc/29200 dcs Syntax errors in /boot/device.hints cause o [2001/08/18] kern/29844 standards [PATCH] setpgrp does not behave as manual o [2001/08/18] kern/29847 n_hibma USB usbd_probe_and_attach() is broken and o [2001/09/04] ports/30331 portmgr Conflict between bsd.port.mk MAKEFILE var a [2001/09/24] i386/30802 gibbs repeat of i386/22760. Adaptec SCSI contro o [2001/09/27] bin/30869 dump does not dump all files of a filesys s [2001/09/29] kern/30921 ACER mechanic ps/2 keyboard donŽt work an o [2001/09/30] ports/30935 taoka pips sc880 - needs to have syvr4 support o [2001/10/04] kern/31042 murray Device name conflict o [2001/10/14] misc/31266 cjc System can be crashed with "ls -al /flopp o [2001/10/15] bin/31304 joe fix crunchgen to work with more contrib-k o [2001/10/17] conf/31327 Fixes and improvements for rc.diskless* s a [2001/10/31] i386/31671 doc 4.4 installer hangs at " Mounting root fr o [2001/11/16] bin/32040 brian 4.4-Release "set mtu" in ppp is broken wi o [2001/12/11] kern/32713 joe usb mouse detaches from hub and doesnt re a [2001/12/22] i386/33089 murray GENERIC bloat causes 'make world' to brea p [2001/12/27] gnu/33262 mp gdb does not handle pending signals corre o [2002/01/07] bin/33670 dwmalone default inetd install allows for unlimite o [2002/01/16] kern/33951 threads pthread_cancel is ignored o [2002/01/18] bin/34028 brian userland ppp o [2002/01/19] kern/34067 n_hibma Reproducable crash on usb ugen o [2002/01/19] kern/34071 pcn-driver is sort-of-broken in 4.5RC2 (a o [2002/01/30] kern/34470 bde Modem gets sio1 interrupt-level buffer o f [2002/02/26] kern/35354 4.4/4.5 FreeBSD causes hard lock after 20 o [2002/03/01] kern/35466 imp xe driver can not read CIS tuples o [2002/03/06] i386/35615 sound ES1978 Maestro 2E sound card locks up mac o [2002/03/09] i386/35726 Won't let me use ifconfig on the interfac o [2002/03/15] i386/35950 acpi-jp ACPI missing prevents install from floppi o [2002/03/29] kern/36504 crash/panic vm_object_allocate under file o [2002/03/30] kern/36549 sym driver fails on Tekram DC-390U in 486 f [2002/04/07] i386/36850 joe Page Fault using ppp with USB Modem f [2002/04/12] kern/37015 njl Kernel panic in tty_subr.c while using pp f [2002/04/14] kern/37056 joe usb mouse with bios legacy support on han o [2002/04/14] kern/37064 imp System hangs when removing wire of NIC D- o [2002/05/13] bin/38058 brian ppp alters IP header length field 40 -> 4 o [2002/05/14] kern/38070 4.6-PRERELEASE panics on resume on Fujits f [2002/05/23] i386/38459 mux Intel SB82558B NIC won't initialize prope o [2002/05/23] i386/38484 probe freeze o [2002/05/24] conf/38518 combination of pr-27087 and pr-36911 (2) a [2002/05/26] gnu/38594 kan Fortan program don't link post gcc-3.1 o [2002/05/28] bin/38676 change request for pw command o [2002/05/30] misc/38748 qa FreeBSD 4.5 Keyboard problem cannot insta f [2002/06/03] kern/38848 joe kernel panic when removing memory stick f o [2002/06/03] kern/38872 nfs code ignores possibility of MGET(M_WA o [2002/06/07] ports/39008 dwhite py-kqueue wrapper broken with python 2.2 o [2002/06/08] kern/39043 Corrupted files on a FAT32 partition o [2002/06/13] i386/39234 jhb SMP 4.6-RC freezes during boot (Fujitsu-S o [2002/06/15] misc/39341 joe ppp + USB modem problem o [2002/06/19] kern/39524 smbfs with nge NIC causes kernel panic o [2002/06/29] kern/40003 Panic on boot w/4.6 and 4.6-stable from 6 o [2002/07/05] bin/40215 wpaul NIS host search not terminate o [2002/07/14] misc/40575 qa Kern.flp boot floppy error o [2002/08/05] bin/41350 vnconfig: apparent off-by-one bug o [2002/08/07] kern/41402 kernal panics f [2002/08/07] kern/41417 luigi 3Com xl0 drivers generate a kernel panic o [2002/08/07] misc/41425 adding new cpu types to bsd.cpu.mk f [2002/08/08] i386/41437 qa sysinstall 4.6 RELEASE - hang o [2002/08/09] kern/41494 static routes set with interface address o [2002/08/10] ports/41513 tobez lang/perl5.8 - "make test" destroys perl a [2002/08/13] bin/41647 bms ifconfig doesn't accept lladdr along with o [2002/08/16] misc/41717 Memory Leak in FreeBSD o [2002/08/16] i386/41723 Copying files to filesystem causes "integ a [2002/08/18] kern/41765 rwatson UDP socket remains connected after error o [2002/08/19] misc/41792 tjr lseek after ftruncate fails f [2002/08/21] i386/41860 qa sysinstall rel. 4.5 and 4.6 hangs o [2002/08/22] java/41913 java JniHandler and ChannelUn Errors o [2002/08/26] kern/42030 bms panic when zebra works on detaching tun i o [2002/08/26] i386/42046 System crashes with o [2002/08/29] i386/42173 sound Sony VAIO FXA 53 (or FXA 679 in Mexico) w o [2002/08/30] kern/42198 Kernel panics or system hangs up with big f [2002/08/30] misc/42221 qa Signal 11 core dumped when fetchin index f [2002/08/30] kern/42235 system panics with "worklist_remove: item o [2002/08/31] kern/42277 mckusick Several kernel panics per day with panics p [2002/09/09] kern/42580 robert kernel crash when starting ISC 3.2 X11 bi p [2002/09/14] bin/42772 usr.bin/make: patch to stop a fork bomb o [2002/09/15] kern/42796 NCR/SYM 53C825 driver detects scsi cdrom f [2002/09/18] ports/42921 nork archivers/rpm/work/rpm-3.0.6/lib/rpmlead. o [2002/09/18] kern/42937 bms panic when ARP cache uses up all mbufs o [2002/09/27] bin/43434 New option to 'dmesg' which allow to disp o [2002/09/29] i386/43491 microuptime () went backwards o [2002/10/02] misc/43576 imp Problem with wi driver and Lucent Orinoco o [2002/10/02] kern/43614 Installation Hangs at "md1: Malloc disk" o [2002/10/03] kern/43625 imp Wi(4) driver hangs after long data transf o [2002/10/05] kern/43713 during install, mounting root from ufs:/d o [2002/10/11] kern/43954 nfs-blocked process can't return or be in o [2002/10/17] kern/44198 njl Toshiba PDR-M25 camera/umass o [2002/10/21] kern/44336 NFSv3 client broken - security problem wi o [2002/10/25] misc/44471 qa 4.6 install writes MBR even when specifie o [2002/10/28] kern/44569 Kernel crash o [2002/10/30] kern/44744 VN devices can hang system FreeBSD v4.5 o [2002/11/01] bin/44808 opiepasswd makes bad seed for existing us o [2002/11/04] ports/44868 fanf sysutils/cfengine2: cfservd dies fails if o [2002/11/04] kern/44884 imp pcic is broken in current o [2002/11/17] i386/45383 Failed installation FreeBSD 4.7-RELEASE a o [2002/11/21] kern/45568 gibbs ahc(A19160) pci parity error o [2002/12/02] kern/45910 emoore unable to use amr device o [2002/12/08] i386/46113 busspace bug f [2002/12/20] kern/46392 grog kernel, vinum, umount, changing user mode o [2002/12/23] kern/46490 silby xl driver generates lots of interrupts wi o [2002/12/23] i386/46506 joe Crash Before Initialization of Printer? o o [2002/12/26] kern/46537 amr(4) hangs system on -CURRENT or make p o [2003/01/02] kern/46696 imp ep0 hard lockup during -CURRENT install o [2003/01/08] kern/46865 kernel panic on SuperMicro 6012-8P box o [2003/01/08] bin/46866 NIS-based getpwent() falsely returns NULL f [2003/01/14] bin/47044 gshapiro Sendmail "Can't assign requested addresse o [2003/01/17] kern/47167 5.0 RC 3 (and 2) has 1 second uptime on T o [2003/01/21] i386/47295 kernel panic during FreeBSD 5.0 installat o [2003/01/22] bin/47384 qa sysinstall ignores intended destination d o [2003/01/24] i386/47428 Installing 4.7 on pst0 device fails o [2003/01/27] bin/47538 tar buggy on memory disk partitions o [2003/01/27] kern/47544 iir does not detect direct access drives a [2003/02/03] kern/47874 NFS server crashes when given mount daemo o [2003/02/05] i386/47989 5.0-RELEASE install CD kernel panic s [2003/02/06] kern/48028 panicstr: union: missing upper layer in w o [2003/02/06] kern/48029 Fatal trap 12: page fault while in kernel o [2003/02/07] kern/48039 Fatal trap 12: page fault while in kernel o [2003/02/08] kern/48092 Fatal trap 12: page fault while in kernel o [2003/02/08] kern/48100 Fatal panic in vm_map_lookup_entry ... o [2003/02/10] kern/48166 panic: pmap_new_proc: u_map allocation fa o [2003/02/14] i386/48274 FreeBSD 4.7-RELEASE doesn't work on Toshi o [2003/02/16] bin/48341 qa Sysinstall deletes mbr although it should o [2003/02/17] kern/48369 ext2fs no-go in FreeBSD 5 (regression ove o [2003/02/25] kern/48667 FreeBSD hangs o [2003/02/25] kern/48691 kernel panics on ASUS A7N266-VM Motherboa o [2003/03/02] kern/48849 joe Maxtor XT5000 causes panic in boot o [2003/03/13] i386/49978 installation problem on Acer Altos G300 o [2003/03/23] kern/50216 ipfw kernel panic on 5.0-current when use ipfw o [2003/03/23] kern/50229 FreeBSD detects laptop drive geometries i f [2003/04/14] ports/50954 anholt XFree86 4.3.0 core dump ati rage mobility o [2003/04/15] ports/50999 ports-bugs SSL with mail/dovecot simply doesn't work o [2003/04/15] kern/51016 kernel panic: ufsdirhash_lookup: bad offs o [2003/04/18] i386/51129 acpi-jp ACPI problem, booting from install cd fai o [2003/04/24] i386/51338 sound random system hangs; system hangs because o [2003/04/30] bin/51628 ypmatch doesn't match keys in legacy NIS o [2003/05/03] kern/51742 ffs_vfree: freeing free inode o [2003/05/16] ports/52346 obrien Portupgrade of bash-2.05b.004 fails with o [2003/05/22] kern/52585 luigi Kernel panic with ipfw2 and syncookies f [2003/05/22] i386/52593 mdodd Kernel panic when starting apm o [2003/05/23] ports/52632 ports-bugs vmware3 port is missing /usr/lib/vmware/v o [2003/05/25] i386/52668 i386 AIC7902 problem when large data transferr f [2003/05/27] kern/52718 jeffr changes to kern_umtx.c causes panic in ca s [2003/05/27] kern/52745 Fatal trap 12: page fault while in kernel o [2003/06/01] i386/52835 pdeuskar em driver does not work with mobile-chips o [2003/06/03] kern/52916 grog vinum causes panic after start/stop/... c o [2003/06/06] kern/53004 union_lookup returning . (0xbc332e90) not o [2003/06/07] kern/53010 FreeBSD-CURRENT cannot use 2940 UW on SNI o [2003/06/11] kern/53195 rwatson Easily reproduceable mac_lomac panic o [2003/06/11] i386/53203 i386 "BTX halted" when attempting install of 5 o [2003/06/15] kern/53350 fill up a malloc md-disk on 5.1-R causes o [2003/06/17] kern/53416 kmem_map too small after around 12 hours. o [2003/06/17] kern/53433 heavy i/o on GBDE partition on SMP locks o [2003/06/21] ports/53600 ports-bugs /usr/port/emulators/linux_base says "linu o [2003/06/22] i386/53620 i386 Kernel panics / reboots during install of o [2003/06/25] kern/53725 jhb fatal trap 12 during boot, sys/dev/pci/pc o [2003/06/25] ports/53742 sobomax /usr/ports/print/freetype2 fails to insta o [2003/06/28] ports/53874 ports-bugs /usr/ports/emulators/linux_base isn't wor s [2003/07/08] kern/54211 rwatson Seeing other uid with kern.file sysctl. o [2003/07/08] ports/54230 ports-bugs fsck_ext2fs is broken (unable to perform o [2003/07/13] java/54463 glewis Apparent bug in jdk13 f [2003/07/16] kern/54549 panic on install on Dell 600sc o [2003/07/18] kern/54616 thomas System hangs writing CD-Rs with "atapicam o [2003/07/18] kern/54626 imp Some PC Cards cause NEWCARD to panic on c f [2003/07/22] ports/54753 ports-bugs print/lyx core dump o [2003/07/29] kern/55028 The broken FAT12 filesystem causes system o [2003/07/30] ports/55039 sada Japanese fonts are not visible with mozil o [2003/08/01] ports/55147 openoffice Openoffice build failure o [2003/08/01] ports/55173 ports-bugs VMware3 hangs as normal user o [2003/08/12] kern/55518 5.1-RELEASE on ThinkPad 570 (2644-BAJ) fr a [2003/08/13] kern/55568 DUMP can be used in JAIL o [2003/08/14] kern/55587 joe null dereference in usbdi.c: usb_transfer o [2003/08/25] kern/55975 thomas ATAPICAM- READ_6(0x08) fails for ATAPI ta o [2003/09/01] ports/56268 ports-bugs mail/kavmilter exits with signal 11 o [2003/09/03] kern/56381 panic: page fault in fifo_close() ... f [2003/09/05] java/56499 phantom jdk14 compile error (source 2 sep) o [2003/09/05] bin/56502 initstate() causes memory corruption on L f [2003/09/07] kern/56572 sos ATAng sees zero sized disk... causes div- o [2003/09/07] kern/56583 sos panic at writting DVD-RAM after ATAng o [2003/09/09] kern/56659 ACPI trouble on IBM ThinkPad X31 o [2003/09/14] kern/56873 qa system hangs on boot at Buslogic device o [2003/09/16] i386/56933 i386 kernel panic vm_page_remove o [2003/09/16] i386/56937 i386 system panic during high network load o [2003/09/18] kern/56973 SCSI errors from on-board Adaptec (AIC7xx o [2003/09/20] kern/57036 No media detected by 3c905b-tx on 4.9-rel o [2003/09/20] i386/57043 i386 ar driver with 2 port PCI card locks up w o [2003/09/22] i386/57097 i386 Promise Ultra 100 TX2 causes lockup on SM o [2003/09/24] kern/57156 GEOM-related panic while boot on latest - o [2003/09/28] bin/57315 so Safe.pm security hole in 4.x base system' o [2003/09/28] bin/57321 markm CGI.pm in 4.x base system has a cross-sit o [2003/09/28] ports/57336 mbr FrontPage publishing failure with mod_fro o [2003/09/29] kern/57344 bms KMEM exhaustion from cloned routes o [2003/09/29] kern/57369 sos 4.9-PRERELEASE panic during ata probe o [2003/09/30] i386/57398 i386 Current fails to install on mly(4) based o [2003/09/30] ports/57427 ports-bugs Errors building static tk80 library o [2003/10/01] kern/57453 if_kue hangs boot after warm boot if firm o [2003/10/01] i386/57480 i386 Removing very large files using rm doesn' o [2003/10/02] ports/57514 kde Make appropriate changes to misc/kde-i18n f [2003/10/02] ports/57516 ports-bugs Arabic category koffice-i18n meta-port de o [2003/10/04] ports/57566 znerd Resin cannot start at system boot o [2003/10/05] kern/57603 alex new bktr driver: freeze on SMP machine o [2003/10/05] kern/57606 ATAng: Can't write CD media on 5.1-CURREN f [2003/10/05] kern/57611 bms mlockall(2) related VM-bug o [2003/10/05] i386/57632 i386 Dell PowerEdge 4300 is allergic to FreeBS o [2003/10/07] kern/57730 ipl.ko should be compiled with IPv6 funct o [2003/10/08] ports/57731 perky lang/python port build failure on RELENG_ o [2003/10/08] conf/57733 WorkAroundBrokenAAAA is required in submi o [2003/10/08] kern/57736 IP Filter IPv6 accounting bug o [2003/10/08] bin/57738 [PATCH] ipmon IPv6 packet total size mis- o [2003/10/10] kern/57829 ACPI problems (Battery, Mouse probe) o [2003/10/10] kern/57832 softdep_deallocate_dependencies: dangling o [2003/10/10] ports/57850 ade devel/libtool14 fetch is broken o [2003/10/12] i386/57881 i386 ripping audio CDs causes kernel panic 245 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- s [1996/12/30] kern/2325 quota.user enlarged, no boot on 2.2-BETA o [1997/02/19] kern/2768 ktrace(1) -i dumps corrupted trace data a [1997/04/01] bin/3170 sheldonh vi freaks and dump core if user doesn't e o [1997/05/06] bin/3524 imp rlogin doesn't read $HOSTALIASES for non- o [1997/06/28] misc/3980 peter access via NFS fails during mount-operati o [1997/07/02] kern/4012 peter 2.2-RELEASE/Digital UNIX NFSv3 0 length f f [1997/07/17] kern/4115 peter SunOS NFS file has wrong owner if creator o [1997/07/30] kern/4194 peter kernel pci driver for Digital 21041 Ether o [1997/08/12] kern/4284 paul le0 goes OACTIVE after some time s [1997/10/01] bin/4672 rdist does not do hard links right when t o [1997/10/16] kern/4782 Under certain conditions, several krsh's o [1998/01/27] kern/5587 des session id gets dropped o [1998/02/28] kern/5877 kbyanc sb_cc counts control data as well as data a [1998/04/07] kern/6238 cg Sound-driver patch for MAD16 (OPTi 928,92 a [1998/05/06] bin/6536 peter pppd doesn't restore drainwait for tty s [1998/06/23] bin/7033 gad Same process notified multiple times o [1998/06/24] i386/7057 mdodd 3Com 3C509 locks up, or has >1000ms rtt u o [1998/07/12] i386/7266 yokota PSM detection failure with Linksys consol s [1998/08/10] kern/7556 hm sl_compress_init() will fail if called an o [1998/09/30] gnu/8099 obrien [patch] some bugs in cpio o [1998/11/10] bin/8646 peter Implement rlogind -a option f [1998/11/20] kern/8778 gibbs Buslogic BT948 in 2 boxes upgraded from S f [1998/11/25] bin/8865 dwmalone syslogd hangs with serial console o [1998/12/21] kern/9163 adrian [patch] squid does not join a multicast g s [1999/01/07] bin/9379 pppd does not go through all interfaces l o [1999/01/13] kern/9478 assar support for running a script from kldload s [1999/02/06] kern/9927 gibbs the ahc driver doesn't correctly grok swi o [1999/02/15] kern/10107 interlock situation with exec_map and a p o [1999/03/02] bin/10353 jon ypserv gets segmentation violation o [1999/03/09] bin/10510 Remote cvs botches commits on occassion o [1999/03/16] bin/10633 fenner [patch] tcpslice timezone problem and upd a [1999/03/24] kern/10778 ru "ipforward_rt" is not cleared when routin o [1999/03/30] kern/10870 eivind Kernel panic when writing to write-protec a [1999/04/08] misc/11024 mtm getpwnam(3) uses incorrect #define to lim o [1999/05/03] kern/11462 imp CS network interface driver (for CS89XX b o [1999/05/04] kern/11490 yokota VESA+VM86+Splash == unstable system o [1999/05/05] kern/11507 imp CS89XX (i386/isa/if_cs.c) fails to proper o [1999/05/05] misc/11525 dwmalone [PATCH] Networking patches to increase # o [1999/05/13] kern/11697 tegge Disk failure hangs system o [1999/05/18] i386/11773 yokota mouse works at setup time. Under X it go o [1999/07/20] bin/12727 billf Game patches from NetBSD o [1999/08/14] kern/13141 se Multiple LUN support in NCR driver is bro o [1999/09/10] bin/13691 fenner tcpslice cannot extract over 2GB part of s [1999/09/16] conf/13775 multi-user boot may hang in NIS environme s [1999/09/17] i386/13787 lnc driver isn't really the lnc driver o [1999/09/26] misc/13978 peter a write to last column bug appears since o [1999/09/27] kern/13997 rwatson RLIMIT_NPROC works unadequately for jails s [1999/10/04] i386/14135 doc lpt1 nolonger exists after 3.2-RELEASE o [1999/10/12] kern/14285 NFS client appears to lose data o [1999/10/14] i386/14334 imp AHA-1542A not supported by FreeBSD 3.x (" o [1999/10/26] kern/14549 mdodd 3C509 broken in 3.3 o [1999/10/27] kern/14566 yokota Non-kernel programs have little/no contro a [1999/11/04] kern/14712 iedowse root has access to NFS mounted directorie s [1999/11/12] kern/14848 murray Frame Relay support, corrected a [1999/11/12] misc/14856 billf ftp stalls on FreeBSD 3.3 (CDROM) tested o [1999/11/17] i386/14946 mjacob rmt - remote magtape protocol s [1999/12/14] kern/15478 incorrect utmp/wtmp records update upon c o [1999/12/17] kern/15542 de suddenly stops working o [1999/12/23] misc/15662 markm [PATCH] perl5 Sys::Hostname fails if no P o [1999/12/26] kern/15707 bad trap in mprotect o [2000/01/01] kern/15825 Softupdates gets behind, runs the system o [2000/01/02] i386/15845 imp Driver for RealTek 8029 f [2000/01/03] bin/15877 tobez Perl 5.00503 interpreter crashes with a s o [2000/01/12] kern/16090 mdodd No buffer space available a [2000/01/22] kern/16299 tmm nfs.ko can be unloaded when nfsd is runni f [2000/01/24] ports/16343 reg bsd.port.mk cannot override make.conf. o [2000/02/08] kern/16587 cg Can't record with newpcm & CS4236 (AW35/P o [2000/02/10] kern/16644 Bad comparsion expression in bpf_filter.c o [2000/02/21] conf/16879 tanimura Sound drivers seem to be using shared irq o [2000/02/23] conf/16948 qa Sysinstall/disklabel: bad partition table o [2000/02/25] misc/16991 jhb booting install disk and USB s [2000/03/01] misc/17108 SecureRPC not supported in mount_nfs comm o [2000/03/10] misc/17310 wpaul NIS host name resolving may loop forever o [2000/03/16] kern/17422 bde 4.0-STABLE: top: nlist failed o [2000/03/20] kern/17504 ken Another Micropolis Synchronize Cache Prob f [2000/03/20] misc/17517 mbr 100/10baseT card resets under load s [2000/03/21] conf/17540 NIS host lookups cause NFS mounts to wedg f [2000/03/21] kern/17542 greid random static with GUS PnP o [2000/03/24] misc/17584 groudier fatal SCSI error with a Symbios 53c875 co o [2000/03/28] alpha/17637 billf misconfigured syscons bell causes panic o o [2000/03/29] i386/17662 gibbs cam_xpt.c incorrectly disables tagged que o [2000/03/31] i386/17713 gibbs MAKEDEV and /stand/sysinstall goofups wit o [2000/04/04] i386/17800 bde [PATCH] problem with statclock initializa o [2000/04/12] kern/17961 n_hibma Fatal Trap 12. Page fault while in kernel o [2000/04/14] kern/18012 adrian vnode_free_list corruption, "free vnode i o [2000/04/17] misc/18065 mdodd FREEBSD 4.0 crashes on boot Compaq Prolia f [2000/04/23] i386/18185 gibbs Adaptec 3950U2 errors during boot/probe o [2000/04/24] kern/18200 mdodd 3com 3c509b recognized twice during boot o [2000/05/02] kern/18345 cg sbc / pcm not fully recognizing AWE64 o [2000/05/02] kern/18348 yokota tags o [2000/07/19] kern/20040 msmith Toshiba 2775 hangs after pcib0 driver is o [2000/07/25] misc/20172 byacc 1.9 fails to generate $default tran o [2000/07/27] kern/20234 green panic(): lockmgr: pid 259, not exclusive o [2000/07/29] conf/20282 qa sysinstall does not recover some /etc fil f [2000/07/31] kern/20335 yokota S3Trio64V+ is detected as CGA by syscons p [2000/08/02] bin/20373 Setting breakpoints in shared objects bro o [2000/08/08] ports/20490 tg Termios timeout parameters, VMIN, VTIME, f [2000/08/09] i386/20507 yokota Mouse freezes in 4.0-release after some u o [2000/08/10] misc/20521 mjacob /etc/rmt several problems o [2000/08/10] kern/20523 bde Support for PCI multiport cards for sio d o [2000/08/13] kern/20572 marcel cannot safely remove COMPAT_43 from the k o [2000/08/14] kern/20609 panic: vm_fault: fault on nofault entry, o [2000/08/15] bin/20633 fdisk doesn't handle LBA correctly f [2000/08/17] kern/20689 groudier Newbusified version of ncr driver does no o [2000/08/18] kern/20708 imp Adaptec 1542 ISA SCSI Controller not dete f [2000/08/22] bin/20779 assar junk pointer error causes kpasswd to fail o [2000/08/26] misc/20861 threads libc_r does not honor socket timeouts o [2000/08/28] gnu/20912 mp gdb does not recognise old executables. o [2000/08/30] bin/20952 des ftpd doesn't honor account expiration tim o [2000/08/31] kern/20958 mdodd ep0 lockup with ifconfig showing OACTIVE o [2000/09/07] misc/21089 vi silently corrupt open file on SIGINT w o [2000/09/11] kern/21209 groudier scsi ncr driver installs instead of scsi o [2000/09/14] gnu/21260 buffer overrun in uux o [2000/09/14] ports/21264 markm tn3270 port receives segmentation fault o [2000/09/14] gnu/21276 kan libI77 is unable to handle files >2Gbytes a [2000/09/15] kern/21304 mbr dc0 watchdog timeouts on NetGear FA310TX s [2000/09/18] misc/21384 greid pcm driver has static in recorded audio o [2000/09/19] misc/21406 freebsd's bootinst or booteasy overwrites p [2000/09/20] gnu/21433 kan g++ optimiser produces bad code on right o [2000/09/21] kern/21461 imp ISA PnP resource allocator problem o [2000/09/21] kern/21463 emulation Linux compatability mode should not allow f [2000/09/27] bin/21603 green Can't change user passwords on 4.1.1-STAB o [2000/09/28] kern/21642 Compaq Netelligent 10/100 card (TI Thunde o [2000/10/02] docs/21708 jlemon kqueue/kevent man pages isn't specific ab o [2000/10/02] ports/21714 sobomax audio problem with nil o [2000/10/05] kern/21771 murray Fix for sppp and Cronyx drivers update a [2000/10/06] kern/21808 [patches] msdosfs incorrectly handles vno o [2000/10/15] misc/21998 green ident only for outgoing connections o [2000/10/19] kern/22142 cjc securelevel does not affect mount o [2000/10/25] bin/22291 getcwd() fails on recently-modified NFS-m o [2000/10/30] kern/22417 gibbs advansys wide scsi driver does not suppor o [2000/11/05] bin/22614 billf pam_ssh dumps core o [2000/11/13] kern/22826 emulation Memory limits have no effect in linux com o [2000/11/14] bin/22846 Routed does not reflect preference of Int o [2000/11/15] kern/22862 ncr probe fails with CACHE TEST FAILED: ? o [2000/11/18] kern/22943 emulation Problem with linux emulation o [2000/11/18] i386/22944 isa_dmainit fails on machines with 512MB a [2000/11/18] kern/22947 jon IBM 10/100 EtherJet Cardbus (Xircom X3201 o [2000/11/25] bin/23098 ambrisko If installing on a serial console, enable o [2000/12/08] kern/23400 rwatson IPsec transport mode precludes filtering o [2000/12/12] kern/23515 get error in messages system log "Dec 11 o [2000/12/13] kern/23535 imp 4.x kernels seem to no longer support Ada o [2000/12/14] misc/23561 emulation Linux compatibility mode does not support o [2000/12/26] bin/23866 dwmalone patch for pointing out current date o [2001/01/02] kern/24032 markm rndcontrol and pccardd use of interupt ha o [2001/01/03] kern/24059 n_hibma USB support broken in SMP kernel o [2001/01/04] kern/24070 n_hibma uhci USB driver disables port on reatachi 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/06] docs/24125 wes connect(2) can yield EWOULDBLOCK/EAGAIN o [2001/01/12] bin/24271 dumpon should check its argument more o [2001/01/16] misc/24391 cannot kill amd after interface disappear o [2001/01/19] bin/24461 pirzyk Being able to increase the YP timeout wit o [2001/01/19] bin/24472 threads libc_r does not honor SO_SNDTIMEO/SO_RCVT s [2001/01/23] misc/24590 standards timezone function not compatible witn Sin o [2001/01/25] kern/24629 ng_socket failes to declare connected dat o [2001/01/25] bin/24632 threads libc_r delicate deviation from libc in ha o [2001/01/25] misc/24641 threads pthread_rwlock_rdlock can deadlock o [2001/02/09] kern/24982 iedowse stack gap usage o [2001/02/10] i386/24997 /boot/loader cannot handle extended dos p o [2001/02/11] ports/25007 max telnetx problem on 4.x o [2001/02/12] kern/25038 murray dhcp client could not set hostname on boo o [2001/02/13] kern/25067 adrian able to mount a pathname > 80 char. but u o [2001/02/14] kern/25093 4.2-STABLE does not recognize PCNet-ISA+ o [2001/02/19] kern/25213 peter Bus abstraction interface doesn't allow p o [2001/02/21] kern/25248 bde sys/user.h needs sys/param.h, but doesn't f [2001/02/21] kern/25261 gibbs ahc0 no active SCB errors when booting of o [2001/02/21] ports/25272 rse Using eperl as cgi/nph binary executor ca s [2001/02/23] bin/25337 rwatson dmesg -a should be restricted o [2001/02/28] bin/25461 qa sysinstall's fdisk and disklabel don't wo o [2001/03/03] kern/25511 ioctl(fd, FIONREAD, &c) on a FIFO (not PI o [2001/03/05] bin/25542 standards /bin/sh: null char in quoted string o [2001/03/13] kern/25781 Statclocks cannot be disables on ServerWo o [2001/03/15] bin/25826 nfsd -t -h adr1 -h adr2 doesn't work o [2001/03/16] misc/25851 qa Security hole in anonymous FTP setup scri o [2001/03/17] bin/25886 cgetset(3) doesn't get cleared when switc o [2001/03/19] bin/25929 qa Can't use MAKEDEV in fixit mount o [2001/03/22] kern/25986 silby Socket would hang at LAST_ACK forever. o [2001/03/22] misc/26002 n_hibma Poor read/write performance on uhci USB c o [2001/03/22] kern/26013 joe Linksys (rev 3) USB 100TX NIC causes infi o [2001/03/26] bin/26093 markm pam_unix rejects authenticating accounts o [2001/03/27] kern/26142 Unlink fails on NFS mounted filesystem o [2001/03/28] kern/26171 emulation not work Linux-emulator, but hi is work i o [2001/03/31] i386/26261 silo overflow problem in sio driver o [2001/04/02] bin/26307 threads libc_r aborts when using the KDE media pl o [2001/04/03] kern/26309 PPPoE client panics in kernel - fxp probl o [2001/04/03] misc/26320 alfred mountd breaks IRIX automounter a [2001/04/05] gnu/26362 "cvs server" doesn't honour the global -- o [2001/04/08] kern/26430 cg -CURRENT panics on cat /dev/dsp or cat /d o [2001/04/10] misc/26486 setnetgrent hangs when netgroup contains o [2001/04/12] kern/26506 sendto() syscall returns EINVAL in jail e o [2001/04/25] bin/26842 dd dump with h flag takes a very long time a [2001/04/25] bin/26869 sheldonh vi(1) crashes in viewing a file with long o [2001/04/27] misc/26897 qa 4.3R sysinstall fails to create swap part a [2001/05/10] kern/27262 process won't be terminated after CPUTIME o [2001/05/20] kern/27474 Interactive use of user PPP and ipfilter p [2001/05/21] kern/27522 des linprocfs:/proc/stat does not handle SMP s [2001/05/22] kern/27543 pirzyk /proc/cpuinfo does not handle SMP hosts o [2001/05/23] docs/27605 doc Cross-document references () o [2001/05/27] kern/27694 cg Panic in csa(4) f [2001/05/29] i386/27729 qa the ls120 device "afd" does not show up u a [2001/06/05] misc/27893 sos can't burn audio cds on LG CD-RW CED-8083 o [2001/06/05] misc/27896 Error in /etc/exports invalidates entire o [2001/06/09] kern/27995 src/sys/pci if_pcn.c revision 1.21 resp. o [2001/06/12] misc/28095 [PATCH] pax may descend into directories o [2001/06/12] ports/28102 ports-bugs Recent changes to 4.3-STABLE break arla-0 o [2001/06/14] ports/28155 portmgr DESTDIR is used incorrectly in bsd.port.m o [2001/06/15] kern/28173 Problem with Touchpad on Inspiron 5000e o [2001/06/16] bin/28221 eric dialog(1) segfaults (due to the bug in li o [2001/06/17] bin/28223 su doesn't look at login.conf all the tim o [2001/06/17] bin/28224 yar ftpd doesn't honor invalid shelll in logi o [2001/06/20] bin/28311 des ftpd and sshd do not honor expired pw ent o [2001/06/24] ports/28398 ports-bugs ja-dvips cannot find tex.pro p [2001/06/25] kern/28417 bms arplookup uses potentially unprotected st o [2001/06/26] bin/28424 mtree fails to report directory hierarchy o [2001/06/29] misc/28508 problems with backup to Tandberg SLR40 st o [2001/07/04] kern/28692 cg ICH sound driver hangs kernel o [2001/07/06] kern/28768 The system doesn't get connects on one of o [2001/07/07] bin/28798 mikeh mail(1) with a pager (more) requires fg/C o [2001/07/07] i386/28802 joe 3com Performance Pro modem conflicts with o [2001/07/09] kern/28840 gibbs Possible interrupt masking trouble in sys o [2001/07/09] bin/28852 cracauer behavior of /bin/sh with -e option looks o [2001/07/11] ports/28889 lioux qpopper-4.0.3 error: Insufficient room to o [2001/07/12] i386/28928 wpaul dual starfire nic doesn't seem to work (a o [2001/07/16] bin/29026 pb traceroute -s option allows any IP addres o [2001/07/18] i386/29067 sound Yamaha OPL3Sa2 pcm/pnp bug o [2001/07/19] ports/29098 jedgar p5-Mysql port references wrong directory f [2001/07/23] kern/29170 ru ARP request fails after "bad gateway valu o [2001/07/26] bin/29253 ru natd forgets about udp connections o [2001/08/01] i386/29375 qa the disk editor used by /stand/sysinstall o [2001/08/01] i386/29377 imp pccard hangs during probe when returning o [2001/08/03] kern/29421 Update a file with mmap will cause mtime/ o [2001/08/04] kern/29465 sound Can't probe NeoMagic 256AX audio chip. f [2001/08/11] kern/29626 ifconfig causes kernel panic in 4.4-PRERE o [2001/08/13] kern/29686 jlemon kevent EV_ADD EVFILT_WRITE does the wrong o [2001/08/14] ports/29704 bp Imagemagick Identify utility crashes when o [2001/08/15] bin/29725 dwmalone [PATCH] Fixed segmentation fault in simpl o [2001/08/16] docs/29767 incorrect description of 'standart-supfil o [2001/08/17] bin/29808 ypserv dumps core in yp_find_db o [2001/08/17] i386/29809 imp pb Xircom Eth Card with Freebsd 4.4RC1 : o [2001/08/19] i386/29882 peter stable 4.3 kernel compile fails for multi o [2001/08/20] bin/29903 ypbind loses connection to NIS master and o [2001/08/23] kern/29983 imp Problem with "TI PCI-1250 PCI-CardBus Bri o [2001/08/24] kern/30049 imp [f: 4.4] Bad iomem assigned in some cases o [2001/08/27] kern/30125 btx/bootloader dumps very often if serial o [2001/08/30] kern/30223 Using /usr/share/examples/kld/cdev, testc o [2001/08/30] kern/30230 md cannot o [2001/08/31] bin/30235 /usr/sbin/portmap cannot listen to localh o [2001/08/31] kern/30241 gibbs System crash w/err: AHC0; AHC_INTR - refe o [2001/09/02] i386/30276 CPUTYPE=486 built on a CPUTYPE=p3 WORLD b o [2001/09/04] bin/30310 top does not show CPU usage o [2001/09/06] conf/30399 Have Fortran use the CPUTYPE variable o [2001/09/10] kern/30482 calcru calls printf while holding a spin o [2001/09/10] alpha/30486 alpha AlphaServer DS10 floppy access is broken o [2001/09/10] alpha/30487 alpha Floppy access on AlphaServer DS20 solid l o [2001/09/10] ports/30490 sobomax yacc in world does NOT fully respect TMPD o [2001/09/10] kern/30502 joe panics if logitech joystick usb attached o [2001/09/15] misc/30590 /etc/hosts.equiv and ~/.rhosts interactio o [2001/09/15] kern/30592 roam [PATCH] panic: static sysctl oid too high o [2001/09/17] kern/30630 fenner Failure to check for existence of interfa o [2001/09/21] kern/30712 fatal kernel trap during ufs_rename o [2001/09/25] kern/30820 sound PCM sound fails o [2001/09/25] ports/30823 ports-bugs New port: KinterbasDB, Python module to a o [2001/09/26] bin/30837 qa Sysinstall doesn't set the schg flag on t o [2001/09/30] kern/30948 ls'ing mounted brand new floppy locks up o [2001/10/01] kern/30958 QUOTA with 0 bytes in quota.user hangs up f [2001/10/01] bin/30966 fenner TCPdump repeating on Radius accounting pa o [2001/10/01] kern/30971 peter NFS client modification time resolution i o [2001/10/02] ports/30993 iedowse xxgdb cannot open source file o [2001/10/04] bin/31045 routed dumps core s [2001/10/04] kern/31047 Linux programs do not dump core in linux o [2001/10/07] kern/31102 wpaul lge + Pentium III data transmission probl o [2001/10/11] ports/31216 znerd New port: devel/plist-builder o [2001/10/18] misc/31363 qa sysinstall "partition editor" silently co o [2001/10/21] kern/31398 cg newpcm does not play back the tail of sou o [2001/10/26] ports/31511 obrien g++30 produces binaries which SIGBUS when o [2001/10/30] conf/31631 "MAC address" can't be acquired properly. o [2001/10/31] kern/31659 n_hibma USB controller driver will die after some o [2001/10/31] bin/31661 threads pthread_kill signal handler doesn't get s o [2001/11/01] bin/31692 2872-or-less-byte ftp binary transfer fro o [2001/11/03] kern/31746 failed connect(2) seems to cause problems f [2001/11/05] kern/31768 darrenr Use of fastroute in IPFilter reboots the o [2001/11/05] i386/31771 brian PPP compares CHAP81 response case sensiti o [2001/11/05] kern/31790 problem with NFS and jail() o [2001/11/07] ports/31819 jmz ports/ispell install doesn't work o [2001/11/07] bin/31835 mbr dhclient doesn't close FD's before spawni a [2001/11/07] bin/31837 jhb sysinstall change mountpoint s [2001/11/09] ports/31893 des gnats-3.113.1 conflicts with /usr/bin/sen o [2001/11/12] kern/31940 nge gigabit adapter link reset and slow t o [2001/11/14] kern/31979 Setup and boot locks Compaq Armada E500 l f [2001/11/17] java/32063 znerd patch for /usr/ports/java/linux-jdk about o [2001/11/17] bin/32072 setuid w/o immutable flag o [2001/11/18] kern/32098 semctl() does not propagate permissions o [2001/11/19] kern/32118 mbr 21143 with dc driver will not select 10ba o [2001/11/19] ports/32121 anholt xf86cfg 4.1.0 writes bad "Chipset" value o [2001/11/20] kern/32124 imp Cannot set 128 bit wep key on prism2 (wi0 o [2001/11/22] bin/32205 brian PPP login fails in LCP negotiation on opt o [2001/11/23] kern/32226 time of day clock runs fast (approx twice o [2001/11/23] ports/32234 tobez Perl ports not $LOCALBASE clean o [2001/11/26] bin/32295 threads pthread dont dequeue signals o [2001/11/27] kern/32338 Network to disk write performance low und o [2001/11/28] kern/32353 if kern.maxproc > 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 peter NFS directory removal problems manifested f [2001/12/10] bin/32686 wosch locate command dumps a core file with bro o [2001/12/11] ports/32700 ports-bugs net/arla: inode changes for large o [2001/12/11] kern/32716 joe system hangs when running vid (usb webcam o [2001/12/11] bin/32717 brian ppp(8) change mss to wrong size f [2001/12/12] bin/32791 ru FreeBSD's man(1) utility vulnerable to ol o [2001/12/13] kern/32797 Problem with IPX and netgraph(4) o [2001/12/13] kern/32809 yet another panic while syncing disks aft f [2001/12/21] kern/33074 joe USB printer support does not detect print o [2001/12/21] ports/33080 ume grkrellmvolume interferes with the abilit o [2001/12/22] kern/33085 jlemon Samba's NMBD cannot find alias interface o [2001/12/24] kern/33138 pnp problem in 4.3, 4.4, 4.5 o [2001/12/26] kern/33201 net/net_osdep.c:if_name is broken f [2001/12/26] misc/33213 ume rarpd fails to init IPv6 enabled interfac o [2001/12/30] kern/33344 memory leak in device resource config loa o [2001/12/30] misc/33370 qa Post configuration issue o [2002/01/02] kern/33464 soft update inconsistencies after system o [2002/01/03] bin/33515 amd incorrectly handles multi-homed nfs s o [2002/01/04] kern/33532 sound Playing audio on some soundcards with pcm o [2002/01/04] kern/33535 invalid kernel diagnostic while writing d f [2002/01/04] gnu/33551 cvs chokes on OpenBSD repositories f [2002/01/07] kern/33653 DSL PPPoE connection error on 4.5-PRERELE o [2002/01/07] misc/33672 sheldonh telnetd and mount_mfs signal handlers cal o [2002/01/09] kern/33738 argv == NULL is not handled correctly by o [2002/01/13] kern/33833 luigi Correct kernel config for 4.4-RELEASE is o [2002/01/13] kern/33839 joe usb0: host controller halted (involving A o [2002/01/15] ports/33927 ports-bugs ja-dvipdfm port requires texmf/dvips/base o [2002/01/15] docs/33929 doc Section 15.15 of the FreeBSD Porter's Han o [2002/01/16] kern/33940 quotactl allows compromise gid-quotas o [2002/01/16] kern/33974 sound Can not record anything with emu10k1 on 4 o [2002/01/17] kern/34017 The siginfo_t passed to the signal handli o [2002/01/18] kern/34020 programs fail that poll(2) on fifos o [2002/01/18] bin/34030 miibus.ko can be loaded into the kernel w s [2002/01/20] i386/34092 reboot hangs the system (IBM PC Server 31 o [2002/01/21] gnu/34128 sdiff "e" doesn't work with some editors o [2002/01/23] kern/34205 njl detect USB memory device, But can not use o [2002/01/24] gnu/34246 joe CVS doesn't rebuild CVSROOT/options o [2002/01/25] i386/34267 semenu FreeBSD hangs and reboots when overloaded o [2002/01/25] bin/34269 fenner tcpdump -v incorectly identifies packets o [2002/01/25] misc/34270 man -k could be used to execute any comma f [2002/01/26] kern/34306 gibbs 4.5-RC panics on boot with half-supported o [2002/02/01] i386/34536 threads accept() blocks other threads o [2002/02/01] kern/34544 joe Kernel crash on fclose() of /dev/kbd1 whe o [2002/02/02] misc/34568 turning printer on and off hangs the comp o [2002/02/03] kern/34582 wpaul Support for D-Link DFE-690TXD Cardbus PC o [2002/02/04] kern/34619 TCP - FINs with different sequence number p [2002/02/06] bin/34682 fenner scanf/sscanf doesn't understand %lld o [2002/02/08] ports/34730 lioux new port qmail-scanner - a virus-scanning o [2002/02/09] kern/34765 darrenr Unloading the ipl.ko module will panic th o [2002/02/10] kern/34801 darrenr TCP window size bug (afflicting IP Filter o [2002/02/10] bin/34811 sh: "jobs" is not pipeable o [2002/02/11] misc/34842 VmWare port + NIS causes "broadcast storm o [2002/02/17] kern/35061 joe After printing to HP Deskjet 656c USB pri o [2002/02/19] misc/35116 keyinfo reports root's keyinfo o [2002/02/20] kern/35136 luigi VLAN & bridging & MTU o [2002/02/22] bin/35214 obrien dump program hangs while exiting o [2002/02/25] bin/35307 standards standard include files are not standard c o [2002/02/25] misc/35310 des SSHing with expired password does not bri o [2002/02/25] java/35320 java linux-jdk-1.4 JVM fails when running Tomc o [2002/02/26] misc/35350 Can't boot on ASUS TXP4 o [2002/02/26] kern/35351 sound emu10k1: no posibility to record sound. K o [2002/02/26] ports/35353 green cfs strips eighth bit of file name on "ou o [2002/02/27] 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/02/28] kern/35442 Problem transmitting runts in if_sis driv o [2002/03/03] misc/35506 innetgr() doesn't match wildcard fields i o [2002/03/03] kern/35511 sis(4) multicast filtering doesn't pass s o [2002/03/07] bin/35622 threads sigaltstack is missing in libc_r o [2002/03/07] ports/35631 archie SKIP and IPSEC together cause kernel pani o [2002/03/07] kern/35645 Layer 2 switching using default router of o [2002/03/07] misc/35662 send-pr and/or web pr query system screws o [2002/03/08] kern/35669 NFSROOT breaks without a gateway s [2002/03/08] docs/35678 doc docproj Makefiles for web are broken for f [2002/03/08] kern/35691 mbr Realtek NIC driver does not work with Rea o [2002/03/09] kern/35703 /proc/curproc/file returns unknown o [2002/03/10] kern/35756 joe USB reattach of Sony DSC-S75 fails, USB s o [2002/03/11] misc/35774 [SECURITY] Suboptimal auditing possibilit o [2002/03/12] bin/35842 rm -f nonexistent file successful but rm o [2002/03/13] bin/35843 maxim [PATCH] MD5 auth implemented in routed is o [2002/03/13] gnu/35878 /usr/bin/strip resets ABI type to FreeBSD o [2002/03/13] conf/35880 rc files could be a bit more jail friendl p [2002/03/15] bin/35921 jon Wrong path reduction of dot-dot paths in o [2002/03/15] bin/35925 fixit floppy cannot be mounted on USB dri a [2002/03/16] kern/35985 re swap double mount o [2002/03/16] kern/35986 Wrong bpf-header preceading packet when u o [2002/03/17] i386/36003 Cyclades Cyclom YeP causes panics on Free p [2002/03/17] kern/36038 bp sendfile(2) on smbfs fails, exposes kerne o [2002/03/19] misc/36086 trhodes Kerberos Problem/Handbook wrong/Followup 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 poll() behaves erratic on BPF file descri f [2002/03/22] kern/36220 panic: sched_sync: fsync failded vp 0xcf4 o [2002/03/28] kern/36415 roger the bktr driver incorrectly handles the s a [2002/03/28] i386/36451 roger (sys/dev/bktr) Japan IF frequency is inco o [2002/03/29] kern/36482 Multiport starfire card (sf/ukphy) doesn' o [2002/03/29] conf/36508 qa installation floppy bug (See description) o [2002/03/29] i386/36517 sis driver can't map ports/memory for Net o [2002/03/31] kern/36566 System reboot with dead smb mount and umo o [2002/04/05] kern/36784 Can't fcntl(fd, F_SETFL, ...) on a pseudo o [2002/04/07] ports/36846 ports-bugs fxtv 1.03 freezes the system when $LANG=d o [2002/04/07] bin/36867 games/fortune: add FORTUNE_PATH env var, o [2002/04/08] ports/36879 mbr emulators/vmware2 freezes and reboots sys o [2002/04/08] conf/36911 qa installation floppies miss autoload file o [2002/04/09] bin/36926 send-pr destroys PR if emacs interrupt ch o [2002/04/09] i386/36943 reboot hangs on Tyan Thunder K7 with SMP o [2002/04/11] misc/36999 2 Default Routes Created o [2002/04/11] ports/37006 dirk cdrecord does not work with Teac USB CDRW 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 p [2002/04/16] bin/37159 ru more then one natd use running use the sa o [2002/04/18] i386/37240 EtherExpress16 not probed at boot o [2002/04/19] kern/37261 luigi kernel is not linking without "device eth o [2002/04/19] ports/37262 njl gphoto2 fails to find supported USB digit o [2002/04/21] kern/37326 roger smbus/bktr crash when omitting "device ii o [2002/04/22] bin/37343 portmap TCP binds strangeness o [2002/04/22] ports/37361 ports-bugs installing gcc30 port breaks devel/gettex o [2002/04/23] misc/37399 rsh does not work from Win 2k to freeBSD o [2002/04/24] kern/37436 accept dead loop when out of file descrip o [2002/04/24] kern/37441 ISA PNP parse problem o [2002/04/24] kern/37443 incorrect move pointer in environment str o [2002/04/26] i386/37482 sound Weird behaviour under relatively slow loa o [2002/04/27] kern/37502 NFS client ignores mtime.tv_usec for open o [2002/04/28] i386/37523 lock for bios16 call and vm86call o [2002/04/29] misc/37585 qa System hangs on install at probing device o [2002/04/30] misc/37586 qa newfs failing in 5.0-DP1 initial install o [2002/04/30] kern/37589 imp Kernel panics upon resume from zzz on my o [2002/05/01] kern/37635 joe USB ufm driver using major 200, although a [2002/05/01] kern/37656 robert Linux emulator 'Invalid Argument' error i o [2002/05/03] misc/37710 murray LAN interface in wrong state after attemp f [2002/05/05] misc/37775 netsmb/smb_subr.c needs opt_global.h in S o [2002/05/08] misc/37863 Configuration of X corrupts screen, and i o [2002/05/09] kern/37889 kernel panic when writing to a FAT32 part f [2002/05/12] kern/37998 panic: vinvalbuf: dirty bufs o [2002/05/12] kern/38011 imp Fatal Trap 12 using Xircom CE2 in IBM 760 a [2002/05/12] java/38018 znerd ports/www/jakarta-tomcat4: make passing o a [2002/05/12] java/38020 znerd ports/www/jakarta-tomcat4: stop tomcat vi o [2002/05/14] kern/38095 bp vlan not supported with fxp f [2002/05/16] kern/38166 gad ipv6_gateway_enable="YES" breaks lpd o [2002/05/17] ports/38212 knu XFree86-4 and portupgrade get dependencie f [2002/05/18] misc/38241 mount_cd9660 doesn't mount/read multisess f [2002/05/23] ports/38460 ports-bugs core dumps with print/ghostscript-gnu o [2002/05/24] kern/38495 soreceive fails to maintain invariant on 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 o [2002/05/25] kern/38554 changing interface ipaddress doesn't seem f [2002/05/25] kern/38562 bridge_cfg=*dc0* ; kldload if_dc => panic o [2002/05/26] misc/38582 qa sysinstall sets newfs flag after changing f [2002/05/27] ports/38602 ports-bugs x11-wm/tvtwm is confused about PREFIX o [2002/05/27] bin/38609 qa Sysinstall should know the size of the va o [2002/05/27] kern/38632 imp Loss of connection with wi cards o [2002/05/30] i386/38731 Freebsd doesn't support ( pdc20276 / Raid f [2002/05/30] kern/38736 joe kernel panic during memory stick removal o [2002/05/30] kern/38752 rn_walktree_from not halting at the right o [2002/05/31] bin/38765 peter CVS Daemon Vulnerability in 1.11.1p1 o [2002/06/01] kern/38794 sound ESS Solo driver truncates output o [2002/06/01] kern/38795 sound kldunload of snd_ess, snd_sb16, snd_sb8 p f [2002/06/02] misc/38835 qa sysinstall always installs crypto o [2002/06/04] kern/38894 Dell PowerEdge 4600 PCI Bus scan problems o [2002/06/04] kern/38906 calcru: negative time of 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/10] misc/39104 sos The disc in your drive looks more like an o [2002/06/11] ports/39148 cy screen consumes 100% when run o [2002/06/11] ports/39149 ume ports/mail/cyrus-imapd: cyradm causes per o [2002/06/11] ports/39151 trevor acroread5 install fails o [2002/06/11] kern/39185 core dump binary in single user mode o [2002/06/13] kern/39233 NonConforming IPsec implementation from F o [2002/06/13] kern/39252 Syscons doesn't support 8-bit control cha o [2002/06/13] kern/39260 sound pcm0 locks on boot, Compaq Presario 1920 o [2002/06/15] kern/39329 '..' at mountpoint is subject to the perm o [2002/06/15] kern/39331 dwmalone namei cache unreliable for __getcwd() o [2002/06/16] kern/39388 groudier ncr/sym drivers fail with 53c810 and more o [2002/06/18] ports/39479 cy Binary version of screen-3.9.11_1 in port o [2002/06/19] i386/39507 FreeBSD can't boot: BTX halted problem s [2002/06/19] i386/39536 FreeBSD default bootloader does not load o [2002/06/20] i386/39604 Install failure on HP Pavilion 310n - Una o [2002/06/21] i386/39633 Errors reported in schistory.c in syscons s [2002/06/22] ports/39660 portmgr add ${PKGNAMEPREFIX} to (DOCS|EXAMPLES)DI o [2002/06/23] ports/39760 jedgar ports/math/rcalc is too old and contains o [2002/06/24] conf/39763 Can't get a correct MAC address for MELCO o [2002/06/24] ports/39788 mharo building proftpd in ports ignores WITH_MY o [2002/06/24] i386/39802 iBCS2 emulation fork process core dumps f [2002/06/24] kern/39805 joe 4.6R install panics with umass0 device co o [2002/06/25] bin/39849 /sbin/restore fails to overwrite files wi f [2002/06/26] conf/39887 matusita /stand/sysinstall doesn't set sendmail_en o [2002/06/26] bin/39896 netmask 0xffffff00 no longer works in /et o [2002/06/26] bin/39906 johan cleaning sbin/newfs code from warnings f [2002/06/27] bin/39918 brian Userland PPP - CHAP and PAP are swaped o [2002/06/27] bin/39922 threads [PATCH?] Threaded applications executed w o [2002/06/27] kern/39928 imp wi0 timeouts and hangs the system while s o [2002/06/27] kern/39937 ipstealth issue o [2002/06/27] bin/39940 /usr/sbin/periodic sends thousands of ema o [2002/06/29] misc/40001 grog vinum showing -2 drives after removing se o [2002/06/30] kern/40044 SMP kernel fails to boot on DELL 610 o [2002/07/01] i386/40073 imp Xircom Realport Ether doesn't work in Tos o [2002/07/02] kern/40122 sound Device pcm stopps booting Kernel 4.6 o [2002/07/02] i386/40132 Enabling the joystick interface on es137x o [2002/07/03] kern/40139 darrenr ipfilter issue o [2002/07/03] ports/40167 bp mars_nwe does not report disk full errors o [2002/07/04] misc/40206 Can not assign alias to any POINTOPOINT i o [2002/07/05] bin/40219 [apm] apm breaks removable media o [2002/07/05] bin/40227 CVS client doesn't upload new files creat o [2002/07/06] misc/40260 qa sysinstall hangs up detecting devices (No f [2002/07/06] i386/40274 "fxp: device timeout" errors during heavy 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/09] kern/40394 if_tap driver hard coded permission check a [2002/07/11] bin/40466 pax may not handle correctly some tar arc o [2002/07/11] bin/40471 des chpass(1) -a option broken in CURRENT o [2002/07/14] kern/40558 UDP6 sockets do not receive responses of o [2002/07/14] kern/40561 jlemon TTCP does not work with IPv6 o [2002/07/14] kern/40574 sound NeoMagic soundcard detection on Gateway S o [2002/07/15] ports/40610 jmz Latex build "cannot find Hyphenation patt a [2002/07/16] bin/40654 jhb patch: sysinstall: infinite loop a [2002/07/16] bin/40655 jhb patch: sysinstall assigns partition a to o [2002/07/16] bin/40656 qa patch: sysinstall: scripted deletion of s o [2002/07/16] ports/40672 sobomax wsoundserver defaults to using esound and o [2002/07/19] kern/40766 imp NEWCARD freeses system while card inserti o [2002/07/19] kern/40787 page fault while in kernel mode o [2002/07/19] kern/40792 joe signals lead to data loss on device ugen o [2002/07/22] ports/40886 ache pkpkg_delete apache-1.3.26_3 does not w o [2002/07/22] kern/40895 wierd kernel / device driver bug o [2002/07/23] i386/40945 FreeBSD can not support IBM ServeRAID4Lx o [2002/07/25] i386/40972 Stallion Multiport Serial Driver . o [2002/07/26] kern/41007 overfull traffic on third and fourth adap o [2002/07/29] kern/41125 adrian squid-2.4.STABLE7 loop on poll() - SMP ke o [2002/07/29] ports/41128 greid recv_addr init wrong and 512 byte udp pac o [2002/07/29] i386/41138 silby vr0 locks up on one hub, OK on another o [2002/07/31] kern/41216 Get "NFS append race" error o [2002/08/01] misc/41242 periodic scripts make unwarrented assumpt o [2002/08/03] bin/41297 mp {t,}csh backquote/braces expansion bug f [2002/08/04] bin/41327 jon skey decrementing but not authorizing wit o [2002/08/04] misc/41331 threads Pthread library open sets O_NONBLOCK flag o [2002/08/07] bin/41410 /bin/sh bug on expanding $? in here-docum o [2002/08/07] bin/41435 mbr dhclient writes lease file that it can't o [2002/08/11] i386/41569 silo overflow o [2002/08/13] kern/41632 luigi bridging when one interface has no carrie o [2002/08/16] kern/41720 if_nge_load=YES make system not bootable o [2002/08/16] kern/41740 grog vinum issues: page fault while rebuilding o [2002/08/18] i386/41757 qa sysinstall 4.6.x unstable o [2002/08/19] i386/41776 mrouted doesn't route multicast packets o [2002/08/19] bin/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] kern/41850 qa sysinstall fails to create root filesyste o [2002/08/22] kern/41881 julian ng_device was not MFCed for 2 months o [2002/08/22] bin/41908 make: $? not always set o [2002/08/23] i386/41930 declaration clash for ffs() and ${CXX} o [2002/08/23] conf/41935 PPPoE problem with 3com device - 3c12 o [2002/08/24] kern/41966 audio/play: sblive, can cause "Device bu 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: fix build script for 4.6-STABLE o [2002/08/28] kern/42120 bms arp(8) fails due to ioctl SIOCGIFNETMASK p [2002/08/30] kern/42216 rwatson simultaneous multiple server network fail o [2002/09/02] kern/42352 Impossible to set RCV timeout on a socket p [2002/09/02] bin/42356 uudecode -o doesn't work if piped o [2002/09/04] bin/42407 ppp(8) IPV6CP fails o [2002/09/05] kern/42457 Hack to allow Linux Matlab to exit o [2002/09/06] bin/42484 jmallett ps: uprocp documented but not implemented o [2002/09/07] ports/42516 openoffice OpenOffice.org generate wrong WM_LOCALE_N o [2002/09/07] i386/42539 Fatal Trap 12 resulting from Conner Perip o [2002/09/08] kern/42564 sound record bug with emu10k1 driver o [2002/09/08] kern/42578 Using PCI serial cards (puc) in SMP machi o [2002/09/09] kern/42621 imp Dell Inspiron 5000e hangs when using Orin f [2002/09/10] kern/42629 panic in nfs_get o [2002/09/10] kern/42638 sound CS4326/4327 (MSS) buggy output playing 11 f [2002/09/10] ports/42647 ports-bugs port misc/pybliographger does not configu o [2002/09/11] kern/42652 error deleting r/o (by windows) files on o [2002/09/11] bin/42658 markm recompile /usr/src/libexec/telnetd and lo o [2002/09/12] ports/42713 wjv biology/emboss : problems building EMBASS o [2002/09/13] gnu/42726 cvs cvs -R pserver & val-tags: story continue o [2002/09/13] kern/42727 [PATCH] Wrong MTU in need-frag ICMP using o [2002/09/13] ports/42729 obrien bash manpage has /bin/bash as location fo o [2002/09/13] misc/42748 joe USB on hardware list does not work o [2002/09/13] i386/42750 Fdisk makes no difference between FAT32, o [2002/09/13] docs/42762 doc ppp.8 has no description of $env and ~use a [2002/09/14] ports/42777 openoffice OpenOffice install fails o [2002/09/14] ports/42783 steve open-motif port doesn't compile o [2002/09/14] i386/42784 imp pcmcia 16bit network card removal locks a o [2002/09/15] misc/42801 FreeBSD freezes when opening cuaa0 with a o [2002/09/15] i386/42806 VLANs do not work with fxp + catalyst as f [2002/09/16] misc/42849 MBR is scribbled on by by freebsd o [2002/09/20] kern/42983 imp wi0 sporadically freezes the system for 1 o [2002/09/20] kern/43151 Panic 20 seconds after resume o [2002/09/21] kern/43175 joe uvisor.c table error o [2002/09/21] i386/43222 sos setrootbyname panic in 4.6 o [2002/09/21] bin/43223 pirzyk getnetby{name|addr} broken for DNS lookup o [2002/09/23] ports/43301 steve mwm confused by mouse events following up f [2002/09/23] kern/43314 kernel panic "clist reservation botch" o [2002/09/24] bin/43337 des fetch: -s fails if -4 or possibly other o o [2002/09/25] kern/43352 luigi ipfw aborts processing file/pipe when del f [2002/09/25] i386/43366 joe Cannot format media in USB floppy devices o [2002/09/28] www/43454 www Packages hard to find, often missing o [2002/09/28] kern/43462 joe copying files from olympus C-4040 digital o [2002/09/29] bin/43501 getpwnam, getpwuid fail when linking agai p [2002/10/01] alpha/43567 robert strtod() core dumps f [2002/10/02] kern/43580 njl QUIRK: PhotoClip USB Camera o [2002/10/02] bin/43592 mktime rejects dates at the start of dayl o [2002/10/02] kern/43599 Balloc did not check mallocated pointer i a [2002/10/02] kern/43605 luigi enabling polling in the kernel causes pag o [2002/10/04] misc/43674 Able to bypass expired password o [2002/10/07] kern/43808 njl usb kernel panics o [2002/10/08] i386/43814 closed release 4.6 & 4.6.2 does not see the hard o [2002/10/08] standards/43837wollman PKST (pakistan daylight time) changed fro o [2002/10/08] ports/43847 ports-bugs new ports: babytrans,gsfv,mmail,tetradraw o [2002/10/09] conf/43851 Colorado backup unit o [2002/10/09] i386/43852 4.7-RC "device timeout" problem a [2002/10/09] kern/43885 ken USB CDROM does not work with vmware 2.x o [2002/10/10] kern/43887 threads abnormal CPU useage when use pthread_mute o [2002/10/11] java/43924 glewis writing from JAVA to a pipe sometimes han o [2002/10/11] bin/43930 ldconfig calls bcopy with wrong size o [2002/10/11] kern/43953 Backport of BMC5703 drivers o [2002/10/12] kern/43984 rp driver does not support multiple PCI c o [2002/10/12] bin/43993 joe /usr/sbin/usbd does not handle an usb eve a [2002/10/13] kern/44030 VNode/Swap troubles o [2002/10/15] kern/44087 fatal kernel trap when ifconfig a inet6 i o [2002/10/15] kern/44126 lnc network hungup at large traffics on V o [2002/10/16] kern/44130 Enabled apm hangs up FreeBSD kernel on i8 s [2002/10/16] misc/44148 installworld in 4.7-STABLE does not insta f [2002/10/17] i386/44178 sound kldload of snd_emu10k1 locks system o [2002/10/17] kern/44185 bms Problem adding route with -interface opti f [2002/10/17] ports/44192 edwin joe o [2002/10/18] kern/44202 -stable rp driver does not work with mult o [2002/10/19] conf/44263 imp Intel AnyPoint II Wireless Card Unrecogni p [2002/10/19] misc/44268 ache [PATCH] FreeBSD is missing lt_LT.ISO8859- o [2002/10/19] ports/44295 ports-bugs New port: MLton, an optimizing Standard M o [2002/10/21] kern/44355 After deletion of an IPv6 alias, the rout o [2002/10/23] kern/44417 luigi ipfw layer2 rules are not checked for eth o [2002/10/26] i386/44497 NIC Lags? s [2002/10/26] bin/44504 mp tcsh-6.12.00's "source" command ignore co o [2002/10/26] kern/44512 sound pcm driver generates static half the time o [2002/10/26] kern/44514 X11 mouse pointer disappears upon suspend o [2002/10/27] bin/44518 yar ftpd does not show OPIE OTP challenge o [2002/10/27] bin/44519 yar ftpd.conf(5) contains references to ftpd( o [2002/10/27] kern/44542 sound Locking issues with pcm o [2002/10/28] gnu/44564 peter [PATCH] Aborted cvs session causes an end o [2002/10/28] bin/44567 darrenr ipfstat does not show IPv6 accounting inf o [2002/10/28] misc/44578 getnetgrent fails to read NIS netgroup ma o [2002/11/02] ports/44835 knu portupgrade vs. docproj dependencies o [2002/11/03] kern/44867 Frequent hard hangs on ASUS P4T-E/P4S-533 o [2002/11/05] kern/44936 ng_pppoe: relay session identifier does n o [2002/11/06] bin/44995 /usr/bin/limits thinks sbsize is number, o [2002/11/06] kern/45013 locking warnings in CURRENT o [2002/11/06] kern/45014 VLAN tag on frames received via em(4) are o [2002/11/06] kern/45023 flexlm does not run with linux-base-7, st o [2002/11/09] gnu/45168 Buffer overflow in /usr/bin/dialog o [2002/11/11] ports/45210 ports-bugs Broken Linux ABI Emulation in emulators/l o [2002/11/12] ports/45234 ports-bugs timidity++ portupgrade problem, removes s o [2002/11/13] bin/45272 dump/restore problem o [2002/11/14] docs/45303 doc Bug in PDF DocBook rendering o [2002/11/15] kern/45322 Panic on resume (zone: entry not free) o [2002/11/15] kern/45324 Re: 4.7 kernel does not find aha1 o [2002/11/17] kern/45373 mckusick softupdate / fs damaged after loss of pow o [2002/11/18] bin/45397 nectar Telnet dumps core when MAKE_KERBEROS5=yes o [2002/11/18] kern/45403 imp Cannot install -CURRENT via pccard networ o [2002/11/18] ports/45417 jim everybuddy installs modules in wrong plac o [2002/11/19] bin/45478 tjr /bin/sh coredump 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] i386/45558 mdconfig and msdosfs make fs writes hang o [2002/11/21] i386/45565 qa sysinstall: write error, filesystem full o [2002/11/21] kern/45579 joe Panic from USB stack after device detach o [2002/11/24] kern/45673 sound PC98 internal CS4231A is mis-detected to o [2002/11/24] kern/45679 sound Cannot record except 8bit-mono with CS423 o [2002/11/24] kern/45682 sound Sometime failed to record/play with CS423 o [2002/11/25] kern/45713 emoore If you use the amr driver, it is impossib o [2002/11/25] bin/45721 darrenr ipfilter's flags and icmp-type processing o [2002/11/25] bin/45723 ls(1)'s wrong behaviour with not searchab o [2002/11/25] kern/45733 file descriptor flags and socket flags ou o [2002/11/26] ports/45757 trevor mail/xc-mail: update to current (2.2) & c o [2002/11/26] i386/45773 Softboot causes autoconf failure on Broad o [2002/11/26] kern/45777 crashdump issue with too-small dumpdev o [2002/11/27] ports/45805 ports-bugs security/sfs does not build on Alpha a [2002/11/29] docs/45833 trhodes nsmb.conf man page o [2002/12/02] kern/45913 imp WaveLan driver problems with latest -CURR o [2002/12/03] ports/45972 tobez Perl system() calls will hang if the proc 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] ports/46008 kiri [PATCH] Update mail/mew2 to Mew 2.3 o [2002/12/05] ports/46013 dbaker misc/dnetc: fix install error o [2002/12/05] i386/46017 smb mounts break /etc/periodic/weekly/310 o [2002/12/06] kern/46036 inaccurate timeouts in select(),nanosleep o [2002/12/06] ports/46039 ports-bugs adzapper install fails out of the box o [2002/12/09] java/46151 phantom Sound Capture works only one time o [2002/12/09] kern/46152 Panic in adw dumping to tape o [2002/12/10] kern/46176 joe umass causes kernel panic if device remov o [2002/12/11] i386/46194 5.0-RC1 kern floppy load fails on AMD K6- o [2002/12/11] www/46195 www man page kadmind(8) not found at www.Free o [2002/12/12] kern/46226 darrenr 5.0-RC1 ipfilter module [ipl.ko] fails to o [2002/12/13] kern/46239 posix semaphore implementation errors o [2002/12/13] misc/46245 sound AC'97 is not supported on ABIT BW7 o [2002/12/17] ports/46322 tobez lang/perl5 - string '0' (zero) is not con o [2002/12/17] ports/46338 ports-bugs security/cyrus-sasl 1.5.27_7 mysql_verify o [2002/12/18] bin/46352 Open file descriptors and signal handling o [2002/12/19] i386/46371 joe USB controller cannot be initialized on I o [2002/12/20] conf/46401 dougb [PATCH] /etc/rc.d/named doesn't create ch o [2002/12/21] ports/46443 ports-bugs lang/jgnat compilation failure o [2002/12/22] i386/46484 System panics upon configuration of bge N o [2002/12/25] ports/46530 ports-bugs x11-toolkits/gtkada links against unexist o [2002/12/26] kern/46551 cbb driver hangs on Sony Vaio o [2002/12/26] ports/46554 tobez fix a regex bug dealing with utf8 strings o [2002/12/27] kern/46557 ipfw ipfw pipe show fails with lots of queues o [2002/12/28] kern/46576 FreeBSD 4.6 broke linux emulation install o [2002/12/29] kern/46618 joe USB (UHCI/ICH3) PALM connect/disconnect/c f [2002/12/29] kern/46619 acpi-jp Installation hangs on IBM Thinkpad T23 f [2002/12/31] i386/46646 sound snd_emu10k1.ko halting the system a [2002/12/31] kern/46647 silby Failure to initialize MII on 3Com NIC res o [2003/01/01] bin/46676 ru [PATCH] bsd.dep.mk restricts domain of ta o [2003/01/02] misc/46694 imp Getting DUP packets when in Promiscous mo o [2003/01/03] kern/46736 sound ISA audio CS4232 (HP Omnibook 5000C) work o [2003/01/03] ports/46741 ports-bugs PVM-POV fails trying to locate file/folde o [2003/01/04] bin/46761 hmp buffer overflow by strcpy() in natd's arg s [2003/01/07] ports/46846 lioux livecd: Running fails due to old patches f [2003/01/08] kern/46872 alex Make sound work on TV-cards with MSDP3415 p [2003/01/09] misc/46902 tjr Error with mount_smbfs and 15 Char Netbio o [2003/01/10] ports/46964 ports-bugs Failure when running "make install" on ex o [2003/01/11] ports/46985 sobomax port x11-toolkits/py-wxPython broken on - o [2003/01/12] kern/47005 joe OHCI USB not noticing device detachments s [2003/01/14] ports/47061 ports-bugs Conflicting system headers by build of gr o [2003/01/16] kern/47152 pseudo-device ef in kernel does not creat o [2003/01/19] i386/47236 Console missing during bootup on Sony Pic o [2003/01/19] i386/47243 sound Onboard CMedia CMI8738 playback noise o [2003/01/20] ports/47245 znerd daemonctl scribbles over log file when si f [2003/01/20] kern/47255 5.0-RELEASE install boot floppies hang wi o [2003/01/20] kern/47279 IBM 370 hangs on reboot o [2003/01/20] kern/47286 device probing not verbose when using boo o [2003/01/21] ports/47303 wjv Update biology/p5-bioperl to latest relea o [2003/01/22] kern/47352 sound pcm/ac'97, dsp device busy f [2003/01/23] ports/47405 lev scribus could not save russian letters an o [2003/01/24] i386/47449 Thinkpad 755CD floppy boot fails f [2003/01/24] kern/47451 qa 5.0 GENERIC(sysinstall CD) locks during b o [2003/01/24] kern/47452 df(1) reports filesystem empty when it is o [2003/01/28] kern/47586 [PATCH] fix information-leak (mounts) in o [2003/01/29] kern/47628 msdosfs file corruption fix o [2003/01/29] i386/47647 init died with signal 6 o [2003/01/29] kern/47648 creating alias on ethernet interface caus f [2003/01/31] ports/47713 lioux multimedia/ffmpeg - "make deinstall reins f [2003/01/31] ports/47768 ports-bugs print/ghostscript-afpl gv (3.5.8_1) can't f [2003/02/01] i386/47787 markm new 5.0 system without perl fails buildwo f [2003/02/02] ports/47807 knu ruby-bdb1 fails to install o [2003/02/02] kern/47813 bms pseudo-device gre doesn't appear to work o [2003/02/03] ports/47842 cy security/tripwire fails to build under CU o [2003/02/04] kern/47920 if ng_pppoe switches to nonstandard mode o [2003/02/04] kern/47937 hw.ncpu and kern.smp.cpus duplicate same o [2003/02/05] kern/47939 5.0-Current freezes when bktr device is o o [2003/02/05] ports/47942 lioux qmail-tls MASTER_SITES and naming convent o [2003/02/05] i386/47951 rtld in ld.so will livelock in some circu o [2003/02/05] alpha/47952 alpha DEFPA causes machine check with V5.0-rele o [2003/02/07] kern/48033 FFS superblock flags are being ignored? o [2003/02/07] kern/48062 mckusick mount -o snapshot doesn't work on +100GB f [2003/02/09] kern/48109 njl relaxed AML checking o [2003/02/09] kern/48116 Support for Synaptics touchpad o [2003/02/09] kern/48117 SMP machine hang during boot related to i o [2003/02/09] ports/48130 kris games/falconseye can't save games or bone a [2003/02/10] kern/48156 Bug in procfs(5) closed in jail. o [2003/02/11] gnu/48183 [patch] gdb on a corefile from a threaded o [2003/02/11] kern/48198 Non-jailed users can kill processes owned o [2003/02/13] bin/48271 bug with find's -delete option f [2003/02/14] kern/48279 Brooktre878 (bktr) may cause freeze o [2003/02/15] kern/48316 File size limit on NTFS filesystems o [2003/02/16] misc/48325 /etc/periodic/security/100.chksetuid does o [2003/02/16] kern/48338 sound pcm audio driver hogs /dev/dsp?.? f [2003/02/16] ports/48343 nbm Several issues with the www/zope port o [2003/02/16] ports/48346 dwcjr samba-devel port thinks 5-CURRENT is SVR5 o [2003/02/16] kern/48359 joe SiS 5597/8 USB + uscanner breakage o [2003/02/17] bin/48378 brian [PATCH] User-PPP MTU/MRU - LCP Problem o [2003/02/17] kern/48393 mckusick 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. f [2003/02/19] docs/48472 doc Documentation unreadable. o [2003/02/22] kern/48560 Panic in if_vlan.c on CURRENT o [2003/02/23] kern/48614 VESA VGA modes for syscons lock up machin o [2003/02/24] bin/48648 des FreeBSD 5/PAM: incorrect handling of spac o [2003/02/26] kern/48715 thomas atacontrol detach panics system when ATAP o [2003/02/26] bin/48730 sos burncd does not handle signals and causes o [2003/02/26] java/48737 znerd java/jdk13-doc - 5572 files missing from o [2003/02/27] kern/48741 darrenr ipnat corrupts packets on gre interface w o [2003/02/27] kern/48752 freeze when installing 5.0 Release f [2003/02/27] kern/48755 5.0-p2 kernel panic probably filesystem r o [2003/02/27] kern/48758 kldunload if_{nic} can cause kernel panic o [2003/02/28] kern/48777 vidcontrol modes not restored on vt switc o [2003/03/01] ports/48803 kde KDE 3.1 (kxkb) break XKB configuration an f [2003/03/01] ports/48805 kde `Segmentation fault' for games/nethack34- o [2003/03/02] bin/48856 threads Setting SIGCHLD to SIG_IGN still leaves z o [2003/03/02] bin/48865 Dumps made on FreeBSD 5.0-RELEASE are unr o [2003/03/03] misc/48881 [PATCH] The influence of /etc/start_ifnam o [2003/03/05] kern/48952 joe uscanner0 hangs o [2003/03/05] bin/48958 standards The type 'bool' has different sizes for C o [2003/03/07] kern/48996 Fatal trap 12 with incoming traffic from o [2003/03/08] kern/49040 problem mounting root; ffs_mountroot can' f [2003/03/09] bin/49048 [patch] ctm(1) does not check parent dire o [2003/03/09] ports/49056 trevor Festival fixes for newer GCCs [PATCH] o [2003/03/10] bin/49087 threads Signals lost in programs linked with libc o [2003/03/11] kern/49102 julian Resident set size calculation broken in 5 o [2003/03/13] misc/49984 des openSSH crashes while password based auth o [2003/03/13] ports/49995 phantom Native JDK1.4.1 build fails if WRKDIRPREF o [2003/03/15] ports/50042 mbr ports/www/mod_frontpage causes Bad System o [2003/03/16] ports/50062 knu portupgrade does not process directives f o [2003/03/17] ports/50083 lioux qpopper 4.0.5 tarball file permissions do o [2003/03/18] i386/50099 jhb [PATCH] AP initialization fails on some S o [2003/03/18] ports/50104 ports-bugs Zope package does not set sticky bit on v o [2003/03/20] kern/50149 joe Using Alcatel SpeedTouch results in "usb0 o [2003/03/25] kern/50298 unlimited usage of AGP memory make system o [2003/03/27] kern/50348 joe On usb.ko unload usb and usbN devices are p [2003/03/28] bin/50384 robert pkg_version -v core-dumps when no package o [2003/03/28] ports/50402 knu glib20 port: pthread_getschedparam is mis o [2003/03/29] ports/50417 phoenix www/mozilla-firebird does not respect /us o [2003/03/29] ports/50418 phoenix www/mozilla-firebird file "unix.js" links o [2003/04/02] kern/50541 scottl raidframe does not work o [2003/04/03] kern/50574 mbr dc driver incorrectly detects ADMtek chip o [2003/04/05] kern/50621 panic while TCP6 bind() o [2003/04/07] kern/50683 fxp broken o [2003/04/07] ports/50694 lioux mail/qmail-ldap edit mismatch causes CLEA a [2003/04/08] bin/50733 threads buildworld won't build, because of linkin o [2003/04/08] kern/50741 scottl "wiring down SCSI devices" as described i p [2003/04/10] bin/50770 tjr popen in libc_r not threadsafe o [2003/04/10] ports/50795 ports-bugs misc/solfege does not function o [2003/04/11] kern/50827 [PATCH] no sane record locking on *nix. s [2003/04/11] ports/50844 ports-bugs MPlayer fails to build on Alpha s [2003/04/12] kern/50856 kernel panic if mounting /tmp as mfs with o [2003/04/12] i386/50887 MBR on kern.flp fails Compaq MBR validati o [2003/04/13] bin/50912 dwmalone Small syslogd & postfix incompatibility a o [2003/04/14] kern/50943 kernel panic to initialize NIC (Intel Pro o [2003/04/14] kern/50947 darrenr BUG: port eq 25 does not work anymore (po o [2003/04/15] ports/51007 dirk sysutils/cdrtools: cdda2wav rips glitches o [2003/04/16] ports/51069 wjv [PATCH] p5-XML-Twig does not correctly de p [2003/04/17] misc/51085 ache FreeBSD is missing ja_JP.eucJP locale. o [2003/04/17] ports/51089 lioux net/dctc refuses to connect to any hub o [2003/04/18] ports/51128 ports-bugs It is not possible to build security/drwe o [2003/04/18] www/51135 www Problems with the mailing-lists search in o [2003/04/18] ports/51140 jedgar No documentation for the port databases/d o [2003/04/18] kern/51145 sound Audio Slows during Heavy I/O o [2003/04/18] misc/51146 qa Incorrect error message when configuring o [2003/04/19] bin/51171 /bin/sh has only 32-bit arithmetics that o [2003/04/21] standards/51209standards [PATCH] add a64l()/l64a/l64a_r functions o [2003/04/21] kern/51243 Deadlock via syscons o [2003/04/21] bin/51253 dwmalone syslogd crashes. o [2003/04/22] kern/51274 ipfw ipfw2 create dynamic rules with parent nu o [2003/04/22] ports/51281 tobez broken way of upgrading perl5.6.x to 5.8 o [2003/04/23] kern/51308 sound Creative SB32 doesn't work under CURRENT o [2003/04/23] kern/51309 rl driver problem on large file transfers o [2003/04/23] ports/51324 knu lang/ruby-devel fails to remove lib/ruby/ o [2003/04/23] kern/51332 njl QUIRK: BNCHMARK DLT1 requires SA_QUIRK_1F o [2003/04/23] ports/51334 ports-bugs [New Port] Zend Optimizer 2.1.0a f [2003/04/24] kern/51341 ipfw ipfw rule 'deny icmp from any to any icmp o [2003/04/24] kern/51352 panic: malloc(M_WAITOK) in interrupt cont o [2003/04/25] misc/51409 us.emacs.kbd doesn't have 'boot' o [2003/04/27] ports/51455 billf core dump when exiting ethereal o [2003/04/28] ports/51539 tobez dual perl installation breakage? o [2003/04/29] kern/51583 tjr [PATCH] allow to work with devices and so o [2003/05/02] kern/51685 Unbounded inode allocation causes kernel o [2003/05/02] ports/51711 ports-bugs /usr/ports/emulators/linux_base will not o [2003/05/02] ports/51714 ports-bugs emulators/linux_base port fails to instal o [2003/05/05] ports/51807 ports-bugs lang/gcc295 (g++) can't parse header file f [2003/05/05] ports/51813 ports-bugs wrong mod_perl dependencies o [2003/05/05] bin/51827 getaddrinfo() is broken with numeric serv o [2003/05/06] ports/51837 murray [Unbreak Port] print/hugelatex (fix PLIST s [2003/05/06] bin/51892 des can't ssh after su to different local use o [2003/05/07] bin/51927 routed(8) fails to use multicast with IFF o [2003/05/07] ports/51946 jedgar grub port looking for /dev/rfd0 o [2003/05/07] bin/51949 threads thread in accept cannot be cancelled o [2003/05/08] kern/51982 sio1: interrupt-level buffer overflows o [2003/05/11] ports/52064 ports-bugs ns2 (ports/net/ns) was broken o [2003/05/11] ports/52067 anholt Machine reboots when loading X after cold a [2003/05/11] ports/52068 openoffice portupgrade of editors/openoffice .org-1. o [2003/05/11] ports/52079 bms vmware3 hangs when nmdm(4) is used as COM a [2003/05/11] ports/52087 openoffice error while building japanese/openoffice s [2003/05/12] kern/52110 FS corruption when using unionfs o [2003/05/12] kern/52128 Unable to floppy install on Toshiba Libre o [2003/05/14] ports/52236 phantom java/jdk14 does not build the Java Plugin o [2003/05/14] kern/52260 sys/net/if.c:if_detach in FreeBSD4 forget o [2003/05/15] java/52302 phantom jdk14 runnaway processes o [2003/05/16] kern/52331 groudier 4.7 to 4.8-REL upgrade: SCSI disks on sym o [2003/05/16] bin/52343 NIS login problem on the server o [2003/05/18] i386/52392 i386 Password lengths over 8 chracters are ign o [2003/05/19] bin/52433 lines in /etc/group longer than 1024 char o [2003/05/19] kern/52445 Kernel panics when mounting floppy on MFS o [2003/05/20] kern/52490 ^T'ing a zombie causes 'calcru: negative o [2003/05/21] i386/52556 i386 Syskonnect SK9843SX, sk driver, MII not d o [2003/05/22] kern/52561 5.1-BETA install fails on Dell PowerEdge o [2003/05/22] i386/52581 i386 Boot loaders reading more than one sector o [2003/05/23] ports/52602 ports-bugs security/ident2 port segfaults when retur o [2003/05/23] i386/52610 i386 MSI "655 max" (MS-6730, SiS 655/963) MB A o [2003/05/24] i386/52638 i386 SCSI U320 on SMP server won't run faster o [2003/05/24] kern/52648 bonnie gives kernel panic in SMP but not o [2003/05/27] i386/52724 njl crashes apparently due to a ACPI problem f [2003/05/27] kern/52729 panic: ufs_dirbad: bad dir o [2003/05/27] bin/52743 /etc/ppp/ppp.linkup instability issues o [2003/05/28] kern/52756 4.8 RELEASE installer(generic kernel) sta o [2003/05/30] kern/52817 threads top(1) shows garbage for threaded process o [2003/05/30] kern/52818 vm_fault() calls vput() on shared-locked o [2003/05/31] i386/52822 i386 5.1-BETA2 problems with named/syslogd/if_ o [2003/06/02] kern/52868 NFS v3 shows a negative size with volumes o [2003/06/04] kern/52935 occasional panic in ip_input with IPSEC o [2003/06/04] kern/52936 Huge writes to nfs exported FAT filesyste o [2003/06/05] kern/52962 imp discrepancy between ifconfig and wicontro p [2003/06/05] standards/52972standards /bin/sh arithmetic not POSIX compliant o [2003/06/05] i386/52975 i386 CPUTYPE=k7 results in non-functional /boo a [2003/06/06] kern/52988 mbr [patch] if_dc with ADMTek AN983B corrupts o [2003/06/07] kern/53008 [PATCH] genwakecode generates errornously o [2003/06/10] i386/53137 i386 background fscking causing ffs_valloc pan o [2003/06/11] bin/53201 re buildworld 5.1-RELEASE on 4.8-STABLE fail f [2003/06/11] ports/53214 ports-bugs emulators/vmware3 tries to install emulat o [2003/06/13] ports/53290 lioux Adds russian charsets to `mail/spamoracle o [2003/06/15] kern/53334 o [2003/06/16] i386/53382 i386 Repetable panics in ffs_vget() on Prolian o [2003/06/17] ports/53414 ports-bugs port security/amavis-perl open filedescri o [2003/06/17] bin/53434 pw disallow a password including space. o [2003/06/18] kern/53447 poll(2) semantics differ from susV3/POSIX f [2003/06/18] ports/53458 ports-bugs irc/tr-ircd breaks on non-IPv6 kernels o [2003/06/18] kern/53481 bms 5.1R does not recognise xl0 at every star o [2003/06/19] ports/53504 knu pkgdb -F causes ruby to fail (can not all s [2003/06/19] ports/53508 lofi security/newpg: gpgsm dumps core (while i o [2003/06/20] standards/53554standards interval timers not cleared in fork() o [2003/06/20] kern/53566 IBM Eserver (245 || 345) + ServeRaid 5i i o [2003/06/21] bin/53606 roberto ntpdate seems to hang system o [2003/06/24] sparc64/53670sparc64 pthreads implementation on 5.1-Release sp o [2003/06/25] kern/53712 anholt drm/DRI broken (out of DMA buffers?) for o [2003/06/27] bin/53839 qa sysinstall disklabel editor fails on post o [2003/06/27] kern/53847 software hang o [2003/06/27] www/53862 ports-bugs -CURRENT ports symlink busted o [2003/06/30] kern/53920 sluggish TCP connection o [2003/06/30] kern/53927 imp wi0: device timeout problem with PRISM 2. o [2003/06/30] kern/53940 imp Some WiFi devices cannot connect to hosta o [2003/06/30] i386/53948 i386 console="comconsole" in loader.conf cause o [2003/07/01] kern/53987 smbfs can't access to files with symbol ż o [2003/07/02] i386/54033 i386 Disk lockup. o [2003/07/02] kern/54049 sound Sound driver reports device busy and show f [2003/07/03] bin/54066 njl ACPI repeating error messages at boot tim o [2003/07/03] ports/54067 mbr www/mod_auth_mysql_another fails to build o [2003/07/04] bin/54097 Non-local yppasswd -d broken in 5.1-CURRE o [2003/07/06] ports/54156 dougb Add foomatic and cups support to print/hp o [2003/07/07] kern/54188 [PATCH] touchpad doesn't work on some Ace o [2003/07/07] misc/54189 DNS resolver should resolve hostnames wit o [2003/07/08] ports/54234 ports-bugs gnu-radius fails to build on 4.8-STABLE o [2003/07/09] kern/54248 nge/vlan: kernel panic o [2003/07/09] ports/54256 mita japanese/vflib: fix dependency on japanes o [2003/07/09] kern/54295 [PATCH] ng_rfc1490(4) does not support Ci o [2003/07/10] kern/54309 silby TCP Packet of 64K-1 crashes FreeBSD4.8 o [2003/07/10] gnu/54317 sobomax tar with very large packages and portinst f [2003/07/10] kern/54331 robert shutdown() on a socket registered in a kq 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/12] ports/54412 ade USE_LIBTOOL_VER overwrites autoconf-PATH o [2003/07/12] ports/54424 knu portupgrade ignores ALT_PKGDEP o [2003/07/13] ports/54435 lioux [PATCH] multimedia/libdvdread dvdcss_crac o [2003/07/13] bin/54446 pkg_delete doesn't honour symlinks, portu o [2003/07/15] kern/54495 njl ACPI problem on Compaq Evo N620c o [2003/07/15] i386/54501 i386 Promise Ultra133 TX2 does not work proper o [2003/07/15] bin/54517 mbr dhclient core dumps on negative ip addres o [2003/07/16] kern/54539 devinfo/devstat lists too many if_tun res o [2003/07/16] ports/54546 openoffice OpenOffice-1.0.3_2 build fails: autoconf. o [2003/07/17] ports/54588 knu databases/ruby-bdb WITH_BDB41 actually us o [2003/07/19] ports/54647 ports-bugs Updated gsfonts 6.0 disables printing in o [2003/07/20] kern/54673 'stli' driver requires unavailable COMPAT o [2003/07/21] kern/54705 sound codec timeout during read of register 26 o [2003/07/21] ports/54727 adrian [PATCH] update to STABLE3 and request mai o [2003/07/22] i386/54756 i386 ACPI suspend/resume problem on CF-W2 lapt o [2003/07/23] i386/54781 i386 ACPI prevents psm to detect on Compaq Evo o [2003/07/23] ports/54783 mbr [PATCH] ftp/proftpd: fix for mysql41, MOD o [2003/07/25] www/54838 phantom [PATCH] www/ru update o [2003/07/25] ports/54848 ports-bugs print/ghostscript-gnu fails building whil o [2003/07/25] bin/54854 cvs pserver sig11 crash on 4.8-R o [2003/07/25] ports/54855 lioux PATCH: fix mjpegtools divx tools segfault o [2003/07/26] kern/54881 njl New device/vendor ID and quirks for iRive p [2003/07/27] bin/54959 tr utility has a bug in ISO8859-2 locale o [2003/07/28] bin/54969 rcp '-r' option patch or MFC request o [2003/07/28] ports/54970 ports-bugs emulators/linux_base Port Makefile "dange o [2003/07/28] conf/54971 mtm /etc/rc.d/mountcritermote requires ldconf o [2003/07/28] ports/54972 ports-bugs net/simicq compilation error o [2003/07/28] www/54976 www [PATCH] www/ru/news update o [2003/07/29] kern/55018 [patch] Digiboard PC/Xem fails to initial o [2003/07/30] ports/55036 lioux [Update] Port: mail/qmail (add Maildir++ o [2003/07/30] kern/55081 contigmalloc API semantics inadequate --- o [2003/07/31] ports/55136 lioux qmail-ldap uses old qmail-ldap patch, por f [2003/08/01] ports/55164 openoffice openoffice fails to compile o [2003/08/01] kern/55175 alfred LOR in select and poll f [2003/08/02] ports/55186 kde Doxygen 1.3.1 build fails on Alpha o [2003/08/03] ports/55216 ade devel/{automake,autoconf}: Wrong code in o [2003/08/04] ports/55252 ports-bugs databases/db4: Berkley DB crashes on Serv o [2003/08/05] gnu/55278 Externs on implicit declarations o [2003/08/05] kern/55279 miibus/if_ed static/dynamic confusion o [2003/08/05] i386/55290 i386 please MFC the PR:22971 (LinuxEmu; Implem o [2003/08/05] kern/55297 kernel panic after running XFree86 o [2003/08/05] kern/55299 sos Promise ATA controller can't handle UDMA o [2003/08/06] ports/55325 portmgr [PATCH] ports/Mk/bsd.port.mk handles auto o [2003/08/06] ports/55331 portmgr Port security check (`security-check' tar o [2003/08/07] bin/55346 /bin/sh eats memory and CPU infinitely o [2003/08/07] bin/55349 Amd mixes up symlinks in it's virtual fil o [2003/08/08] bin/55366 grog [patch] vinum makes /dev/vinum with wrong o [2003/08/08] ports/55372 ports-bugs www/mod_php4 port ignores PREFIX o [2003/08/08] kern/55379 kernel crashes randomly o [2003/08/10] ports/55439 ports-bugs Change in tcsetattr in 5.1-RELEASE breaks o [2003/08/10] bin/55448 dbm_nextkey() misbehaves after dbm_store( o [2003/08/10] gnu/55452 gzip doesn't handle large files o [2003/08/11] bin/55457 GDB gets confused debugging libc_r thread o [2003/08/12] ports/55493 portmgr Add ability to automatically install *.in o [2003/08/12] ports/55507 ports-bugs lang/php4 compiles with unexcpected libs o [2003/08/13] docs/55526 blackend Update the branches pic and ascii art for o [2003/08/13] kern/55542 [patch] discard oversize frame (ether typ o [2003/08/13] i386/55555 i386 system freezes with access to /dev/ums0 o [2003/08/13] i386/55561 i386 SMbus and I2C don't attach when loaded as f [2003/08/13] ports/55563 openoffice openoffice doesnot build on both stable a o [2003/08/15] i386/55603 unable to reboot when system runs from My o [2003/08/15] ports/55611 ports-bugs Clamav port package build fails on 5.x wh o [2003/08/15] i386/55614 i386 machine freezes - goes on after key press o [2003/08/15] i386/55615 i386 machine freezes - goes on after key press o [2003/08/15] kern/55617 ports-bugs Accessing an nsmb-mounted drive via a smb o [2003/08/16] bin/55634 Add IGNORE_PRINTCAP option to mergemaster o [2003/08/16] ports/55638 ports-bugs [PATCH] www/rt2 marked broken o [2003/08/16] ports/55650 obrien update vim to tcl/tk 8.4 o [2003/08/17] i386/55661 njl ACPI suspend/resume problem on ARMADA M70 o [2003/08/17] ports/55673 ports-bugs Xsane crashes when doing preview o [2003/08/18] kern/55702 Kernel panic on NTFS o [2003/08/20] kern/55727 rl(4) not working in recent 4.8-STABLE: w o [2003/08/20] ports/55740 ports-bugs port already installed check fails on 4.6 o [2003/08/20] sparc64/55773jake Conversion from long to long double is br o [2003/08/20] bin/55774 libpam & some pam modules don't build o [2003/08/20] kern/55784 Kernel Panic [with trace] in using netgra o [2003/08/20] i386/55793 Flaky behavior of DC when initializing a o [2003/08/20] kern/55810 Error: bundle_Create: ioctl(TUNSIFMODE): o [2003/08/20] kern/55822 No ACPI power off with SMP kernel o [2003/08/20] misc/55823 em(4) interfaces (Intel Gigabit) are mute o [2003/08/20] bin/55829 __stderrp not defined in libc.so.3 (compa o [2003/08/21] ports/55844 mharo PATCH: fix analog crash by linking agains o [2003/08/21] bin/55846 and conflict p [2003/08/21] misc/55853 [patch]Fix ascii compatible problem in zh f [2003/08/22] ports/55881 portmgr make install fails for ports o [2003/08/23] kern/55890 Error: bundle_Create: ioctl(TUNSIFMODE): o [2003/08/23] ports/55894 ports-bugs print/lyx: configure aborts if WITH_QT is o [2003/08/23] i386/55908 i386 perl process stuck in pipewr (no pipe bei o [2003/08/24] i386/55930 i386 partly configured serial port freezes sys o [2003/08/24] kern/55934 grog kernel panics while restoring into vinum o [2003/08/24] misc/55945 Typo in share/misc/pci_vendors file o [2003/08/24] bin/55947 printf(1) mishandles \0 o [2003/08/24] ports/55948 ports-bugs install of ports/emulators/linux_base fil o [2003/08/25] bin/55956 passwd chat script not backward compatibl o [2003/08/25] kern/55960 IO to PATA drives on Promise SATA150 TX2p o [2003/08/25] conf/55964 sshd: HostBasedAuthentication does not se o [2003/08/25] bin/55965 sshd: problems with HostBasedAuthenticati o [2003/08/25] kern/55986 kernel panic in 4.8-STABLE o [2003/08/26] conf/55991 sshd: problems with HostBasedAuthenticati o [2003/08/26] kern/55993 getcwd() breaks on unionfs mounted direct o [2003/08/26] kern/56008 scottl ps shows L flag erroneously with certain o [2003/08/26] ports/56011 ports-bugs bonnie++ doesn't do large files o [2003/08/26] kern/56024 njl ACPI suspend drains battery while in S3 o [2003/08/27] conf/56031 luigi ipfw hangs on every invocation o [2003/08/28] ports/56101 tobez devel/p5-IPC-RUN checks for IO/Handle.pm o [2003/08/29] bin/56147 FreeBSD/NetBSD /bin/sh mishandles positio o [2003/08/29] ports/56157 ports-bugs [patch] x11/nvidia-driver build broken o [2003/08/29] bin/56166 /usr/bin/script exits prematurely if STDI o [2003/08/30] ports/56205 ports-bugs www/mod_php4 won't install o [2003/08/30] ports/56222 ports-bugs [patch] Fix compiler error in www/php-scr o [2003/08/31] kern/56233 IPsec tunnel (ESP) over IPv6: MTU computa o [2003/09/01] ports/56263 ports-bugs New port: comms/gammu [FIXED] (supersedes o [2003/09/02] ports/56329 ports-bugs Update: mail/maildrop to 1.6.0 + LDAP mak o [2003/09/02] kern/56339 select() call (poll() too) hangs, yet cal f [2003/09/02] kern/56353 Kernel panic by vrele: negative ref cnt o [2003/09/02] ports/56359 ports-bugs new port: www/adzap2squirm a [2003/09/03] ports/56363 perky The graphics/py-opengl port is broken o [2003/09/03] misc/56372 njl acpi don't work on TYAN tiger100 M/B o [2003/09/03] kern/56394 njl ACPI sleep delay causes system reboot on o [2003/09/04] ports/56410 ports-bugs Mailman broken o [2003/09/04] docs/56456 blackend Initial import of the ro_RO.ISO889-2 doc/ o [2003/09/04] kern/56461 FreeBSD client rpc.lockd incompatible wit o [2003/09/05] ports/56487 anholt Upgrading Xfree86-clients from ports over o [2003/09/05] bin/56500 rpc.lockd needs to use reserved ports o [2003/09/05] ports/56511 mharo ProFTPd port does not install docs for op o [2003/09/07] ports/56567 ports-bugs mail/spamass-milter fails in configure st o [2003/09/08] kern/56605 da driver can reference a NULL pointer o [2003/09/09] kern/56632 MTIO incorrect mt_fileno status after MTE o [2003/09/09] ports/56660 ports-bugs new slave port mod_jk-apache2 o [2003/09/09] ports/56661 ports-bugs modify port mod_jk2 to build mod_jk2 2.x o [2003/09/09] ports/56662 ports-bugs new slave port mod_jk2-apache2 o [2003/09/10] kern/56675 Syncer "giving up" on buffers and ext2 fi o [2003/09/11] ports/56694 gioria fix port: misc/p5-Locale-Msgcat o [2003/09/11] ports/56710 fanf Update sysutils/cfengine2 to 2.0.8p1 o [2003/09/11] ports/56716 kuriyama net-snmp 5.0.9 won't build package o [2003/09/11] ports/56724 roam [Update] Port: mail/qmailadmin o [2003/09/12] bin/56732 ifconfig fails if interfaces are being cr o [2003/09/13] ports/56744 jim ports/x11/aterm Makefile breaks DELETE an o [2003/09/13] ports/56747 ports-bugs vmware3 port cant fetch distfile o [2003/09/13] bin/56748 [PATCH] rc.subr: jail devfs handling brok a [2003/09/13] ports/56751 kde x11-toolkits/qt31 is broken o [2003/09/13] kern/56759 System freezes when writing CD Advansys S o [2003/09/13] kern/56760 System hangs at boot with adaptec 1542 o [2003/09/14] kern/56865 sys/endian.h broken with c++ o [2003/09/14] kern/56871 dd can't write variable length data block o [2003/09/15] ports/56884 ports-bugs Problems with pgaccess & tcltk 8.4 o [2003/09/15] kern/56889 MODE_SENSE_BIG timeout hanging boot if CD o [2003/09/15] ports/56893 ports-bugs Fix for lang/sisc (currently broken) o [2003/09/15] docs/56894 doc umass man page: "mount -t msdos" instead o [2003/09/15] standards/56906standards Several math(3) functions fail to set err o [2003/09/16] ports/56912 ports-bugs www/sarg coredumps on big logs o [2003/09/16] kern/56924 sos [Patch] ATA controller seems to have wron o [2003/09/16] ports/56926 adrian [PATCH] www/squid: update to 2.5 o [2003/09/17] kern/56944 4.8 cannot boot on Intel Server Board SE7 f [2003/09/17] ports/56955 jdp /usr/ports/lang/ezm3 broken big/little en s [2003/09/18] kern/56988 system panic with doubled up unionfs o [2003/09/19] ports/57013 ports-bugs devel/boost does not build o [2003/09/19] kern/57015 [patch] Asus wl-100 (pcmcia wifi) support o [2003/09/20] i386/57040 ar driver with PCI card locks up when run o [2003/09/20] kern/57044 sysctl -a panics, kern.disks shows detach a [2003/09/20] ports/57047 portmgr Ports fail to detect threads libraries on o [2003/09/21] kern/57051 sound snd_cmi -> snd_emu10k1 hang o [2003/09/21] ports/57056 ports-bugs libsm and libsmutil not installed -> fail o [2003/09/22] kern/57085 umass0 problems, with Sony Vio/USB memory o [2003/09/22] kern/57100 disable hardware checksums when using bri o [2003/09/22] kern/57119 joe USB hangs at startup o [2003/09/23] ports/57126 ports-bugs molden port broken a [2003/09/23] ports/57130 cy Xalarm port does not compile under -CURRE o [2003/09/23] ports/57134 tobez BSDPAN can't be disabled o [2003/09/24] kern/57174 sos 4.9-PRERELEASE panic: ata_dmasetup: trans o [2003/09/24] www/57177 www [patch] search/search.sgml: update link o [2003/09/24] kern/57195 mount_mfs -i 512 => panic? o [2003/09/25] kern/57206 softdep_lock locks against itself, causin o [2003/09/25] ports/57222 ports-bugs krb5 port fails under RELENG_4_8 default a [2003/09/26] java/57235 znerd Fix pkg_add permission problem in tomcatX o [2003/09/26] bin/57255 joe usbd and multi-function devices o [2003/09/26] i386/57258 i386 4.9Beta won't boot if a USB mouse is conn o [2003/09/27] kern/57273 PATCH, fix usb keyboard repeat problem o [2003/09/28] kern/57334 FreeBSD-Stable/Radeon7500, X server freez o [2003/09/29] kern/57348 imp Inserting PC-CARD hangs laptop o [2003/09/29] ports/57368 ade forever cycled when building libtool 1.5 o [2003/09/29] kern/57380 Connections are reset by the kernel witho o [2003/09/30] bin/57401 amd sets wrong permissions on mount point o [2003/09/30] bin/57414 /usr/bin/script fails silently if stdin i o [2003/09/30] ports/57415 knu portupgrade can't be run in the backgroun o [2003/10/01] bin/57456 Telnet encryption gets out of sync o [2003/10/01] ports/57461 ports-bugs typo in ports/emulators/vmware3/files/con o [2003/10/01] ports/57465 emulation kldunload rtc.ko causes a panic; yet it's o [2003/10/01] misc/57466 dialog(1) does not read stdin, breaks sub o [2003/10/01] ports/57470 fanf [SECURITY] port sysutils/cfengine2: remot o [2003/10/01] i386/57479 i386 FreeBSD Not in compliance with RFC 1122, o [2003/10/01] bin/57484 routed not ignoring cloned routes f [2003/10/02] kern/57492 bms Firewall can be disabled in securelevel 3 o [2003/10/03] ports/57552 ports-bugs pkg_create: only one package name allowed o [2003/10/03] bin/57554 sh(1) incorrect handling of quoted parame o [2003/10/04] docs/57568 kensmith errors in FreeBSD Architecture Handbook o [2003/10/04] i386/57578 njl ACPI problems on IBM T20 GE86 o [2003/10/04] ports/57586 ports-bugs [patch] Make security/sfs compile on -cur o [2003/10/05] ports/57600 roger [PATCH] net/gnomemeeting depends on wrong o [2003/10/05] ports/57601 ports-bugs [PATCH] Fix port bug found by Oliver Eikm o [2003/10/05] kern/57631 Boot failing for ALi chipsets, patch atta f [2003/10/06] ports/57644 ports-bugs [PATCH] changing CFLAGS and CPUTYPE respe o [2003/10/06] conf/57659 Exit status from /etc/rc.d/mountcritlocal o [2003/10/06] ports/57670 ports-bugs net/jabber-msn: Upgrade to version 1.2.8p o [2003/10/06] i386/57673 i386 Odd/dangerous disklabel behaviour on 5.0 o [2003/10/06] ports/57685 ports-bugs New Port: geepee32 o [2003/10/07] ports/57695 ports-bugs mcs is version 0.27 o [2003/10/07] ports/57698 portmgr Add USE_APACHE knob to bsd.port.mk. o [2003/10/07] kern/57722 uidinfo list corruption o [2003/10/07] ports/57725 archie build jikes to support encoding o [2003/10/08] kern/57760 IPsec policy on inbound trafic is not enf o [2003/10/08] ports/57761 ports-bugs grip port segment faults on CURRENT syste o [2003/10/08] ports/57774 portmgr update Mk/bsd.port.mk: set dev_acver=257 o [2003/10/09] ports/57790 ports-bugs cdparanoia triggers kernel panic o [2003/10/09] ports/57793 ports-bugs New port: Netgraf network statistic o [2003/10/09] docs/57799 doc pam_self(8) man page is wrong o [2003/10/09] sparc64/57800sparc64 Probable non-64bit-cleanness of unrar o [2003/10/09] kern/57818 4.9-RC panics when kernel is built with a o [2003/10/10] kern/57827 Connections are reset by the kernel witho o [2003/10/10] bin/57833 PATCH: ps cannot change title for keyword o [2003/10/10] ports/57843 ports-bugs misc/amanda-client still depends on gtar o [2003/10/10] ports/57854 ports-bugs Port java/jboss3 is dependent on but does o [2003/10/11] ports/57864 ports-bugs [Patch]: textproc/glimpse-4.12.6 compilat o [2003/10/11] ports/57870 ports-bugs Missing +INSTALL/+DEINSTALL scripts with o [2003/10/12] ports/57897 ports-bugs Portupgrade of mplayer to latest version o [2003/10/12] java/57901 java java/jdk14 (jdk-1.4.1p4) fails to build o [2003/10/12] ports/57906 roam ftp/curl (curl-7.10.7) fails at ./configu o [2003/10/12] kern/57908 'return-rst' does not work for ipv6 in ip o [2003/10/13] ports/57936 ports-bugs [Maintainer Update] Port: www/turck-mmcac o [2003/10/13] kern/57945 [patch] Add locking to kqueue to make it o [2003/10/13] ports/57956 ports-bugs New port: pmd eclipse-plugin o [2003/10/13] ports/57957 mat maintainer update: sysutils/flexbackup ne o [2003/10/13] ports/57958 ports-bugs [maintainer update] mail/dbmail: update t o [2003/10/13] kern/57961 kmem_malloc(65536): kmem_map too small: 2 o [2003/10/13] ports/57963 ports-bugs exim port: misspelt conflict o [2003/10/13] ports/57965 ports-bugs security/samhain -> 1.7.12 1206 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- f [1995/01/11] i386/105 standards Distributed libm (msun) has non-standard s [1995/09/26] kern/742 syslog errors accessing Mac hard disks [p s [1995/11/20] kern/831 one minor complaint about the kernel visu a [1996/01/30] bin/981 fenner clnt_broadcast() is not aware of aliases a [1996/07/07] bin/1375 eivind Extraneous warning from mv(1) [PATCH] s [1996/10/13] misc/1791 tegge syslimits.h does not allow overriding def s [1996/11/22] 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 Support for DSR/DCD swapping on serial po o [1997/01/10] bin/2442 setusershell()/endusershell() missing a [1997/02/02] bin/2641 wpaul login_access.c doesn't work with NIS by d s [1997/02/15] misc/2745 fenner PR querry web form doesn't sort correctly o [1997/03/10] bin/2934 cracauer sh(1) has problems with $ENV f [1997/05/16] bin/3608 jkoshy Telnet in linemode will break apart long o [1997/06/24] kern/3944 paul if_le doesnt receive ether multicast pack 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 [PATCH] minor nits in sys/netatalk o [1997/08/13] i386/4300 msmith The initial timeout on open("/dev/lpt0".. o [1997/08/29] kern/4413 No way to unmount a floppy that goes bad o [1997/08/29] bin/4419 man can display the same man page twice o [1997/08/29] bin/4420 jmallett find -exedir doesn't chdir for first entr o [1997/09/03] bin/4459 bde No prototype for moncontrol(3) and monsta o [1997/09/25] bin/4629 calendar doesn't print all dates sometime o [1997/09/28] misc/4646 qa Can't fixit with an NFS-mounted CD. o [1997/10/05] bin/4696 ping hangs on certain unresolvable hosts 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/11/30] i386/5182 bde [PATCH] A patch support high speed serial s [1997/12/14] bin/5296 slattach fails creating pidfile with ioct o [1997/12/22] kern/5362 peter mount incorrectly reports / as an NFS exp o [1998/01/11] bin/5483 Login(1) clears utmp entry o [1998/01/26] kern/5577 bde Unnecessary disk I/O and noatime ffs fixe a [1998/01/28] bin/5591 jkoshy Trouble with LD_PRELOAD environment varia o [1998/01/31] bin/5609 gad lpd cannot send long files to HP's JetDir o [1998/02/10] bin/5712 mikeh /bin/chio code cleaup and option added o [1998/02/14] bin/5745 nik [PATCH] Add /usr/local/share/mk to defaul f [1998/03/28] bin/6161 assar 2.2.6 kerberos servers are awfully visibl p [1998/03/31] kern/6184 No error if resulting file pos in lseek i o [1998/04/18] conf/6346 joe 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 s [1998/06/01] kern/6820 jesper cd9660_mount NULL pointer deref for no CD o [1998/06/22] ports/7023 portmgr bsd.port.(%|subdir.).mk patches for size a [1998/07/01] bin/7136 markm kerberized telnetd doesn't use gettytab % s [1998/07/10] misc/7232 qa Suggestion for FreeBSD installation dialo o [1998/07/10] kern/7234 yokota keyboard problems during login immediatel o [1998/07/12] bin/7265 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/19] bin/7324 mtm Suggestions for minor modifications to ad s [1998/08/13] conf/7606 [PATCH] NIS Makefile.dist: NOPUSH replace s [1998/08/22] kern/7722 Changes to acct format s [1998/09/08] bin/7868 [almost patch]Morse Code Fixups f [1998/09/16] misc/7946 ccdconfig gives confusing error when give o [1998/09/18] bin/7973 gad lpd: Bad control file owner in case of re o [1998/10/03] misc/8133 markm [patch] bug in telnetd (Kerberos IV) o [1998/10/19] kern/8376 tjr CLOCK_VIRTUAL not implemented o [1998/10/27] i386/8474 repquota does not pick up NIS information a [1998/10/28] bin/8479 dd Final \'s in /etc/exports did not work in f [1998/10/30] kern/8498 dwmalone Race condition between unp_gc() and accep o [1998/11/27] i386/8867 qa /stand/sysinstall core dumps (signal 11) a [1998/12/18] bin/9123 pax can't read tar archives that contain f [1998/12/28] misc/9220 ache nvi: catalog: mistake in Russian error me s [1998/12/29] bin/9233 gmp's mpq_add and mpq_sub are buggy a [1999/01/05] bin/9333 jkoshy timestamp dump's progress o [1999/01/19] kern/9570 dfr ed(4) irq config enhancement o [1999/01/22] kern/9619 Restarting mountd kills existing mounts o [1999/01/25] kern/9679 fix for uninterruptible open in portal fi a [1999/01/28] bin/9770 jmallett An openpty(3) auxiliary program o [1999/01/29] i386/9777 cg Generic AD1816 sound suport in Luigi's pc o [1999/02/01] bin/9868 Patch to add "date -a" o [1999/02/01] kern/9869 When using macros out of function, they s 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/15] bin/10611 timed enhancement o [1999/03/17] kern/10641 groudier Default sync rate in ncr SCSI driver is s o [1999/03/19] gnu/10670 peter cvs doesn't allow digits in local keyword o [1999/03/19] kern/10673 wpaul Non-ASCII chars on serial console with Re o [1999/04/11] bin/11085 Per-host configuration for syslog.conf p [1999/04/11] bin/11092 johan readlink(1) from OpenBSD f [1999/04/13] bin/11114 tjr make(1) does not work as documented with o [1999/04/16] i386/11165 IBCS2 don't work correctly with PID_MAX 9 o [1999/04/23] kern/11293 brian FreeBSD's PPP implementation of LQM appea o [1999/04/23] bin/11294 direct logging to other hosts (no local s o [1999/05/19] kern/11789 obrien ELF machine definition missing for ARM o [1999/06/03] kern/12014 alfred Fix SysV Semaphore handling o [1999/06/06] gnu/12046 markm Perl subsystem does not install all tutor o [1999/06/07] kern/12071 fanf [PATCH] large scale IP aliasing o [1999/06/08] i386/12088 imp Enhancement to ed driver for Linksys 10/1 o [1999/06/21] conf/12324 qa Sysinstall's fdisk partition editor is mi o [1999/07/06] kern/12543 dg [PATCH] cumulative error counters for fxp 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 f [1999/08/05] i386/12993 gibbs "ahc0: Data Parity Error Detected during o [1999/08/09] bin/13042 make doesn't handle wildcards in subdirec o [1999/08/11] bin/13068 billf Don't stamp out score files! o [1999/08/12] bin/13108 authunix_create_default includes egid twi a [1999/08/13] bin/13128 cy pkg_delete doesn't handle absolute pathna o [1999/08/21] bin/13309 billf Fixes to nos-tun o [1999/08/22] misc/13326 additional timeval interfaces for /dev/audio fails for sound a [2001/10/23] kern/31455 n_hibma [PATCH] ohci driver probrem when send dat o [2001/10/23] kern/31456 Register number definition for AMD PCnet f [2001/10/25] kern/31490 Panic in sysctl_sysctl_next_ls on empy no o [2001/10/26] kern/31521 cg pcm0 plays too fast on Intel 82801BA (ICH o [2001/10/27] i386/31535 Can't reboot system: Tyan Thunder K7+ Dua o [2001/10/29] bin/31588 change request to allow mount(1) to set t o [2001/10/29] kern/31624 writev may return undocumented ECONNRESET o [2001/10/30] ports/31630 jmz Port se-ispell install the dictionary in o [2001/10/30] kern/31647 socket calls can return undocumented EINV o [2001/11/01] i386/31686 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/09] misc/31890 new syscons font o [2001/11/10] bin/31906 No method available to unwind atexit(3) s o [2001/11/11] ports/31910 greid comms/sms_client o [2001/11/12] bin/31933 pw can interpret numeric name as userid d a [2001/11/12] ports/31943 dirk mysql323-server port hostname look up fai o [2001/11/14] misc/31981 (mis)feature in getnetent parsing -- comm 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 s [2001/11/15] i386/32014 ppi locks up system during boot o [2001/11/15] docs/32020 doc loader.8 manpage missing tunables o [2001/11/16] ports/32039 greid UPDATE devel/asmutils 0.14 -> 0.15 o [2001/11/17] conf/32067 Problems with spanish keyboard in console o [2001/11/19] conf/32108 Proposed Firewall (IPv4) configuration sc o [2001/11/20] standards/32126standards getopt(3) not Unix-98 conformant f [2001/11/20] misc/32144 murray unattended install with sysinstall doesn' o [2001/11/20] ports/32145 jmz XFree86 doesn't ldconfig itself o [2001/11/26] conf/32288 qa After install: /etc/rc complains if crypt a [2001/11/29] conf/32375 murray sysinstall doesn't respect User generated a [2001/11/30] bin/32411 shutdown's absolute-time handling could b o [2001/12/03] misc/32480 Missing graphic characters in syscons fon o [2001/12/04] bin/32501 quot(8) is stupid regarding the filesyste o [2001/12/04] ports/32508 ports-bugs www/flashplugin-mozilla has malloc bug o [2001/12/08] ports/32604 portmgr Many ports which depends on apache don't f [2001/12/08] misc/32605 nsouch SMBus driver broken o [2001/12/09] kern/32652 joe A new ioctl to uscanner s [2001/12/09] ports/32653 joe Added patches to improve USB scanner supp o [2001/12/09] kern/32659 VM and VNODE leak with vm.swap_idle_enabl o [2001/12/09] gnu/32661 dd send-pr uses $LOGNAME for From and Reply o [2001/12/10] bin/32667 systat waste too much time reading input o [2001/12/10] kern/32671 imp Patch to generate usbdevs.h automatically o [2001/12/10] kern/32677 pciconf -l opens /dev/pci for read/write o [2001/12/10] misc/32680 [PATCH] Allows users to start jails by ho o [2001/12/13] bin/32808 dwmalone [PATCH] tcpd.h lacks prototype for hosts_ o [2001/12/13] kern/32812 roger bktr driver missing tuner for eeprom dete o [2001/12/14] bin/32828 w incorrectly handles stale utmp slots wi p [2001/12/16] kern/32912 mp options misssing TCBHASHSIZE o [2001/12/17] ports/32936 mharo ports/security/keyprint only supports S/K o [2001/12/18] conf/32976 assar Kerberos5 config files not installed by d o [2001/12/18] docs/32979 hmp manpages are not installed for k5admin an s [2001/12/18] ports/32999 arved New ports: devel/ORBacus4 o [2001/12/19] kern/33004 n_hibma Patch for USB (uhci) o [2001/12/19] misc/33007 n_hibma umass device timeout after successive use o [2001/12/19] misc/33013 cg mixer does not have treble/bass for Sound o [2001/12/21] bin/33066 rwatson sysinstall does not write to new disks as o [2001/12/22] i386/33097 sound Crystal 4237b mixer problems o [2001/12/23] kern/33117 empty struct md_coredump in pcb.h and use o [2001/12/23] kern/33124 jhb kthread_create doesnt mark kthreads as kt s [2001/12/23] bin/33133 keyinit outputs wrong next login password o [2001/12/25] gnu/33182 mp gdb seg faults when given handle SIGALRM o [2001/12/26] kern/33203 "got bad cookie" errors on NFS client o [2001/12/29] ports/33320 trevor print/acroread5 does not install the Nets o [2001/12/31] conf/33395 imp better way to use more than one pccard ne o [2002/01/05] docs/33589 doc Patch to doc.docbook.mk to post process . o [2002/01/07] docs/33645 assar k5list(1) contains many incorrect "klist" a [2002/01/07] bin/33661 PAP AuthAck/AuthNak parsing problem in pp f [2002/01/08] kern/33696 mbr panic: Driver mistake: repeat make_dev("a o [2002/01/08] kern/33707 sound ICH (82801AA) cannot be used for mono rec o [2002/01/09] docs/33724 chern a very minor documentation error o [2002/01/09] misc/33736 yokota Scroll-lock on the console prevents shutd o [2002/01/09] conf/33753 Intel ICH2 and NVidia device ID updates o [2002/01/10] bin/33774 Patch for killall(1) o [2002/01/10] misc/33778 joe crunchgen enhancements o [2002/01/12] bin/33809 mux mount_nfs has trouble with embedded ':' o [2002/01/13] bin/33834 tjr strptime(3) is misleading o [2002/01/13] docs/33852 doc split(1) man page implies that input file o [2002/01/13] misc/33866 Last Hr, Last ... may be incorrect on mac o [2002/01/14] docs/33877 doc Documentet behaviour of SF_flags for non- o [2002/01/14] ports/33906 ports-bugs [PATCH] tic program as a port for easier o [2002/01/16] bin/33941 /usr/sbin/dev_mkdb dumps core a [2002/01/16] kern/33963 bmah Messages at the serial IO port device pro o [2002/01/16] misc/33965 Programmable keys of the keyboard (Olidat o [2002/01/16] conf/33967 Alternative Italian keymap o [2002/01/17] ports/33980 benno Can't use sgmltools-lite-3.0.0 port o [2002/01/17] i386/34010 keyinit takes passwords less than 10 char o [2002/01/21] bin/34146 newfs defaults and vfs.usermount=1 tug at o [2002/01/22] misc/34171 yar ftpd indiscrete about unprivileged user a o [2002/01/23] misc/34195 iedowse setting the action for SIGCHLD to SIG_IGN o [2002/01/23] bin/34199 dwmalone [PATCH] top(1) RES/rss display incorrect o [2002/01/24] alpha/34232 alpha rpc.statd throws alignment errors o [2002/01/24] docs/34239 trhodes tunefs(8) man page doesn't describe argum o [2002/01/26] misc/34309 gad lpd does not garantie that controlfiles b a [2002/01/26] conf/34316 sheldonh Uncomment kserver-adm to /etc/services o [2002/01/27] conf/34355 [PATCH] rc.conf comment misleading (firew o [2002/01/28] bin/34394 peter tgetent returns wrong value in libtermcap o [2002/01/29] misc/34412 maxim tftp will still try and receive traffic e o [2002/01/30] ports/34442 ports-bugs xt, xalan-j, saxon should have the same C o [2002/01/31] conf/34494 n_hibma usb configuration problem - usb does not o [2002/01/31] bin/34497 calendar(1) does not understand calendars s [2002/01/31] bin/34498 Error in vi manpage. o [2002/01/31] bin/34519 pkg_check(8) does not return exit code >0 o [2002/02/01] gnu/34538 mp_set_memory_functions not extern "C"'d f [2002/02/02] ports/34550 ports-bugs ghostscript-gnu-nox11 portversion 6.51 fa f [2002/02/02] ports/34565 ports-bugs graphics/blender port is broke o [2002/02/03] kern/34591 ICMP bandwidth limiting does not indicate o [2002/02/03] ports/34597 eivind [PATCH] Update ports/mail/isync to 0.8 s [2002/02/04] misc/34621 billf i have a patch for (lol) /usr/games/fish o [2002/02/04] bin/34628 jkh pkg-routines ignore the recorded md5 chec o [2002/02/06] kern/34665 darrenr ipfilter rcmd proxy "hangs". f [2002/02/06] misc/34673 Second call to select() waits ~100ms befo o [2002/02/06] bin/34676 mbr dhclient always in -q quiet mode (PATCH E o [2002/02/07] gnu/34709 [patch] Inaccurate GDB documentation o [2002/02/07] ports/34714 ache unzip(1) breaks filenames in non-ASCII ch f [2002/02/07] bin/34728 murray DHCP hostname set as Hexadecimal string o [2002/02/08] conf/34729 sheldonh treat smbfs as network file system in /et o [2002/02/08] kern/34747 njl Please add USB floppy entry o [2002/02/09] bin/34759 Phantasia does not accept [enter] key o [2002/02/09] conf/34776 rc.diskless1 creates insufficiently sized o [2002/02/10] misc/34788 dwmalone dmesg issues with console output o [2002/02/10] ports/34796 jmz wrong path in /etc/XF86Config (purely cos o [2002/02/11] kern/34820 FreeBSD should be able to beep after shut o [2002/02/11] bin/34832 /usr/share/man/cat3/setkey.3.gz linked to o [2002/02/11] bin/34834 "fix" of du(1) and -h o [2002/02/11] bin/34843 fenner `tcpdump port echo' filters for port 4 in o [2002/02/11] kern/34854 sound /src/sys/dev/sound doesn't work correctly o [2002/02/12] bin/34874 Netstat output to small s [2002/02/12] ports/34878 chern sysinstall o [2002/02/12] kern/34880 luigi Impossibility of grouping IP into a pipe p [2002/02/14] misc/34935 New locale (Cyrillic Windows Codepage 125 o [2002/02/14] kern/34942 sound Attempt to play -> "pcm0: play interrupt o [2002/02/14] kern/34952 joe Mouse cursor invisible with USB mice and o [2002/02/15] bin/34955 doc [PATCH] ps(1) is out of touch with realit o [2002/02/15] kern/34963 identify procs belonging to the same jail o [2002/02/15] kern/34965 4.4, 4.5 freeze at boot time on ASUS P2B a [2002/02/16] docs/35011 doc There are no commands called "diskless" o o [2002/02/16] bin/35018 brian enhancing daily/460.status-mail-rejects s [2002/02/17] bin/35070 math(3) references section "3m", etc. o [2002/02/18] i386/35078 Uninitialized pointer dereference in func o [2002/02/18] i386/35101 chern cvusupit and other packages won't extract 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/21] misc/35172 Please update am-utils(amd) into newer ve o [2002/02/21] kern/35175 obrien ptrace(PT_DETACH, ....) doesn't do signal o [2002/02/22] docs/35222 doc mailing list archive URL regexp suboptima o [2002/02/23] kern/35234 World access to /dev/pass? (for scanner) o [2002/02/23] conf/35242 Change to etc/periodic/weekly/330.catman f [2002/02/23] misc/35245 brian unwanted stealth behaviour (inbound icmp o [2002/02/23] conf/35262 Generation of boot block for headless ope f [2002/02/23] kern/35269 kris possible panics with 4:1 filesystem ratio o [2002/02/24] kern/35289 Brooktree device doesnt properly signal a o [2002/02/25] kern/35324 Plug and Play probe fails to configure Di s [2002/02/25] bin/35333 send-pr(1) vim syntax highlighting suppor o [2002/02/27] ports/35372 ports-bugs pgp6 ports fails to compile on alpha plat o [2002/02/27] kern/35377 process gets unkillable (-9) in "ttywai" o [2002/02/27] misc/35381 incorrect floating-point display of large o [2002/02/28] misc/35400 qa sysinstall could improve manipulation of o [2002/03/01] bin/35451 PATCH: pkg_add -r able to save local copy s [2002/03/01] ports/35459 ports-bugs portupgrade doesn't clean up dependencies f [2002/03/02] ports/35481 edwin New port: console text editor looks like o [2002/03/04] misc/35542 bde BDECFLAGS needs -U__STRICT_ANSI__ o [2002/03/04] conf/35545 Enhanced periodic scripts o [2002/03/05] bin/35568 make declares target out of date, but $? f [2002/03/06] i386/35599 murray install o [2002/03/06] docs/35602 doc dump(8)/restore(8) pages don't explain "a o [2002/03/06] docs/35607 doc dump(1) page needs discussion of scary er 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 sheldonh [patch] missing dep in libiconv prevents o [2002/03/07] ports/35638 markm tn3270 dumps core unconditionally o [2002/03/07] ports/35639 max executable name conflicts: ploticus and s o [2002/03/07] docs/35642 doc lo(4) page maybe should document optional o [2002/03/07] docs/35644 doc lo(4) page presumes familiarity with prin o [2002/03/07] docs/35646 doc cp(1) page needs a "Bugs" section. o [2002/03/07] docs/35647 doc www; combine query-by-number and multi-fi o [2002/03/07] docs/35648 doc rc.conf; add note about "flags" to both f o [2002/03/07] docs/35652 trhodes bsd.README seriously obsolete o [2002/03/08] bin/35671 wrong comments in rc.diskless1 o [2002/03/08] docs/35686 doc blackhole(4) page seems to contradict its o [2002/03/08] docs/35687 doc /etc/nsmb.conf missing mention of readers o [2002/03/08] docs/35696 trhodes mount_smbfs(8) references a nonexistent n o [2002/03/09] docs/35711 doc the "gnats page" should move to its own s o [2002/03/09] bin/35717 which(1) returns wrong exit status for m o [2002/03/09] misc/35727 man(1) program should not display (old) d o [2002/03/10] docs/35732 doc adduser(8) page has obsolete reference an f [2002/03/11] misc/35764 nork Icewm does not display APM status properl o [2002/03/11] ports/35767 portmgr make_index script does not deal with syml o [2002/03/11] bin/35769 w does not correctly interpret X sessions o [2002/03/12] bin/35838 Change to size of WID_IF in usr.bin/netst o [2002/03/13] kern/35846 imp timeout in wi_cmd 11, machine hangs for a o [2002/03/14] bin/35886 [patch] Enhancement: custom time format f o [2002/03/14] bin/35894 bbraun popen.c in cron won't build without LOGIN o [2002/03/14] ports/35897 ports-bugs upgrading the linux_base port runs into t o [2002/03/15] docs/35943 doc at(1) config files are misplaced in /var/ p [2002/03/15] docs/35951 trhodes disklabel(8) manual confuses partitions a o [2002/03/15] docs/35953 doc hosts.equiv(5) manual is confusing or wro o [2002/03/17] ports/36020 jmz Update port: print/musixtex T.98 -> T.104 o [2002/03/17] java/36024 ports-bugs port update: OpenJIT 1.1.16 for JDK 1.3.1 f [2002/03/17] ports/36034 edwin new port databases/pg-crypto s [2002/03/18] standards/36076standards Implementation of POSIX fuser command o [2002/03/19] misc/36110 dmesg output corrupt if /dev/console is b o [2002/03/19] ports/36112 portmgr [PATCH] New feature for whole ports tree: o [2002/03/19] conf/36118 re 4.5 Upgrade says it won't touch /usr/src, o [2002/03/20] bin/36136 savecore -z option does not work o [2002/03/20] misc/36143 Dynamic (non linear) mouse acceleration a o [2002/03/20] misc/36154 doc Getting USB mouse to work: usbd and mouse o [2002/03/21] kern/36170 an(4) does an_init() even if interface is o [2002/03/24] bin/36262 [PATCH] Fixed rusers idle-time reporting o [2002/03/26] alpha/36327 alpha trap within cvt() while attempting to pri o [2002/03/26] misc/36359 fxp driver and Intel Pro/100 S NIC (0002B o [2002/03/27] bin/36374 Patch (against core dumps) and improvemet o [2002/03/27] kern/36381 sos ata + hw.ata.wc=1: high CPU load for larg o [2002/03/27] misc/36385 luigi crunchgen does not handle Makefiles with o [2002/03/27] misc/36392 cron starts before vi recover, and vi rec o [2002/03/28] kern/36425 bump up SYS_NMLN in sys/utsname.h o [2002/03/28] docs/36432 doc Proposal for doc/share/mk: make folded bo a [2002/03/28] docs/36447 trhodes chown(8) manual misdescribes handling of o [2002/03/28] docs/36449 doc symlink(7) manual doesn't mention trailin p [2002/03/28] docs/36459 simon tftp(1) manual's "get" syntax/description s [2002/03/28] 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 /usr/bin/calendar can't handle recurring o [2002/03/29] ports/36503 ports-bugs several files conflict in databases/libio o [2002/03/30] ports/36545 jmz mwrite is an absolute symbolic link to /u o [2002/03/30] bin/36553 gad Two new features in newsyslog(8) o [2002/03/30] misc/36556 patch: regular expressions for tcpwrapper o [2002/03/30] ports/36560 rse bug fix for the eperl package f [2002/03/31] kern/36569 njl umass fails when RiteLink Pocket Disk is o [2002/04/01] bin/36626 login_cap(3) incorrectly claims that all o [2002/04/01] misc/36646 dwmalone [PATCH] Top does not work correctly in a p [2002/04/02] kern/36682 joe USB isochroneous transfer doesn't report o [2002/04/03] docs/36724 darrenr ipnat(5) manpage grammar is incomplete an f [2002/04/03] docs/36726 trhodes Handbook lacks information about hardware o [2002/04/03] docs/36727 trhodes Mail chapter of Handbook is incomplete o [2002/04/04] bin/36740 make ps obey locale (particularly for tim o [2002/04/04] bin/36757 EnhancementRequest binary which ought to a [2002/04/04] ports/36766 ade Incompatibility between autoconf, automak o [2002/04/05] bin/36786 make ps use 24-hour time by default o [2002/04/06] ports/36832 kuriyama apache13-* coredumps when using XML::Pars o [2002/04/07] ports/36849 cy FVWM-Themes fails to switch themes o [2002/04/08] java/36901 glewis WITHOUT_X11 Knob for port java/jdk13 o [2002/04/08] bin/36902 [patch] proposed new format code %N for s o [2002/04/08] misc/36916 qa DOS active partition flag lost in libdisk o [2002/04/09] ports/36933 portmgr [PATHCES] New feature for pkg_create and o [2002/04/09] java/36951 glewis Java (aka 1.3.1-p6-root-020405-00:26) cor o [2002/04/09] kern/36952 ldd comand of linux does not work o [2002/04/10] bin/36960 calendar doesn't effect -t option. o [2002/04/10] kern/36983 CD9660 unicode to utf-8 [hack] o [2002/04/11] bin/37013 ls directory name output trailing slash d o [2002/04/13] misc/37034 Fixed maximum character length in EUC o [2002/04/13] misc/37047 brian daily_status_mailq_shorten doesn't produc o [2002/04/14] misc/37073 Few new tips for FreeBSD-tips fortune o [2002/04/14] bin/37074 bp [PATCH] Typographical error in output of o [2002/04/14] bin/37083 small improvement to talk(1): add clocks o [2002/04/15] bin/37096 Fixes to fsdb command-line handling [patc f [2002/04/16] i386/37137 qa FreeBSD install doesn't recognize version o [2002/04/16] misc/37160 qa /stand/sysinstall coredumps when trying t o [2002/04/16] misc/37161 ext2 linux file system, error handling la o [2002/04/17] ports/37186 ports-bugs Dbview contains an error, because of whic f [2002/04/23] kern/37374 joe [PATCH] closing ums0 blocks with wmesg uh o [2002/04/23] i386/37379 /dev/MAKEDEV entry for RocketPort is brok o [2002/04/23] misc/37380 jhb boot0 partition list is outdated (patch i o [2002/04/23] misc/37387 bsdmainutils/calendar Hungarian addon fil o [2002/04/23] conf/37395 peter even with NO_SENDMAIL=true, /usr/sbin/sen o [2002/04/24] bin/37424 nfsstat reports negative values o [2002/04/24] misc/37425 df gives wrong ouput > 1TB o [2002/04/24] misc/37434 mbr dhclient generates pointless log messages o [2002/04/24] bin/37437 Add HTTP-style support to {vis,unvis}(1). o [2002/04/24] bin/37442 [PATCH] sleep.c to support time multiplie p [2002/04/25] bin/37448 obrien [PATCH] ldd/rtld support for more informa o [2002/04/25] ports/37462 jmz dvips is no more available separately fro o [2002/04/27] ports/37518 grog gmat port CATALOG needs updating o [2002/04/29] kern/37554 jmg [PATCH] Make ELF shared libraries immutab o [2002/04/29] kern/37555 vnode flags appear to be changed in non-s o [2002/04/29] misc/37562 Incorrect information in /usr/share/examp o [2002/04/29] misc/37569 [PATCH] Extend fstab(5) format to allow f o [2002/04/29] ports/37574 taoka ports/print/pips-sc20 file not found on m o [2002/04/30] ports/37596 shige EMACS_PORT_NAME=xemacs21 forks make infin o [2002/04/30] kern/37600 sound [Partial PATCH] t4dwave drive doesn't rec o [2002/04/30] conf/37611 proposed /etc/rc.jails for jail(8) manage s [2002/05/01] ports/37654 arved Update textproc/xml4j to 4.0.1 o [2002/05/01] kern/37657 sound /dev/dsp and /dev/audio skip the first 32 o [2002/05/02] bin/37672 pw(8) prints warnings after successful NI o [2002/05/02] kern/37675 grog Page fault when newfs'ing a vinum volume o [2002/05/02] bin/37676 threads libc_r: msgsnd(), msgrcv(), pread(), pwri o [2002/05/03] java/37711 znerd New port: Beacon-agent 0.6.3 (Multicast B o [2002/05/03] java/37712 znerd New port: Beacon server v0.8.9 (Beacon mu o [2002/05/03] ports/37713 seanc AIM Transport doesn't work correctly with o [2002/05/03] bin/37715 "pkg_info -g package_name_version" fail o [2002/05/03] docs/37719 doc Detail VOP_ naming in a relevant man-page o [2002/05/03] misc/37732 joe usbd start in wrong place in /etc/rc in 4 o [2002/05/04] bin/37733 su(1) does not behave the way it is descr o [2002/05/04] kern/37761 net process exits but socket is still ESTABLI s [2002/05/05] java/37771 znerd New Port: audio/jmax s [2002/05/07] docs/37843 doc manual for pthread_setschedparam is wrong o [2002/05/07] bin/37844 ru [PATCH] make knob to not install progs wi o [2002/05/09] java/37904 znerd New Port: database/isql-viewer (a JDBC 2. o [2002/05/09] conf/37909 dougb make distribution DESTDIR=/path -DNO_MAKE o [2002/05/09] gnu/37910 PATCH: make send-pr(1) respect &'s in /et o [2002/05/11] ports/37962 markm ports/lang/gcl does not build o [2002/05/12] i386/37999 qa In /stand/sysinstall, 's' selects Options o [2002/05/13] alpha/38031 alpha osf1.ko not loaded during boot-time of li o [2002/05/13] ports/38034 ports-bugs compaq-cc (under linux-emu) installes man o [2002/05/13] i386/38055 qa In Install, Groups (creation) item should o [2002/05/13] i386/38056 qa In Install, User (creation)'s "Member gro o [2002/05/13] misc/38057 qa "install" document doesn't display correc o [2002/05/13] docs/38061 ume Typos in man pages for faith & faithd o [2002/05/14] ports/38086 rse eperl does not build CFLAGS recursive err o [2002/05/14] ports/38090 ade devel/m4 port PREFIX vs LOCALBASE o [2002/05/15] ports/38125 ports-bugs ApacheCylical Link error/bug in Virtualse o [2002/05/16] docs/38148 trhodes In manpages "timezone" should be "time zo o [2002/05/16] kern/38156 quotacheck chokes on user -2 o [2002/05/17] bin/38168 installing curses programs and terminfo d o [2002/05/18] docs/38225 doc change "CDROM" to "CD-ROM" o [2002/05/18] www/38243 www Ports search for 'IMP' vs look in Mail ca o [2002/05/18] bin/38256 linking pax to pax_{cpio|tar} o [2002/05/19] ports/38301 kiri upgrade www/w3-4 to 4.0.47 p [2002/05/19] bin/38303 billf tftpd -c patch o [2002/05/20] misc/38347 new library function abs2rel and rel2abs. o [2002/05/21] bin/38388 nectar request to add "openssl starttls" command o [2002/05/22] ports/38406 obrien incorrect .so in g++31.1 man page o [2002/05/22] ports/38408 wjv zope-zmysqlda does not run o [2002/05/22] kern/38419 joe add name "CanoScanN676U" in uscanner o [2002/05/22] kern/38429 [PATCH] getgpid and getsid work for proce o [2002/05/22] kern/38445 Centralized ptrace() permission checking o [2002/05/23] misc/38452 joe Logitech USB iFeel: device_probe_and_atta o [2002/05/23] misc/38468 imp Write drivers for Intel PRO/Wireless 2011 o [2002/05/23] i386/38477 qa In sysinstall's Choose Distributions scre o [2002/05/23] i386/38478 qa In sysinstall's Choose Distributions scre o [2002/05/23] i386/38480 qa sysinstall should prompt for normal users s [2002/05/24] www/38500 www gnats web form is overenthusiastic about f [2002/05/24] ports/38516 edwin ICQv7 transport for the Jabber Server o [2002/05/24] i386/38524 cons25 doesn't support F-keys beyond 12 f [2002/05/25] ports/38539 edwin New port: devel/libcfg+ o [2002/05/25] docs/38540 rpratt sysinstall application name should be Sys o [2002/05/25] docs/38556 doc EPS file of beastie, as addition to exist o [2002/05/26] misc/38583 qa sysinstall installs crypto sources when / o [2002/05/26] ports/38593 portmgr Third level ports o [2002/05/27] bin/38610 qa Sysinstall should be able to mount ISO im o [2002/05/27] docs/38620 doc Committers Guide and CVS o [2002/05/27] kern/38626 luigi dummynet/traffic shaper: RED: max_th and o [2002/05/29] misc/38727 mptable should complain about garbage arg o [2002/05/29] kern/38730 mikeh Memorex scrollpro mouse is not fully func o [2002/05/30] kern/38749 murray Diskless booting fails with some DHCP ser o [2002/05/31] docs/38772 doc firewall_type feature not mentioned on Ha f [2002/06/01] ports/38800 ports-bugs update www/roxen to Roxen WebServer 2.2.2 o [2002/06/02] i386/38826 RFE: BootMgr should provide more identify o [2002/06/02] kern/38828 DPT PM2012B/90 doesn't work o [2002/06/02] conf/38829 bootblock recompile instructions in handb p [2002/06/03] docs/38850 keramida handbook/kernelopts/ should be in Develop o [2002/06/03] ports/38853 portmgr net/ethereal: configure fails o [2002/06/03] misc/38854 qa Resetting the sysinstall during setup cau f [2002/06/03] kern/38870 kernel-panic when coping data from a NFS- o [2002/06/03] ports/38876 tegge devel/linuxthreads: pkg-plist ignores NOP o [2002/06/05] bin/38931 Cleanup for WARNS=4 of src/games/fortune/ o [2002/06/05] misc/38937 delay between tracks in digital audio dum o [2002/06/05] bin/38940 Change: an option to *stat to allow supre p [2002/06/06] ports/38965 kde [PATCH] kapptemplate fails on FreeBSD o [2002/06/06] kern/38967 sound 4/22/02 pcm driver merge appears to break o [2002/06/07] docs/38982 doc developers-hanbook/Jail fix p [2002/06/08] docs/39044 tjr The man page for rot13(6) never mentions o [2002/06/08] kern/39047 IPSEC Compression (IPCOMP) broken in tunn o [2002/06/09] java/39080 sobomax java/javavmwrapper: Functionality enhance o [2002/06/10] ports/39095 mharo ports/net/nttcp and ports/net/ttcp appear o [2002/06/10] ports/39102 trevor new category requested: finance p [2002/06/10] bin/39116 tjr /usr/bin/printf o [2002/06/12] conf/39192 sound [PATCH] Save pcm mixer settings during re a [2002/06/12] ports/39193 edwin [maintainer-update] net/papaya update to o [2002/06/12] bin/39198 sh aborts on variables with periods o [2002/06/12] misc/39201 ptrace(2) and rfork(RFLINUXTHPN) confuse o [2002/06/12] docs/39213 doc No rc(4) man page o [2002/06/13] standards/39256standards [v]snprintf aren't POSIX-conformant for s o [2002/06/14] conf/39306 The /etc/rc file should know if is runnin o [2002/06/15] misc/39347 use of /usr/bin/* utils in /etc/rc.diskle o [2002/06/15] docs/39348 doc kenv fetch of hostname requires dhcp/boot o [2002/06/16] misc/39360 qa If linux emu is added as a dependency (an o [2002/06/16] ports/39390 gnome Make graphics/imlib not depend upon GTK+ o [2002/06/17] misc/39425 Auto mounted directory was not found at b o [2002/06/17] misc/39439 tcopy will not duplicate tapes with block o [2002/06/18] bin/39463 mtm [PATCH] Add several options to fingerd o [2002/06/18] misc/39466 find -xdev hangs on dead NFS mounts (/etc s [2002/06/18] ports/39476 ports-bugs profxp will run but when you fxp a file i 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/19] docs/39532 doc 'find' man page should a [2002/06/19] ports/39544 ports-bugs mayavi port disfunctional o [2002/06/20] i386/39574 qa Error mounting /dev/acd0c on /dist: No su o [2002/06/20] bin/39576 [PATCH] tail -f for multiple files p [2002/06/20] bin/39578 add more russian holydays s [2002/06/20] conf/39580 insecure default settings o [2002/06/20] java/39600 znerd New port: jdictionary-ger-hun 1.4 - Germa o [2002/06/20] java/39603 znerd New port: jdictionary-eng-ger 1.4 - Engli o [2002/06/21] ports/39634 jim Port pclock unaligned access on alpha o [2002/06/22] bin/39676 obrien lukemftpd manual pages fix + examples o [2002/06/22] kern/39681 hidden kernel boot tunables added to sysc o [2002/06/24] misc/39772 imp pccardd is slow to install a PCCARD. o [2002/06/24] bin/39819 tjr cleaning bin/sh code from warnings o [2002/06/24] docs/39824 doc Various tweaks for doc/en_US.ISO8859-1/bo o [2002/06/25] misc/39864 robert hostname instead of IP in w -n output o [2002/06/25] bin/39866 johan cleaning sbin/fsdb code from warnings o [2002/06/25] bin/39867 johan cleaning sbin/mount_cd9660 and sbin/mount o [2002/06/26] bin/39893 setusercontext library call differs umask o [2002/06/26] bin/39905 johan cleaning sbin/restore code from warnings o [2002/06/28] conf/39976 vi recovery halting boot process o [2002/06/29] ports/40002 wjv py-4suite: XSLT import error o [2002/06/29] kern/40017 [patch] allows config(8) to specify confi o [2002/06/29] kern/40021 [patch] use ld(1) to build kernel with li p [2002/06/30] misc/40057 ceri send-pr -a flag does not work with -f o [2002/06/30] kern/40058 imp lockup on 5.0 DP1 - Xircom X3201 (RealPor o [2002/07/01] misc/40081 sound noise in sound output with built-in CMedi o [2002/07/02] ports/40107 trevor ports/audio/festogi-spanish has a checksu o [2002/07/02] ports/40121 ache standard Apache port creates sbin link o [2002/07/02] ports/40124 kris Patch to wdm to allow long passwords o [2002/07/02] bin/40127 [PATCH] Add functions for PID-file handli o [2002/07/03] ports/40163 cy screen w/o suid and locale o [2002/07/04] docs/40196 doc man find does not describe -follow s [2002/07/04] misc/40197 sos BurnCD doesn't "just work" at 4.6-p1 f [2002/07/06] misc/40273 dougb some more fortunes o [2002/07/06] misc/40280 joe I add uscanner entory o [2002/07/07] ports/40284 mi ports/x11/djvuplugin tarball no longer ex o [2002/07/07] misc/40298 using swapfile as /tmp o [2002/07/08] kern/40369 rman_reserve_resource - when "count > (en o [2002/07/09] misc/40378 standards stdlib.h gives needless warnings with -an o [2002/07/09] conf/40391 imp sysinstall with PCCARD<->ISA bridge gets o [2002/07/10] docs/40423 doc Keyboard(4)'s definition of parameters to o [2002/07/10] docs/40443 doc Update books/faq/book.sgml for USB .ko's o [2002/07/11] ports/40452 wollman ports/www/mod_auth_kerb mastersite doesn' o [2002/07/12] ports/40511 sumikawa update for net/zebra (no-ipv6 option) o [2002/07/12] kern/40516 ti driver has no buadrate set o [2002/07/13] ports/40525 kiri [new port] mail/mew2-xemacs-devel-mule 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] misc/40552 alternate syscons font for iso-07 encodin o [2002/07/14] ports/40555 steve x11-toolkits/open-motif requires mkhtmlin o [2002/07/14] kern/40563 gif driver can clobber route/arp table f [2002/07/14] bin/40570 mbr dhclient freeze the whole thing o [2002/07/14] bin/40572 vipw prints silly message if $EDITOR fail o [2002/07/14] misc/40577 post-October 2001 Dell Inspiron 2500's (a o [2002/07/15] bin/40597 add /sbin/fdisk ability of showing extend o [2002/07/15] bin/40617 brian /usr/sbin/ppp is not able to bind the nat o [2002/07/16] misc/40657 joe Logitech iFeel usb mouse will not attach o [2002/07/16] ports/40659 dirk php3 and GD problem p [2002/07/16] standards/40669standards command command does not support `-p' opt o [2002/07/16] misc/40671 threads pthread_cancel doesn't remove thread from o [2002/07/17] misc/40693 the system reboot alone with no reason a [2002/07/17] ports/40699 portmgr allow exclude patterns in `make search` o [2002/07/17] kern/40711 sound CT5880-C sometimes fails to output sound o [2002/07/18] kern/40745 Inconsistency between net/if.c and struct o [2002/07/19] kern/40763 [UPDATED PATCH] Introduction of non-stric o [2002/07/19] conf/40777 disktab does not support 2.88MB floppies o [2002/07/21] docs/40851 doc [PATCH] "mergemaster -p" in UPDATING's "C o [2002/07/21] conf/40855 murray psuedo-device bpf need note in LINT and G o [2002/07/21] ports/40866 ports-bugs sml-nj port CM autoloading compilation pr o [2002/07/22] ports/40915 billf Fix pkg-plist for net/ethereal o [2002/07/23] kern/40919 usage of ucred->cr_uid in sys/netinet/in_ o [2002/07/23] kern/40926 qa After Upgrading or Clean Installing 4.6, o [2002/07/23] kern/40927 sound sound dies with pcm:play:0 play interrupt o [2002/07/24] kern/40948 joe USB HP CDW8200 does not work o [2002/07/24] bin/40958 apm on Acer TravelMate 351 could not resu o [2002/07/25] ports/40975 knu Uncatched coredump of pkg_info while pkgd o [2002/07/25] bin/40980 du(1)'s -h and -k options interact confus o [2002/07/26] bin/41012 brian /etc/periodic/daily/440.status-mailq assu o [2002/07/27] bin/41060 ready to import gzip 1.3.3 o [2002/07/27] bin/41070 added .warning in make(1) + two fixes o [2002/07/27] bin/41071 make NO to NO_ transition patch o [2002/07/28] docs/41089 doc pax -B option does not mention interactio o [2002/07/30] bin/41159 new sed -c option to allow ; as a separat o [2002/07/30] misc/41179 LD_LIBRARY_PATH security checks o [2002/07/30] bin/41190 in sed, report the { linenum instead of E o [2002/07/31] ports/41209 gnome www/mozilla browser serializes DNS lookup o [2002/07/31] misc/41213 top(1) blocks if NIS-related entries in p o [2002/07/31] misc/41215 console revert back to kbd0 (AT) after KV o [2002/07/31] kern/41220 [PATCH] Minor sk driver enhancements o [2002/07/31] ports/41224 dburr update port: textproc/yodl o [2002/08/01] misc/41238 qa problems with FreeBSD installation on a d o [2002/08/01] conf/41241 murray sysinstall build uses kbdcontrol keymaps o [2002/08/01] misc/41243 joe USB, getting full desc failed, HID device o [2002/08/02] ports/41259 ports-bugs Info directory change for various GNU Ema o [2002/08/02] docs/41270 doc confusing directions for kernelconfig cha o [2002/08/02] bin/41271 Non-suid-crontab. a [2002/08/03] ports/41282 ports-bugs New_Ports japanese/stevie-* o [2002/08/04] bin/41307 ru libalias: logging of links lifecycle (add o [2002/08/04] misc/41309 brian security check scripts do not delete temp o [2002/08/04] www/41312 cvs RCS IDs are off-by-one in the NetBSD cvsw o [2002/08/04] kern/41317 trhodes reflect kernel building user for sudo-ers o [2002/08/05] i386/41364 imp pccard: NewMedia "Bus Toaster" SCSI card o [2002/08/06] misc/41379 Cannot browse directory tree on FreeBSD m o [2002/08/07] ports/41400 benno sgmltools-lite update to 3.0.3 o [2002/08/07] kern/41415 joe Some USB scanner cannot talk to uscanner o [2002/08/07] docs/41423 doc Update FAQ: attrib command for windows du o [2002/08/07] ports/41434 ports-bugs New port: www/light: another Mozilla-base o [2002/08/09] misc/41490 sound C-Media 8738 sound card static o [2002/08/10] misc/41515 jhb boot0cfg corrupts slice table o [2002/08/10] bin/41526 symlinked mount points get mounted more t o [2002/08/11] kern/41543 emulation Easier wine/w23 support o [2002/08/11] kern/41555 Add support of VScom titan PCI-800L f [2002/08/11] bin/41556 obrien [PATCH] wtmp patch for lukemftpd o [2002/08/11] misc/41566 obrien file(1) out of date p [2002/08/12] standards/41576standards POSIX compliance of ln(1) a [2002/08/12] bin/41583 assorted mtree bugs (+fixes) o [2002/08/13] kern/41631 PATCH to add sysctl knob to disable clone o [2002/08/14] misc/41674 ken iostat column formatting overlaps o [2002/08/17] i386/41743 sound No sound from SiS630s controller o [2002/08/17] misc/41744 qa Cannot stop comat22 from being extracted o [2002/08/17] ports/41755 max Wrong letters in Canna iroha dictionary o o [2002/08/18] docs/41761 doc Update for /ru/internal/ part of site o [2002/08/18] misc/41771 '/etc/ttys' and X p [2002/08/18] conf/41772 dougb can't disable keybell o [2002/08/19] ports/41773 ports-bugs new port: x11-servers/Mozdev-PrintServer o [2002/08/19] ports/41784 ports-bugs vmware2 causes panic on recent -current o [2002/08/19] docs/41787 doc man page for route (Section 8) missing de o [2002/08/19] docs/41791 doc Documentation formatting error o [2002/08/19] docs/41807 doc natd -punch_fw "bug" o [2002/08/20] misc/41817 pw groupshow doesn't include the login gr o [2002/08/20] docs/41820 doc Device driver confusion in Handbook (2.3) o [2002/08/20] ports/41829 ports-bugs New port: mail/squirrelmail-devel o [2002/08/20] ports/41836 ports-bugs new port - virus filtering tool for qmail o [2002/08/21] conf/41855 improvment of /etc/rc.diskless2 script o [2002/08/21] kern/41856 VESA splash screen problems on ThinkPad 2 o [2002/08/21] docs/41879 hrs cleanup to DOCROOT/share/sgml/freebsd.dsl o [2002/08/22] bin/41902 [PATCH] Add queue depth to systat -v disk o [2002/08/22] docs/41919 blackend MINI kernel for bootfloppy (Handbook p.34 a [2002/08/23] ports/41945 ade bsd.port.mk: does not run ACLOCAL o [2002/08/23] misc/41947 hexdump(1) unprintable ASCII enhancement o [2002/08/23] misc/41949 qa sysinstall sorts /etc/rc.conf during netb o [2002/08/25] ports/42018 ports-bugs pkg_info with PKG_PATH searches through t o [2002/08/25] i386/42022 qa sysinstall in non-interactive mode prompt a [2002/08/27] docs/42058 doc Documentation: Installing Oracle 8i onto o [2002/08/27] kern/42065 kern.ps_showallprocs has no effect on /pr o [2002/08/27] misc/42084 luigi PicoBSD's 'netstat -i' reports negative I o [2002/08/28] ports/42134 ports-bugs linux-gtk PORTREVISION contaminates other o [2002/08/28] gnu/42154 kan [patch] gnu: libobjc redefines MIN and MA o [2002/08/29] i386/42162 qa Installation (sysinstall) crashes, md0c f o [2002/08/29] misc/42167 du uses linear search for duplicate inode o [2002/08/29] docs/42182 trhodes Making Dedicated Mode disks doc out of da o [2002/08/30] docs/42210 gioria doc/en_US.ISO8859-1/articles/releng/branc f [2002/08/30] bin/42213 joe moused(8) seems to delay some mouse event o [2002/08/30] bin/42217 libdisk segfaults with 1024 bytes/sector o [2002/08/31] kern/42274 jlemon Convert defined variable into tuneable as a [2002/08/31] bin/42275 roam [patch] sftp coredump if file specified b o [2002/09/01] ports/42281 ports-bugs lang/rexx-imc - addition of UPPER patch o [2002/09/01] ports/42295 perky New port: Webware for Python (Web applica o [2002/09/01] ports/42296 ports-bugs New port: mod_webkit (adapter between Web o [2002/09/02] misc/42336 [PATCH] ISO-fication of /usr/src/contrib/ o [2002/09/02] bin/42338 imp pccard_ether should run ipf -y if ipfilte o [2002/09/03] misc/42373 mtm Update to rc scripts to make interface al 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/03] bin/42388 cleaning code from warnings in libm p [2002/09/04] kern/42404 TIOCSCTTY not implemented in linuxulator o [2002/09/04] bin/42419 syslog enhancement for the nologin shell o [2002/09/04] misc/42422 dbm_delete returns -1 instead of 1 when t o [2002/09/04] ports/42427 motoyuki New port apache13-modssl+ipv6 o [2002/09/04] misc/42429 hash_action called with HASH_DELETE does o [2002/09/04] bin/42430 Add -m option to du(1) for compatibility o [2002/09/05] kern/42442 problem in idlequeue/debugging mode ? o [2002/09/05] misc/42461 mdodd if_wi_pci.c,if_wi_pccard.c lack device_re s [2002/09/05] kern/42466 linux: 'ipc' typ=258 not implemented o [2002/09/05] misc/42467 netstat -s does not include fabricated pk o [2002/09/05] misc/42468 mount_smbfs incorrectly handled configura o [2002/09/06] misc/42469 After mounting by mount_smbfs directories o [2002/09/06] ports/42483 cy misc/screen problem with editors/vim-lite o [2002/09/06] conf/42497 rc.network lacks IKE daemon startup p [2002/09/07] ports/42503 kde kuser tries to create the wrong Mailbox o [2002/09/08] misc/42558 www http://www.freebsd.org/search produces in o [2002/09/09] bin/42609 pkg_info -qg doesn't handle missing files o [2002/09/10] ports/42642 fanf cfexecd needs symlink, cfexecd, cfservd a o [2002/09/10] ports/42649 marcel linux_kdump port for source dirs != /usr/ o [2002/09/11] misc/42663 pw useradd assigns unique UID's to multip o [2002/09/11] ports/42668 grog port instant-workstation should be update o [2002/09/12] ports/42708 wjv update biology/emboss to EMBOSS-2.5.1 o [2002/09/13] bin/42725 dwmalone Patch for calendar to support Hungarian n o [2002/09/13] kern/42728 small many problems in src/usr.sbin/ppp/* afte o [2002/09/13] bin/42732 semenu Seg fault in mount_nfs o [2002/09/14] i386/42766 Proposal to perform reboot via jump to BI o [2002/09/14] kern/42769 Boot stalls if the system has a serial co o [2002/09/15] bin/42803 tconv, tic, captoinfo binaries missing fr o [2002/09/15] conf/42807 imp /etc/netstart doesn't run /etc/defaults/p o [2002/09/16] ports/42839 roam New Port: Weedns o [2002/09/18] misc/42934 qa installation procedure on install floppie o [2002/09/19] misc/42956 dlclose gives "invalid shared object hand o [2002/09/19] bin/42974 [patch] ISO 8601 date format option o [2002/09/19] kern/42977 qa FreeBSD installer doesn't probe past EISA o [2002/09/20] ports/42985 tobez Perl5 port doesn't build automatically on o [2002/09/20] bin/43139 /sbin/route -host option doesn't always s o [2002/09/21] kern/43154 tunwrite() does not allocate clusters for o [2002/09/21] conf/43167 Ability to have vnode based file systems o [2002/09/21] misc/43169 caps-lock led doesn't work f [2002/09/21] ports/43171 ports-bugs Port misc/upclient setgid kmem o [2002/09/21] misc/43177 markm Updates and additions to src/games/quiz/d o [2002/09/22] misc/43262 command 'shutdown -r' (also reboot) cause o [2002/09/22] ports/43273 portmgr [patch] make bsd.port.mk checksum check a f [2002/09/23] ports/43282 dirk SONY CD-RW CRX10U don't work with FreeBSD 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] misc/43368 pkg_create fails if target directory does o [2002/09/25] bin/43372 Broken struct ufs_args in ufsmount.h p [2002/09/27] kern/43426 bms mlockall and munlockall system calls are o [2002/09/29] misc/43470 blackend Solid State / x109 article out of date. o [2002/09/29] bin/43471 `ls -l` shows wrong size for big files (> o [2002/09/29] misc/43474 murray dhcp.* values not set in kenv by bootp cl f [2002/09/29] ports/43484 ports-bugs Update port net/arla to 0.35.9 o [2002/09/29] misc/43494 wish: resolv.conf created (again) later i o [2002/09/29] misc/43495 awk - rc/diskless references by full path o [2002/09/29] misc/43496 touch - rc/diskless references by full pa o [2002/09/29] misc/43497 mount -t nfs -> crunchgen incompatible o [2002/09/29] conf/43500 rc.syscons "allscreens" improvements o [2002/09/30] misc/43539 Cannot mout floppy on Compaq Proliant ML3 a [2002/09/30] ports/43540 arved Update Port net/cnet 1.7.7 -> 2.0.3 o [2002/09/30] misc/43543 jhb cdboot does not handle 'relaxed' ISO9660 o [2002/10/01] alpha/43561 jhb kern_shutdown.c uses time_t as 'long int' o [2002/10/01] java/43565 znerd jakarta-tomcat41 port breaks upgrades o [2002/10/01] docs/43569 doc src/share/examples/worm/README out-of-dat o [2002/10/02] kern/43577 [PATCH] New kernel option SHUTDOWN_BEEP o [2002/10/02] bin/43582 passwd(1) fails on nonexistent users o [2002/10/02] bin/43596 pkg_add does not propogate 'remote' to de o [2002/10/02] kern/43610 static-ize some symbols in digi driver o [2002/10/02] kern/43611 static-ize some symbols in sys/crypto o [2002/10/02] kern/43613 static-ize symbol in smbfs code o [2002/10/02] kern/43616 static-ize some functions in sys/net/zlib o [2002/10/03] java/43641 znerd Port www/orion should log to /var/log o [2002/10/04] docs/43651 doc stab(5) incorrectly states to include jus o [2002/10/04] bin/43675 tjr uniq prints last, not first of the identi f [2002/10/04] java/43679 znerd Error starting jakarta-tomcat41 o [2002/10/05] kern/43716 puc driver does not recognize Lava Dual-6 o [2002/10/05] ports/43718 ports-bugs New port: x11-wm/icebgset (set IceWM back o [2002/10/07] ports/43764 ports-bugs New port: audio/wavemagic - An audio play o [2002/10/07] ports/43771 ports-bugs LaTeX ports mixed between print and textp o [2002/10/07] conf/43800 imp Belkin 10/100 Base-TX PCMCIA card not rec o [2002/10/07] conf/43805 imp Asante' FriendlyNet AeroLAN AL1011 802.11 o [2002/10/08] bin/43819 changed truss output for utrace calls o [2002/10/08] docs/43823 simon [PATCH] update to environ(7) manpage o [2002/10/08] misc/43825 qa please remove object files in source (src o [2002/10/09] bin/43857 hm conflicting types in /usr/src/usr.sbin/i4 o [2002/10/09] docs/43861 doc non-trivial typo in wicontrol man page o [2002/10/09] ports/43880 ports-bugs Names of Emacs ports are misleading o [2002/10/10] misc/43886 markm local exploitable overflow in rogue s [2002/10/10] i386/43896 Missing "syscall fstat64" in linux emulat o [2002/10/10] misc/43905 kqueues: EV_SET(kevp++, ...) is non-int o [2002/10/10] ports/43911 grog instant-workstation depend annoyance o [2002/10/11] kern/43916 Olicom OC-2220 (PC-card) hangs on ifconfi o [2002/10/11] java/43929 java linux-ibm-jdk core dumps without System.e o [2002/10/11] bin/43938 roberto ntpd binds to local aliases o [2002/10/11] docs/43941 doc Rationale for Upgrade Sequence o [2002/10/11] java/43947 znerd Checkstyle port should install checkstyle o [2002/10/11] ports/43956 ports-bugs New port: x11-wm/ion-devel o [2002/10/12] docs/43980 darrenr ipf(5) missing "gre" keyword f [2002/10/13] ports/43997 dinoex New port: www/apache13-modsnmp: apache-1. o [2002/10/13] ports/44019 ache Fixes for ftp/wu-ftpd-2.6.2 o [2002/10/13] docs/44034 trhodes Multiple sysctl variables are not documen a [2002/10/14] java/44039 znerd Request for port: CruiseControl a [2002/10/14] java/44041 znerd Generate bsd.java.mk from an XML file o [2002/10/14] misc/44044 sound 4.7-R Freezes half the times snd.ko is lo o [2002/10/14] misc/44058 /dev/ch* is created without group write p o [2002/10/14] docs/44074 doc ln(1) manual clarifications [patch] o [2002/10/15] kern/44098 RealTec-based NIC initialization problem p [2002/10/15] kern/44121 [PATCH] bogus cast removal in hea driver o [2002/10/15] misc/44122 tun0 gets a second ip adress after a disc o [2002/10/16] misc/44150 Diskless kernel may crash, depends on the o [2002/10/17] conf/44170 Add ability to run multiple pppoed(8) on o [2002/10/17] www/44181 www www "Release Information" organization o [2002/10/17] bin/44188 qa cannot install FreeBSD 4.0-4.6 to Compaq o [2002/10/17] bin/44200 ftp site keeps sockets open. o [2002/10/18] bin/44212 Unify 'recursive' options -r and -R o [2002/10/18] kern/44215 PUC driver support for Moxa C320 Intellio o [2002/10/18] kern/44218 Init dies during boot after upgrade from o [2002/10/18] java/44219 java Update port: textproc/cocoon to 2.0.3 o [2002/10/18] java/44251 java Create stylebook port o [2002/10/18] ports/44252 anholt XFree86-Servers port removes/overwrites c o [2002/10/19] ports/44258 obrien pkg_update ate my Muttrc o [2002/10/19] kern/44260 LINT does not list pseudo-device tap o [2002/10/19] i386/44262 tanimura Problems with nrp driver o [2002/10/19] kern/44267 One more modem PNP id for /usr/src/sys/is f [2002/10/19] ports/44270 ports-bugs New port: net/bind9-sdb-ldap o [2002/10/19] ports/44273 dwcjr improved samba start script o [2002/10/19] bin/44277 devinfo is not C++ safe o [2002/10/19] misc/44286 roberto /etc/defaults/rc.conf uses the obsolete n o [2002/10/19] kern/44293 thomas Unable to access audio CD under Linux emu o [2002/10/20] misc/44307 UTF-8 locales support o [2002/10/20] bin/44310 make ppp(8) add clients MAC address to al o [2002/10/21] bin/44329 wish for systat p [2002/10/21] kern/44333 mikeh [PATCH] make A4-tech RFSW-35 mouse's whee o [2002/10/21] bin/44343 [PATCH] sbin/fsdb.c o [2002/10/21] kern/44365 introduce ulong and unchar types o [2002/10/21] kern/44372 roberto some kernel options prevent NTP clock syn o [2002/10/22] misc/44379 libutil: property.c, properties_read() ba o [2002/10/22] standards/44394alfred restrict qualifiers missing from sys/sock o [2002/10/23] docs/44400 doc ipfw(8) has contradictions in bridged and o [2002/10/23] standards/44425standards getcwd() succeeds even if current dir has o [2002/10/24] java/44432 znerd Ant-based port installs should use Jikes o [2002/10/24] docs/44435 doc sysctl manpage: add example for tcsh o [2002/10/24] kern/44439 puc doesn't find all 4 ports on SIIG Cybe o [2002/10/24] kern/44450 joe USB support FAILURE for device that was s o [2002/10/26] misc/44500 AC1001 Gigabit NIC Worked o [2002/10/28] kern/44580 NFS updates file access time when file is o [2002/10/29] misc/44587 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/29] ports/44712 tg python port doesn't install symlink as 'p o [2002/10/29] ports/44715 bp novell ncp client does not install f [2002/10/29] conf/44717 dougb update login.conf and unify login capabil o [2002/10/30] i386/44762 sound sound (ie, not system beeps) stop working o [2002/11/04] kern/44872 dgb driver update o [2002/11/04] misc/44894 markm as a local non-root user and remote it's o [2002/11/04] misc/44915 qa 'choose installation media' choose CD-ROM o [2002/11/04] java/44922 java JVM crash o [2002/11/05] gnu/44984 Send-pr can use environmental variable $F o [2002/11/06] docs/45011 trhodes style(9): '->' and '.' don't require spac o [2002/11/07] misc/45026 Can't set next password change date on NI o [2002/11/07] ports/45127 taoka correct fetch for x11/xco o [2002/11/08] gnu/45137 peter [PATCH] CVS 1.11.2 cannot reuse log messa o [2002/11/08] ports/45148 jhb fix fetch and build for x11/eweather and o [2002/11/09] www/45169 www suggested update for ports index page on o [2002/11/09] kern/45182 sound fm801.c does not recognize a FM801 based o [2002/11/10] bin/45193 [PATCH] truss can't truss itself o [2002/11/11] docs/45214 brueffer [PATCH] Fix sorting in Additional Contrib o [2002/11/11] docs/45215 brueffer [PATCH] Fix sorting in Additional Contrib o [2002/11/11] ports/45216 joerg devel/bcc port is incomplete o [2002/11/11] misc/45222 daily rejected mail hosts report too long o [2002/11/11] conf/45226 mtm Fix for rc.network, ppp-user annoyance o [2002/11/11] ports/45227 ports-bugs problems building/installing db3 and open o [2002/11/11] bin/45229 restore(8) -i: ls reports mising files as p [2002/11/12] alpha/45240 alpha pstat -f column headings misaligned on Al o [2002/11/12] gnu/45246 sobomax tar --listed-incremental fails for Solari o [2002/11/12] misc/45254 qa Sysinstall installs things it should not o [2002/11/13] misc/45273 contrib/smbfs: error in examples/dot.nsmb o [2002/11/14] kern/45285 Support for yet another PCI multiport car o [2002/11/14] ports/45289 mita ja-dvi2ps-3.2 does not handle \special co f [2002/11/14] kern/45291 jmg kevent(2) ignores timeout if nevents == 0 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/16] ports/45343 torstenb Metamail 2.7 incorrectly patched [PATCH] o [2002/11/16] ports/45357 jmz PATCH: textproc/ispell - added bulgarian o [2002/11/17] docs/45371 doc man page for exports lacks information on o [2002/11/18] ports/45394 wjv update biology/emboss from 2.4.1 to 2.5.1 o [2002/11/18] ports/45414 portmgr make update in /usr/ports missing default o [2002/11/19] bin/45486 Support for human readble (-h/-H) output f [2002/11/20] ports/45526 edwin New port: math/maxima -- symbolic compute s [2002/11/20] bin/45547 sos a patch to make burncd handle .wav files. o [2002/11/21] www/45560 www russian FAQ trouble on www.FreeBSD.org a [2002/11/22] bin/45584 tjr read builtin function of sh does not read o [2002/11/22] ports/45596 dwcjr net/samba v2.2.7 fetch error - maybe a fi o [2002/11/22] conf/45608 qa Install should config all ether devices, o [2002/11/22] ports/45612 marcel port devel/linux_kdump does not compile s [2002/11/22] ports/45613 portmgr make update doesn't o [2002/11/23] bin/45659 portmap can not be bound to only loopback f [2002/11/24] ports/45681 sada Update port: chinese/chitex o [2002/11/24] kern/45684 systat -vmstat reports "alternate system o [2002/11/24] bin/45701 markm spelling error in rogue o [2002/11/25] misc/45704 [PATCH] request to change cp866b to cp866 o [2002/11/25] bin/45729 make rbootd transfere the default file if o [2002/11/25] standards/45738tjr sh "unset" built-in violates IEEE Std 100 o [2002/11/26] bin/45749 [PATCH] rm -f in MS-DOS directory o [2002/11/26] kern/45753 linux-sun-jdk1.4.1 calls SIOCGIFCONF ioct f [2002/11/26] ports/45771 ports-bugs OffiX printer doesn't find printer o [2002/11/26] kern/45785 emulation Linux WineX seems to require a few new li o [2002/11/27] kern/45793 Invalid media subtype aliases in if_media o [2002/11/28] misc/45830 KDC has problems when listening to IPv6 a o [2002/11/29] misc/45839 [PATCH] Remove some duplicate fortunes o [2002/11/29] ports/45843 dbaker sysutils/3dm - needs to detect and create p [2002/11/30] misc/45874 ache [PATCH] FreeBSD does not know about ca_ES o [2002/11/30] ports/45886 ports-bugs New ports: japanese/trr* o [2002/12/01] bin/45896 dwmalone setnetgrent() should return error code o [2002/12/01] ports/45899 brian Packaging list for vlc-0.4.4 is incomplet o [2002/12/02] ports/45911 ports-bugs GEOM-related problem sysutils/diskcheckd o [2002/12/02] docs/45940 doc burncd missing info o [2002/12/03] ports/45963 anders the port looks for majordomo.cf in /etc o [2002/12/03] kern/45968 des linprocfs is missing maps o [2002/12/05] ports/46005 ports-bugs New port: ginsu - a client for the gale s f [2002/12/06] ports/46034 gioria new ports: mantis o [2002/12/07] conf/46062 kris Remove skel from BSD.root.dist. f [2002/12/07] ports/46077 edwin [patch] fix fetch for devel/gsnes9x o [2002/12/07] kern/46080 ipfw [PATCH] logamount in ipfw2 does not defau o [2002/12/08] ports/46092 tg ports/print/acroread on i386 needs Linux o [2002/12/08] bin/46107 killall(1) can prematurely kill itself o [2002/12/08] bin/46110 tomsoft why does fsck work with / mounted r/o but o [2002/12/09] standards/46119standards Priority problems for SCHED_OTHER using p o [2002/12/09] bin/46123 fenner PATCH: tcpdump needs -a flag if netmask i o [2002/12/10] kern/46159 ipfw ipfw dynamic rules lifetime feature o [2002/12/10] misc/46163 gad lpc problem. Only root can modify despit o [2002/12/11] docs/46181 doc "make fetch-recursive" target description o [2002/12/11] docs/46196 doc Missing return value in (set_)menu_format o [2002/12/11] docs/46200 doc fix for ru_RU.KOI8-R/books/porters-handbo o [2002/12/13] conf/46235 rwatson Sysinstall NTP servers for Finland requir o [2002/12/13] i386/46238 dds [code] Driver for the PCL-724 ISA card o [2002/12/13] kern/46250 sound Sound driver not working correctly on SON f [2002/12/14] i386/46258 PLT code causes skewed return hint stack 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/16] ports/46317 obrien ports/editors/vim/files/patch-02 is stale f [2002/12/17] ports/46327 ports-bugs obsolete version of the Computer Modern f o [2002/12/17] misc/46328 gad patch for lpd o [2002/12/18] kern/46368 MAXDEP in isa/pnpparse.c is too small o [2002/12/19] bin/46379 customize home-directory permissions in p s [2002/12/19] bin/46382 ps(1) could use a "repeat" mode o [2002/12/20] misc/46409 Certain periodic scripts check broken NFS o [2002/12/20] ports/46414 adrian squid man page gives wrong location of co f [2002/12/20] ports/46417 mph bidwatcher port broken as of Dec. 17 2002 o [2002/12/21] standards/46441tjr /bin/sh does not do parameter expansion i o [2002/12/21] i386/46453 [INTERLATIONALIZATION] cons25l2, ISO8859- f [2002/12/21] ports/46457 ports-bugs Update x11/temperature.app to 1.4 and use o [2002/12/22] ports/46478 jmz Fix build on -current for graphics/pixmap p [2002/12/22] ports/46483 trevor [patch] Fix gcc295 on current/i386 f [2002/12/23] ports/46487 edwin New port: cbind - Translator for "thin" A o [2002/12/23] kern/46488 joe usb driver do not send detach events on S o [2002/12/23] standards/46504standards Warnings in headers o [2002/12/23] ports/46510 ports-bugs security/ssh does not correctly store the o [2002/12/25] ports/46522 sobomax xtraceroute-0.9.0 fails with "OpenGL not o [2002/12/27] misc/46555 enhancements for libradius o [2002/12/27] kern/46564 ipfw IPFilter and IPFW processing order is not o [2002/12/27] ports/46570 jhb E-Fancylauncher core dump as receiving mo o [2002/12/28] ports/46608 ports-bugs [NEW PORT] latest development track of ep f [2002/12/29] ports/46615 gioria new-port: mail/sympa - an electronic mail o [2002/12/30] conf/46645 [PATCH] rc.shutdown state table saving ha o [2002/12/31] ports/46655 dwcjr net/samba beauty fix o [2003/01/01] misc/46670 qa 5.0-RC2 install leaves CD drawer locked. o [2003/01/01] bin/46672 dump(8) program gives unnecessary -L warn o [2003/01/01] kern/46677 joe Wrong vendor and device defines in ng_ubt o [2003/01/02] docs/46709 doc tables in terminfo.5 are broken o [2003/01/03] kern/46734 joystick driver doesn't allow for anythin o [2003/01/03] conf/46746 No way to set link addresses through rc.c o [2003/01/04] misc/46758 moused enhancements o [2003/01/04] kern/46773 sos I want IDE HD go into standby mode. p [2003/01/05] docs/46787 trhodes compress(1) manpage missing BUGS; other c o [2003/01/05] docs/46793 doc DEVICE_POLLING can not be used with SMP, o [2003/01/06] ports/46810 edwin [Patch] pkg_tree additional switches o [2003/01/07] bin/46830 Make pkg_add respect prefix for dependanc o [2003/01/09] bin/46888 gad Add script run hook to newsyslog(8) o [2003/01/09] ports/46904 ports-bugs new port: mail/vqregister o [2003/01/09] bin/46905 qa FreeBSD 5.x cannot be installed from mult o [2003/01/09] i386/46912 johan chflags nonodump fails o [2003/01/09] conf/46913 darrenr ipf denied packets of security run output o [2003/01/09] docs/46918 trhodes ipsec(4) does not reference the IPSEC RFC o [2003/01/10] bin/46925 sysctl -a goes into an infinite loop... o [2003/01/10] kern/46961 bridging between vlan-interfaces on same o [2003/01/11] kern/46973 syscons virtual terminals switching featu o [2003/01/12] misc/46998 small [patch] Support PicoBSD source in other l o [2003/01/12] ports/47002 roam New port: vodmr - ODMR/ATRN server for vp o [2003/01/13] ports/47018 sf Teach ftp/wget new very useful feature - o [2003/01/13] misc/47029 sound Static and popping with Hercules GameThea o [2003/01/13] ports/47036 portmgr bsd.port.mk has bad comments WRT dependen a [2003/01/14] ports/47068 arved Update port: devel/bison to 1.875 o [2003/01/14] docs/47085 doc boot(8) manpage is incomplete according t o [2003/01/15] ports/47098 ports-bugs New port: Senken, a city simulation game o [2003/01/15] ports/47128 ports-bugs New port: hybserv (irc services for ircd- o [2003/01/18] misc/47187 [patch] fix printf specifier in src/sys/b o [2003/01/18] ports/47189 ports-bugs New port: x11/chameleon o [2003/01/18] kern/47200 joe USB port is disabled when Kodak DX4900 is o [2003/01/18] ports/47203 ade upgrade of automake to try on the cluster o [2003/01/18] conf/47204 qa base + XFree86 install fails -- crypto di o [2003/01/19] ports/47218 ports-bugs PostgreSQL client has problems when libbi o [2003/01/19] i386/47223 hm [PATCH] pcvt(4), ESC sequences do not cha o [2003/01/19] bin/47235 top reports inaccurate cpu usage s [2003/01/19] bin/47237 des HTTP_PROXY with libfetch stalls at 99% o [2003/01/20] kern/47274 joe umodem update to support motorola v66 pho o [2003/01/21] kern/47311 mdodd [PATCH] Kernel support for NVIDIA nForce2 o [2003/01/21] misc/47314 qa Install requires a swap partition. o [2003/01/21] kern/47349 Fake a sound ioctl (plus linux hook) o [2003/01/21] bin/47350 rc.network supports only one ppp profile o [2003/01/22] kern/47359 dd panic after kldunload snp o [2003/01/22] i386/47376 hm [PATCH], pcvt(4), COLOR_KERNEL_FG, 2nd ch o [2003/01/22] bin/47387 [PATCH] gprof -K still requires "a.out" a o [2003/01/24] java/47448 phantom linux-blackdown-jdk-1.4.1: syscall mmap2 o [2003/01/27] bin/47540 ru Make natd configurable in running state w o [2003/01/27] bin/47560 tar 'z' option gzip'd output has extra ga o [2003/01/27] bin/47566 grog Suggested patch: vinum status verificatio o [2003/01/27] docs/47575 doc Clarify requirements for IPFW2 in STABLE o [2003/01/27] misc/47576 [PATCH] factor(6)ing of negative numbers a [2003/01/28] ports/47593 nork Update port: www/elinks o [2003/01/28] docs/47594 doc [PATH] passwd(5) incorrectly states allow o [2003/01/28] bin/47596 daily security run complains if timezone o [2003/01/28] misc/47601 ru Additional subdir targets o [2003/01/29] ports/47651 ports-bugs unPERLify ports/audio o [2003/01/29] ports/47654 ports-bugs unPERLify ports/biology o [2003/01/29] ports/47656 ports-bugs unPERLify ports/comms o [2003/01/30] kern/47675 njl usb/umass problems o [2003/01/30] docs/47690 doc builtin(1) manpage is wrong about externa o [2003/01/30] docs/47705 doc wc(1) manpage has poor explanations. o [2003/01/31] kern/47731 reboot goes panic each time o [2003/02/01] kern/47791 imp Idea for what to do on insert o [2003/02/02] bin/47815 stty -all should work. f [2003/02/02] docs/47818 doc ln(1) manpage is confusing o [2003/02/02] ports/47834 dirk mysql-server-3.23.55 upgrade should be mo o [2003/02/03] sparc64/47845sparc64 4 second daily clock drift f [2003/02/03] ports/47862 ports-bugs Maintainer update: databases/mysql-gui (b o [2003/02/04] ports/47904 ports-bugs drweb - cron example don't work p [2003/02/04] misc/47906 murray options screen not return previous screen o [2003/02/04] misc/47908 qa /stand/sysinstall can't display document o [2003/02/04] ports/47913 ume idled.8 man page conflict in ports mail/c f [2003/02/04] kern/47935 panic on disk full a [2003/02/05] ports/47957 seanc ruby-snmp is broken o [2003/02/05] docs/47991 trhodes Handbook section on upgrading kernel says o [2003/02/06] i386/48014 joe moused fails to correctly identify usb mo f [2003/02/07] docs/48038 doc [PATCH] add Tips and Tricks section into o [2003/02/07] ports/48052 obrien Upgrading vim blows away locally-added pl a [2003/02/07] ports/48059 roam Nitpicks for the comms/qpage port f [2003/02/07] kern/48081 Enabling mutex profiling panics the kerne o [2003/02/08] ports/48097 ports-bugs Manual for graphics/camediaplay falsely d o [2003/02/08] docs/48101 brueffer There's no documentation on the fixit dis o [2003/02/08] conf/48105 /etc/disktab has incomplete duplication o o [2003/02/09] misc/48110 change CVSROOT/log_accum.pl to not send m f [2003/02/09] ports/48115 ports-bugs Update port: math/abs o [2003/02/09] ports/48124 dbaker [PATCH] updates ports/misc/proxyper to ve o [2003/02/10] misc/48133 improvied vi recovery notification o [2003/02/10] ports/48140 andreas Update Port: print/apsfilter (conditional o [2003/02/11] kern/48172 ipfw ipfw does not log size and flags o [2003/02/11] conf/48195 /var/db/mounttab error on diskless boot o [2003/02/12] ports/48214 trevor Update port: audio/festogi-spanish to 2.0 o [2003/02/12] kern/48216 mike Linux uname returns wrong hostname inside o [2003/02/12] ports/48217 ports-bugs New Port: www/mod_frontpage13 and www/mod o [2003/02/13] ports/48235 ports-bugs New Port: anomy mail sanitizer - removing o [2003/02/13] ports/48247 ports-bugs unPERLify ports/deskutils o [2003/02/13] ports/48248 ports-bugs unPERLify ports/editors o [2003/02/13] ports/48249 nork unPERLify ports/emulators o [2003/02/13] ports/48253 ports-bugs unPERLify ports/devel f [2003/02/13] ports/48257 ports-bugs New Port: portdowngrade: a tool to set a o [2003/02/14] ports/48273 des FlightGear can only be run once between b o [2003/02/14] ports/48281 obrien Patch editors/vim to use fetch instead of o [2003/02/15] bin/48309 pppoe connections fail to establish if th o [2003/02/15] bin/48313 [patch] make yacc(1) use getopt(3) o [2003/02/16] bin/48342 joe [PATCH] usbd dynamic device list. o [2003/02/17] ports/48377 portmgr Randomizing MASTER_SITES o [2003/02/17] ports/48397 jmz malformed make file in /usr/ports/comms/m o [2003/02/17] bin/48399 Can't put URL in GECOS phone field o [2003/02/18] ports/48426 sobomax [PATCH] digger-vgl does not support conso o [2003/02/18] ports/48434 obrien shells/bash2: process substitution broken o [2003/02/18] bin/48443 /usr/sbin/periodic executes too many file o [2003/02/18] misc/48444 change to count connection attempts inste o [2003/02/19] kern/48468 imp puc driver for Nm9845 o [2003/02/19] ports/48470 nork [PATCH www/flashpluginwrapper] add helper o [2003/02/19] kern/48471 Private IPC for every jail. [PATCH] f [2003/02/20] kern/48494 njl BP6 ACPI errors - AML incorrect o [2003/02/22] conf/48566 [PATCH] /etc/defaults/make.conf stales af a [2003/02/22] conf/48569 trhodes make.conf misses comments on some options o [2003/02/22] www/48575 kuriyama f [2003/03/28] docs/50391 doc Incorrect information in a man o [2003/03/30] bin/50461 ctm cannot handle the large files current o [2003/03/30] ports/50466 grog The benchmarks/rawio port does not seem t o [2003/03/31] ports/50473 ports-bugs amavis-perl is no longer supported (super o [2003/03/31] ports/50476 ports-bugs New port: math/libmath++ o [2003/03/31] ports/50478 ports-bugs New port: games/monopd o [2003/04/01] kern/50526 Update to #! line termination o [2003/04/03] bin/50569 /bin/sh doesn't handles ${HOME}/.profile o [2003/04/03] docs/50573 doc return values for res_query/res_search/re o [2003/04/03] ports/50578 ports-bugs pktrace has been renamed to mftrace by th o [2003/04/04] bin/50613 [PATCH] pppd(8) incorrect CBCP response f o [2003/04/06] kern/50644 [PATCH] Update xe driver: multicast, hard o [2003/04/06] bin/50656 /bin/cp - wrong error on copying of multi o [2003/04/07] ports/50662 ume sysutils/gkrellm2 interaction with Metaci o [2003/04/07] ports/50663 ume sysutils/gkrellm2 - it is not possible to f [2003/04/07] docs/50677 doc [PATCH] update doc/en_US.ISO8859-1/books/ o [2003/04/07] kern/50687 ioctl(.., CDIOCCAPABILITY, ...) always re o [2003/04/08] bin/50724 ports-bugs [PATCH] pkg_fetch saves full filename o [2003/04/08] java/50729 phantom java/jdk14: broken java.net.NetworkInterf p [2003/04/08] docs/50735 brueffer Small diff to the developers handbook & o o [2003/04/09] bin/50749 ipfw ipfw2 incorrectly parses ports and port r o [2003/04/10] docs/50773 doc NFS problems by jumbo frames to mention i o [2003/04/10] ports/50775 ports-bugs axel port failes to build o [2003/04/10] ports/50799 yoichi Lisp Packages install directory should no o [2003/04/11] ports/50813 nork New port: japanese/mailman o [2003/04/11] ports/50835 dirk cdrtools port uses the config path "/etc/ o [2003/04/11] ports/50840 ports-bugs mail/squirrelmail - Port Docs in wrong lo o [2003/04/12] ports/50864 trevor Update audio/festlex-ogi o [2003/04/12] ports/50866 lioux [PATCH] Introduce patch to qmail-1.03 to o [2003/04/12] alpha/50868 alpha fd0 floppy device is not mapped into /dev o [2003/04/12] ports/50869 trevor Update audio/festvox-abc o [2003/04/12] ports/50880 ports-bugs Request for (optional) addition of tcplim o [2003/04/12] ports/50888 ports-bugs Updated fetchyahoo port, like fetchmail f f [2003/04/13] ports/50914 ports-bugs Port update: editors/fte o [2003/04/13] kern/50923 rfork(RFPROC|RFMEM, ...) fails unconditio p [2003/04/13] bin/50924 "vmstat -f" says "unimplemented" but data s [2003/04/14] i386/50929 AMD K6-2+ processor is identified incorre o [2003/04/14] ports/50931 krion Update net/silc-server o [2003/04/14] ports/50932 krion Update net/silc-doc f [2003/04/14] misc/50945 ru BUG: NOINSTALLLIB isn't honored in all Ma o [2003/04/14] kern/50948 darrenr BUG: @0 does not insert at the beginning o [2003/04/14] bin/50949 BUG: mtree doesn't honor the -P when chec o [2003/04/14] bin/50955 ru [PATCH] natd / libalias support for multi o [2003/04/14] conf/50956 daily_status_disks_df_flags in /etc/defau o [2003/04/14] ports/50965 ports-bugs www/linux-flashplugin update to 6.0r79 o [2003/04/15] ports/50970 anholt KDE-3.1.1a - R128(0) Idle timed out, rese o [2003/04/15] bin/50971 du(1) doesn't understand UF_NODUMP flag p [2003/04/15] misc/50979 tomsoft [PATCH] Some spelling corrections in sbin o [2003/04/15] bin/50988 [Patch] find -size -- express argument in o [2003/04/15] ports/50992 ports-bugs ports-bug: devel/kprof o [2003/04/15] ports/50996 openoffice editors/ooodict-hu_HU port can moved to h o [2003/04/15] ports/51005 ports-bugs New port of native window decoration for o [2003/04/15] kern/51009 Buggy aue driver fixed. o [2003/04/15] ports/51013 ports-bugs New Port: avidemux2 o [2003/04/16] ports/51036 ports-bugs New port: sysutils/clockspeed-conf - Supe o [2003/04/16] bin/51070 add -p option to pom [PATCH] o [2003/04/16] kern/51074 joe pointer arithmatic error in ugen.c o [2003/04/17] kern/51082 FEATURE: More descriptive message on drop o [2003/04/17] ports/51087 ports-bugs spamass-milter can not be built with send o [2003/04/17] bin/51091 fenner [FEATURE] Add -A (print ASCII) flag to tc o [2003/04/17] kern/51111 darrenr ipf doesn't allow outbound IPv6 packets u o [2003/04/17] 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] kern/51137 config(8) should check if a scheduler is o [2003/04/18] bin/51148 Control the cache size for pwd_mkdb to sp o [2003/04/19] bin/51151 du hardlinkmatching is slow - fix include o [2003/04/19] ports/51152 portmgr bsd.port.mk: generic SHEBANG_FILES o [2003/04/19] bin/51165 Login does not honor .hushlogin o [2003/04/19] misc/51167 dougb [PATCH] Makefile for /etc/namedb. o [2003/04/20] kern/51186 imp pointer arithmatic error in ugen.c o [2003/04/20] ports/51197 ports-bugs New Port: rendezvous (Apple's ZeroConf im o [2003/04/21] bin/51205 nectar openssl in base system is not compiled th o [2003/04/21] ports/51214 ports-bugs New port: www/zope-localizer o [2003/04/21] ports/51215 ports-bugs New port: www/zope-translationservice o [2003/04/22] standards/51292standards [PATCH] add ecvt()/fcvt()/gcvt() function o [2003/04/22] bin/51296 calendar wrong for dates based on day+-nu o [2003/04/25] ports/51415 kevlo Port textproc/xerces-j should be updated o [2003/04/25] ports/51424 dirk www/httrack should be updated to lastest o [2003/04/26] ports/51446 trevor Update port: audio/fest* to last versions o [2003/04/27] ports/51456 ports-bugs adding new port: opencm 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] bin/51493 ls usage is missing a few options p [2003/04/28] misc/51504 ache New file: src/share/mklocale/zh_CN.GBK.sr o [2003/04/29] ports/51588 portmgr SITE_PERL defined too late in bsd.port.mk o [2003/04/29] www/51607 ceri query-pr.cgi formats some links incorrect o [2003/04/29] docs/51608 phantom [PATCH] Add Internet Archive Wayback Mach o [2003/04/30] ports/51631 ports-bugs New port: hungarian/complexjogtar - Hunga o [2003/04/30] ports/51632 anholt luit from x11/XFree86-4-clients is unusab o [2003/05/01] ports/51651 kde KDE 3.1.1a: KProcess' stdout redirection o [2003/05/01] bin/51655 savecore needs ${dumpdev} as an argument a [2003/05/01] ports/51663 roam [PATCH] vpopmail-stable fix for using vmo o [2003/05/02] ports/51690 blackend Update devel/linux-runrev: 1.1.1 -> 2.0-B o [2003/05/02] ports/51693 cy [PATCH] Unbreak w11-fm/fvwm2-devel p [2003/05/03] misc/51729 ache A patch that can make freebsd support zh_ o [2003/05/04] ports/51757 edwin [REPOCOPY WAITING] Maintainer update: isc o [2003/05/04] ports/51760 ports-bugs Change-request: mail/tmda (ACTION_AUTO_RE o [2003/05/04] ports/51772 dirk Upgrade to version 0.52 of port net/nsc o [2003/05/05] ports/51791 tg Change-request: shell/pdksh (pdksh-5.2.14 o [2003/05/05] ports/51819 ports-bugs New port: Provides a static mod_perl with o [2003/05/06] conf/51830 trhodes new entries in termcap o [2003/05/06] docs/51845 hmp [PATCH] catch up getfsstat.2 and statfs.2 o [2003/05/06] kern/51874 Apacer HandySteno should have DA_Q_NO_6_B o [2003/05/06] docs/51875 doc atkbd(4) adjustment o [2003/05/06] docs/51891 doc DIAGNOSTICS in ed driver manpage don't ma o [2003/05/06] ports/51898 greid Update net/ettercap: 0.6.7 -> 0.6.a o [2003/05/06] ports/51900 trevor [Update Port]: audio/fest* to last versio o [2003/05/07] misc/51920 Collation for no_NO.ISO8859-1 o [2003/05/07] docs/51921 doc ls(1) manpage lacks some information abou o [2003/05/07] ports/51947 mharo Analog port does not include anlgform.htm o [2003/05/08] kern/51958 joe update for urio driver [PATCH] o [2003/05/09] docs/51999 wosch Missing MAN for ssh o [2003/05/09] ports/52006 ports-bugs rsync fails with protocol problems o [2003/05/09] ports/52016 ports-bugs New port: lang/harbour - A Clipper-compat o [2003/05/10] ports/52024 lioux port multimedia/libdv fails to build o [2003/05/10] kern/52026 joe umass driver support for InSystem ISD200 o [2003/05/10] bin/52032 markm Telnet option contra telnet protocol o [2003/05/10] ports/52037 ports-bugs port multimedia/avifile fails to build (I o [2003/05/11] docs/52071 doc [PATCH] Add more information about soft u o [2003/05/11] bin/52072 maxim Wrong behaviour of the ftpd when the OOB o [2003/05/12] www/52095 ceri Remove 404s from hardware.raw o [2003/05/12] www/52099 ceri Remove 404s from consulting.raw o [2003/05/12] www/52105 phantom Remove 404s from gallery.xml o [2003/05/12] ports/52106 phantom New port: java/javaws: Java Web Start 1.2 f [2003/05/12] ports/52113 ports-bugs mpg123 fails to play o [2003/05/12] ports/52125 ports-bugs New port: The devel branch of the ion win f [2003/05/12] ports/52130 ports-bugs New Port: sysutils/klineakconfig configur o [2003/05/12] ports/52132 ports-bugs New port: audio/prokyon3 Really nice mp3- o [2003/05/13] ports/52159 ports-bugs updates to pr:ports/52130 and pr:ports/52 s [2003/05/13] ports/52173 portmgr bsd.port.mk - Modify USE_GETOPT_LONG opti o [2003/05/13] bin/52190 [Patch] decode more syscalls in truss o [2003/05/14] i386/52249 i386 [PATCH] Bootmanager shows NTFS partitions o [2003/05/14] misc/52255 small picobsd build script fails under FreeBSD o [2003/05/14] misc/52256 small picobsd build script does not read in use o [2003/05/14] kern/52258 imp pccard non-functional, repeated "card ins o [2003/05/15] bin/52271 qa sysinstall panics in machine with no hard o [2003/05/15] ports/52272 cy Aide-0.9 complains of "@@end_db" s [2003/05/15] ports/52303 des [patch] add knob to databases/gnats to re o [2003/05/15] ports/52310 jedgar sysutils/grub does not send a dhcp option o [2003/05/16] ports/52311 patrick [ADD MAKE ARGS]:: WITH_GTK And WITH_THREA o [2003/05/16] ports/52319 patrick [NEW PORT]:: comms/qtpcr and fix to priv. o [2003/05/16] bin/52349 netstat -ni broken for vlan interfaces f [2003/05/17] ports/52380 ports-bugs Configure problem in libggi f [2003/05/18] ports/52393 ports-bugs New port: py-sourceview is a Python wrapp o [2003/05/18] i386/52401 i386 5.1-BETA syslogd not recording entries fr o [2003/05/18] i386/52408 i386 quitting gnome2-2.2.1_1 results in LOR o [2003/05/18] ports/52414 portmgr pkg_info improvement: get only package na o [2003/05/18] ports/52415 obrien missing files in bash2 ports collection o [2003/05/18] i386/52416 i386 Requesting ethernet driver for Broadcom 4 o [2003/05/18] ports/52420 mita japanese/xpdf installation terminated whe o [2003/05/19] i386/52427 i386 DVD replay under MSI "655 MAX" mobo inter f [2003/05/19] conf/52432 joe Install: drivers.flp won't load with USB f [2003/05/19] ports/52439 lioux Request: SMTP AUTH for qmail o [2003/05/19] ports/52447 edwin [PATCH] for x11-toolkits/gtk20-apireferen 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/20] bin/52489 [PATCH] ps tpt does not work o [2003/05/20] ports/52508 adrian Update port: www/squid (use MANn variable o [2003/05/20] docs/52514 hmp Handbook: new chapter about Bluetooth o [2003/05/21] bin/52517 New functionality for /usr/bin/Mail o [2003/05/21] i386/52555 i386 Large filesystem, df f [2003/05/22] ports/52600 lioux multimedia/mpeg4ip does not compile with f [2003/05/22] bin/52601 mbr [PATCH] rpc.yppasswdd fails if master.pas o [2003/05/23] kern/52623 Error in driver for the Intel EtherExpres o [2003/05/24] ports/52653 ports-bugs ports/net/gnu-radius no longer compatible o [2003/05/24] ports/52659 ports-bugs New port: news/xvnews Open Look-based new o [2003/05/25] docs/52672 doc Porter's Handbook: couple of corrections o [2003/05/26] ports/52706 portmgr bsd.port.mk issues warning if a site is e o [2003/05/27] i386/52722 i386 lock order reversal message o [2003/05/27] kern/52725 [PATCH] installincludes for kmods o [2003/05/27] kern/52735 njl Add support for one more type of USB flas f [2003/05/27] bin/52746 tcsh fails to handle large arguements o [2003/05/28] ports/52747 ports-bugs port update - mail/p5-Mail-Ezmlm o [2003/05/28] kern/52752 [PATCH] SMBus controller on ICH4 not reco o [2003/05/28] kern/52764 Impossible to build kernel with COPTFLAGS a [2003/05/28] ports/52765 portmgr [PATCH] Uncompressing manual pages may fa o [2003/05/28] ports/52779 fenner please make rat and sdr use tcl/tk8.3 o [2003/05/29] bin/52782 user ppp dumps core when doing pppctl "sh o [2003/05/29] ports/52793 dwcjr Samba 2.2.8a printing woes o [2003/05/29] ports/52794 ports-bugs Xmaxima cannot start o [2003/05/29] kern/52795 joe uscanner for CanoScan N1220U o [2003/05/29] ports/52796 ports-bugs devel/apr is compiled without threads sup o [2003/05/29] ports/52797 lev devel/subversion does not install any too o [2003/05/30] ports/52811 ports-bugs [PATCH] net/unison: install documentation o [2003/05/31] ports/52825 lioux goggles-0.5.5 compile under 5.1-BETA2 fai s [2003/05/31] bin/52826 Feature Request: Adding Timestamps to pkg o [2003/06/02] ports/52857 ports-bugs New port: Scan detection and blocking dae o [2003/06/02] docs/52858 ceri Add the Bell System Technical Journal to o [2003/06/02] ports/52859 dwcjr Samba 2.2.8a (2.2.8)- broken support for o [2003/06/02] ports/52873 ports-bugs New port: kcmpureftpd, a PureFTP control f [2003/06/02] ports/52877 ports-bugs Non-Maintainer-Update: mail/postfix add s o [2003/06/02] docs/52878 doc [PATCH] security(7): small clairification o [2003/06/02] alpha/52882 alpha fpsetprec/fp_prec_t unsupported on alpha? o [2003/06/03] ports/52906 roger vid-1.0.1 from ports does not work with U o [2003/06/03] bin/52907 [PATCH] more malloc options for debugging f [2003/06/03] ports/52909 lioux [PATCH] ftp/twoftpd: chase devel/bglibs h s [2003/06/03] ports/52917 portmgr [PATCH] bsd.port.mk: update default value o [2003/06/04] ports/52923 ports-bugs New port: f-prot - the F-Prot virus scann o [2003/06/04] kern/52927 Intel Kinnereth-R NIC is not supported by o [2003/06/04] ports/52941 ports-bugs security/poc card-terminal problems o [2003/06/04] kern/52943 reproducable system stuck just brefore mu o [2003/06/04] ports/52946 lioux Add cdparanoia support to gstreamer-plugi o [2003/06/04] kern/52960 kbdcontrol macros don't work when len = 1 o [2003/06/05] i386/52971 i386 bad macro LIST_HEAD in /usr/include/sys/q o [2003/06/06] kern/52980 mbr [patch] dc(4) driver fails to init Intel o [2003/06/06] ports/52989 mat update archivers/libcomprex to 0.3.3 o [2003/06/06] kern/53005 njl USB IntelligentStick SCSI DA quirk o [2003/06/07] ports/53019 ports-bugs New Port: kvirc3 a irc client based on o [2003/06/07] kern/53025 joe [PATCH] ugen does not allow O_NONBLOCK fo o [2003/06/07] ports/53026 lioux 5.1-RC1 avifile0.7-0.7.34 compile fails w o [2003/06/07] kern/53027 imp [CHANGE-REQUEST] Better Entry for Intel P o [2003/06/08] bin/53063 [PATCH] Let mtree -U update mtime f [2003/06/08] kern/53067 njl Add support for the PQI USB Flash Disk o [2003/06/09] ports/53080 ports-bugs ARJ archiver with Russian localization o [2003/06/09] ports/53130 jmz [patch] correct logic in Makefile for sys o [2003/06/09] conf/53131 qa "ALL" could not turn check BOXes ON at pa o [2003/06/09] ports/53132 dbaker [patch] fix Makefile for devel/dnetc and a [2003/06/11] ports/53190 lev update to devel/subversion o [2003/06/11] ports/53193 ports-bugs [Patch] unbroke port: math/simpack fix co o [2003/06/11] conf/53197 re default tag of RELENG_5_1 standard-supfil o [2003/06/11] ports/53199 dbaker Port update: misc/dnetc o [2003/06/11] i386/53200 i386 5.1-RC1 SMP kernel boot gags at "APIC_IO: o [2003/06/11] ports/53206 ports-bugs Patch updates x11-wm/pekwm to version 0.1 o [2003/06/11] ports/53241 naddy graphics/xmms-goom port update o [2003/06/12] kern/53264 sound PCM interrupt not routed on Sony VAIO lap o [2003/06/12] kern/53265 imp Make Sierra A555 work in FreeBSD o [2003/06/13] docs/53271 hmp the bus_dma man page fails to document al f [2003/06/13] ports/53281 ports-bugs Port for LDAP servers access and KAddress o [2003/06/13] bin/53288 tail will sometimes display more lines th o [2003/06/13] docs/53303 doc mount(2) man page error o [2003/06/14] docs/53315 doc [PATCH] remove extraneous whitespace at t o [2003/06/14] docs/53316 blackend Small update/correction to multimedia/cha o [2003/06/14] ports/53320 ijliao centericq memory leaks under 5.x f [2003/06/14] ports/53321 ports-bugs Update: comms/plp o [2003/06/14] i386/53324 i386 pam_group problems (PAM_RUSER used instea p [2003/06/14] misc/53327 Important fix for Latin-american keymap o [2003/06/15] bin/53341 qa dump frequency in sysinstall is always th o [2003/06/15] ports/53346 ports-bugs xmms volume bar error o [2003/06/15] ports/53363 kbyanc [patch][non-maintainer update] fix www fo o [2003/06/16] bin/53366 mtm rc.d/root is trying "mount /" while start o [2003/06/16] bin/53377 [PATCH] su does not return exit status of o [2003/06/16] kern/53383 adding Terratec TValue to bktr driver o [2003/06/17] ports/53401 lioux mail/qpopper: add knob WITHOUT_APOP, brin o [2003/06/17] kern/53417 sound Bad Recordings on AC97 onboard audio syst o [2003/06/17] docs/53420 ceri [patch] rework of parts of Porter's Handb o [2003/06/17] docs/53421 ceri [patch] rework of parts of Porter's Handb o [2003/06/17] docs/53422 ceri [patch] rework of parts of Porter's Handb o [2003/06/17] docs/53424 ceri [patch] rework of parts of Porter's Handb o [2003/06/17] docs/53425 ceri [patch] rework of parts of Porter's Handb o [2003/06/18] ports/53444 ports-bugs comms/hamfax - sending and receiving facs o [2003/06/18] docs/53454 doc wrong sample code in manpage of wcwidth(3 o [2003/06/18] ports/53466 trevor [non-maintainer] delete port audio/spiral o [2003/06/18] ports/53469 sobomax [patch][non-maintainer] remove hardwiring o [2003/06/18] bin/53475 cp(1) copies files in reverse order to de o [2003/06/18] gnu/53476 kan [patch] gcc improperly handles GCC_EXEC_P o [2003/06/19] ports/53484 wjv [PATCH] for updating textproc/docbook-tdg o [2003/06/19] docs/53501 doc [PATCH] Handbook: update snapshots sectio o [2003/06/19] kern/53506 Support gzipped modules. (partial patch) o [2003/06/19] bin/53520 su to another user does not update utmp o [2003/06/19] www/53530 ceri [PATCH] query-pr.cgi doesn't work with ur o [2003/06/19] ports/53535 jmz [patch][non-maintainer] update benchmarks o [2003/06/20] ports/53558 ports-bugs new port of Gerrit Pape's runit package o [2003/06/20] bin/53560 logging domain names in wtmp is retarded s [2003/06/20] ports/53564 perky [non-maintainer] lang/stackless_python fa o [2003/06/20] docs/53575 doc Change to Handbook Section 20.9 o [2003/06/21] ports/53588 ports-bugs [PATCH] devel/ac-archive: update to 0.5.5 o [2003/06/21] docs/53596 doc Updates to mt manual page o [2003/06/22] standards/53613standards FreeBSD doesn't define EPROTO o [2003/06/22] docs/53621 trhodes devname(3)'s man page needs an example o [2003/06/23] ports/53636 ports-bugs Suggestion for rc.d style startup scripts o [2003/06/23] ports/53657 tobez devel/p5-Parse-RecDescent - tutorial/* is o [2003/06/23] ports/53662 ports-bugs [CHANGE-REQUEST] Patch textproc/xlhtml so o [2003/06/24] ports/53671 ports-bugs NEW PORT: rude/crude UDP traffic generato o [2003/06/24] www/53676 simon [patch] Don't make people contact doc@ fo o [2003/06/24] bin/53682 standards [PATCH] add fuser(1) utitity o [2003/06/24] ports/53702 ports-bugs Port upgrade: devel/directfb o [2003/06/25] docs/53732 doc quota output and man page do not document o [2003/06/25] ports/53740 ports-bugs New port: Fluka - Linux Monte Carlo simul f [2003/06/25] ports/53746 ports-bugs New port: graphics/imgseek o [2003/06/26] docs/53751 doc bus_dma(9) incorrectly documents BUS_DMA_ o [2003/06/26] ports/53785 veers Upgrade net/domtools from 1.5 to 1.6 o [2003/06/26] java/53790 znerd Let tomcat41ctl start java -server f [2003/06/26] ports/53791 kde Can't pass CPPFLAGS to configure when WIT f [2003/06/26] ports/53793 ports-bugs New port for sebeksniff o [2003/06/27] ports/53817 nik textproc/docbook should include textproc/ o [2003/06/27] ports/53848 tobez [PATCH] update of port devel/p5-IPC-Run t o [2003/06/28] bin/53870 C++ undeclares standard math functions li o [2003/06/28] ports/53877 ports-bugs p5-Data-FormValidator can be updated o [2003/06/28] ports/53878 des [Port Update]:: games/flightgear & devel/ o [2003/06/29] kern/53897 joe [PATCH] add EPoX Bluetooth USB dongle to o [2003/06/29] bin/53899 mktime gives wrong result in Central time o [2003/06/29] conf/53901 dd Suggest MFC of include keyword to config( o [2003/06/29] www/53906 www [patch] adds content to alpha plattform p o [2003/06/30] ports/53923 ports-bugs New Port: Sipsak is a SIP test command li o [2003/06/30] i386/53930 i386 showmount doesnot show nfs exportlist on o [2003/06/30] ports/53939 dwcjr [PATCH] Fix library dependencies in samba o [2003/06/30] kern/53941 sos [PATCH] ATAPI CD drives don't open the tr p [2003/06/30] misc/53944 [PATCH] ARMSCII-8 (Armenian) LOCALE and C o [2003/07/01] ports/53981 ports-bugs New Port: k3b 0.8.1, a kde cd recording g o [2003/07/01] ports/53983 ports-bugs New port: Zope Extensible User Folder o [2003/07/01] ports/53997 ports-bugs update py-psycopg from 1.0.13 to 1.1.5.1 a [2003/07/01] ports/53998 gnome Add a dependency xrender to fontconfig o [2003/07/02] ports/54002 lioux QMTPC patch for qmail-1.03 o [2003/07/02] docs/54009 trhodes Clarify the location of the splash image o [2003/07/02] bin/54026 [patch] Add support for non-standard port o [2003/07/02] ports/54041 ade libtool13 (as installed) doesn't recogniz o [2003/07/02] ports/54046 fenner fix to graphics/geomview o [2003/07/02] ports/54048 rse wml fails o [2003/07/03] ports/54059 ports-bugs New port: psycopg database adapter for zo o [2003/07/03] ports/54060 ports-bugs new port devel/aegis o [2003/07/03] kern/54078 sound Sound Plays ~10% Slow o [2003/07/03] ports/54079 ports-bugs New port: Formulator for Zope f [2003/07/03] ports/54080 ports-bugs Update port mail/minimalist to the latest o [2003/07/04] kern/54094 [patch] make signedness of kg_nice and ki o [2003/07/04] ports/54095 ports-bugs New port: ParsedXML for Zope o [2003/07/04] ports/54096 ports-bugs Plone port bundled formulator conflicts w o [2003/07/04] bin/54098 ken [patch] make camcontrol(8) work if plain f [2003/07/04] ports/54105 ports-bugs New port submission o [2003/07/05] bin/54123 [patch] fix assignments of getopt() retur o [2003/07/05] bin/54141 wrong behavour of cu(1) o [2003/07/06] ports/54146 ports-bugs UPDATE: www/eddie - fix build with Erlang o [2003/07/06] ports/54149 ports-bugs [UPDATE] net/rdesktop-devel: Add RDP5 sup a [2003/07/06] ports/54161 trevor security/mcrypt unbrake and update to 2.6 o [2003/07/06] kern/54163 Non-existing Jails in jls?! o [2003/07/07] conf/54170 error from weekly periodic script 330.cat o [2003/07/07] ports/54174 ports-bugs clean spaces behind variables out of port s [2003/07/07] bin/54185 rwatson UFS2 filesystem ACL flag not enforced a [2003/07/07] docs/54197 mheinen Mentioning of devfs is missing in the Ger o [2003/07/08] ports/54212 lioux Goggles-0.5.5 compile fails - dvdnav.o un o [2003/07/08] misc/54220 [PATCH] /usr/src/Makefile has wrong instr o [2003/07/08] misc/54229 Complete "See also" section for getipnode p [2003/07/08] docs/54235 ceri Error in ioctl(2)'s man page: Ioccon.h co o [2003/07/08] ports/54238 shige [patch][non-maintainer] fix build for jap o [2003/07/08] ports/54246 adrian [PATCH] www/squid: change obsolete config o [2003/07/09] ports/54250 ade [PATCH] for devel/automake17 o [2003/07/09] ports/54251 ports-bugs [NEW PORT] www/zope-xmlwidgets: XMLWidget o [2003/07/09] ports/54254 ade bsd.port.mk contains non-existing autocon o [2003/07/09] ports/54262 tobez port lang/perl5 doesn't deinstall /usr/bi o [2003/07/09] bin/54263 su/csh job control problem o [2003/07/09] ports/54271 ports-bugs New port: databases/pgbash o [2003/07/09] ports/54272 ports-bugs new port: misc/torrentsniff - BitTorrent o [2003/07/09] bin/54274 ru udp-proxy support is not implemented in l o [2003/07/09] bin/54276 pread/pwrite patches for libc db function o [2003/07/09] ports/54298 ports-bugs New port KVIrc 3.0.0 p [2003/07/10] conf/54334 Tip in freebsd-tips datfile for fortune i o [2003/07/10] ports/54335 ports-bugs new port: PPower4 - Post processor for PD o [2003/07/10] ports/54346 ports-bugs [NEW Port]:: x11/materm o [2003/07/10] ports/54351 marcus devel/portlint and /usr/ports/Mk/bsd.port o [2003/07/10] ports/54352 ports-bugs Conversion rc.d scripts to RC_NG o [2003/07/11] bin/54365 [PATCH] add -u option to install(1) for S o [2003/07/11] ports/54368 dburr update devel/p5-File-Spec o [2003/07/11] conf/54369 MFC /etc/services p [2003/07/11] conf/54371 bms Subversion IANA-assigned port number o [2003/07/11] ports/54372 ports-bugs new port: FoilTeX - a collection of LaTeX f [2003/07/11] ports/54373 petef [PATCH] mail/qmHandle: update to 1.1.1 o [2003/07/11] docs/54380 doc [PATCH] document additional perl variable o [2003/07/11] kern/54383 NFS root configurations without dynamic p f [2003/07/11] ports/54386 osa [PATCH] net/libnet: update to 1.1.0 o [2003/07/11] docs/54391 doc Document that glob(3) respects LC_COLLATE a [2003/07/11] ports/54406 portmgr [patch] add two more cases to ports/Tools f [2003/07/11] ports/54408 ports-bugs [new port] ftp/prozgui o [2003/07/12] ports/54414 ports-bugs New port: Dasher -- text entry system (fo o [2003/07/12] ports/54421 osa [PATCH] net/libnet: update to 1.1.1-RC-00 o [2003/07/13] kern/54439 Protecting sysctls variables by given mut o [2003/07/13] i386/54451 i386 [patch] i386_{get|set}_ldt manual page is f [2003/07/13] ports/54459 gnome gnometerminal2 doesn't retain multiple ta o [2003/07/13] docs/54461 ceri Possible addition to Handbook o [2003/07/14] misc/54477 Thousands separator for Italian locale o [2003/07/15] ports/54498 anders gnokii port upgrade (maintainer not answe o [2003/07/16] ports/54550 ports-bugs [NEW PORT] www/zope-FileSystemSite: Enabl o [2003/07/16] ports/54553 ports-bugs New port: Growspd displays growth rate of o [2003/07/16] ports/54557 ports-bugs [NEW PORT] security/gnutls-devel: develop o [2003/07/16] ports/54563 maho new ports: Sun Grid Engine (Enterprise Ed o [2003/07/17] www/54570 www [patch] add 2 new press articles o [2003/07/17] www/54572 www [patch] unbreak b0rked www/en/ports/index o [2003/07/17] ports/54575 brian arpwatch.sh doesn't support multiple inte o [2003/07/17] bin/54594 Apply regexps to the entire variable -- a o [2003/07/17] i386/54595 i386 emu10k1 sound driver locks system o [2003/07/18] kern/54604 Made 'ps -e' procfs-independent [PATCH]. o [2003/07/18] docs/54610 blackend [patch] adds route(8) examples to routing o [2003/07/18] ports/54617 ports-bugs New port: lang/freetxl s [2003/07/18] ports/54624 ports-bugs Update: net/gtk-gnutella o [2003/07/18] kern/54625 [PATCH] IPv6 stealth forwarding o [2003/07/19] ports/54631 knu [PATCH] sysutils/portupgrade: fix pkgtool o [2003/07/19] bin/54633 whois queries with options for the whois- o [2003/07/19] ports/54636 ports-bugs misc/gtktalog: Remove PERL dependancy and o [2003/07/20] ports/54650 ports-bugs new port submission - misc/zidrav - file o [2003/07/20] kern/54654 njl Need SCSI CAM quirk for Rovershot digital o [2003/07/20] docs/54655 blackend [PATCH] update "Modifying Accounts" chapt o [2003/07/20] kern/54658 [patch] Several spelling and other minor o [2003/07/20] bin/54672 [PATCH] fix gcc 3.3 compiler warning for o [2003/07/20] docs/54678 doc [patch] add PACKAGESITE to packages chapt o [2003/07/20] www/54679 phantom [patch] add some .at companies to gallery o [2003/07/20] bin/54683 sh, redundant history o [2003/07/21] kern/54690 alc [PATCH] wrap swap_pager's swhash with a m o [2003/07/21] www/54713 www Update links request o [2003/07/21] kern/54730 [patch] root can not set arbitrary proces p [2003/07/21] bin/54731 gshapiro [PATCH] bug in mail.local can cause unnec o [2003/07/21] ports/54732 ports-bugs New port: mod_auth_pam2 (mod_auth_pam for o [2003/07/21] ports/54733 anders PATCH o [2003/07/22] docs/54752 doc bus_dma explained in ISA section: should o [2003/07/22] ports/54754 wjv Update port: devel/arch to 1.0pre25 o [2003/07/22] ports/54760 billf ethereal 0.9.13 from ports fails to compi o [2003/07/22] docs/54769 doc [patch] updates to FAQ o [2003/07/23] bin/54784 find -ls wastes space o [2003/07/23] kern/54786 njl Kernel quirk for FreeDik USB Mini Data Dr o [2003/07/23] docs/54789 doc [PATCH] brush up the "New Users" article o [2003/07/24] ports/54799 gnome www/mozilla-firebird does not show form s o [2003/07/24] docs/54806 doc [patch] adds fvwm2 to x11-wm o [2003/07/24] standards/54809standards pcvt deficits o [2003/07/24] ports/54811 ports-bugs ports/japanese/kappa20 maintainer update+ o [2003/07/24] ports/54812 ports-bugs New Port par2cmdline for verify/creation/ o [2003/07/24] ports/54814 ports-bugs New port: hungarian/hunspell version 0.9. o [2003/07/24] ports/54815 wjv ports/textproc/p5-XML-Twig dependancy fix o [2003/07/24] ports/54817 gnome After some time of work text selection in o [2003/07/24] standards/54833standards more pcvt deficits o [2003/07/25] kern/54836 njl Casio QV Digital Camera problems o [2003/07/25] ports/54837 ports-bugs minor update to net/cdpd o [2003/07/25] standards/54839standards pcvt deficits o [2003/07/25] ports/54841 ports-bugs Checksum mismatch on Linux-Realplayer por o [2003/07/25] ports/54857 ports-bugs mod_perl2 does not activate module in the o [2003/07/25] ports/54860 ports-bugs new port (linux-opengroupware) o [2003/07/25] www/54863 www [patch] add available JDKs to java/instal o [2003/07/25] ports/54866 lioux libgnugetopt incompatibility breaks mjpeg o [2003/07/25] ports/54875 andreas hpijs loops on fatal error o [2003/07/25] ports/54876 gnome [PATCH] lang/guile: Bug in a Makefile s [2003/07/25] bin/54878 incorrect divisor in /usr/bin/jot -r o [2003/07/25] docs/54879 doc man 1 jot, -r description o [2003/07/26] kern/54884 mckusick FreeBSD -stable and -current free space h o [2003/07/26] bin/54891 libalias/natd and exporting connection-in o [2003/07/27] bin/54897 [PATCH] -y flag for mount_mfs o [2003/07/27] conf/54910 mtm [PATCH] Add rc.conf option to disable vir f [2003/07/27] ports/54926 ports-bugs [PATCH] graphics/ImageMagick: enable choo o [2003/07/27] ports/54938 grog [PATCH] using www/squid as proxy (instead o [2003/07/27] i386/54963 i386 Left over/outdated comment in NOTES p [2003/07/27] misc/54967 ceri Spelling error in /usr/share/games/fortun o [2003/07/28] kern/54981 njl Add support for Lexar 256MB USB drive f [2003/07/28] kern/54982 jmg data corruption with usb umass da msdosfs o [2003/07/28] ports/54984 ports-bugs New port: mail/postfixadmin 5. f [2003/09/03] kern/56380 cdrecord panicks -CURRENT with ATAPI burn o [2003/09/03] kern/56384 njl ACPI problems on Thinkpad T20 o [2003/09/03] ports/56386 kde around app-default o [2003/09/04] ports/56411 trevor [patch]unbreak ports/security/mcrypt o [2003/09/04] ports/56413 ports-bugs [non-maintainer] mark misc/cheatah as BRO o [2003/09/04] ports/56420 ports-bugs [patch] mark lang/src as BROKEN o [2003/09/04] ports/56422 ports-bugs [patch] mark benchmarks/bonnie++ broken f o [2003/09/04] ports/56423 ports-bugs delete port devel/amulet o [2003/09/04] kern/56441 bpf_tap() used incorrectly in bpf 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/04] docs/56452 doc [patch]Add EXTRACT_DEPENDS&PATCH_DEPENDS o [2003/09/04] ports/56455 ports-bugs New Port: audio/eawpats: Eric A. Welsh's o [2003/09/04] ports/56469 ports-bugs [patch] mark editors/MathPlanner as BROKE o [2003/09/04] standards/56476standards cd9660 unicode support simple hack o [2003/09/04] ports/56478 ports-bugs delete graphics/vterrain-sdk o [2003/09/05] bin/56480 mixer(8) -s does not list recording sourc f [2003/09/05] ports/56481 ports-bugs [patch] fix plist and fetch problems for p [2003/09/05] bin/56492 schweikh [patch] Removal of stray semicolons after o [2003/09/05] ports/56493 ports-bugs New port: deskutils/superkaramba o [2003/09/05] kern/56496 joe Add support for minolta 5400 usb scanner o [2003/09/05] conf/56506 A wireless network card is missing in 4.8 o [2003/09/05] ports/56512 dburr x11amp bus error o [2003/09/06] kern/56513 panic in ugen w/ moused -p /dev/ugen0 f [2003/09/06] ports/56515 ports-bugs [patch][non-maintainer] update devel/boos o [2003/09/06] ports/56518 trevor [patch][non-maintainer] update checksums o [2003/09/06] ports/56533 portmgr update Mk/bsd.port.mk o [2003/09/06] ports/56536 ports-bugs New Port: CGI-Application-ValidateRM-1.06 o [2003/09/06] ports/56540 petef Update port: p5-CGI-Application from 2.3 o [2003/09/06] ports/56541 ports-bugs Update port: p5-Data-FormValidator from 1 f [2003/09/06] ports/56546 ports-bugs [maintainer update] sysutils/filelight to o [2003/09/06] bin/56549 [patch] rtld.c - give more info on missin o [2003/09/07] gnu/56554 re add Cc: maintainer feature to send-pr o [2003/09/07] bin/56558 [PATCH] locate(1) cannot be safely used w o [2003/09/07] ports/56562 anders [update] www/mod_sqlinclude: update to 1. o [2003/09/07] ports/56564 wjv [PATCH] textproc/p5-XML-Node: update to 0 o [2003/09/07] kern/56575 joe setting in uvisor.c for CLIE_40 is incorr o [2003/09/07] ports/56578 ports-bugs security/logcheck: /var/log/security shou o [2003/09/07] ports/56582 portmgr request for virtual category "pear" o [2003/09/08] docs/56584 hmp Updates for VOP_GETPAGES(9) and VOP_PUTPA o [2003/09/08] ports/56585 ports-bugs distfile problems with port sysutils/rc_s f [2003/09/08] bin/56595 rwatson sys/mac.h, sys/mac_policy.h cannot be use f [2003/09/08] ports/56596 ports-bugs mtxorbd port submission o [2003/09/08] ports/56597 ports-bugs bad startup perfomance of mpg123 with pcm o [2003/09/08] ports/56600 portmgr [PATCH] bsd.port.mk: work with -s flag, c o [2003/09/08] bin/56606 df cannot handle 2TB NFS volumes o [2003/09/08] kern/56617 Hang on boot w/neomagic audio on Dell Lat o [2003/09/09] bin/56622 jmg Wrong debug message in usbd p [2003/09/09] conf/56626 ru whatis(1) does not include ports o [2003/09/09] ports/56641 portmgr [PATCH] bsd.port.mk: support for SHA1 and o [2003/09/09] ports/56644 ports-bugs New Port: Urchin analyzes web traffic. o [2003/09/09] bin/56646 [patch] getgrouplist()/setgroups() argume o [2003/09/09] bin/56648 [PATCH] enable rcorder(8) to use a direct o [2003/09/09] bin/56649 [patch] More spurious semicolon removal o [2003/09/09] bin/56653 [patch] Removal of non-standard void * ar o [2003/09/09] ports/56654 ports-bugs Update of lang/expect with tcl84 and tk84 o [2003/09/09] ports/56658 ports-bugs Convert security/amavisd startup scripts o [2003/09/09] kern/56664 bad file# in MTIO status buffer after MTE o [2003/09/09] ports/56671 ports-bugs Update port devel/cmake to 1.6.7 o [2003/09/10] ports/56677 nbm qmailanalog port does not install to corr f [2003/09/10] ports/56685 ports-bugs Update port: chinese/qterm o [2003/09/11] bin/56696 atacontrol core dump (sscanf on unintiali o [2003/09/11] ports/56699 seanc net/openreg needs to move to dns category o [2003/09/11] ports/56709 ports-bugs Update port: net/kopete update to version o [2003/09/11] misc/56715 darrenr ipmon starts too early and exits immediat o [2003/09/11] misc/56720 Resolver UNICODE support o [2003/09/11] ports/56721 lioux [patch, non-maintainer] multimedia/ffmpeg o [2003/09/11] kern/56726 [PATCH] patches for if_bfe (Broadcom BCM4 o [2003/09/12] conf/56736 [PATCH] rcNG: enable packages to particip o [2003/09/12] ports/56742 ports-bugs expect build fails with option WITHOUT_X1 o [2003/09/13] docs/56745 doc Some suggestions for the Bibliography cha f [2003/09/13] ports/56752 gnome Using the Crux GTK+ 2.2 theme causes prob o [2003/09/13] ports/56755 ports-bugs update for the port print/cdlabelgen f [2003/09/13] ports/56756 ports-bugs bogus patch on emulators/twin a [2003/09/14] ports/56859 portmgr [patch] minor fixes for ports/Tools/portb o [2003/09/14] ports/56864 ports-bugs sdl12 fails in joystick/bsd o [2003/09/14] ports/56866 ports-bugs ports/news/inn-stable ovdb support can't o [2003/09/14] ports/56870 ports-bugs New port: qtella 0.6.2 o [2003/09/14] docs/56872 doc [Patch] Talk about EVFILT_NETDEV in kqueu o [2003/09/14] ports/56877 petef [PATCH] textproc/p5-URI-Find: update to 0 o [2003/09/14] ports/56882 ports-bugs mark biology/tinker as BROKEN o [2003/09/14] docs/56883 doc Inadequately-documented charter for freeb o [2003/09/15] docs/56901 doc [patch] articles/diskless-x: fix bad engl o [2003/09/15] docs/56902 doc [patch] articles/fbsd-from-scratch: add/f o [2003/09/15] docs/56903 doc [patch] articles/fonts: add application t o [2003/09/15] ports/56909 roger cannot compile openh323 o [2003/09/15] docs/56911 hmp Document for VOP_OPEN missing the last pa o [2003/09/16] bin/56914 ftpd ignores default umask settings o [2003/09/16] docs/56915 doc [patch] articles/fonts: update links o [2003/09/16] ports/56922 ports-bugs www/apache2: Apache-2.0.47 ab Utility doe o [2003/09/16] ports/56928 ports-bugs jce-aba port should install to $JAVA_HOME o [2003/09/16] docs/56932 doc [patch] articles/releng-packages: add "no o [2003/09/16] conf/56934 rc.firewall rules for natd expect an inte o [2003/09/16] docs/56936 doc [patch] articles/java-tomcat: add applica o [2003/09/17] conf/56940 pccard.conf entry for PCET10-CL causes sy o [2003/09/17] ports/56948 portmgr Maintainer Update: www/caudium-devel o [2003/09/17] ports/56950 roam dns/djbdns/Makefile uses, but doesn't set o [2003/09/17] ports/56951 roam [PATCH] add ignoreip2 patch o [2003/09/17] conf/56952 re Floppy install error o [2003/09/17] kern/56954 [PATCH] fix typo in comment of sys/cam/sc o [2003/09/17] conf/56956 xterm-ic from termcap is not included in o [2003/09/17] ports/56958 ports-bugs ports with non-conforming version numbers o [2003/09/17] ports/56960 portmgr [PATCH] bsd.port.mk: Don't accept PORTVER o [2003/09/17] bin/56961 [PATCH] pkg_install: match package versio o [2003/09/17] ports/56964 wjv port update: textproc/p5-XML-Twig build f f [2003/09/17] ports/56967 ports-bugs math pari update o [2003/09/17] ports/56969 ports-bugs New port: mail/mail-notification, a GNOME o [2003/09/18] ports/56977 mat net/p5-Net-Server assumes wrong setuid se o [2003/09/18] ports/56980 ports-bugs unprivileged user, extracting of tarballs o [2003/09/18] docs/56981 doc man terminfo(5) from libncurses does not o [2003/09/18] kern/56985 Fix for OEM Proxim Harmony PCMCIA wireles o [2003/09/18] bin/56989 [PATCH] pkg_install: -v doesn't work on p o [2003/09/19] bin/56991 rwatson getfacl long groupnames (Cannot allocate o [2003/09/19] misc/56999 FreeCom USB CD/RW problem on FreeBSD 5.1 o [2003/09/19] ports/57003 green Update port: emulators/snes9x to 1.41.1 o [2003/09/19] ports/57010 kris Update port: x11/wdm to 1.26 o [2003/09/19] ports/57016 ports-bugs sysutils/pkg_install: left over files in o [2003/09/19] bin/57018 [PATCH] convert growfs to use libufs(3) o [2003/09/19] ports/57019 brian [PATCH] arpwatch enhancements o [2003/09/19] bin/57024 a new option for xargs(1) -- only treat \ o [2003/09/19] bin/57026 [PATCH] Therer is no way to know the labe o [2003/09/19] bin/57029 [PATCH] pkg_install: make more robust aga o [2003/09/19] ports/57031 dougb upslog started with incorrect command lin o [2003/09/20] ports/57034 ports-bugs update net/binkd f [2003/09/20] ports/57039 marcus New port: x11/gtk2-theme-switch - A comma o [2003/09/20] ports/57041 ports-bugs Slight change to net/citadel to correct p o [2003/09/20] bin/57045 trpt(8) option -t was disabled on -curren o [2003/09/20] kern/57046 joe Add usb quirk for Sigmatel USB Flash MP3 o [2003/09/20] kern/57050 Add IBM USB Drive support o [2003/09/21] bin/57054 let test(1) compare the mtime of a file t o [2003/09/21] conf/57058 NO_MAILWRAPPER in make.conf not completel o [2003/09/21] ports/57060 ports-bugs www/smarty: better pkg-plist o [2003/09/21] kern/57065 jmg core dumps with NODUMP flag o [2003/09/21] ports/57066 ports-bugs [patch][non-maintainer] set devel/py-pysc a [2003/09/21] ports/57067 portmgr add imake and pthread detection to Tools/ o [2003/09/21] ports/57074 ports-bugs mail/postfix pkg-message needs additional o [2003/09/21] conf/57075 rc.sendmail needs to honour ${sendmail_ms o [2003/09/21] ports/57078 des [NEW PORT] databases/gnatsweb4 f [2003/09/21] ports/57079 ports-bugs Update to graphics/dynamechs o [2003/09/21] ports/57080 ports-bugs [patch][non-maintainer] update finance/op o [2003/09/22] bin/57088 [PATCH] for a possible fd leak in libcam. o [2003/09/22] bin/57089 "w" does not honor the -n option o [2003/09/22] ports/57101 ports-bugs [patch][non-maintainer] mark net/howl BRO o [2003/09/22] docs/57118 doc o [2003/09/23] ports/57122 obrien ncftp3: !command doesn't work p [2003/09/23] kern/57123 SMBFS incorrect LFN & 8.3 bad character h o [2003/09/23] i386/57125 i386 Comment to IPSEC_FILTERGIF in LINT is now o [2003/09/23] ports/57128 cy security/krb5: fix build on -stable, fix o [2003/09/23] i386/57131 i386 Device ID for Intel 82801DBM IDE Controll o [2003/09/23] i386/57133 i386 PCI device ID for Intel 82801DB/BAM/CAM a o [2003/09/23] ports/57143 ports-bugs modules in flash shell broken o [2003/09/24] ports/57151 tobez Port lang/perl5.8: use.perl fails to modi o [2003/09/24] ports/57152 ports-bugs pear-* ports: simplify path to devel/pear o [2003/09/24] docs/57153 doc S_IRWXU missing in fstat(2) man page? o [2003/09/24] ports/57155 ports-bugs make devel/pear-PEAR and other pear-* por o [2003/09/24] ports/57162 ports-bugs The latest stable release of DansGuardian o [2003/09/24] ports/57167 edwin [REPOCOPY WAITING] news/inn-current: Deve o [2003/09/24] ports/57169 ports-bugs new port: editors/mlview - a treebased xm o [2003/09/24] ports/57181 keith Update port: chinese/arphicttf o [2003/09/24] ports/57183 keith Removal port: chinese/abiword o [2003/09/24] java/57192 java linux-ibm-java1.4 freeze f [2003/09/24] ports/57198 ports-bugs multimedia/xmms fix to work with CDDA und o [2003/09/24] ports/57199 ports-bugs port update: www/slash, chinese/metalist o [2003/09/25] docs/57209 doc [patch] article/mh: add missing docbook t o [2003/09/25] ports/57223 cy security/krb5 fails make package with no o [2003/09/25] ports/57224 ports-bugs [NEW PORT] port net/ldapc++: OpenLDAP C++ o [2003/09/25] ports/57226 ports-bugs audio/cdparanoia fix to work with cooked_ o [2003/09/25] ports/57227 ports-bugs audio/dagrab fix to work under -CURRENT o [2003/09/25] ports/57229 edwin [patch] sysutils/lire: point to DocBook-X o [2003/09/25] kern/57230 [patch] psm(4) incorrectly identifies an o [2003/09/25] bin/57231 usr.bin/uname -s value always placed in f o [2003/09/26] amd64/57250 amd64 Broken PTRACE_GETFPREGS and PTRACE_SETFPR f [2003/09/26] ports/57259 portmgr Building a port as root using an NFS-moun o [2003/09/26] ports/57272 portmgr [patch] COMMENT/COMMENTFILE checking is t o [2003/09/27] ports/57286 ports-bugs Update port: graphics/xzgv to 0.8 o [2003/09/27] ports/57289 ports-bugs teamspeak-server port is broken in 3 ways o [2003/09/27] standards/57295standards [patch] make does not include cmd line va o [2003/09/27] docs/57298 blackend Using compact flash cards a [2003/09/28] ports/57310 ports-bugs amavisd-new searches for SpamAssassin loc o [2003/09/28] ports/57319 nork archivers/lha has a newer version o [2003/09/28] kern/57328 [patch] -current loader uses wrong IP add o [2003/09/28] ports/57333 gnome gnomevfs2 will not build when bind84-base o [2003/09/28] ports/57335 gnome Abiword 2.0 cannot be resized o [2003/09/29] ports/57349 knu [PATCH] port sysutils/portupgrade: typos o [2003/09/29] kern/57350 kernel panics when using old monocrome pr o [2003/09/29] ports/57357 ports-bugs Update port: graphics/gifsicle to 1.40 f [2003/09/29] ports/57359 ports-bugs Update port: textproc/wv to 1.0.0 o [2003/09/29] ports/57361 ports-bugs Update port: www/amaya to 8.1b o [2003/09/29] ports/57378 portmgr Use SU_CMD for deinstall and deinstall-al f [2003/09/29] ports/57379 dinoex [FIX] security/clamav 0.60 o [2003/09/29] ports/57382 ports-bugs [PATCH] security/amavisd-new 20030616.p5 o [2003/09/29] ports/57383 ports-bugs [PATCH] sysutils/idled 1.16 o [2003/09/29] ports/57384 dougb [PATCH] mail/p5-Mail-SpamAssassin 2.60 o [2003/09/29] ports/57385 mharo [PATCH] ftp/proftpd 1.2.8_1 s [2003/09/29] ports/57386 edwin [REPOCOPY WAITING] www/apache21: Add Apac o [2003/09/29] docs/57388 doc INSTALL.TXT enhancement: mention ok promp o [2003/09/30] ports/57394 smace net/libnet-devel: install doc and example o [2003/09/30] ports/57397 ports-bugs Update database/freetds to 0.61.2; fix di o [2003/09/30] ports/57403 portmgr [patch] create WWWOWN and WWWGRP o [2003/09/30] bin/57407 [patch] Better NTP support for dhclient(8 o [2003/09/30] ports/57408 ports-bugs linux_nwndata and linux_nwnclient ports p o [2003/09/30] ports/57409 wjv Update port: devel/py-twisted to 1.0.7 o [2003/09/30] ports/57416 ports-bugs ports/x11-toolkits/tk80 broken under Free o [2003/09/30] ports/57421 krion [NEW PORT] net/ifgraph: Simple grapher of o [2003/09/30] kern/57422 MT_TAG usage are not reported o [2003/09/30] kern/57428 a couple of new sysctl to toggle which IP o [2003/09/30] ports/57431 ports-bugs [patch][non-maintainer] mark x11-fm/vide o [2003/09/30] ports/57435 dburr [patch][non-maintainer] update master sit o [2003/09/30] ports/57438 portmgr [PATCH] bsd.port.subdir.mk: fix INDEX bui o [2003/09/30] ports/57439 anders [PATCH] security/pam_mysql o [2003/09/30] ports/57442 jmz [patch][non-maintainer] mark print/tex as o [2003/09/30] ports/57443 nakai [patch][non-maintainer] mark games/xpuyo f [2003/10/01] ports/57448 ports-bugs new port: kkbswitch, a KDE keyboard layou p [2003/10/01] bin/57462 [patch]Update usage() of mount_msdos(8) i o [2003/10/01] misc/57464 Boot process: loader(8) seems to confuse o [2003/10/01] kern/57468 Quirk for Quantum LPS540S o [2003/10/01] kern/57469 Quirk for Conner CP3500 o [2003/10/01] ports/57475 ports-bugs devel/sdl12: upgrading to 1.2.6 + some fi o [2003/10/01] ports/57476 ports-bugs correcting paths in netsaint plugins o [2003/10/01] ports/57483 ports-bugs [MAINTAINER] sysutils/userneu: update to o [2003/10/01] ports/57485 ports-bugs ghostscript-gnu-7.07_3 portupgrade - unab o [2003/10/01] ports/57486 ports-bugs [patch] poppassd doesn't work o [2003/10/01] kern/57487 sound Sound stops working on my Thinkpad 560X a o [2003/10/01] ports/57488 portmgr bsd.port.mk: share/nls/C/C -> C o [2003/10/01] ports/57490 okazaki bus error troff running. need to version o [2003/10/02] ports/57496 portmgr [PATCH] bsd.port.mk: check for USE_* used o [2003/10/02] ports/57498 ports-bugs HEIMDAL_HOME should be defined in src or o [2003/10/02] ports/57502 ports-bugs ports that define USE_* too late o [2003/10/02] ports/57503 ports-bugs New Port Submission mod_auth_mysql41_ap2 f [2003/10/02] ports/57509 ports-bugs New arabic port: duali f [2003/10/02] ports/57511 ports-bugs New arabic port: katoob o [2003/10/02] ports/57513 ports-bugs Change category of kde-i18n-ar o [2003/10/02] ports/57515 ports-bugs Change category: koffice-i18n-ar o [2003/10/02] conf/57517 add parameter for /etc/periodic/daily/210 o [2003/10/02] ports/57519 kiri [patch] Upgrade of textproc/fop from 0.20 o [2003/10/02] ports/57520 ports-bugs [new port]: audio/mpc o [2003/10/02] ports/57521 ports-bugs New Port - databases/py-sybase o [2003/10/02] kern/57522 [PATCH] New PID allocater algorithm from o [2003/10/03] ports/57525 ports-bugs New port: katalog o [2003/10/03] ports/57529 portmgr [PATCH] bsd.port.mk: enable the use of US o [2003/10/03] ports/57535 kevlo Update port: textproc/source_highlight to o [2003/10/03] docs/57541 trhodes Some suggestions for the Basics chapter o o [2003/10/03] i386/57546 Adding VIA C3 capability printout in i386 o [2003/10/04] ports/57564 mbr [patch][non-maintainer] change master sit o [2003/10/04] docs/57569 doc error on gensetdefs(8) man page f [2003/10/04] ports/57576 ports-bugs Update port: audio/xmms-sndstretch to 0.7 o [2003/10/04] www/57580 blackend FreeBSD.ORG WWW Turkish Translation f [2003/10/04] ports/57582 ports-bugs [patch][non-maintainer] update cad/gwave f [2003/10/04] ports/57589 ports-bugs [unbreak port] mail/mahogany to 0.65 and f [2003/10/04] ports/57593 kde kdenetwork3/ksirc (kde-3.1.3) double past o [2003/10/05] ports/57620 ports-bugs [patch] update x11-toolkits/fox-devel to o [2003/10/05] ports/57621 ports-bugs delete port x11-toolkits/fox-xunicode o [2003/10/05] ports/57628 ports-bugs GXMame is a GTK frontend for xmame f [2003/10/05] ports/57629 ports-bugs Update x11-toolkits/XView (practically a o [2003/10/05] bin/57630 lptcontrol gives "device busy" if device o [2003/10/05] ports/57635 ports-bugs [UPDATE] net/rdesktop-devel: Add RDP5 Sup o [2003/10/05] ports/57637 lioux multimedia/mpeg4ip is broken on HEAD o [2003/10/06] bin/57641 [patch] missing option in mdmfs (mount_mf o [2003/10/06] ports/57645 erwin use USE_MYSQL in mail/tpop3d o [2003/10/06] ports/57651 ports-bugs New port: finance/kexchange o [2003/10/06] ports/57652 ports-bugs [patch] www/apache-contrib: Let the user o [2003/10/06] ports/57661 naddy [new port] www/mod_log_data: Module for A o [2003/10/06] ports/57662 naddy [new port] www/mod_tidy: Validates the HT o [2003/10/06] ports/57664 naddy [new port] www/mod_traf_thief: Allows you o [2003/10/06] ports/57665 portmgr [PATCH] bsd.port.mk: LIB_DEPENDS should n o [2003/10/06] ports/57668 ports-bugs [new port] mail/mboxcheck-applet o [2003/10/06] docs/57669 doc IFMIB(4) man page uses sysctl(3) incorrec o [2003/10/06] ports/57674 erwin [NEW PORT] net/p5-Net-SNMP3: Net::SNMP fo o [2003/10/07] kern/57696 NFS client readdir terminates prematurely o [2003/10/07] ports/57705 ports-bugs Update port: print/lyx to 1.3.3 o [2003/10/07] ports/57707 ports-bugs [new port] www/mod_auth_cookie_mysql: All o [2003/10/07] bin/57715 tcopy enhancement f [2003/10/07] ports/57716 ports-bugs Update port: chinese/cce o [2003/10/07] kern/57721 Dell built in SB Live not detected (patch o [2003/10/07] ports/57726 trevor upgrade cvslines to 1.6.8 o [2003/10/07] ports/57727 ports-bugs repocopy request for OpenOffice.org o [2003/10/08] misc/57748 [patch] rc.network doesn't allow for -a i o [2003/10/08] ports/57749 roam ports using NOPORTSDOCS (instead of NOPOR o [2003/10/08] ports/57751 marcus [PATCH] port devel/portlint: check for NO o [2003/10/08] ports/57752 ports-bugs New port: audio/jamboree, a simple GNOME o [2003/10/08] ports/57753 ports-bugs databases/mysql-connector-java -- new por o [2003/10/08] ports/57759 ports-bugs New port: A very function im client o [2003/10/08] ports/57765 ports-bugs [new port] polish/gnugadu2 - GTK2 based n o [2003/10/08] ports/57768 tobez [patch][non-maintainer] update devel/p5-C o [2003/10/08] ports/57769 ports-bugs [patch][non-maintainer] update editors/te o [2003/10/08] ports/57772 mdodd [non-maintaier] mark games/scorched3d-dev o [2003/10/08] ports/57775 ports-bugs [non-maintainer] mark graphics/quat-gui a o [2003/10/08] ports/57776 ports-bugs [non-maintainer] mark misc/libh as broken o [2003/10/08] ports/57778 portmgr [PATCH] bsd.port.mk: proposal for a PORTD f [2003/10/08] ports/57779 lev Update devel/subversion to 0.31, with per o [2003/10/08] pending/57782gnats-admin update patch for graphics viewer xzgv fro o [2003/10/08] i386/57783 i386 UINT32_MAX is missing from FreeBSD 4.X o [2003/10/09] ports/57789 ports-bugs New port of asr10 o [2003/10/09] bin/57791 dig option -x incorrectly produces ip6.ar s [2003/10/09] ports/57794 anholt [patch] x11/XFree86-4-libraries: bug fix o [2003/10/09] ports/57801 ports-bugs port update: math/R-letter 1.7.0 to 1.7.1 o [2003/10/09] ports/57803 ports-bugs Update port: games/gtetrinet to 0.7.5 o [2003/10/09] ports/57809 dd [update] dictd to 1.9.7 o [2003/10/09] ports/57810 dd [update] dict to 1.9.7 o [2003/10/09] ports/57817 ports-bugs New port french/gibi + french/aster packa o [2003/10/09] ports/57823 kbyanc PATCH: obey portlint warnings o [2003/10/10] ports/57836 lev Update port: www/neon o [2003/10/10] docs/57838 doc missing in docu: port Makefile target 'pa o [2003/10/10] ports/57849 kuriyama Upgrade port: p5-Net-FTP-Common to 3.8 o [2003/10/10] ports/57853 ports-bugs new version of linux-eagle released o [2003/10/10] sparc64/57856sparc64 sparc64: IDE Raid controller no detect di o [2003/10/10] ports/57857 perky Update port: net/liferea 0.3.8 -> 0.4.0 f [2003/10/10] ports/57858 ports-bugs New ports: graphics/vtk* 4.3.0 instead of o [2003/10/10] ports/57859 ports-bugs [patch] news/inn (inn-2.4.0_3) does not s o [2003/10/10] ports/57860 ports-bugs New port: science/ovt: Orbit Visualizatio o [2003/10/10] ports/57861 taoka [PATCH] ports/japanese/*fpw*: `make deins o [2003/10/11] ports/57863 keith Update port: lang/mmix to mmix-20030622 o [2003/10/11] ports/57865 ports-bugs New ports: www/mod_watch4 o [2003/10/11] ports/57871 ports-bugs NEW port: graphics/robot o [2003/10/11] ports/57872 ports-bugs [PATCH] games/ptkei: update to 1.18.1 o [2003/10/11] ports/57873 ports-bugs [PATCH] games/eif: update to 1.3.2 o [2003/10/11] ports/57874 ports-bugs Pure-FTPd is not configured for files >2G o [2003/10/11] ports/57876 ports-bugs new port:graphics/cinepaint o [2003/10/11] ports/57877 ports-bugs Update port: mail/mailman add option for o [2003/10/11] ports/57878 ports-bugs [non-maintainer] Update port: mail/squirr o [2003/10/11] ports/57879 ports-bugs [PATCH] emulators/xmame: update to 0.74.1 o [2003/10/11] ports/57880 ports-bugs [patch]update irc/ircd-hybrid to 6.4.1 o [2003/10/12] ports/57882 ports-bugs [update] dns/dnsmasq 1.13 -> 1.17 o [2003/10/12] ports/57883 edwin [REPOCOPY WAITING] Update port: deskutils o [2003/10/12] ports/57885 ports-bugs New port: devel/agide o [2003/10/12] ports/57902 ports-bugs New port: bbsmount - graphical disk mount o [2003/10/12] i386/57909 njl ACPI related slowness on an ASUS M2400N n o [2003/10/12] ports/57910 ports-bugs [UPDATE] mail/py-spambayes to latest vers o [2003/10/12] standards/57911standards fnmatch ("[[:alpha:]]","x", FNM_PATHNAME) o [2003/10/12] ports/57913 ports-bugs quagga port needs to be updated to refer o [2003/10/12] ports/57914 ports-bugs [maintainer patch] net/morebalance: Add m o [2003/10/12] ports/57915 ports-bugs [maintainer update] www/mod_bandwidth: Re o [2003/10/12] ports/57916 ports-bugs [maintainer patch] dns/bind9-sdb-mysql: U o [2003/10/12] ports/57917 ports-bugs Maintainer update: security/hunch to 1.1. o [2003/10/12] ports/57919 ports-bugs [maintainer update] dns/dnsmasq update to o [2003/10/12] ports/57921 mat New port: www/p5-B-LexInfo o [2003/10/12] ports/57924 mat Update port: www/p5-Apache-Peek 0.9501 -> o [2003/10/12] ports/57925 mat Update ports: www/p5-CGI-SpeedyCGI o [2003/10/12] docs/57926 doc amd.conf.5 poorly format as it has both m o [2003/10/12] ports/57927 ports-bugs Fix port: www/udmsearch o [2003/10/12] ports/57928 portmgr Document package-recursive in bsd.ports.m o [2003/10/12] ports/57930 ports-bugs [patch] sysutils/xmbmon: enable ADM9240 h o [2003/10/12] ports/57931 ports-bugs Update port: databases/grass to 5.0.2 o [2003/10/12] ports/57932 ports-bugs Update port: devel/cvsadmin (dumps core) o [2003/10/12] ports/57933 ports-bugs print/ft2demos from 2.1.4 to 2.1.5 o [2003/10/13] ports/57934 ports-bugs maintainer-update: print/pfaedit to 20031 o [2003/10/13] ports/57937 ports-bugs fix cups-base package install, take maint o [2003/10/13] ports/57938 ports-bugs make cups-lpr installation more plug'n'pl o [2003/10/13] ports/57939 mat New port: textproc/p5-XML-DTDParser o [2003/10/13] ports/57941 ports-bugs [patch] comms/libticables: fix build on n o [2003/10/13] ports/57942 mat New port: textproc/p5-XML-Handler-HTMLWri o [2003/10/13] ports/57943 ports-bugs isc-dhcp3 port broken with lots of interf o [2003/10/13] ports/57944 ports-bugs [maintainer update] deskutils/basket to 0 o [2003/10/13] ports/57946 ports-bugs Update japanese/mozilla-jlp o [2003/10/13] ports/57947 krion remove perl stuff in order to prevent con o [2003/10/13] ports/57952 mat Update port: p5-XML-DT from 0.20 to 0.26 o [2003/10/13] ports/57954 ports-bugs [maintainer update] net/pen: Update pen t o [2003/10/13] ports/57955 ports-bugs Update port: textproc/xmlcatmgr 1.1 o [2003/10/13] ports/57959 ports-bugs New port: textproc/p5-XML-Validator-Schem o [2003/10/13] ports/57960 ports-bugs Update port: x11-toolkits/blt o [2003/10/13] ports/57962 ports-bugs Update port: net/p5-Net-Google from 0.52 o [2003/10/13] ports/57964 ports-bugs [new port] www/mod_authenticache: A gener o [2003/10/13] ports/57966 ports-bugs [new port] www/mod_auth_external: Allows o [2003/10/13] ports/57967 ports-bugs [new port] www/mod_auth_external2:Allows o [2003/10/13] ports/57968 ports-bugs tcplist-2.2_1: fix for varargs -> stdarg 2553 problems total. From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 13 11:50:25 2003 Return-Path: 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 851C516A4B3 for ; Mon, 13 Oct 2003 11:50:25 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5825D43F93 for ; Mon, 13 Oct 2003 11:50:24 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h9DIoNFY052187 for ; Mon, 13 Oct 2003 11:50:24 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h9DIoN5t052183; Mon, 13 Oct 2003 11:50:23 -0700 (PDT) (envelope-from gnats) Date: Mon, 13 Oct 2003 11:50:23 -0700 (PDT) Message-Id: <200310131850.h9DIoN5t052183@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Stefan Farfeleder Subject: Re: kern/57945: [patch] Add locking to kqueue to make it MP-safe X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Stefan Farfeleder List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Oct 2003 18:50:25 -0000 The following reply was made to PR kern/57945; it has been noted by GNATS. From: Stefan Farfeleder To: Bruce Evans Cc: bug-followup@FreeBSD.org Subject: Re: kern/57945: [patch] Add locking to kqueue to make it MP-safe Date: Mon, 13 Oct 2003 20:47:38 +0200 On Tue, Oct 14, 2003 at 03:56:19AM +1000, Bruce Evans wrote: > Spin mutexes are actually less efficient, since in the usual uncontested > case they do the same things plus extra calls to critical_enter() and > critical exit. Ok, thanks. > > --- kqueue_lock.diff begins here --- > > Index: src/sys/kern/kern_event.c > > =================================================================== > > RCS file: /usr/home/ncvs/src/sys/kern/kern_event.c,v > > retrieving revision 1.60 > > diff -u -r1.60 kern_event.c > > --- src/sys/kern/kern_event.c 18 Jun 2003 18:16:39 -0000 1.60 > > +++ src/sys/kern/kern_event.c 13 Oct 2003 00:35:42 -0000 > > ... > > @@ -704,15 +705,16 @@ > > > > start: > > kevp = kq->kq_kev; > > - s = splhigh(); > > + mtx_lock(&kq->kq_mtx); > > if (kq->kq_count == 0) { > > if (timeout < 0) { > > error = EWOULDBLOCK; > > + mtx_unlock(&kq->kq_mtx); > > } else { > > kq->kq_state |= KQ_SLEEP; > > - error = tsleep(kq, PSOCK | PCATCH, "kqread", timeout); > > + error = msleep(kq, &kq->kq_mtx, PSOCK | PCATCH | PDROP, > > + "kqread", timeout); > > } > > - splx(s); > > Not copying the spl locking seems to give a bug here. msleep() returns with > the mutex held. The PDROP flag should prevent msleep() from reacquiring the lock. > > if (error == 0) > > goto retry; > > /* don't restart after signals... */ > > @@ -728,20 +730,22 @@ > > kn = TAILQ_FIRST(&kq->kq_head); > > TAILQ_REMOVE(&kq->kq_head, kn, kn_tqe); > > if (kn == &marker) { > > - splx(s); > > + mtx_unlock(&kq->kq_mtx); > > if (count == maxevents) > > goto retry; > > goto done; > > } > > + kq->kq_count--; > > + mtx_unlock(&kq->kq_mtx); > > if (kn->kn_status & KN_DISABLED) { > > kn->kn_status &= ~KN_QUEUED; > > - kq->kq_count--; > > + mtx_lock(&kq->kq_mtx); > > continue; > > } > > I don't see any reason to unlock/lock here. There were no splx()/splhigh()'s. > splhigh() is very global but kq_mtx is very local so keeping the > critical sections short should be much less needed than before. Ah, right. So it should look like this? + kq->kq_count--; if (kn->kn_status & KN_DISABLED) { kn->kn_status &= ~KN_QUEUED; - kq->kq_count--; continue; } + mtx_unlock(&kq->kq_mtx); > > if ((kn->kn_flags & EV_ONESHOT) == 0 && > > kn->kn_fop->f_event(kn, 0) == 0) { > > kn->kn_status &= ~(KN_QUEUED | KN_ACTIVE); > > - kq->kq_count--; > > + mtx_lock(&kq->kq_mtx); > > continue; > > } > > *kevp = kn->kn_kevent; > > Here dropping the mutex seems to be be necessary for calling the > function, but the function call was locked by splhigh() before. Yes, not dropping kq_mtx causes LORs between at least the kqueue lock and the pipe lock. > BTW, what locks kn? Nothing at the moment, I hoped it wouldn't be necessary. Do you have a specific race in mind? Stefan From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 13 12:10:21 2003 Return-Path: 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 4AE5216A4B3 for ; Mon, 13 Oct 2003 12:10:21 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F60143FA3 for ; Mon, 13 Oct 2003 12:10:18 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h9DJAHFY056273 for ; Mon, 13 Oct 2003 12:10:17 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h9DJAHTV056272; Mon, 13 Oct 2003 12:10:17 -0700 (PDT) (envelope-from gnats) Resent-Date: Mon, 13 Oct 2003 12:10:17 -0700 (PDT) Resent-Message-Id: <200310131910.h9DJAHTV056272@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, Ryuichiro Imura Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9587D16A4BF; Mon, 13 Oct 2003 12:03:28 -0700 (PDT) Received: from mail.ryu16.org (YahooBB219005044050.bbtec.net [219.5.44.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id C64FD43FBD; Mon, 13 Oct 2003 12:03:23 -0700 (PDT) (envelope-from imura@ryu16.org) Received: from redeye.xt.ryu16.org (localhost [127.0.0.1]) by mail.ryu16.org (8.12.9p1/8.12.9) with ESMTP id h9DJ3Mwj016537; Tue, 14 Oct 2003 04:03:22 +0900 (JST) (envelope-from imura@redeye.xt.ryu16.org) Received: (from imura@localhost) by redeye.xt.ryu16.org (8.12.9p1/8.12.9/Submit) id h9DJ3Mu9016536; Tue, 14 Oct 2003 04:03:22 +0900 (JST) (envelope-from imura) Message-Id: <200310131903.h9DJ3Mu9016536@redeye.xt.ryu16.org> Date: Tue, 14 Oct 2003 04:03:22 +0900 (JST) From: Ryuichiro Imura To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: sos@FreeBSD.org Subject: kern/57969: MFC request for new ata Intel PCI id X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Ryuichiro Imura List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Oct 2003 19:10:21 -0000 >Number: 57969 >Category: kern >Synopsis: MFC request for new ata Intel PCI id >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: Mon Oct 13 12:10:17 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Ryuichiro Imura >Release: FreeBSD 4.9-PRERELEASE i386 >Organization: >Environment: System: FreeBSD redeye.xt.ryu16.org 4.9-PRERELEASE FreeBSD 4.9-PRERELEASE #7: Sat Sep 20 20:44:42 JST 2003 root@vrs:/usr/obj/usr/src/sys/U1 i386 >Description: Please add Intel ICH4 id which has been added to -current since sys/dev/ata/ata-pci.h rev 1.10. This chip is used in VAIO PCG-TR2E, and w/o this patch VAIO won't boot unless typing `set hw.ata.ata_dma="0"' before system boot. >How-To-Repeat: >Fix: Index: ata-dma.c =================================================================== RCS file: /home/ncvs/src/sys/dev/ata/ata-dma.c,v retrieving revision 1.35.2.33 diff -u -r1.35.2.33 ata-dma.c --- ata-dma.c 5 Sep 2003 07:29:10 -0000 1.35.2.33 +++ ata-dma.c 13 Oct 2003 18:01:01 -0000 @@ -217,6 +217,7 @@ switch (chiptype) { case 0x24db8086: /* Intel ICH5 */ + case 0x24ca8086: /* Intel ICH4 */ case 0x24cb8086: /* Intel ICH4 */ case 0x248a8086: /* Intel ICH3 mobile */ case 0x248b8086: /* Intel ICH3 */ Index: ata-pci.c =================================================================== RCS file: /home/ncvs/src/sys/dev/ata/ata-pci.c,v retrieving revision 1.32.2.16 diff -u -r1.32.2.16 ata-pci.c --- ata-pci.c 26 Aug 2003 11:32:57 -0000 1.32.2.16 +++ ata-pci.c 13 Oct 2003 18:01:09 -0000 @@ -146,6 +146,7 @@ case 0x248b8086: return "Intel ICH3 ATA100 controller"; + case 0x24ca8086: case 0x24cb8086: return "Intel ICH4 ATA100 controller"; >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 13 13:00:35 2003 Return-Path: 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 9DC1A16A4B3 for ; Mon, 13 Oct 2003 13:00:35 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F37CC43F85 for ; Mon, 13 Oct 2003 13:00:32 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h9DK0WFY059379 for ; Mon, 13 Oct 2003 13:00:32 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h9DK0Woo059378; Mon, 13 Oct 2003 13:00:32 -0700 (PDT) (envelope-from gnats) Resent-Date: Mon, 13 Oct 2003 13:00:32 -0700 (PDT) Resent-Message-Id: <200310132000.h9DK0Woo059378@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, "Tamas R." Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D47716A4B3 for ; Mon, 13 Oct 2003 12:57:49 -0700 (PDT) Received: from webcom.hu (webcom.hu [212.92.19.112]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36F7A43FAF for ; Mon, 13 Oct 2003 12:57:44 -0700 (PDT) (envelope-from freddy@webcom.hu) Received: from adsl212200.vnet.hu ([62.77.212.200] helo=tornado.hokinet.net) by webcom.hu with esmtp (Exim 3.35 #1 (Debian)) id 1A98p4-0001WH-00 for ; Mon, 13 Oct 2003 21:57:42 +0200 Received: from tornado.hokinet.net (localhost [127.0.0.1]) by tornado.hokinet.net (8.12.10/8.12.10) with ESMTP id h9DJvTSS001362 for ; Mon, 13 Oct 2003 21:57:29 +0200 (CEST) (envelope-from freddy@tornado.hokinet.net) Received: (from freddy@localhost) by tornado.hokinet.net (8.12.10/8.12.10/Submit) id h9DJvTCf001361; Mon, 13 Oct 2003 21:57:29 +0200 (CEST) (envelope-from freddy) Message-Id: <200310131957.h9DJvTCf001361@tornado.hokinet.net> Date: Mon, 13 Oct 2003 21:57:29 +0200 (CEST) From: "Tamas R." To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: misc/57973: KDE freezes on startup with ATI RADEON 9000 (PRO) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "Tamas R." List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Oct 2003 20:00:35 -0000 >Number: 57973 >Category: misc >Synopsis: KDE freezes on startup with ATI RADEON 9000 (PRO) >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 13 13:00:32 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Tamas R. >Release: FreeBSD 5.1-CURRENT i386 >Organization: >Environment: System: FreeBSD 5.1-CURRENT i386 VGA card : ATI (HIGHTECH EXCALIBUR) RADEON 9000 PRO >Description: KDE freezes after X server started and before the 'KDE init logo' displayed. In this state the keyboard become useless (mouse cursor can be moved roughly) and the screen also freezes (it does not refresh). The system can be rebooted through ACPI power button but it behaves interesting: this process is much slower than in normal case and it once control the monitor 'out of frequency' range then reboots (during this shutdown process the screen remains frozen). Using a trick, switching back to console immediately after issuing the 'startx' command, the system does not hang until switching back to X again. Then KDE seems to be started properly but some seconds later the same freezing takes place. (Testing X server with 'XFree86 -xf86config ...' itself works good and it does not cause any freezing.) Lastest kernel, which work good was cvsup-ed and compiled on 25th of September. I used another vga card for temporary some days ago and I compiled a new base system/kernel, which had no such problems until I put back the ATI to the AGP slot. I guess it may be a bug around radeondrm kernel driver. In the last days I cvsup-ed my source tree and I compiled the base system/kernel more times but it did not help. My kernel config based on the lastest GENERIC config shipped with the source. I noticed (about one or two months ago but I think this problem did not solved since then) if I comment out hardwares (like SCSI, RAID), which I does not have, although the kernel boots properly but exactly the same freezing takes place with KDE as described above. So I have to compile in really everything into my custom kernel to avoid KDE crash. Log file comparision (diff's output) between a 'normal' (>) and a 'frozen' (<) startup: 13c13 < (==) Log file: "/var/log/XFree86.0.log", Time: Mon Oct 13 13:01:50 2003 --- > (==) Log file: "/var/log/XFree86.0.log", Time: Mon Oct 13 11:43:59 2003 681,682c681,682 < (II) RADEON(0): [drm] added 8192 byte SAREA at 0xc4d23000 < (II) RADEON(0): [drm] mapped SAREA 0xc4d23000 to 0x282ca000 --- > (II) RADEON(0): [drm] added 8192 byte SAREA at 0xc5ad7000 > (II) RADEON(0): [drm] mapped SAREA 0xc5ad7000 to 0x282ca000 686c686 < (II) RADEON(0): [agp] 65536 kB allocated with handle 0xc49a24c0 --- > (II) RADEON(0): [agp] 65536 kB allocated with handle 0xc503ca00 758a759,770 > (==) RADEON(0): Removed Write-combining range (0xa0000,0x10000) > (**) Option "BaudRate" "1200" > (**) Option "StopBits" "2" > (**) Option "DataBits" "8" > (**) Option "Parity" "None" > (**) Option "Vmin" "1" > (**) Option "Vtime" "0" > (**) Option "FlowControl" "None" > (==) RADEON(0): Removed Write-combining range (0xa0000,0x10000) > (II) RADEON(0): [drm] removed 1 reserved context for kernel > (II) RADEON(0): [drm] unmapping 8192 bytes of SAREA 0xc5ad7000 at 0x282ca000 > (==) RADEON(0): Removed Write-combining range (0xa0000,0x10000) NOTE: XFree86 and KDE were compiled from ports and these are up-to-date. >How-To-Repeat: Compile a recent FreeBSD-CURRENT i386 kernel and try to start KDE with ATI RADEON 9000 (PRO). >Fix: Sorry, but I have no idea how to fix it. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 13 13:40:12 2003 Return-Path: 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 05BDE16A4B3 for ; Mon, 13 Oct 2003 13:40:12 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5601743FA3 for ; Mon, 13 Oct 2003 13:40:09 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h9DKe9FY064587 for ; Mon, 13 Oct 2003 13:40:09 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h9DKe9Lu064586; Mon, 13 Oct 2003 13:40:09 -0700 (PDT) (envelope-from gnats) Resent-Date: Mon, 13 Oct 2003 13:40:09 -0700 (PDT) Resent-Message-Id: <200310132040.h9DKe9Lu064586@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, Lars Eggert Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2CC1516A4B3; Mon, 13 Oct 2003 13:33:23 -0700 (PDT) Received: from nik.isi.edu (nik.isi.edu [128.9.168.58]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9571943F3F; Mon, 13 Oct 2003 13:33:22 -0700 (PDT) (envelope-from larse@nik.isi.edu) Received: from nik.isi.edu (localhost [127.0.0.1]) by nik.isi.edu (8.12.10/8.12.10) with ESMTP id h9DKXMg0062493; Mon, 13 Oct 2003 13:33:22 -0700 (PDT) (envelope-from larse@nik.isi.edu) Received: (from larse@localhost) by nik.isi.edu (8.12.10/8.12.10/Submit) id h9DKXMX1062492; Mon, 13 Oct 2003 13:33:22 -0700 (PDT) (envelope-from larse) Message-Id: <200310132033.h9DKXMX1062492@nik.isi.edu> Date: Mon, 13 Oct 2003 13:33:22 -0700 (PDT) From: Lars Eggert To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: lioux@FreeBSD.org Subject: bin/57975: include/xmmintrin.h defines __v4si twice X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Lars Eggert List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Oct 2003 20:40:12 -0000 >Number: 57975 >Category: bin >Synopsis: include/xmmintrin.h defines __v4si twice >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 13 13:40:08 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Lars Eggert >Release: FreeBSD 5.1-CURRENT i386 >Organization: >Environment: System: FreeBSD nik.isi.edu 5.1-CURRENT FreeBSD 5.1-CURRENT #1: Wed Oct 8 10:18:33 PDT 2003 larse@nik.isi.edu:/usr/obj/usr/src/sys/KERNEL-1.32 i386 >Description: include/xmmintrin.h defines __v4si twice, once in line 45, and once again in line 1113 inside an __SSE2__ ifdef block. This causes errors when building ports that define __SSE2__, such as multimedia/ffmpeg. >How-To-Repeat: [root@nik: /usr/ports/multimedia/ffmpeg] make ===> Building for ffmpeg-0.4.8 gmake -C libavcodec all gmake[1]: Entering directory `/usr/ports/multimedia/ffmpeg/work/ffmpeg-0.4.8/libavcodec' cc -O -pipe -mmmx -msse -msse2 -march=pentium4 -I/usr/local/include -O3 -ffast-math -fomit-frame-pointer -g -O3 -Wall -DHAVE_AV_CONFIG_H -I.. -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE -msse -c -o i386/fft_sse.o i386/fft_sse.c In file included from i386/fft_sse.c:24: /usr/include/xmmintrin.h:1113: error: redefinition of `__v4si' /usr/include/xmmintrin.h:45: error: `__v4si' previously declared here gmake[1]: *** [i386/fft_sse.o] Error 1 gmake[1]: Leaving directory `/usr/ports/multimedia/ffmpeg/work/ffmpeg-0.4.8/libavcodec' gmake: *** [lib] Error 2 *** Error code 2 Stop in /usr/ports/multimedia/ffmpeg. >Fix: I locally fixed this by removing the second definition of __v4si. Not sure what the right solution is, because xmmintrin.h is contributed code from gcc. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 13 13:50:27 2003 Return-Path: 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 F064716A4B3 for ; Mon, 13 Oct 2003 13:50:26 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A53E43F85 for ; Mon, 13 Oct 2003 13:50:25 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h9DKoOFY065015 for ; Mon, 13 Oct 2003 13:50:24 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h9DKoOb7065014; Mon, 13 Oct 2003 13:50:24 -0700 (PDT) (envelope-from gnats) Resent-Date: Mon, 13 Oct 2003 13:50:24 -0700 (PDT) Resent-Message-Id: <200310132050.h9DKoOb7065014@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 Strick Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2944716A4B3 for ; Mon, 13 Oct 2003 13:49:33 -0700 (PDT) Received: from smtp.covadmail.net (mx05.covadmail.net [63.65.120.65]) by mx1.FreeBSD.org (Postfix) with SMTP id 9719143F85 for ; Mon, 13 Oct 2003 13:49:31 -0700 (PDT) (envelope-from strick@covad.net) Received: (covad.net 1096 invoked from network); 13 Oct 2003 20:49:26 -0000 Received: from unknown (HELO ice.nodomain) (68.165.100.159) by sun-qmail10 with SMTP; 13 Oct 2003 20:49:26 -0000 Received: from ice.nodomain (localhost [127.0.0.1]) by ice.nodomain (8.12.8p1/8.12.8) with ESMTP id h9DKnZIl000948 for ; Mon, 13 Oct 2003 13:49:36 -0700 (PDT) (envelope-from dan@ice.nodomain) Received: (from dan@localhost) by ice.nodomain (8.12.8p1/8.12.8/Submit) id h9DKnZ4B000947; Mon, 13 Oct 2003 13:49:35 -0700 (PDT) Message-Id: <200310132049.h9DKnZ4B000947@ice.nodomain> Date: Mon, 13 Oct 2003 13:49:35 -0700 (PDT) From: Dan Strick To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/57976: simple kernel DDB enhancement X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Dan Strick List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Oct 2003 20:50:27 -0000 >Number: 57976 >Category: kern >Synopsis: simple kernel DDB enhancement >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 13 13:50:24 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Dan Strick >Release: FreeBSD in general >Organization: >Environment: System: FreeBSD ice 4.8-RELEASE FreeBSD 4.8-RELEASE #0: Sun Apr 6 21:47:39 PDT 2003 root@ice:/usr/src/sys/compile/ICE i386 >Description: This is not bug report but a request for a trivial but potentially very useful enhancement to the kernel DDB facility. In function db_examine() in the source file /sys/ddb/db_examine.c, add something like this: case 'S': /* symbolic */ value = db_get_value(addr, size, FALSE); addr += size; db_printsym(value, DB_STGY_ANY); break; to the examine format switch, for example just before the line: case 'c': /* character */ This would create a new examine modifer format that expresses a value as a global_symbol+offset instead of just a non-obvious number. This might be very useful when examining pointers in memory. Presumably the DDB(4) man page would also be modified to mention the new format. This would also be a good time to add a description of the DDB "panic" command which has somehow escaped mention on the man page. Dan Strick strick@covad.net >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 13 14:06:13 2003 Return-Path: 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 429C916A4B3; Mon, 13 Oct 2003 14:06:13 -0700 (PDT) Received: from Stalker.alfacom.net (Stalker.Alfacom.net [193.108.124.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DE4F43F85; Mon, 13 Oct 2003 14:06:10 -0700 (PDT) (envelope-from vkushnir@Alfacom.net) Received: from kushnir1.kiev.ua (124-245.dialup.Alfacom.net [193.108.124.245]) by Stalker.alfacom.net (8.12.10/8.12.10) with ESMTP id h9DL5lwV024143; Tue, 14 Oct 2003 00:05:51 +0300 (EEST) Received: from kushnir1.kiev.ua (kushnir1.kiev.ua [10.0.0.1]) by kushnir1.kiev.ua (8.12.10/8.12.10) with ESMTP id h9DL5ieV000843; Tue, 14 Oct 2003 00:05:44 +0300 (EEST) (envelope-from vkushnir@Alfacom.net) Date: Tue, 14 Oct 2003 00:05:44 +0300 (EEST) From: Vladimir Kushnir X-X-Sender: vkushnir@kushnir1.kiev.ua To: Kris Kennaway In-Reply-To: <200310082137.h98LbIxN000394@freefall.freebsd.org> Message-ID: <20031014000211.H729@kushnir1.kiev.ua> References: <200310082137.h98LbIxN000394@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="0-2118838114-1066079061=:729" Content-ID: <20031014000541.R729@kushnir1.kiev.ua> cc: freebsd-bugs@FreeBSD.org Subject: Re: kern/56380: cdrecord panicks -CURRENT with ATAPI burner X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Oct 2003 21:06:13 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. Send mail to mime@docserver.cac.washington.edu for more info. --0-2118838114-1066079061=:729 Content-Type: TEXT/PLAIN; CHARSET=US-ASCII Content-ID: <20031014000541.E729@kushnir1.kiev.ua> Sorry for delay, here it goes. On Wed, 8 Oct 2003, Kris Kennaway wrote: > Synopsis: cdrecord panicks -CURRENT with ATAPI burner > > State-Changed-From-To: open->feedback > State-Changed-By: kris > State-Changed-When: Wed Oct 8 14:36:51 PDT 2003 > State-Changed-Why: > This is believed to be fixed in -CURRENT - can you please update > and confirm? > > http://www.freebsd.org/cgi/query-pr.cgi?pr=56380 > > Uname output: FreeBSD 5.1-CURRENT FreeBSD 5.1-CURRENT #4: Mon Oct 13 11:59:52 EEST 2003 root@kushnir1.kiev.ua:/usr/obj/usr/src/sys/KUSHNIR-TEST i386 Dmesg and gdb transcript attached. --0-2118838114-1066079061=:729 Content-Type: TEXT/PLAIN; CHARSET=US-ASCII; NAME="dmesg.out" Content-Transfer-Encoding: BASE64 Content-ID: <20031014000421.Q729@kushnir1.kiev.ua> Content-Description: Content-Disposition: ATTACHMENT; FILENAME="dmesg.out" Q29weXJpZ2h0IChjKSAxOTkyLTIwMDMgVGhlIEZyZWVCU0QgUHJvamVjdC4N CkNvcHlyaWdodCAoYykgMTk3OSwgMTk4MCwgMTk4MywgMTk4NiwgMTk4OCwg MTk4OSwgMTk5MSwgMTk5MiwgMTk5MywgMTk5NA0KCVRoZSBSZWdlbnRzIG9m IHRoZSBVbml2ZXJzaXR5IG9mIENhbGlmb3JuaWEuIEFsbCByaWdodHMgcmVz ZXJ2ZWQuDQpGcmVlQlNEIDUuMS1DVVJSRU5UICM0OiBNb24gT2N0IDEzIDEx OjU5OjUyIEVFU1QgMjAwMw0KICAgIHJvb3RAa3VzaG5pcjEua2lldi51YTov dXNyL29iai91c3Ivc3JjL3N5cy9LVVNITklSLVRFU1QNClByZWxvYWRlZCBl bGYga2VybmVsICIvYm9vdC9rZXJuZWwudGVzdC9rZXJuZWwiIGF0IDB4YzBh NjYwMDAuDQpQcmVsb2FkZWQgZWxmIG1vZHVsZSAiL2Jvb3Qva2VybmVsLnRl c3QvYWNwaS5rbyIgYXQgMHhjMGE2NjIwOC4NClRpbWVjb3VudGVyICJpODI1 NCIgZnJlcXVlbmN5IDExOTMxODIgSHogcXVhbGl0eSAwDQpDUFU6IFBlbnRp dW0gSUlJL1BlbnRpdW0gSUlJIFhlb24vQ2VsZXJvbiAoNDUxLjAyLU1IeiA2 ODYtY2xhc3MgQ1BVKQ0KICBPcmlnaW4gPSAiR2VudWluZUludGVsIiAgSWQg PSAweDY3MyAgU3RlcHBpbmcgPSAzDQogIEZlYXR1cmVzPTB4Mzg3ZjlmZjxG UFUsVk1FLERFLFBTRSxUU0MsTVNSLFBBRSxNQ0UsQ1g4LFNFUCxNVFJSLFBH RSxNQ0EsQ01PVixQQVQsUFNFMzYsUE4sTU1YLEZYU1IsU1NFPg0KcmVhbCBt ZW1vcnkgID0gMjAxMjYxMDU2ICgxOTEgTUIpDQphdmFpbCBtZW1vcnkgPSAx ODU4MzU1MjAgKDE3NyBNQikNClBlbnRpdW0gUHJvIE1UUlIgc3VwcG9ydCBl bmFibGVkDQpucHgwOiBbRkFTVF0NCm5weDA6IDxtYXRoIHByb2Nlc3Nvcj4g b24gbW90aGVyYm9hcmQNCm5weDA6IElOVCAxNiBpbnRlcmZhY2UNCmFjcGkw OiA8QVdBUkQgIEFXUkRBQ1BJPiBvbiBtb3RoZXJib2FyZA0KcGNpYmlvczog QklPUyB2ZXJzaW9uIDIuMTANClVzaW5nICRQSVIgdGFibGUsIDYgZW50cmll cyBhdCAweGMwMGZkZjEwDQphY3BpMDogUG93ZXIgQnV0dG9uIChmaXhlZCkN ClRpbWVjb3VudGVyICJBQ1BJLXNhZmUiIGZyZXF1ZW5jeSAzNTc5NTQ1IEh6 IHF1YWxpdHkgMTAwMA0KYWNwaV90aW1lcjA6IDwyNC1iaXQgdGltZXIgYXQg My41Nzk1NDVNSHo+IHBvcnQgMHg0MDA4LTB4NDAwYiBvbiBhY3BpMA0KYWNw aV9jcHUwOiA8Q1BVPiBvbiBhY3BpMA0KYWNwaV90ejA6IDxUaGVybWFsIFpv bmU+IG9uIGFjcGkwDQphY3BpX2J1dHRvbjA6IDxQb3dlciBCdXR0b24+IG9u IGFjcGkwDQpwY2liMDogPEFDUEkgSG9zdC1QQ0kgYnJpZGdlPiBwb3J0IDB4 NTAwMC0weDUwMGYsMHg0MDAwLTB4NDA0MSwweGNmOC0weGNmZiBvbiBhY3Bp MA0KcGNpMDogPEFDUEkgUENJIGJ1cz4gb24gcGNpYjANCnBjaWIwOiBzbG90 IDIgSU5URCBpcyByb3V0ZWQgdG8gaXJxIDEwDQpwY2liMDogc2xvdCAxNCBJ TlRBIGlzIHJvdXRlZCB0byBpcnEgNQ0KcGNpYjA6IHNsb3QgMTUgSU5UQSBp cyByb3V0ZWQgdG8gaXJxIDkNCnBjaWIwOiBzbG90IDE2IElOVEEgaXMgcm91 dGVkIHRvIGlycSAxMA0KYWdwMDogPEludGVsIDgyNDQzQlggKDQ0MCBCWCkg aG9zdCB0byBQQ0kgYnJpZGdlPiBtZW0gMHhlMDAwMDAwMC0weGUzZmZmZmZm IGF0IGRldmljZSAwLjAgb24gcGNpMA0KcGNpYjE6IDxQQ0ktUENJIGJyaWRn ZT4gYXQgZGV2aWNlIDEuMCBvbiBwY2kwDQpwY2kxOiA8UENJIGJ1cz4gb24g cGNpYjENCnBjaWIwOiBzbG90IDEgSU5UQSBpcyByb3V0ZWQgdG8gaXJxIDEx DQpwY2liMTogc2xvdCAwIElOVEEgaXMgcm91dGVkIHRvIGlycSAxMQ0KcGNp MTogPGRpc3BsYXksIFZHQT4gYXQgZGV2aWNlIDAuMCAobm8gZHJpdmVyIGF0 dGFjaGVkKQ0KaXNhYjA6IDxQQ0ktSVNBIGJyaWRnZT4gYXQgZGV2aWNlIDIu MCBvbiBwY2kwDQppc2EwOiA8SVNBIGJ1cz4gb24gaXNhYjANCmF0YXBjaTA6 IDxJbnRlbCBQSUlYNCBVRE1BMzMgY29udHJvbGxlcj4gcG9ydCAweGYwMDAt MHhmMDBmIGF0IGRldmljZSAyLjEgb24gcGNpMA0KYXRhMDogYXQgMHgxZjAg aXJxIDE0IG9uIGF0YXBjaTANCmF0YTA6IFtNUFNBRkVdDQphdGExOiBhdCAw eDE3MCBpcnEgMTUgb24gYXRhcGNpMA0KYXRhMTogW01QU0FGRV0NCnVoY2kw OiA8SW50ZWwgODIzNzFBQi9FQiAoUElJWDQpIFVTQiBjb250cm9sbGVyPiBw b3J0IDB4ZDAwMC0weGQwMWYgaXJxIDEwIGF0IGRldmljZSAyLjIgb24gcGNp MA0KdXNiMDogPEludGVsIDgyMzcxQUIvRUIgKFBJSVg0KSBVU0IgY29udHJv bGxlcj4gb24gdWhjaTANCnVzYjA6IFVTQiByZXZpc2lvbiAxLjANCnVodWIw OiBJbnRlbCBVSENJIHJvb3QgaHViLCBjbGFzcyA5LzAsIHJldiAxLjAwLzEu MDAsIGFkZHIgMQ0KdWh1YjA6IDIgcG9ydHMgd2l0aCAyIHJlbW92YWJsZSwg c2VsZiBwb3dlcmVkDQpwY2kwOiA8YnJpZGdlLCBQQ0ktdW5rbm93bj4gYXQg ZGV2aWNlIDIuMyAobm8gZHJpdmVyIGF0dGFjaGVkKQ0KcGNpMDogPG11bHRp bWVkaWE+IGF0IGRldmljZSAxNC4wIChubyBkcml2ZXIgYXR0YWNoZWQpDQph dGFwY2kxOiA8Q01EIDY0OSBVRE1BMTAwIGNvbnRyb2xsZXI+IHBvcnQgMHhl NDAwLTB4ZTQwZiwweGUwMDAtMHhlMDAzLDB4ZGMwMC0weGRjMDcsMHhkODAw LTB4ZDgwMywweGQ0MDAtMHhkNDA3IGlycSA5IGF0IGRldmljZSAxNS4wIG9u IHBjaTANCmF0YXBjaTE6IFtNUFNBRkVdDQphdGEyOiBhdCAweGQ0MDAgb24g YXRhcGNpMQ0KYXRhMjogW01QU0FGRV0NCmF0YTM6IGF0IDB4ZGMwMCBvbiBh dGFwY2kxDQphdGEzOiBbTVBTQUZFXQ0KcGNpMDogPG11bHRpbWVkaWEsIGF1 ZGlvPiBhdCBkZXZpY2UgMTYuMCAobm8gZHJpdmVyIGF0dGFjaGVkKQ0KZmRj MDogPEVuaGFuY2VkIGZsb3BweSBjb250cm9sbGVyIChpODIwNzcsIE5FNzIw NjUgb3IgY2xvbmUpPiBwb3J0IDB4M2Y3LDB4M2YyLTB4M2Y1IGlycSA2IGRy cSAyIG9uIGFjcGkwDQpmZGMwOiBGSUZPIGVuYWJsZWQsIDggYnl0ZXMgdGhy ZXNob2xkDQpmZDA6IDwxNDQwLUtCIDMuNSIgZHJpdmU+IG9uIGZkYzAgZHJp dmUgMA0Kc2lvMCBwb3J0IDB4M2Y4LTB4M2ZmIGlycSA0IG9uIGFjcGkwDQpz aW8wOiB0eXBlIDE2NTUwQQ0Kc2lvMSBwb3J0IDB4MmY4LTB4MmZmIGlycSAz IG9uIGFjcGkwDQpzaW8xOiB0eXBlIDE2NTUwQQ0KcHBjMCBwb3J0IDB4Nzc4 LTB4NzdiLDB4Mzc4LTB4MzdmIGlycSA3IGRycSAzIG9uIGFjcGkwDQpwcGMw OiBTTUMtbGlrZSBjaGlwc2V0IChFQ1AvRVBQL1BTMi9OSUJCTEUpIGluIENP TVBBVElCTEUgbW9kZQ0KcHBjMDogRklGTyB3aXRoIDE2LzE2LzE2IGJ5dGVz IHRocmVzaG9sZA0KcHBidXMwOiA8UGFyYWxsZWwgcG9ydCBidXM+IG9uIHBw YzANCnBsaXAwOiA8UExJUCBuZXR3b3JrIGludGVyZmFjZT4gb24gcHBidXMw DQpscHQwOiA8UHJpbnRlcj4gb24gcHBidXMwDQpscHQwOiBJbnRlcnJ1cHQt ZHJpdmVuIHBvcnQNCnBwaTA6IDxQYXJhbGxlbCBJL08+IG9uIHBwYnVzMA0K YXRrYmRjMDogPEtleWJvYXJkIGNvbnRyb2xsZXIgKGk4MDQyKT4gcG9ydCAw eDY0LDB4NjAgaXJxIDEgb24gYWNwaTANCmF0a2JkMDogPEFUIEtleWJvYXJk PiBmbGFncyAweDEgaXJxIDEgb24gYXRrYmRjMA0Ka2JkMCBhdCBhdGtiZDAN CnBzbTA6IDxQUy8yIE1vdXNlPiBpcnEgMTIgb24gYXRrYmRjMA0KcHNtMDog bW9kZWwgR2VuZXJpYyBQUy8yIG1vdXNlLCBkZXZpY2UgSUQgMA0Kb3JtMDog PE9wdGlvbiBST00+IGF0IGlvbWVtIDB4YzAwMDAtMHhjOGZmZiBvbiBpc2Ew DQpwbXRpbWVyMCBvbiBpc2EwDQpzYzA6IDxTeXN0ZW0gY29uc29sZT4gYXQg ZmxhZ3MgMHgxMDAgb24gaXNhMA0Kc2MwOiBWR0EgPDE2IHZpcnR1YWwgY29u c29sZXMsIGZsYWdzPTB4MzAwPg0KdmdhMDogPEdlbmVyaWMgSVNBIFZHQT4g YXQgcG9ydCAweDNjMC0weDNkZiBpb21lbSAweGEwMDAwLTB4YmZmZmYgb24g aXNhMA0KVGltZWNvdW50ZXIgIlRTQyIgZnJlcXVlbmN5IDQ1MTAyNDUwNCBI eiBxdWFsaXR5IDgwMA0KVGltZWNvdW50ZXJzIHRpY2sgZXZlcnkgMTAuMDAw IG1zZWMNCmFjcGlfY3B1OiB0aHJvdHRsaW5nIGVuYWJsZWQsIDIgc3RlcHMg KDEwMCUgdG8gNTAuMCUpLCBjdXJyZW50bHkgMTAwLjAlDQphY2QwOiBDRFJX IDxfTkVDIENELVJXIE5SLTkxMDBBPiBhdCBhdGEwLW1hc3RlciBVRE1BMzMN CmFjZDE6IENEUk9NIDxBVEFQSSA0NFggQ0RST00+IGF0IGF0YTEtbWFzdGVy IFVETUEzMw0KR0VPTTogY3JlYXRlIGRpc2sgYWQwIGRwPTB4YzI3ZDY4NzAN CmFkMDogNTcyNDFNQiA8V0RDIFdENjAwSkItMDBDUkExPiBbMTE2MzAxLzE2 LzYzXSBhdCBhdGEyLW1hc3RlciBVRE1BMTAwDQoocHJvYmUyOmF0YTE6MDow OjApOiBSZWNvdmVyZWQgU2Vuc2UNCihwcm9iZTI6YXRhMTowOjA6MCk6IElO UVVJUlkuIENEQjogMTIgMSA4MCAwIGZmIDAgDQoocHJvYmUyOmF0YTE6MDow OjApOiBDQU0gU3RhdHVzOiBTQ1NJIFN0YXR1cyBFcnJvcg0KKHByb2JlMjph dGExOjA6MDowKTogU0NTSSBTdGF0dXM6IENoZWNrIENvbmRpdGlvbg0KKHBy b2JlMjphdGExOjA6MDowKTogSUxMRUdBTCBSRVFVRVNUIGFzYzoyNCwwDQoo cHJvYmUyOmF0YTE6MDowOjApOiBJbnZhbGlkIGZpZWxkIGluIENEQg0KKHBy b2JlMjphdGExOjA6MDowKTogUmVjb3ZlcmVkIFNlbnNlDQoocHJvYmUyOmF0 YTE6MDowOjApOiBJTlFVSVJZLiBDREI6IDEyIDEgODAgMCBmZiAwIA0KKHBy b2JlMjphdGExOjA6MDowKTogQ0FNIFN0YXR1czogU0NTSSBTdGF0dXMgRXJy b3INCihwcm9iZTI6YXRhMTowOjA6MCk6IFNDU0kgU3RhdHVzOiBDaGVjayBD b25kaXRpb24NCihwcm9iZTI6YXRhMTowOjA6MCk6IElMTEVHQUwgUkVRVUVT VCBhc2M6MjQsMA0KKHByb2JlMjphdGExOjA6MDowKTogSW52YWxpZCBmaWVs ZCBpbiBDREINCkdFT006IGNyZWF0ZSBkaXNrIGNkMCBkcD0weGMyN2QxNjAw DQpHRU9NOiBjcmVhdGUgZGlzayBjZDEgZHA9MHhjMjdmMjYwMA0KKGNkMTph dGExOjA6MDowKTogUmVjb3ZlcmVkIFNlbnNlDQooY2QxOmF0YTE6MDowOjAp OiBSRUFEIENEIFJFQ09SREVEIENBUEFDSVRZLiBDREI6IDI1IDAgMCAwIDAg MCAwIDAgMCAwIA0KKGNkMTphdGExOjA6MDowKTogQ0FNIFN0YXR1czogU0NT SSBTdGF0dXMgRXJyb3INCihjZDE6YXRhMTowOjA6MCk6IFNDU0kgU3RhdHVz OiBDaGVjayBDb25kaXRpb24NCihjZDE6YXRhMTowOjA6MCk6IE5PVCBSRUFE WSBhc2M6M2EsMA0KKGNkMTphdGExOjA6MDowKTogTWVkaXVtIG5vdCBwcmVz ZW50DQpjZDEgYXQgYXRhMSBidXMgMCB0YXJnZXQgMCBsdW4gMA0KY2QxOiA8 QVRBUEkgNDRYIENEUk9NIDMuMTA+IFJlbW92YWJsZSBDRC1ST00gU0NTSS0w IGRldmljZSANCmNkMTogMzMuMDAwTUIvcyB0cmFuc2ZlcnMNCmNkMTogQXR0 ZW1wdCB0byBxdWVyeSBkZXZpY2Ugc2l6ZSBmYWlsZWQ6IE5PVCBSRUFEWSwg TWVkaXVtIG5vdCBwcmVzZW50DQpjZDAgYXQgYXRhMCBidXMgMCB0YXJnZXQg MCBsdW4gMA0KY2QwOiA8X05FQyBDRC1SVyBOUi05MTAwQSAyLjEyPiBSZW1v dmFibGUgQ0QtUk9NIFNDU0ktMCBkZXZpY2UgDQpjZDA6IDMzLjAwME1CL3Mg dHJhbnNmZXJzDQpjZDA6IGNkIHByZXNlbnQgWzEwODI0MiB4IDIwNDggYnl0 ZSByZWNvcmRzXQ0KTW91bnRpbmcgcm9vdCBmcm9tIHVmczovZGV2L2FkMHMy YQ0KIFsxMTYzMDEvMTYvNjNdIGF0IGF0YTItbWFzdGVyIFVETUExMDANCg== --0-2118838114-1066079061=:729 Content-Type: TEXT/PLAIN; CHARSET=US-ASCII; NAME=typescript Content-Transfer-Encoding: BASE64 Content-ID: <20031014000421.X729@kushnir1.kiev.ua> Content-Description: Content-Disposition: ATTACHMENT; FILENAME=typescript U2NyaXB0IHN0YXJ0ZWQgb24gTW9uIE9jdCAxMyAyMzo1NjowNCAyMDAzDQog fj4gc3VkbyBnZGIgLWsgL3Vzci9vYmovdXNyL3NyYy9zeXMvS1VTSE5JUi1U RVNUL2tlcm5lbC5kZWJ1ZyAvdXNyL2NyYXNoL3ZtY29yZS4xDQpHTlUgZ2Ri IDUuMi4xIChGcmVlQlNEKQ0KQ29weXJpZ2h0IDIwMDIgRnJlZSBTb2Z0d2Fy ZSBGb3VuZGF0aW9uLCBJbmMuDQpHREIgaXMgZnJlZSBzb2Z0d2FyZSwgY292 ZXJlZCBieSB0aGUgR05VIEdlbmVyYWwgUHVibGljIExpY2Vuc2UsIGFuZCB5 b3UgYXJlDQp3ZWxjb21lIHRvIGNoYW5nZSBpdCBhbmQvb3IgZGlzdHJpYnV0 ZSBjb3BpZXMgb2YgaXQgdW5kZXIgY2VydGFpbiBjb25kaXRpb25zLg0KVHlw ZSAic2hvdyBjb3B5aW5nIiB0byBzZWUgdGhlIGNvbmRpdGlvbnMuDQpUaGVy ZSBpcyBhYnNvbHV0ZWx5IG5vIHdhcnJhbnR5IGZvciBHREIuICBUeXBlICJz aG93IHdhcnJhbnR5IiBmb3IgZGV0YWlscy4NClRoaXMgR0RCIHdhcyBjb25m aWd1cmVkIGFzICJpMzg2LXVuZGVybXlkZXNrLWZyZWVic2QiLi4uDQpwYW5p Yzogdm1fZmF1bHRfY29weV93aXJlZDogcGFnZSBtaXNzaW5nDQpwYW5pYyBt ZXNzYWdlczoNCi0tLQ0KcGFuaWM6IHZtX2ZhdWx0X2NvcHlfd2lyZWQ6IHBh Z2UgbWlzc2luZw0KcGFuaWM6IGZyb20gZGVidWdnZXINClVwdGltZTogMW01 NnMNCkR1bXBpbmcgMTkxIE1CDQogMTYgMzIgNDggNjQgODAgOTYgMTEyIDEy OCAxNDQgMTYwIDE3Ng0KLS0tDQpSZWFkaW5nIHN5bWJvbHMgZnJvbSAvYm9v dC9rZXJuZWwvbWdhLmtvLi4uZG9uZS4NCkxvYWRlZCBzeW1ib2xzIGZvciAv Ym9vdC9rZXJuZWwvbWdhLmtvDQpSZWFkaW5nIHN5bWJvbHMgZnJvbSAvYm9v dC9rZXJuZWwvc25kX2RzMS5rby4uLmRvbmUuDQpMb2FkZWQgc3ltYm9scyBm b3IgL2Jvb3Qva2VybmVsL3NuZF9kczEua28NClJlYWRpbmcgc3ltYm9scyBm cm9tIC9ib290L2tlcm5lbC9zbmRfcGNtLmtvLi4uZG9uZS4NCkxvYWRlZCBz eW1ib2xzIGZvciAvYm9vdC9rZXJuZWwvc25kX3BjbS5rbw0KUmVhZGluZyBz eW1ib2xzIGZyb20gL3Vzci9vYmovdXNyL3NyYy9zeXMvS1VTSE5JUi1URVNU L21vZHVsZXMvdXNyL3NyYy9zeXMvbW9kdWxlcy9hY3BpL2FjcGkua28uZGVi dWcuLi5kb25lLg0KTG9hZGVkIHN5bWJvbHMgZm9yIC91c3Ivb2JqL3Vzci9z cmMvc3lzL0tVU0hOSVItVEVTVC9tb2R1bGVzL3Vzci9zcmMvc3lzL21vZHVs ZXMvYWNwaS9hY3BpLmtvLmRlYnVnDQpSZWFkaW5nIHN5bWJvbHMgZnJvbSAv dXNyL29iai91c3Ivc3JjL3N5cy9LVVNITklSLVRFU1QvbW9kdWxlcy91c3Iv c3JjL3N5cy9tb2R1bGVzL2xpbnByb2Nmcy9saW5wcm9jZnMua28uZGVidWcu Li5kb25lLg0KTG9hZGVkIHN5bWJvbHMgZm9yIC91c3Ivb2JqL3Vzci9zcmMv c3lzL0tVU0hOSVItVEVTVC9tb2R1bGVzL3Vzci9zcmMvc3lzL21vZHVsZXMv bGlucHJvY2ZzL2xpbnByb2Nmcy5rby5kZWJ1Zw0KUmVhZGluZyBzeW1ib2xz IGZyb20gL3Vzci9vYmovdXNyL3NyYy9zeXMvS1VTSE5JUi1URVNUL21vZHVs ZXMvdXNyL3NyYy9zeXMvbW9kdWxlcy9saW51eC9saW51eC5rby5kZWJ1Zy4u LmRvbmUuDQpMb2FkZWQgc3ltYm9scyBmb3IgL3Vzci9vYmovdXNyL3NyYy9z eXMvS1VTSE5JUi1URVNUL21vZHVsZXMvdXNyL3NyYy9zeXMvbW9kdWxlcy9s aW51eC9saW51eC5rby5kZWJ1Zw0KUmVhZGluZyBzeW1ib2xzIGZyb20gL2Jv b3Qva2VybmVsL2dyZWVuX3NhdmVyLmtvLi4uZG9uZS4NCkxvYWRlZCBzeW1i b2xzIGZvciAvYm9vdC9rZXJuZWwvZ3JlZW5fc2F2ZXIua28NCiMwICBkb2Fk dW1wICgpIGF0IC91c3Ivc3JjL3N5cy9rZXJuL2tlcm5fc2h1dGRvd24uYzoy NDANCjI0MAkJZHVtcGluZysrOw0KKGtnZGIpIGJ0DQojMCAgZG9hZHVtcCAo KSBhdCAvdXNyL3NyYy9zeXMva2Vybi9rZXJuX3NodXRkb3duLmM6MjQwDQoj MSAgMHhjMDYzOGQ0MSBpbiBib290IChob3d0bz0yNjApIGF0IC91c3Ivc3Jj L3N5cy9rZXJuL2tlcm5fc2h1dGRvd24uYzozNzINCiMyICAweGMwNjM5MGQ3 IGluIHBhbmljICgpIGF0IC91c3Ivc3JjL3N5cy9rZXJuL2tlcm5fc2h1dGRv d24uYzo1NTANCiMzICAweGMwNDY0MzYyIGluIGRiX3BhbmljICgpIGF0IC91 c3Ivc3JjL3N5cy9kZGIvZGJfY29tbWFuZC5jOjQ1MA0KIzQgIDB4YzA0NjQy YzIgaW4gZGJfY29tbWFuZCAobGFzdF9jbWRwPTB4YzA4ZDk4NjAsIGNtZF90 YWJsZT0weDAsIA0KICAgIGF1eF9jbWRfdGFibGVwPTB4YzA4NjA5NDgsIGF1 eF9jbWRfdGFibGVwX2VuZD0weGMwODYwOTYwKQ0KICAgIGF0IC91c3Ivc3Jj L3N5cy9kZGIvZGJfY29tbWFuZC5jOjM0Ng0KIzUgIDB4YzA0NjQ0MDUgaW4g ZGJfY29tbWFuZF9sb29wICgpIGF0IC91c3Ivc3JjL3N5cy9kZGIvZGJfY29t bWFuZC5jOjQ3Mg0KIzYgIDB4YzA0Njc0MDUgaW4gZGJfdHJhcCAodHlwZT0z LCBjb2RlPTApIGF0IC91c3Ivc3JjL3N5cy9kZGIvZGJfdHJhcC5jOjczDQoj NyAgMHhjMDdjNWM5YyBpbiBrZGJfdHJhcCAodHlwZT0zLCBjb2RlPTAsIHJl Z3M9MHhjZmVhNWIzNCkNCiAgICBhdCAvdXNyL3NyYy9zeXMvaTM4Ni9pMzg2 L2RiX2ludGVyZmFjZS5jOjE3MQ0KIzggIDB4YzA3ZDc0OWQgaW4gdHJhcCAo ZnJhbWU9DQogICAgICB7dGZfZnMgPSAtMTA2NTA5MTA0OCwgdGZfZXMgPSAt MTAzMjM4ODU5MiwgdGZfZHMgPSAtMTAyODQ1NjQzMiwgdGZfZWRpID0gMSwg dGZfZXNpID0gLTEwNjUwMDQwODMsIHRmX2VicCA9IC04MDY3MjQ3MzYsIHRm X2lzcCA9IC04MDY3MjQ3NjgsIHRmX2VieCA9IDAsIHRmX2VkeCA9IDAsIHRm X2VjeCA9IDMyLCB0Zl9lYXggPSAxOCwgdGZfdHJhcG5vID0gMywgdGZfZXJy ID0gMCwgdGZfZWlwID0gLTEwNjU1OTA5NTYsIHRmX2NzID0gOCwgdGZfZWZs YWdzID0gNjQ2LCB0Zl9lc3AgPSAtMTA2NDk4NjE4NywgdGZfc3MgPSAtMTA2 NTA5MTI4NX0pDQogICAgYXQgL3Vzci9zcmMvc3lzL2kzODYvaTM4Ni90cmFw LmM6NTc5DQojOSAgMHhjMDdjNzY0OCBpbiBjYWxsdHJhcCAoKSBhdCB7c3Rh bmRhcmQgaW5wdXR9OjEwMg0KIzEwIDB4YzA2MzkwNjUgaW4gcGFuaWMgKGZt dD0weGMwODU1M2NkICJ2bV9mYXVsdF9jb3B5X3dpcmVkOiBwYWdlIG1pc3Np bmciKQ0KICAgIGF0IC91c3Ivc3JjL3N5cy9rZXJuL2tlcm5fc2h1dGRvd24u Yzo1MzQNCiMxMSAweGMwNzhhMDI3IGluIHZtX2ZhdWx0X2NvcHlfZW50cnkg KGRzdF9tYXA9MHhjMTUzYzZlNCwgc3JjX21hcD0weGMyYWU4MGZjLCANCiAg ICBkc3RfZW50cnk9MHhjMjk0ZTZjYywgc3JjX2VudHJ5PTB4MCkgYXQgL3Vz ci9zcmMvc3lzL3ZtL3ZtX2ZhdWx0LmM6MTE4Nw0KIzEyIDB4YzA3OTA4MjEg aW4gdm1fbWFwX2NvcHlfZW50cnkgKHNyY19tYXA9MHhjMmFlODBmYywgZHN0 X21hcD0weGMxNTNjNmU0LCANCiAgICBzcmNfZW50cnk9MHhjMmFmY2NlNCwg ZHN0X2VudHJ5PTB4YzI5NGU2Y2MpDQotLS1UeXBlIDxyZXR1cm4+IHRvIGNv bnRpbnVlLCBvciBxIDxyZXR1cm4+IHRvIHF1aXQtLS0NCiAgICBhdCAvdXNy L3NyYy9zeXMvdm0vdm1fbWFwLmM6MjM3OQ0KIzEzIDB4YzA3OTBiNjYgaW4g dm1zcGFjZV9mb3JrICh2bTE9MHhjMmFlODBmYykNCiAgICBhdCAvdXNyL3Ny Yy9zeXMvdm0vdm1fbWFwLmM6MjQ5NA0KIzE0IDB4YzA3OGI2NmUgaW4gdm1f Zm9ya3Byb2MgKHRkPTB4YzI3NzlhYjAsIHAyPTB4YzI5MGFkM2MsIHRkMj0w eGMyOTA4MTMwLCANCiAgICBmbGFncz0yMCkgYXQgL3Vzci9zcmMvc3lzL3Zt L3ZtX2dsdWUuYzo2MjQNCiMxNSAweGMwNjIzY2E1IGluIGZvcmsxICh0ZD0w eGMyNzc5YWIwLCBmbGFncz0yMCwgcGFnZXM9MCwgcHJvY3A9MHhjZmVhNWNk OCkNCiAgICBhdCAvdXNyL3NyYy9zeXMva2Vybi9rZXJuX2ZvcmsuYzo2NTQN CiMxNiAweGMwNjIyY2NiIGluIGZvcmsgKHRkPTB4YzI3NzlhYjAsIHVhcD0w eGNmZWE1ZDEwKQ0KICAgIGF0IC91c3Ivc3JjL3N5cy9rZXJuL2tlcm5fZm9y ay5jOjEwMg0KIzE3IDB4YzA3ZDdlMjAgaW4gc3lzY2FsbCAoZnJhbWU9DQog ICAgICB7dGZfZnMgPSA0NywgdGZfZXMgPSA0NywgdGZfZHMgPSA0NywgdGZf ZWRpID0gNDA5NiwgdGZfZXNpID0gNjU1MzYsIHRmX2VicCA9IC0xMDc3OTQ2 NzYwLCB0Zl9pc3AgPSAtODA2NzI0MjM2LCB0Zl9lYnggPSA2NCwgdGZfZWR4 ID0gMTMwNywgdGZfZWN4ID0gNjcyODQzMDA4LCB0Zl9lYXggPSAyLCB0Zl90 cmFwbm8gPSAwLCB0Zl9lcnIgPSAyLCB0Zl9laXAgPSA2NzIyMzkwMDcsIHRm X2NzID0gMzEsIHRmX2VmbGFncyA9IDU4MiwgdGZfZXNwID0gLTEwNzc5NDY4 MDQsIHRmX3NzID0gNDd9KQ0KICAgIGF0IC91c3Ivc3JjL3N5cy9pMzg2L2kz ODYvdHJhcC5jOjEwMDkNCiMxOCAweGMwN2M3NjlkIGluIFhpbnQweDgwX3N5 c2NhbGwgKCkgYXQge3N0YW5kYXJkIGlucHV0fToxNDQNCi0tLUNhbid0IHJl YWQgdXNlcnNwYWNlIGZyb20gZHVtcCwgb3Iga2VybmVsIHByb2Nlc3MtLS0N Cg0KKGtnZGIpIHENCiB+PiBleGl0DQpleGl0DQoNClNjcmlwdCBkb25lIG9u IE1vbiBPY3QgMTMgMjM6NTY6NTcgMjAwMw0K --0-2118838114-1066079061=:729-- From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 13 14:30:16 2003 Return-Path: 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 E625F16A4B3 for ; Mon, 13 Oct 2003 14:30:15 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1AD9C43FCB for ; Mon, 13 Oct 2003 14:30:15 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h9DLUEFY077253 for ; Mon, 13 Oct 2003 14:30:14 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h9DLUEkr077252; Mon, 13 Oct 2003 14:30:14 -0700 (PDT) (envelope-from gnats) Date: Mon, 13 Oct 2003 14:30:14 -0700 (PDT) Message-Id: <200310132130.h9DLUEkr077252@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Kris Kennaway Subject: Re: kern/56380: cdrecord panicks -CURRENT with ATAPI burner X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Kris Kennaway List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Oct 2003 21:30:16 -0000 The following reply was made to PR kern/56380; it has been noted by GNATS. From: Kris Kennaway To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/56380: cdrecord panicks -CURRENT with ATAPI burner Date: Mon, 13 Oct 2003 14:20:52 -0700 Adding to audit trail. Kris ----- Forwarded message from Vladimir Kushnir ----- X-Original-To: kkenn@localhost Delivered-To: kkenn@localhost.obsecurity.org Delivered-To: kris@freebsd.org Date: Tue, 14 Oct 2003 00:05:44 +0300 (EEST) From: Vladimir Kushnir X-X-Sender: vkushnir@kushnir1.kiev.ua To: Kris Kennaway Cc: freebsd-bugs@FreeBSD.org Subject: Re: kern/56380: cdrecord panicks -CURRENT with ATAPI burner In-Reply-To: <200310082137.h98LbIxN000394@freefall.freebsd.org> X-UIDL: fe174372f7a6ed38f544490a0b44e578 X-Bogosity: No, tests=bogofilter, spamicity=0.000000, version=0.14.5.4 Sorry for delay, here it goes. On Wed, 8 Oct 2003, Kris Kennaway wrote: > Synopsis: cdrecord panicks -CURRENT with ATAPI burner > > State-Changed-From-To: open->feedback > State-Changed-By: kris > State-Changed-When: Wed Oct 8 14:36:51 PDT 2003 > State-Changed-Why: > This is believed to be fixed in -CURRENT - can you please update > and confirm? > > http://www.freebsd.org/cgi/query-pr.cgi?pr=56380 > > Uname output: FreeBSD 5.1-CURRENT FreeBSD 5.1-CURRENT #4: Mon Oct 13 11:59:52 EEST 2003 root@kushnir1.kiev.ua:/usr/obj/usr/src/sys/KUSHNIR-TEST i386 Dmesg and gdb transcript attached. Copyright (c) 1992-2003 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.1-CURRENT #4: Mon Oct 13 11:59:52 EEST 2003 root@kushnir1.kiev.ua:/usr/obj/usr/src/sys/KUSHNIR-TEST Preloaded elf kernel "/boot/kernel.test/kernel" at 0xc0a66000. Preloaded elf module "/boot/kernel.test/acpi.ko" at 0xc0a66208. Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: Pentium III/Pentium III Xeon/Celeron (451.02-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x673 Stepping = 3 Features=0x387f9ff real memory = 201261056 (191 MB) avail memory = 185835520 (177 MB) Pentium Pro MTRR support enabled npx0: [FAST] npx0: on motherboard npx0: INT 16 interface acpi0: on motherboard pcibios: BIOS version 2.10 Using $PIR table, 6 entries at 0xc00fdf10 acpi0: Power Button (fixed) Timecounter "ACPI-safe" frequency 3579545 Hz quality 1000 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x4008-0x400b on acpi0 acpi_cpu0: on acpi0 acpi_tz0: on acpi0 acpi_button0: on acpi0 pcib0: port 0x5000-0x500f,0x4000-0x4041,0xcf8-0xcff on acpi0 pci0: on pcib0 pcib0: slot 2 INTD is routed to irq 10 pcib0: slot 14 INTA is routed to irq 5 pcib0: slot 15 INTA is routed to irq 9 pcib0: slot 16 INTA is routed to irq 10 agp0: mem 0xe0000000-0xe3ffffff at device 0.0 on pci0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pcib0: slot 1 INTA is routed to irq 11 pcib1: slot 0 INTA is routed to irq 11 pci1: at device 0.0 (no driver attached) isab0: at device 2.0 on pci0 isa0: on isab0 atapci0: port 0xf000-0xf00f at device 2.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata0: [MPSAFE] ata1: at 0x170 irq 15 on atapci0 ata1: [MPSAFE] uhci0: port 0xd000-0xd01f irq 10 at device 2.2 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered pci0: at device 2.3 (no driver attached) pci0: at device 14.0 (no driver attached) atapci1: port 0xe400-0xe40f,0xe000-0xe003,0xdc00-0xdc07,0xd800-0xd803,0xd400-0xd407 irq 9 at device 15.0 on pci0 atapci1: [MPSAFE] ata2: at 0xd400 on atapci1 ata2: [MPSAFE] ata3: at 0xdc00 on atapci1 ata3: [MPSAFE] pci0: at device 16.0 (no driver attached) fdc0: port 0x3f7,0x3f2-0x3f5 irq 6 drq 2 on acpi0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 sio0 port 0x3f8-0x3ff irq 4 on acpi0 sio0: type 16550A sio1 port 0x2f8-0x2ff irq 3 on acpi0 sio1: type 16550A ppc0 port 0x778-0x77b,0x378-0x37f irq 7 drq 3 on acpi0 ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/16 bytes threshold ppbus0: on ppc0 plip0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port ppi0: on ppbus0 atkbdc0: port 0x64,0x60 irq 1 on acpi0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 psm0: irq 12 on atkbdc0 psm0: model Generic PS/2 mouse, device ID 0 orm0: