From owner-freebsd-bugs@FreeBSD.ORG Sun Feb 25 09:50:06 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1196316A401 for ; Sun, 25 Feb 2007 09:50:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id E094213C478 for ; Sun, 25 Feb 2007 09:50:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1P9o5nW071964 for ; Sun, 25 Feb 2007 09:50:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1P9o5BK071963; Sun, 25 Feb 2007 09:50:05 GMT (envelope-from gnats) Resent-Date: Sun, 25 Feb 2007 09:50:05 GMT Resent-Message-Id: <200702250950.l1P9o5BK071963@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, Joost Bekkers Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 782C316A400 for ; Sun, 25 Feb 2007 09:42:41 +0000 (UTC) (envelope-from joost@jodocus.org) Received: from amsfep19-int.chello.nl (amsfep19-int.chello.nl [62.179.120.14]) by mx1.freebsd.org (Postfix) with ESMTP id BA9F613C471 for ; Sun, 25 Feb 2007 09:42:40 +0000 (UTC) (envelope-from joost@jodocus.org) Received: from bps.jodocus.org ([89.98.160.245]) by amsfep20-int.chello.nl (InterMail vM.6.01.04.04 201-2131-118-104-20050224) with ESMTP id <20070225082926.FQRO15683.amsfep20-int.chello.nl@bps.jodocus.org> for ; Sun, 25 Feb 2007 09:29:26 +0100 Received: from jodocus.org (localhost [127.0.0.1]) by bps.jodocus.org (8.13.8/8.13.8) with ESMTP id l1P8TORE085628 for ; Sun, 25 Feb 2007 09:29:24 +0100 (CET) (envelope-from joost@jodocus.org) Received: (from joost@localhost) by jodocus.org (8.13.8/8.13.8/Submit) id l1P8TOgt085627; Sun, 25 Feb 2007 09:29:24 +0100 (CET) (envelope-from joost) Message-Id: <200702250829.l1P8TOgt085627@jodocus.org> Date: Sun, 25 Feb 2007 09:29:24 +0100 (CET) From: Joost Bekkers To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: bin/109521: [patch] 'chio return' breaks on non-voltag changers X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Joost Bekkers List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Feb 2007 09:50:06 -0000 >Number: 109521 >Category: bin >Synopsis: [patch] 'chio return' breaks on non-voltag changers >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Feb 25 09:50:05 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Joost Bekkers >Release: FreeBSD 6.2-RELEASE amd64 >Organization: >Environment: System: FreeBSD bps.jodocus.org 6.2-RELEASE FreeBSD 6.2-RELEASE #1: Sun Jan 21 12:43:37 CET 2007 root@:/usr/obj/usr/src/sys/bps amd64 >Description: Trying the `chio return` command on a changer without volume tags results in a cry from the kernel: (ch0:ahc0:0:4:1): READ ELEMENT STATUS. CDB: b8 30 0 1 0 1 0 0 4 0 0 0 (ch0:ahc0:0:4:1): CAM Status: SCSI Status Error (ch0:ahc0:0:4:1): SCSI Status: Check Condition (ch0:ahc0:0:4:1): ILLEGAL REQUEST asc:24,0 (ch0:ahc0:0:4:1): Invalid field in CDB: Command byte 1 bit 4 is invalid (ch0:ahc0:0:4:1): Unretryable error byte 1 bit 4 == volume tags This call originates from get_element_status() which is only called from inside do_return(). The volume tag information appears to never be used, so why ask for it? >How-To-Repeat: On a changer without voltag support do: chio move slot 0 drive 0 chio return drive 0 I haven't been able to test this with any other model than the one I have. # camcontrol devlist (HP C1557A U709) at scbus0 target 4 lun 0 (sa0,pass0) (HP C1557A U709) at scbus0 target 4 lun 1 (ch0,pass1) >Fix: --- src/bin/chio/chio.c_6.2R Sun Feb 25 09:15:39 2007 +++ src/bin/chio/chio.c Sun Feb 25 09:14:06 2007 @@ -1020,7 +1020,12 @@ cesr.cesr_element_type = (uint16_t)type; cesr.cesr_element_base = (uint16_t)element; cesr.cesr_element_count = 1; /* Only this one element */ - cesr.cesr_flags |= CESR_VOLTAGS; /* Grab voltags as well */ + /* 25/02/2007 Joost Bekkers: + * Don't ask for voltags. The information is currently never used + * and it breaks the return command for changers that don't support + * voltags. + */ + //cesr.cesr_flags |= CESR_VOLTAGS; /* Grab voltags as well */ cesr.cesr_element_status = ces; if (ioctl(changer_fd, CHIOGSTATUS, (char *)&cesr) == -1) { >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Feb 25 10:10:14 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B7E9F16A401 for ; Sun, 25 Feb 2007 10:10:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 58AE713C48D for ; Sun, 25 Feb 2007 10:10:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1PAAEWC072766 for ; Sun, 25 Feb 2007 10:10:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1PAADQH072765; Sun, 25 Feb 2007 10:10:13 GMT (envelope-from gnats) Date: Sun, 25 Feb 2007 10:10:13 GMT Message-Id: <200702251010.l1PAADQH072765@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Maxim Konovalov Cc: Subject: Re: bin/109494: [PATCH] ypserv: Add option to bind to specific port X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Maxim Konovalov List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Feb 2007 10:10:14 -0000 The following reply was made to PR bin/109494; it has been noted by GNATS. From: Maxim Konovalov To: Shaun Amott Cc: bug-followup@freebsd.org Subject: Re: bin/109494: [PATCH] ypserv: Add option to bind to specific port Date: Sun, 25 Feb 2007 13:07:43 +0300 (MSK) Hi Shaun, [...] > >Description: > > The attached patch adds adds an option to the ypserv daemon which > allows the user to specify a specific port number to bind to, making > (e.g.) packet filtering easier. > > >How-To-Repeat: > > >Fix: > > --- ypserv.diff begins here --- > Index: yp_main.c > =================================================================== > RCS file: /home/ncvs/src/usr.sbin/ypserv/yp_main.c,v > retrieving revision 1.28 > diff -u -r1.28 yp_main.c > --- yp_main.c 20 May 2005 13:04:10 -0000 1.28 > +++ yp_main.c 24 Feb 2007 16:34:03 -0000 > @@ -80,6 +80,7 @@ > extern int _rpcsvcstate; /* Set when a request is serviced */ > char *progname = "ypserv"; > char *yp_dir = _PATH_YP; > +long yp_port = -1; > /*int debug = 0;*/ > int do_dns = 0; > int resfd; > @@ -231,7 +232,7 @@ > socklen_t asize = sizeof (saddr); > int ch; > > - while ((ch = getopt(argc, argv, "hdnp:")) != -1) { > + while ((ch = getopt(argc, argv, "hdnp:P:")) != -1) { > switch (ch) { > case 'd': > debug = ypdb_debug = 1; > @@ -242,6 +243,13 @@ > case 'p': > yp_dir = optarg; > break; > + case 'P': > + if ((yp_port = strtoul(optarg, NULL, 10)) == ULONG_MAX) { > + err(1,"invalid port number provided"); > + } else if (yp_port > IPPORT_MAX) { > + errx(1,"port number out of range"); > + } > + break; strtoul() usage above is not entirely correct. Better to use strtonum(3) instead. > case 'h': > default: > usage(); > @@ -277,6 +285,21 @@ > (void) pmap_unset(YPPROG, 1); > } > > + if (yp_port >= 0) { > + if ((sock = socket(AF_INET, SOCK_DGRAM, 0)) < 0) { > + err(1,"cannot create udp socket"); > + } > + > + memset((char *)&saddr, 0, sizeof(saddr)); > + saddr.sin_family = AF_INET; > + saddr.sin_addr.s_addr = htonl(INADDR_ANY); > + saddr.sin_port = htons(yp_port); > + > + if (bind(sock, (struct sockaddr *) &saddr, sizeof(saddr)) < 0) { > + err(1,"cannot bind udp socket"); > + } > + } > + > if ((_rpcfdtype == 0) || (_rpcfdtype == SOCK_DGRAM)) { > transp = svcudp_create(sock); > if (transp == NULL) { > @@ -295,6 +318,21 @@ > } > } > > + if (yp_port >= 0) { > + if ((sock = socket(AF_INET, SOCK_STREAM, 0)) < 0) { > + err(1,"cannot create tcp socket"); > + } > + > + memset((char *)&saddr, 0, sizeof(saddr)); > + saddr.sin_family = AF_INET; > + saddr.sin_addr.s_addr = htonl(INADDR_ANY); > + saddr.sin_port = htons(yp_port); > + > + if (bind(sock, (struct sockaddr *) &saddr, sizeof(saddr)) < 0) { > + err(1,"cannot bind tcp socket"); > + } > + } > + > if ((_rpcfdtype == 0) || (_rpcfdtype == SOCK_STREAM)) { > transp = svctcp_create(sock, 0, 0); > if (transp == NULL) { [...] That breaks ypserv(8) for ipv6. Look at NetBSD ypserv -p implementation. -- maxim From owner-freebsd-bugs@FreeBSD.ORG Sun Feb 25 19:10:14 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5380C16A402 for ; Sun, 25 Feb 2007 19:10:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id E1D4F13C441 for ; Sun, 25 Feb 2007 19:10:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1PJADi0006397 for ; Sun, 25 Feb 2007 19:10:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1PJADT1006396; Sun, 25 Feb 2007 19:10:13 GMT (envelope-from gnats) Date: Sun, 25 Feb 2007 19:10:13 GMT Message-Id: <200702251910.l1PJADT1006396@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: kern/27995: commit references a PR X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Feb 2007 19:10:14 -0000 The following reply was made to PR kern/27995; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/27995: commit references a PR Date: Sun, 25 Feb 2007 19:02:08 +0000 (UTC) marius 2007-02-25 19:02:01 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/pci if_pcn.c if_pcnreg.h Log: MFC: if_pcn.c 1.76, 1.81, 1.82; if_pcnreg.h 1.15 - In detach method, move if_free() after bus_teardown_intr(). - Clear the PCN_MISC_ASEL bit so the media port can be actually set via the PCN_CSR_MODE register. Along with sys/dev/mii/nsphy.c 1.23.2.3 this fixes the case of certain Am79c971-based HP cards and on-board ones in IBM machines reporting link but not actually passing any traffic. [1] - Add support for the internal 10baseT PHY, which actually is used on at least said HP cards (together with an external DP83840A in a multiple PHYs configuration). With cards that don't make use of this internal PHY it'll also show up in FreeBSD but not cause any harm. This is still missing support for multiple PHYs configuration using the internal 100baseTX and/or HomePNA PHYs together with external PHYs or multiple external PHYs though. - Allow multiple (external) PHYs with Am79C97{2,6}, which actually only support external PHYs (besides not connectable internal ones which respond at the usual addresses, but which don't hurt if we let them show up) and don't wedge when isolating PHYs. Actually, this change special cases limiting PHYs to Am79C97{3,5,8}, for which this driver doesn't implement swiching between the internal and external PHYs, yet, and Am79C971, where isolating the external PHY (at least in case it's a DP83840A) wedges the chip. Together with sys/dev/mii/acphy.c rev. 1.16.2.5 this adds support for the 100baseFX port of AT-2700 series adaptors, which use two AC101, one for the copper and one for the fibre port (there might be variants which only use one PHY though). - In pcn_ifmedia_upd() call pcn_reset() as otherwise the Am79C971 of at least said HP cards can wedge when switching from the internal 10baseT PHY to the external PHY. This means that we need to also initialize and possibly start the chip again in pcn_ifmedia_upd(), which isn't that bad though as for setting the media port the chip has to be powered down or stopped anyway and unlike documented doesn't take effect until the next initialization. - Don't bother to set if_mtu to ETHERMTU, ether_ifattach() does that. PR: 27995, 25959, 72966 (likely) [1] Revision Changes Path 1.69.2.7 +80 -15 src/sys/pci/if_pcn.c 1.11.2.3 +8 -4 src/sys/pci/if_pcnreg.h _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-bugs@FreeBSD.ORG Sun Feb 25 19:10:26 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 36FC916A401 for ; Sun, 25 Feb 2007 19:10:26 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id C02A813C49D for ; Sun, 25 Feb 2007 19:10:25 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1PJAPWs006444 for ; Sun, 25 Feb 2007 19:10:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1PJAPej006443; Sun, 25 Feb 2007 19:10:25 GMT (envelope-from gnats) Date: Sun, 25 Feb 2007 19:10:25 GMT Message-Id: <200702251910.l1PJAPej006443@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: kern/25959: commit references a PR X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Feb 2007 19:10:26 -0000 The following reply was made to PR kern/25959; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/25959: commit references a PR Date: Sun, 25 Feb 2007 19:02:08 +0000 (UTC) marius 2007-02-25 19:02:01 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/pci if_pcn.c if_pcnreg.h Log: MFC: if_pcn.c 1.76, 1.81, 1.82; if_pcnreg.h 1.15 - In detach method, move if_free() after bus_teardown_intr(). - Clear the PCN_MISC_ASEL bit so the media port can be actually set via the PCN_CSR_MODE register. Along with sys/dev/mii/nsphy.c 1.23.2.3 this fixes the case of certain Am79c971-based HP cards and on-board ones in IBM machines reporting link but not actually passing any traffic. [1] - Add support for the internal 10baseT PHY, which actually is used on at least said HP cards (together with an external DP83840A in a multiple PHYs configuration). With cards that don't make use of this internal PHY it'll also show up in FreeBSD but not cause any harm. This is still missing support for multiple PHYs configuration using the internal 100baseTX and/or HomePNA PHYs together with external PHYs or multiple external PHYs though. - Allow multiple (external) PHYs with Am79C97{2,6}, which actually only support external PHYs (besides not connectable internal ones which respond at the usual addresses, but which don't hurt if we let them show up) and don't wedge when isolating PHYs. Actually, this change special cases limiting PHYs to Am79C97{3,5,8}, for which this driver doesn't implement swiching between the internal and external PHYs, yet, and Am79C971, where isolating the external PHY (at least in case it's a DP83840A) wedges the chip. Together with sys/dev/mii/acphy.c rev. 1.16.2.5 this adds support for the 100baseFX port of AT-2700 series adaptors, which use two AC101, one for the copper and one for the fibre port (there might be variants which only use one PHY though). - In pcn_ifmedia_upd() call pcn_reset() as otherwise the Am79C971 of at least said HP cards can wedge when switching from the internal 10baseT PHY to the external PHY. This means that we need to also initialize and possibly start the chip again in pcn_ifmedia_upd(), which isn't that bad though as for setting the media port the chip has to be powered down or stopped anyway and unlike documented doesn't take effect until the next initialization. - Don't bother to set if_mtu to ETHERMTU, ether_ifattach() does that. PR: 27995, 25959, 72966 (likely) [1] Revision Changes Path 1.69.2.7 +80 -15 src/sys/pci/if_pcn.c 1.11.2.3 +8 -4 src/sys/pci/if_pcnreg.h _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-bugs@FreeBSD.ORG Sun Feb 25 22:20:31 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E3AF116A405 for ; Sun, 25 Feb 2007 22:20:31 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id BC52513C4AA for ; Sun, 25 Feb 2007 22:20:31 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1PMKVlw017599 for ; Sun, 25 Feb 2007 22:20:31 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1PMKVmL017598; Sun, 25 Feb 2007 22:20:31 GMT (envelope-from gnats) Date: Sun, 25 Feb 2007 22:20:31 GMT Message-Id: <200702252220.l1PMKVmL017598@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Eric van Gyzen Cc: Subject: Re: kern/102654: [panic]: sleeping thread X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Eric van Gyzen List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Feb 2007 22:20:32 -0000 The following reply was made to PR kern/102654; it has been noted by GNATS. From: Eric van Gyzen To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/102654: [panic]: sleeping thread Date: Sun, 25 Feb 2007 16:16:00 -0600 As far as I'm concerned, you can close this PR. I have been running 6.2 since the release and haven't seen this panic. (Granted, I saw it only once on 6.1.) Or you might assign it to alc@ per the suggestion by jhb@. Eric From owner-freebsd-bugs@FreeBSD.ORG Mon Feb 26 05:02:09 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 27D8A16A402; Mon, 26 Feb 2007 05:02:09 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id F386013C48D; Mon, 26 Feb 2007 05:02:08 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1Q5284t042136; Mon, 26 Feb 2007 05:02:08 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1Q528kL042132; Mon, 26 Feb 2007 05:02:08 GMT (envelope-from linimon) Date: Mon, 26 Feb 2007 05:02:08 GMT From: Mark Linimon Message-Id: <200702260502.l1Q528kL042132@freefall.freebsd.org> To: eric@vangyzen.net, linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/102654: [panic]: sleeping thread X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Feb 2007 05:02:09 -0000 Synopsis: [panic]: sleeping thread State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Mon Feb 26 05:01:49 UTC 2007 State-Changed-Why: Submitter notes this is no longer seen on 6.2. http://www.freebsd.org/cgi/query-pr.cgi?pr=102654 From owner-freebsd-bugs@FreeBSD.ORG Mon Feb 26 08:20:13 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EACE916A401 for ; Mon, 26 Feb 2007 08:20:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 946D213C478 for ; Mon, 26 Feb 2007 08:20:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1Q8KDXE092989 for ; Mon, 26 Feb 2007 08:20:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1Q8KDWD092985; Mon, 26 Feb 2007 08:20:13 GMT (envelope-from gnats) Date: Mon, 26 Feb 2007 08:20:13 GMT Message-Id: <200702260820.l1Q8KDWD092985@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: bin/93085: commit references a PR X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Feb 2007 08:20:14 -0000 The following reply was made to PR bin/93085; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: bin/93085: commit references a PR Date: Mon, 26 Feb 2007 08:16:07 +0000 (UTC) mckusick 2007-02-26 08:15:56 UTC FreeBSD src repository Modified files: include/protocols dumprestore.h sbin/restore restore.h extern.h dirs.c tape.c sbin/dump dump.h traverse.c Log: Update the dump program to save extended attributes. Update the restore program to restore all dumped extended attributes. If the restore is running as root, it will always be able to restore all extended attributes. If it is not running as root, it makes a best effort to set them. Using the -v command line flag or the `verbose' command in interactive mode will display all the extended attributes being set on files (and at the end on directories) that are being restored. It will note any extended attributes that could not be set. The extended attributes are placed on the dump image immediately following each file's data. Older versions of restore can work with the newer dump images. Old versions of restore will correctly restore the file data and then (silently) skip over the extended attribute data and proceed to the next file. This resolves PR 93085 which will be closed once the code has been MFC'ed. Note that this code will not compile until these header files have been updated: and . PR: bin/93085 Comments from: Poul-Henning Kamp and Robert Watson MFC after: 3 weeks Revision Changes Path 1.11 +2 -1 src/include/protocols/dumprestore.h 1.28 +0 -2 src/sbin/dump/dump.h 1.38 +166 -18 src/sbin/dump/traverse.c 1.31 +54 -12 src/sbin/restore/dirs.c 1.11 +3 -1 src/sbin/restore/extern.h 1.12 +1 -0 src/sbin/restore/restore.h 1.48 +290 -13 src/sbin/restore/tape.c _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-bugs@FreeBSD.ORG Mon Feb 26 11:06:24 2007 Return-Path: X-Original-To: freebsd-bugs@FreeBSD.org Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C0A2516A400 for ; Mon, 26 Feb 2007 11:06:24 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 983F013C441 for ; Mon, 26 Feb 2007 11:06:24 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1QB6OIs004092 for ; Mon, 26 Feb 2007 11:06:24 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1QB6Ic1004088 for freebsd-bugs@FreeBSD.org; Mon, 26 Feb 2007 11:06:18 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 26 Feb 2007 11:06:18 GMT Message-Id: <200702261106.l1QB6Ic1004088@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: linimon set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list Cc: Subject: open PRs (mis)filed to gnats-admin and in limbo X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Feb 2007 11:06:24 -0000 Current FreeBSD problem reports No matches to your query From owner-freebsd-bugs@FreeBSD.ORG Mon Feb 26 11:07:10 2007 Return-Path: X-Original-To: freebsd-bugs@FreeBSD.org Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C6BDE16A410 for ; Mon, 26 Feb 2007 11:07:10 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 91BDB13C4A8 for ; Mon, 26 Feb 2007 11:07:10 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1QB7AvX004104 for ; Mon, 26 Feb 2007 11:07:10 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1QB6OmP004097 for freebsd-bugs@FreeBSD.org; Mon, 26 Feb 2007 11:06:24 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 26 Feb 2007 11:06:24 GMT Message-Id: <200702261106.l1QB6OmP004097@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: linimon set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list Cc: Subject: Current problem reports X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Feb 2007 11:07:10 -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. r - repocopy The resolution of the problem report is dependent on a repocopy operation within the CVS repository which is awaiting completion. 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 Tracker Resp. Description -------------------------------------------------------------------------------- a kern/39043 [smbfs] Corrupted files on a FAT32 partition o kern/41723 [2TB] on 1TB fs, copying files to filesystem causes "i f bin/48341 [sysinstall] sysinstall deletes mbr although it should o kern/50201 [twe] 3ware RAID 5 resulting in data corruption f kern/60175 panic: 5.2-RC: disk errors cause panic in softupdates a bin/66261 fsck cannot recover filesystem corruption o kern/68757 kan rapid file creation on snapshotted filesystems panics o kern/70096 trhodes [msdosfs] [patch] full msdos file system causes corrup o kern/73313 simokawa Maxtor Onetouch drivers hang or corrupt data when used o alpha/75317 alpha [ata] [busdma] ATA DMA broken on PCalpha o kern/75844 phk gbde causes disk write errors and subsequent kernel pa s threa/76690 threads fork hang in child for -lc_r o kern/77234 [udf] [patch] corrupted data is read from UDF filesyst o threa/80887 jeff [sched_ule] ULE with SMP broke libpthread/libthr on 5. o usb/84750 usb [hang] 6-BETA2 reboot/shutdown with root_fs on externa o kern/87191 scottl [aac] [patch] aac(4) panics immediately with INVARIANT o kern/88715 [kbd] [hang] new kbd driver in FreeBSD 6.0 RELEASE and o bin/88872 [2TB] Error 36 while sysinstall tries to create / part o amd64/89202 amd64 [ufs] [panic] Kernel crash when accessing filesystem w o kern/89926 [iwi] [panic] if_iwi : sleeping thread owns a non-slee o usb/91629 usb usbd_abort_pipe() may result in infinite loop o kern/92742 cognet [pts] [panic] New pts code causes AMD64 panics (regres o kern/93903 [aac] aac driver cannot shutdown controller causing da f kern/94261 [ufs] deadlock between ffs_mksnap and mysnc o kern/94939 [acpi] [patch] reboot(8) fails on IBM / Intel blades o kern/99588 [ufs] UFS2 filesystems hang when doing "fsck -B" or "d o kern/103137 [rp] Rocketport driver is broken in 6.x o kern/104133 [ext2fs] EXT2FS module corrupts EXT2/3 filesystems 28 problems total. Serious problems S Tracker Resp. Description -------------------------------------------------------------------------------- a bin/3170 vi freaks and dump core if user doesn't exist a bin/6536 pppd doesn't restore drainwait for tty f bin/8865 dwmalone syslogd hangs with serial console o kern/10870 eivind Kernel panic when writing to write-protected floppy di s conf/13775 multi-user boot may hang in NIS environment f ports/14048 des [patch] doscmd -r doesn't work s bin/14946 mjacob rmt - remote magtape protocol o bin/16948 [sysinstall] sysinstall/disklabel: bad partition table f kern/17310 remko [nis] [patch] NIS host name resolving may loop forever s conf/17540 cel [nfs] NIS host lookups cause NFS mounts to wedge at bo p kern/18874 [2TB] 32bit NFS servers export wrong negative values t o i386/19245 obrien -fexpensive-optimizations buggy (even with -O) s bin/19405 markm telnetd sends DO AUTHENTICATION even if authentication s bin/19773 markm [PATCH] telnet infinite loop depending on how fds are o gnu/19882 obrien ld does not detect all undefined symbols! o kern/20016 threads pthreads: Cannot set scheduling timer/Cannot set virtu o bin/20172 byacc 1.9 fails to generate $default transitions for n o bin/20282 [sysinstall] sysinstall does not recover some /etc fil s bin/20521 mjacob /etc/rmt several problems o bin/20633 fdisk doesn't handle LBA correctly o kern/20804 deadlocking when using vnode disk file and quotas o bin/20912 marcel gdb does not recognise old executables. o kern/20958 mdodd [ep] ep0 lockup with ifconfig showing OACTIVE o bin/21089 vi silently corrupt open file on SIGINT when entering o kern/21461 imp ISA PnP resource allocator problem o kern/21463 emulation [linux] Linux compatability mode should not allow setu a kern/21808 trhodes [msdosfs] [patch] msdosfs incorrectly handles vnode lo o kern/21998 green [socket] [patch] ident only for outgoing connections o bin/22291 cel [nfs] getcwd() fails on recently-modified NFS-mounted s kern/22417 gibbs [adw] [patch] advansys wide scsi driver does not suppo s i386/22944 tegge [vm] [patch] isa_dmainit fails on machines with 512MB o gnu/22972 obrien Internal Compiler Error o bin/23098 [sysinstall] [patch] if installing on a serial console o kern/24074 mdodd Properties of token-ring protocol must be separated fr o bin/24271 [patch] dumpon(8) should check its argument more o bin/24461 Being able to increase the YP timeout without rebuildi s threa/24472 threads libc_r does not honor SO_SNDTIMEO/SO_RCVTIMEO socket o o kern/24629 harti ng_socket failes to declare connected data sockets as s threa/24632 threads libc_r delicate deviation from libc in handling SIGCHL o bin/25542 standards /bin/sh: null char in quoted string o kern/25886 [libc] cgetset(3) doesn't get cleared when switching d o kern/25950 obrien [asr] Bad drives on asr look zero-length and panic on a kern/25986 andre Socket would hang at LAST_ACK forever. o kern/26048 obrien [asr] 4.3-RC: SMP and asr driver don't work together a kern/26142 cel [nfs] Unlink fails on NFS mounted filesystem a gnu/26362 "cvs server" doesn't honour the global --allow-root o kern/26486 [libc] [patch] setnetgrent hangs when netgroup contain o bin/26842 dump with h flag takes a very long time o bin/26897 [sysinstall] 4.3R sysinstall fails to create swap part o kern/27059 scsi [sym] SCSI subsystem hangs under heavy load on (Server o kern/27474 Interactive use of user PPP and ipfilter can be insecu o docs/27605 doc [patch] Cross-document references () o conf/27896 Error in /etc/exports invalidates entire line, not jus o bin/28223 su doesn't look at login.conf all the time o bin/28424 mtree fails to report directory hierarchy mismatch o bin/28798 mail(1) with a pager (more) requires fg/Ctrl-Z/fg to r s kern/28840 gibbs [cam] Possible interrupt masking trouble in sys/cam/ca f kern/29170 remko ARP request fails after "bad gateway value" in if_ethe o bin/29253 natd forgets about udp connections o bin/29375 [sysinstall] disk editor gets confused by slices that o kern/29421 Update a file with mmap will cause mtime/ctime changin o bin/29725 dwmalone [picobsd] [patch] fixed segmentation fault in simple_h o bin/29808 ypserv dumps core in yp_find_db o bin/29903 ypbind loses connection to NIS master and never recove o kern/29983 imp Problem with "TI PCI-1250 PCI-CardBus Bridge" on IBM T o kern/30160 iedowse [panic] kernel panic when flash disk is removed and th s i386/30206 mdodd [boot] PS/2 server 85 can't boot kern.flp o conf/30223 [patch] Using /usr/share/examples/kld/cdev, testcdev f o conf/30399 Have Fortran use the CPUTYPE variable s kern/30630 fenner [if_mib] Failure to check for existence of interface i o kern/30712 fatal kernel trap during ufs_rename o bin/30837 [sysinstall] sysinstall doesn't set the schg flag on t o bin/30869 dump(8) does not dump all files of a filesystem o kern/30948 ls'ing mounted brand new floppy locks up machine. o kern/30971 peter [nfs] NFS client modification time resolution is not h s kern/31047 Linux programs do not dump core in linux format but Fr o kern/31102 wpaul [lge] lge + Pentium III data transmission problem f bin/31304 linimon [patch] fix crunchgen to work with more contrib-kind o o bin/31363 [sysinstall] "partition editor" silently corrects part o conf/31631 "MAC address" can't be acquired properly. f kern/31790 remko [nfs] problem with NFS and jail() o kern/31940 [nge] nge(4) gigabit adapter link reset and slow trans o kern/32098 [libc] semctl() does not propagate permissions s bin/32295 threads pthread dont dequeue signals o kern/32353 if kern.maxproc > 512 sybase ASE 11.9.2(linux binary) o bin/32374 vi -r doesn't work, file contained unexpected binary d o bin/32619 des libfetch does not use RFC 1738's definiton of ftp: URL o ports/32668 sem sysutils/[portupgrade: NFS directory removal problems o bin/32686 wosch locate(1) dumps a core file with broken database a i386/33089 murray GENERIC bloat causes 'make world' to break (overfull f o kern/33138 [isa] [patch] pnp problem in 4.3, 4.4, 4.5 o bin/33370 [sysinstall] post-configuration issue o kern/33464 soft update inconsistencies after system crash s gnu/33551 cvs chokes on OpenBSD repositories o gnu/34128 sdiff "e" doesn't work with some editors o bin/34270 man -k could be used to execute any command. o kern/34470 bde Modem gets sio1 interrupt-level buffer overflows' s threa/34536 threads accept() blocks other threads o bin/34811 sh: "jobs" is not pipeable o kern/34842 [nis] [patch] VmWare port + NIS causes "broadcast stor o bin/35214 obrien dump program hangs while exiting o kern/35396 poll(2) doesn't set POLLERR for failed connect(2) atte o kern/35399 poll(2) botches revents on dropped socket connections o kern/35429 select(2)/poll(2)/kevent(2) can't/don't notice lost co o kern/35442 [sis] [patch] Problem transmitting runts in if_sis dri o kern/35506 jon [libc] innetgr() doesn't match wildcard fields in NIS- o kern/35511 [sis] sis(4) multicast filtering doesn't pass some App o kern/35669 cel [nfs] NFSROOT breaks without a gateway s docs/35678 doc docproj Makefiles for web are broken for paths with sp o kern/35703 /proc/curproc/file returns unknown o gnu/35878 /usr/bin/strip resets ABI type to FreeBSD o bin/35925 [sysinstall] fixit floppy cannot be mounted on USB dri a bin/35985 [sysinstall] swap double mount a bin/36110 dmesg output corrupt if /dev/console is busy o kern/36415 [bktr] [patch] driver incorrectly handles the setting o kern/36504 [kernel] [patch] crash/panic vm_object_allocate under o bin/36508 [sysinstall] installation floppy bug (4.5) o kern/36517 [sis] sis driver can't map ports/memory for NetGear FA o kern/36566 [smbfs] System reboot with dead smb mount and umount o kern/36784 Can't fcntl(fd, F_SETFL, ...) on a pseudo-tty o bin/36867 [patch] games/fortune: add FORTUNE_PATH env var, so po o bin/36911 [sysinstall] installation floppies miss autoload file o gnu/36926 send-pr destroys PR if emacs interrupt character is us o kern/37326 [bktr] smbus/bktr crash when omitting "device iicsmb" o bin/37343 portmap TCP binds strangeness o kern/37436 [hang] accept dead loop when out of file descriptors s kern/37441 davidxu [isa] [patch] ISA PNP parse problem o i386/37523 davidxu [i386] [patch] lock for bios16 call and vm86call o kern/37589 imp Kernel panics upon resume from zzz on my IBM ThinkPad o bin/37710 [sysinstall] LAN interface in wrong state after attemp o kern/38518 [boot] combination of pr-27087 and pr-36911 (2) make 4 s kern/38527 /dev/random does not obey O_NONBLOCK flag o kern/38549 threads the procces compiled whith pthread stopped in pthread_ a kern/38554 net changing interface ipaddress doesn't seem to work o bin/38582 [sysinstall] sysinstall sets newfs flag after changing a gnu/38594 kan Fortan program don't link post gcc-3.1 o bin/38609 [sysinstall] sysinstall should know the size of the va o kern/38632 imp Loss of connection with wi cards o kern/38872 cel [nfs] nfs code ignores possibility of MGET(M_WAIT) fai o bin/38918 edquota breaks silently when quota-marked filesystems o kern/38983 Kernel fails to access disk f kern/39233 remko [ipsec]: NonConforming IPsec implementation from FreeB o kern/39252 [syscons] [patch] syscons doesn't support 8-bit contro o kern/39329 [mount] '..' at mountpoint is subject to the permissio o kern/39331 dwmalone namei cache unreliable for __getcwd() o kern/39388 scsi ncr/sym drivers fail with 53c810 and more than 256MB m o bin/39849 /sbin/restore fails to overwrite files with schg flag o bin/39896 netmask 0xffffff00 no longer works in /etc/exports s threa/39922 threads [threads] [patch] Threaded applications executed with o kern/39928 imp [wi] wi0 timeouts and hangs the system while sending d s kern/39937 net ipstealth issue a bin/39940 [patch] /usr/sbin/periodic sends thousands of emails o kern/40206 Can not assign alias to any POINTOPOINT interface o bin/40215 wpaul [nis] NIS host search not terminate o bin/40260 [sysinstall] hang when detecting devices (No CD/DVD de f kern/40274 [fxp] "fxp: device timeout" errors during heavy, susta o bin/40278 mktime returns -1 for certain dates/timezones when it o bin/40282 /bin/kill has bad error checking for command line para o bin/40471 des chpass(1) -a option broken in CURRENT o kern/40787 kernel panic if PCMCIA CD-drive with mounted medium is o usb/40792 usb signals lead to data loss on device ugen o kern/40895 scsi wierd kernel / device driver bug s kern/41138 [vr] vr0 locks up on one hub, OK on another o kern/41216 cel [nfs] Get "NFS append race" error o conf/41242 periodic scripts make unwarranted assumptions about PA o bin/41297 mp {t,}csh backquote/braces expansion bug o kern/41402 [panic] kernel panics in pmap_insert_entry o bin/41410 stefanf /bin/sh bug on expanding $? in here-documents o kern/41632 luigi bridging when one interface has no carrier o kern/41720 [nge] if_nge_load=YES make system not bootable o conf/41777 /etc/periodic/daily/100.clean-disks removes lisp.core o docs/41824 murray LANG is not documented in setlocale(3) o bin/41850 [sysinstall] sysinstall fails to create root filesyste o bin/42004 quota and rpc.statd are still IPv4 only, and not INET o kern/42089 phk ntp_gettime returns time in wrong scale o bin/42093 ypbind hangs on NIC with the lowest scopeid o misc/42115 luigi [picobsd] [patch] fix build script for 4.6-STABLE s kern/42216 rwatson simultaneous multiple server network failure o bin/42407 ppp(8) IPV6CP fails o kern/42578 [puc] [panic] using PCI serial cards (puc) in SMP mach o kern/42621 imp Dell Inspiron 5000e hangs when using Orinoco or Cisco o bin/42658 markm recompile /usr/src/libexec/telnetd and log NULL ip in o gnu/42726 cvsadm cvs -R pserver & val-tags: story continues s bin/42750 fdisk(8) does not distinguish between FAT32, XFS or Ex o kern/42769 [boot] Boot stalls if the system has a serial console o kern/42801 [hang] FreeBSD freezes when opening cuaa0 with a motor o kern/42983 imp wi0 sporadically freezes the system for 1-2 seconds o bin/43223 getnetby{name|addr} broken for DNS lookups. o bin/43337 des fetch: -s fails if -4 or possibly other options given; a i386/43366 cy Cannot format media in USB floppy devices o kern/43491 microuptime () went backwards o bin/43501 getpwnam, getpwuid fail when linking against Berkley D o kern/43576 imp Problem with wi driver and Lucent Orinoco Silver wirel o bin/43592 mktime rejects dates at the start of daylight savings a kern/43605 luigi enabling polling in the kernel causes page fault/crash o kern/43625 imp [wi] wi(4) driver hangs after long data transfers f bin/43674 [patch] login(1): able to bypass expired password o kern/43713 during install, mounting root from ufs:/dev/md0c resul o java/43924 glewis writing from JAVA to a pipe sometimes hangs o kern/43954 cel [nfs] nfs-blocked process can't return or be interrupt a kern/44030 VNode/Swap troubles o kern/44150 Diskless kernel may crash, depends on the root fs name o kern/44202 [rp] [patch] -stable rp driver does not work with mult p kern/44336 [nfs] NFSv3 client broken - security problem with attr s bin/44518 yar ftpd does not show OPIE OTP challenge o docs/44519 obrien ftpd.conf(5) contains references to ftpd(8) when it is o gnu/44564 peter [PATCH] Aborted cvs session causes an endless loop in o kern/44578 [nis] getnetgrent fails to read NIS netgroup map o kern/44744 [vn] [patch] VN devices can hang system FreeBSD v4.5 o bin/44808 [PATCH] opiepasswd makes bad seed for existing user o gnu/45168 Buffer overflow in /usr/bin/dialog o bin/45272 dump/restore problem o docs/45303 remko Bug in PDF DocBook rendering o kern/45322 Panic on resume (zone: entry not free) o kern/45373 mckusick softupdate / fs damaged after loss of power / CG 8: Ba o kern/45403 imp Cannot install -CURRENT via pccard network interface o i386/45525 imp Dell Inspiron 7000 does not recognize PC-CARDs after r o bin/45529 hexdump core-dumps with certain args [PATCH] o kern/45558 trhodes [msdosfs] mdconfig and msdosfs make fs writes hang o bin/45565 [sysinstall] write error, filesystem full s kern/45568 gibbs [ahc] ahc(A19160) pci parity error f i386/45773 remko [bge] Softboot causes autoconf failure on Broadcom 570 o kern/45777 crashdump issue with too-small dumpdev o bin/45990 dwmalone top dumps core if specific errors in password file o bin/45995 markm Telnet fails to properly handle SIGPIPE on its termina o kern/46017 [smbfs] smb mounts break /etc/periodic/weekly/310.loca o kern/46036 inaccurate timeouts in select(),nanosleep() + fix o usb/46176 usb [panic] umass causes kernel panic if device removed be o kern/46239 standards posix semaphore implementation errors o bin/46352 Open file descriptors and signal handling in the child o i386/46371 usb USB controller cannot be initialized on IBM Netfinity f kern/46484 [bge] [panic] System panics upon configuration of bge a kern/46647 silby Failure to initialize MII on 3Com NIC results in panic o bin/46670 [sysinstall] 5.0-RC2 install leaves CD drawer locked. o bin/46676 ru [PATCH] bsd.dep.mk restricts domain of tags commands o kern/46694 imp Getting DUP packets when in Promiscous mode on wi0 o bin/46866 NIS-based getpwent() falsely returns NULL o kern/47286 device probing not verbose when using boot -v o kern/47359 dd [snp] [panic] panic after kldunload snp o bin/47384 [sysinstall] sysinstall ignores intended destination d o kern/47628 trhodes [msdosfs] [patch] msdosfs file corruption fix o kern/47647 [crash] init died with signal 6 [4.7] s kern/47813 [gre] pseudo-device gre(4) doesn't appear to work with o kern/47937 hw.ncpu and kern.smp.cpus duplicate same info o kern/47951 [hang] rtld in ld.so will livelock in some circumstanc o kern/48062 mckusick mount -o snapshot doesn't work on +100GB disks o kern/48100 Fatal panic in vm_map_lookup_entry ... [SMP, 5.0] o kern/48117 SMP machine hang during boot related to idle proc and o kern/48166 panic: pmap_new_proc: u_map allocation failed o bin/48183 marcel [patch] gdb on a corefile from a threaded process can' o bin/48271 bug with find's -delete option s kern/48279 [bktr] Brooktre878 may cause freeze o conf/48325 /etc/periodic/security/100.chksetuid doesn't work with o kern/48393 mckusick [ufs] ufs2 snapshot code bugs o kern/48425 Tape drive EOT handling problems in 4.7 o misc/48461 murray $EDITOR on the fixit CD is wrong. o bin/48730 sos burncd does not handle signals and causes damage o kern/48741 darrenr ipnat corrupts packets on gre interface with rul o kern/48758 [modules] kldunload if_{nic} can cause kernel panic s threa/48856 threads Setting SIGCHLD to SIG_IGN still leaves zombies under o bin/48865 Dumps made on FreeBSD 5.0-RELEASE are unrecognizable o o conf/48881 rc [PATCH] The influence of /etc/start_ifname on /etc/rc. o kern/48996 Fatal trap 12 with incoming traffic from WindowsXP via o kern/49040 problem mounting root; ffs_mountroot can't find rootvp s threa/49087 threads Signals lost in programs linked with libc_r o kern/50574 mbr [dc] dc driver incorrectly detects ADMtek chip model s kern/50827 [kernel] [patch] new feature: add sane record locking s kern/50856 [mfs] panic if mounting /tmp as mfs with soft-updates p conf/51085 ache FreeBSD is missing ja_JP.eucJP locale. o www/51135 www Problems with the mailing-lists search interface o bin/51171 /bin/sh has only 32-bit arithmetics that is not enough o kern/51274 ipfw [ipfw] [patch] ipfw2 create dynamic rules with parent f kern/51341 remko [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o kern/51583 [nullfs] [patch] allow to work with devices and socket o bin/51628 [nis] ypmatch doesn't match keys in legacy NIS servers o kern/51685 [hang] Unbounded inode allocation causes kernel to loc o kern/51742 [panic] ffs_vfree: freeing free inode o bin/51827 getaddrinfo() is broken with numeric service o kern/51982 [sio] sio1: interrupt-level buffer overflows o bin/52343 NIS login problem on the server o kern/52445 [mfs] panic when mounting floppy on MFS filesystem o kern/52638 scsi [panic] SCSI U320 on SMP server won't run faster than o bin/52743 /etc/ppp/ppp.linkup instability issues o kern/52818 vm_fault() calls vput() on shared-locked vnode o kern/52936 [nfs] Huge writes to nfs exported FAT filesystems caus o kern/52943 [hang] reproducable system stuck just brefore multiuse o kern/53137 [panic] background fscking causing ffs_valloc panic. o bin/53434 pw disallow a password including space. o kern/53447 alfred [kernel] poll(2) semantics differ from susV3/POSIX o bin/53606 roberto ntpdate seems to hang system o bin/53839 [sysinstall] disklabel editor fails on post-install co f kern/53920 andre [bge] sluggish TCP connection o kern/53940 imp Some WiFi devices cannot connect to hostap access poin o bin/54097 Non-local yppasswd -d broken in 5.1-CURRENT o kern/54189 [dns] resolver should resolve hostnames with underscor o kern/54309 silby TCP Packet of 64K-1 crashes FreeBSD4.8 o bin/54401 [patch] pppstats prints 0 for absolute values in range o stand/54410 standards one-true-awk not POSIX compliant (no extended REs) o bin/54446 pkg_delete doesn't honour symlinks, portupgrades leads o java/54463 glewis Apparent bug in jdk13 o i386/54756 acpi ACPI suspend/resume problem on CF-W2 laptop p kern/55018 andre [digi] [patch] Digiboard PC/Xem fails to initialize wh o kern/55175 alfred LOR in select and poll f gnu/55278 Externs on implicit declarations o kern/55297 [vfs] [panic] kernel panic after running XFree86 o bin/55346 /bin/sh eats memory and CPU infinitely o bin/55349 mbr amd(8) mixes up symlinks in its virtual filesystem. o kern/55379 [panic] kernel crashes randomly o bin/55448 dbm_nextkey() misbehaves after dbm_store() in dbm(3) o bin/55457 marcel GDB gets confused debugging libc_r threaded processes. a kern/55542 andre [de] [patch] discard oversize frame (ether type 800 fl f usb/55555 usb [ums] system freezes with access to /dev/ums0 f i386/55603 remko [mly] unable to reboot when system runs from Mylex A35 o kern/55617 [smbfs] Accessing an nsmb-mounted drive via a smb expo o i386/55661 acpi ACPI suspend/resume problem on ARMADA M700 o kern/55822 acpi No ACPI power off with SMP kernel o bin/55829 __stderrp not defined in libc.so.3 (compat for FreeBSD o bin/55956 passwd chat script not backward compatible o bin/55965 sshd: problems with HostBasedAuthentication and NSS co o kern/55975 thomas ATAPICAM- READ_6(0x08) fails for ATAPI tape drive o kern/56024 acpi ACPI suspend drains battery while in S3 o kern/56031 luigi [ipfw] ipfw hangs on every invocation f kern/56233 gnn IPsec tunnel (ESP) over IPv6: MTU computation is wrong o kern/56339 select() call (poll() too) hangs, yet call works perfe s kern/56461 [rpc] FreeBSD client rpc.lockd incompatible with Linux p bin/56500 roam rpc.lockd needs to use reserved ports p bin/56606 [2TB] df cannot handle 2TB NFS volumes o kern/56873 [boot] system hangs on boot at Buslogic device f i386/57043 remko [ar] [hang] ar driver with 2 port PCI card locks up wh o usb/57085 sanpei [umass] umass0 problems, with Sony Vio/USB memory stic f kern/57195 [mfs] mount_mfs -i 512 => panic? o kern/57206 [panic] softdep_lock locks against itself, causing ker o bin/57255 usb usbd and multi-function devices o kern/57350 [panic] using old monocrome printer port (IO_LPT3 / 0x s kern/57398 scsi [mly] Current fails to install on mly(4) based RAID di o kern/57453 [kue] [patch] if_kue hangs boot after warm boot if fir o bin/57456 Telnet encryption gets out of sync o bin/57466 dialog(1) does not read stdin, breaks subversion port a kern/57479 bms FreeBSD Not in compliance with RFC 1122, Cannot have m o bin/57554 sh(1) incorrect handling of quoted parameter expansion o kern/57603 [bktr] bktr driver: freeze on SMP machine o kern/57631 jhb [agp] [patch] boot failing for ALi chipsets o bin/57673 Odd/dangerous disklabel(8) behaviour on 5.0 and 5.1-CU o kern/57722 [kernel] [patch] uidinfo list corruption p kern/57760 gnn IPsec policy on inbound trafic is not enforced (allows o kern/57790 cdparanoia triggers kernel panic o kern/57832 scottl [ips] softdep_deallocate_dependencies: dangling deps o kern/58154 mckusick Snapshots prevent disk sync on shutdown o kern/58169 panic: vnode_pager_getpages: unexpected missing page: o kern/58581 [hang] System call gettimeofday hang 5.x triggered by o kern/58687 deischen [libc] [patch] gethostbyname(3) leaks kqueue file desc o kern/58787 [panic] pmap_enter: attemped pmap_enter on 4MB page o kern/58831 panic: vinvalbuf: flush failed o kern/58930 [panic] Page fault when unplugging Alcatel Speedtouch o kern/58941 rwatson acl under ufs2 doesn't handle disk corruption, page fa o bin/58951 [sysinstall] some problems with 4.9-RELEASE installati f alpha/59116 alpha [ntfs] mount_ntfs of a Windows 2000-formatted fs cause o kern/59183 imp [wi] wi problems with wi_cmd o kern/59185 [panic] 4.9-RELEASE kernel panic (page fault) in ffs_s o kern/59203 imp Panic with wi and newcard a kern/59211 [nwfs] System crashes when moving files from NWFS moun o kern/59296 Serial Line Noise Causes System Hang in Loader on Rebo f kern/59594 [hang] I/O operations freeze system when perform file s bin/59638 des passwd(1) does not use PAM to change the password f i386/59701 remko System hungup, after resume from suspend. o bin/59777 ftpd(8)/FreeBSD 5: potential username enumeration vuln o kern/59912 mremap() implementation lacking o kern/59945 [nullfs] [patch] nullfs bug: reboot after panic: null_ o gnu/59971 peter assertion "strncmp (repository, current_parsed_root->d s ports/60083 java Unsafe use of getaddrinfo in jvm 1.4.2-p5 o kern/60154 [ipfw] ipfw core (crash) f i386/60226 remko [ichsmb] [patch] ichsmb driver doesn't detects SMB bus o kern/60235 phk some /dev-entries missing for newly auto-added disks o bin/60349 scottl [sysinstall] 5.2-RC1 cannot do NFS installation o bin/60385 vmstat/iostat/top all fail to report CPU usage (still o kern/60598 scsi wire down of scsi devices conflicts with config o kern/60641 scsi [sym] Sporadic SCSI bus resets with 53C810 under load p docs/60679 trhodes [patch] pthread(3): pthreads documentation does not de f kern/60685 Intel 82559 NICs don't work in 4.9 o kern/61129 thomas atapicam / UDMA cdrom loop o bin/61152 [sysinstall] installer refuses to mount USB-floppy or s kern/61165 scsi [panic] kernel page fault after calling cam_send_ccb o bin/61355 login(1) does not restore terminal ownership on exit f kern/61358 phk boot freezes while ATA GEOM slice detection on latest o kern/61390 [hang] Machine freeze when creating gif interface o kern/61404 andre RFC1323 timestamps with HZ > 1000 o bin/61498 obrien [patch] Please MFC flex patch for gcc 3.x o kern/61544 ip6fw breakage on (at least) sparc64 o bin/61587 [sysinstall] [patch] installation problem, disklabel c o docs/61605 doc [feature request] Improve documentation for i386 disk o bin/61658 [sysinstall] 5.2R error "Add of package qt-3.2.1 abort o kern/61669 [twe] writing to 3ware escalade spends 90% of cpu in s o kern/61686 FreeBSD 5.2-RELEASE crashes when ACPI is disabled f bin/61701 Segmentation fault on OPIE when sequence number=-1 o bin/61716 mckusick newfs: code and manpage are out of sync o kern/61733 imp panic: resource_list_release: resource entry is not bu o kern/61746 [boot] system locks up on boot if both apic option and p i386/61852 alc i386 pmap SMP race condition can cause lost page modif o bin/61890 [sysinstall] fdisk(8) uses incorrect calculations for o bin/61937 [sysinstall] cannot install 5.2-REL via serial console o alpha/61940 alpha Can't disklabel new disk from FreeBSD/alpha 5.2-RELEAS o kern/61960 sos [ata] [patch] BigDrive support for PC-98 architecture o alpha/61973 alpha Machine Check on boot-up of AlphaServer 2100A RM o bin/62058 burncd doesn't work with Creative RW8438E o usb/62088 usb [usb] Logitech Cordless/Optical Mouse not working o kern/62091 [hang] Random Lockups on Boot (Timecounter?) [SMP, 5.2 o kern/62216 perl syswrite not writing the buffer under (heavy) dis a kern/62278 iedowse [nfs] NFS server may not set eof flag when reading las o kern/62284 panic: GENERIC panics on FreeBSD 5.X immediately after o amd64/62295 obrien ipsec failure on 5.2.1-RC amd64 o usb/62309 usb [ugen] [panic] panic: ugen(4) driver o bin/62367 [sysinstall] 5.2.1-RC installation problems o kern/62374 darrenr panic: free: multiple frees o bin/62375 [sysinstall] sysinstall core dump o conf/62417 luigi diskless op script failed o kern/62468 panic: system crashes when serial getty enabled and se o amd64/62753 obrien [txp] [panic] txp(4) panics on amd4 o kern/62762 trhodes [msdosfs] Fsync for msdos fs does not sync entries o kern/62824 [panic] softdep_setup_inomapdep: found inode [5.2-CURR o bin/62833 [sysinstall] can't install: integer divide fault o kern/62864 cognet Machine not reboot. a kern/62906 peadar [agp] [patch] AGP misconfigures i845G chipset, causing o gnu/62937 Compilation of base src Perl with static csh dependenc o kern/63040 panic: kernel panic (sf_buff_alloc) o kern/63204 multimedia [sound] /dev/mixer broken with ESS Maestro-2E (still o o kern/63343 [boot] manual root filesystem specification failed wit o kern/63360 [panic] page fault in ath kernel module if_ath on 5.2- o bin/63391 Burncd DAO fails on some CD recorders o kern/63431 [rtc] motherboard going to suspend mode stops system c o bin/63489 top, finger segfault when using NIS groups to restrict o bin/63535 getpwent segfaults when NIS groups used by top, finger o kern/63557 thomas ATAPICAM broken in 5.2-CURRENT (REQUEST_SENSE ILLEGAL o usb/63621 usb [usb] USB MemoryStick Reader stalls/crashes system o kern/63629 thomas mounting atapicam volume through cd0c cause data corru p kern/63662 [nullfs] using read-only NULLFS leads to panic. gdb ou o i386/64002 acpi acpi problem o kern/64196 [kernel] [patch] remove the arbitrary MAXSHELLCMDLEN s kern/64313 threads FreeBSD (OpenBSD) pthread implicit set/unset O_NONBLOC o kern/64406 panic: ffs_clusteralloc: map mismatch p kern/64573 alc mmap with PROT_NONE, but still could be read o bin/64738 sendmail(8): SO_REUSEADDR doesn't seem to work with AF a kern/64816 peadar [nfs] mmap and/or ftruncate does not work correctly on o kern/64826 [panic] with IPv6 on 4-STABLE after FreeBSD-SA-04:04.t o kern/64903 [modules] panic: multiple kldload of a module compiled o bin/64990 /bin/sh unable to change directory but current dir gro o java/65054 glewis Diablo 1.3.1 JVM runs out of file descriptors at 1021 f kern/65212 remko [hang] running startx hangs the system (acpi-related) o bin/65223 fsck of 5.2 makes UFS1 inconsistent for 4.9 f kern/65300 [udf] [patch] Can't use sendfile(2) to download files o bin/65546 [sysinstall] 4.10-BETA fails to install from NFS o kern/65616 gnn IPSEC can't detunnel GRE packets after real ESP encryp o gnu/65641 Use of llabs() in C++ fails as ambiguous o i386/65648 imp cardbus("TI1131") won't work on Dell Latitude CP 233XT o bin/65774 [sysinstall] cannot run repair disk when booted from U s kern/65817 [sk] [panic] kernel panic with GENERIC 5.2.1 and SysKo o gnu/65869 cvs generates invalid cvs command lines o kern/65901 [smbfs] smbfs fails fsx write/truncate-down/truncate-u o kern/65920 [nwfs] Mounted Netware filesystem behaves strange o kern/66029 [crypto] [patch] MD5 alignment problem on a TriMedia p o bin/66036 restore crashes (reproducable, core file and backtrace o bin/66103 macro HISADDR is not sticky in filters o java/66151 java JBuilderX (sun jvm 1.4.1 builtin) crashes on 4.9 works o kern/66162 phk gbde destroy error o kern/66270 mckusick [hang] dump causes machine freeze o kern/66290 imp pccard initialization fails with "bad Vcc request" o kern/66348 rik [cx] FR mode of cx (Cronyx Sigma) does not work for 4. o bin/66350 [sysinstall] sysinstall creates a partition of subtype f i386/66368 remko [install] 4.9 install fails with MODE_SENSE_BIG timeou o kern/66611 [nfs] Crashing NFS servers (with workaround) o conf/66791 Old dev.db leads to the wrong program behaviour (4.x s o bin/66830 chsh/ypchsh do not change user information over NIS o kern/66848 imp cardbus power support breaks cardbus support on HP Omn o kern/66876 [fdc] [patch] Cannot extract tar(1) multi-volume archi o bin/66950 [sysinstall] upgrading to 4.10-RC3: package conflicts o kern/66960 [fdc] [patch] filesystems not unmounted during reboot o bin/66984 [2TB] [patch] teach sysinstall about larger disks o i386/67050 imp CardBus (PCI ?) resource allocation problem (still on o i386/67273 acpi [hang] system hangs with acpi and Xfree o kern/67301 panic: uftdi, RTS and system panic f kern/67326 remko [msdosfs] crash after attempt to mount write protected o conf/67328 Usermode PPP hangs on boot when NIS configured p kern/67546 [2TB] Coredumps > 2Gb do not work (on 64bits platforms s alpha/67626 alpha X crashes an alpha machine, resulting reboot f i386/67688 remko 5.2.1 initial floppy boot fails with Fatal trap 9 o kern/67794 panic: ffs panic during high filesystem activity o kern/67919 imagemagicks convert image to movie conversion kills 5 f i386/67955 remko [panic] -current on T40p kernel trap 12 in boot if cdr o bin/67995 [patch] morse(6) plays beeps 10 times faster than it s p kern/68013 jeff tp->snd_wl1 & snd_wl2 are not updated in the header pr o bin/68047 [sysinstall] unattended install of FreeBSD 5.2.1 does o kern/68076 [modules] Page fault when the sequence "kldunload ucom f i386/68149 remko FreeBSD 4.10 installation blocking on ASUS Pundit o kern/68324 panic: Duplicate free of item 0xc3121908 from zone 0xc o kern/68325 panic: _mtx_lock_sleep: recursed on non-recursive mute f i386/68438 remko bootloader cannot read from icp vortex arrays o kern/68442 [panic] acquiring duplicate lock of same type: "sleepq o kern/68576 rwatson UFS2 snapshot files can be mounted read-write and writ o bin/68727 marcel gdb coredumps after recent CURRENT upgrade o kern/68889 rwatson [panic] m_copym, length > size of mbuf chain f i386/68899 remko Problems reading and writing DVD-RAM discs o kern/68978 [crash] firewire crashes with failing hard disk, loose o kern/68987 panic: kmem_malloc(163840): kmem_map too small o usb/69006 usb [patch] Apple Cinema Display hangs USB ports o kern/69019 [wi] wlan stalling after 2-3 hrs of moderate traffic f i386/69049 remko [install] error "anic: page fault" o kern/69066 panic: nmdm page fault when slattach on a null modem d o kern/69092 [rl] kernel: rl0: watchdog timeout o kern/69100 [nwfs] panic: 5.2.1p9 kernel panics when mounting nwfs o kern/69141 panic: softdep_lock [5.2.1-RELEASE, SMP] o kern/69158 [an] Cisco MPI350 wireless card problems related to ir o i386/69218 simokawa [boot] failure: 4.10-BETA and later do not boot on Asu o kern/69612 [panic] 4.10-STABLE crashes everyday: page not present o kern/69629 [panic] Assertion td->td_turnstile o amd64/69704 amd64 ext2/ext3 unstable in amd64 o amd64/69707 amd64 IPC32 dont work OK in amd64 FreeBSD o bin/69723 sysinstall: allow to continue from package install fai o bin/69942 [sysinstall] sysinstall changes /etc/rc.conf after ins f i386/70028 remko [umass] umass issue in the boot prcess on SONY Laptop o i386/70330 marcel Re-Open 33262? - gdb does not handle pending signals p o kern/70360 [twe] Random lock-ups with 3ware RAID 5 under FreeBSD o i386/70386 i386 IBM x345 Freezes Randomly o i386/70482 i386 Array adapter problems o i386/70525 i386 [boot] boot0cfg: -o packet not effective o i386/70531 i386 [boot0] [patch] boot0 hides Lilo in extended slice o kern/70587 [vm] [patch] NULL pointer dereference in vm_pageout_sc o bin/70600 fsck(8) throws files away when it can't grow lost+foun o kern/70649 [rtc] system clock slows down when heavily loaded o kern/70663 rwatson [ipx] Freebsd 4.10 ncplogin + Netware 4.11 = nwerr 89f o i386/70747 i386 ddos attack causes box to crash on kernel 5.2.1 o kern/70753 [boot] Device for firewire hard disk not created in ti o bin/70803 truss wedges if child exits at the wrong moment o kern/70809 [panic] ufs_direnter: compact1 o i386/70925 i386 [hang] 5.3Beta1 acpi-pci driver failure, ata disk atta o bin/70974 [rpc] SIGSEGV in rpc.lockd o threa/70975 threads unexpected and unreliable behaviour when using SYSV se o i386/71000 i386 [boot] BTX halted when booting from CD on a machine wi o i386/71035 i386 [kbd] SMP boot hangs in bus_space_write_1 during keybo o i386/71048 i386 [hang] ASUS TUV4X hangs when SONY CRX140E attached f i386/71087 remko [hang] 5.3-beta(2-5) fail to install on eServer325 wit f i386/71144 remko FBSD5.3b2 doesn't boot on a Compaq Armada 7300 o bin/71147 sshd(8) will allow to log into a locked account o usb/71155 usb [usb] misbehaving usb-printer hangs processes, causes f i386/71158 remko [pccbb] pci bus number 3 devices are missing on laptop o gnu/71160 marcel gdb gets confused about active frame o kern/71198 Lack of PUC device in GENERIC kernel causes interupt l o bin/71290 [PATCH] passwd cannot change passwords other than NIS/ o kern/71310 jeff [panic] kernel crash on rtprio pid priority change o bin/71323 [sysinstall] FTP download from floppy boot crashes wit f kern/71388 rwatson [panic] due mac_policy_list_conditional_busy called be o kern/71391 [nfs] [panic] md via NFS file + mount -t ntfs: panic: o kern/71402 rwatson panic with lomac o kern/71421 jeff [sched_ule] [hang] filesystem operations lockups f i386/71428 remko [ata] [dma] DMA does not work on VIA 82C586 [4.10] o kern/71478 [nis] NIS/NFS: res_mkquery failed [4.2] o bin/71602 [PATCH] uninitialized "len" used instead of "slen" wit o bin/71603 "systat -v" enters infinite loop o amd64/71644 amd64 [panic] amd64 5.3-BETA4 crash when heavy load o sparc/71729 sparc64 printf in kernel thread causes panic on SPARC o kern/71771 [amr] Hang during heavy load with amr raid controller a bin/71786 [patch] adduser breaks if /sbin/nologin is included in f kern/71791 [panic] Fatal trap 12: page fault while in kernel mode o kern/71792 [vm] [patch] Wrong/missing 'goto' target label in cont o kern/71827 jeff [sched_ule] [panic] Running java applications causes k o kern/72007 [panic] clist reservation botch [4.10] o kern/72022 packet loss on loopback interface [5.3-BETA5] s kern/72041 [cam] [hang] Deadlock when disk is destroyed while use f kern/72130 remko Promise Fastrack sx4000 boot problem f java/72151 java JVM crash on 5.2.1-R o kern/72208 panic: bio_completed can't be greater than bio_length o kern/72210 andre ipnat problem with IP Fastforward enabled o kern/72305 boot hangs after discovering disks when acpi is enable o kern/72424 panic: ffs_blkfree: freeing free block in ffs/ffs_allo o threa/72429 threads threads blocked in stdio (fgets, etc) are not cancella o kern/72490 Panic mounting cdrom with RWCombo Abort trap (core dumped) o kern/73538 [bge] problem with the Broadcom BCM5788 Gigabit Ethern o bin/73559 sos burncd(8) failure closing/fixating DVD-+R/CD-R/CD-RW N o bin/73617 [sysinstall] fdisk editor unmarks active partition o amd64/73650 amd64 5.3-release panics on boot o i386/73666 i386 5.3 UDMA error WD1600 can't partition drive o i386/73706 jhb ATA_IDENTIFY timed out under FreeBSD 5.3 o kern/73740 [nfs] [panic] 5-3-R#3 panic when accessing nfs exporte o kern/73744 printing via cups causes "Interrupt storm" warning, th f kern/73830 le kernel panic when raid5 member disk is removed o kern/73850 thomas atapicam and Zip drive causes reboots upon write to /d o kern/73871 [wi] Intersil Prism wireless wi0 locks up, "busy bit w o kern/73910 ipfw [ipfw] serious bug on forwarding of packets after NAT o i386/73934 i386 fdisk sees disk as empty f kern/73987 multimedia [sound] Nforce2 MB sound problem o i386/74008 i386 IBM eServer x225 cannot boot any v5.x - endless dump s o kern/74012 FreeBSD 4.10 stops responding while playing a URL o i386/74044 i386 ServerWorks OSB4 SMBus interface does not detected on o kern/74104 ipfw [ipfw] ipfw2/1 conflict not detected or reported, manp p kern/74105 rwatson IPX protocol support doesn't work o i386/74124 i386 ata0 failure on HP(Vectra) VL6/350 [introduced in 5.3] o bin/74127 [patch] patch(1) may misapply hunks with too little co o kern/74230 periodic Fatal trap 12: page fault while in kernel mod o kern/74238 firewire [firewire] fw_rcv: unknown response; firewire ad-hoc w s kern/74242 rwatson Write to fifo with no reader fails in 6.0 current o kern/74272 Interrupt storm detected on "irc10:atapci1"; and syste o kern/74309 xterm -C and rxvt -C do not grab /dev/console o kern/74319 [smp] system reboots after few hours (5.3) a kern/74432 Yamaha DS-1E produces "kernel: Danger! pcm0:play:2 buf o kern/74495 [wi] wi(4) wlan driver device freeze (5.3-STABLE) o gnu/74531 gcc doesn't link correctly if -pg specified o i386/74601 i386 Cardbus fails after busdma_machdep.c update o conf/74610 Hostname resolution failure causes firewall rules to s o kern/74627 scsi [ahc] [hang] Adaptec 2940U2W Can't boot 5.3 s kern/74708 [umapfs] [panic] UMAPFS kernel panic o amd64/74747 amd64 System panic on shutdown when process will not die o usb/74771 usb [umass] mounting write-protected umass device as read/ o kern/74778 ipsec passthrough / nat-t crash freebsd firewall o bin/74779 Background-fsck checks one filesystem twice and omits o bin/74801 cpio -p --sparse creates truncated files o kern/74809 [modules] [panic] smbfs panic if multiply mounted o i386/74816 i386 OS crash with kernel trap 12 in different processes o kern/74852 page fault: after a few days init causes page fault o kern/74877 Panic after halting the system - vrele: negative ref c f kern/74923 rwatson [ipx] [panic] kernel panic with ncplist on 5.3-release o kern/74976 [vfs] [panic] 5.3-STABLE: vn_finished_write triggered o kern/75099 OpenOffice makes the system freeze o kern/75122 andre [netinet] [patch] Incorrect inflight bandwidth calcula o kern/75157 Cannot print to /dev/lpt0 with HP Laserjet 1005 : Devi s kern/75233 [fdc] breaking fdformat /dev/fd0 resets device permiss o kern/75249 [boot] 5.x install CD hangs on VirtualPC Version 7 (Ma o bin/75258 [patch] dd(1) has not async signal safe interrupt hand o threa/75273 threads FBSD 5.3 libpthread (KSE) bug o kern/75368 [panic] initiate_write_inodeblock_ufs2() panic o threa/75374 threads pthread_kill() ignores SA_SIGINFO flag o kern/75407 [an] an(4): no carrier after short time o kern/75510 panic: kmem_malloc(4096): kmem_map too small p kern/75542 rwatson Inconsistent naming of a tunable and weird code in sys o usb/75705 usb [panic] da0 attach / Optio S4 (with backtrace) o docs/75711 keramida opendir(3) missing ERRORS section o kern/75733 harti ATM driver problem. o kern/75755 kmem_malloc(45056): kmem_map too small: 335540224 tota o kern/75780 [panic] panic: vm_page_free: freeing wired page (with o usb/75797 usb 5.3-STABLE(2005 1/4) detect USB headset, But can not f o kern/75823 [wi] wi0 interface self-destructs after a couple hours o kern/75875 remko [burncd]: acd0: FAILURE - READ_BIG ILLEGAL REQUEST asc f i386/75887 i386 [pcvt] with vt0.disabled=0 and PCVT in kernel video/ke o bin/75931 Got "bus error" on running certain apps o kern/75978 Linksys WPC11 ver 3 wifi card locks up 5.2.1, worked p bin/75980 expand(1) breaks tab columns in Japanese text o kern/76023 [panic] xmms causes panic f kern/76080 [ata] [panic] "bio_completed .. greater than bio_lengt o kern/76126 [nfs] [patch] 4.11 client will send a NFS request to r o bin/76134 fetch(1) doesn't like 401 errors with -A o amd64/76136 amd64 system halts before reboot f usb/76204 usb panic while using usb attached modem f kern/76207 [xl] [patch] Null pointer dereference in xl_detach() o usb/76395 usb USB printer does not work, usbdevs says "addr 0 should o kern/76398 [libc] stdio can lose data in the presence of signals o i386/76487 i386 Compiled GENERIC kernel (and non-GENERIC) do not boot. o kern/76504 silby Keep-alives doesn't work on half-closed sockets. o kern/76525 [fifo] select() hangs on EOF from named pipe (FIFO) o kern/76538 geom [gbde] nfs-write on gbde partition stalls and continue o bin/76578 uniq truncates long lines to LINE_MAX o bin/76588 OpenSSL fails on loading keyfiles from BIO resources o java/76631 java any port linux-*-jdk12 will core dump if using linux_b o kern/76663 panic with FAST_IPSEC and IPv6 o i386/76666 i386 Booting and Sound are mutually exclusive on Toshiba la o kern/76672 Problem with cardbus and vlans s threa/76694 threads fork cause hang in dup()/close() function in child (-l o i386/76737 i386 CardBus problem (cbb1: Could not map register memory) o kern/76848 [amr] amr hangs o kern/76893 [cam] [patch] Fatal divide in booting processes with B o i386/76925 i386 standard pci-ide, install - "NO DISKS FOUND" :) f kern/76937 remko [kse]: Page fault while in kernel mode under heavy dis o i386/76944 i386 [busdma] [patch] i386 bus_dmamap_create() bug o i386/76948 i386 [rl] Slow network with rl0 o kern/77026 umount-ing non-existent device panics system o amd64/77101 obrien feature request: please include ULi M1689 LAN, SATA, a o kern/77181 [newfs] [patch] newfs -g largevalue, mkdir, panic o usb/77184 usb kernel panic on USB device disconnect s kern/77195 darrenr [ipfilter] [patch] ipfilter ioctl SIOCGNATL does not m o kern/77289 system hangs while trying to unmount previously remove o usb/77294 usb ucom + ulpcom panic o i386/77335 i386 Can not initial Ethernet Broadcom UDI PXE-2.1 on IBM o kern/77337 Samba3+FAT32->Reboot o kern/77432 cel [nfs] [patch] It is not possible to load nfs4client.ko o i386/77443 i386 [fdc] can't access floppy -- regression on 5.3 o bin/77455 natd(8): fatal trap 19 in natd o kern/77493 [pipe] freebsd 5.3 + bash process substitution fails d o i386/77529 i386 installation of freebsd 5.3 in laptop an to powereger o kern/77537 [smp] [hang] Conditional breakpoints hang on SMP machi o kern/77631 [sis] sis network driver broken in 5.3 o bin/77651 init can loose shutdown related signals o kern/77710 emulation [linux] Linux page fault sigcontext information is wro f kern/77753 remko [burncd]: DVD-writer fails to fixate DVD o usb/77940 usb [patch] [panic] insertion of usb keyboard panics syste o kern/77982 [lnc] [patch] lnc0 can NOT be detected in vmware 4.5.2 o bin/78087 groups program inconsistency o gnu/78161 [patch] typo in gzexe o kern/78179 [vm] [patch] bus_dmamem_alloc() with BUS_DMA_NOWAIT ca o kern/78216 WRITE_DMA UDMA ICRC errors while copying data to a dis f i386/78218 usb [kue] kue not detected on Sony PCG-F370 VAIO o i386/78219 i386 Netgear FA-410TX is incorrectly detected o i386/78339 i386 BTX loader crashes on boot on HP Proliant DL140 o docs/78357 doc getaddrinfo(3)'s AI_ADDRCONFIG not documented o kern/78382 wpaul [ndis] dhclient on ndis0 causes kernel panic o kern/78384 [panic] Reproducible panic with port iplog and -curren o amd64/78406 amd64 [panic]AMD64 w/ SCSI: issue 'rm -r /usr/ports' and sys p kern/78478 rwatson writing to closed socket does not generate SIGPIPE o i386/78517 i386 [ata] WRITE_DMA and READ_DMA timeouts with ATI RX330 c o bin/78570 wicontrol(8): "wicontrol -i wi0 -C" outputs garbage o i386/78657 i386 [xe] [hang] error installing 5.3-RELEASE due to Compaq o conf/78762 ipfw [ipfw] [patch] /etc/rc.d/ipfw should excecute $firewal f kern/78791 [xl] xl(4) input errors and speed problem o kern/78801 mux ping: sendto: No buffer space available o kern/78868 gibbs [scsi] Adaptec 29160 fails with IBM LTO-2 drive if dis o i386/78929 i386 atapicam prevents boot, system hangs o i386/78930 i386 SuperMicro web server with 5.3-RELEASE kernel panics u o kern/78946 [vm] vm_pageout_flush: partially invalid page p kern/78953 [smbfs] [patch] smbfs getdirentries() failure causes C o bin/78964 [sysinstall] can not write labels to hdd on installati o kern/78968 gnn FreeBSD freezes on mbufs exhaustion (network interface o kern/78987 scottl [udf] [patch] udf fs: readdir returns error when it sh o usb/78989 usb please add USB keyboard support to install CD's o kern/79025 [patch] && in /usr/src/etc/Makefile needs to be an or o i386/79073 i386 System panic and hang after creating a large empty fil o i386/79080 acpi acpi thermal changes freezes HP nx6110 o i386/79081 acpi ACPI suspend/resume not working on HP nx6110 o usb/79140 usb WD Firewire/USB Combo hangs under load on USB interfac o kern/79168 Problems running two firewire disks on one bus o i386/79169 i386 freeze with striped USB Drives under high load o kern/79208 cel [nfs] Deadlock or starvation doing heavy NFS writes wi o kern/79214 cel [nfs] iozone hurts tcp-based NFS f kern/79255 remko [burncd]: Fixating CDRW with burncd(8) hangs system (D o kern/79262 [dc] Adaptec ANA-6922 not fully supported o i386/79268 i386 5.3-RELEASE won't boot on Compaq Armada 4210T (233MMX o usb/79269 usb USB ohci da0 plug/unplug causes crashes and lockups. o usb/79287 usb UHCI hang after interrupt transfer o kern/79295 umount oddity with NFS (fwe) over VIA Fire II card s kern/79323 [wi] authmod setup with ifconfig on dlink wlan card fa o kern/79324 [bge] Broadcom bge chip initialization failure o kern/79336 cel [nfs] NFS client doesn't detect file updates on Novell s kern/79339 [kernel] [patch] Kernel time code sync with improvemen f bin/79376 moused causes random mouse events with a PS/2 mouse on o i386/79409 i386 Coming back from idles make the server reboot o usb/79524 usb printing to Minolta PagePro 1[23]xxW via USB fails wit o kern/79621 [sysinstall] sysinstall does not create a device when o usb/79622 imp USB devices can be freed twice f usb/79656 usb [usb] RHSC interrupts lost o threa/79683 threads svctcp_create() fails if multiple threads call at the o i386/79686 i386 Spurious notebook disk errors from ATA driver. o kern/79700 cel [nfs] suspending nfs file access hangs other access to o kern/79703 [hang] RocketRaid 1820A has problems with atapicam com o usb/79722 usb [usb] wrong alignments in ehci.h o i386/79729 i386 umass, da0 not detected by devfs for o i386/79730 i386 SLIM DRIVE COMBO fails with READ_BIG error on kernel s o i386/79779 i386 If system memory is above 4GB, one parts of memory wil o kern/79783 sos [ata] hw.ata.atapi_dma=1 reduces HDD writing transfer o i386/79784 i386 [bfe] Broadcom BCM4401 : no carrier o i386/79807 i386 Lock Up on Old Acer P1 Comp o i386/79833 i386 BTX crashes on boot when using Promise TX2Plus SATA co o kern/79895 darrenr [ipfilter] 5.4-RC2 breaks ipfilter NAT when using netg o kern/79905 multimedia [sound] sis7018 sound module problem o bin/79910 [sysinstall] Cannot escape from failed port/package in o kern/79912 multimedia [sound] sound broken for 2 VIA chipsets: interrupt sto o kern/79940 [panic] 5.3 with kernel debug causes panic when large o i386/79943 i386 Very High interupt rate on PCM o kern/79988 darrenr [trap] page faults while in kernel mode o kern/80005 [re] re(4) network interface _very_ unpredictable work o usb/80040 usb [hang] Use of sound mixer causes system freeze with ua o bin/80074 [patch] openssl(1): Bug in OpenSSL's sk_insert() cause o kern/80088 [smbfs] Incorrect file time setting on NTFS mounted vi o amd64/80114 amd64 kldload snd_ich causes interrupt storm when ACPI is en o kern/80136 [md] [crash] mdconfig can reboot the system o kern/80166 ups [panic] Debugger SMP race panic f usb/80260 usb Travan USB tape drive fails to write o kern/80266 rwatson [ipx] [patch] IPX routing doesn't work o i386/80268 i386 [crash] System with Transmeta Efficeon cpu crashes whi o kern/80321 ups [kgdb] serial db problems o kern/80322 TCP socket support broken on a busy port o usb/80361 usb mounting of usb-stick fails o usb/80373 usb usb keyboard does not respond o kern/80381 5.4 RC3 can't allocate ps/2 irq, no psm, no mouse. Sa o sparc/80410 sparc64 [netgraph] netgraph is causing crash with mpd on sparc o threa/80435 threads panic on high loads o kern/80469 [smbfs] mount_smbfs causes freebsd to reboot o kern/80572 [bridge] bridge/ipfw works intermittantly. o amd64/80691 amd64 amd64 kernel hangs on load o kern/80694 [kbd] [patch] atkbd looped on Acer TravelMate 2701LC o kern/80714 drop/boot to single user hangs on 5.4-RELEASE with ata o kern/80739 Strange panic (keyboard related?) on 5.4 when dropping o kern/80742 wkoszek [pecoff] [patch] Local DoS in sys/compat/pecoff (+ oth o kern/80784 mux [fxp] fxp gives device timeouts o bin/80798 mount_portal pipe leaves file descriptors open for chi o usb/80829 usb possible panic when loading USB-modules o docs/80843 doc [patch] psm(4): Suggested fix for psm0 / handle driver o kern/80853 [ed] [patch] add support for Compex RL2000/ISA in PnP o usb/80862 usb [patch] USB locking issues: missing some Giant calls o sparc/80890 sparc64 [panic] kmem_malloc(73728): kmem_map too small running o bin/80913 ipfw [patch] /sbin/ipfw2 silently discards MAC addr arg wit s kern/80932 [em] [patch] Degraded performance of em driver o kern/80980 [i386] [patch] problem in "sys/i386/include/bus.h" cau o i386/80989 i386 Cannot install 5.4-RELEASE both in my system and in VM o kern/81000 [apic] Via 8235 sound card worked great with FreeBSD 5 o kern/81019 [re] re(4) RealTek 8169S32 behaves erratically o amd64/81037 amd64 SATA problem o kern/81095 gnn IPsec connection stops working if associated network i p i386/81111 i386 /boot/loader causes reboot due to CFLAGS+= -msse3 o kern/81146 multimedia [sound] Sound isn't working AT ALL for Sis7012 onboard s kern/81147 linimon [em] [patch] em0 reinitialization while adding aliases o kern/81180 [bktr] bktr(4) driver cannot capture both audio and vi o kern/81207 [if_ndis] NDIS wrapper doesn't probe builtin nForce MC o i386/81215 i386 X Freeze on Dell Inspiron 9100 with Radeon Mobility 98 o kern/81232 [panic] vrele: negative ref o i386/81235 i386 /sys/i386/conf/GENERIC needs "options ASR_COMPAT" to p o kern/81301 problems with new "contigmalloc" routine o usb/81308 usb [ugen] [patch] polling a ugen(4) control endpoint caus o i386/81311 i386 [smp] [hang] Athlon MP SMP + 3ware + em0 = deadlock, n o kern/81322 [lnc] [hang] lnc driver causes lockups o kern/81324 darrenr [panic] "Duplicate free of item %p from zone %p(%s)\n" o bin/81389 brian ( usermode ppp ) LCP Negotiation Never Finishes, one o o bin/81390 ( usermode ppp ) LCP Negotiation Never Finishes, one o o kern/81539 The fxtv program freezes systems o amd64/81602 amd64 SATA crashes with parallel pcm access o kern/81606 darrenr ipnat fails to start after upgrade to RELENG_5_4 o kern/81644 [vge] vge(4) does not work properly when loaded as a K o gnu/81689 Unable to connect via SSH using protocol v2 o kern/81770 cel [nfs] Always "NFS append race" at every NFS mount with o kern/81807 [sio] Silo overflows with serial multiport cards o conf/81882 [patch] missing terminal definition for wy120 in termc o kern/81887 scsi [aac] Adaptec SCSI 2130S aac0: GetDeviceProbeInfo comm o i386/81903 i386 Installer hangs on all menu entries on Toshiba A75 mod o bin/81997 ntpd fails to bind to IP-address o i386/82029 i386 Boot Loader installation on MegaRAID controller o kern/82043 multimedia [sound] snd_emu10k1 - mixer does not work. o kern/82064 anholt [drm] DRM not working with SMP f usb/82198 usb Panic on attaching of ONKI N-338 USB MP3 player o kern/82219 [panic] in dumping if watchdog enabled. o kern/82227 [digi] Xem: chained concentrators not recognised a bin/82263 compat 4x broken after last update o kern/82271 pf [pf] cbq scheduler cause bad latency f usb/82272 usb Can not recognize Casio camera EX-Z40 as a umass devic o i386/82285 i386 [race] kernel panic during reboot o usb/82350 usb [usb] null pointer dereference in USB stack o amd64/82425 amd64 [fxp] fxp0: device timeout, fxp interface dies on 5.4/ o kern/82442 [panic] Fatal trap 12 in em driver on 4.11-RC2 contain o kern/82464 [pccard] Sony Ericsson GC75 GPRS MODEM not recognized o kern/82468 Using 64MB tcp send/recv buffers, trafficflow stops, i o kern/82491 [bootp] [patch] bootpd shouldn't ignore requests o kern/82497 [vge] vge(4) on AMD64 only works when loaded late, not o usb/82520 usb Reboot when USL101 connected o amd64/82555 amd64 Kernel Panic - after i connect to my "amd64" from anot o usb/82569 usb [usb] USB mass storage plug/unplug causes system panic o kern/82649 [panic] some request to DVDROM causes kernel panic o stand/82654 standards C99 long double math functions are missing o usb/82660 usb EHCI: I/O stuck in state 'physrd'/panic o bin/82667 burncd doesn't abort on error conditions o kern/82668 ATA timeouts on 5.4-stable o bin/82720 [patch] Incorrect help output from growfs.c and mkfs.c o kern/82755 [panic] during periodic ncvs.sh script at command tar o kern/82805 cel [nfs] [panic] sched_switch ched_4bsd.c:865 / nfs_inact s kern/82806 darrenr ipnat doesn't handle out of order fragments. o kern/82846 phk Kernel crash in 5.4 with SMP,PAE o kern/82881 [netgraph] [panic] ng_fec(4) causes kernel panic after o kern/82919 [bridge] [patch] Bridge configuration update will cras o bin/82975 route change does not parse classfull network as given o amd64/83005 amd64 Memory Occupied during installation of the FreeBSD 5.4 o kern/83098 'vrele: negative ref cnt' in shutdown with root and uf p kern/83107 delphij [libc] [patch] libc uuid_compare() doesn't work with l o ports/83183 olgeni webmin/perl coredumps o bin/83195 nvi loses edited file on network disconnection o kern/83254 [digi] driver can't init Digiboard PC/4e o kern/83319 [panic] system crash on heavy hard disk load. o bin/83336 [patch] libc's parse_ncp() don't check malloc/realloc o bin/83338 [patch] libc's getent() don't check for malloc failure o bin/83340 [patch] setnetgrent() and supporting functions don't c o bin/83344 [patch] Improper handling of malloc failures within li o bin/83347 [patch] improper handling of malloc failures within li o bin/83348 [patch] Improper handling of malloc failures within li o bin/83349 [patch] improper handling o malloc's failures within l o bin/83359 [patch] improper handling of malloc failures within li o bin/83364 [patch] improper handling of malloc failures, bad prin o kern/83368 [ipx] [patch] incorrect handling of malloc failures wi o bin/83369 [patch] incorrect handling of malloc failures within l o kern/83375 mbr Fatal trap 12 cloning a pty o kern/83384 failure of non-essential IDE partitions can panic the o bin/83426 [ PATCH ] improper handling of malloc failures within o kern/83464 geom [geom] [patch] Unhandled malloc failures within libgeo o kern/83499 fragmented packets does not pass through a pipe o usb/83504 usb [usb] SpeedTouch USB stop working on recent current (a o kern/83552 [panic] Fatal trap 19 on ti0 when SMP is used. o bin/83558 kernbb(8): usr.sbin/kernbb doesn't compile, and is dis o usb/83563 usb [panic] Page Fault while detaching Mpman Usb device o i386/83574 i386 installation failure o kern/83586 [if_ndis] [panic] ndis panic with Intel Pro 2100 wirel f kern/83671 Can't get comconsole to work properly on Supermicro X5 o usb/83677 usb [usb] usb controller often not detected (Sun W2100z) o i386/83735 i386 [re] network card (realtek 8139) and sound card (CMI87 o usb/83756 usb Microsoft Intellimouse Explorer 4.0A doesn't work. o kern/83761 [panic] vm-related panic: blst_radix_free: freeing fre o i386/83826 i386 can't install any version on Toshiba Sattelite 2800/S2 o threa/83914 threads [libc] popen() doesn't work in static threaded program o i386/83925 i386 [boot] can't boot Dell Latitude D610 after BIOS update o kern/83930 sam crypto_q_mtx recursion when unloading hifn.ko. o usb/83977 usb [ucom] [panic] ucom1: open bulk out error (addr 2): IN o i386/84008 i386 /dev/X? should be /dev/ad1s* o kern/84015 [agp] [hang] Nforce3-250Gb freezes on FreeBSD-6 beta1 o amd64/84027 obrien if_nve gets stuck o i386/84088 i386 Panic with nforce2 platform on FreeBSD 6.0 beta o kern/84202 [ed] [patch] Holtek HT80232 PCI NIC recognition on Fre o bin/84217 brian "enable proxy" is ignored in ppp.conf p conf/84221 Wrong permissions on /etc/opiekeys o i386/84303 i386 boot sometimes stops at "uhci0: 3.5GB memory used o kern/84584 [re] re(4) spends too much time in interrupt handler ( o kern/84589 [2TB] 5.4-STABLE unresponsive during background fsck 2 o kern/84656 [panic] when kern.maxdsiz is => hw.physmem o bin/84668 [sysinstall] ssh and sysinstall problem o kern/84673 cel [nfs] NFS client problem "Stale NFS file handle" o i386/84717 i386 [hang] 5.4-rel booting locks-up on Supermicro 5013C-MT p kern/84740 tjr [libc] regcomp("\254") fails o kern/84799 [fdc] [patch] can't read beyond track 0 on fdc (IBM th o bin/84816 patch(1) inserts a line in the wrong place o kern/84818 sos atapi cd: hangup with motor switched on any access o amd64/84832 amd64 Installation crashes just at boot AMD64/ Version 5.4 o kern/84861 sam [ipw] [patch] still can't get working ipw(4) with adho o docs/84932 doc new document: printing with an Epson ALC-3000N on Free o usb/84936 usb install - usb keyboard not recognized o i386/84943 i386 "Invalid Partition Table" Intel ICH6 SATA controller ( o kern/84953 kuriyama [nfs] NFS locking issue in RELENG_6/i386/SMP o kern/84954 imp [CARDBUS] cbb alloc res fail (with hw.cardbus.debug=1 o kern/84964 cel [nfs] nfs4 mount doesn't handle NFS4ERR_GRACE o kern/84965 cel [nfs] nfs4 mount generates NFS4ERR_BAD_SEQID o kern/84968 cel [nfs] programs on nfs4 mounts won't execute o kern/85005 Network interrupt after shutdown method has been calle o kern/85042 [smbfs] mount_smbfs: can't get handle to requester (no o i386/85072 i386 [psm] ps/2 Mouse detection failure on compaq chipset p i386/85101 das [libm] nearbyint always returns nan o bin/85115 byacc generates uncompileable file o kern/85123 [iir] Improper serialization in iir_ioctl() allows iir o kern/85137 [pseudofs] [patch] panic due to sleep with held mutex f ports/85155 cy security/tripwire clobbers config files on install o threa/85160 threads [libthr] [patch] libobjc + libpthread/libthr crash pro o kern/85258 mux [fxp] changing promisc mode on nic can lead to kernel o kern/85266 [xe] [patch] xe(4) driver does not recognise Xircom XE o kern/85320 [gre] [patch] possible depletion of kernel stack in ip o kern/85326 [smbfs] [panic] saving a file via samba to an overquot o alpha/85346 alpha PREEMPTION causes unstability in Alpha4000 SMP kernel o amd64/85431 amd64 AMD64 has short but temporary freezes (hangups) on Sun o kern/85434 firewire [fwip] fwip (IP over firewire) doesn't work with polli o kern/85444 IPv6 crash, possibly related to destroying spf interfa o i386/85450 i386 panic: subdisk6 detached (appears to be a sata problem o amd64/85451 amd64 [hang] 6.0-BETA3 lockups on AMD64 (PREEMPTION only) o i386/85454 i386 Panic while booting: No virtual memory for kernel o kern/85464 Cannot unmount file-backed disk imported from NFS or S o kern/85493 imp [ed] [patch] OLDCARD can't probe ed driver o kern/85728 [trap] Crashes on 6.0 when copying data between filesy o ports/85730 danfe nvidia-driver eats the /usr/X11R6/lib/modules/drivers o kern/85751 [devfs] [panic] panic in devfs_setattr() when running o kern/85768 gibbs aic79xx driver timeouts with U160 target (free list co o ia64/85772 ia64 [gpt] gpt (geom_) needs to adopt g_ctl s ports/85779 edwin fmsx 3.0 is unstable (reboting, freezing) o kern/85791 kernel panic, page fault in kernel mode o bin/85796 des pam doesn't work correctly after Upgrade RELENG_4-2005 f kern/85804 [panic] after chown -R from chrooted shell o kern/85809 panic: mutex "ipf state entry" already initialized o bin/85810 nslookup/dig Hang and processes cannot be killed o kern/85813 timeout waiting for read DRQTrying to mount root from o kern/85816 maxproc=1 in login.conf causes kernel panic when loggi p bin/85830 des [patch] pam_exec incorrectly works with vfork() s ports/85850 cperciva portsnap extract silently deletes Makefile.local o i386/85866 i386 [hang] bootloader freezes on Pentium2/3 o kern/85894 cel [nfs] [panic] nfs_timer / nfs_socket.c:1146 panic o ports/85905 perky mod_python3 pthread_attr_destroy failure o kern/85931 panic: "vm_fault: fault on nofault entry" when using m o i386/85938 i386 Install fails, unable to write partitions o i386/85944 i386 FreeBSD restarts after showing "Welcome to FreeBSD" sc s kern/85975 [cam] devfs does not create entries when removable med o kern/85993 [panic] emulators/kqemu panics 6.0-BETA4 o bin/86012 kpasswd(1) fails if one of the KDC are unreachable. o usb/86031 usb need support usb nic rt2500 in my 5.4 STABLE o kern/86055 FreeBSD 6.0 beta4 install panic:bio already on queue o amd64/86080 amd64 [radeon] [hang] radeon DRI causes system hang on amd64 o kern/86103 darrenr [ipfilter] Illegal NAT Traversal in IPFilter o kern/86107 [procfs] [panic] unrhdr has N allocations, NULL derefe o kern/86261 brian 'out of buffer space' after many PPPoE re-dial attempt p kern/86306 yongari [em] [patch] if_em.c locks up while trying to send a h o i386/86325 i386 [install] unable to install FreeBSD on IBM BladeCenter o kern/86330 [ipsec] [panic] panic in ESP code s kern/86361 thompsa [bridge] bridge(4) does not work with VLAN trunks o i386/86380 i386 i386_set_ioperm doesn't take effect immediately o kern/86411 scottl [amr] Very low performance of amr(4) under FreeBSD-6.0 o ports/86421 clement Apache-2.0.54_4 PHP popen hangs o kern/86423 truckman backgroud fsck leaves incorrect free block count o kern/86427 gnn LOR / Deadlock with FASTIPSEC and nat f bin/86456 arp(8) program hangs o amd64/86503 amd64 [atapicam] [panic] k3b crash the system like hardware f kern/86525 FreeBSD 6.0BETA5 hangs after boot up system o kern/86550 csjp [panic] kernel (w/ UFS_EXTATTR* and UFS_ACL) paniced b o i386/86612 i386 SCSI DAT Drive Issue o kern/86619 linux emulator interacts oddly with cp o i386/86651 i386 FAILURE ATA-IDENTIFY o i386/86667 i386 GNOME Battery Applet causing keyboard to lag/drop char o ports/86687 tobez Perl ithreads coredump f kern/86746 cognet watch/snp don't work in 6.0 o kern/86763 [ucom] kernel: ucom0: ucomwritecb: IOERROR o usb/86767 usb [usb] bogus "slice starts beyond end of the disk:..." o kern/86775 system reboot without syncing o i386/86806 i386 Couldn't alloc kernel virtual memory a kern/86848 bms [pf][multicast] destroying active syncdev leads to pan o i386/86880 i386 [hang] 6.0 hangs or reboots whilst 5.4 is stable (ASUS o i386/86920 i386 [ndis] ifconfig: SIOCS80211: Invalid argument (regress o kern/86944 cel [nfs] [patch] When I use FreeBSD with NFS client, clos o kern/87010 pjd Reading kernel memory & pagefault under non-root o i386/87085 i386 Will not install on Microtel system s kern/87094 5.4 system with SMP and IPFW crashes under load (mbuf o usb/87099 usb panic: ohci_add_done: addr 0x000d1bf0 not found o i386/87122 i386 Installer of 6.0-BETA5 can't find HDD partition of Son o i386/87155 i386 [boot] [panic] Can't Alloc Virtual Memory in FreeBSD 6 o amd64/87156 amd64 First Installation: Kernel crashes o kern/87194 [fxp] fxp(4) promiscuous mode seems to corrupt hw-csum o kern/87248 [iwi] Data-corruption while using WEP on if_iwi o kern/87255 [md] [panic] large malloc-backed mfs crashes the syste o amd64/87258 amd64 [smp] [boot] cannot boot with SMP and Areca ARC-1160 r o amd64/87305 amd64 [smp] Dual Opteron / FreeBSD 5 & 6 / powerd results in o amd64/87316 amd64 [vge] "vge0 attach returned 6" on FreeBSD 6.0-RC1 amd6 o amd64/87348 amd64 amd64+smp+startkde always crashing o i386/87356 i386 6.0 RC1 cannot see 250GB drive o i386/87364 scottl [aac] aac controller stopped working between BETA5 and o kern/87368 trhodes [msdosfs] fat32 is very slow o ports/87397 edwin incorrect use of PAPERSIZE make variable in some ports o ports/87404 nork Adobe Reader no longer works with www/linuxpluginwrapp o kern/87413 [iwi] 6.0-RC1: "ifconfig iwi0 mode 11g up" freezes sys o kern/87421 [netgraph] [panic]: ng_ether + ng_eiface + if_bridge o amd64/87472 amd64 I downloaded 5.4 and went to install it, but it keeps o kern/87506 [vr] [patch] Fix alias support on vr interfaces o kern/87521 darrenr [ipfilter] [panic] using ipfilter "auth" keyword leads o kern/87544 geom [gbde] mmaping large files on a gbde filesystem deadlo o usb/87565 usb [PATCH] Support for Vodaphone 3G/UMTS cards o i386/87576 i386 no installation on Acer aspire 1304xc laptop o kern/87586 [diskless] [panic] Unable to use networked swap in 6.0 f kern/87596 [panic] OS crash on a Firefox link click (FreeBSD 6.0- o i386/87630 i386 [ndis] No match for NdisIMGetCurrentPacketStack o ports/87631 sobomax zaptel modules loading crashes FreeBSD 6.0RC1 a kern/87658 IO::AIO test suite loops infinitely on 5.4-RELEASE-p5 o amd64/87689 amd64 [powerd] [hang] powerd hangs SMP Opteron 244 5-STABLE o kern/87727 [panic] 6.0-RC1 coredumps o bin/87729 phk most calls to malloc(3) generate warnings in valgrind o kern/87758 [ath] [hang] Reboot problem with atheros wireless card f kern/87791 Kernel crash when running df o bin/87792 [patch] very bad performance of cp(1) via NFS, possibl f kern/87846 5.4 will NOT work with any other os on disk o kern/87859 [smbfs] System reboot while umount smbfs. o i386/87876 i386 Installation Problems for i368 Compaq R3000 o amd64/87977 amd64 [busdma] [panic] amd64 busdma dflt_lock called (by ata f kern/87986 pjd [geom] [hang] gmirror and quota will hang the OS o ports/87996 nork www/linuxpluginwrapper: Flash 7 kills epiphany browser o kern/88045 jhb [nve] [patch] 6.0rc1: nve0: device timeout (51) o kern/88047 [asr] [panic] 6.0-RC1 reboots with SMP and asr o kern/88082 [ath] [panic] cts protection for ath0 causes panic o gnu/88087 c++filt(1) dumps core on a trivial string "STYLEPROP_" o i386/88124 i386 [hang] X -configure freezes 6.0rc1 o i386/88130 i386 [hang] Machine hangs on dhcp o i386/88139 i386 [i386] feature request: 53C875 Chipset HP 5064-6016 do o kern/88213 [panic] Hang followed by Panic on 6.0-RC1 when install o bin/88215 [patch] syslogd(8) does not pass cleanly parameters to o kern/88266 [smbfs] smbfs does not implement UIO_NOCOPY and sendfi o kern/88268 [bpf] yet another null pointer in bpf code o amd64/88299 amd64 swapcontext fails with errno 0 o i386/88315 i386 [sym] [hang] Symbios/LSI-HBA (SYM83C895) hangs o i386/88459 i386 [panic] Fatal trap 19 (process: idle: cpu0) on HP prol o kern/88472 [panic] panic/reboot in 5.4-STABLE o kern/88487 [panic] softdep_setup_inomapdep: found inode o kern/88496 [iwi] iwi0: fatal error - have to reboot o kern/88518 rodrigc cannot mount root rw at boot o bin/88524 openssl can not work with smtp.gmail.com o kern/88555 [panic] ffs_blkfree: freeing free frag on AMD 64 f amd64/88568 amd64 [panic] 6.0-RELEASE install cd does not boot with usb o i386/88583 i386 i can't install freebsd in server ibm xseries 226(adap o i386/88610 i386 FreeBSD 6.0 bootonly crashes during boot after sis0, d o bin/88655 /bin/tcsh ls-F : Floating exception (core dumped) o kern/88657 [smbfs] windows client hang when browsing a samba shar o kern/88659 ipfw [modules] ipfw and ip6fw do not work properly as modul o i386/88717 i386 freebsd 5.4 boots from lsi 53c1030 only in safe mode o kern/88718 [aac] [timeout] unable to install on RAID 5 and FreeBS o usb/88743 usb [hang] USB makes kernel hang at boot (regression in 6. o i386/88755 i386 [panic] FreeBSD R6.0 on ThinkPad R40 installation rebo o amd64/88790 amd64 kernel panic on first boot (after the FreeBSD installa o i386/88808 i386 V6.0 crashing on install with ICH7 RAID 5 enabled... o kern/88823 [modules] atapicam - kernel trap 12 on loading and unl o i386/88853 i386 [hang] SMP system FreeBSD 6.0-STABLE crashed while tra o bin/88873 [2TB] gpt create fails "bogus map" "unknown error: 0" o kern/88882 [ndis] ndis IF tx/rx and other problems in 6.0-R (regr o kern/88914 [hang] system freeze during file transfer o i386/88929 i386 FreeBSD 6.0 install CD fails to find disks on Sony S-s o kern/88937 [ndis] ifconfig ndis does not show the correct mode o usb/88966 usb kldunload ucom.ko returns "Device busy" error. o usb/89003 usb LaCie Firewire drive not properly supported under 6.0 o kern/89069 [panic] kernel panic when putting load on raid0 array o kern/89070 [panic] NULL m passed to m_copym() in ip_fragment() s ports/89074 x11 Segmentation Violation during "make install" of XFree8 o kern/89102 geom [geom_vfs] [panic] panic when forced unmount FS from u a gnu/89103 gcc segmentation fault errors -- ??memory leak? o kern/89179 Random reboots on Dell PowerEdge 6300 o kern/89207 problem install fresbsd, hard disk geometry error o usb/89218 usb flash disk o i386/89249 i386 HighPoint RocketRAID 1520 (HPT372N) can't write on har o kern/89258 [mouse] synaptic touchpad support "worse" with hw.psm. o kern/89271 [radeon][agp][hang] X.org hangs when heavily using Rad o i386/89288 i386 [acpi] DMA error while booting with acpi enable o ports/89308 apache [patch] www/mod_accounting crash on request_timeout o kern/89310 [panic] kmem_malloc fails with "kmem_map too small" i o i386/89340 i386 [panic] 6.0-STABLE (2005-11-07) panic when mostly idle o i386/89353 i386 [ata] invalid disk controller recognition of intel ICH f kern/89355 [md] mdconfig -t vnode filesystem mount problem o kern/89368 el portatil se queda completamente colgado o i386/89383 i386 [sio] [panic] page fault o ports/89393 openoffice can't install OpenOffice 2.0.0 from port o kern/89396 [reboot] remounting cdrom causes reboot o bin/89410 [PATCH] sh(1) missing \u interpolation and bug/fix in o kern/89447 Serial console speed not working properly (regression) o amd64/89501 amd64 System crashes on install using ftp on local subnet o amd64/89503 amd64 Cant Boot Installation Disk s kern/89528 bz [jail] impossible to kill a jail o kern/89538 [tty] [panic] triggered by "sysctl -a" o amd64/89546 amd64 [geom] GEOM error o amd64/89549 amd64 [amd64] nve timeouts on 6.0-release o amd64/89550 amd64 [amd64] sym0: VTOBUS failed (6.0 Release) o conf/89589 secteam virecover follows hardlinks, possibly exposing sensiti o kern/89633 [sis] [panic] if_sis panic under extended load in 6.0- o kern/89660 le [patch] [panic] due to g_malloc returning null in gv_d o kern/89688 [wi] wi0 cbb remove bug: Danger Will Robinson o kern/89752 [bpf] [patch] bpf_validate() needs to do more checks o kern/89775 [kevent] [hang] kevent hangs on second wait for /dev/d o gnu/89777 send-pr(1) lies about saved reports o kern/89784 phk [patch] [panic] 6.0-RELEASE panics when applying `type o bin/89808 brian malformed Framed-IPv6-Prefix crashes ppp(8) o kern/89864 [vr] [panic] if_vr panic under FreeBSD 6 o kern/89876 [txp] [patch] txp driver doesn't work with latest firm o kern/89878 [pccard] [patch] pccard.c:pccard_safe_quote() unsafe o kern/89880 wpaul [ndis] ndis interface stops rx/tx while large text tra o kern/89918 [iwi] [panic] Kernel panic with if_iwi Intel 2200bg o usb/89954 usb [usb] USB Disk driver race condition? o kern/89966 rodrigc [ntfs] [panic] mounting ntfs causes kernel panic in so o amd64/89968 amd64 [ata] Asus A8N-E MediaShield RAID problem (read-only s f usb/89997 usb [umass] [panic] panic on iPod mini detach f kern/90050 [boot] boot -s drops serial console at sh prompt o i386/90059 i386 panic in 2 mins after power on PC o i386/90065 i386 [wi] System hangs if wireless card wasn't disabled bef o kern/90086 [hang] 5.4p8 on supermicro P8SCT hangs during boot if o ports/90088 clement Buildconflict with apr-svn, libtool and apache22 o bin/90093 geom fdisk(8) incapable of altering in-core geometry f kern/90096 thompsa [net] [patch] arp mixup if carp and bridge used o i386/90134 i386 [irq] IDE and SATA disks not detected on various contr o usb/90162 usb [usb] [patch] Add support for the MS Wireless USB Mous o kern/90206 [ata] [crash] Server reboot after "FAILURE - out of me o kern/90214 multimedia [sound] memory leaks in snd_via8233 o kern/90237 [panic] kernel panic on startx command o threa/90278 threads libthr, ULE and -current produces >100% WCPU with apac o kern/90279 [nge] Appletalk and 0x090007 OUI enet frames can't pas o kern/90282 scsi [sym] SCSI bus resets cause loss of ch device o kern/90330 [linux] linux_compat /dev system freeze problem o kern/90442 [panic] kmem_alloc fails kmem_map: too small, on a RAI o ports/90454 nobutaka libxine 1.1.1 Ports build fails o i386/90519 i386 Resume after suspend results in g_vfs_done() errors an o kern/90582 geom [geom_mirror] [panic] Restore cause panic string (ffs_ o bin/90656 [sysinstall] 6.0-RELEASE (i386) cannot be installed vi o usb/90700 usb Kernel panic on connect/mount/use umass device o bin/90736 [libc] dlfunc can not be defined in libc o ports/90743 glewis jdk-1.5.0p2_3 compilation failure o ports/90777 textproc/xmlto fails to produce most formats o kern/90815 [smbfs] [patch] SMBFS with character conversions somet o kern/90837 [pcm] PCM - ICH6 - device is busy, but old process doe o bin/90846 problem in using cu command on 4.11 freeBSD f conf/90863 dougb [patch] 6.0 boot: name resolution broken for daemon st o kern/90890 [vr] Problems with network: vr0: tx shutdown timeout o bin/90903 [powerd] cpufreq inconsistency / powerd broken o i386/90949 i386 [panic] kernel panic with opera o kern/90973 thompsa [net] [patch] if_bridge does not handle arp for own ad o kern/91023 [sysctl] cpufreq/p4tcc: sysctl: dev.cpu.0.freq: Device o i386/91038 i386 [panic] 6.0-RELEASE on Fujitsu Siemens Amilo Pro v2040 o ports/91067 obrien editors/vim - PATCH to conditionally enable multibyte f kern/91160 mjacob [mpt] system hangs with: mpt0: Request 0xffffffff89b96 o kern/91229 [feature request] PAN (piconet) Bluetooth profile is n o usb/91238 usb USB tape unit fails to write a second tape file to the o kern/91242 trhodes [msdosfs] panic: rofs mod when remounting disk o usb/91263 usb [patch] USB quirk needed for Logitec USB Hard disk LHD o kern/91266 threads [threads] Trying sleep, but thread marked as sleeping o i386/91282 i386 6.0R install CD crashes at eip=0x90db (Promise PDC2026 o usb/91283 usb booting very slow with usb devices connection (regress s kern/91290 sos [ata] ata(4) error on 7.0-CURRENT-20051229-SNAP-PC98 o kern/91311 [aue] aue interface hanging o kern/91339 [psm] mousedriver do not recognize aditional buttons o o kern/91364 [wep] WF-511 RT2500 Card PCI and WEP a ports/91378 lioux net-p2p/mldonkey-sancho does not work with eclipse ver o amd64/91405 amd64 [asr] [panic] Kernel panic caused by asr on 6.0-amd64 o kern/91407 [crypto] [panic] Kernel panic when heavily loading cry o kern/91408 [irq] ata(4) failure: SETFEATURES SET TRANSFER MODE se o kern/91417 [ibcs2] No carba el módulo iBCS2 al arrancar o amd64/91492 amd64 BTX halted o bin/91536 sos burncd(8): burncd -t feature strangeness o usb/91538 usb Unable to print to EPSON CX3500 o www/91539 www FreeBSD web site renders very badly o kern/91568 [ufs] [panic] writing to UFS/softupdates DVD media in o kern/91572 [ufs] [panic] writing to UFS/softupdates DVD media usi o kern/91580 fstat(2) not working properly in 6.0? o bin/91622 dds cp(1) does not update atime of the source file o kern/91723 [ata] IDE corruption on ICH controller, affects the ch o conf/91732 [patch] 800.loginfail: fix log message grep expression o i386/91745 i386 Second processor not detected on Proliant ML530 G2 wit o i386/91748 i386 acpi problem on Acer TravelMare 4652LMi (nvidia panic, f kern/91760 remko [ipsec] FAST_IPSEC stops system under high traffic o bin/91762 vipw(8): it is possible to add a user named ".." o kern/91859 [if_ndis] if_ndis does not work with Asus WL-138 o sparc/91882 sparc64 [mouse] Ultra 10 mouse/keyboard o usb/91906 usb FreeBSD hangs while booting with USB legacy support on p gnu/91909 tjr grep(1): grep -w bug (with some locales) o kern/91910 scottl [aac] aac driver hangs on Dell PE800 with CERC SATA co o kern/91914 [ata] Disk System Crashes - Raid Disk o kern/91919 [pccbb] pccbb does not supply appropriate voltage o kern/91942 [re] [panic] ifconfig causes panic on re(4) o bin/91954 [libpam] [patch] Proposed enhancement for pam_krb5: "o o conf/91959 incorrect cross-install ?(/usr/src/etc/Makefile) o kern/92000 [ntfs] [panic] Panic caused by mounting mounted NTFS p o sparc/92033 sparc64 [dc] dc(4) issues on Ultra10 f kern/92039 remko sysctl -a causes panic o usb/92052 usb usbd causes defunct process with busy file-handle o bin/92058 ssh(1): FreeBSD 6 release Xeon SCSI ssh does not work o kern/92070 imp [pccard] wi0: No irq?! with LG 11Mbps Wireless LAN PCI o ports/92071 x11 Problem with Xorg and SIS630/730 integrated video card o bin/92074 top(1) aborts in redzone o kern/92083 usb [ural] [panic] panic using WPA on ural NIC in 6.0-RELE o kern/92092 [iicbus] [patch] Panic if device with iicbus child is o kern/92104 [panic] kernel panic near readlink syscall o usb/92142 usb SET_ADDR_FAILED and SHORT_XFER errors from usb drivers o kern/92164 scottl [ips] SCSI target mode LOR a ports/92169 x11 Xorg 6.9, Matrox mga, dri broken (MGAGetBOARDHANDLESiz o usb/92171 usb [panic] panic unplugging Vodafone Mobile Connect (UMTS o i386/92193 i386 Can't boot from 6.0 Installation CD: BTX halted (Gigab o ports/92218 openoffice openoffice.org-2 build fails with shlibsign core dump f conf/92252 order the packets in freebsd 6 with ipfw + ipf + pf wi o kern/92272 [ffs] [hang] Filling a filesystem while creating a sna o kern/92279 [dc] Core faults everytime I reboot, possible NIC issu o kern/92292 [md] [hang] Heavy IO on a md-backed filesystem on a sn o i386/92303 i386 [ips] Cannot install FreeBSD 6 on an IBM x226 8488E4Y o amd64/92337 amd64 [em] FreeBSD 6.0 Release Intel Pro 1000 MT em1 no buff o kern/92351 [iwi] page fault in iwi after ACPI resume o kern/92368 LOR in opencrypto/crypto.c o kern/92440 mbr Kernel fault in knote when getty opens a serial port o ports/92478 nork net/DarwinStreamingServer admin does not work o kern/92518 Intense disk activity (large FS newfs and/or many smal o kern/92552 net A serious bug in most network drivers from 5.X to 6.X o kern/92599 BUG: IEEE 802.3 compliance of autonegotiation process o ports/92672 x11 X.org 6.9.0 brak down sync mga_hal dirver on G550'sDVI o kern/92675 [fxp] [patch] fxp(4) unable to recover from occasional o kern/92690 andre [net] slowstart_flightsize ignored in 6-STABLE o kern/92716 [hifn] [hang] hifn driver hangs after a short while wh o kern/92750 [nwfs] Files in mounted Netware filesystem drop in and o kern/92751 [cam] [reboot] 5.4 crashes after camcontrol devlist o kern/92776 glebius [carp] kernel-crash using carp o kern/92786 sos [patch] ATA fixes, write support for LSI v3 RAID f kern/92792 [tcp] kernel crash with high number of TCP connections o kern/92795 [panic] lockmgr panic during sys_exit file cleanup o kern/92798 scsi [ahc] SCSI problem with timeouts o bin/92839 roberto [ntp] [patch] contrib/ntp PARSE buffer overrun o amd64/92889 amd64 [libc] xdr double buffer overflow o kern/92949 pf [pf] PF + ALTQ problems with latency o gnu/92952 tjr grep core dump. f kern/92960 kernel page fault o kern/92966 imp [cardbus] cardbus.ko loading failed o amd64/92991 amd64 FreeBSD(amd64) freezes when primary disk is on a SiI 3 o kern/93019 [ppp] ppp and tunX problems: no traffic after restarti o ports/93071 x11 x11-servers/xorg-server: Resume fails on system with X o kern/93083 [firewire] Detach of Firewire Harddisk not recognied p o bin/93085 support for ACLs (and extattr) missing in dump(8) and o kern/93128 scsi [sym] FreeBSD 6.1 BETA 1 has problems with Symbios/LSI o usb/93155 usb /dev/ulpt0: device busy USB printer does not work o kern/93170 Changing system date causes panic in nd6_timer o power/93203 ppc FreeBSD PPC Can't Write to Partitions. o ports/93253 glewis jdk 1.5 port build problem o bin/93284 secteam [sysinstall] Insecure placement of user ftp into opera o ports/93299 sobomax misc/zaptel: unload of zaptel kernel modules causes a o kern/93300 ipfw ipfw pipe lost packets o kern/93305 Machine freezes solid running dhcpclient after suspend o bin/93317 ld-elf.so doesn't translate unresolved weak symbol int o kern/93380 almost all not polling NICs are doing device timeout a o i386/93385 i386 Fatal trap 12 occasionally on reboot (Abit NF7-S2 nFor o kern/93394 [twa] boot loader hangs in boot-menu on second 8 on 3w o kern/93396 dlopen crash with locked page o usb/93408 usb hw.acpi.cpu.cx_lowest=C3 on AMD Turion causes choppy m o kern/93431 imp [pccard] dc interface attach failed after upgrade to 6 f kern/93458 [smbfs] mount_smbfs(8) fails with authentication error o kern/93461 [smp] Intel 440LX SMP freeze (regression vs. 4.X) f usb/93496 usb USB2.0 umass stalls on VIA o i386/93524 i386 Automatic reboot f kern/93526 IPv6 Multicast Listener Reports (MLD6 Reports) are not o sparc/93530 pf Incorrect checksums when using pf's route-to on sparc6 o gnu/93566 tjr [patch] sort(1): numeric sort is broken on multi-byte o kern/93567 [vr] Via Rhine : Asymetric Bandwith o bin/93603 [patch] restore(8) fails if /tmp fills o i386/93615 i386 Operating system wont install. Problem with fdisk. o gnu/93629 tjr GNU sort(1) tool dumps core within non-regular locale o usb/93640 usb device ehci causes interrupt storm on this MSI amd64 m o kern/93685 [pipe] select on pipe write fails from '0' end o kern/93750 [ips] Boot hangs on ips0: resetting adapter, this may o i386/93752 i386 Cannot activate the serial ports on boot probe. BIOS o o i386/93762 i386 Machine lockup at boot loader countdown on SuperMicro o kern/93771 sos [ar] [panic] atacontrol status ar1 causes panic o bin/93776 [crypto] [patch] SHA256_Update / SHA512_Update fail to o ports/93777 x11 Starting xorg-server requires reloading sound module o i386/93787 i386 freebsd 6.0 hangs on atkbd0 on Proliant 1850r server a f kern/93791 [xl] xl0: watchdog timeout with 3CFE575BT o i386/93809 i386 panic: could not copy LDT on RELENG_5_3 through RELENG o usb/93828 usb ohci causes panic on boot (HP Pavillion d4100e) o i386/93845 i386 cross-machine installworld broken in sys/boot/i386/loa o kern/93885 sos [ata] ata(4) failure: SETFEATURES SET TRANSFER MODE se o kern/93886 [ath] Atheros/D-Link DWL-G650 long delay to associate o kern/93893 [re] Boot panic from Netgear GA311 o conf/93899 mount_smbfs can't load libiconv.so during boot up o i386/93923 i386 [ata] FreeBSD Install, Sil3112: Cannot dump. No dump d o kern/93942 [vfs] [patch] panic: ufs_dirbad: bad dir (patch from D o usb/93949 usb ugen(4)-related repeatable kernel panic in 6.1-PRERELE o amd64/93961 amd64 [busdma] Problem in bounce buffer handling in sys/amd6 o i386/93989 i386 Can't install FreeBSD from IEEE1394 DVD-RW on Acer Tra o kern/93998 [libstand] [patch] panic in libstand when closing raw f kern/94020 andre [tcp] tcp_timer_2msl_tw NULL pointer dereference panic o kern/94139 scottl [amr] [regression] amr broken with LSILogic MegaRAID S o i386/94141 i386 [iwi] iwi doesn't work on Acer Laptop o kern/94146 [ohci] fwohci parity error crashes kernel on boot o kern/94155 [ata] 6.1 CF reader problem: "ad1: FAILURE - SETFEATUR o kern/94162 [bge] 6.x kenel stale with bge(4) o usb/94166 usb btx halted with a flashcard plugged o kern/94196 [dc] if_dc panics on bad hardware o bin/94252 [rpc] rpc.lockd cannot cancel lock requests o kern/94256 cel [nfs] nfs locking/rpc.lockd doesn't understand file de o bin/94258 [rpc] O_NONBLOCK may block with rpc.lockd o ports/94270 openoffice I cant make editors/openoffice.org-2 o kern/94279 multimedia [snd_neomagic] snd_neomagic crashes on FreeBSD 5.4 and f kern/94307 [bge] kernel panics when passing trafffic through bge1 o i386/94364 i386 [kbd] Unable to boot on NX9110 laptop o kern/94373 [ural] if_ural.c:93: error: `USB_PRODUCT_LINKSYS4_HU20 f kern/94380 [em] Laptop panics, related to networking after resume o usb/94384 usb kernel panic with usb2 hardware o kern/94393 PseudoRAID loses track of the master disk o i386/94420 i386 FreeBSD does NOT support the pcChips M925 motherboard. f kern/94446 remko [em]: FreeBSD 6.0 crash with forkbomb (regression) s threa/94467 threads send(), sendto() and sendmsg() are not correct in libc o bin/94635 marks snapinfo/libufs only works for disk-backed filesystems o i386/94653 i386 Fatal trap 12: page fault while in kernel mode o kern/94669 pjd [vfs] [patch] Panic from Failed Removable Media Mount o amd64/94677 amd64 panic in amd64 install at non-root user creation o usb/94717 usb Reading from /dev/ulpt can break work of a UHCI hub o stand/94729 standards fcntl() throws undocumented ENOTTY o usb/94742 usb [umass] [patch] umass driver does not recognise YANO e o bin/94750 watch(1) utility faults when tty disconnects o kern/94769 [ufs] Multiple file deletions on multi-snapshotted fil o kern/94772 [fifo] [patch] FIFOs (named pipes) + select() == broke o usb/94813 usb mounting write-protected umass device freezes computer o bin/94815 [patch] [sysinstall] Upping the network interface befo a kern/94827 [libc] mmap with given (void *addr) may lock memory-ma o kern/94838 scsi Kernel panic while mounting SD card with lock switch o s kern/94863 [bge] [patch] hack to get bge(4) working on IBM e326m o kern/94890 Fatal trap 18: integer divide fault while in kernel mo s bin/94892 [rpc] rpc.lockd does not interoperate with Solaris 10 o usb/94897 usb Kernel Panic when cleanly unmounting USB disk o kern/94898 [pcmcia] GPRS PCMCIA card cause interrupt storm and co o bin/94909 gshapiro timeout issues after sendmail(1) patches (FreeBSD-SA-0 o i386/94911 i386 [ata] ata regression with DOM-IDE o kern/94977 Kernel panic during normal server operations o amd64/94989 amd64 BTX Halts on Sun Fire X2100 w/6.1-BETA4 (amd64) and 5. o kern/95002 [libc] hash db source code has a bug which prevents us o kern/95023 [ata] Hard Drives not recognized by 6.0 Current on IC7 o kern/95084 ipfw [ipfw] [patch] IPFW2 ignores "recv/xmit/via any" (IPFW o i386/95087 i386 System freeze irrespective of load on Promise FastTrak o usb/95131 usb Boot/setup process does not accept key strokes o i386/95151 i386 Fatal trap 12: page fault while in kernel mode f amd64/95167 amd64 driver for SuperMicro H8DAR-T (Adaptec AIC-8130: (Marv o kern/95247 [rpc] NFS file locking problem, rpc.lockd seems to be f kern/95260 sos [ata] Wrong array detection for LSI v3 SATA MegaRAID o docs/95262 chinsan Correction to handbook section 26.5.20 Port Redirectio o docs/95263 chinsan Correction to handbook section 26.5.21.3 FTP NAT Proxy o docs/95265 chinsan Correction to handbook section 26.5.16 IPNAT Rules o kern/95288 [tty] [panic] panic in sys/kern/tty_subr.c putc() o sparc/95297 sparc64 vt100 term does not work in install o kern/95307 gnn [netipsec] Panic (race condition?) in ipsec_process_do o bin/95339 [libexec] [patch] rtld is thread-unsafe. fixes for dlo f kern/95344 remko [ata] [burncd]: burncd(8) failed to fixate cd after la o usb/95348 usb USB keyboard unplug causes noise on screen o i386/95365 i386 stability problems: interface not reachable on 6.1-PRE o kern/95368 [kernel] [patch] Test for race between callout_drain() o kern/95392 [ndis] Kernel panic loading ndisgen-created device dri o kern/95405 [libkvm] libkvm does not support /dev/fwmem0.0 in Free o docs/95408 remko install over serial console does not work as documente o amd64/95414 amd64 kernel crashes during install o kern/95459 Rebooting the system while rebuilding RAID (Intel Matr o kern/95512 [uplcom] uplcom(4) causes system hangups o i386/95515 i386 unable to boot FreeBSD 6.x with SATA150 Promise contro o kern/95519 [ral] ral0 could not map mbuf o ports/95541 roam /usr/ports/net/djbdns WITH_IPV6 queries ip6.int o usb/95562 usb Write Stress in USB Mass drive cause: [vinvalbuf: dir o ports/95566 obrien ports/bash mishandles PREFIX (patch) f ports/95584 perky [patch] bsd.python.mk: A port's "USE_ZOPE=yes" overrid o usb/95636 usb [boot] 5 minute delay at boot when using VT6205 based o kern/95661 [pci] [patch] pci_pci still not correct for initializi s kern/95665 net [if_tun] "ping: sendto: No buffer space available" wit o gnu/95691 GDB segfaults on my programme in both FreeBSD 6 and 5 o bin/95692 GDB in base of both FreeBSD 6 and 5 is ancient o kern/95710 [iwi] iwi wont roam f kern/95771 pjd [geom] geom mirror provider destroyed (machine crashed o amd64/95888 amd64 kernel: ad2: TIMEOUT - WRITE_DMA retrying on HP DL140G o kern/95891 [coda] [panic] kernel panic when coda6_client o sparc/95892 sparc64 [hme] MAC address of hme interfaces is ff:ff:ff:ff:ff: o ports/95962 glewis Can't compile jdk15 under -current o i386/96014 i386 HP Pavilion zv5000(Intel) reboot installation problem o kern/96030 [bfe] [patch] Install hangs with Broadcomm 440x NIC in o kern/96042 Kernel panics with sbdrop o i386/96049 i386 Generic SMP Kernel Panic in 6.1-RC1 during mount root f ports/96111 glebius net/mpd4: caught fatal signal bus o usb/96120 usb USB mouse not always detected o kern/96157 Subtle incompatability of FreeBSD and LITE-ON SOHW-167 o ports/96160 clement www/apache22 is started before named o usb/96224 usb [usb] mount_msdosfs cause page fault in syncer process o i386/96225 i386 Toshiba M70-CL3 Hangs Up During Booting o conf/96247 matteo [patch] 550.ipfwlimit reports logs even if log size is o kern/96268 [socket] TCP socket performance drops by 3000% if pack o kern/96286 [cbb] [panic] TI1131 PCI CardBus Bridge: driver cbb le o i386/96302 i386 [ata] nVidia nForce CK804 SATA300 controller not recog o kern/96322 [re] re driver false positives on the loopback test o kern/96349 Kernel panic after power break reboot o i386/96357 i386 FreeBSD cannot recognize all the logical partitions o i386/96371 i386 Freeze up when booting FBSD 6.0 RELEASE on IBM iSeries o i386/96382 i386 [bge] In 6.1-RC1 the bge driver does not reliably work o bin/96393 [libz] [patch] assembler implementations for libz on i o amd64/96400 amd64 FreeBSD 6.0 Bootin Conflict between Broadcom on-broad o bin/96412 [rpc] 2 rpc.lockds launched at boot ? blocking problem f kern/96413 silby NULL inpcb pointer in tcp_timewait() o usb/96457 usb fatback on umass = reboot o gnu/96481 obrien [patch] native ld(1) does not look for shared libs in o kern/96538 multimedia [sound] emu10k1-driver inverts channels o i386/96652 i386 kernel page fault f kern/96806 glebius [bge] [patch] Correction of kernel panic with Broadcom o kern/96840 [libc] [patch] getgrent() does not return large groups o i386/96870 i386 Crash on loader with ibm intellistation z pro o kern/96927 [loader] Loader(8) cause kernel death on "boot -a" (re o kern/96981 reproducible instant reboot by unprivileged user o conf/97014 gifconfig_gif? in rc.conf does not recognize IPv6 addr o i386/97025 i386 fbsd (2 cd) dont install in vmware 5.5.0 - reboot. o ports/97053 jmz tix build fails with older tcl84 installed o amd64/97075 amd64 Panic, Trap 12 o ports/97084 x11 Xorg 6.9.0 Locks Up Keyboard and Mouse f ports/97090 perky Apache 2.0.55 with mod_python die only on SIGKILL o bin/97108 [sysinstall] write failure on transfer (wrote -1 bytes o i386/97127 i386 IBM Intellistation Z Pro crash when boot from cd o kern/97174 [umass] [patch] Y-E DATA USB-FDU quirk: no synchronize o kern/97208 [firewire] System hangs / locks up when a firewire dis o ports/97254 sergei devel/porttools - wrong prefix o i386/97263 i386 [ata] FreeBSD only detects first drive o usb/97286 usb MS Wireless Intellimouse Explorer 2.0 doesn't work o i386/97287 i386 Screen Corruption In FreeBSD 6.X When Apps Started In o kern/97306 [netgraph] NG_L2TP locks after connection with failed f kern/97326 [linux] file descriptor leakage in linux emulation o amd64/97337 amd64 xorg reboots system if dri module is enabled o ports/97367 x11 vlc and gmplayer crash with X error o bin/97392 ppp(8) hangs instead terminating o bin/97499 one of sshd_config(5) options does not work o kern/97504 ipfw [ipfw] IPFW Rules bug o kern/97517 [fdc] Floppy device lost permissions when active flopp o i386/97525 i386 System freezes when cable modem connected on USB o kern/97535 multimedia [snd_mss] doesn't work in 6.0-RELEASE and above for Cr f i386/97589 remko [ata] FAILURE - READ_DMA (regression from 5.4) f kern/97616 anholt [agp] 6.1-RELEASE FreeBSD does not recognize VIA K8M80 o kern/97665 [sio] hang in sio driver o kern/97686 [nfs] massive NFS server performance break under "opti o bin/97888 ceri [sysinstall] [patch] sysinstall - give 'distSetCustom' o kern/97918 [mouse] Scrollwheel on MX700 Mouse does not work o kern/97921 rwatson [socket] close() socket deadlocks blocked threads o kern/97951 ipfw [ipfw] [patch] ipfw does not tie interface details to o kern/97959 [smp] panic while booting SMP kernel o kern/97996 [ata] DMA is broken for VIA 82C596B UDMA66controller o ports/98008 novel Having set UTF-8 locale break build of security/libgpg o kern/98034 geom [geom] dereference of NULL pointer in acd_geom_detach o bin/98082 burncd(8) fails on 6.1-Release o kern/98091 scottl [mfi] [patch] Makefile style of mfi kernel module brok o docs/98115 doc Missing parts after rendering handbook to RTF format o i386/98154 i386 6-STABLE crashes when being online via modem (Fujitsu o kern/98167 multimedia [sound] [es137x] [patch] ES1370 mixer volumes incorrec f kern/98184 oleg [ipfw] ipfw add pass 224.0.0.0/4 multicast rule preven o i386/98215 i386 [geode] regression: FreeBSD can no longer boot Geode G o bin/98218 [wpa] wpa_supplicant blacklist not working f threa/98256 threads gnome-system-monitor core dumps from pthread_testcance o sparc/98269 sparc64 Fresh 6.1 installation fails to boot o ports/98271 openoffice installing printers in editors/openoffice.org-2 fails o misc/98310 after install the bootonly.iso, i have to create the / a ports/98435 ade aclocal does not see 3rd party m4 files (e.g. the libt o bin/98468 newsyslog(8): Value over 99 in newsyslog.conf count fi o bin/98502 sos iostat(8) does not report statistics for atapi cdrom a o ports/98539 ale devel/pear build error o bin/98542 pppd(8) daemon unexpectently died , Exit 1 f kern/98694 remko alternate system clock dies p conf/98734 yar [patch] /etc/rc.subr restart_postcmd is failing start_ f kern/98742 pjd [geli] IO errors while using geli o kern/98743 [ata] ATA panic and or timeout on IBM/Lenovo S50 with o kern/98752 multimedia [sound] Intel ich6 82801 FB - on Packard Bell A8810 la o conf/98758 rc [patch] Templatize 'jail_fstab' in /etc/rc.d/jail o i386/98765 i386 [ata] timeouts on sata drive o kern/98831 ipfw [ipfw] ipfw has UDP hickups o conf/98846 rc [patch] Templatize 'jail_rootdir' in /etc/rc.d/jail f kern/98869 remko [ata] [dvdr+tools]: can't burn with Lite-ON SOHW-832S f kern/98962 remko [ata] [burncd]: [patch] writing >1 session on ATAPI CD o i386/98964 i386 [iwi] iwi totally freezes system f gnu/98975 rafan ncurses: tgetent leaks nearly 10 KB of memory every ti o kern/98978 darrenr [ipfilter] ipfilter drops OOW packets under 6.1-Releas f kern/99036 sam [ath] Long association time for 11b access points with o kern/99064 [ste] [patch] ste driver does not support IC Plus IP10 o kern/99088 [ata] Critical Problems with VIA 8251 SATA2/RAID Contr o kern/99094 panic: sleeping thread (Sleeping thread ... owns a non o kern/99188 andre [tcp] [patch] FIN in same packet as duplicate ACK is l o ports/99196 sobomax misc/zaptel does not build o www/99305 bugmeister send-pr.html is frustrating/broken o kern/99408 problems with ppp and arp o kern/99421 Option Globetrotter Fusion card not recognized o usb/99431 usb FreeBSD on MSI 6566E (Intel 845E motherboards) doesn't o kern/99529 [amr] DELL PowerEdge 2600 with streamer PowerVault 100 p kern/99558 andre FreeBSD 6.1 can't send packets to INADDR_BROADCAST o amd64/99561 amd64 system hangs in FreeBSD AMD64 when writting ext2fs o kern/99567 [ata] Powerup of sleeping IDE drives causes system reb o kern/99607 pppd hangs kernel due to interrupt flood from serial p o i386/99608 i386 ATAPI or CAM crash on FreeBSD 6.1-stable with a Pionee o kern/99652 [ata] nVidia controller hangs w/ 2 drives. o kern/99664 mountd and/or nfsd have to sometimes have to be restar o ports/99668 obrien sysutils/lsof cannot build on FreeBSD/pc98 7.0-current s bin/99693 [patch] add magic(5)/file(1) support for FreeBSD 6.1 d f kern/99729 sos [ata] [patch] Bug in ata (ata-all.c) driver o kern/99825 Repeated crashes after a few days of uptime o kern/99850 ataraid hangs in g_waitidle when attaching to nVidia R s kern/99860 [feature request] no driver for Serverworks HT2000 in o ports/99885 kuriyama Net-snmp dies when using proxy token f kern/99920 multimedia [snd_ich] Not support integrated audio on ICH7R chip ( o kern/99954 scsi [ahc] reading from DVD failes on 6.x (regression) o kern/99974 panic: mutex Giant not owned at /usr/src/sys/net/bpf.c o kern/99979 [patch] Get Ready for Kernel Module in C++ o kern/99989 panic when detaching disks o ports/100024 koitsu Port mail/drac coredumps on runtime if compiled for ex o ports/100067 obrien New port: devel/gdb65 GNU GDB 6.5 o bin/100089 ftp(1): default ftp application of FreeBSD gives segme o kern/100098 darrenr [ipfilter] [patch] ipfilter kernel memory leakage o misc/100133 [boot] keyhit function in boot2.c that falls into an i o kern/100155 imp [pccbb] Incorrect enumeration in pccbb_pci.c: cbb_pci o i386/100160 i386 [mfid] Perc5i: FreeBSD doesn't recognize more than one o kern/100172 glebius [routed] Transfer of large file fails with host is dow o i386/100194 i386 On Intel D945GTPLKR delay at start FreeBSD kernel o kern/100219 [ipv6] IPV6_PKTOPTIONS and possible mbuf exhaustion. o kern/100279 ggatec write panic f kern/100290 remko [rl] rl0: watchdog timeout (regression) o ports/100315 clement www/apache22 compilation mixes port headers and base l o ports/100332 mharo security/sudo: suboptimal sudo configuration o kern/100356 [firewire] [patch] Non-maskable interrupt while in ker o ports/100358 openoffice editors/openoffice.org-2: OpenOffice.org 2.0 Requires o i386/100420 i386 boot1/boot2 lba error o kern/100425 [sbni] [patch] sbni drivers does not work under 5.x o ports/100431 dougb port print/hpijs default config interferes with print/ o bin/100442 obrien ftpd(8): lukemftpd core dumps on anonymous login f kern/100499 remko [vr] vr interface stops transmitting o kern/100516 [atapicam] atapicam with ITE IT8212F crashes the syste o kern/100649 sam [ath] Long association time for 11b APs with ath(4) in o kern/100687 [psm] psm problem (?): touchpad hangs, then move supe s ports/100701 gerald emulators/wine triggers internal error in libpthread o ports/100787 nork databases/linux-oracle-instantclient-sqlplus: relocati o kern/100802 [ddb] [patch] panic in ddb mode if sending signal '0' o docs/100803 jhb the man page about ithread is expired. o i386/100831 i386 [sio] sio ignores BIOS information about serial ports o www/100832 www unable to find bugs I've opened -- bug searching nearl o kern/100839 [txp] txp driver inconsistently stops working when the o kern/100858 davidch [bce] Broadcom bce driver and SMP hangup o bin/100914 [tftpd] [patch] libexec/tftpd: write access control f kern/100940 rwatson passing file descriptor over datagram UNIX domain sock o ports/100967 clement [PATCH] bsd.apache.mk: allow use private APACHE_PORT f kern/100972 remko How to add Promise Technology EX SATA RAID series card o kern/100974 panic: sorele. FreeBSD 6.1 RELEASE i386 o kern/101061 [fpa] fea/fpa (DEC FDDI NIC) driver causes kernel pani o usb/101096 usb USB WLAN occasionally causes kernel-panics during larg o i386/101135 i386 [iwi] iwi goes up and down o i386/101168 i386 ncp kernel panic f kern/101274 yongari [sk] [patch] SysKonnect Yukon initialization bug on K8 o ports/101301 olgeni archivers/star: star 1.4.3 is BUGGY - replace it with o threa/101323 threads fork(2) in threaded programs broken. o kern/101324 [smbfs] smbfs sometimes not case sensitive when it's s f kern/101332 remko [msdosfs]: mv * dir on fat (dos|win fs) causes panic o kern/101448 FBSD 6.1-STABLE/AMD64 crashes under heavy USB/OHCI loa o kern/101453 emulation [linux] [patch] linprocfs disallows non-zero file offs o kern/101553 [ipv6] Kernel panic in ipv6 interface deletion a ports/101566 clement All .svn subdirectories in $(htdocsdir) get deleted wh o i386/101616 i386 FreeBSD freeze on bootup, Compaq Proliant (legacy) ser o kern/101618 kernel panic on multiple Dell PE2850s o i386/101667 i386 [ata] ATA problems when power management is on o kern/101734 [sata] -CURRENT cannot see SATA drive on ASUS A8N-SLI o usb/101752 usb [panic] 6.1-RELEASE kernel panic on usb device inserti a bin/101762 [sysinstall] Sysinstall does not obey /usr/ports symli o i386/101857 i386 Mouse not moving after switching with StarView SV411 K o ports/101919 openoffice Openoffice.org-2 build failure: Spinlock called when n o kern/101926 [ar] 6.1-STABLE crashes under heavy disk I/O and acces f i386/101933 remko [crash]: server crashing o kern/101948 Kernel Panic Trap No 12 Page Fault - caused by IpFilte o kern/101980 remko [ata] [patch] Intel 631xESB ata and ichsmb support (i3 o usb/102066 usb [ukbd] usb keyboard and multimedia keys don't work o usb/102096 usb /usr/sbin/usbd does not handle multiple devices in one o bin/102121 strftime(3) fails on certain dates o amd64/102122 amd64 6.1-RELEASE amd64 Install Media panics on boot. o ports/102135 miwi [maintainer] net/phpldapadmin -- respect DESTDIR o ports/102136 miwi [maintainer] net/phpldapadmin098 -- respect DESTDIR s ports/102179 shaun ipsec-tools won't compile on RELENG_6 o kern/102210 [ata] reboot system makes rebuilding array ready (ICH7 o kern/102211 [ata] detach raid member and reboot will cause panic ( o kern/102250 trhodes [msdosfs] panic upon forced umount of removed medium o kern/102252 the acpi thermal does not work on my box o kern/102344 [ipfilter] Some packets do not pass through network in o ports/102345 openoffice editors/openoffice.org-2 2.0.4.m1 fails to build o kern/102363 "Resource temporarily unavailable" message from dvd+rw o kern/102390 [patch] kernel pppd don't using pam f ports/102407 marcus www/mplayer-plugin with mozilla doesn't work o i386/102410 i386 FreeBSD 6.1-RELEASE installation boot freeze on Asus P o bin/102424 printf(3) prints ill result. o ports/102427 perky Apache 2.0.59 with www/mod_python3 core dumped o ports/102428 obrien editors/vim: gvim crashes on "Save As..." dialog o conf/102429 FreeBSD 6.1+VPN+ipnat+ipf: ÎÅ ÒÁÂÏÔÁÅÔ ÐÅÒÅÎÁÐÒÁ×ÌÅÎÉÅ o kern/102471 ipfw [ipfw] [patch] add tos and dscp support o bin/102498 [sysinstall] Cursor doesn't track sysinstall hilight o bin/102510 [patch] diff(1) should not follow symlink in recursive o bin/102515 fsck_ufs crashes if no console at all (in libc) o i386/102562 i386 [em] no traffic pass through a em card after approx. a o kern/102612 da0 not detected when sharing bus with ch0 device on 2 o bin/102638 [sysinstall] [patch] sysinstall - custom dist set alwa f ports/102644 aaron devel/p5-Decision-ACL: fix wrong decision when using z f kern/102653 andre TCP stack sends infinite retries for connection in LAS o bin/102661 kientzle libarchive follows symlinks when setting flags o ports/102710 remko new entry for libTIFF; updates for linux_base-suse por o kern/102737 Panic at SMP kernel o kern/102741 andre Multiple outbound connect() calls produce 'Network is p bin/102745 rodrigc "mount -o snapshot" removes any existing "-o" option f o kern/102760 [iwi] iwi firmware load fails after significant uptime o kern/102784 [kbd] system crashes when using hardware function keys f i386/102815 remko sis raid sata drivers in FreeBSD 6.1 Release o bin/102834 /usr/bin/mail hangs on the sigsuspend system call in p o kern/102956 emulation [linux] [patch] Add partial support for SO_PEERCRED in p amd64/102996 obrien powerpc cross-build fails on amd64 host, works fine on o i386/103025 usb [USB] the wrong in USB device for freeBSD 6.1 and AMD o i386/103031 i386 Panic during installation f kern/103059 [bce] [patch] "Error mapping mbuf into TX chain!" (ten o i386/103063 i386 Can not install on Dell XPS 700 o kern/103075 [sata] SATA disk attach/unplug from a MV88SX5041 freez f ports/103084 shaun security/ipsec-tools does not compile f kern/103090 yongari [sk] sys/dev/sk still having watchdog timeouts o kern/103135 ipsec with ipfw divert (not NAT) encodes a packet twic s ports/103152 sem pkgdb -F fails with "can't convert nil into String" o i386/103186 i386 Poweredge Raid Controller/AMI Megatrends will not form o kern/103191 Unpredictable reboot o kern/103198 panic: Duplicate free of item 0xc4d1e800 from zone 0xc o kern/103245 mount -o rw, umount may panic system o kern/103256 [em] em0: watchdog timeout -- resetting (6.1-STABLE) o kern/103281 pfsync reports bulk update failures o kern/103283 pfsync fails to sucessfully transfer some sessions o kern/103307 lock order reversal o ports/103421 glewis java/javavmwrapper: /usr/local/bin/k{init,list} may co o kern/103432 panic: nfssvc_nfsd(): debug.mpsafenet=1 && Giant o kern/103454 ipfw [ipfw] [patch] add a facility to modify DF bit of the o kern/103461 acpi warnings at boot o kern/103464 [dns] jail networking failures to 127.0.0.1 only o kern/103495 [vr] if_vr locks after carrier event o kern/103498 [kbd] momentary system "pauses" when switching VTYs (r o kern/103532 Interrupt storm in 6.2-PRERELEASE (regression) o kern/103578 [ums] ums does not recognize mouse buttons o kern/103602 thomas atapi device not working on JMicron 363 Controller o kern/103603 6.1 install-boot from floppies fails o kern/103619 Kernel panic (page fault) during normal operation s i386/103624 i386 [ata] [dell] Problem installing on Dell Powervault 745 o ports/103669 ale mysql-server rc script can not use mysql_flags variab o ports/103683 clsung multimedia/dvdrip: Problems with lack of threading lib o ports/103711 perky Apache 2.0.59 with www/mod_python3 core dumped o bin/103712 amd(8): Automounter is apparently not passing flags to o ports/103751 nork databases/linux-oracle-instantclient-sqlplus: ldconfig o kern/103770 Group limitation f ports/103811 kuriyama snmpd is -KILLed instead of gracefully TERMinated o kern/103841 [fdc] [patch] fdc(4) does not work (regression) o ports/103844 obrien vim7 doesn't play well with TCL8.4 f kern/103862 [fd] Error with fdformat on -CURRENT o kern/103883 [ata] DMA is not defaulted on WDMA device f kern/103918 mjacob [mpt] LSI 53C1030 SCSI controller timing out on mpt dr o kern/103940 6.1 not boot on ASUS m2n32-sli motherboard with SATA d o threa/103975 threads Implicit loading/unloading of libpthread.so may crash p bin/104044 yar [patch] rc.d/cleartmp works incorrectly a ports/104075 girgen database/postgresql-* ports: missing CONFLICTS o kern/104089 Fatal trap 12: page fault while in kernel mode. curren o ports/104224 danfe New nVidia driver causes X11 hangups and system crashe o ports/104282 clement bsd.apache.mk - strange apache20 vs apache22 issue o usb/104292 usb system lockup on forced umount of usb-storage device s amd64/104311 amd64 ports/wine should be installable on amd64 o i386/104349 i386 [bfe] Panic while uploading data via bfe network inter o kern/104389 geom [geom] [patch] sys/geom/geom_dump.c doesn't encode XML o kern/104393 [ntfs] [panic] Mounting ntfs to the same mountpoint o kern/104406 [ufs] Processes get stuck in "ufs" state under persist o sparc/104428 sparc64 nullfs panics on E4500 (but not E420) o kern/104430 [panic] System crash while builds kernel o bin/104456 /bin/sh unable to enter deep directories o bin/104458 fts(3) can't handle very deep trees o i386/104473 i386 boot loader reboots before loading kernel o bin/104478 [patch] ngctl(8) Makefile doesn't observe NO_LIBPTHREA o kern/104485 [bge] Broadcom BCM5704C: Intermittent on newer chip ve o kern/104486 TI1131 Cardbus Bridge cannot detect card insertion on o kern/104489 dhclient re0 -- panic: mutex Giant not owned at ../../ o kern/104569 panic w/zebra o i386/104572 i386 [ata] issues with detecting HDD on Intel Q965 Express o bin/104573 [patch] quota(1) fails to seperate columns when using o bin/104623 rc "rc.d/ppp restart" stops all instances of ppp o kern/104624 Sound, mouse and keyboard badly interrupted while I/O o kern/104625 acpi ACPI on ASUS A8N-32 SLI/ASUS P4P800 does not show ther o kern/104626 multimedia [sound] FreeBSD 6.2 does not support SoundBlaster Audi o java/104627 java Makefile jdk14 broken o kern/104675 Apparently there is a clash between two ioctls o i386/104678 i386 SMP not working on Turion XP Laptop f i386/104705 remko [em] em1: The EEPROM Checksum Is Not Valid o i386/104711 i386 [pcvt] with vt0.disabled=0 and PCVT in kernel - video/ o i386/104719 i386 Seagate ST3802110A errors/delays when using PIO4 or UD o kern/104737 panic:lockmgr: locking against myself f java/104744 glewis java/berkeley-db installation error o kern/104751 [netgraph] kernel panic, when getting info about my tr o kern/104755 Making ISO image with k3b hangs 6.2-PRERELEASE f usb/104810 remko [usb] panic: ohci_add_done: addr 0x3fef1ba0 not found o kern/104818 Missing driver Silicon Image SiI 3132 SATA II PCIe on f kern/104819 yongari Missing driver Marvell Semiconductor 88E8053 Yukon PCI o kern/104822 RELENG_6 hangs with VIA VT8237A chipset (regression) o usb/104830 usb system crashes when copying data to umass devices o kern/104844 6.2-PRERELEASE kernel panic in ifconfig while cloning o bin/104850 ppp problem on TCP link o i386/104867 i386 Clock running at 2x speed of wall clock o kern/104874 multimedia [snd_emu10k1] kldload snd_emu10k1 hangs system o ports/104885 x11 Hangs when logging out of X11 terminals o kern/104907 Filling up the disk using mmap(2) causes livelock. o kern/104978 jfv [em] jumbo frames has been broken in RELENG_6 by last o kern/105005 [bge] BCM5754 is detected as BCM5787 and panics the sy o sparc/105048 sparc64 [trm] trm(4) panics on sparc64 o kern/105056 FS can not be remounted read-only, if a running proces o kern/105067 K8D Master-F and other 8111/8131 boards will not run S o ports/105128 openoffice openoffice.org-2-devel build fails o alpha/105134 alpha 'panic: lockmgr: thread ... not exclusive lock owner' o kern/105169 [panic] cp hangs on copy to a compact flash card o usb/105186 usb USB 2.0/ehci on FreeBSD 6.2-PRE/AMD64 crashes box o amd64/105207 amd64 nVidia MCP55 drivers fail to boot on 6.2B3 amd64 o kern/105208 Fatal trap 12: page fault while in kernel mode on mail o gnu/105221 grep(1): `grep -w -F ""` issue o kern/105229 panic in sync_fsync o kern/105241 [nfs] problem with Linux NFS server up/down combined w o bin/105334 Error in output of tcpdump(1) o kern/105348 [ath] ath device stopps TX o java/105369 java problem with port diablo-jdk15 o kern/105463 [panic] "softdep_setup_inomapdep: found inode" on 3war o java/105482 java diablo-jdk1.5.0/jdk-1.5.0 java.nio.Selector bug o amd64/105513 amd64 Kernel Panic during package installation on 6.2 beta3 o kern/105514 FreeBSD/amd64 - Fails to boot on HP Pavilion dv8000 La o amd64/105531 amd64 gigabyte GA-M51GM-S2G / nVidia nForce 430 - does not d o kern/105533 [ahd] adaptec 29320 causes panic with over 4GB o kern/105539 newly added disk devices don't have slice-devices crea o ports/105549 shaun ports/www/squid_radius_auth doesn't work on sparc64 o sparc/105607 sparc64 ipfw on sparc64 doesn't work at all (causes panic) o amd64/105629 amd64 [re] Issue with re driver o conf/105689 rc syslogd starts too late at boot o i386/105708 i386 [em] em driver failed to initialize on thinkpad X60 o bin/105738 [patch] Daylight Savings is being introduced in Wester o bin/105767 NO_TOOLCHAIN=true in make.conf breaks buildworld o ports/105813 roberto devel/mercurial: hgmerge does not work o kern/105925 Regression in ifconfig(8) + vlan(4) o kern/105943 Network stack may modify read-only mbuf chain copies o kern/105945 Address can disappear from network interface f kern/106022 The kernel 2006-11 does NOT work well with the powerd. o kern/106030 panic in ufs from geom when a dead disk is invalidated p amd64/106109 amd64 amd64: si_addr is not set when sending a signal o docs/106135 doc articles/vinum needs to be updated o i386/106233 i386 System halts on Dell 2950 o kern/106243 [nve] double fault panic in if_nve.c on high loads o sparc/106251 sparc64 malloc fails > for large allocations o kern/106316 Dummynet with multipass ipfw drops packets when reload o kern/106317 deadlock in "zoneli" state o kern/106359 nfe driver does not work on NForce3 ultra based mobo o ports/106369 anders vpnd caused kernel panic with ppp mode o ports/106370 x11 Screen corruption when using Direct Rendering on a PCI o ports/106372 anders vpnd can't run with slip mode o kern/106413 [ata] problems with ATA on Intel Desktop Board DG965RY o kern/106431 sos [ata] [patch] Inform user of ata RAID5 acting as RAID0 o kern/106432 Record of disks (DVD-R) through the k3b program leads o kern/106438 ipfilter: keep state does not seem to allow replies in o ports/106445 clement mod_proxy_ajp very slow on FreeBSD 6.2-RC1 amd64 o kern/106490 [atapicam] atapicam fails with ATAPI-CD/DVD drives att o kern/106496 Can't remount filesystem as read only after delete - F o kern/106534 ipfw [ipfw] [panic] ipfw + dummynet o bin/106545 [patch] update euro currency in units(1) o usb/106565 markus [PATCH] ums(4) does not work if the mouse defaults to o amd64/106604 amd64 saslauthd crashes with signal 6 on FreeBSD 6.2-PREREL o ports/106608 tobez Perl 5.8 port does not respect environment variables ( s ports/106613 flz Installation of misc/ldconfig_compat as non-root on fr o usb/106615 usb uftdi module does not automatically load with the FTDI o kern/106632 trhodes [msdosfs] gimp destroys files on fat32 upon opening o kern/106636 rink mountd(8) doesn't honor existing filesystem flags o ports/106639 anholt installing devel/git from ports fails with compile err o usb/106648 usb USB Floppy on D1950 10 min Hang on Insert w/o Floppy D o kern/106674 sos "atacontrol attach" doesn't work with SATA drives o kern/106722 net [net] [patch] ifconfig may not connect an interface to o kern/106726 [ntp] ntp functions return wrong values s ports/106781 itetcu sysutils/bacula-server: bacula-server 1.38.11_2 direct o kern/106783 [fd] umount of a floppy disk results in a reboot o kern/106786 No reboot with FreeBSD and Mylex Acceleraid 352 p kern/106829 multimedia [PATCH]: snd_ich driver fails with nvidia MCP04 chipse o usb/106832 usb USB HP printer is not detected by kernel when ACPI ena o bin/106858 Extracted mime part of spam email makes file dump core o amd64/106918 amd64 Asus P5B with internal RealTek PCIe Ethernet o kern/106924 acpi ACPI resume returns g_vfs_done() errors and kernel pan o bin/106973 'tar' cannot read own tape, but 'pax' can o kern/106974 [bge] packet loose and linkup problem o ports/107024 obrien ASR_COMPAT is required by asr-utils o kern/107051 multimedia [sound] only 2 channels output works for the ALC850 (o o kern/107060 wireless network failures on 6.2 (regression) s sparc/107087 sparc64 system is hinged during boot from CD o usb/107101 usb [umass] [patch] Quirk for Denver MP3 player o kern/107109 [nfs] Netbeans/Eclipse/Java provoke deadlocks when use o usb/107128 usb [usb] panic while accessing usb msdos flashkey o conf/107155 rc /etc/rc.d/ppp-user does not bring up pppoe at boot o ports/107167 openoffice [editors/openoffice.org-2] OpenOffice-2.1 Base crashes o kern/107206 Background fsck causes kernel panic with arcmsr o bin/107213 6.1-release restore(8) can't read some 6-stable dumps o ports/107229 sysutils/coreutils: gcp fails to set default ACL which o usb/107248 usb [PATCH] scsi_da.c quirk for Cowon iAUDIO X5 MP3 player p kern/107257 jkim [bge] unrecognized Broadcom PHY causes panic from bge p conf/107278 simon [patch] possible DoS when using the jail_interface opt o kern/107287 page fault during install on Intel SATA on Intel D975X o kern/107292 cannot install - Unable to find device /dev/ad0s1b a ports/107304 andreas print/apsfilter does not print PDF to raw PostScript p o kern/107315 Loading gmirror causes 'Fatal double trap' o conf/107316 rc [rc.d]: [base] [rpc.lockd] nfslocking restart does not o kern/107325 jhb [panic] 6-STABLE panic, possibly UNIX domain sockets r f ports/107341 aaron net/libdnet fails to build o kern/107342 Radeon dri breaks system o amd64/107345 amd64 Kernel Panic/Crash on dd if=/dev/ad4 of=/dev/ad6 bs=1m o conf/107364 rc pf fails to start on bootup after system update from F o docs/107378 doc [handbook] Handbook Installation chapter needs fixing o i386/107382 i386 "Fatal trap 12" when installing FreeBSD 6.1 on old not o bin/107392 gnn [patch] setkey(8) does not recognize esp as protocol n o kern/107431 [ipv6] Regular kernel panics related to ipv6 interface o amd64/107433 amd64 i can't install FreeBSD Release 6.1 on HP Pavillion dv o kern/107436 mjacob Core dumps not working via (mpt) driver using LSI cont o usb/107446 usb [umass] umass problems (usb and fw disks) o kern/107495 [cam] [patch] Fix long wait before WD My Book 250GB (U o bin/107516 multimedia [emu10k1] - skips, clicks and lag after a day of heavy o kern/107522 Kernel Panic : At the booting from installation media o ports/107536 editors/scite: Can't write on SciTE text editor o kern/107555 [rpc] 30 second delay in NFS lock of file after waitin o i386/107564 i386 fatal trap 19 during installation on a Dell Latitude D o ports/107601 portmgr [RFC] Add WANT_FORTRAN knob: migration to gfortran (Fo f kern/107608 Raid Problem beim Zugriff auf Raid o bin/107612 des [patch] pam_nologin(8) ignore the login class capabili o kern/107622 can't boot on HP Pavilion dv6000 / problem with SATA15 o amd64/107639 sos Kernel Panic/Crash on dd if=/dev/ad4 of=/dev/ad6 bs=1m o bin/107692 newfs -O 1 doesn't create consistent filesystems o kern/107695 VIA 8237A, Seagate ST380811AS initialisation problem a ports/107717 danfe nvidia-driver-1.0.9746 relegates many GPUs to legacy s o kern/107759 Unable to load a kernel after clean install o ports/107811 danfe Need UPDATING notice that x11/nvidia-driver no longer o usb/107827 usb [panic] ohci_add_done addr not found o bin/107829 [2TB] fdisk(8): invalid boundary checking in fdisk / w o bin/107830 fdisk(8): Change Units (Z) in fdisk doesn't work when o ports/107838 remko [UPDATE] security/vuxml cacti remote injection exploit o usb/107848 usb problem with samsung flash o kern/107850 [bce] bce driver link negotiation is faulty o kern/107864 kernel panic in 6.2-RC2 on heavy network load o kern/107905 Kernel panic during normal operation (page fault) o usb/107924 usb usbd does not call detach o sparc/107947 sparc64 mysqld periodically core dumps (signal 4) with libthr o ports/107952 openoffice openoffice.org-2 fail on freebsd-6.1-release f ports/107990 rafan net-mgmt/zabbix agentd not running in a jail o ports/108009 rushani shells/scponly: scponlyc sftp support doesn't work wit a kern/108071 delphij [kernel] [patch] Panic in [sg]etpriority() due to NULL f ports/108077 www/linux-flashplugin9 crashes linux-firefox f kern/108078 danfe [hal]: Periodic crashes of system at working HAL o kern/108092 [panic] PPPoE server machine kernel panic (maybe netgr o usb/108097 usb [usbgen] [patch] ADMtek 851X USB-to-LAN adapter o kern/108100 sysctl debug.ktr.alq_enable=1 results in reboot f ports/108105 itetcu building biology/platon fails. o kern/108118 Files cache their eof status o ports/108128 kde deskutils/kdepim3: --import %u breaks launch of korgan o i386/108139 i386 System hangs after /sbin/shutdown f ports/108149 dar 2.3.2 port install failure o kern/108151 tegge panic: relpbuf with vp o amd64/108172 amd64 Installation fails on new Intel 965 motherboards. o i386/108185 i386 freebsd 6.2 fatal kernel trap o kern/108197 IPv6-related crash if if_delmulti o kern/108201 jmg [kqueue] MOKB testcase for kqueue can cause kernel pan o kern/108202 atapicam error after upgrade to 6.2 o misc/108215 [boot] [patch] bug in fsread in sys/boot/common/ufsrea o conf/108226 rc second copy of ppp started at boot time o ports/108313 openoffice editors/openoffice.org port build fails o amd64/108328 amd64 FreeBSD-6.2: CD does not boot o kern/108361 [lpt] lpt0: device busy with HP 710c parallel printer o bin/108368 tip coredumped when 'du' capability is used. o kern/108375 net.inet.raw.maxdgram shouldn't be less than MTU size. o kern/108379 [ata] Secondary sata drive not detected by FreeBSD 6.2 o kern/108390 wait4() erroneously waits for all children when SIGCHL f ports/108413 net/vnc does not works. o ports/108414 itetcu net/tighvnc does not work on amd64 (except vncviewer) o kern/108418 Kernel panic after killing kdm. f ports/108439 pav irc/ctrlproxy fails to bind to port, invalid argument f ports/108459 tobez lang/perl5.8 internal malloc (usemymalloc=y) is broken o kern/108485 [re] stress2-udp with realtek 8169S gigabit interface o ports/108505 jylefort linux-js appears broken o usb/108513 usb umass: Creative MuVo TX FM fails in 6.2-RELEASE (regre f bin/108518 mux csup is dumped when run under socksify command f ports/108537 print/hplip: Build failure o kern/108542 net [bce]: Huge network latencies with 6.2-RELEASE / STABL f ports/108543 math/R (R-2.4.0/R-2.4.1) won't upgrade/install on o ports/108576 dd databases/postgresql-plpython make fails on 6.2 / amd6 f ports/108606 Courier MTA terminates abnormaly after installation o ports/108642 ahze slib-3a4_1 breaks GNUcash o kern/108651 option PREEMPTION causes machine hangs o bin/108656 Segfault of sshd(8) for unknown user when privilege se o ports/108657 delphij [PATCH] mail/spamd: core dump on spamd-setup with "-t" o kern/108659 Mouse (Synaptics touchpad) cursor freezes for some sec o kern/108670 TCP connection ETIMEDOUT o docs/108676 doc [patch] fix several problems in the jail chapter in th f ports/108696 nox [qemu] udp protocol does not function in user mode (sl o bin/108743 who(1): IPv6 addresses truncated to maximum IPv4 addre f ports/108748 mod_fcgid 1.10 does not work inside jail o bin/108758 ifconfig(8): ifconfig $nic mac associates wrong IP/mas o ports/108783 clement www/apache22 crashes on graceful reboot, www/php5-sess o kern/108829 [radeon] radeon module fails with thinkpad T43 o ports/108833 sobomax zaptel port does not build o amd64/108861 amd64 [nve] nve(4) driver on FreeBSD 6.2 AMD64 does not work o bin/108895 pppd(8): PPPoE dead connections on 6.2 o ports/108921 hrs portupgrade -R gaim-devel-2.0.0.b6_2 fails with error: o kern/108924 Panics when Intel MatrixRAID RAID1 is degraded o kern/108954 'sleep(1)' sleeps >1 seconds when speedstep (Cx) is in o kern/108963 [ipfilter] panic in nat with ftp_proxy o kern/108968 Double mount then umount and ls resuits in panic. o docs/109008 csjp [patch] add summary of kern/48198 to jexec(8) o kern/109044 [ata] Bizarre problem with Pioneer 111D on i965 board o ports/109049 remko security/vuxml: Add the entry of samba vulnerabilities f ports/109073 cokane net-mgmt/kismet GPSMAP option broken on !32-bit platfo o ports/109086 remko security/vuxml: fix the entries of tdiary f ports/109107 R 2.4.1 does not compile properly on FreeBSD 7.0/AMD64 f ports/109109 samba-3.0.24,1 build error o bin/109134 [patch] pkg_add replaces symlink in path to installed f ports/109160 net/samba3 crashes freebsd when accessing a share resi o ports/109199 gnome evolution-exchange does not compile under certain cond o i386/109200 i386 READ_UDMA UDMA ICRC error cause not detecting cable ty o kern/109227 ral(4) driver doesn't handle correctly RT2561C PCI chi o kern/109232 imp [sio][patch] ibufsize calculation wrong causing data l o i386/109250 i386 floppies on 6.2-Release are 6.2-Beta2 o kern/109251 [re] [patch] if_re cardbus card won't attach o ports/109253 mich Amarok 1.4.5 doesn't compile when configured with MTP o ports/109260 sergei sysutils/installwatch Bus Error f i386/109267 i386 FreeBSD 6.2 Stable Kernel Update Prevents Dell PowerEd o kern/109270 sos [burncd] [atapi] [ata] [patch] patch for burncd blank o ports/109271 shaun [patch] net-im/ejabberd doesn't work with LDAP authent o conf/109272 request: increase default rc shutdown timeout o ports/109273 dns/powerdns: update opendbx patch & fix compilation u o usb/109274 usb [usb] MCP55 USB Controller fails to attach in AMD64 Cu o kern/109277 kernel ppp(4) botches clist reservation in RELENG_6 o kern/109308 [panic] Multiple panics kernel ppp suspected o conf/109354 /etc/periodic/daily/110.clean-tmps does not limit its o kern/109377 daichi unionfs crashes if underlying file system forcibly unm o ports/109379 lioux ffmpeg-devel can't dynamically link to faad2 o ports/109386 databases/mysql-administrator 1.1.10 does not build on o usb/109397 usb [panic] on boot from USB flash o kern/109406 net [ndis] Broadcom WLAN driver 4.100.15.5 doesn't work wi f ports/109422 sysutils/gnomebaker-0.6.1: could not find signal handl o ports/109427 www/opera Spell Check not working in Opera o ports/109436 obrien net/rdesktop segmentation fault o kern/109437 Panic String: rtfree 2 f ports/109455 patch about multimedia/xmms to fix library name on cur o ports/109468 patch to archivers/rpm. o ports/109485 x11-toolkits/gtkextra doesn't compile o kern/109486 Kernel panic after floppy boot for 6.0 to 6.2 upgrade o bin/109490 stty(1): setting the sio or uart speed does not work o ports/109505 perky ports/lang/python24 fails to build '_curses' extension o bin/109521 [patch] 'chio return' breaks on non-voltag changers o ports/109525 danfe x11/nvidia-driver does not compile on recent -CURRENT o ports/109536 clement fix ports/www/apache22 rc.d script for multiple profil o ports/109538 mich Undefined symbol in amarok 1.4.5 when trying to connec 2030 problems total. Non-critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- a bin/1375 eivind [patch] Extraneous warning from mv(1) s kern/1791 tegge syslimits.h does not allow overriding default value of s bin/2090 clients may bind to FreeBSD ypserv refusing to serve t s bin/2137 tegge vm statistics are bad s kern/2298 [sio] [patch] support for DSR/DCD swapping on serial p a bin/2641 wpaul login_access.c doesn't work with NIS by default o bin/4116 Kerberized login as .root fails to become root s bin/4172 des suggest reconnection option added to fetch s kern/4184 [netatalk] [patch] minor nits in sys/netatalk o bin/4419 man can display the same man page twice o bin/4420 imp find -exedir doesn't chdir for first entry o bin/4629 grog calendar doesn't print all dates sometimes o bin/4646 [sysinstall] can't fixit with an NFS-mounted CD o bin/5031 gad lpr does not remove original file if -s is used s bin/5173 [PATCH] restore ought to deal with root setable file f s bin/5296 slattach fails creating pidfile with ioctl(TIOCSCTTY): o kern/5577 bde Unnecessary disk I/O and noatime ffs fixes o kern/5587 des session id gets dropped o bin/5609 gad lpd cannot send long files to HP's JetDirect interface f bin/5712 /bin/chio code cleaup and option added o bin/5745 nik [PATCH] Add /usr/local/share/mk to default make(1) sea o kern/5877 kbyanc sb_cc counts control data as well as data data s kern/6668 babkin [patch] new driver: Virtual Ethernet driver s bin/6785 place for all the default dump flags s bin/7232 [sysinstall] suggestion for FreeBSD installation dialo s kern/7264 gibbs [scsi] Buslogic BT 950 scsi card not detected o bin/7265 [patch] A warning flag is added to ln(1). o bin/7287 Incorrect domain name for MAP_UPDATE in multidomain NI a bin/7324 mtm Suggestions for minor modifications to adduser s kern/7556 sl_compress_init() will fail if called anything else t o bin/7868 [patch] morse(6): Morse Code Fixups o bin/7973 gad lpd: Bad control file owner in case of remote printing f kern/8498 dwmalone Race condition between unp_gc() and accept(). o bin/8867 [sysinstall] [patch] /stand/sysinstall core dumps (sig a bin/9123 pax can't read tar archives that contain files > 4GB s bin/9233 gmp's mpq_add and mpq_sub are buggy o kern/9570 dfr [ed] [patch] ed(4) irq config enhancement o kern/9619 rodrigc Restarting mountd kills existing mounts o kern/9679 fix for uninterruptible open in portal file system s bin/9770 jmallett [patch] An openpty(3) auxiliary program o bin/9868 Patch to add "date -a" s kern/9927 gibbs [ahc] the ahc driver doesn't correctly grok switched S o bin/10030 markm Kerberized telnet fails to encrypt when a hostname ali o bin/10358 yar ftp(1) has problems with long pathnames o bin/10611 timed enhancement o gnu/10670 peter cvs doesn't allow digits in local keywords a kern/11024 mtm getpwnam(3) uses incorrect #define to limit username l o bin/11085 Per-host configuration for syslog.conf s bin/11114 harti make(1) does not work as documented with .POSIX: targe o kern/11165 emulation [ibcs2] IBCS2 doesn't work correctly with PID_MAX 9999 o bin/11294 direct logging to other hosts (no local syslogd) o kern/12014 alfred Fix SysV Semaphore handling s kern/12071 fanf [net] [patch] new function: large scale IP aliasing o i386/12088 imp [ed] [patch] ed(4) has minor problem with memory alloc o kern/12543 [fxp] [patch] cumulative error counters for fxp(4) o bin/12545 peter kldload(8) should be more sensitive to errors in *_mod o bin/12801 nvi infinite recursion with options "leftright" and "c o bin/13042 make(1) doesn't handle wildcards in subdirectory paths o bin/13108 authunix_create_default includes egid twice a bin/13128 krion pkg_delete doesn't handle absolute pathnames correctly o kern/13141 se [scsi] Multiple LUN support in NCR driver is broken. o bin/13309 billf Fixes to nos-tun o kern/13326 additional timeval interfaces for o bin/13397 nvi mishandles tags files under certain conditions. s bin/13869 man program saves multiple cached copies of the same f o bin/13882 mount -p is missing the quota options o bin/13936 [sysinstall] no clear indication of how much space to o kern/13978 peter a write to last column bug appears since ncurses conve s kern/13997 rwatson [jail] [patch] RLIMIT_NPROC works unadequately for jai o kern/14166 [bktr] [patch] AVER TVPhone o bin/14318 [sysinstall] sysinstall upon install has some counter- o kern/14549 mdodd 3C509 broken in 3.3 s kern/14562 ken ioctl() codes should be provided for ejecting all remo o kern/14646 kern.boottime affected by APM suspend/resume a bin/14682 gad lprm(1) unaware of lp(1) Environment Variables (LPDEST o bin/14925 getsubopt isn't poisonous enough f conf/15010 rc.firewall: "client" firewall configuration kills inc o bin/15038 [sysinstall] easy to not notice that selection lists m a kern/15095 andre TCP's advertised window is not scaled immediately upon o bin/15168 [patch] Adding tracklist support to fdformat(1) o bin/15205 billf [patch] Addition to random(6) s kern/15436 [syscons] syscons extension: "propellers" p bin/15458 sort(1) doesn't sort correctly in some cases s kern/15478 incorrect utmp/wtmp records update upon connection bei o bin/15480 [patch] make cdcontrol(1) easier to use f kern/15542 [de] de(4) suddenly stops working o bin/15619 peter [patch] standard pppd doesn't authenticate users with o kern/15838 trhodes [msdosfs] [patch] Conversion tables in msdosfs_conv.c o misc/15876 embedded [picobsd] PicoBSD message of the day problems o kern/16021 To support SMP on NEC PC98, call mp_probe() after pmap o conf/16076 markm [PATCH] pam_ssh examples for /etc/pam.conf o kern/16195 rwatson 16-bit uid/gid struct in sys/ipc.h o kern/16339 alc vm/vm_page.h PQ_L2_SIZE options too limited o conf/16584 [sysinstall] Hostname field too small during install ( o kern/16644 [bpf] [patch] Bad comparison expression in bpf_filter. o kern/16765 bde Add support for mark/space parity o bin/16880 [PATCH] pw(8) hardcodes directory creation modes s kern/17108 [nfs] SecureRPC not supported in mount_nfs command s kern/17109 darrenr fastroute crashes for lo0 udp o kern/17185 peter main ncurses headerfile is installed as curses.h o bin/17289 gad [PATCH] wrong permissions on /var/run/printer o bin/17363 crontab(1) leaves files in /var/cron/tabs when interru o kern/17425 [ppbus] [patch] fix two small printing errors in ppbus o kern/17504 ken [cam] [patch] Another Micropolis Synchronize Cache Pro o bin/17546 [sysinstall] sysinstall does not let you configure NIS o bin/17623 date(1) -v doesn't handle time changes (DST) correctly s i386/17662 gibbs [cam] cam_xpt.c incorrectly disables tagged queuing fo o bin/17679 wpaul wicontrol should take multiple args on command line o conf/17993 obrien improving on the default /etc/amd.map o bin/18100 update to src/usr.bin/from/from.c for multiple mboxes s bin/18114 ken msps from iostat is wrong o kern/18200 mdodd 3com 3c509b recognized twice during boot o kern/18271 simplelock: klds not portable across UP and SMP o kern/18293 lack of versapad mouse wheel emulation o bin/18319 "dump" fails with "cannot reopen disk: interrupted sys o bin/18326 dwmalone no /usr/libdata/lint/llib-lc.ln o kern/18496 Possibly a problem between curses.h/runetype.h? o bin/18498 jhb allowing ELF_VERBOSE in /etc/make.conf s kern/18558 silby 3COM 905B realy realy slow when using multiple adapter s kern/18704 GLOB_ERR not handled correctly by glob() s bin/18773 matusita Merge ports/japanese/less to src/contrib/less o gnu/18857 peter Enable GSSAPI in CVS if available o kern/18909 dwmalone select(2) timeout limited to 100000000 seconds s kern/19247 threads uthread_sigaction.c does not do anything wrt SA_NOCLDW s kern/19363 [kernel] [patch] allow processes know about their file s kern/19402 Signals 127 and 128 cannot be detected in wait4() inte o kern/19406 [libc] setenv(3) allocates memory which is not freed b s kern/19535 [procfs] [patch] procfs_rlimit tidyup s conf/19573 des Dot Files for Optional Shells o gnu/19642 kbyanc patch to merge OpenBSD changes to patch(1) o bin/19683 green mount displays incorrect mount point on failed mount o kern/19756 Inability to use linux extended partition (type 0x85) o bin/19772 df output wrong for union-mounts a kern/19782 mkisofs 1.12.1 (i386-unknown-freebsd4.0) doesn't prese o bin/19837 ambrisko [sysinstall] [patch] run Fix It floppy from serial por s kern/19875 net A new protocol family, PF_IPOPTION, to handle IP optio o kern/19909 [nfs] Problem with NFS client in 4.0-STABLE o kern/19913 des add SYN+FIN counter s docs/20028 doc ASCII docs should reflect tags in the sourc o bin/20054 yar ftpd: rotating _PATH_FTPDSTATFILE losts xferlog s kern/20333 des [libpam] ftp login fails on unix password when s/key a o bin/20391 jhb [sysinstall] sysinstall should check debug.boothowto s o kern/20410 [sio] sio support for high speed NS16550A, ST16650A an o bin/20501 mjacob [patch] extra flag to dump to offline autoloaders at E o kern/20529 wpaul gigabit cards fail to link o bin/20742 ps Weird problem with 'more' on 4-1-STABLE o bin/20799 peter top's problem o bin/20881 There's no reason not to build DNSsec-DSA o bin/20889 dwmalone syslogd.c still uses depreciated domain AF_UNIX o bin/20908 [sysinstall] /stand/sysinstall too limited in selectio o bin/20944 natd enhancements, default config file and manpage add o bin/21008 gad Fix for lpr's handling of lots of jobs in a queue o kern/21222 [nfs] wrong behavior of concurrent mmap()s on NFS file o bin/21312 more incorrectly redraws screen on xterm resize o bin/21315 Shells often behave oddly when executing shell scripts o bin/21519 standards sys/dir.h should be deprecated some more s bin/21659 Berkeley db library is statically compiled into libc, o i386/21672 obrien [i386] AMD Duron Rev. A0 reports incorrect L2 cache si o conf/21675 Better and more disktab entries for MO drives o bin/21751 ken libcam's cam_real_open_device() may lose fds on error o kern/21768 rwatson shouldn't trailing '/' on regular file symlink return a kern/21807 trhodes [msdosfs] [patch] Make System attribute correspond to s bin/22034 nfsstat(1) lacks useful features found in Solaris7 o bin/22182 vi options noprint/print/octal broken s kern/22190 threads A threaded read(2) from a socketpair(2) fd can sometim o conf/22308 [nfs] mounting NFS during boot blocks if host map come s bin/22442 linimon [PATCH] Increase speed of split(1) o misc/22914 [bootinst] bootinst messages are not updated o conf/23063 net [PATCH] for static ARP tables in rc.network p kern/23148 getopt(3) works non-intuitively? p bin/23178 'talk' not doing right thing o bin/23180 Certain KOI8 characters are treated as "word breakers" a bin/23254 fenner yacc accepts bad grammer p kern/23304 kbyanc POSIX clock_gettime, clock_getres return errno invalid o kern/23314 scsi aic driver fails to detect Adaptec 1520B unless PnP is a bin/23402 [sysinstall] upgrade ought to check partition sizes o kern/23546 tanimura [snd_csa] [patch] csa DMA-interrupt problem o bin/23562 markm [patch] telnetd doesn't show message in file specified o conf/23822 mtree entries for German X11 man pages a bin/23912 underflow of cnt in vs_paint() by O_NUMBER_LENGTH when o bin/24066 marcel gdb can't detach from programs linked with libc_r o bin/24390 standards Replacing old dir-symlinks when using /bin/ln o bin/24435 [libdisk] changing slice type causes Auto-partition to o bin/24485 [PATCH] to make cron(8) handle clock jumps o bin/24513 peter new options for pppd o kern/24528 Bad tracking of Modem status s stand/24590 standards timezone function not compatible witn Single Unix Spec o bin/24757 yar ftpd not RFC compliant o docs/24786 doc missing FILES descriptions in sa(4) o kern/24882 ktrace not syncing .out file before panic o bin/24953 green adduser ignores passwd_format in login.conf o kern/24959 andre proper TCP_NOPUSH/TCP_CORK compatibility o bin/25013 mv(1) cannot move unresolvable symlinks across devices o bin/25015 cp: options -i and -f do not work as documented o kern/25018 lstat(2) returns bogus permissions on symlinks o bin/25218 mailwrapper(1) invokes sendmail when resources are tig f bin/25278 bs accepts -s -c but not -sc o alpha/25284 alpha PC164 won't reboot with graphics console o kern/25445 kernel statistics are displayed in wrong types and wra o bin/25477 billf pam_radius fix to allow null passwords for challenge/r p kern/25499 [kbd] [patch] buffer paste functionality from keyboard s bin/25598 yar patch to let ftpd output message when changing directo o kern/25733 [intpm] mismatch between error reporting in smbus fram o bin/25736 ac -d option probrem with overdays logon f kern/25777 [kernel] [patch] atime not updated on exec o kern/25866 more than 256 ptys, up to 1302 ptys. f docs/26003 rwatson getgroups(2) lists NGROUPS_MAX but not syslimits.h o bin/26005 MIME quoted-printable encoding added to vis/unvis + bu o kern/26261 [sio] silo overflow problem in sio driver o docs/26286 doc *printf(3) etc should gain format string warnings o kern/26323 [ufs] [patch] Quota system creates zero-length files a kern/26348 [pcvt] scon -s, page fault in HP mode a kern/26534 ipfw [ipfw] Add an option to ipfw to log gid/uid of who cau o kern/26562 [lpt] [patch] /dev/lpt0 returns EBUSY when attempting o kern/26584 kernel boot messages aren't logged correctly on remote o kern/26618 iedowse unmount(2) can't unmount a filesystem whose device has p kern/26646 ache srand() provides only 8-bit table o conf/26658 grog update to src/usr.bin/calendar/calendars/hr_HR.ISO_885 o bin/26695 change request: kill(1)/killall(1) -l output o kern/26787 dd sysctl change request s bin/26803 des Fix fetch to allow FTP puts in '-o' & allow '@' sign i o i386/26812 peter old bootstrap /sys/i386/boot/... still in -STABLE bran o bin/26919 [sysinstall] fdisk should ONLY set one bootable flag o kern/27008 kernel function sysbeep(xxx, 0) does produce sound f bin/27188 jon fix of rsh non-interactive mode behaviour o bin/27216 [sysinstall] can not get to shell prompt from serial c o kern/27232 cel [nfs] On NFSv3 mounted filesystems, stat returns st_bl o bin/27258 getty didn't check if if= isn't empty o bin/27281 vidcontrol(1) does not have error codes o bin/27306 marcel [patch] hw watchpoints work unreliable under gdb(1) o bin/27319 obrien df displays amd pid processes o kern/27403 [lpt] lpt driver doesn't handle flags anymore o kern/27660 Kernel does not return error if adding duplicate addre o bin/27687 fsck wrapper is not properly passing options to fsck_< o bin/27829 pax's uid/gid cache is read-only o kern/27835 execve() doesn't conform to execve(2) spec in syscall f bin/27872 [sysinstall] "Load Config" hangs Compaq DL360 when use o bin/27972 losing information with talk a bin/28081 [sysinstall] /stand/sysinstall errs out if /cdrom/ alr a gnu/28189 [PATCH] fix for detecting empty CVS commit log message o conf/28236 [PATCH] iso-8859-1_to_cp437.scm doesn't contain some u o misc/28255 embedded [picobsd] picobsd documentation still references old . s kern/28260 standards UIO_MAXIOV needs to be made public o bin/28333 rtprio/idprio setuid problems o bin/28364 lex(1) generated files fail to compile cleanly with -W o bin/28620 ru xinstall has no way to pass options to strip o bin/28789 /usr/bin/last does not filter for uucp connects o bin/28972 dwmalone gamma returns same result as lgamma s i386/28975 [rp] RocketPort problems o bin/29062 markm krb4 and krb5 multiply defined version symbol o bin/29119 menu of fdisk editor in 4.3R does not list 'W'rite s bin/29292 sos The functional addtion to burncd(8) o kern/29355 mux [kernel] [patch] add lchflags support o bin/29363 gad [PATCH] newsyslog can support time as extension s kern/29423 [patch] new feature: kernel security hooks implementat o bin/29516 markm telnet from an non FreeBSD host still uses /etc/ttys f o bin/29581 proposed gethostbyXXXX_r() implementation o kern/29698 emulation [linux] [patch] linux ipcs doesn'work o bin/29893 [sysinstall] suggestions for 4.4 sysinstall o bin/29897 des pam_unix patch, which uses loginclass passwd_prompt a docs/30008 doc [patch] French softupdates document should be translat o kern/30052 mbr [dc] [patch] dc driver queues outgoing pkts indefinite o kern/30186 getaddrinfo does not handle incorrect servname o bin/30321 strftime(3) '%s' format does not work properly s ports/30331 portmgr [patch] Conflict between bsd.port.mk MAKEFILE variable o bin/30360 vmstat returns impossible data s kern/30422 [patch] new function: add WDT hardware watchdog driver o bin/30424 Generalization of vipw to lock pwdb while being edited s threa/30464 threads pthread mutex attributes -- pshared o bin/30517 [sysinstall] using sysinstall with install.cfg has no o bin/30542 [PATCH] add -q option to shut up killall o conf/30590 /etc/hosts.equiv and ~/.rhosts interaction violates PO p kern/30608 kern.ps_showallproc=0 doesn't limit queries for a sing o bin/30654 gad Added ability for newsyslog to archive logs f bin/30661 alfred [rpc] [patch] FreeBSD-current fails to do partial NFS a bin/30737 sysinstall leaks file descriptors on restart o conf/30812 [patch] giant termcap database update o bin/30854 bootpd/bootpgw change - skip ARP modifications by opti p kern/30857 [intr] [patch] intr_machdep.c allows access out of arr o bin/30863 bootpd/dovend.c Win95 compatibility improvement and ty o conf/30929 usb [usb] [patch] use usbd to initialize USB ADSL modem o conf/30938 Improving behavior of /etc/periodic/daily/110.clean-tm o bin/31034 dwmalone regularly add original address logging for tcpwrappers o kern/31048 des linprocfs:/proc/meminfo cannot handle multiple swap sp o bin/31199 tunefs error is incorrect when enabling softupdates o kern/31201 [libdisk] [patch] add free_space(chunk) to libdisk o kern/31380 cel [nfs] NFS rootfs mount failure message too cryptic o bin/31387 When getuid()=0, mailwrapper should drop priviledges f kern/31490 [sysctl] [patch] Panic in sysctl_sysctl_next_ls on emp o bin/31588 change request to allow mount(1) to set the MNT_IGNORE o kern/31624 writev may return undocumented ECONNRESET o kern/31647 socket calls can return undocumented EINVAL s kern/31686 andre Problem with the timestamp option when flag equals zer o kern/31708 VM system / fsync / flushing delayed indefinitely? o gnu/31772 New option in dialog(1) o kern/31890 [syscons] [patch] new syscons font o bin/31906 No method available to unwind atexit(3) stack without o bin/31933 pw can interpret numeric name as userid during userdel o kern/31981 [libc] [patch] (mis)feature in getnetent parsing -- co o bin/31985 New /etc/remote flag for tip to append LF to CR o bin/31987 patch to allow dump(1) to notify operators by mail(1) o conf/32108 Proposed Firewall (IPv4) configuration script f bin/32144 [sysinstall] unattended install with sysinstall doesn' a bin/32375 [sysinstall] sysinstall doesn't respect User generated a bin/32411 shutdown's absolute-time handling could be more useful o bin/32501 maxim quot(8) is stupid regarding the filesystem option s usb/32653 usb Added patches to improve USB scanner supportOB o kern/32659 [vm] [patch] vm and vnode leak with vm.swap_idle_enabl o bin/32667 systat waste too much time reading input o bin/32680 [PATCH] Allows users to start jail(1) by hostname as w o bin/32808 dwmalone [PATCH] tcpd.h lacks prototype for hosts_ctl o kern/32812 [bktr] bktr driver missing tuner for eeprom detection. o bin/32828 w incorrectly handles stale utmp slots with jail o bin/33066 rwatson sysinstall does not write to new disks as expected s bin/33133 keyinit outputs wrong next login password o bin/33182 marcel gdb seg faults when given handle SIGALRM nopass for th o kern/33203 [nfs] "got bad cookie" errors on NFS client s docs/33589 doc [patch] to doc.docbook.mk to post process .tex files. a bin/33661 PAP AuthAck/AuthNak parsing problem in pppd o bin/33774 Patch for killall(1) o bin/33809 mux [patch] mount_nfs(8) has trouble with embedded ':' in o bin/33834 strptime(3) is misleading p docs/33852 keramida split(1) man page implies that input file is removed. o bin/33941 /usr/sbin/dev_mkdb dumps core a kern/33963 bde Messages at the serial IO port device probe are mislea o kern/33965 [kbd] [patch] programmable keys of the keyboard (Olida a bin/34010 [patch] keyinit takes passwords less than 10 chars, bu o bin/34146 newfs defaults and vfs.usermount=1 tug at one another s bin/34171 yar ftpd indiscrete about unprivileged user accounts o bin/34199 dwmalone [PATCH] top(1) RES/rss display incorrect o docs/34239 trhodes tunefs(8) man page doesn't describe arguments. o bin/34309 gad lpd does not garantie that controlfiles begin with "cf o bin/34394 peter tgetent returns wrong value in libtermcap o bin/34412 [patch] tftp(1) will still try and receive traffic eve o bin/34497 grog calendar(1) does not understand calendars o bin/34519 pkg_check(8) does not return exit code >0 if verifing o kern/34665 darrenr [ipfilter] ipfilter rcmd proxy "hangs". o gnu/34709 marcel [patch] Inaccurate GDB documentation o bin/34728 DHCP hostname set as Hexadecimal string o bin/34759 Phantasia does not accept [enter] key o bin/34788 dwmalone dmesg(1) issues with console output o bin/34832 /usr/share/man/cat3/setkey.3.gz linked to crypt.3.gz, o kern/34880 luigi Impossibility of grouping IP into a pipe for traffic s f bin/35018 brian enhancing daily/460.status-mail-rejects o bin/35109 [PATCH] games/morse: add ability to decode morse code o bin/35113 grdc enhancement: countdown timer mode o docs/35222 doc [patch] getmsg.cgi: mailing list archive URL regexp su o kern/35234 scsi World access to /dev/pass? (for scanner) requires acce o kern/35262 [boot2] [patch] generation of boot block for headless o kern/35289 [bktr] [patch] Brooktree device doesnt properly signal o kern/35324 Plug and Play probe fails to configure Digicom Modem B o kern/35377 process gets unkillable (-9) in "ttywai" state o bin/35400 [sysinstall] sysinstall could improve manipulation of o bin/35451 PATCH: pkg_add -r able to save local copy to PKG_SAVED o misc/35542 bde [patch] BDECFLAGS needs -U__STRICT_ANSI__ o conf/35545 [patch] enhanced periodic scripts: 100.clean-disks, 10 o bin/35568 make declares target out of date, but $? is empty o docs/35608 doc mt(1) page uses "setmark" without explanation. o docs/35609 doc mt(1) page needs explanation of "long erase". o docs/35612 doc ps(1) page "state" description doesn't mention "spread o docs/35652 trhodes bsd.README seriously obsolete o www/35711 bugmeister the "gnats page" should move to its own subdirectory o bin/35717 which(1) returns wrong exit status for multiple argum o bin/35769 w does not correctly interpret X sessions o kern/35774 [libutil] logwtmp: Suboptimal auditing possibilities f o kern/35846 imp timeout in wi_cmd 11, machine hangs for a second o bin/35886 [patch] pax(1) enhancement: custom time format for lis p bin/35894 [patch] popen.c in cron won't build without LOGIN_CAP o docs/35953 doc hosts.equiv(5) manual is confusing or wrong about host s stand/36076 standards Implementation of POSIX fuser command o bin/36118 [sysinstall] 4.5 Upgrade says it won't touch /usr/src, o bin/36143 [patch] Dynamic (non linear) mouse acceleration added o kern/36170 [an] [patch] an(4) does an_init() even if interface is o bin/36262 [patch] Fixed rusers(1) idle-time reporting to use min o bin/36374 Patch (against core dumps) and improvemets for apmd(8) o bin/36385 luigi crunchgen does not handle Makefiles with includes prop o docs/36432 doc Proposal for doc/share/mk: make folded books using psu o docs/36449 doc symlink(7) manual doesn't mention trailing slash, etc. a kern/36451 [bktr] [patch] Japan IF frequency is incorrect s gnu/36460 cu(1) program does not work very well. f bin/36477 gshapiro mailwrapper doesn't handle rmail calls o bin/36501 grog /usr/bin/calendar can't handle recurring items in the o bin/36553 gad Two new features in newsyslog(8) o bin/36556 [patch] regular expressions for tcpwrappers o bin/36626 login_cap(3) incorrectly claims that all resources fre o docs/36724 darrenr ipnat(5) manpage grammar is incomplete and inconsisten o bin/36740 make ps obey locale (particularly for times) o bin/36757 which(1) ought to append @ if result is symlink o bin/36786 make ps use 24-hour time by default s ports/36901 glewis WITHOUT_X11 Knob for port java/jdk13 o kern/36902 [libc] [patch] proposed new format code %N for strftim o kern/36916 [libdisk] [patch] DOS active partition flag lost in li o kern/36952 ldd comand of linux does not work o bin/36960 grog calendar doesn't effect -t option. o bin/37013 ls directory name output trailing slash duplcation - P o bin/37083 small improvement to talk(1): add clocks o bin/37160 [sysinstall] coredumps when trying to load package dat o kern/37380 jhb [boot0] [patch] boot0 partition list is outdated o conf/37387 grog bsdmainutils/calendar Hungarian addon file o bin/37437 Add HTTP-style support to {vis,unvis}(1). o bin/37442 [PATCH] sleep(1) to support time multipliers p kern/37448 obrien [PATCH] ldd/rtld support for more information of linke o kern/37554 jmg [vm] [patch] make ELF shared libraries immutable once o kern/37555 [kernel] [patch] vnode flags appear to be changed in n o conf/37569 matteo [PATCH] Extend fstab(5) format to allow for spaces in o kern/37600 multimedia [sound] [partial patch] t4dwave drive doesn't record. o bin/37672 pw(8) prints warnings after successful NIS map updates s threa/37676 threads libc_r: msgsnd(), msgrcv(), pread(), pwrite() need wra o docs/37719 kensmith [request] Detail VOP_ naming in a relevant man-page o bin/37733 su(1) does not behave the way it is described in man o bin/37844 [PATCH] make knob to not install progs with suid/sgid o gnu/37910 PATCH: make send-pr(1) respect &'s in /etc/{master.}pa o alpha/38031 alpha osf1.ko not loaded during boot-time of linux-emu enabl o bin/38055 [sysinstall] Groups (creation) item should be before U o bin/38056 [sysinstall] User (creation)'s "Member groups" item sh o bin/38057 [sysinstall] "install" document doesn't display correc o docs/38061 ume [patch] typos in man pages for faith(4) & faithd(8) o bin/38168 [patch] feature request: installing curses-based versi o bin/38256 linking pax to pax_{cpio|tar} s kern/38347 [libutil] [patch] [feature request] new library functi o kern/38445 suggestion: centralize ptrace() permission checking o bin/38478 [sysinstall] In Choose Distributions screen, it's diff o bin/38480 [sysinstall] sysinstall should prompt for normal users o conf/38524 cons25 doesn't support F-keys beyond 12 o docs/38540 blackend [patch] make application name capitalization consisten o docs/38556 remko EPS file of beastie, as addition to existing examples o ports/38593 portmgr Third level ports o bin/38610 [sysinstall] should be able to mount ISO images on DOS o kern/38626 luigi dummynet/traffic shaper: RED: max_th and min_th are li o bin/38727 [patch] mptable(1) should complain about garbage argum f kern/38730 philip Memorex scrollpro mouse is not fully functional o kern/38749 kientzle Diskless booting fails with some DHCP servers (no root o kern/38826 [bootmgr] RFE: BootMgr should provide more identifying o kern/38828 scsi [feature request] DPT PM2012B/90 doesn't work o bin/38854 [sysinstall] resetting during setup causes the target o misc/38937 delay between tracks in digital audio dumps from CD wi o bin/38940 Change: an option to *stat to allow supressing of head o docs/38982 doc [patch] developers-handbook/Jail fix f kern/39047 remko IPSEC Compression (IPCOMP) broken in tunnel mode o kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu o stand/39256 standards snprintf/vsnprintf aren't POSIX-conformant for strings o docs/39348 doc diskless(8): note that kenv fetch of hostname requires o bin/39360 [sysinstall] if linux emu is added as a dependency (an f kern/39425 [amd] Auto mounted directory was not found at boot tim o bin/39439 tcopy will not duplicate tapes with block size larger o bin/39463 mtm [PATCH] Add several options to fingerd f conf/39505 automate BUILDNAME variable for releases o kern/39527 dwmalone getcwd() and unreadable parent directory o docs/39530 doc access(2) man page has unnecessarily broad warning s conf/39580 insecure default settings o ports/39660 portmgr [patch] add ${PKGNAMEPREFIX} to (DOCS|EXAMPLES)DIR o kern/39681 [sysctl] [patch] add hidden kernel boot tunables to sy o bin/39893 setusercontext library call differs umask o bin/39905 johan cleaning sbin/restore code from warnings o conf/39976 vi recovery halting boot process o kern/40017 [patch] allows config(8) to specify config metadata di s kern/40021 [kernel build] [patch] use ld(1) to build kernel with p gnu/40057 bugmeister send-pr -a flag does not work with -f o kern/40369 [kernel] [patch] rman_reserve_resource - when "count > o bin/40391 imp [sysinstall] sysinstall with PCCARD<->ISA bridge gets o docs/40423 doc Keyboard(4)'s definition of parameters to GETFKEY/SETF o kern/40516 [ti] [patch] ti driver has no baudrate set f bin/40538 dougb mergemaster fixes and enhancements o conf/40548 list of /etc/defaults/make.conf undocummented variable o bin/40572 vipw prints silly message if $EDITOR fails o bin/40597 add /sbin/fdisk ability of showing extended partition s threa/40671 threads pthread_cancel doesn't remove thread from condition qu o conf/40777 disktab does not support 2.88MB floppies s kern/40919 usage of ucred->cr_uid in sys/netinet/in_pcb.c o kern/40926 [boot] After Upgrading or Clean Installing 4.6, reboot o usb/40948 usb [usb] USB HP CDW8200 does not work f bin/41060 delphij ready to import gzip 1.3.3 o docs/41089 doc pax(1) -B option does not mention interaction with -z o bin/41159 new sed -c option to allow ; as a separator for b, t a s misc/41179 feature request: LD_LIBRARY_PATH security checks o bin/41190 in sed, report the { linenum instead of EOF linenum on o bin/41213 top(1) blocks if NIS-related entries in passwd(5) are o kern/41215 [kbd] console revert back to kbd0 (AT) after KVM switc o bin/41238 [sysinstall] problems with FreeBSD installation on a d f docs/41270 remko [patch] handbook: confusing directions for kernelconfi o bin/41271 Non-suid-crontab. o bin/41307 libalias: logging of links lifecycle (add/delete/chang o www/41312 cvsadm RCS IDs are off-by-one in the NetBSD cvsweb tree o i386/41364 imp [pccard] NewMedia "Bus Toaster" SCSI card w/ Advansys f usb/41415 usb [usb] [patch] Some USB scanners cannot talk to uscanne o bin/41526 symlinked mount points get mounted more than once w/ m o kern/41543 emulation [patch] feature request: easier wine/w23 support f bin/41556 obrien [PATCH] wtmp patch for lukemftpd o bin/41566 obrien file(1) out of date o i386/41569 silo overflow p stand/41576 standards POSIX compliance of ln(1) a bin/41583 assorted mtree bugs (+fixes) s bin/41647 net ifconfig(8) doesn't accept lladdr along with inet addr o bin/41674 ken iostat column formatting overlaps o docs/41807 doc [patch] natd(8): document natd -punch_fw "bug" o bin/41817 pw groupshow doesn't include the login group o docs/41879 hrs cleanup to DOCROOT/share/sgml/freebsd.dsl o docs/41919 blackend MINI kernel for bootfloppy (Handbook p.342) contains e o kern/41930 declaration clash for ffs() and ${CXX} o bin/41947 hexdump(1) unprintable ASCII enhancement [PATCH] o bin/41949 [sysinstall] sysinstall sorts /etc/rc.conf during netb o bin/42018 krion pkg_info with PKG_PATH searches through tarred pkgs o bin/42022 [sysinstall] non-interactive mode prompts when only a o kern/42065 [kernel] [patch] kern.ps_showallprocs has no effect on o bin/42084 luigi [picobsd] PicoBSD's 'netstat -i' reports negative Ipkt o bin/42162 [sysinstall] installation crashes, md0c filled up. o docs/42182 trhodes formatting-media article: Making Dedicated Mode disks o bin/42217 libdisk segfaults with 1024 bytes/sector disks o kern/42274 [kernel] [patch] Convert defined variable into tuneabl o bin/42336 [PATCH] ISO-fication of /usr/src/contrib/tcp_wrappers: o bin/42386 cleaning code from warnings in libkvm o bin/42387 cleaning code of librpcsvc from warnings o kern/42422 dbm_delete returns -1 instead of 1 when the key does n o kern/42429 [libc] [patch] hash_action called with HASH_DELETE doe o kern/42442 problem in idlequeue/debugging mode ? o kern/42461 mdodd if_wi_pci.c,if_wi_pccard.c lack device_resume/device_s f bin/42469 After mounting by mount_smbfs directories with russian o bin/42663 pw(1): pw useradd assigns unique UID's to multiple use o kern/42728 embedded [picobsd] many problems in src/usr.sbin/ppp/* after c o bin/42803 tconv, tic, captoinfo binaries missing from distributi o bin/42934 [sysinstall] installation procedure on install floppie o kern/42956 [libc] dlclose gives "invalid shared object handle" wh o bin/42974 [patch] syslogd(8): add ISO 8601 date format option o kern/43355 idad driver will work if logical drives dont start at o bin/43367 incorrect report from 'who' after 'shutdown now' from o bin/43368 krion pkg_create fails if target directory does not exist o bin/43434 New option to 'dmesg' which allow to display or not ol o docs/43470 blackend solid-state article out of date (x109). o kern/43474 [nfs] [patch] dhcp.* values not set in kenv by bootp c s bin/43497 mount(8): mount -t nfs -> crunchgen incompatible o conf/43500 rc.syscons "allscreens" improvements o kern/43577 [kernel] [patch] feature request: new kernel option SH o bin/43582 passwd(1) fails on nonexistent users o kern/43611 [crypto] [patch] static-ize some symbols in sys/crypto o kern/43616 [zlib] [patch] static-ize some functions in sys/net/zl o kern/43716 [puc] [patch] puc driver does not recognize Lava Dual- o bin/43819 changed truss output for utrace calls o docs/43823 doc [PATCH] update to environ(7) manpage o kern/43905 jmg [kqueue] [patch] kqueues: EV_SET(kevp++, ...) is non-i o kern/43916 [ex] [hang] Olicom OC-2220 (PC-card) hangs on ifconfig o docs/43941 doc document the Rationale for Upgrade Sequence (e.g. why o docs/44034 trhodes Multiple sysctl variables are not documented o kern/44058 [MAKEDEV] [patch] /dev/ch* is created without group wr o docs/44074 doc [patch] ln(1) manual clarifications s bin/44122 tun0 gets a second ip adress after a disconnect o conf/44170 Add ability to run multiple pppoed(8) on startup o www/44181 www www "Release Information" organization o bin/44212 Unify 'recursive' options -r and -R o kern/44267 [sio] [patch] One more modem PNP id for /usr/src/sys/i o conf/44286 roberto /etc/defaults/rc.conf uses the obsolete ntpdate o kern/44293 thomas Unable to access audio CD under Linux emulation/ATAPIC o kern/44365 [headers] [patch] introduce ulong and unchar types o kern/44372 roberto some kernel options prevent NTP clock synchronization o stand/44425 standards getcwd() succeeds even if current dir has perm 000. o kern/44497 NIC Lags? f kern/44500 [bge] [patch] bge(4): add AC1001 Gigabit NIC as workin o kern/44580 cel [nfs] NFS updates file access time when file is modifi o kern/44587 scsi dev/dpt/dpt.h is missing defines required for DPT_HAND o conf/44717 update login.conf and unify login capabilities o bin/44894 markm telnet(1): as a local non-root user and remote it's po o bin/44915 [sysinstall] 'choose installation media' choose CD-ROM o gnu/44984 Send-pr can use environmental variable $FROM or $PRFRO o docs/45011 trhodes [patch] style(9): '->' and '.' don't require spaces o kern/45026 [nis] Can't set next password change date on NIS serve o gnu/45137 peter [PATCH] CVS 1.11.2 cannot reuse log messages o bin/45193 [PATCH] truss can't truss itself o conf/45222 daily rejected mail hosts report too long o conf/45226 rc Fix for rc.network, ppp-user annoyance o bin/45229 restore(8) -i: ls reports mising files as 'out of memo o bin/45254 [sysinstall] [patch] sysinstall installs things it sho o kern/45293 kevent denies to observe /dev/tty o bin/45333 [PATCH] New option -r for chown and chgrp s bin/45547 sos a patch to make burncd handle .wav files. o bin/45608 [sysinstall] install should config all ether devices, o bin/45701 markm spelling error in rogue o conf/45704 [PATCH] request to change cp866b font to cp866 o bin/45729 make rbootd transfere the default file if it's undefin o kern/45793 [headers] [patch] invalid media subtype aliases in if_ o bin/45830 [kerberos] KDC has problems when listening to IPv6 and o bin/45896 dwmalone setnetgrent() should return error code o conf/46062 remko Remove skel from BSD.root.dist. f i386/46113 remko [bus] [patch] busspace bugs in parameter checking o stand/46119 standards Priority problems for SCHED_OTHER using pthreads o kern/46159 ipfw [ipfw] [patch] ipfw dynamic rules lifetime feature o bin/46163 gad lpc problem. Only root can modify despite man page in o bin/46235 rwatson [sysinstall] NTP servers for Finland require updating o bin/46328 gad patch for lpd o kern/46368 [isa] [patch] MAXDEP in isa/pnpparse.c is too small s bin/46382 ps(1) could use a "repeat" mode o conf/46409 Certain periodic scripts check broken NFS mounts. o stand/46441 stefanf /bin/sh does not do parameter expansion in PS1, PS2, P o conf/46453 [INTERNATIONALIZATION] cons25l2, ISO8859-2 and console s conf/46746 No way to set link addresses through rc.conf o bin/46758 moused enhancements o bin/46888 gad Add script run hook to newsyslog(8) o bin/46905 [sysinstall] FreeBSD 5.x cannot be installed from mult s conf/46913 darrenr ipf denied packets of security run output contains non o bin/46925 sysctl -a goes into an infinite loop... o kern/46973 [syscons] [patch] syscons virtual terminals switching o bin/47235 top reports inaccurate cpu usage o kern/47311 mdodd [patch] Kernel support for NVIDIA nForce2-based mother o bin/47350 rc.network supports only one ppp profile o bin/47387 [PATCH] gprof -K still requires "a.out" arg / override o bin/47540 Make natd configurable in running state without loss o o conf/47566 le [vinum] [patch] add vinum status verification to perio o bin/47576 [PATCH] factor(6)ing of negative numbers o docs/47594 doc [PATCH] passwd(5) incorrectly states allowed username o bin/47596 daily security run complains if timezone changes o bin/47815 stty -all should work. o docs/47818 doc [patch] ln(1) manpage is confusing o docs/48101 doc [patch] add documentation on the fixit disk to the FAQ o misc/48110 [patch] change CVSROOT/log_accum.pl to not send mail i o conf/48133 /etc/rc: improved vi recovery notification o kern/48172 ipfw [ipfw] [patch] ipfw does not log size and flags o conf/48195 /var/db/mounttab error on diskless boot o bin/48309 pppoe connections fail to establish if throughput disa f bin/48318 mtm Segmentation fault in sh with attached script o usb/48342 usb [PATCH] usbd dynamic device list. o bin/48443 mtm /usr/sbin/periodic executes too many files o conf/48444 [patch] security.functions: count connection attempts o kern/48471 pjd [kernel] [patch] new feature: private IPC for every ja o kern/48599 [syscons] [patch] syscons cut-n-paste logic is broken o bin/48603 Getopt is broken. Patch included. o gnu/48638 [PATCH] some bug fixs in libdialog o alpha/48676 alpha Changing the baud rate of serial consoles for Alpha sy o conf/48870 rc [PATCH] rc.network: allow to cancel interface status d o kern/48894 [nfs] Suggested improvements to the NFS read-ahead heu s bin/48962 des [PATCH] modify /usr/bin/fetch to allow bandwidth limit o kern/48976 [modules] nwfs.ko oddity o bin/48989 [sysinstall] Sysinstall's partition editor gets confu a bin/49023 gad [patch] to lpd(8) (printjob.c) to pass source filename o kern/49039 add support for RS485 hardware where direction is cont o ports/49955 portmgr [PATCH] bsd.port.mk: add target to automatically insta o misc/50106 [patch] make 'make release' more flexible behind FWs a o bin/50118 grog calendar(1) dumps core if there is ./calendar/ p conf/50160 ache sl_SI.ISO8859-2 collation sequence is wrong o docs/50211 doc [PATCH] doc.docbook.mk: fix textfile creation p docs/50248 ceri [patch] New FreeBSD books o bin/50300 Make the loader's use of terminal-control sequences op o kern/50310 [libalias] [patch] natd / libalias fix to allow dcc re o bin/50331 Changing uid with pw causes duplicate username/uid pai o kern/50526 [kernel] [patch] update to #! line termination o bin/50569 /bin/sh doesn't handles ${HOME}/.profile correctly o bin/50656 /bin/cp - wrong error on copying of multiple files o kern/50687 ioctl(.., CDIOCCAPABILITY, ...) always reports "Inappr p docs/50735 brueffer [patch] small diff to the developers handbook & outdat o bin/50749 ipfw [ipfw] [patch] ipfw2 incorrectly parses ports and port o docs/50773 jmg [patch] NFS problems by jumbo frames to mention in bge o alpha/50868 alpha fd0 floppy device is not mapped into /dev (XP1000) Fre o bin/50949 BUG: mtree doesn't honor the -P when checking/changing p conf/50956 matteo daily_status_disks_df_flags in /etc/defaults/periodic. o kern/51009 [aue] [patch] buggy aue driver fixed. o bin/51070 [patch] add -p option to pom(6) o kern/51120 MSGBUF_SIZE doesn't work in makefiles a docs/51133 murray RSH environmental variable not described in rcmd(3) s bin/51137 [patch] config(8) should check if a scheduler is selec o bin/51148 Control the cache size for pwd_mkdb to speedup vipw f ports/51152 portmgr [patch] bsd.port.mk: generic SHEBANG_FILES o bin/51205 dwmalone openssl in base system is not compiled thread safe o bin/51296 grog calendar wrong for dates based on day+-num o docs/51480 dds Multiple undefined references in the FreeBSD manual pa o bin/51488 Compat patch: more(1) allowed filename to start with ' p conf/51504 ache New file: src/share/mklocale/zh_CN.GBK.src p conf/51729 ache A patch that can make freebsd support zh_CN.GB18030 o docs/51891 doc DIAGNOSTICS in ed(4) driver manpage don't match realit o conf/51920 Collation for no_NO.ISO8859-1 o kern/51958 usb [usb] [patch] update for urio driver o kern/52026 usb [usb] feature request: umass driver support for InSyst o docs/52071 doc [PATCH] Add more information about soft updates into a o misc/52255 embedded [picobsd] picobsd build script fails under FreeBSD 5.0 o misc/52256 embedded [picobsd] picobsd build script does not read in user/s o kern/52258 imp pccard non-functional, repeated "card inserted/removed o bin/52271 [sysinstall] sysinstall panics in machine with no hard o bin/52469 ppp: Multiple devices using UDP don't work. o bin/52517 murray New functionality for /usr/bin/Mail o kern/52623 [ex] [patch] IRQ error in driver for the Intel EtherEx o ports/52706 portmgr [patch] bsd.port.mk issues warning if a site is explic o kern/52725 [PATCH] installincludes for kmods f bin/52746 tcsh fails to handle large arguements o kern/52764 Impossible to build kernel with COPTFLAGS=-O0 and with s ports/52765 portmgr [PATCH] Uncompressing manual pages may fail due too "a o bin/52782 user ppp dumps core when doing pppctl "show ipcp" afte s bin/52826 krion Feature Request: Adding Timestamps to pkg info upon pk o kern/52907 phk [libc] [patch] more malloc options for debugging progr s ports/52917 portmgr [PATCH] bsd.port.mk: update default value of CONFIGURE p kern/52960 jmg [kbd] kbdcontrol macros don't work when len = 16 o kern/52971 bad macro LIST_HEAD in /usr/include/sys/queue.h o kern/52980 mbr [dc] [patch] dc driver fails to init Intel 21143 Cardb o usb/53025 usb [ugen] [patch] ugen does not allow O_NONBLOCK for inte o bin/53131 [sysinstall] "ALL" could not turn check BOXes ON at pa o kern/53265 imp Make Sierra A555 work in FreeBSD o docs/53271 hmp bus_dma(9) fails to document alignment restrictions o bin/53288 tail will sometimes display more lines than it is told o bin/53341 [sysinstall] [patch] dump frequency in sysinstall is a p bin/53377 [PATCH] su does not return exit status of executed com o bin/53475 cp(1) copies files in reverse order to destination o kern/53506 [partial patch] support gzipped modules o bin/53520 su to another user does not update utmp o bin/53560 logging domain names in wtmp is retarded o docs/53596 doc Updates to mt(1) manual page o www/53676 simon [patch] Don't make people contact doc@ for 404 from no o stand/53682 le [PATCH] add fuser(1) utility o docs/53751 hmp bus_dma(9) incorrectly documents BUS_DMA_ALLOCNOW o bin/53899 mktime gives wrong result in Central timezone o bin/54141 wrong behavour of cu(1) o conf/54170 error from weekly periodic script 330.catman s bin/54185 rwatson UFS2 filesystem ACL flag not enforced o kern/54220 [PATCH] /usr/src/Makefile has wrong instructions for u o bin/54274 piso udp-proxy support is not implemented in libalias o bin/54365 [PATCH] add -u option to install(1) for SysV compatibi o kern/54383 net [nfs] [patch] NFS root configurations without dynamic o kern/54439 [sysctl] [patch] Protecting sysctls variables by given o docs/54461 kensmith [patch] Possible additions to Handbook (Basics and Use o bin/54594 Apply regexps to the entire variable -- a new variable o kern/54604 pjd [kernel] [patch] make 'ps -e' procfs-independent o bin/54683 sh, redundant history s docs/54752 hmp bus_dma explained in ISA section in Handbook: should b o bin/54784 find -ls wastes space o stand/54833 standards [pcvt] more pcvt deficits o stand/54839 standards [pcvt] pcvt deficits o kern/54884 mckusick FreeBSD -stable and -current free space handling for U o bin/54891 libalias/natd and exporting connection-info for identd f kern/54981 sanpei QUIRK: Add support for Lexar 256MB USB drive o conf/55015 [patch] 700.kernelmsg: Security check output enhacemen p stand/55112 standards glob.h, glob_t's gl_pathc should be "size_t", not "int o kern/55163 [jail] [patch] hide kld system details from jails o misc/55387 [patch] users LD_LIBRARY_PATH can interfere with mail o gnu/55394 marcel GDB on FreeBSD 4.8: Deprecated bfd_read. o conf/55470 [pccard] [patch] new pccard.conf entry (I-O DATA WN-B1 s ports/55515 portmgr [patch] extract perl stuff from bsd.port.mk into bsd.p o bin/55539 [patch] Parse fstab(5) with spaces in path names o bin/55546 cdcontrol(1) play tr m:s.f interface is partially brok o kern/55793 [dc] Flaky behavior of if_dc when initializing a LNE10 o kern/55802 Make kernel.GENERIC suitable for diskless use with eth o kern/55835 emulation [linux] [patch] Linux IPC emulation missing SETALL sys o ports/55841 portmgr [patch] Mk/bsd.port.mk: add routines to use ${PORTSDIR o docs/55883 kensmith [patch] handbook advanced-networking/chapter.sgml o conf/55916 rc [PATCH] ppp-user options o gnu/55936 send-pr does not set mail envelope from o kern/55984 ipfw [ipfw] [patch] time based firewalling support for ipfw s bin/56012 [MAKEDEV] [patch] MAKEDEV does not allow creation of t o usb/56095 usb [usb] [patch] QUIRK: Apacer Pen Drive fails to work o kern/56245 [bktr] Distorted and choppy video with bktr-driver on o bin/56249 obrien lukemftpd has two bugs (motd, munged utmp) o kern/56250 [ums] [patch] ums(4) doesn't work with MCT based PS/2 o bin/56447 Extend mt command for AIT-2 tape drives o kern/56451 /compat/linux/proc/cpuinfo gives wrong CPU model o stand/56476 standards cd9660 unicode support simple hack o gnu/56554 re add Cc: maintainer feature to send-pr o kern/56632 MTIO incorrect mt_fileno status after MTEOD o bin/56648 le [PATCH] enable rcorder(8) to use a directory for locat o kern/56664 bad file# in MTIO status buffer after MTEOD until MTRE o kern/56720 [libc] feature request: UNICODE support in Resolver f ports/56928 java jce-aba port should install to $JAVA_HOME/jre/lib/ext o conf/56934 rc.firewall rules for natd expect an interface, but it o conf/56940 pccard.conf entry for PCET10-CL causes syntax errors i s ports/56980 portmgr unprivileged user, extracting of tarballs and pre-inst o bin/57018 le [PATCH] convert growfs to use libufs(3) o kern/57036 No media detected by 3c905b-tx on 4.9-release o bin/57045 trpt(8) option -t was disabled on -current o bin/57054 let test(1) compare the mtime of a file to a string s bin/57088 [cam] [patch] for a possible fd leak in libcam.c o bin/57089 "w" does not honor the -n option o kern/57230 [psm] [patch] psm(4) incorrectly identifies an Intelli o amd64/57250 obrien Broken PTRACE_GETFPREGS and PTRACE_SETFPREGS o stand/57295 harti make's handling of MAKEFLAGS is not POSIX conform o docs/57298 blackend [patch] add using compact flash cards info to handbook o docs/57388 doc [patch] INSTALL.TXT enhancement: mention ok prompt s bin/57407 [patch] Better NTP support for dhclient(8) and friends o misc/57464 [boot] loader(8) seems to confuse files [4.7] o ports/57498 portmgr HEIMDAL_HOME should be defined in src or ports Makefil o ports/57502 tmclaugh ports that define USE_* too late o conf/57517 add parameter for /etc/periodic/daily/210.backup-alias o kern/57522 [PATCH] New PID allocater algorithm from NetBSD p bin/57630 lptcontrol gives "device busy" if device turned off a kern/57696 cel [nfs] NFS client readdir terminates prematurely if ren o bin/57715 [patch] tcopy(1) enhancement a stand/57911 tjr fnmatch ("[[:alpha:]]","x", FNM_PATHNAME) returns FNM_ o docs/57926 doc [patch] amd.conf(5) poorly format as it has both man(7 o kern/57976 simple kernel DDB enhancement o bin/58012 Multihomed tftpd enhancement o bin/58293 vi replace with CR (ASCII 13) doesn't work o kern/58373 mckusick [ufs] ufs inconsistency between 4.9-RC and 5.1 o bin/58390 bsdlabel fails to display an error message if the labe o bin/58483 [patch] mount(8): allow type special or node relative o kern/58497 sysctl knob to return current process' jid f kern/58529 dwmalone [libpcap] [patch] RDWR bpf in pcap. o conf/58557 Summer/Winter-time change causes daily cron to be run o conf/58595 Default NTP configuration o gnu/58656 marcel gdb not ready for prime time o stand/58676 standards grantpt(3) alters storage used by ptsname(3) o bin/58696 /sbin/natd feature request & possible patch o kern/58803 [kernel] [patch] kern.argmax isn't changeable even at o conf/58939 rc [patch] dumb little hack for /etc/rc.firewall{,6} o kern/58967 Kernel kills processes in spite of cputime parameter i o bin/58970 truss coredumps for the no significant reason o docs/59044 doc [patch] doc.docbook.mk does not properly handle a sour o bin/59207 uustat list limit of 201 jobs f kern/59208 multimedia [sound] [patch] reduce pops and crackles and fix selec o bin/59220 obrien systat(1) device select (:only) broken o docs/59240 blackend [patch] handbook update: linux MATLAB s ports/59254 ports that write something after bsd.port.mk o kern/59289 [bktr] [patch] ioctl METEORGBRIG in bktr_core.c forget o www/59307 remko [patch] xml/xsl'ify & update publications page o kern/59456 fdescfs stat / compress creates only empty files o docs/59477 doc Outdated Info Documents at http://docs.freebsd.org/inf o bin/59530 strange bug in /bin/sh o bin/59551 marcel Problem with GDB on latest -CURRENT o bin/59564 Added an option (-S) to from command to also display s o conf/59600 [PATCH] Improved us.emacs.kbd mapping o kern/59698 usb [kbd] [patch] Rework of ukbd HID to AT code translatio o bin/59708 [sysinstall] [patch] add sSMTP support for Mail select o docs/59735 kensmith [patch] Adding a reference to Icelandic Rsync to mirro o docs/59736 kensmith [patch] Updating size of archives in hubs article s kern/59739 [libc] rmdir(2) and mkdir(2) both return EISDIR for ar o bin/59772 ftpd(8)/FreeBSD 5: support for tcp_wrappers in daemon o bin/59774 ftpd(8)/FreeBSD 5: syslog facility may be changed by P o bin/59775 ftpd(8)/FreeBSD 5: incorrect reply for "unimplemented" f kern/59814 remko FreeBSD mknod refuses to create pipes and fifos o docs/59835 doc ipfw(8) man page does not warn about accepted but mean f i386/59854 anholt [agp] [panic] System panics when AMD 762 AGP is loaded o kern/59896 trm driver is not in GENERIC f docs/59900 kuriyama out of date README.txt and .message files at ftp.freeb o kern/59903 [pci] [patch] "pci_find_device" returns [only/at] the o bin/59922 Toshiba Portege hangs with Eicon DIVA T/A o kern/60089 scottl [udf] UDF filesystem appends garbage to files o kern/60174 marcel debugging a kernel module in load/attach routines o kern/60183 sobomax [gre] [patch] No WCCPv2 support in gre f usb/60248 usb [patch] Problem with USB printer HP LaserJet 1300 s kern/60293 net FreeBSD arp poison patch o kern/60307 [pccard] [patch] wrong product id in pccarddevs for Sp o bin/60350 [sysinstall] in Choose Distributions screen, "All" doe o misc/60352 [patch] buildworld fails in sysinstall if terminfo dat o kern/60448 PF_KEY protocol does not have a corresponding AF_KEY a o misc/60503 [modules] small error in modules installation o bin/60510 [patch] change to less(1) for compressed files o docs/60529 ume resolver(5) man page is badly out of date o kern/60550 silby [kernel] [patch] hitting process limits produces sub-o f ports/60558 portmgr [PATCH] bsd.port.mk: automatically verify GnuPG signat f kern/60599 multimedia [bktr] [partial patch] No sound for ATI TV Wonder (ste o bin/60632 UI bug in partition label screen in sysinstall o bin/60636 Enhancement to adduser script. o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I o kern/60697 [pty] [patch] pseudo-tty hack versus telnet race cause f kern/60699 DVD Multidrive udma mode autosensed wrong o kern/60719 ipfw [ipfw] Headerless fragments generate cryptic error mes o bin/60834 [patch] ftpd(8) send_data()+oldway: anonymous transfer o kern/60874 [feature request] auto-assign devfs ruleset numbers o bin/60892 [patch] added -p option to kldxref(8) to allow creatio o kern/60963 [pecoff] [patch] Win32 Applications abort on PECOFF o kern/60982 [pci] [patch] ID for VIA 686A Power Management Unit (f f i386/61005 remko [boot] The Boot Manager in FreeBSD 5.2RC can't boot Fr f kern/61109 [bge] bge on TYAN AMD762-based Thunder/Tiger passes on o amd64/61209 amd64 ppc0: cannot reserve I/O port range o usb/61234 usb [usb] [patch] usbhidaction(1) doesn't support using an o bin/61239 [patch] bootp enhancement, places the dhcp tags into t o kern/61261 obrien generated header, emu10k1-alsa%diked.h not made on amd o bin/61264 [sysinstall] unable To Use VT100 Terminal Emulator (Te o conf/61289 /etc/pccard_ether: please use ifn value on pccard scri o kern/61300 [aue] [patch] Enabling HomePNA PHY on aue(4) for HomeP o docs/61301 doc [patch] Manpage patch for aue(4) to enable HomePNA fun f misc/61322 [patch] bsd.dep.mk disallows shell generated flags in f i386/61348 remko Adaptec 1460D PCI SCSI Card does not work with 5.2RC o bin/61405 cperciva A faster ffs(3) o kern/61415 [net80211] [patch] disable broadcast ssid if_wi and di o kern/61438 [sysinstall] 5.2 nfs tasks running by default after sy f i386/61481 remko [patch] a mechanism to wire io-channel-check to userla o kern/61497 ups [kernel] [patch] __elfN(map_insert) bug o bin/61502 dwmalone Incorrect ip6fw output when adding rules o kern/61503 [smbfs] mount_smbfs does not work as non-root f i386/61545 remko 5.2 release cannot see NIC on Dell 1750 f i386/61579 remko [hang] sis 645dx is not working (but on the supported f i386/61603 remko [sysinstall] wrong geometry guessed s kern/61622 Intel Pro/100 Intelligent Server Adapter unsupported N o conf/61641 grog Martin Luther King, Jr. Day missing from calendar o bin/61666 peter [patch] mount_nfs(8) parsing bug, segmentation fault o docs/61667 doc Obsolete documentation on FreeBSD PnP f kern/61677 Unable to open CDROM tray if boot_cdrom is in loader.c a kern/61744 andre [netinet] [patch] TCP hangs onto mbufs with no tcp dat o bin/61808 [PATCH] Update RPC prgs to allow binding to specific a s kern/61810 mounts done within a chroot show up wrong and can't be o www/61824 www Misleading documentation on FreeBSD installation requi o conf/61847 Additions to file /usr/share/misc/pci_vendors f i386/61858 remko bus_dmamap_sync with BUS_DMASYNC_POSTREAD needs memory o kern/61909 5.2-Current fails to notice change of CD in drive o bin/61971 k5init --renewable fails o bin/61975 ume [PATCH] sync src/usr.sbin/traceroute6.c with KAME o bin/61978 [PATCH] sync src/usr.sbin/setkey/token.l with KAME o i386/62003 remko [loader] [patch] make /boot/loader "reboot" code same o kern/62042 luigi [ipfw] ipfw can't no more reject icmp (icmptypes 8) o bin/62077 Make it possible to abbreviate device names. (patch in o kern/62098 [pccard] [patch] Bad CISTPL_VERS_1 and clash on notebo o kern/62102 alc obreak update o bin/62207 ppp crashes with option 'nat punch_fw' when nat'ed hos o kern/62257 card reader UCR-61S2B is only half-supported f i386/62288 remko [RAID] reopened raid disks on a running system o kern/62323 [kbd] Logitech Cordless MX Duo Keyboard/Mouse combinat o kern/62333 [dc] syslog: kernel: dc0: discard oversize frame (ethe o docs/62412 doc one of the diskless boot methods described in the Hand o bin/62513 Errant /usr/bin/krb5-config on 4-STABLE f gnu/62555 readline 4.3 should be patched o ports/62657 portmgr Port linux-jpeg have decreaseed version number after l o bin/62702 [sysinstall] backup of /etc and /root during sysinstal o bin/62711 [sysinstall] installation: "Insert Next CD" Prompt is o kern/62742 [hang] system "hangs" for a some time while probing at o kern/62746 tjr [smbfs] SMBFS and vfs.usermount. User cannot unmount f ports/62761 portmgr [patch] for phasing out distinfo files o bin/62766 ``systat -vm'' does not work on diskless machines f java/62837 java linux-sun-jdk14 executables hang with COMPAT_LINUX in s stand/62858 standards malloc(0) not C99 compliant o bin/62885 des pam_radius doesn't maintain multiple state fields o kern/62890 ups proc pointer set by fork1 can be stale in fork,rfork,v f bin/62965 krion pkg_add -r fails if fetching multiple packages at a ti f i386/62977 remko Mouse daemon during install/setup o bin/63064 strptime fails on %z o docs/63084 des Several Man-pages reference non-existant pam.conf(5) a o kern/63096 rwatson [mac] [patch] MAC entry point for route manipulation o ports/63108 obrien amd64/bento-fix: devel/gdb52 and devel/gdb53 o amd64/63188 amd64 [ti] ti(4) broken on amd64 o bin/63197 tftp Bus error, core dumped o docs/63215 doc Wrong prototypes in mi_switch(9) (ref docs/24311) o bin/63319 burncd fixate error o bin/63413 dbm_delete return value incorrect o conf/63527 AM/PM date format should be localized. o www/63552 remko Validation errors due to CAPs in attribute values o docs/63570 ceri [patch] Language cleanup for the Handbook's DNS sectio o bin/63608 Add a -c option to time(1) to display csh output f i386/63628 [loader] [patch] i386 master boot record to allow boot o bin/63659 /usr/sbin/pw does not honor symlinks in skeleton direc o ports/63716 portmgr [patch] Mk/bsd.port.mk: move sysctl to ${SYSCTL} and a f kern/63746 vmnet0 makes vmnet4096 f i386/63815 remko boot loader waste a lot of time (10 min) while booting o usb/63837 usb [uhid] [patch] USB: hid_is_collection() only looks for o kern/63863 glebius [netgraph] [patch] feature request: implement NGM_ELEC o bin/64036 Linux application Sophos Mailmonitor not opening TCP p o kern/64114 [vga] [patch] bad vertical refresh for console using R o kern/64178 jmg [kqueue] [patch] kqueue does not work with bpf when us f ports/64304 portmgr geography category o bin/64327 [patch] make(1): document surprising behaviour of assi o conf/64381 lo0 not up and no IPs assigned after install o kern/64522 3COM 3C920B onboard Asus P4R800-VM not supported o kern/64556 [sis] if_sis short cable fix problems with NetGear FA3 o kern/64588 [joy] [patch] Extend joystick driver architecture to s f i386/64626 remko [SMP] AP initialization problem on GIGABYTE GA-7DPXDW+ o kern/64788 nsswitch with ldap and starting ppp on boot gives erro o bin/64811 systat can't display big numbers in some fields s kern/64875 standards [libc] [patch] [feature request] add a system call: fd o bin/64921 vmstat -i is not reporting IRQ usage on a shared IRQ o bin/65045 ftp doesn't remember binary mode if setting at command p docs/65065 danger [patch] improper language ntpd(8) man pages f i386/65124 remko [bootloader] Unable to disable TERM_EMU cleanly o kern/65206 adding floppy drive seems to force PIO mode on hard dr o bin/65228 [Patch] Allow rup(1) to parse hostnames from a defined o bin/65258 save /etc/rc.firewall from changing for standard firew o kern/65278 ups [sio] [patch] kgdb debugger port initialization destro o bin/65299 vi temp path contains double / o bin/65306 obrien [patch] Portability fixes for FreeBSD build utils, par f ports/65344 portmgr [patch] USE_ macros for graphics libraries o kern/65355 [pci] [patch] TC1000 serial ports need enabling o kern/65448 jhb _mtx_unlock_sleep() race condition if ADAPTIVE_MUTEXES o docs/65477 bmah release notes: installation instruction fail to mentio o bin/65483 vi -r crashes f i386/65528 remko [psm] mouse cursor disapears on moving o kern/65627 [i386] [patch] store P3 serial number in sysctl o bin/65649 gad Add `-u name' option to env(1) o bin/65707 scp does not deal with local file copies with spaces o kern/65769 usb [usb] Call to tcflush(x, TCIFLUSH) stops input on usb- o bin/65803 gad bin/ps enhancements (posix syntax, and more) s ports/65804 portmgr [PATCH] bsd.port.mk is gratuitously slow o bin/65973 Problem logging in to the NIS slave and NIS Client o ports/66032 portmgr [PATCH] bsd.port.mk: clean room installation o kern/66095 [pam] template_user is broken in pam_radius o kern/66185 [twe] twe driver generates gratuitous warning on shutd o kern/66225 [netgraph] [patch] extend ng_eiface(4) control message o docs/66265 doc [patch] Document what -f and LD_TRACE_LOADED_OBJECTS_F o kern/66268 glebius [socket] [patch] Socket buffer resource limit (RLIMIT_ o gnu/66279 less(1) -- add support for stty(1) erase2/VERASE2 cont p docs/66289 brueffer [patch] lib/libc/gen/ualarm.3 refers to non-existent a o docs/66296 doc [patch] contrib/amd/amq/amq.8 uses log_options instead p bin/66311 fenner TCPDUMP ISAKMP payload handling denial-of-service Vuln o ports/66342 portmgr [PATCH] fix ECHO_MSG breakage in java ports o docs/66343 imp [patch] unlisted supported card on man page for wi(4) o stand/66357 standards make POSIX conformance problem ('sh -e' & '+' command- o ports/66389 portmgr [PATCH] bsd.port.mk: follow MOVED ports o bin/66445 [patch] Add options to last(1) to ignore ftp logins (u o alpha/66478 alpha unexpected machine check: panic for 4.9, 4.10, 5.2 or o ports/66480 openoffice editors/openoffice.org-1.1 port uses root's $HOME for o docs/66483 doc [patch] share/man/man4/csa.4 grammar nits p bin/66492 cpio -o -Hustar creates broken timestamps o docs/66505 trhodes escaping '~' and '$' characters in login.conf setenv o o stand/66531 standards _gettemp uses a far smaller set of filenames than docu o kern/66547 usb [usb] Palm Tungsten T USB does not initialize correctl o kern/66564 [xl] 3c920-MV00 PHY detection problem s ports/66566 portmgr [PATCH] bsd.port.mk: fix build when /usr/obj/usr/ports o kern/66589 processes get stuck in "inode" state when using quota o bin/66594 marcel gdb dumps core o bin/66677 mv incorrectly copies somedir/.. to ./.. when it cross o conf/66726 /etc/periodic/security/ 800.loginfail script reports f p bin/66763 matteo mdmfs: sync arguments with those of newfs, disallow '- o docs/66771 imp [patch] usr.sbin/pccard/pccardc/pccardc.8 grammar and o docs/66775 roam [patch] clarification to committer's guide that port n o bin/66893 [patch] rpc.yppasswdd(8): Linux NIS clients connecting o bin/66941 [patch] gcc2.95 (FreeBSD-specific): fix unacceptable s o kern/66981 Can't read audio CDs with a samsung sw-252B drive ??? o bin/66988 [Patch] apm.c check validation of the returned values o i386/67011 mdodd [vpd] [patch] MFC of vpd driver for IBM xSeries etc o bin/67041 "fortune -m" peeks in "fortune" file only f i386/67055 remko [psm] Mouse (wheel) detection problem on SIS748/964 ba o bin/67142 rpc.yppasswdd incorrectly throws errors about invalid o bin/67172 w,finger display the remote host incorrectly o bin/67231 [patch] pam_krb5 doesn't honor default flags from /etc o bin/67307 ready to import bootstrap_cmds/decomment from Darwin o bin/67308 ready to import bootstrap_cmds/relpath from Darwin o kern/67309 acpi zzz reboot computer (ACPI S3) f i386/67383 remko [i386] [patch] do a better job disassembling code in 1 f ports/67436 portmgr [patch] bsd.port.mk: GNU_CONFIGURE_PREFIX_SUBDIR o ports/67437 portmgr [patch] bsd.port.mk: NO_BUILD and PKGNAMESUFFIX do not o misc/67502 cvsadm cvs-all commit message did not include all files touch o kern/67545 [nfs] NFS Diskless Mount Option Suggestion f conf/67549 No Cents for es_ES monetdef (Euro) o bin/67550 Add BLK_SIZE option to tftpd server o www/67554 www man-cgi visual glitch on 3-word titles o gnu/67565 SIGPIPE processing in cvs 1.11.5 may lead to SIGSEGV i f i386/67578 remko [kbd] Keyboard error IBM xSeries 335 o kern/67580 request to add hints for boot failures f kern/67627 phk [panic] gbde kernel panic o bin/67723 FreeBSD 5.x restore cannot handle other platforms/Linu o kern/67763 [pccard] [patch] PCMCIA: MELCO manufacturer code shoul f i386/67773 remko 5.x series - md5 on dev no longer works e.g. md5 /dev/ s ports/67815 shaun graphics/ImageMagick no longer recognizes FlashPix o kern/67830 [smp] [patch] CPU affinity problem with forked child p o alpha/67903 alpha hw.chipset.memory: 1099511627776 - thats way to much : o bin/67943 find(1) fails when current directory is not readable b o bin/68014 stty -pendin does not turn off pendin mode o bin/68062 standalone repeat(1) command o kern/68081 [headers] [patch] sys/time.h (lint fix) o conf/68108 [patch] Adding mac-address /conf selector to diskless s kern/68110 hsu [netinet] [patch] RFC 3522 for -HEAD f i386/68117 remko [nic] serious network collisions after NIC "media/medi o bin/68134 rwatson 'invalid hostname' displayed in w/who output a kern/68189 luigi arp -a discloses non-jail interfaces within a jail o kern/68192 Cannot use quotas on jailed systems o usb/68232 usb [ugen] [patch] ugen(4) isochronous handling correction o kern/68311 [patch] it is impossible to override defaults with ker o bin/68312 be able to create fdisk partions using similar syntax o kern/68315 [ata] [patch] atacontrol(8) addspare for 4.x o kern/68317 [kernel] [patch] on soft (clean) reboots clean dmesg o o bin/68328 enable configuration of extra listen sockets in syslog o usb/68412 usb [usb] [patch] QUIRK: Philips KEY013 USB MP3 player o kern/68435 wpaul xl driver in freebsd 5.x only works if promiscous mode o bin/68437 conscontrol DEVDIR -> _PATH_DEV fix and more o kern/68458 Burning DVD causes lots of FAILURE - READ_SUBCHANNEL I o kern/68459 [vfs] [patch] Patches to mknod(2) behave more like Lin o kern/68514 [re] Realtek driver halts on oversized frames f i386/68518 remko [agp] [hang] hangs while loading 82443BX agp during bo p conf/68524 Including the Basque in the system p conf/68525 matteo Loader's verbose boot mode has rc.d/localdaemon not na o bin/68527 Resizing 'top' running in a terminal to one column wid o bin/68552 tip(1) does not set noncanonical mode input processing o bin/68586 dwmalone [patch] allow syslogd to forward to non-default ports o kern/68623 [sf] [patch] sf(4) (Adaptec StarFire) multiple problem o kern/68690 [libc] write(2) returns wrong value when EFAULT p bin/68691 dwmalone syslogd - correct program name handling s kern/68692 andre [net] [patch] Move ARP out of routing table o kern/68719 trhodes [msdosfs] [patch] poor performance with msdosfs and US f i386/68754 remko [hang] [smp] SMP reset bug (Tyan Thunder100, 440BX chi o kern/68765 [mmap] a little data can be stored beyond EOF. o bin/68797 cut(1) patches to fflush after each write if an option o docs/68845 ru The .At macro produces unexpected results o bin/68848 [patch] find(1) shows pathname as optional but it isn' a bin/68904 krion pkg_install fixes (_PATH_*, sprintf -> snprintf, strcp o misc/68905 core dump ownership issue o bin/69010 [patch] Portability fixes for FreeBSD build utils, par s threa/69020 threads pthreads library leaks _gc_mutex o kern/69064 [kernel] [patch] No multiple ip4/6's could assigned to o bin/69083 [patch] basic modelines for contrib/nvi o bin/69164 marcel GDB/amd64: coredump while debugging a core file. f i386/69257 remko [i386] [patch] in_cksum_hdr is non-functional without o bin/69268 wpaul [patch] Fix ndiscvt(8) to warn you if it's going to ge o ports/69309 ale mysql database backup script for periodic/daily o bin/69362 mbr amd(8) does not properly detect the local network sett o bin/69398 [patch] cleartext display of password in login.c o kern/69448 socket.h: cmsghdr macros don't work with Alpha (and ot o kern/69502 [modules] kldload will load modules that are in the st o kern/69650 [patch] make getserv* functions work with nsdispatch o amd64/69705 amd64 IPC problem (msq_queues) f i386/69722 remko [wi] wi0: init failed, Lucent Technologies WaveLAN/IEE o kern/69730 [puc] [patch] puc driver doesn't support PC-Com 8-port o i386/69750 acpi Boot without ACPI failed on ASUS L5 o kern/69825 [libc] 1st group supplied to setgroups() does not take o kern/69826 [libc] 16th group has no effect when accesing file on o docs/69861 doc [patch] usr.bin/csplit/csplit.1 does not document POSI o bin/69875 [patch] mlxcontrol(8): `mlxcontrol status ' o kern/69963 ipfw [ipfw] install_state warning about already existing en o ports/69965 portmgr [patch] check for moved ports in "make deinstall-all" o bin/69986 [sysinstall] [patch] no job control in fixit shell on o kern/69989 killing process that uses snp + unloading module + lis o bin/70002 [sysinstall] fails to locate FTP dirs if the OS has pa o conf/70048 magic(5) file has a typo at second test for type GLF & o bin/70182 [patch] fortune -e implementation bug o docs/70217 doc [patch] Suggested rewrite of docproj/sgml.sgml for cla o bin/70245 ru Change to src/release/Makefile to aid documentation o conf/70252 add System Administrator Appreciation Day to calendar o bin/70283 mtm adduser aborts in batch mode with comments or blank li o bin/70297 request to make amd timeouts per-mount local o bin/70335 inconsistent syslog behavior when max children configu o bin/70336 telnetd always exits with value 1 f usb/70362 sanpei [usbdevs] [patch] LaCie 160GB USB drive o kern/70401 darrenr [modules] Could not load ipl.ko when no INET6 in the k o bin/70476 sbin/reboot change, -p behavior default for halt o bin/70511 When fread()ing with buffering turned off, many syscal o usb/70523 usb [usb] [patch] umct sending/receiving wrong characters o bin/70528 No libffi on amd64, either with native compiler or fro o bin/70536 reboot -dp tries to dump when powering off o docs/70583 ceri [patch] Update freebsd-glossary o kern/70608 [irq] ethernet-error (card uses duplicate IRQ as USB c o i386/70610 i386 [speaker] [patch] spkr(4): hardcoded assumption HZ == o docs/70652 hmp [patch] New man page: portindex(5) o kern/70708 [nfs] gcore/procfs not finding /proc/pid/file on repea o conf/70715 Lack of year in dates in auth.log can cause confusing o bin/70756 [PATCH] indent(1) mishandles code that is protected fo o kern/70798 Compatibility: Sun/Solaris has an fcntl() F_DUP2FD. Fr o kern/70810 [pci] [patch] Enable SMBus device on Asus P4B series m o stand/70813 standards [PATCH] ls(1) not Posix compliant o ports/70831 tobez make perl5.8 port SU_CMD aware o i386/70832 i386 [re] serious problems with RealTek NIC using re0 drive o kern/70904 darrenr [ipfilter] ipfilter ipnat problem with h323 proxy supp o usb/70942 usb [usb] Genius Wireless USB mouse: moused doesn't work c o kern/71045 [dhcp] DHCP-Request is sets other device's ip to null, o bin/71098 CVS keywords are not expanded with CVS 1.12.x o kern/71184 andre tcp-sessions hangs on FIN_WAIT_2 state o gnu/71210 Update to GNU sdiff: add user-preference for merge key o kern/71219 /proc/*/map dont tell file offset o conf/71254 ncurses: xterm vs. cons* termtypes or sc(4) o kern/71258 [vm] [patch] anonymous mmappings not always page align f kern/71280 [aue] aue0 device (linksys usb100tx) doesn't work in 1 o kern/71334 [mem] [patch] mem_range_attr_{set|get} are no longer k o kern/71366 ipfw [ipfw] "ipfw fwd" sometimes rewrites destination mac a o conf/71386 loader.conf: hint.apic.0.disabled="YES" doesn't work. o usb/71416 usb [usb] Cryptoflex e-gate USB token (ugen0) detach is no o usb/71417 usb [usb] Cryptoflex e-gate USB token (ugen0) communicatio a kern/71422 csjp LOR in sys/net/bpf o kern/71450 [de] de(4): MAC address change on 21040 "Tulip" Ethern o usb/71455 usb [usb] Slow USB umass performance of 5.3 o kern/71469 default route to internet magically disappears with mu a kern/71474 bms route lookup does not skip interfaces marked down o kern/71532 Multiple SCSI-Busses are seen differently by BIOS, loa p ports/71544 arved devel/tvision might need these extra patches o conf/71549 /etc/termcap missing passthrough printing entries for f i386/71586 remko [ata]: FreeBSD 5.3-BETA3 #3 hang during boot on HP Vec o usb/71605 usb [umass] [patch] umass doesn't recognize multiple slots o kern/71608 [pccard] XIRCOM REM56-100 Ethernet 10/100 can't config o bin/71613 [PATCH] cleanup of the usr.sbin/traceroute6 code o bin/71616 [PATCH] cleanup of the usr.sbin/yp_mkdb code o bin/71617 [PATCH] cleanup of the usr.sbin/ypserv code o bin/71618 [PATCH] cleanup of the usr.sbin/timed code o bin/71619 [PATCH] cleanup of the usr.sbin/tcpdump code o bin/71620 [PATCH] cleanup of the usr.sbin/sysinstall code o bin/71621 [PATCH] cleanup of the usr.sbin/sliplogin code o bin/71622 [PATCH] cleanup of the usr.sbin/sicontrol code o bin/71623 [pcvt] [patch] cleanup of the usr.sbin/pcvt code o bin/71624 [PATCH] cleanup of the usr.sbin/rtadvd code o bin/71625 [rpc] [patch] cleanup of the usr.sbin/rpc.ypupdated co o bin/71626 [PATCH] cleanup of the usr.sbin/rpc.statd code o bin/71628 [PATCH] cleanup of the usr.sbin/rpcbind code o bin/71629 [PATCH] cleanup of the usr.sbin/pppstats code o bin/71630 [PATCH] cleanup of the usr.sbin/pppd code o bin/71631 [PATCH] cleanup of the usr.sbin/pppctl code o bin/71632 [PATCH] cleanup of the usr.sbin/ndp code o bin/71659 [PATCH] cleanup of the usr.sbin/mount_portalfs code o bin/71660 [PATCH] cleanup of the usr.sbin/kgmon code o bin/71661 [PATCH] cleanup of the usr.sbin/keyserv code o bin/71664 [PATCH] cleanup of the usr.sbin/fwcontrol code o bin/71665 [PATCH] cleanup of the usr.sbin/dconschat code o bin/71667 [PATCH] cleanup of the usr.sbin/bootparamd code o bin/71669 [PATCH] cleanup of the usr.sbin/atm code o bin/71671 [PATCH] cleanup of the usr.sbin/apmd code o kern/71683 [nis] NIS/NFS problem [4.8] o bin/71749 [PATCH] truss -f causes circular wait when traced proc o conf/71767 [patch] French translations for keyboards keymaps desc s bin/71773 des [patch] genericize.pl -c misses some comments o kern/71774 [ntfs] NTFS cannot "see" files on a WinXP filesystem o kern/71813 I get a geometry error on my wd 200gb hd o kern/71833 multiple process disc access / injustice s bin/71855 [patch] making kdump WARNS=6 clean f i386/71924 remko timeouts with ata+hpt366 controller on BE6II motherboa o bin/71928 Disk quota doesn't work with numeric login o conf/71952 missing past participles in /usr/share/dict/words s kern/71965 andre TCP MSS issue in combination with ipfw fwd o conf/71994 [patch] dot.login: login shell may unnecessarily print o stand/72006 standards floating point formating in non-C locales f ports/72067 obrien [PATCH] editors/vim: i18n and extra support o conf/72076 [patch] German locales use old %d.%m.%y date format in o bin/72124 [patch] rm -P can't unlink u-w files o bin/72173 csplit(1) ver 1.9 wrong behaviour with negative offset o i386/72179 i386 [acpi] [patch] Inconsistent apm(8) output regarding th o kern/72194 stack backtrace after wakeup from sleeping state s ports/72202 simon portaudit warns about the CVS server vulnerability whi o kern/72217 [netinet6] [patch] Bug in calculation of the parameter o conf/72219 Sysinstall doesn't enable 3rd party MTA in rc.conf a kern/72224 anholt [agp] umass devices broken by DRM (AGP issue?) o conf/72277 [patch] update for /usr/share/skel o kern/72293 [de] de(4) NIC performance degradation with debug.mpsa o kern/72296 [bfe] bfe0: discard oversize frame (ether type 5e0 fla o kern/72352 [puc] [patch] Support for VScom PCI-100L is missing fr o bin/72355 Can't run "strings" on a (disk) device, even if you wa o usb/72380 usb [usb] USB does not work [dual Celeron Abit] o bin/72398 emulators/mtools man pages are too funky for getNAME(1 o kern/72433 [amr] [patch] AMR raid, amrreg.h struct amr_enquery3 a o conf/72465 [patch] United States International keyboard layout fo o kern/72468 andre OS does not know how to handle broadcast... o kern/72498 [libc] timestamp code on jailed SMP machine generates o bin/72501 cperciva script(1) loops after EOF is read p conf/72505 brian [patch] Fix rc.d/ppp-user to make use of rc.subr o bin/72517 Minor Bug in /etc/login.access o kern/72585 [syscons] [patch] iso05-8x16.fnt lacks letter q o bin/72588 [patch] iostat(8) tty stats field concatenation a kern/72639 5.3-BETA7 kernel config option ALT_BREAK_TO_DEBUGGER d o kern/72659 jeff [sched_ule] [patch] little bug in sched_ule interactiv o bin/72674 [patch] make /usr/bin/whois use SK-NIC's whois server o usb/72732 usb [patch] Kyocera 7135 quirk. o usb/72733 usb Kyocera 7135 Palm OS connection problem. o misc/72741 ssh broken on fixit cd (missing /dev/random) o bin/72787 gtar in base system doesn't seem to honor --one-file-s o bin/72793 [patch] wicontrol(8) prints out non-printable chars in o bin/72875 des Some utilities used in debugging do not function prope o conf/72901 [patch]: dot.profile: prevent printing when doing an s a kern/72920 emulation [linux]: path "prefixing" is not done on unix domain s f kern/72933 yar [netgraph] [patch] promisc mode on vlan interface does a conf/72978 [patch] add danish syscons keymap with accents o kern/72987 ipfw [ipfw] ipfw/dummynet pipe/queue 'queue [BYTES]KBytes ( o kern/72995 multimedia [sound] Intel ICH2 (82801BA) - sound nearly inaudible o kern/72997 [sk] Network performance down [6-CURRENT] o sparc/72998 sparc64 [kernel] [patch] set_mcontext() change syscalls parame o kern/73034 [libalias] libalias does not handle lowercase port/epr o usb/73056 usb [usb] Sun Microsystems Type 6 USB mouse not working in p bin/73110 rwatson [patch] ffsinfo conversion from atol() to strtol() p bin/73112 rwatson [patch] change atol() to strtol() in badsect o kern/73145 severe network slowdown with DEC 21140 network card o kern/73195 bad PATH, missing HOME and TERM env var on single boot o kern/73276 ipfw [ipfw] [patch] ipfw2 vulnerability (parser error) o kern/73294 [hang] hangs in default mode when AccelePort DIGI XR P f i386/73308 remko unable to install on AMD 2500+,NF2,GF MX440 o kern/73328 top shows NICE as -111 on processes started by idprio o bin/73337 nsswitch: potential invalid free o kern/73375 [panic] vinvalbuf: dirty bufs during umass detach o bin/73411 [patch] FTPD could set attributes to 0600 while upload o kern/73492 [feature request] Reliable Temporary Files o kern/73496 [feature request] A more flexible version of mkstemp() p kern/73514 le [ntfs] [patch] mount_ntfs: can't access to a large fil o kern/73517 [pfil] pfil_hooks (ipfw,pf etc) and ipsec processing o o www/73549 brd Mail list archive navigation difficulty s www/73551 www List archive 'quoted-printable' corruption. f usb/73553 usb [usb] Microsoft USB Internet Keyboard not recongized o kern/73646 [ahd] I/O performance: with/without MEMIO option o conf/73653 Proposal of changes to the GENERIC kernel configuratio o conf/73677 rc [patch] add support for powernow states to power_profi o docs/73679 doc FreeBSD 5.3 Release notes mention new natd(8) function s ports/73743 x11 XOrg/XFree xauth add/startx problem o kern/73777 emulation [linux] [patch] linux emulation: root dir special hand o conf/73786 added WARNING in spanish to stable-supfile p conf/73799 Move the last stuff out of usbd.conf o kern/73823 acpi [feature request] acpi / power-on by timer support o bin/73884 Add NetBSD's rawrite32 to install tools o i386/73921 i386 [sysctl] [patch] sysctlbyname for machdep.tsc_freq doe o conf/73929 dougb [patch] /etc/rc.d/named will not work with ports-named o kern/73961 [fdc] floppy disk drive performance problem [new in 5. o conf/74004 [PATCH] add fam support to inetd.conf o conf/74006 dougb [PATCH] /etc/rc.d/named minor fixes o kern/74037 [ppc] ppc(4) cannot find parallel port on Toshiba M30 o bin/74140 ntpdate(8): ntpdate does not try all IPs for a host o i386/74153 i386 [pst] FreeBSD 5.3 cannot boot ftom pst o kern/74159 [headers] [patch] fix warnings concerned with header f o bin/74178 [patch] grdc(6) - scrolling does not work and "AM"/"PM o usb/74211 usb USB flash drive causes CAM status 0x4 on 4.10Release o conf/74213 [PATCH] Connect src/etc/periodic/security/610.ipf6deni f i386/74218 remko boot floppy (2nd time) read error o kern/74281 [digi] digi(4): Digiboard PCI Xem (64-ports) detection o kern/74314 [resolver] DNS resolver broken under certain jail cond o i386/74327 i386 [pmap] [patch] mlock() causes physical memory leakage s kern/74352 NFSCLIENT and booting to an mfsroot via TFTP are mutua f usb/74358 usb [umass] unplugging at boot time an umass device crashe o bin/74360 [patch] ndiscvt(8) generates a driver which doesn't ma a bin/74387 linprocfs can be mounted on top of itself many times o bin/74404 sh(1) does not handle signals to subshells properly an s ports/74416 fenner update for rtpmon o bin/74450 [libalias] [patch] enable libalias/natd to create skip o usb/74453 usb Q-lity CD-RW USB ECW-043 (ScanLogic SL11R chipset) doe o i386/74454 i386 [bsd.cpu.mk] [patch] Adding VIA Eden family o kern/74498 [pccard] [patch] new CIS id for Intersil WiFi, pccard o bin/74506 [patch] bad top command display o usb/74557 usb imation 500mb usb key can only be written halfway on f o bin/74567 [2TB] [patch] du doesn't handle sizes >1TB o amd64/74608 amd64 [mpt] [hang] mpt hangs 5 minutes when booting o usb/74609 usb [usb] [patch] allowing cdma modems to work at full spe o docs/74612 doc [patch] updates to the glossary o i386/74650 i386 System Reboot with umount command o gnu/74654 libsupc++.a lacks necessary functions o i386/74658 i386 [ata] ATAPI CD not recognized after booting FreeBSD 4. o bin/74743 [patch] wctype.c declares static array on stack o ports/74752 simon make takes a little while before anything visible happ o kern/74777 [request] Bootup "beep" in 5.3 should be disabled by d o kern/74786 [irq] [patch] Smartlink Modem causes interrupt storm o o amd64/74811 amd64 [nfs] df, nfs mount, negative Avail -> 32/64-bit confu o conf/74817 rc [patch] network.subr: fixed automatic configuration of o kern/74827 [fdc] Problem writing data to floppies [5.3-specific] o usb/74849 usb [usb] [patch] Samsung SPH-i500 does not attach properl o kern/74868 [acpi] ACPI enabled in 5.3 Release make Kernel reboot o usb/74880 usb [usb] [patch] Samsung N400 cellphone/acm fails to atac o ports/74907 apache [PATCH] www/mod_perl: cleanups o kern/74920 [ep] [panic] 3Com 3C509-Combo Etherlink III panics sys o i386/74966 i386 [rl] Realtek driver seems to misinterpret some packets s kern/74986 glebius [patch] sysctlize a parameter of if_em's interrupt mod o ports/75015 bz cvsup on amd64 coredumps with either runsocks or -l o i386/75090 i386 [ata] READ_BIG errors with Sony CRX1611 o kern/75121 Wrong behaviour of IFF_LINK2 bit in 6in6 gifs? o kern/75132 jhb [puc] [patch] add support for the Davicom 56PDV PCI Mo o conf/75137 jhb add snd_* modules support to /etc/rc.d/mixer o bin/75177 philip Bug selecting psm operation level in moused o kern/75254 [wi] [patch] PRISM3-based adapter ZCOM XI330 doesn't w o kern/75298 [pccard] [patch] add missing device id for pccard brid o kern/75312 [rl] Built-in RTL8281BL on Asus Pundit AB P2800 is not o bin/75362 contrib/smbfs mount_smbfs No buffer space available o bin/75378 login(1): login/wtmp/utmp not updating properly o kern/75380 can not open("..") from top-level directory of UFS2 hd o i386/75420 i386 CMD 648 PCI not work o conf/75502 [patch] Fix LC_NUMERIC and LC_MONETARY for de_CH local o bin/75570 chflags nosappnd directory doesn't work o bin/75585 matteo [unionfs] mount -p on unionfs results in non parsable o bin/75632 le gvinum commands not consistent with vinum doc o gnu/75662 delphij less -f behavior contradicts man page o kern/75702 dwmalone [libc] -O5 flag breaks some compiles in /usr/src/lib/l o kern/75710 [cue] cue0 device configuration causes kernel panic o kern/75764 usb [umass] [patch] "umass0: Phase Error" - no device for o bin/75766 [patch] nfsd(8) loops with TCP + multiple -h options o bin/75767 WANTED: "fdclose" function in libc o i386/75776 i386 NO ps/2 keyboard using USB keyboard under bsd4.10 and o usb/75800 usb ucom1: init failed STALLED error in time of sync with o bin/75855 getpwent functions on 5.3 with large password file ext o docs/75865 doc comments on "backup-basics" in handbook o kern/75873 Usability problem with non-RFC-compliant IP spoof prot o i386/75881 i386 ACPI suspend/resume doesn't work on ASUS L5 notebook o ports/75883 demon mrtg + ucd-snmp give wrong results o bin/75884 m4(1): syscmd's output is out of sync with stdout o i386/75898 i386 Exception and reboot: Loader and kernel use SSE2 instr o usb/75928 usb Cytronix SmartMedia card (SMC) reader has problems whe o kern/75934 [libcrypt] [patch] missing blowfish functionality in p o docs/75995 doc hcreate(3) documentation(?) bug s ports/76021 sem portupgrade: package delete can remove necessary files o sparc/76052 marius Incorrect panic strings in sparc64 files o gnu/76069 FreeBSD's definition of offsetof isn't good for C++ o kern/76081 [rl] [patch] Add support for CardBUS NIC FNW3603TX o bin/76089 The "-n" option in /usr/bin/w is broken o conf/76124 [patch] Mistake in /usr/share/misc/pci_vendors o kern/76144 [fifo] poll doesn't set POLLHUP when FIFO is closed o gnu/76169 [patch] Add PAM support to cvs pserver o kern/76178 scsi [ahd] Problem with ahd and large SCSI Raid system o conf/76226 Default local.9600 gettytab initially uses parity o conf/76298 fstab doesn't pass mntops properly o docs/76333 doc [patch] ferror(3): EOF indicator can be cleared by not o bin/76362 sys directory link points to wrong location o usb/76461 usb [umass] disklabel of umass(4)-CAM(4)-da(4) not used by o kern/76485 sched_getparam returns weird priority number s conf/76491 Addition into /etc/security few new functions o bin/76494 [patch] passwd(1) does not indicate a successful chang p bin/76497 tcpdump dumps core on ppp ipv6cp packets o conf/76509 [patch] New locale uk_UA.CP1251 support s kern/76520 [libiconv] [patch] Add new kernel-side libiconv conver o kern/76539 [dummynet] [patch] ipnat + dummynet on output on same f kern/76551 remko [re] [patch] re0: watchdog timeout o i386/76587 i386 ps2 mouse weird... o bin/76590 adding -mapall in nfs exports requires reboot o conf/76626 [patch] 460.status-mail-rejects shows destination doma o i386/76653 i386 Problem with Asahi Optical usb device (Pentax Optio S5 o kern/76678 rwatson [libpam] [patch] Allow pam_krb5 to authenticate no loc o bin/76697 newsyslog keeps one more archive files than documented o kern/76710 [mii] [patch] rgephy does not deal with status properl o bin/76711 parse error in rm.c:check() while parsing value return o usb/76732 usb Mouse problems with USB KVM Switch o bin/76736 dwmalone syslogd pipelines losing messages o bin/76752 /usr/bin/login o bin/76756 des function pw_equal in pw_util.c does not test pw_passwd o kern/76818 rwatson ACL modifications touch file's mtime o kern/76857 Samsung mouse misbehaviour o ports/76915 portmgr [patch] Handle port deinstall scripts when /var is mou o kern/76950 acpi ACPI wrongly blacklisted on Micron ClientPro 766Xi sys o kern/76972 64-bit integer overflow computing user cpu time in cal o bin/77001 sysinstall binary upgrade clobbers /etc/login.conf.db o bin/77031 [patch] comm(1) unable to handle lines greater than LI f bin/77082 krion src/usr.sbin/pkg_install - Add 3 new macros to clean p o bin/77089 /sbin/natd: natd ignores -u with passive FTP o kern/77091 Keyboard quits working under X with MAXCONS kernel opt o kern/77156 FreeBSD does not redirect packets on proper interface. o conf/77197 [patch] calendar.judaic is out of date o kern/77239 [xl] 3Com 3CXFEM656C does not seem to be supported by o bin/77260 df behaviour has changed between 4.x and 5.x o bin/77261 login doesn't chdir into a group-protected home direct o kern/77273 darrenr [ipfilter] ipfilter breaks ipv6 statefull filtering on o kern/77341 problems with IPV6 impementation o kern/77355 [i386] [patch] Detect i*86 subarches for uname o kern/77377 Slow downloading from FreeBSD server with PPPoE-connec o bin/77445 ntpd(8): too many recvbufs(40) when ntpd started with o bin/77554 type mismatch in IPv6 firewall rule parser o kern/77662 diskless hostname set via DHCP only if ACPI off o conf/77663 rc Suggestion: add /etc/rc.d/addnetswap after addcritremo o kern/77826 [ext2fs] ext2fs usb filesystem will not mount RW o kern/77841 [libc] [patch] cast away const in getpublickey() o ports/77873 portmgr [patch] New variable: USE_BSD_MK o ports/77876 portmgr [patch] Ensure uniqueness of (DOCS|EXAMPLES|DATA)DIR o kern/77902 cel [nfs] NFS client should use VA_UTIMES_NULL to determin o kern/77913 [wi] [patch] Add the APDL-325 WLAN pccard to wi(4) o kern/77958 [smbfs] can't delete read-only files via smbfs o bin/78021 sem_open(3) doesn't mention fnctl.h include requiremen o docs/78041 doc [patch] docs for md(4) need further explanation of typ o kern/78072 [lge] [patch] Potential memory leak in lge(4) o kern/78090 [ipf] ipf filtering on bridged packets doesn't work if o kern/78114 phk [geom] [patch] Solaris/x86 label structures for GEOM ( o bin/78131 geom gbde "destroy" not working. o docs/78138 doc [patch] Error in pre-installation section of installat o bin/78170 [patch] Fix signal handler in bootpd o docs/78240 doc [patch] handbook: replace with aroun o bin/78304 Signal handler abuse in comsat(8) o kern/78342 jeff top -S shows potentially incorrect CPU usage for idle f usb/78371 usb Philips Wearable Audio Player (128) fails to attach o kern/78388 [vr] vr network drivers cause watchdog timeout o conf/78419 /etc/termcap is a symbolic link o bin/78424 Internal IPs on router, natd/libalias break PMTUD a docs/78440 trhodes POSIX semaphores don't work by default in 5.3-STABLE o kern/78444 jeff [sched_ule] doesn't keep track of the sleep time of a p kern/78464 ambrisko Rename /proc/mtab to /proc/mounts o docs/78480 doc Networked printer setup unnecessarily complex in handb o ports/78490 portmgr [patch] bsd.port.mk: add PORTEXAMPLES and PORTDATA o bin/78529 'df' shows wrong info about hard drive after carrying o stand/78537 phk times(2) not functioning per the Posix spec o ports/78554 portmgr [patch] bsd.port.mk: allow install port with the same o bin/78562 Add numerical sorting option to join(1) o kern/78646 [libmap] [patch] libmap should canonicalize pathnames o kern/78673 cel [nfs] [patch] nfs client open resets attrstamp ever if o ports/78712 perky [Update Ports] Rename ja-pycodec to ja-py??-pycodec o bin/78728 ntpd -- noisy when IPv4 or IPv6 interfaces are undefin o kern/78756 [libc] [patch] src/lib/libc/nls/fr_FR.ISO8859-1.msg fo o kern/78758 sos [ata] [patch] Add support for re-sizing ATA disks o bin/78759 patch: verbosity for bin/chflags a ports/78760 lioux [PATCH] multimedia/kmplayer: Make TV viewing a bit mor o bin/78763 pjd [PATCH] Added jail support to ps o bin/78768 pjd [Patch] Added jail support to top o bin/78785 ipfw [ipfw] [patch] ipfw verbosity locks machine if /etc/rc o kern/78787 sysconf(_SC_CLK_TCK) may return incorrect value o kern/78812 [workaround] logitech cordless mouse with ps/2 adapter o kern/78849 phk Problems with GBDE encrypted partitions o kern/78884 cel [nfs] [patch] nfs client cache negative lookups o conf/78906 rc [patch] Allow mixer_enable="NO" in rc.conf o docs/78915 doc rfork(2)'s RFTHREAD is not documented o kern/78957 time counter per process stops (syscall: getrusage) f usb/78984 usb Creative MUVO umass failure o bin/79008 add option for pom(6) to specify EPOCH o kern/79035 le [vinum] gvinum unable to create a striped set of mirro s kern/79048 [libc] realloc() copies data even when the size of all o stand/79055 stefanf Add an IFS regression test for shells o stand/79056 standards regex(3) regression tests o kern/79058 [panic] floppy umount crash on accidental remove/reins p bin/79063 tjr grep(1) - strange behaviour (most likely a bug) -- `gr o kern/79066 [bktr] bktr(4) eating about 10% CPU load once it was u o stand/79067 stefanf /bin/sh should be more intelligent about IFS o i386/79091 i386 [i386] [patch] Small optimization for i386/support.s o ports/79093 mi net/rdist6 ignore ssh transport s kern/79117 isdn [iavc] iavc(4) for AVM B1 PCI does not attach o i386/79136 i386 disk controller not detected o kern/79138 rwatson close while sending on connected UNIX-domain socket ca p kern/79139 rodrigc [pci] [patch] Support for more PCIe chipsets o kern/79143 [bge] Broadcom NIC driver do not work for IPMI o conf/79196 rc [PATCH] configurable dummynet loading from /etc/rc.co o bin/79228 [patch] extend /sbin/arp to be able to create blackhol o bin/79232 WARNS6 clean libexec/comsat o kern/79251 geom [2TB] newfs fails on 2.6TB gbde device o kern/79266 [pci] [patch] RELENG_4 pci CONF1_ENABLE_MSK depend MFC o i386/79274 i386 Autoconfigure fails for O2Micro OZ6812/6872 PCI-CardBu o i386/79317 i386 Freebsd Erasing NVRAM a ports/79351 lofi Character passing error in security/pinentry-qt o kern/79352 [feature request] double tagged q-in-q nested vlan sup o ports/79382 ume package information for cyrus-sasl2-saslauthd bad o ports/79398 portmgr [patch] bsd.port.mk: add USE_MAKESELF knob o kern/79416 darrenr ipf in 4.11 breaks POLA o kern/79441 trhodes [msdosfs] problem writing on mounted msdos-fs at /mnt o bin/79607 obrien grok and default to bzip2-compressed manual pages [pat o kern/79635 82545GM reports the EEPROM Checksum Is Not Valid o ports/79651 clement [patch] mail/ssmtp: add per-user smtp authentication c o kern/79678 multimedia [sound] sound works except recording from any source o ports/79694 kuriyama net-mgmt/net-snmp: net-snmp-5-2-1.1 without perl break o bin/79714 marcel kgdb user I/O nits o usb/79723 usb [usb] prepare for high speed isochronous transfers o usb/79725 usb [usb] [patch] USB device speed is not double-checked o i386/79840 i386 Partitioning and formating a new disk fails using sysi o threa/79887 threads [patch] freopen() isn't thread-safe o i386/79890 i386 burncd fails on a Pioneer DVD drive o usb/79893 usb [umass] [patch] new usbdevs/umass quirks derived from o kern/79944 virtual floppy controller of Virtual PC does not work o bin/79965 top(1) messes up narrow terminals while displaying the o usb/80010 usb [aue] [patch] add support for the AEI USB to LAN adapt o kern/80031 [coda] [patch] Remove insque/remque from kernel land p bin/80058 adduser -f exits silently if file has empty line or li o i386/80081 i386 [if_ndis] Problem loading a NDIS kernel module. o i386/80092 i386 PC Cards do not work at all on laptop Compaq N800V o i386/80095 i386 ld-elf.so.1 crashes with executables produced by tinyc o ports/80111 ume patch to make WITH_KERBEROS4 working for security/cyru o bin/80117 [sysinstall] [patch] smbfs install option for sysinsta o conf/80158 request configuration option for specifing the GBDE pa o docs/80159 dfr [patch] rtld(1) mentions "%m" but it's not implemented o bin/80176 des fetch does not always work with https with a proxy. o docs/80186 imp [patch] Footnote is wrong in the /usr/src/UPDATING o bin/80256 /rescue/vi doesn't work without terminal database in / o bin/80258 [PATCH] Comment why some Binaries are statically linke o kern/80265 D-Link NIC with VIA Rhine II has no carrier signal on o kern/80269 [libtacplus] [patch] libtacplus tac_get_av_value will o kern/80283 [reboot] SMP problem a stand/80293 standards sysconf() does not support well-defined unistd values p bin/80348 rs(1) handles command line arguments improperly (SIGSE o bin/80411 [patch] df(1): bin/df/df.c sign errors in calls to get f usb/80420 usb atapicam stops iPod functionality o kern/80465 multimedia [sound] pcm0:record:0: record interrupt timeout (Acer o conf/80504 [patch] de_DE.ISO8859-1 libc message catalog o bin/80530 man(1) should become Unicode aware o bin/80534 feature request: enumeration of filesystem snapshots o kern/80580 [panic] 4.11 router panic in lockmgr: locking against f bin/80610 [patch] netstat(1): lost data due lu format o bin/80620 des [patch] fetch -U does not work o kern/80626 Out of memory ? then dead o kern/80632 multimedia pcm driver missing support for CMI8738 auxillary input o kern/80642 ipfw [ipfw] [patch] ipfw small patch - new RULE OPTION o bin/80687 [patch] Missing NULL termination after strncpy() in lo o bin/80732 [PATCH]: getty(8) and telnetd(8) ignore the 'if' optio f usb/80773 usb "usbd_get_string()" could have taken a length paramete o usb/80774 usb have "usbd_find_desc" in line with the other "usbd_fin o kern/80775 sysctl_handle_string should have a timeout o usb/80776 usb [udav] UDAV device driver shouldn't use usb_add_task o usb/80777 usb usb_rem_task() should wait for callback to complete? o bin/80812 [ new util ] request to add new util: getcap(1) (from o kern/80844 [psm] [patch] Increase compatibility of psm driver wit o usb/80854 usb suggestion for new iface-no-probe mechanism o bin/80868 /bin/sh gives wrong line number of unterminated quoted o conf/80907 tmpmfs default change o bin/80924 fsck should show CTIME. o usb/80935 usb uvisor.c is not work with CLIE TH55. o ports/80943 ale lang/php4: update PHP for new mnogosearch extension s ports/80944 [NEW PORT] www/mnogosearch-php: Mnogosearch PHP fronte o ports/80946 ale www/php4-mnogosearch: Mnogosearch PHP4 Extension modul o threa/80992 threads abort() sometimes not caught by gdb depending on threa o kern/80999 [hang] artswrapper freezes system with 5.4 o ports/81070 ale [PATCH] www/php-screw: randomize CRYPTKEY o i386/81082 i386 Failure to detect Pioneer CD drive on Intel ICH UDMA66 o ports/81093 ale lang/php4 - Slow serialize on FreeBSD o kern/81161 [md] Images mounted through mdconfig on a read-only fs o usb/81191 usb Support for Curitel HX-550C USB modem to 5.4 RELEASE. s kern/81273 [request] remove dependency of tool 'netstat' on 'devi o stand/81287 standards [PATCH]: fingerd(8) might send a line not ending in CR o bin/81300 [PATCH] add option to sockstat(1) to always separate o bin/81323 [sysinstall] Error in installation packages "write fai o i386/81358 remko [geode] [patch] add PC Engines WRAP support o bin/81364 rexecd mangles the username o bin/81465 /bin/host: resolver is not working properly when INET6 o bin/81495 hexdump(1) format option does not allow literal '%' in o kern/81496 acd (atapicd) device lacks devstat o kern/81497 ad and da do not set interface type in devstat entry o threa/81534 threads [libc_r] [patch] libc_r close() will fail on any fd ty o kern/81568 ext2fs partitions in fstab automatically mounted at bo o kern/81588 phk [kernel] [patch] Devices with SI_CHEAPCLONE flag don't o i386/81597 i386 My POS-460 system based on a Western Digital LPM/LPX l o bin/81611 matteo natd runs with -same_ports by default s ports/81613 portmgr make package-recursive for port www/jakarta-tomcat5 fa f usb/81621 usb external hd hangs under load on ehci o misc/81674 [request] Install root option of 4.11 boot floppies sh o bin/81692 sos [patch] atacontrol(8) support for disk APM and acousti o ports/81699 ale www/pserv's PHP support only works with php-cgi SAPI o bin/81709 [patch] lam accepts -P but not -p o bin/81757 gad realtime processes are not marked with '<' in ps(1) ou o bin/81759 phk 'gbde attach' does not notify user about failures. o bin/81775 pppd(8) and tcpdump(8) no longer accept 'outbound' key o bin/81779 pjd misleading error messages in geom(8) utilities. o kern/81780 rwatson hard disk i/o error during reading in an acl is ignore o kern/81803 [ichsmb] [patch] Unsupported ICH6 SMBus controller on o bin/81837 [patch] Sort by directories first option for ls(1) o ports/81915 ale mysql-server.sh not ssh-friendly o kern/81987 [libc] [patch] memory leaks in libc/rpc o kern/82036 loading green_saver makes screen go blank immediately. o bin/82037 mount(8)/unmount(8)/fsck(8) mount point specification o bin/82058 markm [PATCH] Ability for pw groupmod to delete members o kern/82070 [dc] Not all dc(4) devices can be used: MII without an o bin/82161 [patch] m4's eval does not handle INT_MIN correctly o bin/82170 [patch] m4's eval does not work as documented o bin/82185 [patch] ndp(8) command bug o conf/82228 roberto [patch] order parsed ntpdate_hosts in /etc/rc.d/ntpdat p bin/82287 trhodes [patch] routed(8): Fix varargs usage, remove non-exist o docs/82290 hmp [patch] update to handbook firewall PF section s ports/82337 anholt games/enigma doesn't build because lang/lua4 conflicts o gnu/82351 [patch] update (385-cl3) to version 385 of the "less" o gnu/82353 ru SGR disabled in share/tmac/troffrc -- deprecated? o usb/82436 usb [patch] USL101 Host-to-Host bridge support on FreeBSD o kern/82456 [ral] WITNESS warning/backtrace in if_ral o bin/82465 top(1) in 6-CURRENT shows incorrect user o kern/82470 silby FreeBSD advertises wrong window scale in some situatio o docs/82481 danger tar(1)/gtar(1) man page mod request o gnu/82484 [patch] for misleading man cvs o i386/82548 i386 VBE video driver incorrectly switches to/from text mod o docs/82595 doc 25.5.3 Configuring a bridge section of the handbook ne o ports/82634 shaun heimdal port conflict with base heimdal s ports/82661 portmgr [patch] Add support to filter MASTER_SITES and PATCH_S o kern/82724 ipfw [ipfw] [patch] Add setnexthop and defaultroute feature p docs/82779 bde [patch] Kill entry for ddb manpage o conf/82823 [patch] little addon for /etc/periodic/400.passwdless o kern/82901 [puc] ECP mode fails on NetMos ppc card - "PWord not s a kern/82926 sam [ipw] ipw(4) doesn't seem to do WPA, also leaves entri o kern/82978 [orm] [hang] FreeBSD hangs loading orm(4) only after r o kern/82980 realpath(3) treats regular files as directories o i386/83018 i386 Installer will not boot o usb/83022 usb ALI USB 2.0 EHCI Controller is not detected o bin/83039 Bug in cdcontrol(1) o bin/83046 ipfw2 error o kern/83099 des [pam] pam_login_access change causes cyrus-sasl-saslau o kern/83109 syscons does not always display colors correctly o ports/83130 roam mail/vpopmail installation problem o bin/83170 [patch] Allow 'install' to compare files by mtime inst o bin/83253 pw(8) does not take over skeleton directory perms o bin/83277 des libfetch includes the leading / in FTP URL paths o kern/83354 When two 3c905's are in a Vectra Vl dhcp fails to give o bin/83358 [patch] improper handling of malloc failures within re o bin/83361 [patch] Incorrect malloc failures handling within libd o bin/83424 [patch] improper handling of malloc failures within li o bin/83451 [patch] improper handling of malloc failures within li o bin/83619 'diskinfo -t' fails with disks smaller than about 6.3G o docs/83621 doc [patch]: Minor omissions in /usr/src/UPDATING o kern/83622 [patch] add network interfaces labeling support o ports/83644 clement add support for ndbm to www/apache20 o kern/83697 multimedia [snd_mss] [patch] support, docs added for full-duplex, o kern/83702 ata CDRIOCGETPROGRESS ioctl does not work when blankin s kern/83738 jkoshy [modules] kldload hwpmc.ko fails with 'link_elf: symbo o kern/83765 Adaptec 1542-CP requires plug-and-play switch setting o kern/83778 [kame] [patch] JPv6 cannot use Jumbo Frames o kern/83807 [sis] [patch] if_sis: Wake On Lan support for FreeBSD o docs/83820 jmallett getino(3) manpage not installed o stand/83845 standards [libm] [patch] add log2() and log2f() support for libm o usb/83863 usb Communication problem between opensc/openct via USB wi o kern/83941 harti "/usr/src/share/mk/sys.mk", line 275: if-less endif o kern/83995 CFLAGS & COPTFLAGS ambiguous behaviour o kern/84020 Couldn't load graphical screensaver modules o bin/84041 [PATCH] fix for wall(1) error message o docs/84154 doc Handbook somewhat off in use of /boot/kernel.old o bin/84162 (t)csh: builtins commands with redirection do not clos o conf/84172 loader.conf(5) is missing an entry for "dumpdir" o kern/84199 dlinfo in libexec/elf-rtld/rtld.c does not handle RTLD o bin/84208 [sysinstall] "Leave the MBR untouched" option not work o ports/84212 cy sysutils/screen port can't talk to TTYs o kern/84215 [jail] [patch] wildcard ip (INADDR_ANY) should not bin f bin/84219 rafan [ncurses] [patch] ncurses.h wchar_t confliction o kern/84225 gnn losing default route changing netmask on interface o docs/84265 doc [patch] chmod(1) manpage omits implication of setting o docs/84267 doc [patch] chflags(1) manual doesn't say it's affected by o docs/84268 doc chmod(1) manpage's BUGS entry is either wrong or too c o docs/84271 ceri [patch] compress(1) doesn't warn about nasty link hand o bin/84298 [patch] allow mount(8) to recognize relative pathnames f kern/84311 multimedia [sound] 82801FB/FR/FW/FRW Intel High Definition Audio o docs/84317 doc fdp-primer doesn't show class=USERNAME distinctively o kern/84386 Feature Request: PPPoA Authentication built into FreeB f ports/84448 portmgr [patch] bsd.port.mk: Add "make test" to ports o bin/84494 rpcbind TCP cannot be told to bind to a specific IP o docs/84538 joel sk(4) driver supports Marvell 88E800x chip too o conf/84581 remko [patch] Teach config(8) to look for kernel configurati o bin/84634 fjoe [geom] [patch] new utility to control GEOM uzip class o ports/84650 ale customizable pid filename for databases/mysql*-server/ o docs/84670 doc [patch] tput(1) manpage missing ENVIRONMENT section wi o bin/84705 fdisk(8) program warning about sector number is mislea o ports/84742 java make ports/java/jdk14 use dynamic Motif librarires o conf/84752 [patch] 100.clean-disks cleans file systems that don't o kern/84761 shutdown() of non-connected socket should fail with EN o kern/84797 [libutil] [patch] State engine in the libutils propert o conf/84800 obrien [patch] setting CPUTYPE=nocona on an Intel system resu o docs/84806 doc mdoc(7) manpage has section ordering problems s ports/84819 stas [MAINTAINER] math/coq: enable on ia64 s misc/84833 netchild include make.conf NO_* targets into delete-old and del o bin/84911 [patch] ndisgen(8) can't cope with .sys-files that beg o docs/84955 ru [patch] mdoc(7) manpage should mention missing documen o docs/84956 doc [patch] intro(5) manpage doesn't mention API coverage o kern/84957 fire_saver.ko causes high CPU usage by swi5 o gnu/84976 System ncruses does not have wide character functions o kern/84981 [headers] [patch] header protection for ypin o kern/88336 [kernel] [patch] setkey(8) -D fails to report all SAs o bin/88365 [patch] rm(1): "/bin/rm -P" cannot remove files not wr o usb/88408 usb axe0 read PHY failed o kern/88450 andre SYN+ACK reports strange size of window o docs/88477 doc Possible addition to xl(4) manpage, Diagnostics sectio o bin/88486 [patch] make periodic(8) quiet (configurable) when no o i386/88491 i386 [panic] Panic when boot installation CD1 (Acer TravelM o docs/88512 doc [patch] mount_ext2fs(8) man page has no details on lar a bin/88538 [patch] tcsh(1) ls-F spacing incorrect. o kern/88576 imp [fe] revision 1.31 to if_fe_pccard.c breaks NE200T fun o bin/88599 ifconfig(8): change in default behavior with ifconfig o kern/88601 pjd Geli cause kernel panic under heavy disk usage o bin/88619 brian [ppp] ppp chat auth fails ( pppoe ) o misc/88680 !compiling freebsd components o kern/88709 [modules] [panic] sysctl -a after kldunload fdc panics o kern/88714 sos [ata] cannot record CD-R since 6.0 (regression) o amd64/88730 amd64 kernel panics during booting from the installation CD o bin/88780 [PATCH] Baseline ipmon(8) uses LOG_LOCAL0 syslog, not f kern/88820 multimedia [sound] Erratic recognition of VIA 8285 sound card by o bin/88821 pjd [PATCH] IPv6 support for ggate o bin/88826 [sysinstall] sysinstall infinity wait for da0 o ports/88836 clement Update port: www/apache2 (fix harcoded pidfile in the o conf/88913 rc [patch] wrapper support for rc.subr o usb/88939 usb Fix cheapy Myson USB-IDE adapter o ports/88941 anders Suggested updates of mail/cclient Makefile o ports/88942 anders Suggested update of mail/imap-uw Makefile o kern/88962 [panic] Kernel panic with ACPI is enabled o i386/88965 i386 vidcontrol hangs with 2 modules of RAM o ports/89023 leeym USE_BDB doesn't set name of Berkely dB, or location of o conf/89061 rc [patch] IPv6 6to4 auto-configuration enhancement f usb/89087 usb usb external harddrive hangs with BBB reset failed, TI o kern/89166 [mouse] jumpy mouse movement o i386/89294 i386 [identcpu] [patch] unknown CPU (i386/amd64) Features2 o kern/89305 [vr] [patch] D-Link NIC with VIA Rhine II, lost of Net o docs/89325 doc [PATCH] Clarification of kbdmap(5), atkbd(4) and kbdco o bin/89326 [PATCH] Add pattern matching to login.access(5) f ports/89349 x11 xorg problem: math/gnuplot: BadAtom (invalid Atom para o kern/89362 Stale references to freed memory o bin/89403 fetch(1) doesn't honour authentication credentials whe o kern/89411 [acpi] acpiconf bug o ports/89441 hrs TeX support in FreeBSD is problematic. o docs/89492 doc vfs doc: some VOP_*(9) manual pages are outdated with o kern/89522 6.0-RELEASE will not boot on some Compaqs with mouse c o kern/89553 [bktr] [patch] going from 5.3 -> 6.0 winTV card not pr s ports/89648 portmgr OPTIONS and conditional USE_* conflict in bsd.port.pre o ports/89670 ade [patch] Automake 1.9 not detecting cppunit o kern/89738 [ndis] [hang] Can't make WL8000PCM wifi card work with o bin/89762 [patch] top(1) startup is very slow on system with man o bin/89770 des [patch] pam_krb5 'authentication token failure' in pas o bin/89799 [patch] Making natd(8) not require a newline at the en o kern/89837 [pci] PCI code outputs superfluous "failed to enable/d f conf/89860 matteo [patch] Add ability to set up vnode backed filesystems o conf/89870 rc [patch] feature request to make netif verbose rc.conf f kern/89885 remko [ata] Writing to S-ATA HDD in DMA mode fails f bin/89959 brooks dhclient(8): dhcp: ip length 314 disagrees with bytes o ports/89972 apache portupgrade apache+ssl fails on dependencies o bin/89988 [patch] bootparamd(8) null host support and whoami fix o bin/89989 [patch] Add option to /usr/sbin/jail: -I (ASCII 73) PI o kern/89991 [ufs] softupdates with mount -ur causes fs UNREFS o kern/90063 [procfs] access("/proc/123", F_OK) doesn't work on >= s bin/90082 matteo [syscons] [patch] curses ACS line graphics support for o bin/90114 [patch] pw(8) takes strings after option -g for GID 0 o bin/90130 [patch] sysctl(8): print temperature in celsius only w f ports/90146 tmclaugh [New Port] database/castle.activerecord (Lets you map a conf/90163 dougb [patch] Easily launch non-forking daemons like logsurf o kern/90181 [NOTES] [patch] IPSEC_FILTERGIF documentation is incom o i386/90243 i386 Laptop fan doesn't turn off (ACPI enabled) (Packard Be o bin/90266 philip bsnmpd(1) returns bad data during a snmpwalk of the en o bin/90299 Segmentation fault in fdisk(8) o bin/90311 [patch] add "eject" to mt(1) o sparc/90316 marius [kbd] Keyboard "lock" key lights not working properly s bin/90367 [feature request] libmap.conf needs exclusivity suppor o kern/90368 pxeboot misses ${class} parameter when booting from dh o bin/90384 [patch] chroot patch for sftp-server(8) p conf/90413 bms tap0 interface not configured at boot-time o ports/90436 portmgr [patch] Add a way to handle configuration files to bsd o kern/90521 [udf] [patch] UDF driver might calculate a wrong descr o bin/90524 reset(1) doesn't fully restore terminal state o bin/90580 wordexp(3) fails to check for EINTR o bin/90680 [patch] make(1) thinks "^.for.o:" is a directive (".fo o bin/90687 [patch] side effect of -delete option of find(1) o bin/90690 ps(1) errorneously respects terminal column settings w o kern/90820 [ata] [burncd]: aborting burncd may keep drive "locked f i386/90821 remko Install cd fails on vectra 6/180 w/ scsi cdrom o bin/90823 [PATCH] cp(1) should use lchflags() o i386/90839 i386 [ata] burncd gets error on CDRIOCFIXATE with HL-DT-ST f kern/90871 acpi ACPI problems with ASUS A8N-VM-CSM f bin/90990 rafan [PATCH] ncurses doesn't compile with --enable-widec o bin/91002 calendar(1): funky sorting when going around the end o o bin/91034 [patch] minor fix to iostat(8) so that columns line up o bin/91049 [patch] dump(8): make dumps more rsync-friendly o bin/91101 [patch] /usr/src/usr.bin/whereis/whereis.c o conf/91106 date definitions in pl_PL locale are wrong o bin/91134 [smbfs] [patch] Preserve access and modification time o docs/91149 doc read(2) can return EINVAL for unaligned access to bloc o docs/91174 ceri [REQUEST] Handbook: Addition of Oracle 9i installation f usb/91191 usb HP LaserJet 1020 (USB printer) not recognized o amd64/91195 amd64 FreeBSD 6.0(amd64) and Asus A8R-MVP f bin/91205 [sysinstall] sysinstall package options should require o bin/91226 phk make buildworld fails with read-only /usr/src f ports/91244 java Bad instruction on making process of jdk14 o kern/91293 emulation [svr4] [patch] *Experimental* Update to the SVR4 emula o bin/91299 yar [patch] add ftpd(8) SITE SHA256 command o ports/91310 obrien Thare is a bug in the port's Makefile for rdesktop (rd o bin/91316 pax(1): pax -pe does not preserve times on symlinks o kern/91332 [patch] Linksys EG1032 V3.0 Gigabit card captured by s f sparc/91334 sparc64 FreeBSD 6.0 don't support tftp boot from remot tftp se o conf/91342 [devfs] Errors in devfs.rules files don't get logged o kern/91347 rodrigc [pci] [patch] Add another PCI-e chipset for extended c o bin/91393 window(1) changes console cursor shape to blink f bin/91394 brian ppp(8) sets mtu 1500 for PPPoE link o kern/91414 emaste [kernel] [patch] Polling for devices other than NICs o kern/91419 [netgraph] libnetgraph/debug.c compile error on sparc6 o kern/91476 [fdc] [patch] floppy drive doesn't work in MS Virtual a kern/91488 kientzle [isofs] [patch] cd9660 filesystem cannot handle files f misc/91498 CVSCMDARGS has incorrect syntax in src/release/Makefil o docs/91506 doc ndis(4) man page should be more specific about support f usb/91516 usb [umass] umass0 problems, with Freecom Classic SL Hard o usb/91546 usb [umodem] [patch] Nokia 6630 mobile phone does not work o ports/91553 secteam Make portaudit call programs in /sbin with full path o i386/91594 i386 FreeBSD > 5.4 w/ACPI fails to detect Intel Pro/1000 MT o bin/91606 sha1(1): sha1 /dev is suspended o bin/91608 tar(1) reports (Empty error message) on truncated tarb o i386/91609 i386 Booting takes *a long time* unless power cord is plugg o ports/91681 clement apache-2.0.54_4 building modules fails using integrate o i386/91719 [pxe] BZ2_bzDecompress returned -3 error on loading bz o kern/91720 [pxe] pxeboot always tries to do an rpc call to an nfs o i386/91761 i386 [ata] NEC_DVD-RW + system start: semaphore timeout f kern/91777 darrenr [ipfilter] [patch] wrong behaviour with skip rule insi o usb/91811 usb Compact Flash in HP Photosmart 2610 return " Medium n o ports/91838 danfe [BUG] graphics/svgalib: tty switching is broken o ports/91843 anders [patch] thttpd with USE_SENDFILE generates ENOTCONN no o kern/91847 ipfw [ipfw] ipfw with vlanX as the device o i386/91871 i386 [boot1] [patch] boot1: jump to 0xf000:0xfff0 instead o o usb/91896 usb Serial Number of USB Memory Sticks is not passed throu o kern/91908 darrenr [ipnat] loading ipl.ko to the kernel compiled with opt o bin/91980 yppasswdd(1) leaves zombie sh processes o bin/91993 sam dhclient(8) option missing, script incompability o kern/92023 [kernel] 'options DEVICE_POLLING' makes loadavg wrong o bin/92062 phk mdconfig(8): mdconfig -l shows 95 entries max. o ports/92093 lev russian/apache13-modssl doesn't compile o ports/92123 portmgr [patch] bsd.port.mk: PLIST_SUBX and SUBX_LIST autoexpa o kern/92238 sos [ata] Spurious "atapci1: failed to enable memory mappi o kern/92270 glebius ppp(8): ppp does not work on renamed network interface o ports/92289 edwin audio/mbrolavox - fr4 and nl3 are incorrect o usb/92306 usb [quirk] [patch] Support for iRiver U10 USB media playe o kern/92323 [iwi] [patch] XI330_IEEE missing from if_wi_pccard.c o stand/92360 standards [headers] [patch] Missing TAB3 in kernel headers o stand/92362 standards [headers] [patch] Missing SIGPOLL in kernel headers o bin/92370 pppd(8): ppp server not accessible to IPV4 unless buil o kern/92381 [drm] i915 drm module unuseable by X.org 6.9.0 for GM8 o usb/92403 usb [uplcom] uplcom.c needs new entry for 4.00 revision of o bin/92412 [patch] rup(1): rpc.rstatd reports bogus packets/per/s o ports/92434 portmgr [patch] Mk/bsd.port.mk automatic show pkg-message o ports/92490 clement www/apache22: crash in bn_mul_add_words if module ssl_ o i386/92501 i386 [irq] Hang on boot with ACPI enabled on ASUS A6R noteb o kern/92512 multimedia [sound] distorted mono output with emu10k1 o conf/92523 rc [patch] allow rc scripts to kill process after a timeo a amd64/92527 amd64 [ciphy.c] ][patch] no driver for "CICADA VSC 8201 Giga o conf/92541 [PATCH] add ca_AD, ca_FR and ca_IT locales f kern/92557 multimedia [sound] Contrary to 6.0 release notes, snd_csa does no a ports/92588 linimon make fetchindex failed with FETCHINDEX=wget o ports/92604 ale mysql41-client broken with non-default character set o docs/92626 doc jail manpage should mention disabling some periodic sc p stand/92640 schweikh A pristine /bin/sh does not set the PWD variable o ports/92651 stas graphics/gmt - WITH_EVERYTHING doesn't fetch o bin/92723 [feature request] fdisk(8) should be able to output cu o ports/92737 openoffice editors/openoffice.org-2 build failure o kern/92744 [rl] problems with a realtek network card on a 6.0 rel o usb/92852 usb Vertical scroll not working properly on A4Tech WOP-49 o bin/92866 krion pkg_add(1) should return a different result code if pa o bin/92867 krion pkg_add(1) needs an option to disable dependancy downl o kern/92880 [libc] [patch] almost rewritten inet_network(3) functi o kern/92926 [headers] [patch] Missing copyright in /usr/include/sy s www/92973 www [patch] mailto.sgml o amd64/93002 amd64 amd64 (6.0) coredumps at unpredictable times f usb/93011 usb HP ScanJet 6200C & uscanner problem o ports/93033 tobez Problem using perlcc a amd64/93090 amd64 NIC on GA-K8NF-9 motherboard is recognized, but does n o kern/93093 [libc] xdr_string might call strlen(3) on NULL o gnu/93127 [PATCH] add __FreeBSD_kernel__ to pre-defines o bin/93171 roberto ntpdate returns garbage output on amd64 o kern/93172 [isp] [patch] uintXX_t style(9) updates o kern/93197 [libc] strptime(3) succeeds on formats it should fail f ports/93216 [PATCH] finance/gnucash-devel: Add development release o docs/93249 doc rewrite of handbook chapter 23 (PPP & SLIP) o bin/93275 [sysinstall] Failure to install after restarting insta p ports/93276 secteam [patch] security/ca-roots: Update expired certs o ports/93279 skv devel/cvsmonitor: not useable (/dev/mem: Permission de f bin/93309 [PATCH] rpc.rquotad: group quota support over NFS o bin/93310 des [libpam] [patch] pam_unix ignores 'passwordtime' from o kern/93331 [kernel] [patch] broken asm in kernel o misc/93341 phk [patch] make more flexibitily for NanoBSD customizatio o kern/93378 [tcp] Slow data transfer in Postfix and Cyrus IMAP (wo o kern/93381 reboot(8) works but 'reboot -n' hangs o usb/93389 usb Digital Camera Pentax S60 don't work o kern/93393 imp [ed] [patch] Add Micro Research PCMCIA LAN Adapter MR1 o kern/93414 scottl [aac] [patch] compilation problem in aac_ioctl header o kern/93435 [ufs] [panic] kernel panic after setting big value of f kern/93448 glebius [carp] CARP advskew not propagated to VRRP packets o bin/93473 des [patch] Let pam_unix(8) use "passwordtime" from login. o ports/93559 openoffice OpenOffice.org-2 compile error o ports/93560 roam [PATCH] dns/djbdns-ipv6: Update IPv6 patches o kern/93634 [msdosfs] False access to renamed files/directories (c o misc/93661 [patch] loader(8): prevent *.4th files and friends fro o ports/93667 x11 x11/xorg-libraries: undefined symbol in libOSMesa.* is p kern/93676 anholt [agp] Yet another i915G drm/agp issue o docs/93683 jcamou [PATCH] some typos in klist(1) o kern/93705 standards [headers] [patch] ENODATA and EGREGIOUS (for glibc com s ports/93726 itetcu [NEW PORT] deskutils/kxdocker and plugins: a Mac OSX-l o kern/93755 imp [kernel] [patch] 2 copy'n'paste-os in sys/vm/phys_page o kern/93770 ati 9600 PRO radeon not recognized by the system o docs/93785 obrien The man page for ftpchroot(5)/ftpusers(5) contradicts a kern/93790 cperciva cpufreq missing frequencies o i386/93793 i386 [kbd] Keyboard stops working after a shutdown -p now ( o conf/93815 rc [patch] Adds in the ability to save ipfw rules to rc.d o kern/93825 pf [pf] pf reply-to doesn't work o misc/93838 [patch] Add notice to /usr/src/Makefile that make worl o www/93854 www Cannot proceed to page after the first in mailing list o bin/93857 [patch] kiconv_cs_preload(8): Utility for loading the o kern/93860 trhodes [msdosfs] [patch] sectors-per-track limit of MSDOSFS t o usb/93872 usb [patch] SCSI quirk required for ELTA 8061 OL USB memor a ports/93883 aaron New port: textproc/p5-libxmlenno The "libxml-enno" co o kern/93887 [kernel] cpu_spinwait calls missing in subr_smp.c o bin/93915 krion [patch] pkg_add(1) behaves improperly when unpacking o f kern/93976 rwatson [if_tun] [patch] if_tun doesn't handle kqueue(2) o i386/93986 multimedia [pcm] Acer TravelMate 4652LMi pcm0 channel dead o ports/93987 tobez lang/perl5x: Allow the perl ports to specify an altern o ports/93993 portmgr bsd.autotools.mk: Fix libtool shared library versionin o ports/94013 portmgr WITHOUT_X11 does not stop X11 ports from building o ports/94024 sat New port: net-im/py-punjab HTTP jabber client interfa f bin/94032 krion [patch] Enhancement to pkg_add(1) to add -4 flag to fo f ports/94043 ade [patch] bsd.autotools.mk: aclocal can't find libtool m o bin/94051 login(1): IP network in login.access ignored unless DN o bin/94052 [PATCH]: Adds option to script(1) to suppress carriage o bin/94060 Users can hide themselves with a trick f ports/94073 itetcu [NEW PORTS] x11-toolkits/libsmokeqt, x11-toolkits/libs f ports/94074 itetcu [NEW PORTS] x11-toolkits/ruby-qt3, x11-toolkits/kde3: o ports/94093 kde qt/KDE install from ports creates files owned by root o usb/94132 usb USB QUIRK for CENTURY EX35QUAT disk enclosure o ports/94138 portmgr [patch] Mk/bsd.gcc.mk, Mk/bsd.port.mk: CPUTYPE cause b o bin/94140 some "make check-old" missed files f usb/94147 usb doesn't recognise my USB keyboard o usb/94148 usb Make if_cdce work with ARM linux handhelds s bin/94159 feature request: ipsecctl ported from openbsd o ports/94167 x11 [patch] x11/xorg-clients: install xdm/Xstartup and /Xr o ports/94172 openoffice editors/openoffice.org-2 needs sane symlinks p bin/94180 ume portsnap does not handle HTTP_PROXY_AUTH correctly p bin/94181 ume portsnap should remove the trailing dot from the serve s kern/94182 [altq] [feature request] altq support for vlan driver o sparc/94190 sparc64 hw.physmem tunable does not work on sparc o ports/94216 sumikawa add patch to net/zebra o kern/94227 'no dump device defined' on random occasions o kern/94269 [nullfs] procfs shows wrong data if executable is runn o kern/94273 gnn [netipsec] [patch] IPIP decapsulation problem in FAST_ s ports/94286 itetcu [NEW PORT]: devel/staf An extensible multi-platform so o usb/94311 usb [ugen][PATCH] allow interrupt IN transactions to be af o ports/94331 x11 x11/xorg: advocating for DRI support for Radeons o bin/94367 [patch] wall(1): fix `wall: /dev/:0: No such file or d o kern/94369 [bktr] [patch] Patch to support Leadtek WinFast Tv2000 o kern/94390 [vr] poor network performance after promiscuous mode i o kern/94410 Cannot disable hyperthreading if more than one physica o kern/94413 [kernel] wine fails when increasing kern.maxdsiz o www/94423 danger [patch] XML'ified release todo list o kern/94424 [bge] BGE5721 or BGE5750? o usb/94439 usb [patch] Add support for JNC MP3 Player o kern/94480 [kernel] [patch] bread(3) & bwrite(3) can crash under o sparc/94483 sparc64 [ath] ath_hal does not work on 6-release/sparc64 o kern/94519 [libc] [patch] Add UF_HIDDEN file flag; map it to Wind o kern/94528 [linprocfs] linprocfs /proc/memory reports wrong size o bin/94546 [PATCH] Make telnet(1) accept 'host:port' on command l o kern/94578 [panic] Panic by using rtorrent sometimes a kern/94583 kan [libm] std::isnan()/std::isinf() are not identical to s www/94593 www AMD64 Motherboard Page Update - MSI K8NGM2-L o docs/94625 doc [patch] growfs man page -- document "panic: not enough o kern/94632 geom [geom] Kernel output resets input while GELI asks for o gnu/94640 gcc(1): php broken bit operator f ports/94680 portmgr [patch] bsd.port.mk - introduce ONLY_FOR_OSVERSION as o ports/94690 ume [PATCH] Daemons in /usr/local/etc/rc.d/ must do "setss o gnu/94695 bugmeister send-pr.el is missing from send-pr distribution o kern/94733 [smbfs] smbfs may cause double unlock o bin/94810 fsck incorrectly reports 'file system marked clean' wh o kern/94823 [drm] DRM doesnt't work with i915.ko o kern/94830 cel [nfs] [patch] mount_nfs causes a fatal trap 18 if the o bin/94845 fortune(6) seems to select 0 a lot o kern/94849 [ufs] rename on UFS filesystem is not atomic o i386/94850 i386 [bge] FreeBSD 6.0 on Fujitsu BX300, networking doesn't o ports/94910 clement www/apache: FreeBSD 6.0 Release Apache-20 port cannot o ports/94917 dougb mail/pine4 doesn't quote replies to GMail correctly a bin/94920 bms [rpc] rpc.statd(8) conflict with cups over tcp and udp o ports/94921 simon isakmpd fails on amd64 o ports/94935 cy security/aide o usb/94946 usb [uhub][patch] code dynamic status size for status chan f docs/94969 ale [patch] correct information about install php or mod_p o kern/94978 [pam] pam_opie module option without "no_fake_prompts" o docs/95026 tjr tr manual page typo o usb/95037 usb USB disk didnt recognized on hot-plug. o kern/95077 firewire [firewire] fatal trap 19 at fwohci_pci_init o bin/95079 [patch] apply(1) dies when there are two %1 in command o bin/95082 [patch] ping(1) won't handle large preload patterns o ports/95085 portmgr [PATCH]: bsd.port.mk: Add knob to allow for mutually e o kern/95086 multimedia [sound] uaudio line in problem with sbdm lx o ports/95097 ume [patch] to build security/cyrus-sasl2 with gcc4 o ports/95102 ume [PATCH] security/cyrus-sasl2 - change authdaemond_path o kern/95103 jhb panic after mtx_destroy() on locked spinlock o docs/95104 jhb tsleep() man page mentions nonexistent 'mtx' arg o i386/95106 i386 cannot install freebsd o docs/95139 doc FAQ to move filesystem to new disk fails: incorrect pe o ports/95153 tobez perl binary packages should be build with ENABLE_SUIDP o conf/95162 rc [patch] Missing feature in rc.subr o usb/95173 usb [usb] cannot mount external usb harddisk VIA Technolog o ports/95179 grog devel/ptmalloc doesn't include a header o kern/95222 [iso9660] File sections on ISO9660 level 3 CDs ignored o kern/95239 [patch] nftw(3) returns EINVAL for large values of max o usb/95241 usb Patch to add USB ID for OEM Pharos 360 GPS o kern/95267 net packet drops periodically appear f kern/95277 net [netinet] IP Encapsulation mask_match() returns wrong f ports/95279 gabor (New Port) FreeBPX: a web gui to the asterisk PBX o amd64/95282 amd64 [ed] fix ed for RELENG_5 amd64 so that it has network o ports/95294 jkoshy netpipe doesn't work on amd64 a ports/95371 ade autoconf not well enough integrated with libtool, aclo o kern/95391 [bfe] [patch] minor if_bfe error o kern/95407 [atapicam] atapicam, cd and /etc/rc.d/devfs problem o ports/95416 pb multimedia/kino build failure WITH_QUCKTIME o kern/95532 [gif] if_gif has artificial limitations o bin/95550 [patch] ntpd(8): NTPD/ntpdate complain about IPv6 inte o kern/95559 RELENG_6: write(2) fails with EPERM on TCP socket unde o bin/95698 philip [patch] moused(8): Software control of sysmouse o kern/95711 [fdescfs] rm on fdescfs causes panic: lockmgr: locking f bin/95713 ping(1) is not scalable. p bin/95715 [patch] random(6) busy loop under some conditions o conf/95754 [patch] Portuguese timedef s ports/95759 portmgr [patch] bsd.port.mk parallel port builds broken o misc/95792 [patch] environment variable EDITOR is set wrong in fi o usb/95803 usb Add support for AnyData ADU-E100H o usb/95805 usb Add Support for Siemens ES75 modem o ports/95854 itetcu New Port: www/ochusha o conf/95905 brooks [PATCH] /etc/rc.d/dhclient doesn't interact well with o gnu/95936 egrep(1) misparses multiline parenthetical grouping o bin/95979 burncd(8) fixating CD's f ports/95990 New Port: emulators/xjoypad o i386/95993 i386 Cyrix 5530 unable to map interrupt s ports/95994 itetcu New port: x11/oooqs2, OpenOffice 2.x quickstarter for o conf/96015 uncommenting the msgs invocation in /etc/profile can f o stand/96016 standards clock_getres et al should be in o bin/96018 dhclient broadcasts unicast DHCPREQUEST renewals o kern/96040 [mpt] LSI1030 mpt0: bullet missed in timeout o kern/96077 [libdisk] memory leak in libdisk(3)'s Disk_Names() o conf/96094 startup scripts do not configure gif interfaces under o bin/96128 [PATCH] Make aicasm WARNS=6 clean o kern/96133 scsi [scsi] [patch] add scsi quirk for joyfly 128mb flash u o ports/96147 tegge [patch] devel/linuxthreads uses pre-install instead of o kern/96171 [ata] burncd (ATA driver) fails to write in vcd mode o docs/96207 doc Comments of a sockaddr_un structure could confuse one f ports/96227 grog [update] misc/tempcontrol o stand/96236 standards [PATCH] [POSIX] sed.1 incorrectly describes a function o bin/96248 vipw fail on RO /etc p kern/96326 [libdisk] [patch] update to id -> partition name trans p bin/96335 delphij [libutil] [patch] ignored NO_INET6 knob f ports/96339 mnag Three updated files for net-mgmt/ourmon. o conf/96343 rc [patch] rc.d order change to start inet6 before pf o kern/96346 [modules] [patch] disable build of modules that are al o usb/96381 usb [patch] add a quirk table entry for a flash ram usb st o i386/96397 i386 [dc] strange behaveour of the dc driver on divicom dm9 o i386/96406 i386 System freezes on IBM xSeries 335 with FreeBSD-6.0-REL o kern/96429 [kernel] [patch] kern_linker.c hardcodes "/boot/kernel o ports/96436 x11 [patch] x11/xorg-clients: logging on xdm with pam_krb p i386/96452 remko twiddle in cdboot does not work o bin/96528 dougb Fix mergemaster(8) to be upgrade-friendly o bin/96540 [patch] catman(1) does not deal correctly with hard-li p usb/96546 usb [usb] [patch] Add support (quirk) for EasyMP3 EM732X U o conf/96589 Periodic monthly invalid times with 32 character usern o kern/96605 kernel panic: FreeBSD 7.0 o ports/96642 hrs Update port: print/acroread7 (fix plist; install deskt o kern/96644 crash after mount/umount disturbance: fatal trap 12 a ports/96703 dinoex www/apache13-modssl doesn't compile with LC_ALL set in o usb/96714 usb Update uvisor to support the Fossil Abacus Wrist PDA s ports/96731 textproc/docbook-utils doesn`t build f kern/96743 yongari [sk] [patch] broken 32-bit register operations o conf/96746 [nanobsd] [patch] Configuration changes and README for o ports/96749 clement Support Berkeley DB in Apache 2 o ports/96777 portmgr fix handling of OPTIONS default values in bsd.port.mk o bin/96854 imp [patch] devd(8) parses events incorrectly in some case f ports/96919 linimon net/ldapsdk: make fetchable a ports/96953 clement apache22 port uses its own directories o kern/96974 obrien [patch] to build FreeBSD kernel with binutils 2.16.92 o kern/96999 [procfs] [patch] procfs reports incorrect information o kern/97000 [kernel] [patch] bogus "All threads purged from ugen0. o bin/97002 [patch] crond(8) fails quietly if /usr/sbin/sendmail i p docs/97059 cokane pax(1): -b option description could be flawed p kern/97063 obrien [nve] [patch] Added DEFINE to if_nve.c/if_nvereg.h to o kern/97071 [jail] [patch] add security.jail.jid sysctl o ports/97081 jylefort gnome-bluecurve-theme crashes gnome wm o bin/97083 [patch] passwd(1) does not support _PWF_HESIOD o ports/97125 portmgr automatically invalidate saved OPTIONS on change o kern/97153 [patch] When -NO_KERBEROS is set, libcom_err still get o bin/97164 [libdisk] libdisk's Open_Disk() crashes o usb/97175 usb USB cardreader hangs system o ports/97181 dd Update port: lang/gawk Update to version 3.1.5 a ports/97183 roam Update port: net/libnids to 1.21 o kern/97228 sos [ata] [patch] Support new ATA ICH7 controller o www/97233 www [patch] Change the "Report a Bug" link on the home pag o www/97234 www [patch] Re-order links in bugreports.html f kern/97265 System hangs at the end of shutdown -h now f kern/97266 System hangs at kernel time after boot: /dev/fd0 o kern/97329 [nfs] [patch] code simplification o kern/97377 [ntfs] [patch] syntax cleanup for ntfs_ihash.c o kern/97381 [fdc] [patch] Patch to add zero-sector and spanned-sid o kern/97383 acpi Volume buttons on IBM Thinkpad crash system with ACPI o ports/97385 apache www/mod_auth_kerb configure script faults with heimdal o kern/97401 [xe] Xircom CreditCard Ethernet 10/100, attach returne o bin/97407 /usr/share/misc/termcap overwritten by installworld o kern/97458 [ath] ath driver hangs up system during reboot o java/97461 java Diablo JDK does not report Update level in a format su f bin/97467 yar [patch] ftpd(8) has no way to specify socket buffer si o i386/97468 acpi [acpi] ACPI on ASUS A7V hangs on shutdown -p (power of o usb/97472 usb [patch] add support for Olympus C150,D390 o bin/97478 umount -f /card -> hardware-reset is needed o amd64/97489 amd64 nForce 410 ATA controller dma time out s bin/97498 [feature request] newfs(8) has no option to clear the o kern/97505 [procfs] file entry of procfs points to "unknown" f bin/97513 umount: unmount of /card failed: Device busy ?! o ports/97544 sumikawa patch for net/zebra's ospfd snmp f ports/97579 delphij [patch] ports mail/spamd to reflect the public hostnam o kern/97609 multimedia [sound] Load Sound Module - VIA8233 - fails o ports/97672 clement www/apache22 BROKEN on FreeBSD 4 o ports/97673 kuriyama Update port: net-mgmt/net-snmp 5.2.2 -> 5.3.0.1, large p conf/97697 matteo [PATCH] rc.conf - jail__exec_afterstart[0..n] o sparc/97707 sparc64 mkskel.sh has bogus timestamp, causing buildworld on s o kern/97786 [udf] [patch] fs/udf: incorrect timestamps o docs/97939 doc some mistake in man of amq(8) o kern/98015 [bfe] [patch] bfe(4): double free in error handling pa o docs/98058 blackend Edit of scanner portion of Handbook Multimedia chapter o ports/98062 perky Apache 2.0.58 with www/mod_python3 core dumped s kern/98162 [feature request] AcerHK driver port needed for enabli o kern/98171 acpi [acpi] ACPI 1304 / 0501 errors on Acer 5024WLMi Laptop o bin/98220 wpa_supplicant operation does not match documentation p ports/98287 itetcu In port ports/sysutils/syslog-ng it is impossible to c o usb/98343 usb BBB reset failed errors with Creative Muvo MP3 player; f docs/98344 linimon [patch] An update of the article "Choosing the FreeBSD s ports/98353 shaun ipsec-tools fails to exchange keys between different a o i386/98366 i386 [em] Intel PRO/1000 MT Dual PCI-X: simulatenious 1000 s misc/98383 [feature request] include the mt command in the rescue f usb/98385 flz [patch] add support for libretto DVD Dock device to um o kern/98388 [ata] FreeBSD 6.1 - WDC WD1200JS SATA II disks are see o ports/98446 jkoshy [update] textproc/rxp: update to 1.4.4 o kern/98460 [kernel] [patch] fpu_clean_state() cannot be disabled o bin/98489 rafan [patch] usr.bin/top to display jail id o kern/98496 multimedia [snd_ich] some functions don't work in my sound kernel o bin/98500 [rpc] rpc.lockd(+statd) bind to any ip o kern/98504 multimedia [sound] Sound is distorted with SB Live 5.1 o ports/98508 lioux audio/liba52 does not work without library from math/d o ports/98537 kuriyama mail/p5-IMAP-Sieve fails PLAIN authentication against o bin/98577 dhclient(8): the link check by dhclient slows down boo o ports/98590 lioux [FIX] ports rxvt-devel on amd64 crashes inside rxvt_se o kern/98597 [netinet6] Bug in FreeBSD 6.1 IPv6 link-local DAD proc o kern/98618 [libexpat] [patch] src/lib/libexpat is setup for small o ports/98624 mharo [update] graphics/mapserver: Fix incorrect postgis dep o bin/98693 [patch] top(1): Reduce NIS server loading o docs/98759 joel [patch] sbp_targ(4) man page missing reference to devi o kern/98788 [syscons] [patch] Add sysctl to disallow VT_LOCKSWITCH o www/98798 www Our statistics page is out of date o kern/98804 [ar] VIA V-RAID metadata mis-read o bin/98805 [new feature] [patch] ddate(1) for BSD o conf/98815 [PATCH] Add euro symbol to pt_PT locale using other en o kern/98873 des [libfetch] allow fetch(3) to force using of ipv4 or ip o kern/98898 [pci] [patch] fix random sound problems in fm801 f ports/98909 portmgr [PATCH] bsd.port.mk: Extend DISTVERSION->PORTVERSION a o bin/98911 getopt(1): getopt.c license issue o i386/98932 i386 [i386] [patch] Kernel compilation failed on specific P o ports/98946 dougb [patch] xscreensaver and PAM support o ports/98949 openoffice editors/openoffice.org-2: Build fails with 'build_inst o docs/98974 doc Missing tunables in loader(8) manpage f docs/99007 doc [patch] misleading nat configuration info o kern/99017 sos [ata] [patch] FreeBSD versions above 5.3 panic if atap o kern/99068 [linux] [patch] Linux emulator crashed by java, when c o kern/99090 emax [kbd] some keys don't work with kbdmux o ports/99111 sobomax asterisk shutdown doesn't kill mpg123 o gnu/99173 [PATCH] replace gnu patch with a bsd-licensed one. o kern/99183 [PATCH] Gvinum stylefix o www/99184 wosch Viewing HP-UX manpages with http://www.freebsd.org/cgi o kern/99186 [PATCH] Gvinum dumpconfig/setstate/stop implementation f ports/99190 clement rc.d & mac_portacl: Add ability in rc.d scripts to sta o kern/99200 [bluetooth] SMP-Kernel crashes reliably when Bluetooth o kern/99216 [bfe] [patch] make bfe(4) always detect LINK_DOWN even o bin/99217 [patch] pam_ssh(8) waits for a wrong ssh-agent PID at o kern/99290 [ntfs] mount_ntfs ignorant of cluster sizes o ports/99302 jdp [patch] net/cvsup options o bin/99307 [patch] mount_nfs(8) incompatible with zVM VMNFS 3A0 o conf/99328 [patch] updates for src/share/examples/cvsup o docs/99356 rwatson man page of sendmsg(2) does not include EINVAL s ports/99359 stas [NEW PORT] x11/e17-module-bling: Compositing module fo f kern/99363 remko [smbfs] ïÛÉÂËÁ mount_smb o bin/99364 df(1) command shows negative space used o ports/99405 markus [New Port] sysutils/klineakconfig: kde-utility to play o usb/99419 usb external usb harddrive slow to accept o kern/99425 [ipv6] ping6 memory leak due to IPV6_RTHDR setsockopt o conf/99444 rc [patch] Enhancement: rc.subr could easily support star o kern/99464 [sysctl] 'sysctl -a' panics at dev2udev o kern/99485 Disk IO Causes multimedia/mplayer To Drop Frames o kern/99500 glebius [netgraph] [patch] netgraph doesn't honor the monitor o docs/99506 doc FreeBSD Handbook addition: IPv6 Server Settings s ports/99509 portmgr [PATCH][bsd.port.mk] move USE_OPENSSL to post section o conf/99515 /usr/local/etc/rc.d script files won't load during boo p stand/99517 standards Missing SIGRTMIN and SIGRTMAX signals p bin/99534 emaste [patch] dhclient(8) Classless Static Routes support o usb/99538 usb [kbd] while using USB keyboard default params of atkbd o docs/99551 blackend The Handbook erroneously advises that a wireless card o bin/99566 [jail] [patch] fstat(1) according to specified jid o conf/99593 [patch] Add IANA HP I/O and Status ports to /etc/servi o conf/99595 rc [PATCH] /etc/rc.d/dhclient doesn't interact well with o misc/99627 [PATCH] make update & CVSROOT f ports/99629 anholt graphics/dri-devel port still wont build even with lat o docs/99631 rafan [patch] document jid option in top(1) o misc/99643 request to remove src/tools/tools/portsinfo because it o i386/99645 x11 Xorg savage driver causes display to hang at unload o bin/99662 [rpc] quota information leak while rpc.rquotad is used o kern/99663 sos [ichsmb] [patch] add ICH6 support o ports/99678 obrien editors/vim build fails WITH_TCL o kern/99692 [patch] A pl_PL.dvorak keymap for syscons. o conf/99721 rc [patch] /etc/rc.initdiskless problem copy dotfile in s o bin/99735 /usr/src/Makefile 400MB is not enough anymore o kern/99758 [pty] [patch] chown/chmod pty slave side in kernel o kern/99765 drifting time, SuperMicro PDSMi Motherboard, "calcru n o bin/99800 [libc] [patch] Add support for profiling multiple exec p bin/99807 rafan [PATCH] update ncurses in base to 5.5 o kern/99826 [libc] [patch] setenv(3)/unsetenv(3) leak memory o conf/99844 incorrect default newsyslog.conf settings p kern/99870 jhb INTRCNT_COUNT in {amd64,i386}/include/intr_machdep.h w f usb/99887 flz Archos Multimedia Jukebox doesn't work o bin/99896 gad [patch] lpr -r flag has no effect o stand/99960 standards [Patch] [make] Add -p flag s bin/99973 yar systat(1): systat -ifstat traffic counter overflow o stand/100017 standards [Patch] Add fuser(1) functionality to fstat(1) o bin/100018 newsyslog(8) does not check size if time_at is used o i386/100142 i386 [pci] [patch] /dev/smb0 device not available on system s ports/100150 shaun mail/mutt-ng: can't bind in muttng-20051110 o kern/100170 Support login class in ldap directory o docs/100196 doc man login.conf does explain not "unlimited" o i386/100204 i386 FreeBSD reports raid as broken - but it is not o docs/100242 doc sysctl(3) description of KERN_PROC is not correct anym p bin/100287 yar /etc/rc.subr cannot deal properly with interpreted dae o bin/100320 Update top(1) to 3.6 o misc/100322 [tools] [patch] kerninclude.sh doesn't dump object nam o amd64/100326 amd64 /dev/fd0 not created after installation FreeBSD 6.1 AM o amd64/100347 amd64 No hardware support Silicon Image SiI 3132 f amd64/100348 yongari No hardware support: Marvell 88E8053 Yukon PCI-E Gigab o ports/100350 clement www/apache20 profiles not working at system startup/sh o kern/100410 [bge] bge driver disables access to shared iLo on HP D o bin/100424 [patch] ssh(1): SSH option BindAddress is ignored by o o bin/100436 [sysinstall] live CD fixit mount does not find mount_m o bin/100496 [patch] Fix to get rid of the telnet(1) to cisco probl o ports/100497 portmgr [PATCH] add include to support EFL-related ports o ports/100504 skv [PATCH] databases/p5-Class-DBI: Reduce dependencies o kern/100513 [smbus] Inconsistent definition of SMBus addresses in o kern/100519 net [netisr] suggestion to fix suboptimal network polling o kern/100525 Panic while running webalizer o bin/100535 [patch] cal(1) and ncal(1) do not take into account mu o docs/100538 jcamou [PATCH] en_US: Correct handbook/install (update the bo o ports/100556 portmgr [patch] bsd.port.mk - proper using of ECHO_CMD and ECH o kern/100579 [ipv6] Multicast data structure corruption in ipv6 sta o bin/100585 [patch] top(1): top -s0 causes load excessive f ports/100594 portmgr [patch bsd.port.mk] to update makewhatis database afte o conf/100606 /etc/services maps incorrect names for XMPP o kern/100609 UPDATING suggestions are missing a few mount commands. o conf/100616 [patch] syslog.conf: lines after exclamation point ign f ports/100650 audio/moc dumps core when detach/quit f ports/100669 openoffice Error on building Openoffice.org-2 o bin/100709 getaddrinfo(3) should return TTL info o bin/100732 [patch] make dump(8) utility take modulo 10 of request o usb/100746 usb [kbd] system does not boot due to USB keyboard problem f bin/100765 [patch] natd(8): add support for kqueue in natd o ports/100771 sergei port submit(devel/porttools) cannot parse multiple opt o ports/100776 sem Failure to update devel/mico by portupgrade o conf/100782 [kbd] [patch] Default keymap to support ALT+Left, ALT+ o ports/100785 gnome devel/nspr does not pass `make test` on 6-stable o bin/100805 yar WITHOUT_INET6 is ignored by many src/ components o amd64/100838 amd64 FreeBSD 6.0/6.1 kernel panics when booting with EIST e o kern/100859 multimedia [snd_ich] snd_ich broken on GIGABYTE 915 system o ports/100896 [new ports] emulators/vmware-server-guestd1 emulators/ o bin/100921 [tftpd] [patch] libexec/tftpd: `-w' non-traditional ac o bin/100956 remko [patch] support setting carp device state with ifconfi a bin/100969 bms [rpc.lockd] rpc.lockd conflict with cups over udp port o ports/100996 portmgr bsd.port.mk: add macro to copy with right permissions o ports/101029 portmgr [PATCH] bsd.port.mk: add bsd.ocaml.mk to support OCaml o bin/101033 make(1) memory allocation problem in 4.x f usb/101043 flz [usbdevs] [patch] Add vendor "Sony Ericsson Mobile Com o kern/101045 [arcmsr] [patch] Updates to arcmsr(4) o i386/101062 i386 Freeze on detect Intel 900 VGA on boot with ACPI o ports/101064 stas [NEW PORT] www/xsm: Extensible Site Manager o ports/101078 obrien [PATCH] update editors/hexedit to 1.2.12 o ports/101120 portmgr [patch] bsd.port.mk: Tell CC and CXX to ports without f bin/101123 delphij gzip -l signed value error o amd64/101132 amd64 Incorrect cpu idle and usage statistics in top and sys f ports/101161 stephane [PATCH] devel/ocaml-findlib: update to 1.1.2 o ports/101166 lioux bittorrent-curses only works under English locales. o kern/101201 anholt [request] add support for i945 graphics o ports/101202 stephane [PATCH] www/ocaml-net: update to 1.1.2 o kern/101226 jfv [em] Access to IPMI module is lost when the em driver o kern/101228 embedded [nanobsd] [patch] Two more entries for FlashDevice.sub o ports/101230 obrien shells/bash: bash parser not generated properly with s o bin/101232 [patch] make(1) hangs with -j and -f o amd64/101248 amd64 vi(1) can crash in ncurses(3) on amd64 o docs/101271 remko serial console documentation implies kernel rebuild re o ports/101275 mharo bug fixed in sudo that prevented use in LDAP user acco o ports/101310 itetcu proposal: OPTION_VERSION in port system o bin/101316 /bin/sh pwd bug after cd into restricted directory f kern/101334 [ppp] ping -f dst_addr through pppN iface caused kerne o ports/101340 danfe x11/nvidia-driver: Vidcontrol Causes Video Corruption o ports/101353 sat [MAINTAINER] www/xpi-surfkeys: Add Vim keybindings o i386/101379 i386 page fault clobbers error code in trap frame o ports/101383 ume [PATCH] mail/cyrus-imapd: add handling of WITHOUT_BDB o ports/101408 obrien tcpshow is NOT able to handle tcpdump 3.9.1 output o kern/101415 AcpiEnterSleepState(ACPI_STATE_S5) may hang system o kern/101417 multimedia [sound] 4-speakers output not possible on Asus A8V-Del o ports/101420 nork acroread7-7.0.8,1 doesn't work with linuxpluginwrapper s ports/101450 stas multimedia/transcode: tcprobe broken for devfs f ports/101459 cy [PATCH] misc/screen: fix overflow on 64-bit o docs/101464 doc sync u_RU.KOI8-R/articles/portbuild/article.html with o bin/101590 [lib] [patch] -O2 optimizing out abi-tag note from exe o ports/101690 stas [NEW PORT] devel/cross-binutils: GNU binutils for cros o bin/101693 [patch] tcpdump -h shows still "-a" o usb/101757 usb [patch] uhid.4: correct structure field names to match o usb/101761 usb [patch] usb.h: increase maximal size of report descrip a ports/101764 sergei no stable zsh in ports o bin/101765 ldd is unable to read ELF header? o ports/101774 stas [NEW PORT] devel/strongarm-elf-gcc: GNU gcc 4.1.1 for o usb/101775 usb [libusbhid] [patch] possible error in report descripto o kern/101794 [pfsync] Setting plip as syncdev for pfsync causes ker o kern/101819 sos The ATA driver wrongly determines type RAID on ICH7R ( o bin/101921 security.bsd.see_other_uids for further programms? o i386/101924 i386 MD5 checksums do not match with checksum file for 6.1 o ports/101958 sobomax RCify misc/zaptel and cleanup o ports/101962 sobomax Enforce net/asterisk dependencies p bin/101979 [patch] tail(1): tail -F fails to print remainder of o o kern/102035 net [plip] plip networking disables parallel port printing o ports/102058 ports arping has INconsistent versioning o ports/102060 anders error in man page for imapd of mail/imap-uw f ports/102093 new port (restoring from Attic): fix games/myth2_demo f ports/102102 portmgr [PATCH] bsd.port.mk: Allow user to ignore DIST_SUBDIR o docs/102148 doc The description of which Intel chips have EM64T is out o bin/102160 thomas EDITOR and PAGER not set correctly in fixit.profile o bin/102162 [patch] tftpd(8): Limit port range for tftpd o bin/102205 login failure: ssh + gssapi + dual stacks + packet los o kern/102217 no driver for HP J2585A DeskDirect 10/100VG LAN Adapte o bin/102232 gad Defects in -O option to ps(1) f ports/102237 novel Improvements over deskutils/logjam o bin/102299 [patch] grep(1) malloc abuse? o i386/102343 acpi ACPI error p bin/102354 thomas [patch] Small cleanup for ifmedia.c o bin/102357 csh/tcsh jobs control f usb/102373 flz [patch] driver for MFT o bin/102394 [patch] ls(1) do not shows inode number symbolic link f i386/102408 remko g_vfs_done():fd0[READ(offset=65536, length=8192)]error o ports/102413 mi Festival port makes build with ESD difficult o ports/102414 ume [PATCH] mail/cyrus-imapd: avoid fopen limit during mbo o ports/102472 nork MASTER_SITE_SOURCEFORGE_JP in bsd.sites.mk update o ports/102473 simon [patch] portaudit fails to overwrite auditfile.tbz whe s ports/102499 rik lftp asc file checksum mismatch o conf/102502 net [patch] ifconfig name does't rename netgraph node in n f bin/102523 emax [bluetooth] [patch] Virtual serial port server code fo o kern/102540 ru [netgraph] [patch] supporting vlan(4) by ng_fec(4) o ports/102544 osa ltmdm driver (comms/ltmdm) crashes system whene line r o kern/102549 [bktr] [patch] fix Pixelview PlayTV Pro 2 on bktr o conf/102595 add {daily|weekly|monthly} snapshot creation to /etc/p f ports/102603 cperciva move ports o bin/102609 [PATCH] Add filtering capability to date(1) a ports/102613 delphij openldap-sasl-client doesn't satisfy openldap-client d f i386/102617 remko 7 x "smb_maperror: Unmapped error 1:158" at Open Offic o i386/102678 i386 [kbd] Dell PowerEdge DRAC5 USB Keyboard o bin/102694 pjd df(1) can forget to print the unit with -h o conf/102700 rc [PATCH] Add encrypted /tmp support to GELI/GBDE rc.d s o amd64/102716 amd64 ex with no argument in an xterm gets SIGSEGV o docs/102719 doc [patch] ng_bpf(4) example leads to unneeded promiscuos o conf/102722 rc kerberos5 server startupscript should use --detach o bin/102747 brian [patch] ppp timer subsystem stops under certain circum o kern/102752 rwatson malloc(M_WAITOK) of "g_bio", forcing M_NOWAIT with non o kern/102783 [acpi] hw.acpi has thermal controls backwards when ext o bin/102793 imp top(1): display feature of current CPU frequency o kern/102795 [libmd] {SHA1,RIPEMD160}_Update() produce wrong result o java/102888 glewis Diablo 1.5.0 throws FileNotFoundException when opening o conf/102913 rc /etc/rc.d/named killall in jailed OS o i386/102943 i386 kernel crash when unloading the xfs kernel module o ports/102946 secteam [patch] security/portaudit o ports/102954 obrien textproc/urlview: switch from netscape to one gecko. o conf/102972 units.lib not up to date (exchange rates) f amd64/102975 amd64 NIC unknown o usb/102976 usb Casio Exilim Digital Camera cause panic o bin/103006 delphij [patch] gzip support for -k option as used by bzip2 o bin/103007 [patch] man: support for bzip2 compressed manpages o kern/103019 jhb [patch] MFC link flapping workaround for em(4) to RELE f kern/103020 remko Error in ATI Radeon 7000 driver o kern/103022 /usr/include/crypto/rijndael.h is wrong o kern/103035 [ntfs] Directories in NTFS mounted disc images appear o kern/103041 [ipmi] unloading ipmi panics Dell PE 2850, ipmi doesn' o usb/103046 usb [patch] ulpt event driven I/O with select(2) and nonbl o bin/103089 [patch] mount_nfs(8): introduce new option o kern/103125 [acpi] ACPI bad reads/writes occur since upgrading fro f ports/103155 sem [NEW PORT] net/cacti-plugin-flowview: A simple viewer p usb/103167 iedowse Transcend JetFlash120 memory stick problem (with fix) f i386/103192 i386 no CD/DVD devices found while install Freebsd o kern/103200 [ral] ral driver for RELENG_6 o ports/103208 rafan [PATCH] print/mftrace: update to 1.2.4 o ports/103209 dd [PATCH] Mark net/obnc as deprecated and IGNORE on newe o kern/103250 [puc] puc failed to attach sio ports when loaded as mo o kern/103253 inconsistent behaviour in arp reply of a bridge o amd64/103259 amd64 Cannot use ataraid on nvidia nForce4+amd64 f kern/103271 [libc] crash inside dlclose() on shared library unload o usb/103289 usb USB 2.0 problems on AMD LX-800 CPU and CS-5536 chipset o kern/103304 pf pf accepts nonexistent queue in rules o kern/103312 dlsym(NULL,) doesn't work properly o kern/103328 ipfw sugestions about ipfw table o kern/103332 mux [fxp] fxp driver does not work correctly on Intel 8255 o kern/103365 acpi [acpi] acpi poweroff doesn't work with geli device att o bin/103366 kientzle tar fails if the tarball has device nodes when jailed o ports/103395 security/gnome-ssh-askpass interferes with gnome-scree o usb/103418 usb [usb] [patch] usbhidctl: add ability to write output a o kern/103455 "swap_pager: indefinite wait buffer" with page file en o ports/103462 kuriyama [PATCH] net-mgmt/net-snmp override files, installed by f ports/103471 ade port gnu-automake installs old config.guess and old co o conf/103486 rc [rc.d][patch][chroot named] rc.d/jail: mount fstab aft o conf/103489 rc [rc.d] [patch] named_chroot_autoupdate doesn't work in o bin/103500 fjoe [patch] mkuzip(1) enhancement to accept size of input p bin/103501 matteo [patch] mdmfs(8) enhancement to allow use in fstab and o www/103522 www Search interface oddity p ports/103529 gnome www/seamonkey: enable SVG and Pango font rendering sup o kern/103615 scottl [aac][patch] aac(4) update to the last version availab o bin/103682 nfsstat(1) should use %u instead of %d to display NFS o ports/103685 obrien editors/vim: The hope can provide the language file in o bin/103690 kientzle tar processes --exclude as if the pattern started with o kern/103702 scsi [cam] [patch] ChipsBnk: Unsupported USB memory stick o kern/103715 [mpt] Broadcom BCM5708SKFB not recognised by the drive f ports/103721 jmz musixtex don't install with teTeX-3.0 f docs/103730 doc [mail-archive]: duplicated file in mail archive o kern/103733 i915 driver on hp dc7100 o bin/103762 some tun interfaces with a mtu of 1500 while i should o bin/103764 [libradius] [patch] libradius aborts server processing o kern/103792 Multiple Logins: ; a 't' appears at prompt o conf/103794 adding other login class to login.conf in case one is o ports/103800 clement [patch] www/apache22 multiple instantiation does not w o www/103805 danger [patch] en/advocacy/myths.sgml o docs/103807 danger wicontrol(8) manpage contains a broken URL f kern/103831 remko [atapicam]: 6.2 BETA1: A kernel with atapicam stops at o bin/103845 sha256 /dev/acd0 returns immediately a bin/103873 csjp login(1) SEGFAULT on unsuccessful login o bin/103890 w doesn't see sessreg'd entries in utmp o ports/103896 openoffice OO.o port should add /program to LD_LIBRARY_PA o usb/103917 usb USB driver reports "Addr 0 should never happen" o www/103938 brd cvs-src archive does not rebuild since 12 Mar 2006 o conf/103968 Missing locale for LV o i386/103972 jhb [boot] boot loader doesn't display right /boot.config o conf/103976 rc rc.d/named restart failure o ports/103979 netchild ports/icc: Proposed update to icc port for intel compi o ports/104009 portmgr bsd.port.mk - white space / comment cleanup f kern/104011 multimedia [sound] soundcard "82801G (ICH7 Family) High Definitio o ports/104018 portmgr bsd.port.subdir.mk - whitespace cleanup o ports/104029 lioux [PATCH] net-p2p/mldonkey: don't install rc script with o ports/104040 obrien shells/bash lacks support for rbash o ports/104043 kuriyama jman(1) in /usr/ports/japanese/man is obsolete. f kern/104056 remko VMware ESX 3.0: lnc0: Missed packet -- no receive buff o kern/104079 [fdc] kldunload fdc.ko leads to panic: mutex Giant own o bin/104092 [patch] iostat(8): missing blanks in iostat output o ports/104156 rafan [PATCH] editors/vim: WITH_ICONV knob, some portlint(1) o ports/104161 portmgr Let 'make search' also search in /usr/ports/MOVED o ports/104189 lioux (patch) Enable MMX and video grabbing for ffmpeg-devel o kern/104212 [puc] [patch] support for Kuroutoshikou SERIAL4P-LPPCI o bin/104248 [patch] pw(8) does not support the setting of the mode o ports/104255 xride x11/wdm Unable to change window manager after the firs o kern/104270 sos [atapicd] [patch] burncd failure due to acd_get_progre o ports/104273 demon mail/mailgraph compile fails o usb/104290 usb QUIRK: TOSHIBA DVD-RAM drive (libretto DVD Dock) o ports/104300 mharo updating ports-index fails on mapserver port when WITH o ports/104329 lioux [PATCH] x11-themes/kde-icons-nuvola: [SUMMARIZE CHANGE o bin/104330 growfs(8): cannot grow above 500 gb o ports/104331 lioux [PATCH] x11-themes/kde-icons-sparkling o ports/104332 lioux [PATCH] x11-themes/kde-icons-wasp o usb/104352 usb [ural] ural driver doesnt work o ports/104394 itetcu port update: games/powwow o docs/104402 remko man pf.conf mentions in the TABLES section securelevel o docs/104403 doc man security should mention that the usage of the X Wi o conf/104408 rc command not set in rc.d/isdnd, can't stop isdnd with t o ports/104427 lioux ffmpeg-devel port's Makefile introduces errors if a ma o docs/104432 trhodes No mention of "let" shell builtin in manual pages. f kern/104462 spamass-milter and clamav-milter fail on SMP with ULE o ports/104465 apache port www/apache13-modperl: stale RcNG script o kern/104484 [sched_ule] A kernel with polling: the system freezes o docs/104493 doc [patch] Wrong description in ntp.conf(5) (CURRENT and o gnu/104533 [patch] make send-pr(1) read configuration from ~/.sen o conf/104549 rc [patch] rc.d/nfsd needs special _find_processes functi o bin/104553 [PATCH] Add login group support to login.access(5) o ports/104560 alexbl [patch] x11-toolkits/py-gtk2 does not configure with p o usb/104645 usb QUIRK: Rave C-201 MP3 player f ports/104680 gabor New port: emulators/linux_base-slackware - Slackware b o kern/104682 ipfw [ipfw] [patch] Some minor language consistency fixes a o ports/104686 anders unbreak installation of mail/majordomo s bin/104689 matteo [patch] powerd(8): add support for limiting cpu freque p bin/104702 des [patch] Make fetch(1) preserve permissions when overwr o bin/104713 remko [patch] FreeBSD base and misc/zoneinfo conflict with e s ports/104725 request new port: x11/nvidia-driver-devel o bin/104731 gad [patch] missing newline in lpq output o kern/104738 mlaier [inet] [patch] Reentrant problem with inet_ntoa in the o stand/104743 standards Wrong values for _POSIX_ minimal limits o bin/104746 [PATCH] 'traceroute -e -P TCP' cannot work through a r o kern/104777 [kernel] [patch] Driver not unset properly after kldun o ports/104788 perky Improper installation of python2.4: module bsddb fails o kern/104799 [ata] Several ata observations ICH8 BIOS o bin/104809 cron(8): incorrect cron behavior with mday field = "*/ o ports/104813 remko [patch] Broken URL in security/portaudit manpage o i386/104826 andre FreeBSD 6.1 not RFC 768 (UDP) compliant on Compaq/HP D o ports/104831 edwin [patch] A bug in net/dhcpdump when decoding FQDN DHCP o ports/104832 clsung [NEW PORT] sysutils/p5-BSD-getloadavg: A getloadavg(3) o ports/104838 ale [PATCH] sysutils/portconf: auto detect real path of /u o stand/104841 standards C99 long double square root. o ports/104842 apache update www/mod_auth_kerb to version 5.1 o bin/104845 [patch] Build error on contrib/file/magic o kern/104851 [inet6] [patch] On link routes not configured when usi o kern/104862 [bge] BCM5704 only works at 10Mbit o amd64/104875 amd64 unsupported intel Desktop Board DG965WH o ports/104877 ade do not let libtool link every single program against i o docs/104879 doc Howto: Listen to IMA ADPCM .wav files on FreeBSD box o kern/104882 [iicbb] [patch] pvr250 and pvrxxx drivers need iicbb p p conf/104884 flz [patch] Add support EtherChannel configuration to rc.c o ports/104910 sem portsdb -Uu fails on building lsdb when EMACS_NAME is f kern/104920 bmah ipv6 can only be disabled by editing kernel o bin/104921 ipfw [patch] ipfw(8) sometimes treats ipv6 input as ipv4 (a o www/104925 www Missing space between search input box and search butt o kern/104938 [nullfs] readlink("/proc/curproc/file") does not work o kern/104950 [ata] no support for SATA controller Initio INIC-1622T o ports/104959 eclipse java/eclipse does not work on 7-CURRENT: Undefined sym f kern/104966 skype hangs in uninterruptable state on 6.2-PRERELEASE o ports/105002 danfe x11-wm/wmii - fix WWW and MASTER_SITES o bin/105060 [patch] adduser(8) does not support the setting of the o i386/105063 i386 US Robotics (3Com) 3CP5609 PCI 16550 Modem works bad i o usb/105065 usb SATA - USB Bridge o kern/105093 [ext2fs] [patch] ext2fs on read-only media cannot be m o ports/105095 nork xpdf fails to compile o conf/105100 [patch] no support for lv (latvian) locale o kern/105103 [patch] request to merge pidfile(3) and daemon(8) to 4 f ports/105108 portmgr cd /usr/ports; make TEMPLATES=/root/templates readmes a ports/105122 shaun [PATCH] net-im/ejabberd: new UID/GID collides with Sam o amd64/105129 amd64 Compatibility with Intel D o conf/105145 rc [PATCH] add redial function to rc.d/ppp o ports/105147 portmgr [PATCH] Fix OPTIONS handling for BATCH=yes o sparc/105157 sparc64 No reply to ping on Sparc64 o i386/105175 i386 ipmi acpi trouble o ports/105206 scrappy sysutils/bsdstats attempts to remove /usr/local/etc/pe p kern/105228 bms [PATCH] if_clone support for tun(4) and tap(4) f ports/105277 delphij [UPDATE] mail/spamd - improvements and clean up o kern/105330 ipfw [ipfw] [patch] ipfw (dummynet) does not allow to set q o www/105333 www [PATCH] Base selection in events in libcommon.xsl does o bin/105341 [libpam] [patch] pam_krb5: Add minimum_uid/minimum_gid o kern/105346 des fcntl(): prevent useless locking with F_DUPFD o usb/105361 usb Kernel panic during unmounting mass storage (Creative o kern/105368 geli passphrase prompt malfunctioning when mounting en o ports/105374 portmgr PR 100555 DESTDIR changes break BSD.lib.mk f kern/105375 yongari [sk] 2 x Marvell GBit LAN: device sk0 is attached, but f kern/105390 geom [geli] filesystem on a md backed by sparse file with s o docs/105447 keramida new committers help to coverity o docs/105456 keramida [patch] overhaul of the security chapter (14) o www/105461 remko Some tables in web pages rendered wrong in Opera and I o conf/105465 rc.d/nfslocking is dependent on rpcbind o ports/105473 ports/sysutils/cpdup -o doesn't work as advertised o kern/105500 SCSI install on Microsoft Virtual Server 2005 doesn't o ports/105516 obrien [patch] sysutils/asr-utils needs ASR_COMPAT kernel opt o usb/105518 usb epson perfection 3490 usb scanner def f ports/105529 portmgr [PATCH]: add WWWDIR macro to bsd.port.mk o kern/105537 problems in acpi on HP Compaq nc6320 o ports/105538 lioux [PATCH] multimedia/ffmpeg-devel: Update to 2006/11/14 o kern/105542 [ldd] on amd64, ldd produces bogus output for i386 exe o conf/105568 rc [patch] Add more flexibility to rc.conf, to choose "_e p conf/105570 bms [patch] to allow tun(4) in rc.conf 'cloned_interfaces' o kern/105579 piso [libalias] dcc resume over natd in 6.x o ports/105597 skv [patch] make ports/net-mgmt/ng_ipacct NanoBSD-friendly o i386/105600 multimedia [snd_mss] can not detect PC-9821 V166 internal sound o www/105602 www [Patch] Add support for sidenav in oldnewsflash and ol o kern/105604 [bktr] [patch] add support for Pixelview PlayTV Pro 2 a ports/105606 shaun security/ipsec-tools with option STATS gives compiler o docs/105608 doc fdc(4) debugging description staled o bin/105614 [patch] setkey(8): Creating NULL encryption ESP SAs wi o docs/105620 hrs new article: LDAP Authentication o ports/105684 bushman [patch] net/nss_ldap pthread_atfork() bug f ports/105716 textproc/lemmatizer: Update to version 1.2 o bin/105721 Misleading error message from e.g. "df -l -t ufs" o ports/105724 lioux kmplayer crashes - while nothing(!) in ports or system o bin/105811 Crossbuilding powerpc from amd64 doesn't work. o ports/105835 portmgr Use portsnap by default for 'make update' o bin/105860 top(1) user ID misalignment in mixer username/uid mode a ports/105883 portmgr [patch] bsd.port.mk: refine some comments about linux o ports/105884 xride [PATCH] net/linphone-base: fix breakage by libosip2 up a ports/105917 portmgr bsd.port.subdir.mk: Fix 'make search' with non-default o kern/105964 rodrigc [msdosfs] Make MSDOSFS_LARGE a mount option o ports/105985 lioux graphics/icoutils: fix compilation problems o ports/105994 clement security/dropbear: fix compilation problems o docs/105997 doc sys/kern/sys_pipe.c refer to tuning(7), but there is n o conf/106009 rc [patch] Fix pppoed startup script to process multiply o kern/106028 tftp inside pxeboot isn't initialised properly o ports/106036 kuriyama ports/net-mgmt/net-snmp/files/snmpd.sh.in patch to flu o usb/106041 usb FreeBSD does not recognise Mustek BearPaw 2400TA usb s o bin/106049 [patch] tftpd(8) - improve -w option to support unique o usb/106070 usb devd recognizes ucom, but ttyU is the device actually o kern/106078 rwatson shmget regression in -CURRENT? o misc/106091 Keyboard disabled at mountroot> prompt o misc/106107 left-over fsck_snapshot after unfinished background fs a ports/106114 flz openospfd-devel problem with point-to-point links o ports/106136 osa [PATCH] devel/libhoard: update to 3.5.1 o amd64/106186 amd64 panic in swap_pager_swap_init (amd64/smp/6.2-pre) a ports/106195 portmgr bsd.port.mk - typo o ports/106232 infofarmer [PATCH] Add SDL sound support to games/freeciv* o kern/106255 trhodes [msdosfs] [patch]: correct setting of archive flag o kern/106275 [/dev/random] [crypto] Hifn 7955 on Soekris Engineerin o ports/106298 scrappy [PATCH]: remove misleading line /bin/hostname from sys p docs/106315 danger man blackhole mentions ONLY ipfw o kern/106340 Need to control disk write cache on per-disk basis o bin/106349 kerberos password too long o kern/106355 macros in stdio.h non-portable (e.g., C++ ::feof() fai o kern/106400 pf fatal trap 12 at restart of PF with ALTQ if ng0 device o docs/106416 keramida man page, xargs option not documented o i386/106421 i386 FreeBSD 6.1 Installation - Fatal Trap 12 o docs/106425 doc [PATCH] add a HARDWARE-section to ata(4) o ports/106429 apache www/apache* ports install rc.d scripts which don't fol f ports/106441 mat [PATCH] mail/p5-Mail-SpamAssassin: option to include l o bin/106442 setting HOME crontab (vixie-cron) not functioning o kern/106444 [ng] Kernel Panic on Binding to an ip to a virtual atm o usb/106462 usb Motorola U6 PEBL not recognized by system via USB [pat o ports/106463 ume [patch] Feature request: please add audacious support o ports/106483 portmgr [PATCH]: embed distfile information in +CONTENTS o kern/106488 [twa] twa driver out of date o i386/106493 i386 [patch] pxeboot uses /pxeroot instead of / o ports/106503 lioux multimedia/ffmpeg - Request using ffmpeg-devel as ffmp o ports/106533 clsung [NEW PORT] benchmarks/geekbench: Cross-platform benchm o usb/106538 usb [patch] Can not burn DVD on Sony DRX-820UL external US a ports/106557 portmgr [PATCH] Make USE_PHP work after inclusion of bsd.port. o ports/106616 portmgr bsd.port.mk: Default file modes set incorrect for non- o usb/106621 usb [usb] DLINK DUB-E100 support broken o ports/106633 gerald emulators/wine: print/cups-base: wine-kthread binary b o bin/106642 dougb [patch] Allow excluding certain files from mergemaster o ports/106643 sem sysutils/portmanager: undefined method `x11base' for n o kern/106645 [uart] [patch] uart device description in 7-CURRENT is o kern/106646 [nfs] [patch] Pointer incorrectly cast to ulong o bin/106734 [patch] SSE2 optimization for bzip2/libbz2 o ports/106754 lioux [PATCH] dns/py-dnspython: update to 1.5.0 o i386/106789 i386 Internal NIC of GA-K8N51GMF-RH does not work properly o ports/106795 ale undefined reference to: when portupgrade 'mysql-server o ports/106806 joerg [patch] raise buffer limit for ports/misc/team o ports/106848 portmgr [PATCH] Mk/bsd.port.mk -- Add support to remove locale o i386/106850 i386 powernow0 attach returned 6 o kern/106851 [vge] vge0: MII read timed out (regression) o usb/106861 usb [PATCH]: usbdevs update: Add product ACER Zeevo BT-500 o bin/106872 [patch] extattr support for usr.bin/find o conf/106873 rc [patch] rc.d/nfslocking does not properly restart o kern/106876 panic: page fault, when cdrom is disconnected while no o ports/106896 mharo [PATCH] net/p5-Net-CIDR-Lite: [ipv6 category added] o docs/106916 chinsan Wrong tar command at topic 17.6.8 in Handbook f kern/106955 remko [ati]: ATI radeon x1600 not recognized by the system o kern/106960 [sata] 6.2 can't find SATA secondary drive, but 6.1 ca o conf/106978 "daily run" incorrectly assumes auth.log is rolled mor a ports/106998 ade devel/gettext w/ NOPORTDOCS installs/orphans HTML docu p kern/106999 bms [netgraph] [patch] ng_ksocket fails to clear multicast o conf/107035 rc bridge interface given in rc.conf not taking an (stati o ports/107112 krion x11/xterm -- option to enable 256 color support f ports/107135 netchild ports/sysutils/ezjail improvements f ports/107150 miwi [UPDATE] www/phpwebapp o kern/107154 [pam] pam.d/sshd pam_ssh.so doesn't start ssh-agent o bin/107171 systat(1) doesn't die when it's xterm is killed while o ports/107184 lioux net-p2p/mldonkey port is broken. o ports/107209 delphij [patch] request reserved uid/gid for port spamd + miss o ports/107222 fjoe stopping problems with rc.d in net/asterisk-bristuff o ports/107240 clement [PATCH] www/linkchecker: update to 4.6 o usb/107243 usb [patch] Apacer USB Flash Drive quirk f ports/107267 itetcu [new port] science/dcmtk -- DICOM toolkit o kern/107277 panic: bus_dmamap_load_mbuf_sg o kern/107279 [ath] panic: ath_start: attempted use of a free mbuf! o kern/107285 freeze and reboot by mounting twice o kern/107305 ipfw fwd doesn't seem to work o ports/107324 gnn [PATCH] net/pcs: update to 0.3 s ports/107335 itetcu port update for devel/sfslite o ports/107354 net/icmpinfo: icmpinfo -vvv does not recocnize any ICM o ports/107357 db [MAINTAINER] comms/wsjt: [SUMMARIZE CHANGES] o ports/107367 clsung New port: finance/sabernetdcs-client A labor data coll f ports/107368 itetcu audio/normalize: [patch] - normalize-mp3 and normalize o usb/107388 usb [PATCH] Add utoppy device from NetBSD o kern/107406 [pccarddevs] 3Com wifi card not recognized o docs/107432 doc Handbook's default partitioning schema is out-of-date f kern/107443 dd fails to copy from disk to disk when bad sectors ar a ports/107447 shaun [patch] devel/sdl12 - Add devel/directfb support o conf/107453 dwmalone [patch] calendar.judaic is out of date o ports/107492 miwi [NEW PORT] archivers/xarchiver: A lightweight GTK2 fro o usb/107496 usb USB device problem on RELENG_6_2 (SHORT_XFER) (regress f ports/107498 python Update py-tada to use old website for download and pro o ports/107505 kde multimedia/kdemultimedia: kmix - XF86RaiseVolume, XF86 o bin/107515 /bin/ls bug o kern/107523 [ipv6] ng_fec and IPv6 (problem might also affect carp o usb/107526 usb Patch to support the Crystalfontz CFA-635 20x4 USB LCD f ports/107528 itetcu skype-devel does not start o bin/107529 [libexec] [patch] ldd(1) aborts abruptly if a shared l p conf/107560 remko [patch] Change matching expression in periodic/securit o stand/107561 standards Missing SUS function tcgetsid() p docs/107578 keramida [patch] uniq(1) should mention max line length o ports/107599 mnag [patch] Building LigHTTP with webDAV support f ports/107602 db [NEW PORT] comms/gnuradio: Amateur Radio Software defi o docs/107611 doc man syncookies should mention net.inet.tcp.syncookies_ f ports/107621 itetcu net/proxychains doens't compile on 4 and 5 o usb/107642 usb [patch]Ralink Technology RT2501USB/RT2601USB chipset d f ports/107643 kde net/lanbrowsing lisa don`t start on system boot o kern/107644 [patch] add support for Intel Pro Wireless 3945 o ports/107645 openoffice editors/openoffice.org-2 WITH_GNUGCJ build failure o kern/107665 usb [usb] [patch] uscanner support for epson stylus DX5050 o ports/107667 clement www/apache22 requires gettext without checking for it' o ports/107675 gabor security/vpnc suggest rc.d script o bin/107676 file -p does not work o usb/107701 usb usbd ignores "detach" o kern/107707 geom [geom] [patch] add new class geom_xbox360 to slice up o ports/107719 clement Mk/bsd.apache.mk: document options for user to customi o ports/107723 clsung [NEW PORT] devel/CPAN-SQLite: Search CPAN using a SQLi f ports/107814 joerg mail/postfix uses wrong order of -I options o ports/107816 roam The IPv6 patch brakes the location feature of tinydns o www/107821 remko can't search freebsd-embedded archives f ports/107832 upgrading sysutils/dar fails because of library search o amd64/107858 amd64 amd64 motherboard project - none working sound and gra o ports/107874 port databases/freetds: fix for MSSQL 7 o www/107881 remko Support vendor listing o ports/107908 olgeni manpath.config not updated after installing erlang por o usb/107935 usb [uplcom] panic while accessing /dev/cuaU0 f ports/107937 jailed net/isc-dhcp3-server wouldn't run with an immut o ports/107938 skv firebird-client2 does not build on FreeBSD 6.1. o ports/107948 portmgr pass fetch(1)-specific options to FETCH_CMD o ports/107951 fenner [PATCH] editors/xxe-std: update to 3.5.1 o ports/107957 shaun [PATCH] irc/ircd-ratbox: update to 2.2.4 o ports/107962 novel security/libgpg-error fails to build o kern/107992 rtorrent causes kernel panic on 6.1-RELEASE o kern/108017 acpi [acpi]: Acer Aspire 5600 o bin/108020 comsat(8) does not verify return values of getpwnam an f ports/108021 itetcu New Port : gpsim Microchip(t) PIC emulator o bin/108033 ls(1) coredumps when nss/ldap is misconfigured o kern/108046 obrien [nve] [patch] missing deviceid(s) in nve o usb/108056 usb Mouse gets powered off during device probe when plugge f ports/108070 java Update devel/apache-ant from 1.6.2 to 1.7.0 o ports/108085 perky port devel/py-freebsd: reference counting bug o docs/108101 doc /boot/default/loader.conf contains an incorrect commen o ports/108102 jylefort gtk-bluecurve-theme mirrors don't work f ports/108104 itetcu print/hplip: documentation gets installed though NOPOR o ports/108106 lev graphics/vips: does not build f ports/108115 itetcu new port: devel/pstreams: C++ utility for simple IOStr f kern/108117 rafan ncurses sigabrt's in delscreen() because of free() of f ports/108122 itetcu [Patch] ftp/proftpd-mysql - Fixed makefile o ports/108126 kuriyama [patch] Net-SNMP polls the wrong sysctl for the Total o kern/108133 [bktr] [patch] bktr driver doesn't recognize Hauppauge o www/108134 www ftp /pub/FreeBSD/ISO-IMAGES-ppc is dangling symlink f ports/108135 itetcu [Update Version] security/gss to 0.0.19 o docs/108142 doc [patch] extattr(2) man page incomplete for extattr_lis o kern/108150 [ste] [patch] ASUS NX1001 (if_ste) hardware support o ports/108153 portmgr ports extraction with package uid/gid and quota proble o ports/108169 clement Wrong AP_SAFE_PATH for suEXEC with www/apache20 o ports/108170 itetcu [Update] games/deal BROKEN on sparc64 f ports/108176 graphics/gnash: change ${PREFIX} to ${LOCALBASE} o bin/108183 dougb mergemaster(8) doesn't install target if a file become o bin/108191 sysinstall(8): Disklabel editor help text (by F1 key) o ports/108203 miwi [maintainer update] games/gish-demo o kern/108211 [netinet] potentially a bug for inet_aton in sys/netin f ports/108236 itetcu [Update Version] net/dgd-net to 1.2 o ports/108241 gnome Use OPTIONS in editors/abiword-plugins f ports/108244 itetcu [CHANGE-REQUEST] ftp/proftpd some addons and fixes o ports/108248 kbyanc [UPDATE] net/p5-Net-Radius: update to 1.52 o ports/108267 gnome ports/lang/guile: please update f ports/108289 itetcu [Update Version] www/bins to 1.1.27 o www/108291 remko Server Management and Security for FreeBSD Servers. f ports/108292 pav math/metis and math/metis-edf install files into the s o ports/108306 skv Update textproc/p5-Pod-ProjectDocs to 0.30 o ports/108311 shaun [PATCH] Restore openpty() use in Expect o ports/108319 sobomax asterisk port does not detect postrgesql 8.2 installed f ports/108326 miwi New port: www/mod_log_dbd Write Apache access logs to o ports/108327 sergei zsh port uses obsolete NOSHARED o usb/108344 usb kernel with atausb panics when unplugging USB Flash o amd64/108345 amd64 6.2-* GENERIC will not boot Intel PD EMT64 w/ ACPI o docs/108346 doc [patch] tmpnam(3) should note that that TMPDIR env may o ports/108356 obrien Typo in editors/vim7 package description o ports/108364 gnome [patch] x11-toolkits/gtk20: plist problem with icons d o ports/108369 obrien vim7 overwrites already insatlled vim6 f ports/108378 itetcu [PATCH] games/foobillard: add OPTIONS f ports/108386 itetcu [Update Version] audio/osalp to 0.7.4 o ports/108389 openoffice build of editors/openoffice.org-2-RC fails o ports/108406 java Offer for maintainership of devel/apache-ant f ports/108412 itetcu lack of "CONFLICTS" about vnc and its delivatives. o usb/108427 usb QUIRK-SAMSUNG MP0402H o ports/108433 itetcu [Update Version] devel/dmake to 4.7 s kern/108442 UTF-8 support for console o bin/108462 pkg_info(1) shouldn't have a hard width limit o ports/108465 mnag [patch] databases/memcached: allow to run with negativ f kern/108468 remko [atm] Stop in /usr/src/sys/modules/netgraph/atm/atmbas f ports/108487 miwi [UPDATE] games/wormux: to 0.7.9 o kern/108488 acpi ACPI-1304: *** Error: Method execution failed f ports/108501 sat update port russian/xneur o ports/108504 dinoex emulators/vice breaks when linux-js module detected o usb/108509 usb Freebsd hang at startup after ehci0 detected (CD Loade s ports/108514 portmgr [PROPOSAL] Automatic registering of UID and GID (bsd.p f ports/108519 mail/squirrelmail-devel sets incorrect From in return f ports/108521 mail/squirrelmail-devel returns an error while reading o bin/108523 [patch] daemon(8): support for dropping privileges f ports/108526 itetcu [Update Version] science/elmer-fem to 5.3.0 o ports/108533 alexbl [PATCH] audio/ruby18-xmms2 is broken p docs/108536 ceri sysinstall(8) man page and example needs to be updated o ports/108538 alexbl audio/ruby-xmms2-ecore (needed by euphoria) does not b f ports/108541 kuriyama gnupg2 --no-secmem-warning option does not work o ports/108544 mnag [patch] benchmarks/iperf incorrectly marked NO_CDROM f ports/108548 miwi [PATCH] mail/p5-Mail-Ezmlm: update to 0.07.2 f ports/108550 miwi [patch] ysm 7.9.9.1 a ports/108559 ade [UPDATE] devel/gettext 0.14.5 -> 0.16.1 f ports/108565 itetcu [Update Version] audio/mp3info to 0.8.5 o ports/108570 girgen databases/postgresql82-server fails when PREFIX is set o kern/108581 acpi sysctl: hw.acpi.cpu.cx_lowest: Invalid argument o ports/108585 hrs print/latex-pgf out of date f ports/108586 clsung [PATCH] textproc/refdb: update to 0.9.8-1 o conf/108589 rtsol fails due to default ipfw rules o ports/108592 perky Update port: korean/nabi to 0.17 f ports/108595 pav pstree (sysutils/psmisc) don't work in jail o ports/108597 shaun [PATCH] www/p5-ClearSilver doesn't build on 4.x + upda p conf/108611 remko [patch] An obsolete nice(1) syntax is left in etc/peri o ports/108648 openoffice openoffice.org-2-devel broken? o kern/108655 messages from kernel are mixed (/dev/klog? syslog?) f ports/108661 ache [patch] www/lynx-current: add support for SSL SubjectA o ports/108663 delphij [PATCH] mail/spamd: resolv conflict with sa-spamd and o ports/108679 delphij [PATCH] mail/spamlogd fail without PF f ports/108687 miwi [UPDATE] www/py24-xist: update to 2.15.2 o kern/108695 acpi [ACPI]: Fatal trap 9: general protection fault when in o ports/108697 ume security/cyrus-sasl-2.1.22 build failure f ports/108699 philip problem using user libraries with lua-5.0 o ports/108714 kde missing RUN_DEPENDS for www/kdewebdev f ports/108717 clsung [PATCH] devel/astyle: update to 1.20.1 f ports/108723 kxgenerator never worked for me f ports/108730 farrokhi update port net-mgmt/ipplan to 4.81 o sparc/108732 sparc64 ping reports 14 digit time a ports/108738 portmgr NO_LDCONFIG_MTREE used but undocumented in Mk/bsd.port a ports/108739 portmgr Update/enhance description of INSTALLS_SHLIB and USE_L f ports/108744 kuriyama [PATCH] deskutils/egroupware broken, fix errors in Mak f www/108754 gabor Request adding my society to your list of support o sparc/108757 sparc64 cant boot if rtc stuffed, no means of recovery o ports/108761 itetcu [Update Version] devel/agide to 0.124 f ports/108763 itetcu [Update Version] sysutils/luma to 2.3 o ports/108764 itetcu [Update Version] databases/ruby-sqlite3 to 1.2.0 o ports/108765 itetcu [Update Version] audio/solfege to 3.7.0 o ports/108779 kde x11/kdelibs3: Convert to USE_LDCONFIG a ports/108782 portmgr patch to remove obsolete cruft in bsd.port.mk o ports/108784 roam security/stunnel: [patch] assign permanent uid and gid o ports/108785 clement [patch] security/dropbear: OPTIONify and minor fix f ports/108788 [patch] sysutils/fusefs-kmod: Add BASE option o ports/108795 netchild ports/icc: Proposed update to icc port for intel compi o ports/108800 apache Update of www/mod_auth_mysql2 f ports/108801 www/mod_perl2: Apache-2.0.59 / mod_perl-2-2.0.3_1 freq o usb/108810 usb quirk for I/O Magic USB flash drive "Giga Bank" o kern/108830 remko [ata] [patch] Add support for nForce MCP61 chipset o amd64/108841 amd64 Zdump prints bad information and hangs o ports/108847 jdp [PATCH] net/cvsup-mirror allow for cvsupd_flags o amd64/108848 amd64 Motherboard MSI K9NGM-L f ports/108853 Contradiction of CONFLICTS¡¡ a ports/108854 dinoex Contradiction of CONFLICTS¡¡ o ports/108856 fenner [mbone/sdr] make sdr usable again; patch appended o ports/108862 portmgr move x11-wm/xfce4/bsd.xfce.mk to Mk/ o docs/108863 pav enhance porters handbook by USE_XFCE a ports/108864 flz astro/google-earth: update to 4.0.2735 o kern/108891 [ndis] Fatal Kernel Trap 12 ndis ralink wireless drive o kern/108899 [termcap] [patch] termcap update for screen and linux o ports/108934 perl mail/p5-Mail-SpamAssassin: spamassassin uses /var/lib/ f ports/108935 itetcu [Update Version] net/sipp to 1.1.r8.20070208 f ports/108950 miwi [UPDATE] www/elinks: update to 0.11.2 f ports/108951 miwi [UPDATE] security/flawfinder: update to 1.27 o ports/108953 mich libcdio port not robust wrt. C_INCLUDE_PATH o docs/108956 remko Atheros "customer products" link in manual (man 4 ath) o kern/108961 High CPU use on directories containing files with mult o ports/108965 perky databases/zodb3 update f ports/108967 gnome sysutils/gnome-control-center 2.16.3 gnome-keyboard-pr f ports/108969 miwi [UPDATE] www/phpGedView: update to 3.2.2 o ports/108971 miwi [BUGFIX] lang/tcl84 & lang/tcl84-thread o ports/108972 miwi [MAINTAINER] lang/tcl85 & lang/tcl85-thread o ports/108978 lioux [PATCH] print/mftrace: update to 1.2.14, take maintain f ports/108979 miwi [UPDATE] www/p5-Perlbal: update to 1.54 o docs/108980 doc list of missing man pages f ports/108999 rafan ports/archivers/sharutils -> 4.6.3 o ports/109001 sobomax [PATCH] net/ortp: update to 0.13.0 o ports/109004 shaun [PATCH] net/GeoIP: update to 1.4.2 o kern/109010 [msdosfs] can't mv directory within fat32 file system o ports/109017 itetcu [Update Version] security/libecc to 0.11.1 f ports/109018 itetcu [Update Version] net/miredo to 1.0.6 o ports/109026 girgen [PATCH] databases/py-PyGreSQL: update to 3.8.1 o ports/109033 mnag Update port: mail/py-spf, updated to latest version o ports/109035 danfe [PATCH] audio/soundtouch: fix for amd64 f ports/109039 miwi Upgraded Port: mail/dcc-dccd to 1.3.50 f ports/109041 security/tinyca doesn't allow for user installed OpenS f ports/109045 security/xca compile fails: x509rev.cpp:63: error: inv o ports/109056 lioux [PATCH] x11-themes/kde-icons-nuvola: make fetchable o ports/109057 lioux [PATCH] x11-themes/kde-icons-noia: make fetchable f ports/109063 dougb portmaster doesn't chase category moves o ports/109076 tmclaugh graphics/djvulibre really needs a bash? o ports/109089 eclipse [PATCH] update java/eclipse-gef: distfile moved o ports/109097 portmgr [PATCH] Mk/bsd.tcl.mk improvement proposal o bin/109102 csjp sysctl security.mac.bsdextended is not consistent with o docs/109104 trhodes man mac_bsdextended is not consistent with systl outpu o docs/109105 trhodes security.mac.bsdextended.firstmatch_enabled is not ena o ports/109106 farrokhi phpip is in the wrong section of the ports tree o ports/109111 mich [PATCH] audio/amarok: Fix detection of msdosfs/vfat o docs/109115 doc add Ultra 450 to hardware list for sparc64 o ports/109118 flz iwi-firmware-kmod fails on activation of WEP f ports/109120 miwi New port: sysutils/comiccron A cron like tool that o ports/109126 scrappy [PATCH] converters/p5-Convert-ASN1: update to 0.21 f ports/109139 itetcu [Update Version] sysutils/luma to 2.3 f ports/109140 itetcu [Update Version] www/phpgedview to 3.2.2 o ports/109142 shaun [Update Version] x11-toolkits/fox14 to 1.4.35 f ports/109143 itetcu [Update Version] x11-toolkits/fxscintilla to 1.71 f ports/109144 itetcu [Update Version] x11-toolkits/fox16 to 1.6.21 f ports/109145 alepulver dsniff port fails to install f ports/109148 [games/pydance] sdl_ttf font.render problem; patch app o ports/109151 apache ports/www/mod_tidy - fix size mismatch o kern/109152 [rp] RocketPort panic from device_unbusy() f ports/109155 miwi [MAINTAINER] audio/fluidsynth-dssi: objformat fix. o ports/109159 miwi [REPOCOPY] www/phpip to net-mgmt/phpip f kern/109161 philip synaptic touchpad doesn't works o ports/109173 miwi [NEW PORT] misc/kmatrix-3d o ports/109179 anders [PATCH] sysutils/dmidecode: respect NOPORTDOCS f ports/109182 rafan [PATCH] textproc/p5-Text-Netstring: update to 0.07 f ports/109183 rafan [PATCH] graphics/comical: update to 0.4.2 o docs/109201 doc [request]: manual for callbootd f kern/109206 initgroups(3) with incomplete list if line exceeds 1kB o kern/109207 acpi ACPI Promlem o ports/109211 netchild [PATCH] mail/claws-mail - Use proper "mime.types" file o ports/109212 mharo security/p5-Crypt-Primes: needless warnings at runtime o ports/109214 rushani [Patch] scponly: make port options visible with dialog o ports/109218 shaun [PATCH] devel/sdl: fix pkg-plist w/ NOPORTDOCS o ports/109224 se multimedia/kplayer update to latest version o ports/109225 miwi [MAINTAINER] www/openacs o docs/109226 doc [request]: No manual entry for sntp f ports/109231 update sysutils/fusefs-wdfs to new version o ports/109242 kuriyama [MAINTAINER] japanese/trac: update to 0.10.3 o kern/109246 ICMP rejects are not generated with fastforwarding ena o ports/109259 miwi [NEW PORT] net-im/jabberd14 1.6.0 f ports/109261 /usr/ports/www/rubygem-actionpack/distinfo hash values o ports/109262 tmclaugh net/py-libdnet: unbreak. o ports/109264 itetcu [Update Patch] science/elmer-matc o ports/109265 itetcu [Update Version] science/elmer-fem to 5.3.1 o ports/109268 clement www/apache22: apache-worker-2.2.4 threads problem on 6 o ports/109284 itetcu [Update Version] devel/rpc2 to 2.4 o ports/109285 itetcu [Update Version] devel/rubygem-daemons to 1.0.4 o ports/109286 itetcu [Update Version] devel/rbygem-gem_plugin to 0.2.2 o ports/109287 itetcu [Update Version] devel/rubygem-tzinfo to 0.3.3 o ports/109288 itetcu [Update Version] audio/solfege to 3.7.0 o ports/109296 perky [PATCH] databases/py-bsddb3: update to 4.5.0 f ports/109297 gabor [PATCH] Update port: dns/updatedd version 2.6 o ports/109300 danfe [PATCH] audio/libgpod - Update to version 0.4.2 f ports/109301 clsung [PATCH] audio/libmtp o ports/109304 farrokhi [PATCH] www/phpmyfaq: update to 1.6.10 o ports/109309 naddy [PATCH] audio/flac: update to 1.1.4 o ports/109312 mnag [PATCH] devel/py-rbtree: update to 0.8.0 a ports/109314 glewis [patch] bsd.java.mk: remove references to expired port o misc/109315 dwmalone inetd UNIX socket bug o ports/109317 itetcu [Update Version] lang/cduce to 0.4.1 o ports/109318 itetcu [Update Version] devel/jep to 2.1 o ports/109319 itetcu [Update Version] graphics/ivtools to 1.2.4 o ports/109320 itetcu [Update Version] graphics/py-freeimagepy to 1.4.0 o ports/109321 itetcu [Update Version] java/jfreechart to 1.0.4 o ports/109322 itetcu [Update Version] print/abcm2ps to 5.3.0 o ports/109323 itetcu [Update Version] games/glchess to 1.0.2 o ports/109324 itetcu [Update Version] lang/mmix to 20060918 o ports/109325 itetcu [Update Version] lang/sisc to 1.16.6 o ports/109329 itetcu Update net/skype to 1.3.0.53 (no more a beta) o ports/109330 kde [patch] devel/kdesdk3: use BDB framework o ports/109332 demon [PATCH] www/links: update to 2.1.p26 o bin/109334 pkg_add using chroot exits with error if wrong directo o ports/109335 lioux [PATCH] sysutils/clockspeed: don't write things after o ports/109337 rafan [PATCH]print/cjk-lyx: Update to version 1.4.4 o ports/109341 kuriyama [PATCH] www/trac-webadmin: update to 0.1.2.r4804 o ports/109344 restore .svn support to security/metasploit-devel o ports/109346 kuriyama [PATCH] www/trac-accountmanager: update to 0.1.3 o ports/109359 mnag Update port: update net/py-zsi to version 2.0 f ports/109360 novel [PATCH] audio/mpg123: provide rc_subr script o ports/109363 portmgr repocopy: ports for VMware Tools of Workstation 6 o misc/109367 UTF8 encoded locales and problem collating accents o ports/109369 novel Fix shlib version of security/libgpg-error o ports/109374 miwi [PATCH] audio/umix: fix display. f ports/109376 rafan [PATCH] devel/tkp4: use DOCSDIR, DATADIR o ports/109378 perky [PATCH] www/mod_python3: update to 3.3.1 o ports/109388 jmelo net/freenx - update MASTER_SITES o ports/109391 jmelo New MASTER_SITES for textproc/rot o ports/109392 demon [PATCH] net/rrdtool - can not build with -DNOPORTDOCS f ports/109393 rafan update converters/chmview o ports/109399 nobutaka Update port: textproc/uim* japanese/uim* update to uim f ports/109401 [PATCH] mail/nmh: add CONFLICTS o ports/109402 motoyuki [PATCH] japanese/mh: add CONFLICTS o ports/109404 miwi [UPDATE] net-im/jabber-conference o ports/109405 miwi [UPDATE] net-im/jabber-jud f ports/109407 farrokhi [patch] update port net-mgmt/chillispot to 1.1.0 a conf/109409 dougb [request] Add $rndc_program to specify path to rndc, s o bin/109413 [PATCH] top(1) shows at least 50% idle when hyperthrea o kern/109416 [libpam] [patch] pam_group doesn't check login_group m o conf/109418 remko [patch] update src/misc/zoneinfo from 2006n to 2007b f ports/109421 alepulver [UPDATE] emulators/wahcade: update to version 0.16 o i386/109423 i386 ICH5 smb interface problems o ports/109424 Update tomcat41 to 4.1.34 o ports/109429 itetcu [Update Version] x11-toolkits/xbae to 4.50.97 o ports/109430 itetcu [Update Version] x11-toolkits/soqt to 1.4.1 f ports/109432 itetcu [Update Version] x11-toolkits/tktable to 2.9 o ports/109435 miwi [MAINTAINER] mail/squirrelmail-newuser_wiz-plugin: dep o ports/109438 dinoex [patch] emulators/vice Add support for joysticks. o ports/109439 clsung New port: security/sshguard Protect ssh from brute for o ports/109444 lbr [PATCH] devel/p5-Config-Any: update to 0.06 o ports/109448 demon [PATCH] net/p5-Net-Z3950-ZOOM: update to 1.16 o ports/109451 net/mpd: /usr/local/etc/rc.d/mpd.sh doesn't source /et o ports/109457 maintainer update: drupal-taxonomy_access - 4.7.x-1.x- o ports/109461 skv [PATCH] news/p5-POE-Component-Client-NNTP: update to 2 o ports/109464 miwi [UPDATE] lang/otcl 1.9 -> 1.12 o ports/109465 miwi [UPDATE] devel/tclcl 1.16 -> 1.18 o ports/109466 clsung databases/freetds: update to 0.6.4 f ports/109469 thierry FreeMat 3.0 stops building with Error code 2 o i386/109470 i386 Orinoco Classic Gold PC Card Can't Channel Hop o ports/109471 [NEW PORT] mail/archiveopteryx: POP and IMAP server wi o kern/109477 [vr] onboard via vt6103 ethernet does not work o bin/109478 [libc] [patch] adopt reentrant syslog functions from N f ports/109484 clsung editors/emacs-devel: update to 22.0.94 r ports/109489 portmgr Repocopy devel/libslang2 to devel/libslang2-devel o bin/109494 [PATCH] ypserv(8): Add option to bind to specific port o ports/109495 anholt update devel/git to 1.5.0.1 o ports/109497 x11 x11-servers/xorg-fontserver rc.d/xfs.sh script missing o conf/109498 [patch] Enable cloning of tun/tap through rc.conf clon o ports/109501 krion [PATCH] add some configurable vars to mail/exim f ports/109504 rafan update graphics/comical o ports/109506 multimedia multimedia/vlc-devel: unmark as BROKEN on amd64 o sparc/109510 sparc64 mcpu flags break buildworld in Sparc64 line o ports/109511 shaun devel/yasm: Update to 0.6.0 f ports/109515 clsung [PATCH] japanese/mecab-ipadic : Follow dictionary form f ports/109516 clsung [PATCH] devel/py-pytz: update to 2006p o ports/109519 miwi [NEW PORT] www/horde-meta - Meta port for the horde fr o ports/109520 miwi New port: textproc/dblatex DocBook to LaTeX/ConTeXt Pu o ports/109523 miwi Update port: x11/dmenu to 2.4 o ports/109526 rafan [PATCH] Update for audio/gnomad2 (to version 2.8.11) o ports/109527 rafan [MAINTAINER] news/leafnode: update o www/109528 gabor Company entry for FreeBSD Support o ports/109529 clsung Maintainer update: mail/dovecot to 1.0.r24 o ports/109533 upgrade dns/noip to 2.1.4 f ports/109534 [PATCH] print/jabref: update to 2.2 f ports/109535 Eggdrop SSL error o ports/109537 New port: multimedia/audacious-docklet: systray dockle f ports/109539 spcaview and quickcam chat f ports/109540 clsung [PATCH] www/rubygem-rails: update to 1.2.2 o ports/109542 ale preg_match_all with a particular regexp causes run-awa o ports/109544 clsung [update] japanese/p5-MeCab 0.93 to 0.94 o ports/109545 clsung [NEW PORT] devel/py-trace2html: HTML coverage report g f ports/109546 [PATCH] devel/cvsd: fix startup error when chroot jail o ports/109547 tmclaugh [PATCH] www/py-mechanize: reduce BUILD_DEPENDS f ports/109548 ijliao [PATCH] math/gsl: update to 1.9 o www/109549 gabor Bangladeshi FreeBSD User Group o ports/109550 alexbl lang/python25 does not install /usr/local/bin/python o ports/109552 clsung [PATCH] mail/py-spambayes o ports/109553 miwi graphics/blender-devel update to 2.43 f ports/109554 [PATCH] security/base: update to 1.3.5 (marie) o ports/109555 miwi [PATCH] www/py-pullparser 3169 problems total. From owner-freebsd-bugs@FreeBSD.ORG Mon Feb 26 11:32:49 2007 Return-Path: X-Original-To: freebsd-bugs@FreeBSD.org Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 635E916A401 for ; Mon, 26 Feb 2007 11:32:49 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 51B4113C48D for ; Mon, 26 Feb 2007 11:32:49 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1QBWmnK009134 for ; Mon, 26 Feb 2007 11:32:48 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1QBWb26009122 for freebsd-bugs@FreeBSD.org; Mon, 26 Feb 2007 11:32:37 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 26 Feb 2007 11:32:37 GMT Message-Id: <200702261132.l1QBWb26009122@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: linimon set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list Cc: Subject: Current problem reports containing patches X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Feb 2007 11:32:49 -0000 Current FreeBSD problem reports Critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/70096 trhodes [msdosfs] [patch] full msdos file system causes corrup o kern/77234 [udf] [patch] corrupted data is read from UDF filesyst o kern/87191 scottl [aac] [patch] aac(4) panics immediately with INVARIANT o kern/94939 [acpi] [patch] reboot(8) fails on IBM / Intel blades 4 problems total. Serious problems S Tracker Resp. Description -------------------------------------------------------------------------------- f ports/14048 des [patch] doscmd -r doesn't work f kern/17310 remko [nis] [patch] NIS host name resolving may loop forever s bin/19773 markm [PATCH] telnet infinite loop depending on how fds are a kern/21808 trhodes [msdosfs] [patch] msdosfs incorrectly handles vnode lo o kern/21998 green [socket] [patch] ident only for outgoing connections s kern/22417 gibbs [adw] [patch] advansys wide scsi driver does not suppo s i386/22944 tegge [vm] [patch] isa_dmainit fails on machines with 512MB o bin/23098 [sysinstall] [patch] if installing on a serial console o bin/24271 [patch] dumpon(8) should check its argument more o kern/26486 [libc] [patch] setnetgrent hangs when netgroup contain o docs/27605 doc [patch] Cross-document references () o bin/29725 dwmalone [picobsd] [patch] fixed segmentation fault in simple_h o conf/30223 [patch] Using /usr/share/examples/kld/cdev, testcdev f f bin/31304 linimon [patch] fix crunchgen to work with more contrib-kind o o kern/33138 [isa] [patch] pnp problem in 4.3, 4.4, 4.5 o kern/34842 [nis] [patch] VmWare port + NIS causes "broadcast stor o kern/35442 [sis] [patch] Problem transmitting runts in if_sis dri o kern/36415 [bktr] [patch] driver incorrectly handles the setting o kern/36504 [kernel] [patch] crash/panic vm_object_allocate under o bin/36867 [patch] games/fortune: add FORTUNE_PATH env var, so po s kern/37441 davidxu [isa] [patch] ISA PNP parse problem o i386/37523 davidxu [i386] [patch] lock for bios16 call and vm86call o kern/39252 [syscons] [patch] syscons doesn't support 8-bit contro s threa/39922 threads [threads] [patch] Threaded applications executed with a bin/39940 [patch] /usr/sbin/periodic sends thousands of emails o misc/42115 luigi [picobsd] [patch] fix build script for 4.6-STABLE f bin/43674 [patch] login(1): able to bypass expired password o kern/44202 [rp] [patch] -stable rp driver does not work with mult o gnu/44564 peter [PATCH] Aborted cvs session causes an endless loop in o kern/44744 [vn] [patch] VN devices can hang system FreeBSD v4.5 o bin/44808 [PATCH] opiepasswd makes bad seed for existing user o bin/45529 hexdump core-dumps with certain args [PATCH] o bin/46676 ru [PATCH] bsd.dep.mk restricts domain of tags commands o kern/47628 trhodes [msdosfs] [patch] msdosfs file corruption fix o bin/48183 marcel [patch] gdb on a corefile from a threaded process can' o conf/48881 rc [PATCH] The influence of /etc/start_ifname on /etc/rc. s kern/50827 [kernel] [patch] new feature: add sane record locking o kern/51274 ipfw [ipfw] [patch] ipfw2 create dynamic rules with parent f kern/51341 remko [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o kern/51583 [nullfs] [patch] allow to work with devices and socket o bin/54401 [patch] pppstats prints 0 for absolute values in range p kern/55018 andre [digi] [patch] Digiboard PC/Xem fails to initialize wh a kern/55542 andre [de] [patch] discard oversize frame (ether type 800 fl o kern/57453 [kue] [patch] if_kue hangs boot after warm boot if fir o kern/57631 jhb [agp] [patch] boot failing for ALi chipsets o kern/57722 [kernel] [patch] uidinfo list corruption o kern/58687 deischen [libc] [patch] gethostbyname(3) leaks kqueue file desc o kern/59945 [nullfs] [patch] nullfs bug: reboot after panic: null_ f i386/60226 remko [ichsmb] [patch] ichsmb driver doesn't detects SMB bus p docs/60679 trhodes [patch] pthread(3): pthreads documentation does not de o bin/61498 obrien [patch] Please MFC flex patch for gcc 3.x o bin/61587 [sysinstall] [patch] installation problem, disklabel c o kern/61960 sos [ata] [patch] BigDrive support for PC-98 architecture a kern/62906 peadar [agp] [patch] AGP misconfigures i845G chipset, causing o kern/64196 [kernel] [patch] remove the arbitrary MAXSHELLCMDLEN f kern/65300 [udf] [patch] Can't use sendfile(2) to download files o kern/66029 [crypto] [patch] MD5 alignment problem on a TriMedia p o kern/66876 [fdc] [patch] Cannot extract tar(1) multi-volume archi o kern/66960 [fdc] [patch] filesystems not unmounted during reboot o bin/66984 [2TB] [patch] teach sysinstall about larger disks o bin/67995 [patch] morse(6) plays beeps 10 times faster than it s o usb/69006 usb [patch] Apple Cinema Display hangs USB ports o i386/70531 i386 [boot0] [patch] boot0 hides Lilo in extended slice o kern/70587 [vm] [patch] NULL pointer dereference in vm_pageout_sc o bin/71290 [PATCH] passwd cannot change passwords other than NIS/ o bin/71602 [PATCH] uninitialized "len" used instead of "slen" wit a bin/71786 [patch] adduser breaks if /sbin/nologin is included in o kern/71792 [vm] [patch] Wrong/missing 'goto' target label in cont o kern/72966 obrien [pcn] [patch] AMD PCnet/PCI Fast Ethernet driver broke o kern/73004 [loader] [patch] PXE loader malfunction in multiple PX o kern/73224 wpaul [ndis] [patch] Lock order reversal in ntoskrnl_timerca o sparc/73413 trhodes [libkse] [patch] pthread (libkse) library is broken on o bin/74127 [patch] patch(1) may misapply hunks with too little co o kern/75122 andre [netinet] [patch] Incorrect inflight bandwidth calcula o bin/75258 [patch] dd(1) has not async signal safe interrupt hand o kern/76126 [nfs] [patch] 4.11 client will send a NFS request to r f kern/76207 [xl] [patch] Null pointer dereference in xl_detach() o kern/76893 [cam] [patch] Fatal divide in booting processes with B o i386/76944 i386 [busdma] [patch] i386 bus_dmamap_create() bug o kern/77181 [newfs] [patch] newfs -g largevalue, mkdir, panic s kern/77195 darrenr [ipfilter] [patch] ipfilter ioctl SIOCGNATL does not m o kern/77432 cel [nfs] [patch] It is not possible to load nfs4client.ko o usb/77940 usb [patch] [panic] insertion of usb keyboard panics syste o kern/77982 [lnc] [patch] lnc0 can NOT be detected in vmware 4.5.2 o gnu/78161 [patch] typo in gzexe o kern/78179 [vm] [patch] bus_dmamem_alloc() with BUS_DMA_NOWAIT ca o conf/78762 ipfw [ipfw] [patch] /etc/rc.d/ipfw should excecute $firewal p kern/78953 [smbfs] [patch] smbfs getdirentries() failure causes C o kern/78987 scottl [udf] [patch] udf fs: readdir returns error when it sh o kern/79025 [patch] && in /usr/src/etc/Makefile needs to be an or s kern/79339 [kernel] [patch] Kernel time code sync with improvemen o bin/80074 [patch] openssl(1): Bug in OpenSSL's sk_insert() cause o kern/80266 rwatson [ipx] [patch] IPX routing doesn't work o kern/80694 [kbd] [patch] atkbd looped on Acer TravelMate 2701LC o kern/80742 wkoszek [pecoff] [patch] Local DoS in sys/compat/pecoff (+ oth o docs/80843 doc [patch] psm(4): Suggested fix for psm0 / handle driver o kern/80853 [ed] [patch] add support for Compex RL2000/ISA in PnP o usb/80862 usb [patch] USB locking issues: missing some Giant calls o bin/80913 ipfw [patch] /sbin/ipfw2 silently discards MAC addr arg wit s kern/80932 [em] [patch] Degraded performance of em driver o kern/80980 [i386] [patch] problem in "sys/i386/include/bus.h" cau s kern/81147 linimon [em] [patch] em0 reinitialization while adding aliases o usb/81308 usb [ugen] [patch] polling a ugen(4) control endpoint caus o conf/81882 [patch] missing terminal definition for wy120 in termc o kern/82491 [bootp] [patch] bootpd shouldn't ignore requests o bin/82720 [patch] Incorrect help output from growfs.c and mkfs.c o kern/82919 [bridge] [patch] Bridge configuration update will cras p kern/83107 delphij [libc] [patch] libc uuid_compare() doesn't work with l o bin/83336 [patch] libc's parse_ncp() don't check malloc/realloc o bin/83338 [patch] libc's getent() don't check for malloc failure o bin/83340 [patch] setnetgrent() and supporting functions don't c o bin/83344 [patch] Improper handling of malloc failures within li o bin/83347 [patch] improper handling of malloc failures within li o bin/83348 [patch] Improper handling of malloc failures within li o bin/83349 [patch] improper handling o malloc's failures within l o bin/83359 [patch] improper handling of malloc failures within li o bin/83364 [patch] improper handling of malloc failures, bad prin o kern/83368 [ipx] [patch] incorrect handling of malloc failures wi o bin/83369 [patch] incorrect handling of malloc failures within l o kern/83464 geom [geom] [patch] Unhandled malloc failures within libgeo o kern/84202 [ed] [patch] Holtek HT80232 PCI NIC recognition on Fre o kern/84411 philip [psm] [patch] psm drivers adds bad buttons for Synapti o kern/84799 [fdc] [patch] can't read beyond track 0 on fdc (IBM th o kern/84861 sam [ipw] [patch] still can't get working ipw(4) with adho o kern/85137 [pseudofs] [patch] panic due to sleep with held mutex o threa/85160 threads [libthr] [patch] libobjc + libpthread/libthr crash pro o kern/85266 [xe] [patch] xe(4) driver does not recognise Xircom XE o kern/85320 [gre] [patch] possible depletion of kernel stack in ip o kern/85493 imp [ed] [patch] OLDCARD can't probe ed driver p bin/85830 des [patch] pam_exec incorrectly works with vfork() p kern/86306 yongari [em] [patch] if_em.c locks up while trying to send a h o kern/86944 cel [nfs] [patch] When I use FreeBSD with NFS client, clos o kern/87506 [vr] [patch] Fix alias support on vr interfaces o usb/87565 usb [PATCH] Support for Vodaphone 3G/UMTS cards o bin/87792 [patch] very bad performance of cp(1) via NFS, possibl o kern/88045 jhb [nve] [patch] 6.0rc1: nve0: device timeout (51) o bin/88215 [patch] syslogd(8) does not pass cleanly parameters to o ports/89308 apache [patch] www/mod_accounting crash on request_timeout o bin/89410 [PATCH] sh(1) missing \u interpolation and bug/fix in o kern/89660 le [patch] [panic] due to g_malloc returning null in gv_d o kern/89752 [bpf] [patch] bpf_validate() needs to do more checks o kern/89784 phk [patch] [panic] 6.0-RELEASE panics when applying `type o kern/89876 [txp] [patch] txp driver doesn't work with latest firm o kern/89878 [pccard] [patch] pccard.c:pccard_safe_quote() unsafe f kern/90096 thompsa [net] [patch] arp mixup if carp and bridge used o usb/90162 usb [usb] [patch] Add support for the MS Wireless USB Mous o kern/90815 [smbfs] [patch] SMBFS with character conversions somet f conf/90863 dougb [patch] 6.0 boot: name resolution broken for daemon st o kern/90973 thompsa [net] [patch] if_bridge does not handle arp for own ad o usb/91263 usb [patch] USB quirk needed for Logitec USB Hard disk LHD o conf/91732 [patch] 800.loginfail: fix log message grep expression o bin/91954 [libpam] [patch] Proposed enhancement for pam_krb5: "o o kern/92092 [iicbus] [patch] Panic if device with iicbus child is o kern/92675 [fxp] [patch] fxp(4) unable to recover from occasional o kern/92786 sos [patch] ATA fixes, write support for LSI v3 RAID o bin/92839 roberto [ntp] [patch] contrib/ntp PARSE buffer overrun o gnu/93566 tjr [patch] sort(1): numeric sort is broken on multi-byte o bin/93603 [patch] restore(8) fails if /tmp fills o bin/93776 [crypto] [patch] SHA256_Update / SHA512_Update fail to o kern/93942 [vfs] [patch] panic: ufs_dirbad: bad dir (patch from D o kern/93998 [libstand] [patch] panic in libstand when closing raw o kern/94669 pjd [vfs] [patch] Panic from Failed Removable Media Mount o usb/94742 usb [umass] [patch] umass driver does not recognise YANO e o kern/94772 [fifo] [patch] FIFOs (named pipes) + select() == broke o bin/94815 [patch] [sysinstall] Upping the network interface befo s kern/94863 [bge] [patch] hack to get bge(4) working on IBM e326m o kern/95084 ipfw [ipfw] [patch] IPFW2 ignores "recv/xmit/via any" (IPFW o bin/95339 [libexec] [patch] rtld is thread-unsafe. fixes for dlo o kern/95368 [kernel] [patch] Test for race between callout_drain() f ports/95584 perky [patch] bsd.python.mk: A port's "USE_ZOPE=yes" overrid o kern/95661 [pci] [patch] pci_pci still not correct for initializi o kern/96030 [bfe] [patch] Install hangs with Broadcomm 440x NIC in o conf/96247 matteo [patch] 550.ipfwlimit reports logs even if log size is o bin/96393 [libz] [patch] assembler implementations for libz on i o gnu/96481 obrien [patch] native ld(1) does not look for shared libs in f kern/96806 glebius [bge] [patch] Correction of kernel panic with Broadcom o kern/96840 [libc] [patch] getgrent() does not return large groups o kern/97174 [umass] [patch] Y-E DATA USB-FDU quirk: no synchronize o bin/97888 ceri [sysinstall] [patch] sysinstall - give 'distSetCustom' o kern/97951 ipfw [ipfw] [patch] ipfw does not tie interface details to o kern/98091 scottl [mfi] [patch] Makefile style of mfi kernel module brok o kern/98167 multimedia [sound] [es137x] [patch] ES1370 mixer volumes incorrec p conf/98734 yar [patch] /etc/rc.subr restart_postcmd is failing start_ o conf/98758 rc [patch] Templatize 'jail_fstab' in /etc/rc.d/jail o conf/98846 rc [patch] Templatize 'jail_rootdir' in /etc/rc.d/jail f kern/98962 remko [ata] [burncd]: [patch] writing >1 session on ATAPI CD o kern/99064 [ste] [patch] ste driver does not support IC Plus IP10 o kern/99188 andre [tcp] [patch] FIN in same packet as duplicate ACK is l s bin/99693 [patch] add magic(5)/file(1) support for FreeBSD 6.1 d f kern/99729 sos [ata] [patch] Bug in ata (ata-all.c) driver o kern/99979 [patch] Get Ready for Kernel Module in C++ o kern/100098 darrenr [ipfilter] [patch] ipfilter kernel memory leakage o kern/100356 [firewire] [patch] Non-maskable interrupt while in ker o kern/100425 [sbni] [patch] sbni drivers does not work under 5.x o kern/100802 [ddb] [patch] panic in ddb mode if sending signal '0' o bin/100914 [tftpd] [patch] libexec/tftpd: write access control o ports/100967 clement [PATCH] bsd.apache.mk: allow use private APACHE_PORT f kern/101274 yongari [sk] [patch] SysKonnect Yukon initialization bug on K8 o kern/101453 emulation [linux] [patch] linprocfs disallows non-zero file offs o kern/101980 remko [ata] [patch] Intel 631xESB ata and ichsmb support (i3 o kern/102390 [patch] kernel pppd don't using pam o kern/102471 ipfw [ipfw] [patch] add tos and dscp support o bin/102510 [patch] diff(1) should not follow symlink in recursive o bin/102638 [sysinstall] [patch] sysinstall - custom dist set alwa o kern/102956 emulation [linux] [patch] Add partial support for SO_PEERCRED in f kern/103059 [bce] [patch] "Error mapping mbuf into TX chain!" (ten o kern/103454 ipfw [ipfw] [patch] add a facility to modify DF bit of the o kern/103841 [fdc] [patch] fdc(4) does not work (regression) p bin/104044 yar [patch] rc.d/cleartmp works incorrectly o kern/104389 geom [geom] [patch] sys/geom/geom_dump.c doesn't encode XML o bin/104478 [patch] ngctl(8) Makefile doesn't observe NO_LIBPTHREA o bin/104573 [patch] quota(1) fails to seperate columns when using o bin/105738 [patch] Daylight Savings is being introduced in Wester o kern/106431 sos [ata] [patch] Inform user of ata RAID5 acting as RAID0 o bin/106545 [patch] update euro currency in units(1) o usb/106565 markus [PATCH] ums(4) does not work if the mouse defaults to o kern/106722 net [net] [patch] ifconfig may not connect an interface to p kern/106829 multimedia [PATCH]: snd_ich driver fails with nvidia MCP04 chipse o usb/107101 usb [umass] [patch] Quirk for Denver MP3 player o usb/107248 usb [PATCH] scsi_da.c quirk for Cowon iAUDIO X5 MP3 player p conf/107278 simon [patch] possible DoS when using the jail_interface opt o bin/107392 gnn [patch] setkey(8) does not recognize esp as protocol n o kern/107495 [cam] [patch] Fix long wait before WD My Book 250GB (U o bin/107612 des [patch] pam_nologin(8) ignore the login class capabili a kern/108071 delphij [kernel] [patch] Panic in [sg]etpriority() due to NULL o usb/108097 usb [usbgen] [patch] ADMtek 851X USB-to-LAN adapter o misc/108215 [boot] [patch] bug in fsread in sys/boot/common/ufsrea o ports/108657 delphij [PATCH] mail/spamd: core dump on spamd-setup with "-t" o docs/108676 doc [patch] fix several problems in the jail chapter in th o docs/109008 csjp [patch] add summary of kern/48198 to jexec(8) o bin/109134 [patch] pkg_add replaces symlink in path to installed o kern/109232 imp [sio][patch] ibufsize calculation wrong causing data l o kern/109251 [re] [patch] if_re cardbus card won't attach o kern/109270 sos [burncd] [atapi] [ata] [patch] patch for burncd blank o ports/109271 shaun [patch] net-im/ejabberd doesn't work with LDAP authent o bin/109521 [patch] 'chio return' breaks on non-voltag changers 236 problems total. Non-critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- a bin/1375 eivind [patch] Extraneous warning from mv(1) s kern/2298 [sio] [patch] support for DSR/DCD swapping on serial p s kern/4184 [netatalk] [patch] minor nits in sys/netatalk s bin/5173 [PATCH] restore ought to deal with root setable file f o bin/5745 nik [PATCH] Add /usr/local/share/mk to default make(1) sea s kern/6668 babkin [patch] new driver: Virtual Ethernet driver o bin/7265 [patch] A warning flag is added to ln(1). o bin/7868 [patch] morse(6): Morse Code Fixups o bin/8867 [sysinstall] [patch] /stand/sysinstall core dumps (sig o kern/9570 dfr [ed] [patch] ed(4) irq config enhancement s bin/9770 jmallett [patch] An openpty(3) auxiliary program s kern/12071 fanf [net] [patch] new function: large scale IP aliasing o i386/12088 imp [ed] [patch] ed(4) has minor problem with memory alloc o kern/12543 [fxp] [patch] cumulative error counters for fxp(4) s kern/13997 rwatson [jail] [patch] RLIMIT_NPROC works unadequately for jai o kern/14166 [bktr] [patch] AVER TVPhone o bin/15168 [patch] Adding tracklist support to fdformat(1) o bin/15205 billf [patch] Addition to random(6) o bin/15480 [patch] make cdcontrol(1) easier to use o bin/15619 peter [patch] standard pppd doesn't authenticate users with o kern/15838 trhodes [msdosfs] [patch] Conversion tables in msdosfs_conv.c o conf/16076 markm [PATCH] pam_ssh examples for /etc/pam.conf o kern/16644 [bpf] [patch] Bad comparison expression in bpf_filter. o bin/16880 [PATCH] pw(8) hardcodes directory creation modes o bin/17289 gad [PATCH] wrong permissions on /var/run/printer o kern/17425 [ppbus] [patch] fix two small printing errors in ppbus o kern/17504 ken [cam] [patch] Another Micropolis Synchronize Cache Pro s kern/19363 [kernel] [patch] allow processes know about their file s kern/19535 [procfs] [patch] procfs_rlimit tidyup o bin/19837 ambrisko [sysinstall] [patch] run Fix It floppy from serial por o bin/20501 mjacob [patch] extra flag to dump to offline autoloaders at E a kern/21807 trhodes [msdosfs] [patch] Make System attribute correspond to s bin/22442 linimon [PATCH] Increase speed of split(1) o conf/23063 net [PATCH] for static ARP tables in rc.network o kern/23546 tanimura [snd_csa] [patch] csa DMA-interrupt problem o bin/23562 markm [patch] telnetd doesn't show message in file specified o bin/24485 [PATCH] to make cron(8) handle clock jumps p kern/25499 [kbd] [patch] buffer paste functionality from keyboard f kern/25777 [kernel] [patch] atime not updated on exec o kern/26323 [ufs] [patch] Quota system creates zero-length files o kern/26562 [lpt] [patch] /dev/lpt0 returns EBUSY when attempting o bin/27306 marcel [patch] hw watchpoints work unreliable under gdb(1) a gnu/28189 [PATCH] fix for detecting empty CVS commit log message o conf/28236 [PATCH] iso-8859-1_to_cp437.scm doesn't contain some u o kern/29355 mux [kernel] [patch] add lchflags support o bin/29363 gad [PATCH] newsyslog can support time as extension s kern/29423 [patch] new feature: kernel security hooks implementat o kern/29698 emulation [linux] [patch] linux ipcs doesn'work a docs/30008 doc [patch] French softupdates document should be translat o kern/30052 mbr [dc] [patch] dc driver queues outgoing pkts indefinite s ports/30331 portmgr [patch] Conflict between bsd.port.mk MAKEFILE variable s kern/30422 [patch] new function: add WDT hardware watchdog driver o bin/30542 [PATCH] add -q option to shut up killall f bin/30661 alfred [rpc] [patch] FreeBSD-current fails to do partial NFS o conf/30812 [patch] giant termcap database update p kern/30857 [intr] [patch] intr_machdep.c allows access out of arr o conf/30929 usb [usb] [patch] use usbd to initialize USB ADSL modem o kern/31201 [libdisk] [patch] add free_space(chunk) to libdisk f kern/31490 [sysctl] [patch] Panic in sysctl_sysctl_next_ls on emp o kern/31890 [syscons] [patch] new syscons font o kern/31981 [libc] [patch] (mis)feature in getnetent parsing -- co o kern/32659 [vm] [patch] vm and vnode leak with vm.swap_idle_enabl o bin/32680 [PATCH] Allows users to start jail(1) by hostname as w o bin/32808 dwmalone [PATCH] tcpd.h lacks prototype for hosts_ctl s docs/33589 doc [patch] to doc.docbook.mk to post process .tex files. o bin/33809 mux [patch] mount_nfs(8) has trouble with embedded ':' in o kern/33965 [kbd] [patch] programmable keys of the keyboard (Olida a bin/34010 [patch] keyinit takes passwords less than 10 chars, bu o bin/34199 dwmalone [PATCH] top(1) RES/rss display incorrect o bin/34412 [patch] tftp(1) will still try and receive traffic eve o gnu/34709 marcel [patch] Inaccurate GDB documentation o bin/35109 [PATCH] games/morse: add ability to decode morse code o docs/35222 doc [patch] getmsg.cgi: mailing list archive URL regexp su o kern/35262 [boot2] [patch] generation of boot block for headless o kern/35289 [bktr] [patch] Brooktree device doesnt properly signal o misc/35542 bde [patch] BDECFLAGS needs -U__STRICT_ANSI__ o conf/35545 [patch] enhanced periodic scripts: 100.clean-disks, 10 o bin/35886 [patch] pax(1) enhancement: custom time format for lis p bin/35894 [patch] popen.c in cron won't build without LOGIN_CAP o bin/36143 [patch] Dynamic (non linear) mouse acceleration added o kern/36170 [an] [patch] an(4) does an_init() even if interface is o bin/36262 [patch] Fixed rusers(1) idle-time reporting to use min a kern/36451 [bktr] [patch] Japan IF frequency is incorrect o bin/36556 [patch] regular expressions for tcpwrappers o kern/36902 [libc] [patch] proposed new format code %N for strftim o kern/36916 [libdisk] [patch] DOS active partition flag lost in li o kern/37380 jhb [boot0] [patch] boot0 partition list is outdated o bin/37442 [PATCH] sleep(1) to support time multipliers p kern/37448 obrien [PATCH] ldd/rtld support for more information of linke o kern/37554 jmg [vm] [patch] make ELF shared libraries immutable once o kern/37555 [kernel] [patch] vnode flags appear to be changed in n o conf/37569 matteo [PATCH] Extend fstab(5) format to allow for spaces in o bin/37844 [PATCH] make knob to not install progs with suid/sgid o docs/38061 ume [patch] typos in man pages for faith(4) & faithd(8) o bin/38168 [patch] feature request: installing curses-based versi s kern/38347 [libutil] [patch] [feature request] new library functi o docs/38540 blackend [patch] make application name capitalization consisten o bin/38727 [patch] mptable(1) should complain about garbage argum o docs/38982 doc [patch] developers-handbook/Jail fix o kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu o bin/39463 mtm [PATCH] Add several options to fingerd o ports/39660 portmgr [patch] add ${PKGNAMEPREFIX} to (DOCS|EXAMPLES)DIR o kern/39681 [sysctl] [patch] add hidden kernel boot tunables to sy o kern/40017 [patch] allows config(8) to specify config metadata di s kern/40021 [kernel build] [patch] use ld(1) to build kernel with o kern/40369 [kernel] [patch] rman_reserve_resource - when "count > o kern/40516 [ti] [patch] ti driver has no baudrate set f docs/41270 remko [patch] handbook: confusing directions for kernelconfi f usb/41415 usb [usb] [patch] Some USB scanners cannot talk to uscanne o kern/41543 emulation [patch] feature request: easier wine/w23 support f bin/41556 obrien [PATCH] wtmp patch for lukemftpd o docs/41807 doc [patch] natd(8): document natd -punch_fw "bug" o bin/41947 hexdump(1) unprintable ASCII enhancement [PATCH] o kern/42065 [kernel] [patch] kern.ps_showallprocs has no effect on o kern/42274 [kernel] [patch] Convert defined variable into tuneabl o bin/42336 [PATCH] ISO-fication of /usr/src/contrib/tcp_wrappers: o kern/42429 [libc] [patch] hash_action called with HASH_DELETE doe o bin/42974 [patch] syslogd(8): add ISO 8601 date format option o kern/43474 [nfs] [patch] dhcp.* values not set in kenv by bootp c o kern/43577 [kernel] [patch] feature request: new kernel option SH o kern/43611 [crypto] [patch] static-ize some symbols in sys/crypto o kern/43616 [zlib] [patch] static-ize some functions in sys/net/zl o kern/43716 [puc] [patch] puc driver does not recognize Lava Dual- o docs/43823 doc [PATCH] update to environ(7) manpage o kern/43905 jmg [kqueue] [patch] kqueues: EV_SET(kevp++, ...) is non-i o kern/44058 [MAKEDEV] [patch] /dev/ch* is created without group wr o docs/44074 doc [patch] ln(1) manual clarifications o kern/44267 [sio] [patch] One more modem PNP id for /usr/src/sys/i o kern/44365 [headers] [patch] introduce ulong and unchar types f kern/44500 [bge] [patch] bge(4): add AC1001 Gigabit NIC as workin o docs/45011 trhodes [patch] style(9): '->' and '.' don't require spaces o gnu/45137 peter [PATCH] CVS 1.11.2 cannot reuse log messages o bin/45193 [PATCH] truss can't truss itself o bin/45254 [sysinstall] [patch] sysinstall installs things it sho o bin/45333 [PATCH] New option -r for chown and chgrp o conf/45704 [PATCH] request to change cp866b font to cp866 o kern/45793 [headers] [patch] invalid media subtype aliases in if_ f i386/46113 remko [bus] [patch] busspace bugs in parameter checking o kern/46159 ipfw [ipfw] [patch] ipfw dynamic rules lifetime feature o kern/46368 [isa] [patch] MAXDEP in isa/pnpparse.c is too small o kern/46973 [syscons] [patch] syscons virtual terminals switching o kern/47311 mdodd [patch] Kernel support for NVIDIA nForce2-based mother o bin/47387 [PATCH] gprof -K still requires "a.out" arg / override o conf/47566 le [vinum] [patch] add vinum status verification to perio o bin/47576 [PATCH] factor(6)ing of negative numbers o docs/47594 doc [PATCH] passwd(5) incorrectly states allowed username o docs/47818 doc [patch] ln(1) manpage is confusing o docs/48101 doc [patch] add documentation on the fixit disk to the FAQ o misc/48110 [patch] change CVSROOT/log_accum.pl to not send mail i o kern/48172 ipfw [ipfw] [patch] ipfw does not log size and flags o usb/48342 usb [PATCH] usbd dynamic device list. o conf/48444 [patch] security.functions: count connection attempts o kern/48471 pjd [kernel] [patch] new feature: private IPC for every ja o kern/48599 [syscons] [patch] syscons cut-n-paste logic is broken o gnu/48638 [PATCH] some bug fixs in libdialog o conf/48870 rc [PATCH] rc.network: allow to cancel interface status d s bin/48962 des [PATCH] modify /usr/bin/fetch to allow bandwidth limit a bin/49023 gad [patch] to lpd(8) (printjob.c) to pass source filename o ports/49955 portmgr [PATCH] bsd.port.mk: add target to automatically insta o misc/50106 [patch] make 'make release' more flexible behind FWs a o docs/50211 doc [PATCH] doc.docbook.mk: fix textfile creation p docs/50248 ceri [patch] New FreeBSD books o kern/50310 [libalias] [patch] natd / libalias fix to allow dcc re o kern/50526 [kernel] [patch] update to #! line termination p docs/50735 brueffer [patch] small diff to the developers handbook & outdat o bin/50749 ipfw [ipfw] [patch] ipfw2 incorrectly parses ports and port o docs/50773 jmg [patch] NFS problems by jumbo frames to mention in bge o kern/51009 [aue] [patch] buggy aue driver fixed. o bin/51070 [patch] add -p option to pom(6) s bin/51137 [patch] config(8) should check if a scheduler is selec f ports/51152 portmgr [patch] bsd.port.mk: generic SHEBANG_FILES o kern/51958 usb [usb] [patch] update for urio driver o docs/52071 doc [PATCH] Add more information about soft updates into a o kern/52623 [ex] [patch] IRQ error in driver for the Intel EtherEx o ports/52706 portmgr [patch] bsd.port.mk issues warning if a site is explic o kern/52725 [PATCH] installincludes for kmods s ports/52765 portmgr [PATCH] Uncompressing manual pages may fail due too "a o kern/52907 phk [libc] [patch] more malloc options for debugging progr s ports/52917 portmgr [PATCH] bsd.port.mk: update default value of CONFIGURE o kern/52980 mbr [dc] [patch] dc driver fails to init Intel 21143 Cardb o usb/53025 usb [ugen] [patch] ugen does not allow O_NONBLOCK for inte o bin/53341 [sysinstall] [patch] dump frequency in sysinstall is a p bin/53377 [PATCH] su does not return exit status of executed com o www/53676 simon [patch] Don't make people contact doc@ for 404 from no o stand/53682 le [PATCH] add fuser(1) utility o kern/54220 [PATCH] /usr/src/Makefile has wrong instructions for u o bin/54365 [PATCH] add -u option to install(1) for SysV compatibi o kern/54383 net [nfs] [patch] NFS root configurations without dynamic o kern/54439 [sysctl] [patch] Protecting sysctls variables by given o docs/54461 kensmith [patch] Possible additions to Handbook (Basics and Use o kern/54604 pjd [kernel] [patch] make 'ps -e' procfs-independent o conf/55015 [patch] 700.kernelmsg: Security check output enhacemen o kern/55163 [jail] [patch] hide kld system details from jails o misc/55387 [patch] users LD_LIBRARY_PATH can interfere with mail o conf/55470 [pccard] [patch] new pccard.conf entry (I-O DATA WN-B1 s ports/55515 portmgr [patch] extract perl stuff from bsd.port.mk into bsd.p o bin/55539 [patch] Parse fstab(5) with spaces in path names o kern/55835 emulation [linux] [patch] Linux IPC emulation missing SETALL sys o ports/55841 portmgr [patch] Mk/bsd.port.mk: add routines to use ${PORTSDIR o docs/55883 kensmith [patch] handbook advanced-networking/chapter.sgml o conf/55916 rc [PATCH] ppp-user options o kern/55984 ipfw [ipfw] [patch] time based firewalling support for ipfw s bin/56012 [MAKEDEV] [patch] MAKEDEV does not allow creation of t o usb/56095 usb [usb] [patch] QUIRK: Apacer Pen Drive fails to work o kern/56250 [ums] [patch] ums(4) doesn't work with MCT based PS/2 o bin/56648 le [PATCH] enable rcorder(8) to use a directory for locat o bin/57018 le [PATCH] convert growfs to use libufs(3) s bin/57088 [cam] [patch] for a possible fd leak in libcam.c o kern/57230 [psm] [patch] psm(4) incorrectly identifies an Intelli o docs/57298 blackend [patch] add using compact flash cards info to handbook o docs/57388 doc [patch] INSTALL.TXT enhancement: mention ok prompt s bin/57407 [patch] Better NTP support for dhclient(8) and friends o kern/57522 [PATCH] New PID allocater algorithm from NetBSD o bin/57715 [patch] tcopy(1) enhancement o docs/57926 doc [patch] amd.conf(5) poorly format as it has both man(7 o bin/58483 [patch] mount(8): allow type special or node relative f kern/58529 dwmalone [libpcap] [patch] RDWR bpf in pcap. o kern/58803 [kernel] [patch] kern.argmax isn't changeable even at o conf/58939 rc [patch] dumb little hack for /etc/rc.firewall{,6} o docs/59044 doc [patch] doc.docbook.mk does not properly handle a sour f kern/59208 multimedia [sound] [patch] reduce pops and crackles and fix selec o docs/59240 blackend [patch] handbook update: linux MATLAB o kern/59289 [bktr] [patch] ioctl METEORGBRIG in bktr_core.c forget o www/59307 remko [patch] xml/xsl'ify & update publications page o conf/59600 [PATCH] Improved us.emacs.kbd mapping o kern/59698 usb [kbd] [patch] Rework of ukbd HID to AT code translatio o bin/59708 [sysinstall] [patch] add sSMTP support for Mail select o docs/59735 kensmith [patch] Adding a reference to Icelandic Rsync to mirro o docs/59736 kensmith [patch] Updating size of archives in hubs article o kern/59903 [pci] [patch] "pci_find_device" returns [only/at] the o kern/60183 sobomax [gre] [patch] No WCCPv2 support in gre f usb/60248 usb [patch] Problem with USB printer HP LaserJet 1300 o kern/60307 [pccard] [patch] wrong product id in pccarddevs for Sp o misc/60352 [patch] buildworld fails in sysinstall if terminfo dat o bin/60510 [patch] change to less(1) for compressed files o kern/60550 silby [kernel] [patch] hitting process limits produces sub-o f ports/60558 portmgr [PATCH] bsd.port.mk: automatically verify GnuPG signat o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I o kern/60697 [pty] [patch] pseudo-tty hack versus telnet race cause o bin/60834 [patch] ftpd(8) send_data()+oldway: anonymous transfer o bin/60892 [patch] added -p option to kldxref(8) to allow creatio o kern/60963 [pecoff] [patch] Win32 Applications abort on PECOFF o kern/60982 [pci] [patch] ID for VIA 686A Power Management Unit (f o usb/61234 usb [usb] [patch] usbhidaction(1) doesn't support using an o bin/61239 [patch] bootp enhancement, places the dhcp tags into t o kern/61300 [aue] [patch] Enabling HomePNA PHY on aue(4) for HomeP o docs/61301 doc [patch] Manpage patch for aue(4) to enable HomePNA fun f misc/61322 [patch] bsd.dep.mk disallows shell generated flags in o kern/61415 [net80211] [patch] disable broadcast ssid if_wi and di f i386/61481 remko [patch] a mechanism to wire io-channel-check to userla o kern/61497 ups [kernel] [patch] __elfN(map_insert) bug o bin/61666 peter [patch] mount_nfs(8) parsing bug, segmentation fault a kern/61744 andre [netinet] [patch] TCP hangs onto mbufs with no tcp dat o bin/61808 [PATCH] Update RPC prgs to allow binding to specific a o bin/61975 ume [PATCH] sync src/usr.sbin/traceroute6.c with KAME o bin/61978 [PATCH] sync src/usr.sbin/setkey/token.l with KAME o i386/62003 remko [loader] [patch] make /boot/loader "reboot" code same o kern/62098 [pccard] [patch] Bad CISTPL_VERS_1 and clash on notebo f ports/62761 portmgr [patch] for phasing out distinfo files o kern/63096 rwatson [mac] [patch] MAC entry point for route manipulation o docs/63570 ceri [patch] Language cleanup for the Handbook's DNS sectio f i386/63628 [loader] [patch] i386 master boot record to allow boot o ports/63716 portmgr [patch] Mk/bsd.port.mk: move sysctl to ${SYSCTL} and a o usb/63837 usb [uhid] [patch] USB: hid_is_collection() only looks for o kern/63863 glebius [netgraph] [patch] feature request: implement NGM_ELEC o kern/64114 [vga] [patch] bad vertical refresh for console using R o kern/64178 jmg [kqueue] [patch] kqueue does not work with bpf when us o bin/64327 [patch] make(1): document surprising behaviour of assi o kern/64588 [joy] [patch] Extend joystick driver architecture to s s kern/64875 standards [libc] [patch] [feature request] add a system call: fd p docs/65065 danger [patch] improper language ntpd(8) man pages o bin/65228 [Patch] Allow rup(1) to parse hostnames from a defined o kern/65278 ups [sio] [patch] kgdb debugger port initialization destro o bin/65306 obrien [patch] Portability fixes for FreeBSD build utils, par f ports/65344 portmgr [patch] USE_ macros for graphics libraries o kern/65355 [pci] [patch] TC1000 serial ports need enabling o kern/65627 [i386] [patch] store P3 serial number in sysctl s ports/65804 portmgr [PATCH] bsd.port.mk is gratuitously slow o ports/66032 portmgr [PATCH] bsd.port.mk: clean room installation o kern/66225 [netgraph] [patch] extend ng_eiface(4) control message o docs/66265 doc [patch] Document what -f and LD_TRACE_LOADED_OBJECTS_F o kern/66268 glebius [socket] [patch] Socket buffer resource limit (RLIMIT_ p docs/66289 brueffer [patch] lib/libc/gen/ualarm.3 refers to non-existent a o docs/66296 doc [patch] contrib/amd/amq/amq.8 uses log_options instead o ports/66342 portmgr [PATCH] fix ECHO_MSG breakage in java ports o docs/66343 imp [patch] unlisted supported card on man page for wi(4) o ports/66389 portmgr [PATCH] bsd.port.mk: follow MOVED ports o bin/66445 [patch] Add options to last(1) to ignore ftp logins (u o docs/66483 doc [patch] share/man/man4/csa.4 grammar nits s ports/66566 portmgr [PATCH] bsd.port.mk: fix build when /usr/obj/usr/ports o docs/66771 imp [patch] usr.sbin/pccard/pccardc/pccardc.8 grammar and o docs/66775 roam [patch] clarification to committer's guide that port n o bin/66893 [patch] rpc.yppasswdd(8): Linux NIS clients connecting o bin/66941 [patch] gcc2.95 (FreeBSD-specific): fix unacceptable s o bin/66988 [Patch] apm.c check validation of the returned values o i386/67011 mdodd [vpd] [patch] MFC of vpd driver for IBM xSeries etc o bin/67231 [patch] pam_krb5 doesn't honor default flags from /etc f i386/67383 remko [i386] [patch] do a better job disassembling code in 1 f ports/67436 portmgr [patch] bsd.port.mk: GNU_CONFIGURE_PREFIX_SUBDIR o ports/67437 portmgr [patch] bsd.port.mk: NO_BUILD and PKGNAMESUFFIX do not o kern/67763 [pccard] [patch] PCMCIA: MELCO manufacturer code shoul o kern/67830 [smp] [patch] CPU affinity problem with forked child p o kern/68081 [headers] [patch] sys/time.h (lint fix) o conf/68108 [patch] Adding mac-address /conf selector to diskless s kern/68110 hsu [netinet] [patch] RFC 3522 for -HEAD o usb/68232 usb [ugen] [patch] ugen(4) isochronous handling correction o kern/68311 [patch] it is impossible to override defaults with ker o kern/68315 [ata] [patch] atacontrol(8) addspare for 4.x o kern/68317 [kernel] [patch] on soft (clean) reboots clean dmesg o o usb/68412 usb [usb] [patch] QUIRK: Philips KEY013 USB MP3 player o kern/68459 [vfs] [patch] Patches to mknod(2) behave more like Lin o bin/68586 dwmalone [patch] allow syslogd to forward to non-default ports o kern/68623 [sf] [patch] sf(4) (Adaptec StarFire) multiple problem s kern/68692 andre [net] [patch] Move ARP out of routing table o kern/68719 trhodes [msdosfs] [patch] poor performance with msdosfs and US o bin/68848 [patch] find(1) shows pathname as optional but it isn' o bin/69010 [patch] Portability fixes for FreeBSD build utils, par o kern/69064 [kernel] [patch] No multiple ip4/6's could assigned to o bin/69083 [patch] basic modelines for contrib/nvi f i386/69257 remko [i386] [patch] in_cksum_hdr is non-functional without o bin/69268 wpaul [patch] Fix ndiscvt(8) to warn you if it's going to ge o bin/69398 [patch] cleartext display of password in login.c o kern/69650 [patch] make getserv* functions work with nsdispatch o kern/69730 [puc] [patch] puc driver doesn't support PC-Com 8-port o docs/69861 doc [patch] usr.bin/csplit/csplit.1 does not document POSI o bin/69875 [patch] mlxcontrol(8): `mlxcontrol status ' o ports/69965 portmgr [patch] check for moved ports in "make deinstall-all" o bin/69986 [sysinstall] [patch] no job control in fixit shell on o bin/70182 [patch] fortune -e implementation bug o docs/70217 doc [patch] Suggested rewrite of docproj/sgml.sgml for cla f usb/70362 sanpei [usbdevs] [patch] LaCie 160GB USB drive o usb/70523 usb [usb] [patch] umct sending/receiving wrong characters o docs/70583 ceri [patch] Update freebsd-glossary o i386/70610 i386 [speaker] [patch] spkr(4): hardcoded assumption HZ == o docs/70652 hmp [patch] New man page: portindex(5) o bin/70756 [PATCH] indent(1) mishandles code that is protected fo o kern/70810 [pci] [patch] Enable SMBus device on Asus P4B series m o stand/70813 standards [PATCH] ls(1) not Posix compliant o kern/71258 [vm] [patch] anonymous mmappings not always page align o kern/71334 [mem] [patch] mem_range_attr_{set|get} are no longer k o usb/71605 usb [umass] [patch] umass doesn't recognize multiple slots o bin/71613 [PATCH] cleanup of the usr.sbin/traceroute6 code o bin/71616 [PATCH] cleanup of the usr.sbin/yp_mkdb code o bin/71617 [PATCH] cleanup of the usr.sbin/ypserv code o bin/71618 [PATCH] cleanup of the usr.sbin/timed code o bin/71619 [PATCH] cleanup of the usr.sbin/tcpdump code o bin/71620 [PATCH] cleanup of the usr.sbin/sysinstall code o bin/71621 [PATCH] cleanup of the usr.sbin/sliplogin code o bin/71622 [PATCH] cleanup of the usr.sbin/sicontrol code o bin/71623 [pcvt] [patch] cleanup of the usr.sbin/pcvt code o bin/71624 [PATCH] cleanup of the usr.sbin/rtadvd code o bin/71625 [rpc] [patch] cleanup of the usr.sbin/rpc.ypupdated co o bin/71626 [PATCH] cleanup of the usr.sbin/rpc.statd code o bin/71628 [PATCH] cleanup of the usr.sbin/rpcbind code o bin/71629 [PATCH] cleanup of the usr.sbin/pppstats code o bin/71630 [PATCH] cleanup of the usr.sbin/pppd code o bin/71631 [PATCH] cleanup of the usr.sbin/pppctl code o bin/71632 [PATCH] cleanup of the usr.sbin/ndp code o bin/71659 [PATCH] cleanup of the usr.sbin/mount_portalfs code o bin/71660 [PATCH] cleanup of the usr.sbin/kgmon code o bin/71661 [PATCH] cleanup of the usr.sbin/keyserv code o bin/71664 [PATCH] cleanup of the usr.sbin/fwcontrol code o bin/71665 [PATCH] cleanup of the usr.sbin/dconschat code o bin/71667 [PATCH] cleanup of the usr.sbin/bootparamd code o bin/71669 [PATCH] cleanup of the usr.sbin/atm code o bin/71671 [PATCH] cleanup of the usr.sbin/apmd code o bin/71749 [PATCH] truss -f causes circular wait when traced proc o conf/71767 [patch] French translations for keyboards keymaps desc s bin/71773 des [patch] genericize.pl -c misses some comments s bin/71855 [patch] making kdump WARNS=6 clean o conf/71994 [patch] dot.login: login shell may unnecessarily print f ports/72067 obrien [PATCH] editors/vim: i18n and extra support o conf/72076 [patch] German locales use old %d.%m.%y date format in o bin/72124 [patch] rm -P can't unlink u-w files o i386/72179 i386 [acpi] [patch] Inconsistent apm(8) output regarding th o kern/72217 [netinet6] [patch] Bug in calculation of the parameter o conf/72277 [patch] update for /usr/share/skel o kern/72352 [puc] [patch] Support for VScom PCI-100L is missing fr o kern/72433 [amr] [patch] AMR raid, amrreg.h struct amr_enquery3 a o conf/72465 [patch] United States International keyboard layout fo p conf/72505 brian [patch] Fix rc.d/ppp-user to make use of rc.subr o kern/72585 [syscons] [patch] iso05-8x16.fnt lacks letter q o bin/72588 [patch] iostat(8) tty stats field concatenation o kern/72659 jeff [sched_ule] [patch] little bug in sched_ule interactiv o bin/72674 [patch] make /usr/bin/whois use SK-NIC's whois server o usb/72732 usb [patch] Kyocera 7135 quirk. o bin/72793 [patch] wicontrol(8) prints out non-printable chars in o conf/72901 [patch]: dot.profile: prevent printing when doing an s f kern/72933 yar [netgraph] [patch] promisc mode on vlan interface does a conf/72978 [patch] add danish syscons keymap with accents o sparc/72998 sparc64 [kernel] [patch] set_mcontext() change syscalls parame p bin/73110 rwatson [patch] ffsinfo conversion from atol() to strtol() p bin/73112 rwatson [patch] change atol() to strtol() in badsect o kern/73276 ipfw [ipfw] [patch] ipfw2 vulnerability (parser error) o bin/73411 [patch] FTPD could set attributes to 0600 while upload p kern/73514 le [ntfs] [patch] mount_ntfs: can't access to a large fil o conf/73677 rc [patch] add support for powernow states to power_profi o kern/73777 emulation [linux] [patch] linux emulation: root dir special hand o i386/73921 i386 [sysctl] [patch] sysctlbyname for machdep.tsc_freq doe o conf/73929 dougb [patch] /etc/rc.d/named will not work with ports-named o conf/74004 [PATCH] add fam support to inetd.conf o conf/74006 dougb [PATCH] /etc/rc.d/named minor fixes o kern/74159 [headers] [patch] fix warnings concerned with header f o bin/74178 [patch] grdc(6) - scrolling does not work and "AM"/"PM o conf/74213 [PATCH] Connect src/etc/periodic/security/610.ipf6deni o i386/74327 i386 [pmap] [patch] mlock() causes physical memory leakage o bin/74360 [patch] ndiscvt(8) generates a driver which doesn't ma o bin/74450 [libalias] [patch] enable libalias/natd to create skip o i386/74454 i386 [bsd.cpu.mk] [patch] Adding VIA Eden family o kern/74498 [pccard] [patch] new CIS id for Intersil WiFi, pccard o bin/74506 [patch] bad top command display o bin/74567 [2TB] [patch] du doesn't handle sizes >1TB o usb/74609 usb [usb] [patch] allowing cdma modems to work at full spe o docs/74612 doc [patch] updates to the glossary o bin/74743 [patch] wctype.c declares static array on stack o kern/74786 [irq] [patch] Smartlink Modem causes interrupt storm o o conf/74817 rc [patch] network.subr: fixed automatic configuration of o usb/74849 usb [usb] [patch] Samsung SPH-i500 does not attach properl o usb/74880 usb [usb] [patch] Samsung N400 cellphone/acm fails to atac o ports/74907 apache [PATCH] www/mod_perl: cleanups s kern/74986 glebius [patch] sysctlize a parameter of if_em's interrupt mod o kern/75132 jhb [puc] [patch] add support for the Davicom 56PDV PCI Mo o kern/75254 [wi] [patch] PRISM3-based adapter ZCOM XI330 doesn't w o kern/75298 [pccard] [patch] add missing device id for pccard brid o conf/75502 [patch] Fix LC_NUMERIC and LC_MONETARY for de_CH local o kern/75764 usb [umass] [patch] "umass0: Phase Error" - no device for o bin/75766 [patch] nfsd(8) loops with TCP + multiple -h options o kern/75934 [libcrypt] [patch] missing blowfish functionality in p o kern/76081 [rl] [patch] Add support for CardBUS NIC FNW3603TX o conf/76124 [patch] Mistake in /usr/share/misc/pci_vendors o gnu/76169 [patch] Add PAM support to cvs pserver o docs/76333 doc [patch] ferror(3): EOF indicator can be cleared by not o bin/76494 [patch] passwd(1) does not indicate a successful chang o conf/76509 [patch] New locale uk_UA.CP1251 support s kern/76520 [libiconv] [patch] Add new kernel-side libiconv conver o kern/76539 [dummynet] [patch] ipnat + dummynet on output on same f kern/76551 remko [re] [patch] re0: watchdog timeout o conf/76626 [patch] 460.status-mail-rejects shows destination doma o kern/76678 rwatson [libpam] [patch] Allow pam_krb5 to authenticate no loc o kern/76710 [mii] [patch] rgephy does not deal with status properl o ports/76915 portmgr [patch] Handle port deinstall scripts when /var is mou o bin/77031 [patch] comm(1) unable to handle lines greater than LI o conf/77197 [patch] calendar.judaic is out of date o kern/77355 [i386] [patch] Detect i*86 subarches for uname o kern/77841 [libc] [patch] cast away const in getpublickey() o ports/77873 portmgr [patch] New variable: USE_BSD_MK o ports/77876 portmgr [patch] Ensure uniqueness of (DOCS|EXAMPLES|DATA)DIR o kern/77913 [wi] [patch] Add the APDL-325 WLAN pccard to wi(4) o docs/78041 doc [patch] docs for md(4) need further explanation of typ o kern/78072 [lge] [patch] Potential memory leak in lge(4) o kern/78114 phk [geom] [patch] Solaris/x86 label structures for GEOM ( o docs/78138 doc [patch] Error in pre-installation section of installat o bin/78170 [patch] Fix signal handler in bootpd o docs/78240 doc [patch] handbook: replace with aroun o ports/78490 portmgr [patch] bsd.port.mk: add PORTEXAMPLES and PORTDATA o ports/78554 portmgr [patch] bsd.port.mk: allow install port with the same o kern/78646 [libmap] [patch] libmap should canonicalize pathnames o kern/78673 cel [nfs] [patch] nfs client open resets attrstamp ever if o kern/78756 [libc] [patch] src/lib/libc/nls/fr_FR.ISO8859-1.msg fo o kern/78758 sos [ata] [patch] Add support for re-sizing ATA disks a ports/78760 lioux [PATCH] multimedia/kmplayer: Make TV viewing a bit mor o bin/78763 pjd [PATCH] Added jail support to ps o bin/78768 pjd [Patch] Added jail support to top o bin/78785 ipfw [ipfw] [patch] ipfw verbosity locks machine if /etc/rc o kern/78884 cel [nfs] [patch] nfs client cache negative lookups o conf/78906 rc [patch] Allow mixer_enable="NO" in rc.conf o i386/79091 i386 [i386] [patch] Small optimization for i386/support.s p kern/79139 rodrigc [pci] [patch] Support for more PCIe chipsets o conf/79196 rc [PATCH] configurable dummynet loading from /etc/rc.co o bin/79228 [patch] extend /sbin/arp to be able to create blackhol o kern/79266 [pci] [patch] RELENG_4 pci CONF1_ENABLE_MSK depend MFC o ports/79398 portmgr [patch] bsd.port.mk: add USE_MAKESELF knob o bin/79607 obrien grok and default to bzip2-compressed manual pages [pat o ports/79651 clement [patch] mail/ssmtp: add per-user smtp authentication c o usb/79725 usb [usb] [patch] USB device speed is not double-checked o threa/79887 threads [patch] freopen() isn't thread-safe o usb/79893 usb [umass] [patch] new usbdevs/umass quirks derived from o usb/80010 usb [aue] [patch] add support for the AEI USB to LAN adapt o kern/80031 [coda] [patch] Remove insque/remque from kernel land o bin/80117 [sysinstall] [patch] smbfs install option for sysinsta o docs/80159 dfr [patch] rtld(1) mentions "%m" but it's not implemented o docs/80186 imp [patch] Footnote is wrong in the /usr/src/UPDATING o bin/80258 [PATCH] Comment why some Binaries are statically linke o kern/80269 [libtacplus] [patch] libtacplus tac_get_av_value will o bin/80411 [patch] df(1): bin/df/df.c sign errors in calls to get o conf/80504 [patch] de_DE.ISO8859-1 libc message catalog f bin/80610 [patch] netstat(1): lost data due lu format o bin/80620 des [patch] fetch -U does not work o kern/80642 ipfw [ipfw] [patch] ipfw small patch - new RULE OPTION o bin/80687 [patch] Missing NULL termination after strncpy() in lo o bin/80732 [PATCH]: getty(8) and telnetd(8) ignore the 'if' optio o kern/80844 [psm] [patch] Increase compatibility of psm driver wit o bin/81035 [patch] boot0cfg emits bogus error f conf/81042 pf [pf] [patch] /etc/pf.os doesn't match FreeBSD 5.3->5.4 o ports/81070 ale [PATCH] www/php-screw: randomize CRYPTKEY o stand/81287 standards [PATCH]: fingerd(8) might send a line not ending in CR o bin/81300 [PATCH] add option to sockstat(1) to always separate o i386/81358 remko [geode] [patch] add PC Engines WRAP support o threa/81534 threads [libc_r] [patch] libc_r close() will fail on any fd ty o kern/81588 phk [kernel] [patch] Devices with SI_CHEAPCLONE flag don't o bin/81692 sos [patch] atacontrol(8) support for disk APM and acousti o bin/81709 [patch] lam accepts -P but not -p o kern/81803 [ichsmb] [patch] Unsupported ICH6 SMBus controller on o bin/81837 [patch] Sort by directories first option for ls(1) o kern/81987 [libc] [patch] memory leaks in libc/rpc o bin/82058 markm [PATCH] Ability for pw groupmod to delete members o bin/82161 [patch] m4's eval does not handle INT_MIN correctly o bin/82170 [patch] m4's eval does not work as documented o bin/82185 [patch] ndp(8) command bug o conf/82228 roberto [patch] order parsed ntpdate_hosts in /etc/rc.d/ntpdat p bin/82287 trhodes [patch] routed(8): Fix varargs usage, remove non-exist o docs/82290 hmp [patch] update to handbook firewall PF section o gnu/82351 [patch] update (385-cl3) to version 385 of the "less" o usb/82436 usb [patch] USL101 Host-to-Host bridge support on FreeBSD o gnu/82484 [patch] for misleading man cvs s ports/82661 portmgr [patch] Add support to filter MASTER_SITES and PATCH_S o kern/82724 ipfw [ipfw] [patch] Add setnexthop and defaultroute feature p docs/82779 bde [patch] Kill entry for ddb manpage o conf/82823 [patch] little addon for /etc/periodic/400.passwdless o bin/83170 [patch] Allow 'install' to compare files by mtime inst o bin/83358 [patch] improper handling of malloc failures within re o bin/83361 [patch] Incorrect malloc failures handling within libd o bin/83424 [patch] improper handling of malloc failures within li o bin/83451 [patch] improper handling of malloc failures within li o docs/83621 doc [patch]: Minor omissions in /usr/src/UPDATING o kern/83622 [patch] add network interfaces labeling support o kern/83697 multimedia [snd_mss] [patch] support, docs added for full-duplex, o kern/83778 [kame] [patch] JPv6 cannot use Jumbo Frames o kern/83807 [sis] [patch] if_sis: Wake On Lan support for FreeBSD o stand/83845 standards [libm] [patch] add log2() and log2f() support for libm o bin/84041 [PATCH] fix for wall(1) error message o kern/84215 [jail] [patch] wildcard ip (INADDR_ANY) should not bin f bin/84219 rafan [ncurses] [patch] ncurses.h wchar_t confliction o docs/84265 doc [patch] chmod(1) manpage omits implication of setting o docs/84267 doc [patch] chflags(1) manual doesn't say it's affected by o docs/84271 ceri [patch] compress(1) doesn't warn about nasty link hand o bin/84298 [patch] allow mount(8) to recognize relative pathnames f ports/84448 portmgr [patch] bsd.port.mk: Add "make test" to ports o conf/84581 remko [patch] Teach config(8) to look for kernel configurati o bin/84634 fjoe [geom] [patch] new utility to control GEOM uzip class o docs/84670 doc [patch] tput(1) manpage missing ENVIRONMENT section wi o conf/84752 [patch] 100.clean-disks cleans file systems that don't o kern/84797 [libutil] [patch] State engine in the libutils propert o conf/84800 obrien [patch] setting CPUTYPE=nocona on an Intel system resu o bin/84911 [patch] ndisgen(8) can't cope with .sys-files that beg o docs/84955 ru [patch] mdoc(7) manpage should mention missing documen o docs/84956 doc [patch] intro(5) manpage doesn't mention API coverage o kern/84981 [headers] [patch] header protection for 6.0 winTV card not pr o ports/89670 ade [patch] Automake 1.9 not detecting cppunit o bin/89762 [patch] top(1) startup is very slow on system with man o bin/89770 des [patch] pam_krb5 'authentication token failure' in pas o bin/89799 [patch] Making natd(8) not require a newline at the en f conf/89860 matteo [patch] Add ability to set up vnode backed filesystems o conf/89870 rc [patch] feature request to make netif verbose rc.conf o bin/89988 [patch] bootparamd(8) null host support and whoami fix o bin/89989 [patch] Add option to /usr/sbin/jail: -I (ASCII 73) PI s bin/90082 matteo [syscons] [patch] curses ACS line graphics support for o bin/90114 [patch] pw(8) takes strings after option -g for GID 0 o bin/90130 [patch] sysctl(8): print temperature in celsius only w a conf/90163 dougb [patch] Easily launch non-forking daemons like logsurf o kern/90181 [NOTES] [patch] IPSEC_FILTERGIF documentation is incom o bin/90311 [patch] add "eject" to mt(1) o bin/90384 [patch] chroot patch for sftp-server(8) o ports/90436 portmgr [patch] Add a way to handle configuration files to bsd o kern/90521 [udf] [patch] UDF driver might calculate a wrong descr o bin/90680 [patch] make(1) thinks "^.for.o:" is a directive (".fo o bin/90687 [patch] side effect of -delete option of find(1) o bin/90823 [PATCH] cp(1) should use lchflags() f bin/90990 rafan [PATCH] ncurses doesn't compile with --enable-widec o bin/91034 [patch] minor fix to iostat(8) so that columns line up o bin/91049 [patch] dump(8): make dumps more rsync-friendly o bin/91101 [patch] /usr/src/usr.bin/whereis/whereis.c o bin/91134 [smbfs] [patch] Preserve access and modification time o kern/91293 emulation [svr4] [patch] *Experimental* Update to the SVR4 emula o bin/91299 yar [patch] add ftpd(8) SITE SHA256 command o kern/91332 [patch] Linksys EG1032 V3.0 Gigabit card captured by s o kern/91347 rodrigc [pci] [patch] Add another PCI-e chipset for extended c o kern/91414 emaste [kernel] [patch] Polling for devices other than NICs o kern/91476 [fdc] [patch] floppy drive doesn't work in MS Virtual a kern/91488 kientzle [isofs] [patch] cd9660 filesystem cannot handle files o usb/91546 usb [umodem] [patch] Nokia 6630 mobile phone does not work f kern/91777 darrenr [ipfilter] [patch] wrong behaviour with skip rule insi o ports/91843 anders [patch] thttpd with USE_SENDFILE generates ENOTCONN no o i386/91871 i386 [boot1] [patch] boot1: jump to 0xf000:0xfff0 instead o o ports/92123 portmgr [patch] bsd.port.mk: PLIST_SUBX and SUBX_LIST autoexpa o usb/92306 usb [quirk] [patch] Support for iRiver U10 USB media playe o kern/92323 [iwi] [patch] XI330_IEEE missing from if_wi_pccard.c o stand/92360 standards [headers] [patch] Missing TAB3 in kernel headers o stand/92362 standards [headers] [patch] Missing SIGPOLL in kernel headers o bin/92412 [patch] rup(1): rpc.rstatd reports bogus packets/per/s o ports/92434 portmgr [patch] Mk/bsd.port.mk automatic show pkg-message o conf/92523 rc [patch] allow rc scripts to kill process after a timeo a amd64/92527 amd64 [ciphy.c] ][patch] no driver for "CICADA VSC 8201 Giga o conf/92541 [PATCH] add ca_AD, ca_FR and ca_IT locales o kern/92880 [libc] [patch] almost rewritten inet_network(3) functi o kern/92926 [headers] [patch] Missing copyright in /usr/include/sy s www/92973 www [patch] mailto.sgml o gnu/93127 [PATCH] add __FreeBSD_kernel__ to pre-defines o kern/93172 [isp] [patch] uintXX_t style(9) updates f ports/93216 [PATCH] finance/gnucash-devel: Add development release p ports/93276 secteam [patch] security/ca-roots: Update expired certs f bin/93309 [PATCH] rpc.rquotad: group quota support over NFS o bin/93310 des [libpam] [patch] pam_unix ignores 'passwordtime' from o kern/93331 [kernel] [patch] broken asm in kernel o misc/93341 phk [patch] make more flexibitily for NanoBSD customizatio o kern/93393 imp [ed] [patch] Add Micro Research PCMCIA LAN Adapter MR1 o kern/93414 scottl [aac] [patch] compilation problem in aac_ioctl header o bin/93473 des [patch] Let pam_unix(8) use "passwordtime" from login. o ports/93560 roam [PATCH] dns/djbdns-ipv6: Update IPv6 patches o misc/93661 [patch] loader(8): prevent *.4th files and friends fro o docs/93683 jcamou [PATCH] some typos in klist(1) o kern/93705 standards [headers] [patch] ENODATA and EGREGIOUS (for glibc com o kern/93755 imp [kernel] [patch] 2 copy'n'paste-os in sys/vm/phys_page o conf/93815 rc [patch] Adds in the ability to save ipfw rules to rc.d o misc/93838 [patch] Add notice to /usr/src/Makefile that make worl o bin/93857 [patch] kiconv_cs_preload(8): Utility for loading the o kern/93860 trhodes [msdosfs] [patch] sectors-per-track limit of MSDOSFS t o usb/93872 usb [patch] SCSI quirk required for ELTA 8061 OL USB memor o bin/93915 krion [patch] pkg_add(1) behaves improperly when unpacking o f kern/93976 rwatson [if_tun] [patch] if_tun doesn't handle kqueue(2) f bin/94032 krion [patch] Enhancement to pkg_add(1) to add -4 flag to fo f ports/94043 ade [patch] bsd.autotools.mk: aclocal can't find libtool m o bin/94052 [PATCH]: Adds option to script(1) to suppress carriage o ports/94138 portmgr [patch] Mk/bsd.gcc.mk, Mk/bsd.port.mk: CPUTYPE cause b o ports/94167 x11 [patch] x11/xorg-clients: install xdm/Xstartup and /Xr o kern/94273 gnn [netipsec] [patch] IPIP decapsulation problem in FAST_ o usb/94311 usb [ugen][PATCH] allow interrupt IN transactions to be af o bin/94367 [patch] wall(1): fix `wall: /dev/:0: No such file or d o kern/94369 [bktr] [patch] Patch to support Leadtek WinFast Tv2000 o www/94423 danger [patch] XML'ified release todo list o usb/94439 usb [patch] Add support for JNC MP3 Player o kern/94480 [kernel] [patch] bread(3) & bwrite(3) can crash under o kern/94519 [libc] [patch] Add UF_HIDDEN file flag; map it to Wind o bin/94546 [PATCH] Make telnet(1) accept 'host:port' on command l o docs/94625 doc [patch] growfs man page -- document "panic: not enough f ports/94680 portmgr [patch] bsd.port.mk - introduce ONLY_FOR_OSVERSION as o ports/94690 ume [PATCH] Daemons in /usr/local/etc/rc.d/ must do "setss o kern/94830 cel [nfs] [patch] mount_nfs causes a fatal trap 18 if the o usb/94946 usb [uhub][patch] code dynamic status size for status chan f docs/94969 ale [patch] correct information about install php or mod_p o bin/95079 [patch] apply(1) dies when there are two %1 in command o bin/95082 [patch] ping(1) won't handle large preload patterns o ports/95085 portmgr [PATCH]: bsd.port.mk: Add knob to allow for mutually e o ports/95097 ume [patch] to build security/cyrus-sasl2 with gcc4 o ports/95102 ume [PATCH] security/cyrus-sasl2 - change authdaemond_path o conf/95162 rc [patch] Missing feature in rc.subr o kern/95239 [patch] nftw(3) returns EINVAL for large values of max o kern/95391 [bfe] [patch] minor if_bfe error o bin/95550 [patch] ntpd(8): NTPD/ntpdate complain about IPv6 inte o bin/95698 philip [patch] moused(8): Software control of sysmouse p bin/95715 [patch] random(6) busy loop under some conditions o conf/95754 [patch] Portuguese timedef s ports/95759 portmgr [patch] bsd.port.mk parallel port builds broken o misc/95792 [patch] environment variable EDITOR is set wrong in fi o conf/95905 brooks [PATCH] /etc/rc.d/dhclient doesn't interact well with o bin/96128 [PATCH] Make aicasm WARNS=6 clean o kern/96133 scsi [scsi] [patch] add scsi quirk for joyfly 128mb flash u o ports/96147 tegge [patch] devel/linuxthreads uses pre-install instead of o stand/96236 standards [PATCH] [POSIX] sed.1 incorrectly describes a function p kern/96326 [libdisk] [patch] update to id -> partition name trans p bin/96335 delphij [libutil] [patch] ignored NO_INET6 knob o conf/96343 rc [patch] rc.d order change to start inet6 before pf o kern/96346 [modules] [patch] disable build of modules that are al o usb/96381 usb [patch] add a quirk table entry for a flash ram usb st o kern/96429 [kernel] [patch] kern_linker.c hardcodes "/boot/kernel o ports/96436 x11 [patch] x11/xorg-clients: logging on xdm with pam_krb o bin/96540 [patch] catman(1) does not deal correctly with hard-li p usb/96546 usb [usb] [patch] Add support (quirk) for EasyMP3 EM732X U f kern/96743 yongari [sk] [patch] broken 32-bit register operations o conf/96746 [nanobsd] [patch] Configuration changes and README for o bin/96854 imp [patch] devd(8) parses events incorrectly in some case o kern/96974 obrien [patch] to build FreeBSD kernel with binutils 2.16.92 o kern/96999 [procfs] [patch] procfs reports incorrect information o kern/97000 [kernel] [patch] bogus "All threads purged from ugen0. o bin/97002 [patch] crond(8) fails quietly if /usr/sbin/sendmail i p kern/97063 obrien [nve] [patch] Added DEFINE to if_nve.c/if_nvereg.h to o kern/97071 [jail] [patch] add security.jail.jid sysctl o bin/97083 [patch] passwd(1) does not support _PWF_HESIOD o kern/97153 [patch] When -NO_KERBEROS is set, libcom_err still get o kern/97228 sos [ata] [patch] Support new ATA ICH7 controller o www/97233 www [patch] Change the "Report a Bug" link on the home pag o www/97234 www [patch] Re-order links in bugreports.html o kern/97329 [nfs] [patch] code simplification o kern/97377 [ntfs] [patch] syntax cleanup for ntfs_ihash.c o kern/97381 [fdc] [patch] Patch to add zero-sector and spanned-sid f bin/97467 yar [patch] ftpd(8) has no way to specify socket buffer si o usb/97472 usb [patch] add support for Olympus C150,D390 f ports/97579 delphij [patch] ports mail/spamd to reflect the public hostnam p conf/97697 matteo [PATCH] rc.conf - jail__exec_afterstart[0..n] o kern/97786 [udf] [patch] fs/udf: incorrect timestamps o kern/98015 [bfe] [patch] bfe(4): double free in error handling pa f docs/98344 linimon [patch] An update of the article "Choosing the FreeBSD f usb/98385 flz [patch] add support for libretto DVD Dock device to um o kern/98460 [kernel] [patch] fpu_clean_state() cannot be disabled o bin/98489 rafan [patch] usr.bin/top to display jail id o kern/98618 [libexpat] [patch] src/lib/libexpat is setup for small o bin/98693 [patch] top(1): Reduce NIS server loading o docs/98759 joel [patch] sbp_targ(4) man page missing reference to devi o kern/98788 [syscons] [patch] Add sysctl to disallow VT_LOCKSWITCH o bin/98805 [new feature] [patch] ddate(1) for BSD o conf/98815 [PATCH] Add euro symbol to pt_PT locale using other en o kern/98898 [pci] [patch] fix random sound problems in fm801 f ports/98909 portmgr [PATCH] bsd.port.mk: Extend DISTVERSION->PORTVERSION a o i386/98932 i386 [i386] [patch] Kernel compilation failed on specific P o ports/98946 dougb [patch] xscreensaver and PAM support f docs/99007 doc [patch] misleading nat configuration info o kern/99017 sos [ata] [patch] FreeBSD versions above 5.3 panic if atap o kern/99068 [linux] [patch] Linux emulator crashed by java, when c o gnu/99173 [PATCH] replace gnu patch with a bsd-licensed one. o kern/99183 [PATCH] Gvinum stylefix o kern/99186 [PATCH] Gvinum dumpconfig/setstate/stop implementation o kern/99216 [bfe] [patch] make bfe(4) always detect LINK_DOWN even o bin/99217 [patch] pam_ssh(8) waits for a wrong ssh-agent PID at o ports/99302 jdp [patch] net/cvsup options o bin/99307 [patch] mount_nfs(8) incompatible with zVM VMNFS 3A0 o conf/99328 [patch] updates for src/share/examples/cvsup o conf/99444 rc [patch] Enhancement: rc.subr could easily support star o kern/99500 glebius [netgraph] [patch] netgraph doesn't honor the monitor s ports/99509 portmgr [PATCH][bsd.port.mk] move USE_OPENSSL to post section p bin/99534 emaste [patch] dhclient(8) Classless Static Routes support o bin/99566 [jail] [patch] fstat(1) according to specified jid o conf/99593 [patch] Add IANA HP I/O and Status ports to /etc/servi o conf/99595 rc [PATCH] /etc/rc.d/dhclient doesn't interact well with o misc/99627 [PATCH] make update & CVSROOT o docs/99631 rafan [patch] document jid option in top(1) o kern/99663 sos [ichsmb] [patch] add ICH6 support o kern/99692 [patch] A pl_PL.dvorak keymap for syscons. o conf/99721 rc [patch] /etc/rc.initdiskless problem copy dotfile in s o kern/99758 [pty] [patch] chown/chmod pty slave side in kernel o bin/99800 [libc] [patch] Add support for profiling multiple exec p bin/99807 rafan [PATCH] update ncurses in base to 5.5 o kern/99826 [libc] [patch] setenv(3)/unsetenv(3) leak memory o bin/99896 gad [patch] lpr -r flag has no effect o stand/99960 standards [Patch] [make] Add -p flag o stand/100017 standards [Patch] Add fuser(1) functionality to fstat(1) o i386/100142 i386 [pci] [patch] /dev/smb0 device not available on system o misc/100322 [tools] [patch] kerninclude.sh doesn't dump object nam o bin/100424 [patch] ssh(1): SSH option BindAddress is ignored by o o bin/100496 [patch] Fix to get rid of the telnet(1) to cisco probl o ports/100497 portmgr [PATCH] add include to support EFL-related ports o ports/100504 skv [PATCH] databases/p5-Class-DBI: Reduce dependencies o bin/100535 [patch] cal(1) and ncal(1) do not take into account mu o docs/100538 jcamou [PATCH] en_US: Correct handbook/install (update the bo o ports/100556 portmgr [patch] bsd.port.mk - proper using of ECHO_CMD and ECH o bin/100585 [patch] top(1): top -s0 causes load excessive o conf/100616 [patch] syslog.conf: lines after exclamation point ign o bin/100732 [patch] make dump(8) utility take modulo 10 of request f bin/100765 [patch] natd(8): add support for kqueue in natd o conf/100782 [kbd] [patch] Default keymap to support ALT+Left, ALT+ o bin/100921 [tftpd] [patch] libexec/tftpd: `-w' non-traditional ac o bin/100956 remko [patch] support setting carp device state with ifconfi o ports/101029 portmgr [PATCH] bsd.port.mk: add bsd.ocaml.mk to support OCaml f usb/101043 flz [usbdevs] [patch] Add vendor "Sony Ericsson Mobile Com o kern/101045 [arcmsr] [patch] Updates to arcmsr(4) o ports/101078 obrien [PATCH] update editors/hexedit to 1.2.12 o ports/101120 portmgr [patch] bsd.port.mk: Tell CC and CXX to ports without f ports/101161 stephane [PATCH] devel/ocaml-findlib: update to 1.1.2 o ports/101202 stephane [PATCH] www/ocaml-net: update to 1.1.2 o kern/101228 embedded [nanobsd] [patch] Two more entries for FlashDevice.sub o bin/101232 [patch] make(1) hangs with -j and -f o ports/101383 ume [PATCH] mail/cyrus-imapd: add handling of WITHOUT_BDB f ports/101459 cy [PATCH] misc/screen: fix overflow on 64-bit o bin/101590 [lib] [patch] -O2 optimizing out abi-tag note from exe o bin/101693 [patch] tcpdump -h shows still "-a" o usb/101757 usb [patch] uhid.4: correct structure field names to match o usb/101761 usb [patch] usb.h: increase maximal size of report descrip o usb/101775 usb [libusbhid] [patch] possible error in report descripto p bin/101979 [patch] tail(1): tail -F fails to print remainder of o f ports/102102 portmgr [PATCH] bsd.port.mk: Allow user to ignore DIST_SUBDIR o bin/102162 [patch] tftpd(8): Limit port range for tftpd o bin/102299 [patch] grep(1) malloc abuse? p bin/102354 thomas [patch] Small cleanup for ifmedia.c f usb/102373 flz [patch] driver for MFT o bin/102394 [patch] ls(1) do not shows inode number symbolic link o ports/102414 ume [PATCH] mail/cyrus-imapd: avoid fopen limit during mbo o ports/102473 simon [patch] portaudit fails to overwrite auditfile.tbz whe o conf/102502 net [patch] ifconfig name does't rename netgraph node in n f bin/102523 emax [bluetooth] [patch] Virtual serial port server code fo o kern/102540 ru [netgraph] [patch] supporting vlan(4) by ng_fec(4) o kern/102549 [bktr] [patch] fix Pixelview PlayTV Pro 2 on bktr o bin/102609 [PATCH] Add filtering capability to date(1) o conf/102700 rc [PATCH] Add encrypted /tmp support to GELI/GBDE rc.d s o docs/102719 doc [patch] ng_bpf(4) example leads to unneeded promiscuos o bin/102747 brian [patch] ppp timer subsystem stops under certain circum o ports/102946 secteam [patch] security/portaudit o bin/103006 delphij [patch] gzip support for -k option as used by bzip2 o bin/103007 [patch] man: support for bzip2 compressed manpages o kern/103019 jhb [patch] MFC link flapping workaround for em(4) to RELE o usb/103046 usb [patch] ulpt event driven I/O with select(2) and nonbl o bin/103089 [patch] mount_nfs(8): introduce new option o ports/103208 rafan [PATCH] print/mftrace: update to 1.2.4 o ports/103209 dd [PATCH] Mark net/obnc as deprecated and IGNORE on newe o usb/103418 usb [usb] [patch] usbhidctl: add ability to write output a o ports/103462 kuriyama [PATCH] net-mgmt/net-snmp override files, installed by o conf/103486 rc [rc.d][patch][chroot named] rc.d/jail: mount fstab aft o conf/103489 rc [rc.d] [patch] named_chroot_autoupdate doesn't work in o bin/103500 fjoe [patch] mkuzip(1) enhancement to accept size of input p bin/103501 matteo [patch] mdmfs(8) enhancement to allow use in fstab and o kern/103615 scottl [aac][patch] aac(4) update to the last version availab o kern/103702 scsi [cam] [patch] ChipsBnk: Unsupported USB memory stick o bin/103764 [libradius] [patch] libradius aborts server processing o ports/103800 clement [patch] www/apache22 multiple instantiation does not w o www/103805 danger [patch] en/advocacy/myths.sgml o ports/104029 lioux [PATCH] net-p2p/mldonkey: don't install rc script with o bin/104092 [patch] iostat(8): missing blanks in iostat output o ports/104156 rafan [PATCH] editors/vim: WITH_ICONV knob, some portlint(1) o kern/104212 [puc] [patch] support for Kuroutoshikou SERIAL4P-LPPCI o bin/104248 [patch] pw(8) does not support the setting of the mode o kern/104270 sos [atapicd] [patch] burncd failure due to acd_get_progre o ports/104329 lioux [PATCH] x11-themes/kde-icons-nuvola: [SUMMARIZE CHANGE o ports/104331 lioux [PATCH] x11-themes/kde-icons-sparkling o ports/104332 lioux [PATCH] x11-themes/kde-icons-wasp o docs/104493 doc [patch] Wrong description in ntp.conf(5) (CURRENT and o gnu/104533 [patch] make send-pr(1) read configuration from ~/.sen o conf/104549 rc [patch] rc.d/nfsd needs special _find_processes functi o bin/104553 [PATCH] Add login group support to login.access(5) o ports/104560 alexbl [patch] x11-toolkits/py-gtk2 does not configure with p o kern/104682 ipfw [ipfw] [patch] Some minor language consistency fixes a s bin/104689 matteo [patch] powerd(8): add support for limiting cpu freque p bin/104702 des [patch] Make fetch(1) preserve permissions when overwr o bin/104713 remko [patch] FreeBSD base and misc/zoneinfo conflict with e o bin/104731 gad [patch] missing newline in lpq output o kern/104738 mlaier [inet] [patch] Reentrant problem with inet_ntoa in the o bin/104746 [PATCH] 'traceroute -e -P TCP' cannot work through a r o kern/104777 [kernel] [patch] Driver not unset properly after kldun o ports/104813 remko [patch] Broken URL in security/portaudit manpage o ports/104831 edwin [patch] A bug in net/dhcpdump when decoding FQDN DHCP o ports/104838 ale [PATCH] sysutils/portconf: auto detect real path of /u o bin/104845 [patch] Build error on contrib/file/magic o kern/104851 [inet6] [patch] On link routes not configured when usi o kern/104882 [iicbb] [patch] pvr250 and pvrxxx drivers need iicbb p p conf/104884 flz [patch] Add support EtherChannel configuration to rc.c o bin/104921 ipfw [patch] ipfw(8) sometimes treats ipv6 input as ipv4 (a o bin/105060 [patch] adduser(8) does not support the setting of the o kern/105093 [ext2fs] [patch] ext2fs on read-only media cannot be m o conf/105100 [patch] no support for lv (latvian) locale o kern/105103 [patch] request to merge pidfile(3) and daemon(8) to 4 a ports/105122 shaun [PATCH] net-im/ejabberd: new UID/GID collides with Sam o conf/105145 rc [PATCH] add redial function to rc.d/ppp o ports/105147 portmgr [PATCH] Fix OPTIONS handling for BATCH=yes p kern/105228 bms [PATCH] if_clone support for tun(4) and tap(4) o kern/105330 ipfw [ipfw] [patch] ipfw (dummynet) does not allow to set q o www/105333 www [PATCH] Base selection in events in libcommon.xsl does o bin/105341 [libpam] [patch] pam_krb5: Add minimum_uid/minimum_gid o docs/105456 keramida [patch] overhaul of the security chapter (14) o ports/105516 obrien [patch] sysutils/asr-utils needs ASR_COMPAT kernel opt f ports/105529 portmgr [PATCH]: add WWWDIR macro to bsd.port.mk o ports/105538 lioux [PATCH] multimedia/ffmpeg-devel: Update to 2006/11/14 o conf/105568 rc [patch] Add more flexibility to rc.conf, to choose "_e p conf/105570 bms [patch] to allow tun(4) in rc.conf 'cloned_interfaces' o ports/105597 skv [patch] make ports/net-mgmt/ng_ipacct NanoBSD-friendly o www/105602 www [Patch] Add support for sidenav in oldnewsflash and ol o kern/105604 [bktr] [patch] add support for Pixelview PlayTV Pro 2 o bin/105614 [patch] setkey(8): Creating NULL encryption ESP SAs wi o ports/105684 bushman [patch] net/nss_ldap pthread_atfork() bug a ports/105883 portmgr [patch] bsd.port.mk: refine some comments about linux o ports/105884 xride [PATCH] net/linphone-base: fix breakage by libosip2 up o conf/106009 rc [patch] Fix pppoed startup script to process multiply o bin/106049 [patch] tftpd(8) - improve -w option to support unique o ports/106136 osa [PATCH] devel/libhoard: update to 3.5.1 o ports/106232 infofarmer [PATCH] Add SDL sound support to games/freeciv* o kern/106255 trhodes [msdosfs] [patch]: correct setting of archive flag o ports/106298 scrappy [PATCH]: remove misleading line /bin/hostname from sys o docs/106425 doc [PATCH] add a HARDWARE-section to ata(4) f ports/106441 mat [PATCH] mail/p5-Mail-SpamAssassin: option to include l o ports/106463 ume [patch] Feature request: please add audacious support o ports/106483 portmgr [PATCH]: embed distfile information in +CONTENTS o i386/106493 i386 [patch] pxeboot uses /pxeroot instead of / o usb/106538 usb [patch] Can not burn DVD on Sony DRX-820UL external US a ports/106557 portmgr [PATCH] Make USE_PHP work after inclusion of bsd.port. o bin/106642 dougb [patch] Allow excluding certain files from mergemaster o kern/106645 [uart] [patch] uart device description in 7-CURRENT is o kern/106646 [nfs] [patch] Pointer incorrectly cast to ulong o bin/106734 [patch] SSE2 optimization for bzip2/libbz2 o ports/106754 lioux [PATCH] dns/py-dnspython: update to 1.5.0 o ports/106806 joerg [patch] raise buffer limit for ports/misc/team o ports/106848 portmgr [PATCH] Mk/bsd.port.mk -- Add support to remove locale o usb/106861 usb [PATCH]: usbdevs update: Add product ACER Zeevo BT-500 o bin/106872 [patch] extattr support for usr.bin/find o conf/106873 rc [patch] rc.d/nfslocking does not properly restart o ports/106896 mharo [PATCH] net/p5-Net-CIDR-Lite: [ipv6 category added] p kern/106999 bms [netgraph] [patch] ng_ksocket fails to clear multicast o ports/107209 delphij [patch] request reserved uid/gid for port spamd + miss o ports/107240 clement [PATCH] www/linkchecker: update to 4.6 o usb/107243 usb [patch] Apacer USB Flash Drive quirk o ports/107324 gnn [PATCH] net/pcs: update to 0.3 f ports/107368 itetcu audio/normalize: [patch] - normalize-mp3 and normalize o usb/107388 usb [PATCH] Add utoppy device from NetBSD a ports/107447 shaun [patch] devel/sdl12 - Add devel/directfb support o conf/107453 dwmalone [patch] calendar.judaic is out of date o bin/107529 [libexec] [patch] ldd(1) aborts abruptly if a shared l p conf/107560 remko [patch] Change matching expression in periodic/securit p docs/107578 keramida [patch] uniq(1) should mention max line length o ports/107599 mnag [patch] Building LigHTTP with webDAV support o usb/107642 usb [patch]Ralink Technology RT2501USB/RT2601USB chipset d o kern/107644 [patch] add support for Intel Pro Wireless 3945 o kern/107665 usb [usb] [patch] uscanner support for epson stylus DX5050 o kern/107707 geom [geom] [patch] add new class geom_xbox360 to slice up o ports/107951 fenner [PATCH] editors/xxe-std: update to 3.5.1 o ports/107957 shaun [PATCH] irc/ircd-ratbox: update to 2.2.4 o kern/108046 obrien [nve] [patch] missing deviceid(s) in nve f ports/108122 itetcu [Patch] ftp/proftpd-mysql - Fixed makefile o ports/108126 kuriyama [patch] Net-SNMP polls the wrong sysctl for the Total o kern/108133 [bktr] [patch] bktr driver doesn't recognize Hauppauge o docs/108142 doc [patch] extattr(2) man page incomplete for extattr_lis o kern/108150 [ste] [patch] ASUS NX1001 (if_ste) hardware support o ports/108311 shaun [PATCH] Restore openpty() use in Expect o docs/108346 doc [patch] tmpnam(3) should note that that TMPDIR env may o ports/108364 gnome [patch] x11-toolkits/gtk20: plist problem with icons d f ports/108378 itetcu [PATCH] games/foobillard: add OPTIONS o ports/108465 mnag [patch] databases/memcached: allow to run with negativ o bin/108523 [patch] daemon(8): support for dropping privileges o ports/108533 alexbl [PATCH] audio/ruby18-xmms2 is broken o ports/108544 mnag [patch] benchmarks/iperf incorrectly marked NO_CDROM f ports/108548 miwi [PATCH] mail/p5-Mail-Ezmlm: update to 0.07.2 f ports/108550 miwi [patch] ysm 7.9.9.1 f ports/108586 clsung [PATCH] textproc/refdb: update to 0.9.8-1 o ports/108597 shaun [PATCH] www/p5-ClearSilver doesn't build on 4.x + upda p conf/108611 remko [patch] An obsolete nice(1) syntax is left in etc/peri f ports/108661 ache [patch] www/lynx-current: add support for SSL SubjectA o ports/108663 delphij [PATCH] mail/spamd: resolv conflict with sa-spamd and o ports/108679 delphij [PATCH] mail/spamlogd fail without PF f ports/108717 clsung [PATCH] devel/astyle: update to 1.20.1 f ports/108744 kuriyama [PATCH] deskutils/egroupware broken, fix errors in Mak o ports/108784 roam security/stunnel: [patch] assign permanent uid and gid o ports/108785 clement [patch] security/dropbear: OPTIONify and minor fix f ports/108788 [patch] sysutils/fusefs-kmod: Add BASE option o kern/108830 remko [ata] [patch] Add support for nForce MCP61 chipset o ports/108847 jdp [PATCH] net/cvsup-mirror allow for cvsupd_flags o kern/108899 [termcap] [patch] termcap update for screen and linux o ports/108978 lioux [PATCH] print/mftrace: update to 1.2.14, take maintain o ports/109001 sobomax [PATCH] net/ortp: update to 0.13.0 o ports/109004 shaun [PATCH] net/GeoIP: update to 1.4.2 o ports/109026 girgen [PATCH] databases/py-PyGreSQL: update to 3.8.1 o ports/109035 danfe [PATCH] audio/soundtouch: fix for amd64 o ports/109056 lioux [PATCH] x11-themes/kde-icons-nuvola: make fetchable o ports/109057 lioux [PATCH] x11-themes/kde-icons-noia: make fetchable o ports/109089 eclipse [PATCH] update java/eclipse-gef: distfile moved o ports/109097 portmgr [PATCH] Mk/bsd.tcl.mk improvement proposal o ports/109111 mich [PATCH] audio/amarok: Fix detection of msdosfs/vfat o ports/109126 scrappy [PATCH] converters/p5-Convert-ASN1: update to 0.21 o ports/109179 anders [PATCH] sysutils/dmidecode: respect NOPORTDOCS f ports/109182 rafan [PATCH] textproc/p5-Text-Netstring: update to 0.07 f ports/109183 rafan [PATCH] graphics/comical: update to 0.4.2 o ports/109211 netchild [PATCH] mail/claws-mail - Use proper "mime.types" file o ports/109214 rushani [Patch] scponly: make port options visible with dialog o ports/109218 shaun [PATCH] devel/sdl: fix pkg-plist w/ NOPORTDOCS o ports/109296 perky [PATCH] databases/py-bsddb3: update to 4.5.0 f ports/109297 gabor [PATCH] Update port: dns/updatedd version 2.6 o ports/109300 danfe [PATCH] audio/libgpod - Update to version 0.4.2 f ports/109301 clsung [PATCH] audio/libmtp o ports/109304 farrokhi [PATCH] www/phpmyfaq: update to 1.6.10 o ports/109309 naddy [PATCH] audio/flac: update to 1.1.4 o ports/109312 mnag [PATCH] devel/py-rbtree: update to 0.8.0 a ports/109314 glewis [patch] bsd.java.mk: remove references to expired port o ports/109330 kde [patch] devel/kdesdk3: use BDB framework o ports/109332 demon [PATCH] www/links: update to 2.1.p26 o ports/109335 lioux [PATCH] sysutils/clockspeed: don't write things after o ports/109337 rafan [PATCH]print/cjk-lyx: Update to version 1.4.4 o ports/109341 kuriyama [PATCH] www/trac-webadmin: update to 0.1.2.r4804 o ports/109346 kuriyama [PATCH] www/trac-accountmanager: update to 0.1.3 f ports/109360 novel [PATCH] audio/mpg123: provide rc_subr script o ports/109374 miwi [PATCH] audio/umix: fix display. f ports/109376 rafan [PATCH] devel/tkp4: use DOCSDIR, DATADIR o ports/109378 perky [PATCH] www/mod_python3: update to 3.3.1 o ports/109392 demon [PATCH] net/rrdtool - can not build with -DNOPORTDOCS f ports/109401 [PATCH] mail/nmh: add CONFLICTS o ports/109402 motoyuki [PATCH] japanese/mh: add CONFLICTS f ports/109407 farrokhi [patch] update port net-mgmt/chillispot to 1.1.0 o bin/109413 [PATCH] top(1) shows at least 50% idle when hyperthrea o kern/109416 [libpam] [patch] pam_group doesn't check login_group m o conf/109418 remko [patch] update src/misc/zoneinfo from 2006n to 2007b o ports/109438 dinoex [patch] emulators/vice Add support for joysticks. o ports/109444 lbr [PATCH] devel/p5-Config-Any: update to 0.06 o ports/109448 demon [PATCH] net/p5-Net-Z3950-ZOOM: update to 1.16 o ports/109461 skv [PATCH] news/p5-POE-Component-Client-NNTP: update to 2 o bin/109478 [libc] [patch] adopt reentrant syslog functions from N o bin/109494 [PATCH] ypserv(8): Add option to bind to specific port o conf/109498 [patch] Enable cloning of tun/tap through rc.conf clon o ports/109501 krion [PATCH] add some configurable vars to mail/exim f ports/109515 clsung [PATCH] japanese/mecab-ipadic : Follow dictionary form f ports/109516 clsung [PATCH] devel/py-pytz: update to 2006p o ports/109526 rafan [PATCH] Update for audio/gnomad2 (to version 2.8.11) f ports/109534 [PATCH] print/jabref: update to 2.2 f ports/109540 clsung [PATCH] www/rubygem-rails: update to 1.2.2 f ports/109546 [PATCH] devel/cvsd: fix startup error when chroot jail o ports/109547 tmclaugh [PATCH] www/py-mechanize: reduce BUILD_DEPENDS f ports/109548 ijliao [PATCH] math/gsl: update to 1.9 o ports/109552 clsung [PATCH] mail/py-spambayes f ports/109554 [PATCH] security/base: update to 1.3.5 (marie) o ports/109555 miwi [PATCH] www/py-pullparser 1053 problems total. From owner-freebsd-bugs@FreeBSD.ORG Mon Feb 26 12:00:58 2007 Return-Path: X-Original-To: freebsd-bugs@FreeBSD.org Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5094616A403 for ; Mon, 26 Feb 2007 12:00:58 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 15AC813C48E for ; Mon, 26 Feb 2007 12:00:58 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1QC0v12012074 for ; Mon, 26 Feb 2007 12:00:57 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1QBWmEa009139 for freebsd-bugs@FreeBSD.org; Mon, 26 Feb 2007 11:32:48 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 26 Feb 2007 11:32:48 GMT Message-Id: <200702261132.l1QBWmEa009139@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: linimon set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list Cc: Subject: Current problem reports sorted by tag X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Feb 2007 12:00:58 -0000 Problem reports for tag '2tb': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/18874 [2TB] 32bit NFS servers export wrong negative values t o kern/41723 [2TB] on 1TB fs, copying files to filesystem causes "i p bin/56606 [2TB] df cannot handle 2TB NFS volumes o bin/66984 [2TB] [patch] teach sysinstall about larger disks p kern/67546 [2TB] Coredumps > 2Gb do not work (on 64bits platforms o bin/74567 [2TB] [patch] du doesn't handle sizes >1TB o kern/79251 geom [2TB] newfs fails on 2.6TB gbde device o kern/84589 [2TB] 5.4-STABLE unresponsive during background fsck 2 o bin/88872 [2TB] Error 36 while sysinstall tries to create / part o bin/88873 [2TB] gpt create fails "bogus map" "unknown error: 0" o bin/107829 [2TB] fdisk(8): invalid boundary checking in fdisk / w 11 problems total. Problem reports for tag 'aac': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/81887 scsi [aac] Adaptec SCSI 2130S aac0: GetDeviceProbeInfo comm o kern/87191 scottl [aac] [patch] aac(4) panics immediately with INVARIANT o i386/87364 scottl [aac] aac controller stopped working between BETA5 and o kern/88718 [aac] [timeout] unable to install on RAID 5 and FreeBS o kern/91910 scottl [aac] aac driver hangs on Dell PE800 with CERC SATA co o kern/93414 scottl [aac] [patch] compilation problem in aac_ioctl header o kern/93903 [aac] aac driver cannot shutdown controller causing da o kern/103615 scottl [aac][patch] aac(4) update to the last version availab 8 problems total. Problem reports for tag 'acpi': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/72179 i386 [acpi] [patch] Inconsistent apm(8) output regarding th o kern/74868 [acpi] ACPI enabled in 5.3 Release make Kernel reboot f i386/85851 remko [boot] [acpi] system hangs on during booting the machi o i386/89288 i386 [acpi] DMA error while booting with acpi enable o kern/89411 [acpi] acpiconf bug o kern/94939 [acpi] [patch] reboot(8) fails on IBM / Intel blades o i386/97468 acpi [acpi] ACPI on ASUS A7V hangs on shutdown -p (power of o kern/98171 acpi [acpi] ACPI 1304 / 0501 errors on Acer 5024WLMi Laptop o kern/102783 [acpi] hw.acpi has thermal controls backwards when ext o kern/103125 [acpi] ACPI bad reads/writes occur since upgrading fro o kern/103365 acpi [acpi] acpi poweroff doesn't work with geli device att o kern/108017 acpi [acpi]: Acer Aspire 5600 o kern/108695 acpi [ACPI]: Fatal trap 9: general protection fault when in 13 problems total. Problem reports for tag 'adw': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/22417 gibbs [adw] [patch] advansys wide scsi driver does not suppo 1 problem total. Problem reports for tag 'agp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/57631 jhb [agp] [patch] boot failing for ALi chipsets f i386/59854 anholt [agp] [panic] System panics when AMD 762 AGP is loaded a kern/62906 peadar [agp] [patch] AGP misconfigures i845G chipset, causing f i386/68518 remko [agp] [hang] hangs while loading 82443BX agp during bo a kern/72224 anholt [agp] umass devices broken by DRM (AGP issue?) o kern/84015 [agp] [hang] Nforce3-250Gb freezes on FreeBSD-6 beta1 o kern/89271 [radeon][agp][hang] X.org hangs when heavily using Rad p kern/93676 anholt [agp] Yet another i915G drm/agp issue f kern/97616 anholt [agp] 6.1-RELEASE FreeBSD does not recognize VIA K8M80 9 problems total. Problem reports for tag 'ahc': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/9927 gibbs [ahc] the ahc driver doesn't correctly grok switched S s kern/45568 gibbs [ahc] ahc(A19160) pci parity error o kern/74627 scsi [ahc] [hang] Adaptec 2940U2W Can't boot 5.3 o kern/92798 scsi [ahc] SCSI problem with timeouts o kern/99954 scsi [ahc] reading from DVD failes on 6.x (regression) 5 problems total. Problem reports for tag 'ahd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/73646 [ahd] I/O performance: with/without MEMIO option o kern/76178 scsi [ahd] Problem with ahd and large SCSI Raid system o kern/105533 [ahd] adaptec 29320 causes panic with over 4GB 3 problems total. Problem reports for tag 'altq': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/94182 [altq] [feature request] altq support for vlan driver 1 problem total. Problem reports for tag 'amd': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/39425 [amd] Auto mounted directory was not found at boot tim 1 problem total. Problem reports for tag 'amd64': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/89549 amd64 [amd64] nve timeouts on 6.0-release o amd64/89550 amd64 [amd64] sym0: VTOBUS failed (6.0 Release) 2 problems total. Problem reports for tag 'amr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/71771 [amr] Hang during heavy load with amr raid controller o kern/72433 [amr] [patch] AMR raid, amrreg.h struct amr_enquery3 a o kern/76848 [amr] amr hangs o kern/86411 scottl [amr] Very low performance of amr(4) under FreeBSD-6.0 o kern/94139 scottl [amr] [regression] amr broken with LSILogic MegaRAID S o kern/99529 [amr] DELL PowerEdge 2600 with streamer PowerVault 100 6 problems total. Problem reports for tag 'an': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/36170 [an] [patch] an(4) does an_init() even if interface is o kern/69158 [an] Cisco MPI350 wireless card problems related to ir o kern/75407 [an] an(4): no carrier after short time o kern/85886 [an] an0: timeouts with Cisco 350 minipci 4 problems total. Problem reports for tag 'apic': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/81000 [apic] Via 8235 sound card worked great with FreeBSD 5 1 problem total. Problem reports for tag 'ar': S Tracker Resp. Description -------------------------------------------------------------------------------- f i386/57043 remko [ar] [hang] ar driver with 2 port PCI card locks up wh o kern/93771 sos [ar] [panic] atacontrol status ar1 causes panic o kern/98804 [ar] VIA V-RAID metadata mis-read o kern/101926 [ar] 6.1-STABLE crashes under heavy disk I/O and acces 4 problems total. Problem reports for tag 'arcmsr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/101045 [arcmsr] [patch] Updates to arcmsr(4) 1 problem total. Problem reports for tag 'asr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/25950 obrien [asr] Bad drives on asr look zero-length and panic on o kern/26048 obrien [asr] 4.3-RC: SMP and asr driver don't work together o kern/88047 [asr] [panic] 6.0-RC1 reboots with SMP and asr o amd64/91405 amd64 [asr] [panic] Kernel panic caused by asr on 6.0-amd64 4 problems total. Problem reports for tag 'ata': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/61960 sos [ata] [patch] BigDrive support for PC-98 architecture o kern/68315 [ata] [patch] atacontrol(8) addspare for 4.x f i386/71428 remko [ata] [dma] DMA does not work on VIA 82C586 [4.10] f i386/71586 remko [ata]: FreeBSD 5.3-BETA3 #3 hang during boot on HP Vec o i386/74658 i386 [ata] ATAPI CD not recognized after booting FreeBSD 4. o i386/75090 i386 [ata] READ_BIG errors with Sony CRX1611 o alpha/75317 alpha [ata] [busdma] ATA DMA broken on PCalpha f kern/76080 [ata] [panic] "bio_completed .. greater than bio_lengt o i386/78517 i386 [ata] WRITE_DMA and READ_DMA timeouts with ATI RX330 c o kern/78758 sos [ata] [patch] Add support for re-sizing ATA disks o kern/79783 sos [ata] hw.ata.atapi_dma=1 reduces HDD writing transfer o kern/88714 sos [ata] cannot record CD-R since 6.0 (regression) o i386/89353 i386 [ata] invalid disk controller recognition of intel ICH f kern/89885 remko [ata] Writing to S-ATA HDD in DMA mode fails o amd64/89968 amd64 [ata] Asus A8N-E MediaShield RAID problem (read-only s o kern/90206 [ata] [crash] Server reboot after "FAILURE - out of me o kern/90820 [ata] [burncd]: aborting burncd may keep drive "locked o i386/90839 i386 [ata] burncd gets error on CDRIOCFIXATE with HL-DT-ST s kern/91290 sos [ata] ata(4) error on 7.0-CURRENT-20051229-SNAP-PC98 o kern/91723 [ata] IDE corruption on ICH controller, affects the ch o i386/91761 i386 [ata] NEC_DVD-RW + system start: semaphore timeout o kern/91914 [ata] Disk System Crashes - Raid Disk o kern/92238 sos [ata] Spurious "atapci1: failed to enable memory mappi o kern/93885 sos [ata] ata(4) failure: SETFEATURES SET TRANSFER MODE se o i386/93923 i386 [ata] FreeBSD Install, Sil3112: Cannot dump. No dump d o kern/94155 [ata] 6.1 CF reader problem: "ad1: FAILURE - SETFEATUR o i386/94911 i386 [ata] ata regression with DOM-IDE o kern/95023 [ata] Hard Drives not recognized by 6.0 Current on IC7 f kern/95260 sos [ata] Wrong array detection for LSI v3 SATA MegaRAID f kern/95344 remko [ata] [burncd]: burncd(8) failed to fixate cd after la o kern/96171 [ata] burncd (ATA driver) fails to write in vcd mode o i386/96302 i386 [ata] nVidia nForce CK804 SATA300 controller not recog o kern/97228 sos [ata] [patch] Support new ATA ICH7 controller o i386/97263 i386 [ata] FreeBSD only detects first drive f i386/97589 remko [ata] FAILURE - READ_DMA (regression from 5.4) o kern/97996 [ata] DMA is broken for VIA 82C596B UDMA66controller o kern/98388 [ata] FreeBSD 6.1 - WDC WD1200JS SATA II disks are see o kern/98743 [ata] ATA panic and or timeout on IBM/Lenovo S50 with o i386/98765 i386 [ata] timeouts on sata drive f kern/98869 remko [ata] [dvdr+tools]: can't burn with Lite-ON SOHW-832S f kern/98962 remko [ata] [burncd]: [patch] writing >1 session on ATAPI CD o kern/99017 sos [ata] [patch] FreeBSD versions above 5.3 panic if atap o kern/99088 [ata] Critical Problems with VIA 8251 SATA2/RAID Contr o kern/99567 [ata] Powerup of sleeping IDE drives causes system reb o kern/99652 [ata] nVidia controller hangs w/ 2 drives. f kern/99729 sos [ata] [patch] Bug in ata (ata-all.c) driver o i386/101667 i386 [ata] ATA problems when power management is on o kern/101980 remko [ata] [patch] Intel 631xESB ata and ichsmb support (i3 o kern/102210 [ata] reboot system makes rebuilding array ready (ICH7 o kern/102211 [ata] detach raid member and reboot will cause panic ( s i386/103624 i386 [ata] [dell] Problem installing on Dell Powervault 745 o kern/103883 [ata] DMA is not defaulted on WDMA device o i386/104572 i386 [ata] issues with detecting HDD on Intel Q965 Express o kern/104799 [ata] Several ata observations ICH8 BIOS o kern/104950 [ata] no support for SATA controller Initio INIC-1622T o kern/106413 [ata] problems with ATA on Intel Desktop Board DG965RY o kern/106431 sos [ata] [patch] Inform user of ata RAID5 acting as RAID0 o kern/108379 [ata] Secondary sata drive not detected by FreeBSD 6.2 o kern/108830 remko [ata] [patch] Add support for nForce MCP61 chipset o kern/109044 [ata] Bizarre problem with Pioneer 111D on i965 board o kern/109270 sos [burncd] [atapi] [ata] [patch] patch for burncd blank 61 problems total. Problem reports for tag 'atapicam': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/86503 amd64 [atapicam] [panic] k3b crash the system like hardware o kern/95407 [atapicam] atapicam, cd and /etc/rc.d/devfs problem o kern/100516 [atapicam] atapicam with ITE IT8212F crashes the syste f kern/103831 remko [atapicam]: 6.2 BETA1: A kernel with atapicam stops at o kern/106490 [atapicam] atapicam fails with ATAPI-CD/DVD drives att 5 problems total. Problem reports for tag 'atapicd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/104270 sos [atapicd] [patch] burncd failure due to acd_get_progre 1 problem total. Problem reports for tag 'ath': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/87758 [ath] [hang] Reboot problem with atheros wireless card o kern/88082 [ath] [panic] cts protection for ath0 causes panic o kern/93886 [ath] Atheros/D-Link DWL-G650 long delay to associate o sparc/94483 sparc64 [ath] ath_hal does not work on 6-release/sparc64 o kern/97458 [ath] ath driver hangs up system during reboot f kern/99036 sam [ath] Long association time for 11b access points with o kern/100649 sam [ath] Long association time for 11b APs with ath(4) in o kern/105348 [ath] ath device stopps TX o kern/107279 [ath] panic: ath_start: attempted use of a free mbuf! 9 problems total. Problem reports for tag 'ati': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/106955 remko [ati]: ATI radeon x1600 not recognized by the system 1 problem total. Problem reports for tag 'atm': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/108468 remko [atm] Stop in /usr/src/sys/modules/netgraph/atm/atmbas 1 problem total. Problem reports for tag 'aue': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/51009 [aue] [patch] buggy aue driver fixed. o kern/61300 [aue] [patch] Enabling HomePNA PHY on aue(4) for HomeP f kern/71280 [aue] aue0 device (linksys usb100tx) doesn't work in 1 o usb/80010 usb [aue] [patch] add support for the AEI USB to LAN adapt o kern/91311 [aue] aue interface hanging 5 problems total. Problem reports for tag 'bce': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/100858 davidch [bce] Broadcom bce driver and SMP hangup f kern/103059 [bce] [patch] "Error mapping mbuf into TX chain!" (ten o kern/107850 [bce] bce driver link negotiation is faulty o kern/108542 net [bce]: Huge network latencies with 6.2-RELEASE / STABL 4 problems total. Problem reports for tag 'bfe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/72296 [bfe] bfe0: discard oversize frame (ether type 5e0 fla o i386/79784 i386 [bfe] Broadcom BCM4401 : no carrier o kern/95391 [bfe] [patch] minor if_bfe error o kern/96030 [bfe] [patch] Install hangs with Broadcomm 440x NIC in o kern/98015 [bfe] [patch] bfe(4): double free in error handling pa o kern/99216 [bfe] [patch] make bfe(4) always detect LINK_DOWN even o i386/104349 i386 [bfe] Panic while uploading data via bfe network inter 7 problems total. Problem reports for tag 'bge': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/44500 [bge] [patch] bge(4): add AC1001 Gigabit NIC as workin f i386/45773 remko [bge] Softboot causes autoconf failure on Broadcom 570 f kern/46484 [bge] [panic] System panics upon configuration of bge f kern/53920 andre [bge] sluggish TCP connection f kern/61109 [bge] bge on TYAN AMD762-based Thunder/Tiger passes on o kern/73538 [bge] problem with the Broadcom BCM5788 Gigabit Ethern o kern/79143 [bge] Broadcom NIC driver do not work for IPMI o kern/79324 [bge] Broadcom bge chip initialization failure o kern/94162 [bge] 6.x kenel stale with bge(4) f kern/94307 [bge] kernel panics when passing trafffic through bge1 o kern/94424 [bge] BGE5721 or BGE5750? o i386/94850 i386 [bge] FreeBSD 6.0 on Fujitsu BX300, networking doesn't s kern/94863 [bge] [patch] hack to get bge(4) working on IBM e326m o i386/96382 i386 [bge] In 6.1-RC1 the bge driver does not reliably work f kern/96806 glebius [bge] [patch] Correction of kernel panic with Broadcom o kern/100410 [bge] bge driver disables access to shared iLo on HP D o kern/104485 [bge] Broadcom BCM5704C: Intermittent on newer chip ve o kern/104862 [bge] BCM5704 only works at 10Mbit o kern/105005 [bge] BCM5754 is detected as BCM5787 and panics the sy o kern/106974 [bge] packet loose and linkup problem p kern/107257 jkim [bge] unrecognized Broadcom PHY causes panic from bge 21 problems total. Problem reports for tag 'bktr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/14166 [bktr] [patch] AVER TVPhone o kern/32812 [bktr] bktr driver missing tuner for eeprom detection. o kern/35289 [bktr] [patch] Brooktree device doesnt properly signal o kern/36415 [bktr] [patch] driver incorrectly handles the setting a kern/36451 [bktr] [patch] Japan IF frequency is incorrect o kern/37326 [bktr] smbus/bktr crash when omitting "device iicsmb" s kern/48279 [bktr] Brooktre878 may cause freeze o kern/56245 [bktr] Distorted and choppy video with bktr-driver on o kern/57603 [bktr] bktr driver: freeze on SMP machine o kern/59289 [bktr] [patch] ioctl METEORGBRIG in bktr_core.c forget f kern/60599 multimedia [bktr] [partial patch] No sound for ATI TV Wonder (ste o kern/79066 [bktr] bktr(4) eating about 10% CPU load once it was u o kern/81180 [bktr] bktr(4) driver cannot capture both audio and vi o kern/89553 [bktr] [patch] going from 5.3 -> 6.0 winTV card not pr o kern/94369 [bktr] [patch] Patch to support Leadtek WinFast Tv2000 o kern/102549 [bktr] [patch] fix Pixelview PlayTV Pro 2 on bktr o kern/105604 [bktr] [patch] add support for Pixelview PlayTV Pro 2 o kern/108133 [bktr] [patch] bktr driver doesn't recognize Hauppauge 18 problems total. Problem reports for tag 'bluetooth': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/99200 [bluetooth] SMP-Kernel crashes reliably when Bluetooth f bin/102523 emax [bluetooth] [patch] Virtual serial port server code fo 2 problems total. Problem reports for tag 'boot0': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/37380 jhb [boot0] [patch] boot0 partition list is outdated o i386/70531 i386 [boot0] [patch] boot0 hides Lilo in extended slice 2 problems total. Problem reports for tag 'boot1': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/91871 i386 [boot1] [patch] boot1: jump to 0xf000:0xfff0 instead o 1 problem total. Problem reports for tag 'boot2': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/35262 [boot2] [patch] generation of boot block for headless 1 problem total. Problem reports for tag 'bootinst': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/22914 [bootinst] bootinst messages are not updated 1 problem total. Problem reports for tag 'bootloader': S Tracker Resp. Description -------------------------------------------------------------------------------- f i386/65124 remko [bootloader] Unable to disable TERM_EMU cleanly 1 problem total. Problem reports for tag 'bootmgr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/38826 [bootmgr] RFE: BootMgr should provide more identifying 1 problem total. Problem reports for tag 'bootp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/82491 [bootp] [patch] bootpd shouldn't ignore requests 1 problem total. Problem reports for tag 'bpf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/16644 [bpf] [patch] Bad comparison expression in bpf_filter. o kern/88268 [bpf] yet another null pointer in bpf code o kern/89752 [bpf] [patch] bpf_validate() needs to do more checks 3 problems total. Problem reports for tag 'bridge': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/80572 [bridge] bridge/ipfw works intermittantly. o kern/82919 [bridge] [patch] Bridge configuration update will cras s kern/86361 thompsa [bridge] bridge(4) does not work with VLAN trunks 3 problems total. Problem reports for tag 'bsd.cpu.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/74454 i386 [bsd.cpu.mk] [patch] Adding VIA Eden family 1 problem total. Problem reports for tag 'burncd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/75875 remko [burncd]: acd0: FAILURE - READ_BIG ILLEGAL REQUEST asc f kern/77753 remko [burncd]: DVD-writer fails to fixate DVD f kern/79255 remko [burncd]: Fixating CDRW with burncd(8) hangs system (D o kern/90820 [ata] [burncd]: aborting burncd may keep drive "locked f kern/95344 remko [ata] [burncd]: burncd(8) failed to fixate cd after la f kern/98962 remko [ata] [burncd]: [patch] writing >1 session on ATAPI CD o kern/109270 sos [burncd] [atapi] [ata] [patch] patch for burncd blank 7 problems total. Problem reports for tag 'bus': S Tracker Resp. Description -------------------------------------------------------------------------------- f i386/46113 remko [bus] [patch] busspace bugs in parameter checking 1 problem total. Problem reports for tag 'busdma': S Tracker Resp. Description -------------------------------------------------------------------------------- o alpha/75317 alpha [ata] [busdma] ATA DMA broken on PCalpha o i386/76944 i386 [busdma] [patch] i386 bus_dmamap_create() bug o amd64/87977 amd64 [busdma] [panic] amd64 busdma dflt_lock called (by ata o amd64/93961 amd64 [busdma] Problem in bounce buffer handling in sys/amd6 4 problems total. Problem reports for tag 'cam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/17504 ken [cam] [patch] Another Micropolis Synchronize Cache Pro s i386/17662 gibbs [cam] cam_xpt.c incorrectly disables tagged queuing fo s kern/28840 gibbs [cam] Possible interrupt masking trouble in sys/cam/ca s bin/57088 [cam] [patch] for a possible fd leak in libcam.c s kern/72041 [cam] [hang] Deadlock when disk is destroyed while use o kern/76893 [cam] [patch] Fatal divide in booting processes with B s kern/85975 [cam] devfs does not create entries when removable med o kern/92751 [cam] [reboot] 5.4 crashes after camcontrol devlist o kern/103702 scsi [cam] [patch] ChipsBnk: Unsupported USB memory stick o kern/107495 [cam] [patch] Fix long wait before WD My Book 250GB (U 10 problems total. Problem reports for tag 'cardbus': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/84954 imp [CARDBUS] cbb alloc res fail (with hw.cardbus.debug=1 o kern/92966 imp [cardbus] cardbus.ko loading failed 2 problems total. Problem reports for tag 'carp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/92776 glebius [carp] kernel-crash using carp f kern/93448 glebius [carp] CARP advskew not propagated to VRRP packets 2 problems total. Problem reports for tag 'cbb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/96286 [cbb] [panic] TI1131 PCI CardBus Bridge: driver cbb le 1 problem total. Problem reports for tag 'ciphy.c': S Tracker Resp. Description -------------------------------------------------------------------------------- a amd64/92527 amd64 [ciphy.c] ][patch] no driver for "CICADA VSC 8201 Giga 1 problem total. Problem reports for tag 'coda': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/80031 [coda] [patch] Remove insque/remque from kernel land o kern/95891 [coda] [panic] kernel panic when coda6_client 2 problems total. Problem reports for tag 'crypto': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/43611 [crypto] [patch] static-ize some symbols in sys/crypto o kern/66029 [crypto] [patch] MD5 alignment problem on a TriMedia p o kern/91407 [crypto] [panic] Kernel panic when heavily loading cry o bin/93776 [crypto] [patch] SHA256_Update / SHA512_Update fail to o kern/106275 [/dev/random] [crypto] Hifn 7955 on Soekris Engineerin 5 problems total. Problem reports for tag 'cue': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/75710 [cue] cue0 device configuration causes kernel panic 1 problem total. Problem reports for tag 'cx': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/66348 rik [cx] FR mode of cx (Cronyx Sigma) does not work for 4. 1 problem total. Problem reports for tag 'dc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/30052 mbr [dc] [patch] dc driver queues outgoing pkts indefinite o kern/50574 mbr [dc] dc driver incorrectly detects ADMtek chip model o kern/52980 mbr [dc] [patch] dc driver fails to init Intel 21143 Cardb o kern/55793 [dc] Flaky behavior of if_dc when initializing a LNE10 o kern/62333 [dc] syslog: kernel: dc0: discard oversize frame (ethe o kern/79262 [dc] Adaptec ANA-6922 not fully supported o kern/82070 [dc] Not all dc(4) devices can be used: MII without an o sparc/92033 sparc64 [dc] dc(4) issues on Ultra10 o kern/92279 [dc] Core faults everytime I reboot, possible NIC issu o kern/94196 [dc] if_dc panics on bad hardware o i386/96397 i386 [dc] strange behaveour of the dc driver on divicom dm9 11 problems total. Problem reports for tag 'ddb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/100802 [ddb] [patch] panic in ddb mode if sending signal '0' 1 problem total. Problem reports for tag 'de': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/15542 [de] de(4) suddenly stops working a kern/55542 andre [de] [patch] discard oversize frame (ether type 800 fl o kern/71450 [de] de(4): MAC address change on 21040 "Tulip" Ethern o kern/72293 [de] de(4) NIC performance degradation with debug.mpsa 4 problems total. Problem reports for tag 'devfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/85751 [devfs] [panic] panic in devfs_setattr() when running o kern/87836 [devfs] If using ATAPICAM with cd(dvd)rw without media o conf/91342 [devfs] Errors in devfs.rules files don't get logged 3 problems total. Problem reports for tag 'dhcp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/71045 [dhcp] DHCP-Request is sets other device's ip to null, 1 problem total. Problem reports for tag 'digi': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/55018 andre [digi] [patch] Digiboard PC/Xem fails to initialize wh o kern/74281 [digi] digi(4): Digiboard PCI Xem (64-ports) detection o kern/82227 [digi] Xem: chained concentrators not recognised o kern/83254 [digi] driver can't init Digiboard PC/4e 4 problems total. Problem reports for tag 'diskless': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/87586 [diskless] [panic] Unable to use networked swap in 6.0 1 problem total. Problem reports for tag 'dns': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/54189 [dns] resolver should resolve hostnames with underscor o kern/103464 [dns] jail networking failures to 127.0.0.1 only 2 problems total. Problem reports for tag 'drm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/82064 anholt [drm] DRM not working with SMP o kern/87653 anholt [drm] ATI Radeon Mobile X600SE not detected by kernel o kern/92381 [drm] i915 drm module unuseable by X.org 6.9.0 for GM8 o kern/94823 [drm] DRM doesnt't work with i915.ko 4 problems total. Problem reports for tag 'dummynet': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/76539 [dummynet] [patch] ipnat + dummynet on output on same 1 problem total. Problem reports for tag 'ed': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/9570 dfr [ed] [patch] ed(4) irq config enhancement o i386/12088 imp [ed] [patch] ed(4) has minor problem with memory alloc o kern/80853 [ed] [patch] add support for Compex RL2000/ISA in PnP o kern/84202 [ed] [patch] Holtek HT80232 PCI NIC recognition on Fre o kern/85493 imp [ed] [patch] OLDCARD can't probe ed driver o kern/93393 imp [ed] [patch] Add Micro Research PCMCIA LAN Adapter MR1 o amd64/95282 amd64 [ed] fix ed for RELENG_5 amd64 so that it has network 7 problems total. Problem reports for tag 'ef': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/85086 wkoszek [ef] [patch] Locking fixes for ef(4) (+removes mem. le 1 problem total. Problem reports for tag 'em': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/72970 yongari [em] em(4) driver can hang when mbuf starvation occurs s kern/80932 [em] [patch] Degraded performance of em driver s kern/81147 linimon [em] [patch] em0 reinitialization while adding aliases f kern/86124 remko [em] dell 1850 pro/1000 slow (em problem? SMP problem? p kern/86306 yongari [em] [patch] if_em.c locks up while trying to send a h o amd64/92337 amd64 [em] FreeBSD 6.0 Release Intel Pro 1000 MT em1 no buff f kern/94380 [em] Laptop panics, related to networking after resume f kern/94446 remko [em]: FreeBSD 6.0 crash with forkbomb (regression) o i386/98366 i386 [em] Intel PRO/1000 MT Dual PCI-X: simulatenious 1000 o kern/101226 jfv [em] Access to IPMI module is lost when the em driver o i386/102562 i386 [em] no traffic pass through a em card after approx. a o kern/103256 [em] em0: watchdog timeout -- resetting (6.1-STABLE) f i386/104705 remko [em] em1: The EEPROM Checksum Is Not Valid o kern/104978 jfv [em] jumbo frames has been broken in RELENG_6 by last o i386/105708 i386 [em] em driver failed to initialize on thinkpad X60 15 problems total. Problem reports for tag 'emu10k1': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/107516 multimedia [emu10k1] - skips, clicks and lag after a day of heavy 1 problem total. Problem reports for tag 'ep': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/20958 mdodd [ep] ep0 lockup with ifconfig showing OACTIVE o kern/74920 [ep] [panic] 3Com 3C509-Combo Etherlink III panics sys 2 problems total. Problem reports for tag 'ex': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/43916 [ex] [hang] Olicom OC-2220 (PC-card) hangs on ifconfig o kern/52623 [ex] [patch] IRQ error in driver for the Intel EtherEx o i386/85423 i386 [ex] ex(4) does not correctly recognize NIC in PnP mod 3 problems total. Problem reports for tag 'ext2fs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/77826 [ext2fs] ext2fs usb filesystem will not mount RW o kern/104133 [ext2fs] EXT2FS module corrupts EXT2/3 filesystems o kern/105093 [ext2fs] [patch] ext2fs on read-only media cannot be m 3 problems total. Problem reports for tag 'fd': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/103862 [fd] Error with fdformat on -CURRENT o kern/106783 [fd] umount of a floppy disk results in a reboot 2 problems total. Problem reports for tag 'fdc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/66876 [fdc] [patch] Cannot extract tar(1) multi-volume archi o kern/66960 [fdc] [patch] filesystems not unmounted during reboot o kern/73961 [fdc] floppy disk drive performance problem [new in 5. o kern/74827 [fdc] Problem writing data to floppies [5.3-specific] s kern/75233 [fdc] breaking fdformat /dev/fd0 resets device permiss o i386/77443 i386 [fdc] can't access floppy -- regression on 5.3 o kern/84799 [fdc] [patch] can't read beyond track 0 on fdc (IBM th o kern/91476 [fdc] [patch] floppy drive doesn't work in MS Virtual o kern/97381 [fdc] [patch] Patch to add zero-sector and spanned-sid o kern/97517 [fdc] Floppy device lost permissions when active flopp o kern/103841 [fdc] [patch] fdc(4) does not work (regression) o kern/104079 [fdc] kldunload fdc.ko leads to panic: mutex Giant own 12 problems total. Problem reports for tag 'fdescfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/95711 [fdescfs] rm on fdescfs causes panic: lockmgr: locking 1 problem total. Problem reports for tag 'fe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/88576 imp [fe] revision 1.31 to if_fe_pccard.c breaks NE200T fun 1 problem total. Problem reports for tag 'ffs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/92272 [ffs] [hang] Filling a filesystem while creating a sna 1 problem total. Problem reports for tag 'fifo': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/76144 [fifo] poll doesn't set POLLHUP when FIFO is closed o kern/76525 [fifo] select() hangs on EOF from named pipe (FIFO) o kern/94772 [fifo] [patch] FIFOs (named pipes) + select() == broke 3 problems total. Problem reports for tag 'firewire': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/74238 firewire [firewire] fw_rcv: unknown response; firewire ad-hoc w o kern/93083 [firewire] Detach of Firewire Harddisk not recognied p o kern/95077 firewire [firewire] fatal trap 19 at fwohci_pci_init o kern/97208 [firewire] System hangs / locks up when a firewire dis o kern/100356 [firewire] [patch] Non-maskable interrupt while in ker 5 problems total. Problem reports for tag 'fpa': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/101061 [fpa] fea/fpa (DEC FDDI NIC) driver causes kernel pani 1 problem total. Problem reports for tag 'fwip': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/85434 firewire [fwip] fwip (IP over firewire) doesn't work with polli 1 problem total. Problem reports for tag 'fxp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/12543 [fxp] [patch] cumulative error counters for fxp(4) f kern/40274 [fxp] "fxp: device timeout" errors during heavy, susta o kern/80784 mux [fxp] fxp gives device timeouts o amd64/82425 amd64 [fxp] fxp0: device timeout, fxp interface dies on 5.4/ o kern/85258 mux [fxp] changing promisc mode on nic can lead to kernel o kern/87194 [fxp] fxp(4) promiscuous mode seems to corrupt hw-csum o kern/92675 [fxp] [patch] fxp(4) unable to recover from occasional o kern/103332 mux [fxp] fxp driver does not work correctly on Intel 8255 8 problems total. Problem reports for tag 'gbde': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/76538 geom [gbde] nfs-write on gbde partition stalls and continue o kern/87544 geom [gbde] mmaping large files on a gbde filesystem deadlo 2 problems total. Problem reports for tag 'geli': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/98742 pjd [geli] IO errors while using geli f kern/105390 geom [geli] filesystem on a md backed by sparse file with s 2 problems total. Problem reports for tag 'geode': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/81358 remko [geode] [patch] add PC Engines WRAP support o i386/98215 i386 [geode] regression: FreeBSD can no longer boot Geode G 2 problems total. Problem reports for tag 'geom': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/78114 phk [geom] [patch] Solaris/x86 label structures for GEOM ( o kern/83464 geom [geom] [patch] Unhandled malloc failures within libgeo o kern/84556 geom [geom] GBDE-encrypted swap causes panic at shutdown o bin/84634 fjoe [geom] [patch] new utility to control GEOM uzip class f kern/87986 pjd [geom] [hang] gmirror and quota will hang the OS o amd64/89546 amd64 [geom] GEOM error o kern/94632 geom [geom] Kernel output resets input while GELI asks for f kern/95771 pjd [geom] geom mirror provider destroyed (machine crashed o kern/98034 geom [geom] dereference of NULL pointer in acd_geom_detach o kern/104389 geom [geom] [patch] sys/geom/geom_dump.c doesn't encode XML o kern/107707 geom [geom] [patch] add new class geom_xbox360 to slice up 11 problems total. Problem reports for tag 'geom_mirror': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/90582 geom [geom_mirror] [panic] Restore cause panic string (ffs_ 1 problem total. Problem reports for tag 'geom_vfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/89102 geom [geom_vfs] [panic] panic when forced unmount FS from u 1 problem total. Problem reports for tag 'gif': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/95532 [gif] if_gif has artificial limitations 1 problem total. Problem reports for tag 'gpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o ia64/85772 ia64 [gpt] gpt (geom_) needs to adopt g_ctl 1 problem total. Problem reports for tag 'gre': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/47813 [gre] pseudo-device gre(4) doesn't appear to work with o kern/60183 sobomax [gre] [patch] No WCCPv2 support in gre o kern/85320 [gre] [patch] possible depletion of kernel stack in ip 3 problems total. Problem reports for tag 'hal': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/108078 danfe [hal]: Periodic crashes of system at working HAL 1 problem total. Problem reports for tag 'handbook': S Tracker Resp. Description -------------------------------------------------------------------------------- o docs/107378 doc [handbook] Handbook Installation chapter needs fixing 1 problem total. Problem reports for tag 'headers': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/44365 [headers] [patch] introduce ulong and unchar types o kern/45793 [headers] [patch] invalid media subtype aliases in if_ o kern/68081 [headers] [patch] sys/time.h (lint fix) o kern/74159 [headers] [patch] fix warnings concerned with header f o kern/84981 [headers] [patch] header protection for o kern/42065 [kernel] [patch] kern.ps_showallprocs has no effect on o kern/42274 [kernel] [patch] Convert defined variable into tuneabl o kern/43577 [kernel] [patch] feature request: new kernel option SH o kern/48471 pjd [kernel] [patch] new feature: private IPC for every ja o kern/50526 [kernel] [patch] update to #! line termination s kern/50827 [kernel] [patch] new feature: add sane record locking o kern/53447 alfred [kernel] poll(2) semantics differ from susV3/POSIX o kern/54604 pjd [kernel] [patch] make 'ps -e' procfs-independent o kern/57722 [kernel] [patch] uidinfo list corruption o kern/58803 [kernel] [patch] kern.argmax isn't changeable even at o kern/60550 silby [kernel] [patch] hitting process limits produces sub-o o kern/61497 ups [kernel] [patch] __elfN(map_insert) bug o kern/64196 [kernel] [patch] remove the arbitrary MAXSHELLCMDLEN o kern/68317 [kernel] [patch] on soft (clean) reboots clean dmesg o o kern/69064 [kernel] [patch] No multiple ip4/6's could assigned to o sparc/72998 sparc64 [kernel] [patch] set_mcontext() change syscalls parame s kern/79339 [kernel] [patch] Kernel time code sync with improvemen o kern/81588 phk [kernel] [patch] Devices with SI_CHEAPCLONE flag don't o kern/85651 [kernel] [patch] debugging code to show entries in eve o kern/85657 [kernel] [patch] capture and expose per-CPU time accou o kern/86290 jeff [kernel] [patch] minor optimizations + cleanup to vrel o kern/86336 rwatson [kernel] LOR in kern/uipc_usrreq.c and kern/kern_descr o kern/87990 [kernel] [patch] SMP Race Condition in kdb_enter/kdb_e o kern/88336 [kernel] [patch] setkey(8) -D fails to report all SAs o kern/91414 emaste [kernel] [patch] Polling for devices other than NICs o kern/92023 [kernel] 'options DEVICE_POLLING' makes loadavg wrong o kern/93331 [kernel] [patch] broken asm in kernel o kern/93755 imp [kernel] [patch] 2 copy'n'paste-os in sys/vm/phys_page o kern/93887 [kernel] cpu_spinwait calls missing in subr_smp.c o kern/94413 [kernel] wine fails when increasing kern.maxdsiz o kern/94480 [kernel] [patch] bread(3) & bwrite(3) can crash under o kern/95368 [kernel] [patch] Test for race between callout_drain() o kern/96429 [kernel] [patch] kern_linker.c hardcodes "/boot/kernel o kern/97000 [kernel] [patch] bogus "All threads purged from ugen0. o kern/98460 [kernel] [patch] fpu_clean_state() cannot be disabled o kern/104777 [kernel] [patch] Driver not unset properly after kldun a kern/108071 delphij [kernel] [patch] Panic in [sg]etpriority() due to NULL 43 problems total. Problem reports for tag 'kevent': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/89775 [kevent] [hang] kevent hangs on second wait for /dev/d 1 problem total. Problem reports for tag 'kgdb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/80321 ups [kgdb] serial db problems 1 problem total. Problem reports for tag 'kqueue': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/43905 jmg [kqueue] [patch] kqueues: EV_SET(kevp++, ...) is non-i o kern/64178 jmg [kqueue] [patch] kqueue does not work with bpf when us o kern/108201 jmg [kqueue] MOKB testcase for kqueue can cause kernel pan 3 problems total. Problem reports for tag 'kse': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/76937 remko [kse]: Page fault while in kernel mode under heavy dis 1 problem total. Problem reports for tag 'kue': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/57453 [kue] [patch] if_kue hangs boot after warm boot if fir f i386/78218 usb [kue] kue not detected on Sony PCG-F370 VAIO 2 problems total. Problem reports for tag 'ldd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/105542 [ldd] on amd64, ldd produces bogus output for i386 exe 1 problem total. Problem reports for tag 'lge': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/31102 wpaul [lge] lge + Pentium III data transmission problem o kern/78072 [lge] [patch] Potential memory leak in lge(4) 2 problems total. Problem reports for tag 'lib': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/101590 [lib] [patch] -O2 optimizing out abi-tag note from exe 1 problem total. Problem reports for tag 'libalias': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/50310 [libalias] [patch] natd / libalias fix to allow dcc re o kern/73034 [libalias] libalias does not handle lowercase port/epr o bin/74450 [libalias] [patch] enable libalias/natd to create skip o kern/105579 piso [libalias] dcc resume over natd in 6.x 4 problems total. Problem reports for tag 'libc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/19406 [libc] setenv(3) allocates memory which is not freed b o kern/25886 [libc] cgetset(3) doesn't get cleared when switching d o kern/26486 [libc] [patch] setnetgrent hangs when netgroup contain o kern/31981 [libc] [patch] (mis)feature in getnetent parsing -- co o kern/32098 [libc] semctl() does not propagate permissions o kern/35506 jon [libc] innetgr() doesn't match wildcard fields in NIS- o kern/36902 [libc] [patch] proposed new format code %N for strftim o kern/42429 [libc] [patch] hash_action called with HASH_DELETE doe o kern/42956 [libc] dlclose gives "invalid shared object handle" wh o kern/52907 phk [libc] [patch] more malloc options for debugging progr o kern/56720 [libc] feature request: UNICODE support in Resolver o kern/58687 deischen [libc] [patch] gethostbyname(3) leaks kqueue file desc s kern/59739 [libc] rmdir(2) and mkdir(2) both return EISDIR for ar s kern/64875 standards [libc] [patch] [feature request] add a system call: fd o kern/68690 [libc] write(2) returns wrong value when EFAULT o kern/69825 [libc] 1st group supplied to setgroups() does not take o kern/69826 [libc] 16th group has no effect when accesing file on o kern/72498 [libc] timestamp code on jailed SMP machine generates o kern/75702 dwmalone [libc] -O5 flag breaks some compiles in /usr/src/lib/l o kern/76398 [libc] stdio can lose data in the presence of signals o kern/77841 [libc] [patch] cast away const in getpublickey() o kern/78756 [libc] [patch] src/lib/libc/nls/fr_FR.ISO8859-1.msg fo s kern/79048 [libc] realloc() copies data even when the size of all o kern/81987 [libc] [patch] memory leaks in libc/rpc p kern/83107 delphij [libc] [patch] libc uuid_compare() doesn't work with l o threa/83914 threads [libc] popen() doesn't work in static threaded program p kern/84740 tjr [libc] regcomp("\254") fails o bin/90736 [libc] dlfunc can not be defined in libc o kern/92880 [libc] [patch] almost rewritten inet_network(3) functi o amd64/92889 amd64 [libc] xdr double buffer overflow o kern/93093 [libc] xdr_string might call strlen(3) on NULL o kern/93197 [libc] strptime(3) succeeds on formats it should fail o kern/94519 [libc] [patch] Add UF_HIDDEN file flag; map it to Wind a kern/94827 [libc] mmap with given (void *addr) may lock memory-ma o kern/95002 [libc] hash db source code has a bug which prevents us o kern/96840 [libc] [patch] getgrent() does not return large groups o bin/99800 [libc] [patch] Add support for profiling multiple exec o kern/99826 [libc] [patch] setenv(3)/unsetenv(3) leak memory f kern/103271 [libc] crash inside dlclose() on shared library unload o bin/109478 [libc] [patch] adopt reentrant syslog functions from N 40 problems total. Problem reports for tag 'libc_r': S Tracker Resp. Description -------------------------------------------------------------------------------- o threa/81534 threads [libc_r] [patch] libc_r close() will fail on any fd ty 1 problem total. Problem reports for tag 'libcrypt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/75934 [libcrypt] [patch] missing blowfish functionality in p 1 problem total. Problem reports for tag 'libdisk': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/24435 [libdisk] changing slice type causes Auto-partition to o kern/31201 [libdisk] [patch] add free_space(chunk) to libdisk o kern/36916 [libdisk] [patch] DOS active partition flag lost in li o kern/96077 [libdisk] memory leak in libdisk(3)'s Disk_Names() p kern/96326 [libdisk] [patch] update to id -> partition name trans o bin/97164 [libdisk] libdisk's Open_Disk() crashes 6 problems total. Problem reports for tag 'libexec': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/95339 [libexec] [patch] rtld is thread-unsafe. fixes for dlo o bin/107529 [libexec] [patch] ldd(1) aborts abruptly if a shared l 2 problems total. Problem reports for tag 'libexpat': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/98618 [libexpat] [patch] src/lib/libexpat is setup for small 1 problem total. Problem reports for tag 'libfetch': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/98873 des [libfetch] allow fetch(3) to force using of ipv4 or ip 1 problem total. Problem reports for tag 'libiconv': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/76520 [libiconv] [patch] Add new kernel-side libiconv conver 1 problem total. Problem reports for tag 'libkse': S Tracker Resp. Description -------------------------------------------------------------------------------- o sparc/73413 trhodes [libkse] [patch] pthread (libkse) library is broken on 1 problem total. Problem reports for tag 'libkvm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/95405 [libkvm] libkvm does not support /dev/fwmem0.0 in Free 1 problem total. Problem reports for tag 'libm': S Tracker Resp. Description -------------------------------------------------------------------------------- o stand/83845 standards [libm] [patch] add log2() and log2f() support for libm p i386/85101 das [libm] nearbyint always returns nan a kern/94583 kan [libm] std::isnan()/std::isinf() are not identical to 3 problems total. Problem reports for tag 'libmap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/78646 [libmap] [patch] libmap should canonicalize pathnames 1 problem total. Problem reports for tag 'libmd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/102795 [libmd] {SHA1,RIPEMD160}_Update() produce wrong result 1 problem total. Problem reports for tag 'libpam': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/20333 des [libpam] ftp login fails on unix password when s/key a o kern/76678 rwatson [libpam] [patch] Allow pam_krb5 to authenticate no loc o bin/91954 [libpam] [patch] Proposed enhancement for pam_krb5: "o o bin/93310 des [libpam] [patch] pam_unix ignores 'passwordtime' from o bin/105341 [libpam] [patch] pam_krb5: Add minimum_uid/minimum_gid o kern/109416 [libpam] [patch] pam_group doesn't check login_group m 6 problems total. Problem reports for tag 'libpcap': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/58529 dwmalone [libpcap] [patch] RDWR bpf in pcap. 1 problem total. Problem reports for tag 'libradius': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/103764 [libradius] [patch] libradius aborts server processing 1 problem total. Problem reports for tag 'libstand': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/85650 [libstand] [patch] modifications to tftp-based PXE boo o kern/93998 [libstand] [patch] panic in libstand when closing raw 2 problems total. Problem reports for tag 'libtacplus': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/80269 [libtacplus] [patch] libtacplus tac_get_av_value will 1 problem total. Problem reports for tag 'libthr': S Tracker Resp. Description -------------------------------------------------------------------------------- o threa/85160 threads [libthr] [patch] libobjc + libpthread/libthr crash pro 1 problem total. Problem reports for tag 'libusbhid': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/101775 usb [libusbhid] [patch] possible error in report descripto 1 problem total. Problem reports for tag 'libutil': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/35774 [libutil] logwtmp: Suboptimal auditing possibilities f s kern/38347 [libutil] [patch] [feature request] new library functi o kern/84797 [libutil] [patch] State engine in the libutils propert p bin/96335 delphij [libutil] [patch] ignored NO_INET6 knob 4 problems total. Problem reports for tag 'libz': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/96393 [libz] [patch] assembler implementations for libz on i 1 problem total. Problem reports for tag 'linprocfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/94528 [linprocfs] linprocfs /proc/memory reports wrong size 1 problem total. Problem reports for tag 'linux': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/21463 emulation [linux] Linux compatability mode should not allow setu o kern/29698 emulation [linux] [patch] linux ipcs doesn'work o kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu o kern/55835 emulation [linux] [patch] Linux IPC emulation missing SETALL sys a kern/72920 emulation [linux]: path "prefixing" is not done on unix domain s o kern/73777 emulation [linux] [patch] linux emulation: root dir special hand o kern/77710 emulation [linux] Linux page fault sigcontext information is wro o kern/90330 [linux] linux_compat /dev system freeze problem f kern/97326 [linux] file descriptor leakage in linux emulation o kern/99068 [linux] [patch] Linux emulator crashed by java, when c o kern/101453 emulation [linux] [patch] linprocfs disallows non-zero file offs o kern/102956 emulation [linux] [patch] Add partial support for SO_PEERCRED in 12 problems total. Problem reports for tag 'lnc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/77982 [lnc] [patch] lnc0 can NOT be detected in vmware 4.5.2 o kern/81322 [lnc] [hang] lnc driver causes lockups 2 problems total. Problem reports for tag 'loader': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/62003 remko [loader] [patch] make /boot/loader "reboot" code same f i386/63628 [loader] [patch] i386 master boot record to allow boot o kern/73004 [loader] [patch] PXE loader malfunction in multiple PX o i386/85652 i386 [loader] [patch] deal with out-of-memory errors during o kern/96927 [loader] Loader(8) cause kernel death on "boot -a" (re 5 problems total. Problem reports for tag 'lpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/26562 [lpt] [patch] /dev/lpt0 returns EBUSY when attempting o kern/27403 [lpt] lpt driver doesn't handle flags anymore o kern/108361 [lpt] lpt0: device busy with HP 710c parallel printer 3 problems total. Problem reports for tag 'mac': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/63096 rwatson [mac] [patch] MAC entry point for route manipulation 1 problem total. Problem reports for tag 'mail-archive': S Tracker Resp. Description -------------------------------------------------------------------------------- f docs/103730 doc [mail-archive]: duplicated file in mail archive 1 problem total. Problem reports for tag 'makedev': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/44058 [MAKEDEV] [patch] /dev/ch* is created without group wr s bin/56012 [MAKEDEV] [patch] MAKEDEV does not allow creation of t 2 problems total. Problem reports for tag 'md': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/80136 [md] [crash] mdconfig can reboot the system o kern/81161 [md] Images mounted through mdconfig on a read-only fs o kern/87255 [md] [panic] large malloc-backed mfs crashes the syste f kern/89355 [md] mdconfig -t vnode filesystem mount problem o kern/92292 [md] [hang] Heavy IO on a md-backed filesystem on a sn 5 problems total. Problem reports for tag 'mem': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/71334 [mem] [patch] mem_range_attr_{set|get} are no longer k 1 problem total. Problem reports for tag 'mfi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/98091 scottl [mfi] [patch] Makefile style of mfi kernel module brok 1 problem total. Problem reports for tag 'mfid': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/100160 i386 [mfid] Perc5i: FreeBSD doesn't recognize more than one 1 problem total. Problem reports for tag 'mfs': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/50856 [mfs] panic if mounting /tmp as mfs with soft-updates o kern/52445 [mfs] panic when mounting floppy on MFS filesystem f kern/57195 [mfs] mount_mfs -i 512 => panic? 3 problems total. Problem reports for tag 'mii': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/76710 [mii] [patch] rgephy does not deal with status properl 1 problem total. Problem reports for tag 'mly': S Tracker Resp. Description -------------------------------------------------------------------------------- f i386/55603 remko [mly] unable to reboot when system runs from Mylex A35 s kern/57398 scsi [mly] Current fails to install on mly(4) based RAID di 2 problems total. Problem reports for tag 'mmap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/68765 [mmap] a little data can be stored beyond EOF. 1 problem total. Problem reports for tag 'modules': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/48758 [modules] kldunload if_{nic} can cause kernel panic o kern/48976 [modules] nwfs.ko oddity o misc/60503 [modules] small error in modules installation o kern/64903 [modules] panic: multiple kldload of a module compiled o kern/68076 [modules] Page fault when the sequence "kldunload ucom o kern/69502 [modules] kldload will load modules that are in the st o kern/70401 darrenr [modules] Could not load ipl.ko when no INET6 in the k o kern/74809 [modules] [panic] smbfs panic if multiply mounted s kern/83738 jkoshy [modules] kldload hwpmc.ko fails with 'link_elf: symbo o kern/88659 ipfw [modules] ipfw and ip6fw do not work properly as modul o kern/88709 [modules] [panic] sysctl -a after kldunload fdc panics o kern/88823 [modules] atapicam - kernel trap 12 on loading and unl o kern/96346 [modules] [patch] disable build of modules that are al 13 problems total. Problem reports for tag 'mount': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/39329 [mount] '..' at mountpoint is subject to the permissio 1 problem total. Problem reports for tag 'mouse': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/87648 usb [mouse] Logitech USB-optical mouse problem. o kern/89166 [mouse] jumpy mouse movement o kern/89258 [mouse] synaptic touchpad support "worse" with hw.psm. o sparc/91882 sparc64 [mouse] Ultra 10 mouse/keyboard o kern/97918 [mouse] Scrollwheel on MX700 Mouse does not work 5 problems total. Problem reports for tag 'mpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/74608 amd64 [mpt] [hang] mpt hangs 5 minutes when booting f kern/91160 mjacob [mpt] system hangs with: mpt0: Request 0xffffffff89b96 o kern/96040 [mpt] LSI1030 mpt0: bullet missed in timeout o kern/103715 [mpt] Broadcom BCM5708SKFB not recognised by the drive f kern/103918 mjacob [mpt] LSI 53C1030 SCSI controller timing out on mpt dr 5 problems total. Problem reports for tag 'msdosfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/15838 trhodes [msdosfs] [patch] Conversion tables in msdosfs_conv.c a kern/21807 trhodes [msdosfs] [patch] Make System attribute correspond to a kern/21808 trhodes [msdosfs] [patch] msdosfs incorrectly handles vnode lo o kern/45558 trhodes [msdosfs] mdconfig and msdosfs make fs writes hang o kern/47628 trhodes [msdosfs] [patch] msdosfs file corruption fix o kern/62762 trhodes [msdosfs] Fsync for msdos fs does not sync entries f kern/67326 remko [msdosfs] crash after attempt to mount write protected o kern/68719 trhodes [msdosfs] [patch] poor performance with msdosfs and US o kern/70096 trhodes [msdosfs] [patch] full msdos file system causes corrup o amd64/73322 amd64 [msdosfs] [hang] unarchiving /etc to msdosfs locks up o kern/79441 trhodes [msdosfs] problem writing on mounted msdos-fs at /mnt o kern/87368 trhodes [msdosfs] fat32 is very slow o kern/91242 trhodes [msdosfs] panic: rofs mod when remounting disk o kern/93634 [msdosfs] False access to renamed files/directories (c o kern/93860 trhodes [msdosfs] [patch] sectors-per-track limit of MSDOSFS t f kern/101332 remko [msdosfs]: mv * dir on fat (dos|win fs) causes panic o kern/102250 trhodes [msdosfs] panic upon forced umount of removed medium o kern/105964 rodrigc [msdosfs] Make MSDOSFS_LARGE a mount option o kern/106255 trhodes [msdosfs] [patch]: correct setting of archive flag o kern/106632 trhodes [msdosfs] gimp destroys files on fat32 upon opening o kern/109010 [msdosfs] can't mv directory within fat32 file system 21 problems total. Problem reports for tag 'nanobsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/96746 [nanobsd] [patch] Configuration changes and README for o kern/101228 embedded [nanobsd] [patch] Two more entries for FlashDevice.sub 2 problems total. Problem reports for tag 'ncurses': S Tracker Resp. Description -------------------------------------------------------------------------------- f bin/84219 rafan [ncurses] [patch] ncurses.h wchar_t confliction 1 problem total. Problem reports for tag 'ndis': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/73224 wpaul [ndis] [patch] Lock order reversal in ntoskrnl_timerca o kern/78382 wpaul [ndis] dhclient on ndis0 causes kernel panic o i386/86920 i386 [ndis] ifconfig: SIOCS80211: Invalid argument (regress o i386/87630 i386 [ndis] No match for NdisIMGetCurrentPacketStack o kern/88882 [ndis] ndis IF tx/rx and other problems in 6.0-R (regr o kern/88937 [ndis] ifconfig ndis does not show the correct mode o kern/89738 [ndis] [hang] Can't make WL8000PCM wifi card work with o kern/89880 wpaul [ndis] ndis interface stops rx/tx while large text tra o kern/95392 [ndis] Kernel panic loading ndisgen-created device dri o kern/108891 [ndis] Fatal Kernel Trap 12 ndis ralink wireless drive o kern/109406 net [ndis] Broadcom WLAN driver 4.100.15.5 doesn't work wi 11 problems total. Problem reports for tag 'net': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/12071 fanf [net] [patch] new function: large scale IP aliasing s kern/68692 andre [net] [patch] Move ARP out of routing table o kern/85648 [net] [patch] provide more specific default network dr f kern/90096 thompsa [net] [patch] arp mixup if carp and bridge used o kern/90973 thompsa [net] [patch] if_bridge does not handle arp for own ad o kern/92690 andre [net] slowstart_flightsize ignored in 6-STABLE o kern/106722 net [net] [patch] ifconfig may not connect an interface to 7 problems total. Problem reports for tag 'net80211': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/61415 [net80211] [patch] disable broadcast ssid if_wi and di 1 problem total. Problem reports for tag 'netatalk': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/4184 [netatalk] [patch] minor nits in sys/netatalk 1 problem total. Problem reports for tag 'netgraph': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/63863 glebius [netgraph] [patch] feature request: implement NGM_ELEC o kern/66225 [netgraph] [patch] extend ng_eiface(4) control message f kern/72933 yar [netgraph] [patch] promisc mode on vlan interface does o sparc/80410 sparc64 [netgraph] netgraph is causing crash with mpd on sparc o kern/82881 [netgraph] [panic] ng_fec(4) causes kernel panic after o kern/87421 [netgraph] [panic]: ng_ether + ng_eiface + if_bridge o kern/91419 [netgraph] libnetgraph/debug.c compile error on sparc6 o kern/97306 [netgraph] NG_L2TP locks after connection with failed o kern/99500 glebius [netgraph] [patch] netgraph doesn't honor the monitor o kern/102540 ru [netgraph] [patch] supporting vlan(4) by ng_fec(4) o kern/104751 [netgraph] kernel panic, when getting info about my tr p kern/106999 bms [netgraph] [patch] ng_ksocket fails to clear multicast 12 problems total. Problem reports for tag 'netinet': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/61744 andre [netinet] [patch] TCP hangs onto mbufs with no tcp dat s kern/68110 hsu [netinet] [patch] RFC 3522 for -HEAD o kern/75122 andre [netinet] [patch] Incorrect inflight bandwidth calcula f kern/95277 net [netinet] IP Encapsulation mask_match() returns wrong o kern/108211 [netinet] potentially a bug for inet_aton in sys/netin 5 problems total. Problem reports for tag 'netinet6': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/72217 [netinet6] [patch] Bug in calculation of the parameter o kern/98597 [netinet6] Bug in FreeBSD 6.1 IPv6 link-local DAD proc 2 problems total. Problem reports for tag 'netipsec': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/94273 gnn [netipsec] [patch] IPIP decapsulation problem in FAST_ o kern/95307 gnn [netipsec] Panic (race condition?) in ipsec_process_do 2 problems total. Problem reports for tag 'netisr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/100519 net [netisr] suggestion to fix suboptimal network polling 1 problem total. Problem reports for tag 'newfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/77181 [newfs] [patch] newfs -g largevalue, mkdir, panic 1 problem total. Problem reports for tag 'nfs': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/17108 [nfs] SecureRPC not supported in mount_nfs command s conf/17540 cel [nfs] NIS host lookups cause NFS mounts to wedge at bo o kern/19909 [nfs] Problem with NFS client in 4.0-STABLE o kern/21222 [nfs] wrong behavior of concurrent mmap()s on NFS file o bin/22291 cel [nfs] getcwd() fails on recently-modified NFS-mounted o conf/22308 [nfs] mounting NFS during boot blocks if host map come a kern/26142 cel [nfs] Unlink fails on NFS mounted filesystem o kern/27232 cel [nfs] On NFSv3 mounted filesystems, stat returns st_bl o kern/30971 peter [nfs] NFS client modification time resolution is not h o kern/31380 cel [nfs] NFS rootfs mount failure message too cryptic f kern/31790 remko [nfs] problem with NFS and jail() o kern/33203 [nfs] "got bad cookie" errors on NFS client o kern/35669 cel [nfs] NFSROOT breaks without a gateway o kern/38872 cel [nfs] nfs code ignores possibility of MGET(M_WAIT) fai o kern/41216 cel [nfs] Get "NFS append race" error o kern/43474 [nfs] [patch] dhcp.* values not set in kenv by bootp c o kern/43954 cel [nfs] nfs-blocked process can't return or be interrupt p kern/44336 [nfs] NFSv3 client broken - security problem with attr o kern/44580 cel [nfs] NFS updates file access time when file is modifi o kern/48894 [nfs] Suggested improvements to the NFS read-ahead heu o kern/52936 [nfs] Huge writes to nfs exported FAT filesystems caus o kern/54383 net [nfs] [patch] NFS root configurations without dynamic a kern/57696 cel [nfs] NFS client readdir terminates prematurely if ren a kern/62278 iedowse [nfs] NFS server may not set eof flag when reading las a kern/64816 peadar [nfs] mmap and/or ftruncate does not work correctly on o kern/66611 [nfs] Crashing NFS servers (with workaround) o kern/67545 [nfs] NFS Diskless Mount Option Suggestion o kern/70708 [nfs] gcore/procfs not finding /proc/pid/file on repea o kern/71391 [nfs] [panic] md via NFS file + mount -t ntfs: panic: o kern/72504 [nfs] nfsd result mbufs-overruns o kern/73740 [nfs] [panic] 5-3-R#3 panic when accessing nfs exporte o amd64/74811 amd64 [nfs] df, nfs mount, negative Avail -> 32/64-bit confu o kern/76126 [nfs] [patch] 4.11 client will send a NFS request to r o kern/77432 cel [nfs] [patch] It is not possible to load nfs4client.ko o kern/77902 cel [nfs] NFS client should use VA_UTIMES_NULL to determin o kern/78673 cel [nfs] [patch] nfs client open resets attrstamp ever if o kern/78884 cel [nfs] [patch] nfs client cache negative lookups o kern/79208 cel [nfs] Deadlock or starvation doing heavy NFS writes wi o kern/79214 cel [nfs] iozone hurts tcp-based NFS o kern/79336 cel [nfs] NFS client doesn't detect file updates on Novell o kern/79700 cel [nfs] suspending nfs file access hangs other access to o kern/81770 cel [nfs] Always "NFS append race" at every NFS mount with o kern/82805 cel [nfs] [panic] sched_switch ched_4bsd.c:865 / nfs_inact o kern/84500 cel [nfs] [panic] nfsv4 memory allocation panic o kern/84673 cel [nfs] NFS client problem "Stale NFS file handle" o kern/84953 kuriyama [nfs] NFS locking issue in RELENG_6/i386/SMP o kern/84964 cel [nfs] nfs4 mount doesn't handle NFS4ERR_GRACE o kern/84965 cel [nfs] nfs4 mount generates NFS4ERR_BAD_SEQID o kern/84968 cel [nfs] programs on nfs4 mounts won't execute o kern/85894 cel [nfs] [panic] nfs_timer / nfs_socket.c:1146 panic o kern/86319 cel [nfs] [feature request] support a "noac" NFS mount fla o kern/86944 cel [nfs] [patch] When I use FreeBSD with NFS client, clos o kern/88320 [nfs] ypxfr(8) talks IPv6 to IPv4-only portmap -> ypin o kern/94256 cel [nfs] nfs locking/rpc.lockd doesn't understand file de o kern/94830 cel [nfs] [patch] mount_nfs causes a fatal trap 18 if the o kern/97329 [nfs] [patch] code simplification o kern/97686 [nfs] massive NFS server performance break under "opti o kern/105241 [nfs] problem with Linux NFS server up/down combined w o kern/106646 [nfs] [patch] Pointer incorrectly cast to ulong o kern/107109 [nfs] Netbeans/Eclipse/Java provoke deadlocks when use 60 problems total. Problem reports for tag 'ng': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/106444 [ng] Kernel Panic on Binding to an ip to a virtual atm 1 problem total. Problem reports for tag 'nge': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/31940 [nge] nge(4) gigabit adapter link reset and slow trans o kern/41720 [nge] if_nge_load=YES make system not bootable o kern/90279 [nge] Appletalk and 0x090007 OUI enet frames can't pas 3 problems total. Problem reports for tag 'nic': S Tracker Resp. Description -------------------------------------------------------------------------------- f i386/68117 remko [nic] serious network collisions after NIC "media/medi 1 problem total. Problem reports for tag 'nis': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/17310 remko [nis] [patch] NIS host name resolving may loop forever o kern/34842 [nis] [patch] VmWare port + NIS causes "broadcast stor o bin/40215 wpaul [nis] NIS host search not terminate o kern/44578 [nis] getnetgrent fails to read NIS netgroup map o kern/45026 [nis] Can't set next password change date on NIS serve o bin/51628 [nis] ypmatch doesn't match keys in legacy NIS servers o kern/71478 [nis] NIS/NFS: res_mkquery failed [4.2] o kern/71683 [nis] NIS/NFS problem [4.8] o conf/72592 [nis] NIS Domain Master fails as client of itself 9 problems total. Problem reports for tag 'notes': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/90181 [NOTES] [patch] IPSEC_FILTERGIF documentation is incom 1 problem total. Problem reports for tag 'ntfs': S Tracker Resp. Description -------------------------------------------------------------------------------- f alpha/59116 alpha [ntfs] mount_ntfs of a Windows 2000-formatted fs cause o kern/71774 [ntfs] NTFS cannot "see" files on a WinXP filesystem o kern/73484 [ntfs] Kernel panic when doing `ls` from the client si p kern/73514 le [ntfs] [patch] mount_ntfs: can't access to a large fil o kern/86965 [ntfs] NTFS driver returns incorrect 'number of links' o kern/89966 rodrigc [ntfs] [panic] mounting ntfs causes kernel panic in so o kern/92000 [ntfs] [panic] Panic caused by mounting mounted NTFS p o kern/97377 [ntfs] [patch] syntax cleanup for ntfs_ihash.c o kern/99290 [ntfs] mount_ntfs ignorant of cluster sizes o kern/103035 [ntfs] Directories in NTFS mounted disc images appear o kern/104393 [ntfs] [panic] Mounting ntfs to the same mountpoint 11 problems total. Problem reports for tag 'ntp': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/92839 roberto [ntp] [patch] contrib/ntp PARSE buffer overrun o kern/106726 [ntp] ntp functions return wrong values 2 problems total. Problem reports for tag 'nullfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/51583 [nullfs] [patch] allow to work with devices and socket o kern/59945 [nullfs] [patch] nullfs bug: reboot after panic: null_ p kern/63662 [nullfs] using read-only NULLFS leads to panic. gdb ou o kern/94269 [nullfs] procfs shows wrong data if executable is runn o kern/104938 [nullfs] readlink("/proc/curproc/file") does not work 5 problems total. Problem reports for tag 'nve': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/88045 jhb [nve] [patch] 6.0rc1: nve0: device timeout (51) p kern/97063 obrien [nve] [patch] Added DEFINE to if_nve.c/if_nvereg.h to o kern/106243 [nve] double fault panic in if_nve.c on high loads o kern/108046 obrien [nve] [patch] missing deviceid(s) in nve o amd64/108861 amd64 [nve] nve(4) driver on FreeBSD 6.2 AMD64 does not work 5 problems total. Problem reports for tag 'nwfs': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/59211 [nwfs] System crashes when moving files from NWFS moun o kern/65920 [nwfs] Mounted Netware filesystem behaves strange o kern/69100 [nwfs] panic: 5.2.1p9 kernel panics when mounting nwfs o kern/92750 [nwfs] Files in mounted Netware filesystem drop in and 4 problems total. Problem reports for tag 'ohci': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/94146 [ohci] fwohci parity error crashes kernel on boot 1 problem total. Problem reports for tag 'orm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/82978 [orm] [hang] FreeBSD hangs loading orm(4) only after r 1 problem total. Problem reports for tag 'pam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/66095 [pam] template_user is broken in pam_radius o kern/83099 des [pam] pam_login_access change causes cyrus-sasl-saslau o kern/88150 des [pam] PAM does not search /usr/local/lib for modules o kern/94978 [pam] pam_opie module option without "no_fake_prompts" o kern/107154 [pam] pam.d/sshd pam_ssh.so doesn't start ssh-agent 5 problems total. Problem reports for tag 'pccard': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/41364 imp [pccard] NewMedia "Bus Toaster" SCSI card w/ Advansys o conf/55470 [pccard] [patch] new pccard.conf entry (I-O DATA WN-B1 o kern/60307 [pccard] [patch] wrong product id in pccarddevs for Sp o kern/62098 [pccard] [patch] Bad CISTPL_VERS_1 and clash on notebo o kern/67763 [pccard] [patch] PCMCIA: MELCO manufacturer code shoul o kern/71608 [pccard] XIRCOM REM56-100 Ethernet 10/100 can't config o kern/74498 [pccard] [patch] new CIS id for Intersil WiFi, pccard o kern/75298 [pccard] [patch] add missing device id for pccard brid o kern/82464 [pccard] Sony Ericsson GC75 GPRS MODEM not recognized o kern/89878 [pccard] [patch] pccard.c:pccard_safe_quote() unsafe o kern/92070 imp [pccard] wi0: No irq?! with LG 11Mbps Wireless LAN PCI o kern/93431 imp [pccard] dc interface attach failed after upgrade to 6 12 problems total. Problem reports for tag 'pccarddevs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/107406 [pccarddevs] 3Com wifi card not recognized 1 problem total. Problem reports for tag 'pccbb': S Tracker Resp. Description -------------------------------------------------------------------------------- f i386/71158 remko [pccbb] pci bus number 3 devices are missing on laptop o kern/91919 [pccbb] pccbb does not supply appropriate voltage o kern/100155 imp [pccbb] Incorrect enumeration in pccbb_pci.c: cbb_pci 3 problems total. Problem reports for tag 'pci': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/59903 [pci] [patch] "pci_find_device" returns [only/at] the o kern/60982 [pci] [patch] ID for VIA 686A Power Management Unit (f o kern/65355 [pci] [patch] TC1000 serial ports need enabling o kern/70810 [pci] [patch] Enable SMBus device on Asus P4B series m p kern/79139 rodrigc [pci] [patch] Support for more PCIe chipsets o kern/79266 [pci] [patch] RELENG_4 pci CONF1_ENABLE_MSK depend MFC o kern/89837 [pci] PCI code outputs superfluous "failed to enable/d o kern/91347 rodrigc [pci] [patch] Add another PCI-e chipset for extended c o kern/95661 [pci] [patch] pci_pci still not correct for initializi o kern/98898 [pci] [patch] fix random sound problems in fm801 o i386/100142 i386 [pci] [patch] /dev/smb0 device not available on system 11 problems total. Problem reports for tag 'pcm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/90837 [pcm] PCM - ICH6 - device is busy, but old process doe o i386/93986 multimedia [pcm] Acer TravelMate 4652LMi pcm0 channel dead 2 problems total. Problem reports for tag 'pcmcia': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/94898 [pcmcia] GPRS PCMCIA card cause interrupt storm and co 1 problem total. Problem reports for tag 'pcn': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/72966 obrien [pcn] [patch] AMD PCnet/PCI Fast Ethernet driver broke 1 problem total. Problem reports for tag 'pcvt': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/26348 [pcvt] scon -s, page fault in HP mode o stand/54833 standards [pcvt] more pcvt deficits o stand/54839 standards [pcvt] pcvt deficits o bin/71623 [pcvt] [patch] cleanup of the usr.sbin/pcvt code f i386/75887 i386 [pcvt] with vt0.disabled=0 and PCVT in kernel video/ke o i386/104711 i386 [pcvt] with vt0.disabled=0 and PCVT in kernel - video/ 6 problems total. Problem reports for tag 'pecoff': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/60963 [pecoff] [patch] Win32 Applications abort on PECOFF o kern/80742 wkoszek [pecoff] [patch] Local DoS in sys/compat/pecoff (+ oth 2 problems total. Problem reports for tag 'pf': S Tracker Resp. Description -------------------------------------------------------------------------------- f conf/81042 pf [pf] [patch] /etc/pf.os doesn't match FreeBSD 5.3->5.4 o kern/82271 pf [pf] cbq scheduler cause bad latency a kern/86848 bms [pf][multicast] destroying active syncdev leads to pan o kern/92949 pf [pf] PF + ALTQ problems with latency o kern/93825 pf [pf] pf reply-to doesn't work 5 problems total. Problem reports for tag 'pfil': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/73517 [pfil] pfil_hooks (ipfw,pf etc) and ipsec processing o 1 problem total. Problem reports for tag 'pfsync': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/101794 [pfsync] Setting plip as syncdev for pfsync causes ker 1 problem total. Problem reports for tag 'picobsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/15876 embedded [picobsd] PicoBSD message of the day problems o misc/28255 embedded [picobsd] picobsd documentation still references old . o bin/29725 dwmalone [picobsd] [patch] fixed segmentation fault in simple_h o bin/42084 luigi [picobsd] PicoBSD's 'netstat -i' reports negative Ipkt o misc/42115 luigi [picobsd] [patch] fix build script for 4.6-STABLE o kern/42728 embedded [picobsd] many problems in src/usr.sbin/ppp/* after c o misc/52255 embedded [picobsd] picobsd build script fails under FreeBSD 5.0 o misc/52256 embedded [picobsd] picobsd build script does not read in user/s 8 problems total. Problem reports for tag 'pipe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/77493 [pipe] freebsd 5.3 + bash process substitution fails d o kern/93685 [pipe] select on pipe write fails from '0' end 2 problems total. Problem reports for tag 'plip': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/102035 net [plip] plip networking disables parallel port printing 1 problem total. Problem reports for tag 'pmap': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/74327 i386 [pmap] [patch] mlock() causes physical memory leakage 1 problem total. Problem reports for tag 'powerd': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/87689 amd64 [powerd] [hang] powerd hangs SMP Opteron 244 5-STABLE o bin/90903 [powerd] cpufreq inconsistency / powerd broken 2 problems total. Problem reports for tag 'ppbus': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/17425 [ppbus] [patch] fix two small printing errors in ppbus 1 problem total. Problem reports for tag 'ppc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/74037 [ppc] ppc(4) cannot find parallel port on Toshiba M30 1 problem total. Problem reports for tag 'ppp': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/88619 brian [ppp] ppp chat auth fails ( pppoe ) o kern/93019 [ppp] ppp and tunX problems: no traffic after restarti f kern/101334 [ppp] ping -f dst_addr through pppN iface caused kerne 3 problems total. Problem reports for tag 'procfs': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/19535 [procfs] [patch] procfs_rlimit tidyup o kern/86107 [procfs] [panic] unrhdr has N allocations, NULL derefe o kern/90063 [procfs] access("/proc/123", F_OK) doesn't work on >= o kern/96999 [procfs] [patch] procfs reports incorrect information o kern/97505 [procfs] file entry of procfs points to "unknown" 5 problems total. Problem reports for tag 'pseudofs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/85137 [pseudofs] [patch] panic due to sleep with held mutex 1 problem total. Problem reports for tag 'psm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/57230 [psm] [patch] psm(4) incorrectly identifies an Intelli f i386/65528 remko [psm] mouse cursor disapears on moving f i386/67055 remko [psm] Mouse (wheel) detection problem on SIS748/964 ba o kern/80844 [psm] [patch] Increase compatibility of psm driver wit o kern/84411 philip [psm] [patch] psm drivers adds bad buttons for Synapti o i386/85072 i386 [psm] ps/2 Mouse detection failure on compaq chipset o kern/91339 [psm] mousedriver do not recognize aditional buttons o o kern/100687 [psm] psm problem (?): touchpad hangs, then move supe 8 problems total. Problem reports for tag 'pst': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/74153 i386 [pst] FreeBSD 5.3 cannot boot ftom pst 1 problem total. Problem reports for tag 'pts': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/92742 cognet [pts] [panic] New pts code causes AMD64 panics (regres 1 problem total. Problem reports for tag 'pty': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/60697 [pty] [patch] pseudo-tty hack versus telnet race cause o kern/99758 [pty] [patch] chown/chmod pty slave side in kernel 2 problems total. Problem reports for tag 'puc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/42578 [puc] [panic] using PCI serial cards (puc) in SMP mach o kern/43716 [puc] [patch] puc driver does not recognize Lava Dual- o kern/69730 [puc] [patch] puc driver doesn't support PC-Com 8-port o kern/72352 [puc] [patch] Support for VScom PCI-100L is missing fr o kern/75132 jhb [puc] [patch] add support for the Davicom 56PDV PCI Mo o kern/82901 [puc] ECP mode fails on NetMos ppc card - "PWord not s o kern/103250 [puc] puc failed to attach sio ports when loaded as mo o kern/104212 [puc] [patch] support for Kuroutoshikou SERIAL4P-LPPCI 8 problems total. Problem reports for tag 'pxe': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/91719 [pxe] BZ2_bzDecompress returned -3 error on loading bz o kern/91720 [pxe] pxeboot always tries to do an rpc call to an nfs 2 problems total. Problem reports for tag 'qemu': S Tracker Resp. Description -------------------------------------------------------------------------------- f ports/108696 nox [qemu] udp protocol does not function in user mode (sl 1 problem total. Problem reports for tag 'radeon': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/86080 amd64 [radeon] [hang] radeon DRI causes system hang on amd64 o kern/89271 [radeon][agp][hang] X.org hangs when heavily using Rad o kern/108829 [radeon] radeon module fails with thinkpad T43 3 problems total. Problem reports for tag 'raid': S Tracker Resp. Description -------------------------------------------------------------------------------- f i386/62288 remko [RAID] reopened raid disks on a running system 1 problem total. Problem reports for tag 'ral': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/82456 [ral] WITNESS warning/backtrace in if_ral o kern/95519 [ral] ral0 could not map mbuf o kern/103200 [ral] ral driver for RELENG_6 3 problems total. Problem reports for tag 'rc.d': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/103486 rc [rc.d][patch][chroot named] rc.d/jail: mount fstab aft o conf/103489 rc [rc.d] [patch] named_chroot_autoupdate doesn't work in o conf/107316 rc [rc.d]: [base] [rpc.lockd] nfslocking restart does not 3 problems total. Problem reports for tag 're': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/68514 [re] Realtek driver halts on oversized frames o i386/70832 i386 [re] serious problems with RealTek NIC using re0 drive f kern/76551 remko [re] [patch] re0: watchdog timeout o kern/80005 [re] re(4) network interface _very_ unpredictable work o kern/81019 [re] re(4) RealTek 8169S32 behaves erratically o i386/83735 i386 [re] network card (realtek 8139) and sound card (CMI87 o kern/84584 [re] re(4) spends too much time in interrupt handler ( o kern/91942 [re] [panic] ifconfig causes panic on re(4) o kern/93893 [re] Boot panic from Netgear GA311 o kern/96322 [re] re driver false positives on the loopback test o amd64/105629 amd64 [re] Issue with re driver o kern/108485 [re] stress2-udp with realtek 8169S gigabit interface o kern/109251 [re] [patch] if_re cardbus card won't attach 13 problems total. Problem reports for tag 'resolver': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/74314 [resolver] DNS resolver broken under certain jail cond 1 problem total. Problem reports for tag 'rl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/69092 [rl] kernel: rl0: watchdog timeout o i386/74966 i386 [rl] Realtek driver seems to misinterpret some packets o kern/75312 [rl] Built-in RTL8281BL on Asus Pundit AB P2800 is not o kern/76081 [rl] [patch] Add support for CardBUS NIC FNW3603TX o i386/76948 i386 [rl] Slow network with rl0 o kern/92744 [rl] problems with a realtek network card on a 6.0 rel f kern/100290 remko [rl] rl0: watchdog timeout (regression) 7 problems total. Problem reports for tag 'routed': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/100172 glebius [routed] Transfer of large file fails with host is dow 1 problem total. Problem reports for tag 'rp': S Tracker Resp. Description -------------------------------------------------------------------------------- s i386/28975 [rp] RocketPort problems o kern/44202 [rp] [patch] -stable rp driver does not work with mult o kern/103137 [rp] Rocketport driver is broken in 6.x o kern/109152 [rp] RocketPort panic from device_unbusy() 4 problems total. Problem reports for tag 'rpc': S Tracker Resp. Description -------------------------------------------------------------------------------- f bin/30661 alfred [rpc] [patch] FreeBSD-current fails to do partial NFS s kern/56461 [rpc] FreeBSD client rpc.lockd incompatible with Linux o bin/70974 [rpc] SIGSEGV in rpc.lockd o bin/71625 [rpc] [patch] cleanup of the usr.sbin/rpc.ypupdated co o bin/94252 [rpc] rpc.lockd cannot cancel lock requests o bin/94258 [rpc] O_NONBLOCK may block with rpc.lockd s bin/94892 [rpc] rpc.lockd does not interoperate with Solaris 10 a bin/94920 bms [rpc] rpc.statd(8) conflict with cups over tcp and udp o kern/95247 [rpc] NFS file locking problem, rpc.lockd seems to be o bin/96412 [rpc] 2 rpc.lockds launched at boot ? blocking problem o bin/98500 [rpc] rpc.lockd(+statd) bind to any ip o bin/99662 [rpc] quota information leak while rpc.rquotad is used o kern/107555 [rpc] 30 second delay in NFS lock of file after waitin 13 problems total. Problem reports for tag 'rpc.lockd': S Tracker Resp. Description -------------------------------------------------------------------------------- a bin/100969 bms [rpc.lockd] rpc.lockd conflict with cups over udp port o conf/107316 rc [rc.d]: [base] [rpc.lockd] nfslocking restart does not 2 problems total. Problem reports for tag 'rtc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/63431 [rtc] motherboard going to suspend mode stops system c o kern/70649 [rtc] system clock slows down when heavily loaded 2 problems total. Problem reports for tag 'rtld': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/88117 [rtld] [patch] support of $ORIGIN in rtld-elf. 1 problem total. Problem reports for tag 'sata': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/101734 [sata] -CURRENT cannot see SATA drive on ASUS A8N-SLI o kern/103075 [sata] SATA disk attach/unplug from a MV88SX5041 freez o kern/106960 [sata] 6.2 can't find SATA secondary drive, but 6.1 ca 3 problems total. Problem reports for tag 'sbni': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/100425 [sbni] [patch] sbni drivers does not work under 5.x 1 problem total. Problem reports for tag 'sched_ule': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/71421 jeff [sched_ule] [hang] filesystem operations lockups o kern/71827 jeff [sched_ule] [panic] Running java applications causes k o kern/72659 jeff [sched_ule] [patch] little bug in sched_ule interactiv o kern/73225 jeff [sched_ule] [panic] reproducable Page Fault o kern/78444 jeff [sched_ule] doesn't keep track of the sleep time of a o threa/80887 jeff [sched_ule] ULE with SMP broke libpthread/libthr on 5. o kern/85658 jeff [sched_ule] [patch] add DDB command, show runq, to sch o kern/104484 [sched_ule] A kernel with polling: the system freezes 8 problems total. Problem reports for tag 'scsi': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/7264 gibbs [scsi] Buslogic BT 950 scsi card not detected o kern/13141 se [scsi] Multiple LUN support in NCR driver is broken. o kern/78868 gibbs [scsi] Adaptec 29160 fails with IBM LTO-2 drive if dis o kern/96133 scsi [scsi] [patch] add scsi quirk for joyfly 128mb flash u 4 problems total. Problem reports for tag 'sf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/68623 [sf] [patch] sf(4) (Adaptec StarFire) multiple problem 1 problem total. Problem reports for tag 'sio': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/2298 [sio] [patch] support for DSR/DCD swapping on serial p o kern/20410 [sio] sio support for high speed NS16550A, ST16650A an o kern/26261 [sio] silo overflow problem in sio driver o kern/44267 [sio] [patch] One more modem PNP id for /usr/src/sys/i o kern/51982 [sio] sio1: interrupt-level buffer overflows o kern/65278 ups [sio] [patch] kgdb debugger port initialization destro o kern/81807 [sio] Silo overflows with serial multiport cards o kern/87845 imp [sio] [patch] sio(4) should on probe return BUS_PROBE_ o i386/89383 i386 [sio] [panic] page fault o kern/97665 [sio] hang in sio driver o i386/100831 i386 [sio] sio ignores BIOS information about serial ports o kern/109232 imp [sio][patch] ibufsize calculation wrong causing data l 12 problems total. Problem reports for tag 'sis': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/35442 [sis] [patch] Problem transmitting runts in if_sis dri o kern/35511 [sis] sis(4) multicast filtering doesn't pass some App o kern/36517 [sis] sis driver can't map ports/memory for NetGear FA o kern/64556 [sis] if_sis short cable fix problems with NetGear FA3 o kern/77631 [sis] sis network driver broken in 5.3 o kern/83807 [sis] [patch] if_sis: Wake On Lan support for FreeBSD o kern/89633 [sis] [panic] if_sis panic under extended load in 6.0- 7 problems total. Problem reports for tag 'sk': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/65817 [sk] [panic] kernel panic with GENERIC 5.2.1 and SysKo o kern/72997 [sk] Network performance down [6-CURRENT] f kern/96743 yongari [sk] [patch] broken 32-bit register operations f kern/101274 yongari [sk] [patch] SysKonnect Yukon initialization bug on K8 f kern/103090 yongari [sk] sys/dev/sk still having watchdog timeouts f kern/105375 yongari [sk] 2 x Marvell GBit LAN: device sk0 is attached, but 6 problems total. Problem reports for tag 'smbfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/36566 [smbfs] System reboot with dead smb mount and umount a kern/39043 [smbfs] Corrupted files on a FAT32 partition o kern/46017 [smbfs] smb mounts break /etc/periodic/weekly/310.loca o kern/55617 [smbfs] Accessing an nsmb-mounted drive via a smb expo o kern/61503 [smbfs] mount_smbfs does not work as non-root o kern/62746 tjr [smbfs] SMBFS and vfs.usermount. User cannot unmount o kern/65901 [smbfs] smbfs fails fsx write/truncate-down/truncate-u o kern/77958 [smbfs] can't delete read-only files via smbfs p kern/78953 [smbfs] [patch] smbfs getdirentries() failure causes C o kern/80088 [smbfs] Incorrect file time setting on NTFS mounted vi o kern/80469 [smbfs] mount_smbfs causes freebsd to reboot o kern/85042 [smbfs] mount_smbfs: can't get handle to requester (no o kern/85326 [smbfs] [panic] saving a file via samba to an overquot o kern/87859 [smbfs] System reboot while umount smbfs. o kern/88266 [smbfs] smbfs does not implement UIO_NOCOPY and sendfi o kern/88657 [smbfs] windows client hang when browsing a samba shar o kern/90815 [smbfs] [patch] SMBFS with character conversions somet o bin/91134 [smbfs] [patch] Preserve access and modification time f kern/93458 [smbfs] mount_smbfs(8) fails with authentication error o kern/94733 [smbfs] smbfs may cause double unlock f kern/99363 remko [smbfs] ïÛÉÂËÁ mount_smb o kern/101324 [smbfs] smbfs sometimes not case sensitive when it's s 22 problems total. Problem reports for tag 'smbus': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/100513 [smbus] Inconsistent definition of SMBus addresses in 1 problem total. Problem reports for tag 'smp': S Tracker Resp. Description -------------------------------------------------------------------------------- f i386/64626 remko [SMP] AP initialization problem on GIGABYTE GA-7DPXDW+ o kern/67830 [smp] [patch] CPU affinity problem with forked child p f i386/68754 remko [hang] [smp] SMP reset bug (Tyan Thunder100, 440BX chi o kern/74319 [smp] system reboots after few hours (5.3) o kern/77537 [smp] [hang] Conditional breakpoints hang on SMP machi o i386/81311 i386 [smp] [hang] Athlon MP SMP + 3ware + em0 = deadlock, n o amd64/87258 amd64 [smp] [boot] cannot boot with SMP and Areca ARC-1160 r o amd64/87305 amd64 [smp] Dual Opteron / FreeBSD 5 & 6 / powerd results in o kern/93461 [smp] Intel 440LX SMP freeze (regression vs. 4.X) o kern/97959 [smp] panic while booting SMP kernel 10 problems total. Problem reports for tag 'snd_csa': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/23546 tanimura [snd_csa] [patch] csa DMA-interrupt problem 1 problem total. Problem reports for tag 'snd_emu10k1': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/104874 multimedia [snd_emu10k1] kldload snd_emu10k1 hangs system 1 problem total. Problem reports for tag 'snd_ich': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/98496 multimedia [snd_ich] some functions don't work in my sound kernel f kern/99920 multimedia [snd_ich] Not support integrated audio on ICH7R chip ( o kern/100859 multimedia [snd_ich] snd_ich broken on GIGABYTE 915 system 3 problems total. Problem reports for tag 'snd_mss': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/83697 multimedia [snd_mss] [patch] support, docs added for full-duplex, o kern/97535 multimedia [snd_mss] doesn't work in 6.0-RELEASE and above for Cr o i386/105600 multimedia [snd_mss] can not detect PC-9821 V166 internal sound 3 problems total. Problem reports for tag 'snd_neomagic': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/94279 multimedia [snd_neomagic] snd_neomagic crashes on FreeBSD 5.4 and 1 problem total. Problem reports for tag 'snp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/47359 dd [snp] [panic] panic after kldunload snp 1 problem total. Problem reports for tag 'socket': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/21998 green [socket] [patch] ident only for outgoing connections o kern/66268 glebius [socket] [patch] Socket buffer resource limit (RLIMIT_ o kern/96268 [socket] TCP socket performance drops by 3000% if pack o kern/97921 rwatson [socket] close() socket deadlocks blocked threads 4 problems total. Problem reports for tag 'sound': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/37600 multimedia [sound] [partial patch] t4dwave drive doesn't record. f kern/59208 multimedia [sound] [patch] reduce pops and crackles and fix selec o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I o kern/63204 multimedia [sound] /dev/mixer broken with ESS Maestro-2E (still o o kern/72995 multimedia [sound] Intel ICH2 (82801BA) - sound nearly inaudible f kern/73987 multimedia [sound] Nforce2 MB sound problem o kern/79678 multimedia [sound] sound works except recording from any source o kern/79905 multimedia [sound] sis7018 sound module problem o kern/79912 multimedia [sound] sound broken for 2 VIA chipsets: interrupt sto o kern/80465 multimedia [sound] pcm0:record:0: record interrupt timeout (Acer o kern/81146 multimedia [sound] Sound isn't working AT ALL for Sis7012 onboard o kern/82043 multimedia [sound] snd_emu10k1 - mixer does not work. f kern/84311 multimedia [sound] 82801FB/FR/FW/FRW Intel High Definition Audio o kern/87782 multimedia [sound] snd_t4dwave and pcm0:record:0: record interrup f kern/88820 multimedia [sound] Erratic recognition of VIA 8285 sound card by o kern/90214 multimedia [sound] memory leaks in snd_via8233 o kern/92512 multimedia [sound] distorted mono output with emu10k1 f kern/92557 multimedia [sound] Contrary to 6.0 release notes, snd_csa does no o kern/95086 multimedia [sound] uaudio line in problem with sbdm lx o kern/96538 multimedia [sound] emu10k1-driver inverts channels o kern/97609 multimedia [sound] Load Sound Module - VIA8233 - fails o kern/98167 multimedia [sound] [es137x] [patch] ES1370 mixer volumes incorrec o kern/98504 multimedia [sound] Sound is distorted with SB Live 5.1 o kern/98752 multimedia [sound] Intel ich6 82801 FB - on Packard Bell A8810 la o kern/101417 multimedia [sound] 4-speakers output not possible on Asus A8V-Del f kern/104011 multimedia [sound] soundcard "82801G (ICH7 Family) High Definitio o kern/104626 multimedia [sound] FreeBSD 6.2 does not support SoundBlaster Audi o kern/107051 multimedia [sound] only 2 channels output works for the ALC850 (o 28 problems total. Problem reports for tag 'speaker': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/70610 i386 [speaker] [patch] spkr(4): hardcoded assumption HZ == 1 problem total. Problem reports for tag 'ste': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/99064 [ste] [patch] ste driver does not support IC Plus IP10 o kern/108150 [ste] [patch] ASUS NX1001 (if_ste) hardware support 2 problems total. Problem reports for tag 'svr4': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/91293 emulation [svr4] [patch] *Experimental* Update to the SVR4 emula 1 problem total. Problem reports for tag 'sym': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/27059 scsi [sym] SCSI subsystem hangs under heavy load on (Server o kern/60641 scsi [sym] Sporadic SCSI bus resets with 53C810 under load o kern/73289 [sym] Interrupt storm on sym0 o i386/88315 i386 [sym] [hang] Symbios/LSI-HBA (SYM83C895) hangs o kern/90282 scsi [sym] SCSI bus resets cause loss of ch device o kern/93128 scsi [sym] FreeBSD 6.1 BETA 1 has problems with Symbios/LSI 6 problems total. Problem reports for tag 'syscons': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/15436 [syscons] syscons extension: "propellers" o kern/31890 [syscons] [patch] new syscons font o kern/39252 [syscons] [patch] syscons doesn't support 8-bit contro o kern/46973 [syscons] [patch] syscons virtual terminals switching o kern/48599 [syscons] [patch] syscons cut-n-paste logic is broken o kern/72585 [syscons] [patch] iso05-8x16.fnt lacks letter q s bin/90082 matteo [syscons] [patch] curses ACS line graphics support for o kern/98788 [syscons] [patch] Add sysctl to disallow VT_LOCKSWITCH 8 problems total. Problem reports for tag 'sysctl': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/31490 [sysctl] [patch] Panic in sysctl_sysctl_next_ls on emp o kern/39681 [sysctl] [patch] add hidden kernel boot tunables to sy o kern/54439 [sysctl] [patch] Protecting sysctls variables by given o i386/73921 i386 [sysctl] [patch] sysctlbyname for machdep.tsc_freq doe o kern/91023 [sysctl] cpufreq/p4tcc: sysctl: dev.cpu.0.freq: Device o kern/99464 [sysctl] 'sysctl -a' panics at dev2udev 6 problems total. Problem reports for tag 'sysinstall': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/4646 [sysinstall] can't fixit with an NFS-mounted CD s bin/7232 [sysinstall] suggestion for FreeBSD installation dialo o bin/8867 [sysinstall] [patch] /stand/sysinstall core dumps (sig o bin/13936 [sysinstall] no clear indication of how much space to o bin/14318 [sysinstall] sysinstall upon install has some counter- o bin/15038 [sysinstall] easy to not notice that selection lists m o conf/16584 [sysinstall] Hostname field too small during install ( o bin/16948 [sysinstall] sysinstall/disklabel: bad partition table o bin/17546 [sysinstall] sysinstall does not let you configure NIS o bin/19837 ambrisko [sysinstall] [patch] run Fix It floppy from serial por o bin/20282 [sysinstall] sysinstall does not recover some /etc fil o bin/20391 jhb [sysinstall] sysinstall should check debug.boothowto s o bin/20908 [sysinstall] /stand/sysinstall too limited in selectio o bin/23098 [sysinstall] [patch] if installing on a serial console a bin/23402 [sysinstall] upgrade ought to check partition sizes o bin/26897 [sysinstall] 4.3R sysinstall fails to create swap part o bin/26919 [sysinstall] fdisk should ONLY set one bootable flag o bin/27216 [sysinstall] can not get to shell prompt from serial c f bin/27872 [sysinstall] "Load Config" hangs Compaq DL360 when use a bin/28081 [sysinstall] /stand/sysinstall errs out if /cdrom/ alr o bin/29375 [sysinstall] disk editor gets confused by slices that o bin/29893 [sysinstall] suggestions for 4.4 sysinstall o bin/30517 [sysinstall] using sysinstall with install.cfg has no o bin/30837 [sysinstall] sysinstall doesn't set the schg flag on t o bin/31363 [sysinstall] "partition editor" silently corrects part f bin/32144 [sysinstall] unattended install with sysinstall doesn' a bin/32375 [sysinstall] sysinstall doesn't respect User generated o bin/33370 [sysinstall] post-configuration issue o bin/35400 [sysinstall] sysinstall could improve manipulation of o bin/35925 [sysinstall] fixit floppy cannot be mounted on USB dri a bin/35985 [sysinstall] swap double mount o bin/36118 [sysinstall] 4.5 Upgrade says it won't touch /usr/src, o bin/36508 [sysinstall] installation floppy bug (4.5) o bin/36911 [sysinstall] installation floppies miss autoload file o bin/37160 [sysinstall] coredumps when trying to load package dat o bin/37710 [sysinstall] LAN interface in wrong state after attemp o bin/38055 [sysinstall] Groups (creation) item should be before U o bin/38056 [sysinstall] User (creation)'s "Member groups" item sh o bin/38057 [sysinstall] "install" document doesn't display correc o bin/38478 [sysinstall] In Choose Distributions screen, it's diff o bin/38480 [sysinstall] sysinstall should prompt for normal users o bin/38582 [sysinstall] sysinstall sets newfs flag after changing o bin/38609 [sysinstall] sysinstall should know the size of the va o bin/38610 [sysinstall] should be able to mount ISO images on DOS o bin/38854 [sysinstall] resetting during setup causes the target o bin/39360 [sysinstall] if linux emu is added as a dependency (an o bin/40260 [sysinstall] hang when detecting devices (No CD/DVD de o bin/40391 imp [sysinstall] sysinstall with PCCARD<->ISA bridge gets o bin/41238 [sysinstall] problems with FreeBSD installation on a d o bin/41850 [sysinstall] sysinstall fails to create root filesyste o bin/41949 [sysinstall] sysinstall sorts /etc/rc.conf during netb o bin/42022 [sysinstall] non-interactive mode prompts when only a o bin/42162 [sysinstall] installation crashes, md0c filled up. o bin/42934 [sysinstall] installation procedure on install floppie o bin/44915 [sysinstall] 'choose installation media' choose CD-ROM o bin/45254 [sysinstall] [patch] sysinstall installs things it sho o bin/45565 [sysinstall] write error, filesystem full o bin/45608 [sysinstall] install should config all ether devices, o bin/46235 rwatson [sysinstall] NTP servers for Finland require updating o bin/46670 [sysinstall] 5.0-RC2 install leaves CD drawer locked. o bin/46905 [sysinstall] FreeBSD 5.x cannot be installed from mult o bin/47384 [sysinstall] sysinstall ignores intended destination d f bin/48341 [sysinstall] sysinstall deletes mbr although it should o bin/48989 [sysinstall] Sysinstall's partition editor gets confu o bin/52271 [sysinstall] sysinstall panics in machine with no hard o bin/53131 [sysinstall] "ALL" could not turn check BOXes ON at pa o bin/53341 [sysinstall] [patch] dump frequency in sysinstall is a o bin/53839 [sysinstall] disklabel editor fails on post-install co o bin/58951 [sysinstall] some problems with 4.9-RELEASE installati o bin/59708 [sysinstall] [patch] add sSMTP support for Mail select o bin/60349 scottl [sysinstall] 5.2-RC1 cannot do NFS installation o bin/60350 [sysinstall] in Choose Distributions screen, "All" doe o bin/61152 [sysinstall] installer refuses to mount USB-floppy or o bin/61264 [sysinstall] unable To Use VT100 Terminal Emulator (Te o kern/61438 [sysinstall] 5.2 nfs tasks running by default after sy o bin/61587 [sysinstall] [patch] installation problem, disklabel c f i386/61603 remko [sysinstall] wrong geometry guessed o bin/61658 [sysinstall] 5.2R error "Add of package qt-3.2.1 abort o bin/61890 [sysinstall] fdisk(8) uses incorrect calculations for o bin/61937 [sysinstall] cannot install 5.2-REL via serial console o bin/62367 [sysinstall] 5.2.1-RC installation problems o bin/62375 [sysinstall] sysinstall core dump o bin/62702 [sysinstall] backup of /etc and /root during sysinstal o bin/62711 [sysinstall] installation: "Insert Next CD" Prompt is o bin/62833 [sysinstall] can't install: integer divide fault o bin/65546 [sysinstall] 4.10-BETA fails to install from NFS o bin/65774 [sysinstall] cannot run repair disk when booted from U o bin/66350 [sysinstall] sysinstall creates a partition of subtype o bin/66950 [sysinstall] upgrading to 4.10-RC3: package conflicts o bin/68047 [sysinstall] unattended install of FreeBSD 5.2.1 does o bin/69942 [sysinstall] sysinstall changes /etc/rc.conf after ins o bin/69986 [sysinstall] [patch] no job control in fixit shell on o bin/70002 [sysinstall] fails to locate FTP dirs if the OS has pa o bin/71323 [sysinstall] FTP download from floppy boot crashes wit o bin/72895 [sysinstall] Sysinstall generates invalid partition ta o sparc/72962 sparc64 [sysinstall] Sysinstall panics on sparc64 if /dev/cd0 o bin/73410 [sysinstall] Sysinstall could not allocate disklabel o bin/73511 [sysinstall] SCSI drive install failure - RC2 o bin/73617 [sysinstall] fdisk editor unmarks active partition o bin/78964 [sysinstall] can not write labels to hdd on installati o kern/79621 [sysinstall] sysinstall does not create a device when o bin/79910 [sysinstall] Cannot escape from failed port/package in o bin/80117 [sysinstall] [patch] smbfs install option for sysinsta o bin/81323 [sysinstall] Error in installation packages "write fai o bin/84208 [sysinstall] "Leave the MBR untouched" option not work o bin/84668 [sysinstall] ssh and sysinstall problem o bin/86454 [sysinstall] sysinstall terminates with signal 10 if I o bin/86600 [sysinstall] Sysinstall boot manager screen is mislead o bin/86665 [sysinstall] sysinstall binary upgrade clobbers named. o bin/86859 [sysinstall] Installer should ask about Linux earlier o bin/88826 [sysinstall] sysinstall infinity wait for da0 o bin/90656 [sysinstall] 6.0-RELEASE (i386) cannot be installed vi f bin/91205 [sysinstall] sysinstall package options should require o bin/93275 [sysinstall] Failure to install after restarting insta o bin/93284 secteam [sysinstall] Insecure placement of user ftp into opera o bin/94815 [patch] [sysinstall] Upping the network interface befo o bin/97108 [sysinstall] write failure on transfer (wrote -1 bytes o bin/97888 ceri [sysinstall] [patch] sysinstall - give 'distSetCustom' o bin/100436 [sysinstall] live CD fixit mount does not find mount_m a bin/101762 [sysinstall] Sysinstall does not obey /usr/ports symli o bin/102498 [sysinstall] Cursor doesn't track sysinstall hilight o bin/102638 [sysinstall] [patch] sysinstall - custom dist set alwa 122 problems total. Problem reports for tag 'tcp': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/92792 [tcp] kernel crash with high number of TCP connections o kern/93378 [tcp] Slow data transfer in Postfix and Cyrus IMAP (wo f kern/94020 andre [tcp] tcp_timer_2msl_tw NULL pointer dereference panic o kern/99188 andre [tcp] [patch] FIN in same packet as duplicate ACK is l 4 problems total. Problem reports for tag 'termcap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/108899 [termcap] [patch] termcap update for screen and linux 1 problem total. Problem reports for tag 'tftpd': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/100914 [tftpd] [patch] libexec/tftpd: write access control o bin/100921 [tftpd] [patch] libexec/tftpd: `-w' non-traditional ac 2 problems total. Problem reports for tag 'threads': S Tracker Resp. Description -------------------------------------------------------------------------------- s threa/39922 threads [threads] [patch] Threaded applications executed with o kern/91266 threads [threads] Trying sleep, but thread marked as sleeping 2 problems total. Problem reports for tag 'ti': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/40516 [ti] [patch] ti driver has no baudrate set o amd64/63188 amd64 [ti] ti(4) broken on amd64 2 problems total. Problem reports for tag 'tools': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/100322 [tools] [patch] kerninclude.sh doesn't dump object nam 1 problem total. Problem reports for tag 'trm': S Tracker Resp. Description -------------------------------------------------------------------------------- o sparc/105048 sparc64 [trm] trm(4) panics on sparc64 1 problem total. Problem reports for tag 'tty': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/89538 [tty] [panic] triggered by "sysctl -a" o kern/95288 [tty] [panic] panic in sys/kern/tty_subr.c putc() 2 problems total. Problem reports for tag 'twa': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/93394 [twa] boot loader hangs in boot-menu on second 8 on 3w o kern/106488 [twa] twa driver out of date 2 problems total. Problem reports for tag 'twe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/50201 [twe] 3ware RAID 5 resulting in data corruption o kern/61669 [twe] writing to 3ware escalade spends 90% of cpu in s o kern/66185 [twe] twe driver generates gratuitous warning on shutd o kern/70360 [twe] Random lock-ups with 3ware RAID 5 under FreeBSD o kern/72906 [twe] twe0 idefinite wait buffer 5 problems total. Problem reports for tag 'txp': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/62753 obrien [txp] [panic] txp(4) panics on amd4 o kern/89876 [txp] [patch] txp driver doesn't work with latest firm o kern/100839 [txp] txp driver inconsistently stops working when the 3 problems total. Problem reports for tag 'uart': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/106645 [uart] [patch] uart device description in 7-CURRENT is 1 problem total. Problem reports for tag 'ucom': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/83977 usb [ucom] [panic] ucom1: open bulk out error (addr 2): IN o kern/86763 [ucom] kernel: ucom0: ucomwritecb: IOERROR 2 problems total. Problem reports for tag 'udav': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/80776 usb [udav] UDAV device driver shouldn't use usb_add_task 1 problem total. Problem reports for tag 'udf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/60089 scottl [udf] UDF filesystem appends garbage to files f kern/65300 [udf] [patch] Can't use sendfile(2) to download files o kern/77234 [udf] [patch] corrupted data is read from UDF filesyst o kern/78987 scottl [udf] [patch] udf fs: readdir returns error when it sh o kern/90521 [udf] [patch] UDF driver might calculate a wrong descr o kern/97786 [udf] [patch] fs/udf: incorrect timestamps 6 problems total. Problem reports for tag 'ufs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/26323 [ufs] [patch] Quota system creates zero-length files o kern/48393 mckusick [ufs] ufs2 snapshot code bugs o kern/58373 mckusick [ufs] ufs inconsistency between 4.9-RC and 5.1 o bin/73019 [ufs] fsck_ufs: cannot alloc 607016868 bytes for inoin o amd64/89202 amd64 [ufs] [panic] Kernel crash when accessing filesystem w o kern/89991 [ufs] softupdates with mount -ur causes fs UNREFS o kern/91568 [ufs] [panic] writing to UFS/softupdates DVD media in o kern/91572 [ufs] [panic] writing to UFS/softupdates DVD media usi o kern/93435 [ufs] [panic] kernel panic after setting big value of f kern/94261 [ufs] deadlock between ffs_mksnap and mysnc o kern/94769 [ufs] Multiple file deletions on multi-snapshotted fil o kern/94849 [ufs] rename on UFS filesystem is not atomic o kern/99588 [ufs] UFS2 filesystems hang when doing "fsck -B" or "d o kern/104406 [ufs] Processes get stuck in "ufs" state under persist 14 problems total. Problem reports for tag 'ugen': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/53025 usb [ugen] [patch] ugen does not allow O_NONBLOCK for inte o usb/62309 usb [ugen] [panic] panic: ugen(4) driver o usb/68232 usb [ugen] [patch] ugen(4) isochronous handling correction o usb/81308 usb [ugen] [patch] polling a ugen(4) control endpoint caus o usb/94311 usb [ugen][PATCH] allow interrupt IN transactions to be af 5 problems total. Problem reports for tag 'uhid': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/63837 usb [uhid] [patch] USB: hid_is_collection() only looks for o usb/85992 usb [uhid] [patch] USB stops working when trying to read f 2 problems total. Problem reports for tag 'uhub': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/94946 usb [uhub][patch] code dynamic status size for status chan 1 problem total. Problem reports for tag 'ukbd': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/102066 usb [ukbd] usb keyboard and multimedia keys don't work 1 problem total. Problem reports for tag 'uma': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/85971 jeff [uma] [patch] minor optimization to uma 1 problem total. Problem reports for tag 'umapfs': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/74708 [umapfs] [panic] UMAPFS kernel panic 1 problem total. Problem reports for tag 'umass': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/57085 sanpei [umass] umass0 problems, with Sony Vio/USB memory stic f i386/70028 remko [umass] umass issue in the boot prcess on SONY Laptop o usb/71605 usb [umass] [patch] umass doesn't recognize multiple slots f usb/74358 usb [umass] unplugging at boot time an umass device crashe o usb/74771 usb [umass] mounting write-protected umass device as read/ o kern/75764 usb [umass] [patch] "umass0: Phase Error" - no device for o usb/76461 usb [umass] disklabel of umass(4)-CAM(4)-da(4) not used by o usb/79893 usb [umass] [patch] new usbdevs/umass quirks derived from o usb/84326 usb [umass] Panic trying to connect SCSI tape drive via US f usb/89997 usb [umass] [panic] panic on iPod mini detach f usb/91516 usb [umass] umass0 problems, with Freecom Classic SL Hard o usb/94742 usb [umass] [patch] umass driver does not recognise YANO e o kern/97174 [umass] [patch] Y-E DATA USB-FDU quirk: no synchronize o usb/107101 usb [umass] [patch] Quirk for Denver MP3 player o usb/107446 usb [umass] umass problems (usb and fw disks) 15 problems total. Problem reports for tag 'umodem': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/91546 usb [umodem] [patch] Nokia 6630 mobile phone does not work 1 problem total. Problem reports for tag 'ums': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/55555 usb [ums] system freezes with access to /dev/ums0 o kern/56250 [ums] [patch] ums(4) doesn't work with MCT based PS/2 o kern/103578 [ums] ums does not recognize mouse buttons 3 problems total. Problem reports for tag 'unionfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/75585 matteo [unionfs] mount -p on unionfs results in non parsable 1 problem total. Problem reports for tag 'uplcom': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/92403 usb [uplcom] uplcom.c needs new entry for 4.00 revision of o kern/95512 [uplcom] uplcom(4) causes system hangups o usb/107935 usb [uplcom] panic while accessing /dev/cuaU0 3 problems total. Problem reports for tag 'ural': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/88182 [ural] wep is broken in ural(4) hostap mode o kern/92083 usb [ural] [panic] panic using WPA on ural NIC in 6.0-RELE o kern/94373 [ural] if_ural.c:93: error: `USB_PRODUCT_LINKSYS4_HU20 o usb/104352 usb [ural] ural driver doesnt work 4 problems total. Problem reports for tag 'usb': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/30929 usb [usb] [patch] use usbd to initialize USB ADSL modem o usb/40948 usb [usb] USB HP CDW8200 does not work f usb/41415 usb [usb] [patch] Some USB scanners cannot talk to uscanne o kern/51958 usb [usb] [patch] update for urio driver o kern/52026 usb [usb] feature request: umass driver support for InSyst o usb/56095 usb [usb] [patch] QUIRK: Apacer Pen Drive fails to work o usb/61234 usb [usb] [patch] usbhidaction(1) doesn't support using an o usb/62088 usb [usb] Logitech Cordless/Optical Mouse not working o usb/63621 usb [usb] USB MemoryStick Reader stalls/crashes system o kern/65769 usb [usb] Call to tcflush(x, TCIFLUSH) stops input on usb- o kern/66547 usb [usb] Palm Tungsten T USB does not initialize correctl o usb/68412 usb [usb] [patch] QUIRK: Philips KEY013 USB MP3 player o usb/70523 usb [usb] [patch] umct sending/receiving wrong characters o usb/70942 usb [usb] Genius Wireless USB mouse: moused doesn't work c o usb/71155 usb [usb] misbehaving usb-printer hangs processes, causes o usb/71416 usb [usb] Cryptoflex e-gate USB token (ugen0) detach is no o usb/71417 usb [usb] Cryptoflex e-gate USB token (ugen0) communicatio o usb/71455 usb [usb] Slow USB umass performance of 5.3 o usb/72380 usb [usb] USB does not work [dual Celeron Abit] o usb/73056 usb [usb] Sun Microsystems Type 6 USB mouse not working in f usb/73553 usb [usb] Microsoft USB Internet Keyboard not recongized o usb/74609 usb [usb] [patch] allowing cdma modems to work at full spe o usb/74849 usb [usb] [patch] Samsung SPH-i500 does not attach properl o usb/74880 usb [usb] [patch] Samsung N400 cellphone/acm fails to atac f usb/79656 usb [usb] RHSC interrupts lost o usb/79722 usb [usb] wrong alignments in ehci.h o usb/79723 usb [usb] prepare for high speed isochronous transfers o usb/79725 usb [usb] [patch] USB device speed is not double-checked o usb/82350 usb [usb] null pointer dereference in USB stack o usb/82569 usb [usb] USB mass storage plug/unplug causes system panic o usb/83504 usb [usb] SpeedTouch USB stop working on recent current (a o usb/83677 usb [usb] usb controller often not detected (Sun W2100z) o usb/84336 usb [usb] [reboot] instant system reboot when unmounting a o usb/86767 usb [usb] bogus "slice starts beyond end of the disk:..." o usb/89954 usb [usb] USB Disk driver race condition? o usb/90162 usb [usb] [patch] Add support for the MS Wireless USB Mous o usb/95173 usb [usb] cannot mount external usb harddisk VIA Technolog o usb/96224 usb [usb] mount_msdosfs cause page fault in syncer process p usb/96546 usb [usb] [patch] Add support (quirk) for EasyMP3 EM732X U o i386/103025 usb [USB] the wrong in USB device for freeBSD 6.1 and AMD o usb/103418 usb [usb] [patch] usbhidctl: add ability to write output a f usb/104810 remko [usb] panic: ohci_add_done: addr 0x3fef1ba0 not found o usb/106621 usb [usb] DLINK DUB-E100 support broken o usb/107128 usb [usb] panic while accessing usb msdos flashkey o kern/107665 usb [usb] [patch] uscanner support for epson stylus DX5050 o usb/109274 usb [usb] MCP55 USB Controller fails to attach in AMD64 Cu 46 problems total. Problem reports for tag 'usbdevs': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/70362 sanpei [usbdevs] [patch] LaCie 160GB USB drive f usb/101043 flz [usbdevs] [patch] Add vendor "Sony Ericsson Mobile Com 2 problems total. Problem reports for tag 'usbgen': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/108097 usb [usbgen] [patch] ADMtek 851X USB-to-LAN adapter 1 problem total. Problem reports for tag 'vfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/55297 [vfs] [panic] kernel panic after running XFree86 o kern/68459 [vfs] [patch] Patches to mknod(2) behave more like Lin o kern/74976 [vfs] [panic] 5.3-STABLE: vn_finished_write triggered o kern/93942 [vfs] [patch] panic: ufs_dirbad: bad dir (patch from D o kern/94669 pjd [vfs] [patch] Panic from Failed Removable Media Mount 5 problems total. Problem reports for tag 'vga': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/64114 [vga] [patch] bad vertical refresh for console using R 1 problem total. Problem reports for tag 'vge': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/81644 [vge] vge(4) does not work properly when loaded as a K o kern/82497 [vge] vge(4) on AMD64 only works when loaded late, not o amd64/87316 amd64 [vge] "vge0 attach returned 6" on FreeBSD 6.0-RC1 amd6 o kern/106851 [vge] vge0: MII read timed out (regression) 4 problems total. Problem reports for tag 'vinum': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/47566 le [vinum] [patch] add vinum status verification to perio o kern/79035 le [vinum] gvinum unable to create a striped set of mirro 2 problems total. Problem reports for tag 'vm': S Tracker Resp. Description -------------------------------------------------------------------------------- s i386/22944 tegge [vm] [patch] isa_dmainit fails on machines with 512MB o kern/32659 [vm] [patch] vm and vnode leak with vm.swap_idle_enabl o kern/37554 jmg [vm] [patch] make ELF shared libraries immutable once o kern/70587 [vm] [patch] NULL pointer dereference in vm_pageout_sc o kern/71258 [vm] [patch] anonymous mmappings not always page align o kern/71792 [vm] [patch] Wrong/missing 'goto' target label in cont o kern/78179 [vm] [patch] bus_dmamem_alloc() with BUS_DMA_NOWAIT ca o kern/78946 [vm] vm_pageout_flush: partially invalid page 8 problems total. Problem reports for tag 'vn': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/44744 [vn] [patch] VN devices can hang system FreeBSD v4.5 1 problem total. Problem reports for tag 'vpd': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/67011 mdodd [vpd] [patch] MFC of vpd driver for IBM xSeries etc 1 problem total. Problem reports for tag 'vr': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/41138 [vr] vr0 locks up on one hub, OK on another o kern/78388 [vr] vr network drivers cause watchdog timeout o kern/87506 [vr] [patch] Fix alias support on vr interfaces o kern/89305 [vr] [patch] D-Link NIC with VIA Rhine II, lost of Net o kern/89864 [vr] [panic] if_vr panic under FreeBSD 6 o kern/90890 [vr] Problems with network: vr0: tx shutdown timeout o kern/93567 [vr] Via Rhine : Asymetric Bandwith o kern/94390 [vr] poor network performance after promiscuous mode i f kern/100499 remko [vr] vr interface stops transmitting o kern/103495 [vr] if_vr locks after carrier event o kern/109477 [vr] onboard via vt6103 ethernet does not work 11 problems total. Problem reports for tag 'wep': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/91364 [wep] WF-511 RT2500 Card PCI and WEP 1 problem total. Problem reports for tag 'wi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/39928 imp [wi] wi0 timeouts and hangs the system while sending d o kern/43625 imp [wi] wi(4) driver hangs after long data transfers o kern/59183 imp [wi] wi problems with wi_cmd o kern/69019 [wi] wlan stalling after 2-3 hrs of moderate traffic f i386/69722 remko [wi] wi0: init failed, Lucent Technologies WaveLAN/IEE o kern/72924 [wi] 4.10 wi driver timeout problem with Global Sun Te o kern/73871 [wi] Intersil Prism wireless wi0 locks up, "busy bit w o kern/74495 [wi] wi(4) wlan driver device freeze (5.3-STABLE) o kern/75254 [wi] [patch] PRISM3-based adapter ZCOM XI330 doesn't w o kern/75823 [wi] wi0 interface self-destructs after a couple hours o kern/77913 [wi] [patch] Add the APDL-325 WLAN pccard to wi(4) s kern/79323 [wi] authmod setup with ifconfig on dlink wlan card fa o kern/89688 [wi] wi0 cbb remove bug: Danger Will Robinson o i386/90065 i386 [wi] System hangs if wireless card wasn't disabled bef 14 problems total. Problem reports for tag 'wpa': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/98218 [wpa] wpa_supplicant blacklist not working 1 problem total. Problem reports for tag 'xe': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/78657 i386 [xe] [hang] error installing 5.3-RELEASE due to Compaq o kern/85266 [xe] [patch] xe(4) driver does not recognise Xircom XE o kern/97401 [xe] Xircom CreditCard Ethernet 10/100, attach returne 3 problems total. Problem reports for tag 'xl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/66564 [xl] 3c920-MV00 PHY detection problem f kern/76207 [xl] [patch] Null pointer dereference in xl_detach() o kern/77239 [xl] 3Com 3CXFEM656C does not seem to be supported by f kern/78791 [xl] xl(4) input errors and speed problem f kern/93791 [xl] xl0: watchdog timeout with 3CFE575BT 5 problems total. Problem reports for tag 'zlib': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/43616 [zlib] [patch] static-ize some functions in sys/net/zl 1 problem total. From owner-freebsd-bugs@FreeBSD.ORG Mon Feb 26 13:20:07 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 74EE316A400 for ; Mon, 26 Feb 2007 13:20:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 4BCBC13C491 for ; Mon, 26 Feb 2007 13:20:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1QDK7G8016386 for ; Mon, 26 Feb 2007 13:20:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1QDK7LF016385; Mon, 26 Feb 2007 13:20:07 GMT (envelope-from gnats) Resent-Date: Mon, 26 Feb 2007 13:20:07 GMT Resent-Message-Id: <200702261320.l1QDK7LF016385@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, Jeremie Le Hen Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8FF7D16A400 for ; Mon, 26 Feb 2007 13:19:18 +0000 (UTC) (envelope-from tataz@tataz.chchile.org) Received: from postfix1-g20.free.fr (postfix1-g20.free.fr [212.27.60.42]) by mx1.freebsd.org (Postfix) with ESMTP id 3120D13C47E for ; Mon, 26 Feb 2007 13:19:18 +0000 (UTC) (envelope-from tataz@tataz.chchile.org) Received: from smtp5-g19.free.fr (smtp5-g19.free.fr [212.27.42.35]) by postfix1-g20.free.fr (Postfix) with ESMTP id 1293FA9AE5B for ; Mon, 26 Feb 2007 13:56:43 +0100 (CET) Received: from tatooine.tataz.chchile.org (tataz.chchile.org [82.233.239.98]) by smtp5-g19.free.fr (Postfix) with ESMTP id 54B8235BCE for ; Mon, 26 Feb 2007 13:56:42 +0100 (CET) Received: from obiwan.tataz.chchile.org (unknown [192.168.1.25]) by tatooine.tataz.chchile.org (Postfix) with ESMTP id 86D469BF12 for ; Mon, 26 Feb 2007 12:58:33 +0000 (UTC) Received: by obiwan.tataz.chchile.org (Postfix, from userid 1000) id 787CC405B; Mon, 26 Feb 2007 13:58:33 +0100 (CET) Message-Id: <20070226125833.787CC405B@obiwan.tataz.chchile.org> Date: Mon, 26 Feb 2007 13:58:33 +0100 (CET) From: Jeremie Le Hen To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: conf/109562: [rc.d] [patch] Make rc.d/devfs usable from command-line X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jeremie Le Hen List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Feb 2007 13:20:07 -0000 >Number: 109562 >Category: conf >Synopsis: [rc.d] [patch] Make rc.d/devfs usable from command-line >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 Feb 26 13:20:06 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Jeremie Le Hen >Release: FreeBSD 7.0-CURRENT i386 >Organization: >Environment: FreeBSD jarjarbinks 7.0-CURRENT FreeBSD 7.0-CURRENT #23: Sun Feb 25 20:01:52 UTC 2007 root@jarjarbinks/usr/obj/usr/src/sys/JARJARBINKS i386 >Description: The attached patch allows to provide arguments to rc.d/devfs with the same syntax as $devfs_set_rulesets. This is then easier to mount manually devfs inside a directory and apply some predefined rulesets on it. Before this patch you had to manually apply rules to the devfs mount point, provided pre-configured rulesets had been loaded into the kernel (with rc.subr's devfs_init_rulesets()). Example: % mount_devfs none /space/chroot/dev % /etc/rc.d/devfs start /space/chroot/dev=devfsrules_jail >How-To-Repeat: >Fix: --- rc.d_devfs.patch begins here --- Index: devfs =================================================================== RCS file: /home/ncvs/src/etc/rc.d/devfs,v retrieving revision 1.12 diff -u -p -r1.12 devfs --- devfs 21 Jan 2006 14:31:45 -0000 1.12 +++ devfs 22 Feb 2007 08:04:16 -0000 @@ -14,8 +14,27 @@ name="devfs" start_cmd='devfs_start' stop_cmd=':' +set_rulesets() +{ + local _dir_set + local _dir + local _set + for _dir_set in "$@"; do + _dir=${_dir_set%=*} + _set=${_dir_set#*=} + devfs_set_ruleset $_set $_dir + devfs_apply_ruleset $_set $_dir + done +} + devfs_start() { + if [ $# -gt 0 ]; then + devfs_init_rulesets + set_rulesets "$@" + return + fi + if [ -n "$devfs_system_ruleset" -o -n "$devfs_set_rulesets" ]; then devfs_init_rulesets if [ -n "$devfs_system_ruleset" ]; then @@ -23,15 +42,7 @@ devfs_start() devfs_apply_ruleset $devfs_system_ruleset /dev fi if [ -n "$devfs_set_rulesets" ]; then - local _dir_set - local _dir - local _set - for _dir_set in $devfs_set_rulesets; do - _dir=${_dir_set%=*} - _set=${_dir_set#*=} - devfs_set_ruleset $_set $_dir - devfs_apply_ruleset $_set $_dir - done + set_rulesets "$devfs_set_rulesets" fi fi read_devfs_conf @@ -67,4 +78,4 @@ read_devfs_conf() } load_rc_config $name -run_rc_command "$1" +run_rc_command "$@" --- rc.d_devfs.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Feb 26 13:38:38 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DA4B216A404; Mon, 26 Feb 2007 13:38:38 +0000 (UTC) (envelope-from anders@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id B2C9A13C474; Mon, 26 Feb 2007 13:38:38 +0000 (UTC) (envelope-from anders@FreeBSD.org) Received: from freefall.freebsd.org (anders@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1QDccPM019178; Mon, 26 Feb 2007 13:38:38 GMT (envelope-from anders@freefall.freebsd.org) Received: (from anders@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1QDcbgx019174; Mon, 26 Feb 2007 13:38:37 GMT (envelope-from anders) Date: Mon, 26 Feb 2007 13:38:37 GMT From: Anders Nordby Message-Id: <200702261338.l1QDcbgx019174@freefall.freebsd.org> To: weijinhong@cjis.cn, anders@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/92090: [bge] bge0: watchdog timeout -- resetting X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Feb 2007 13:38:38 -0000 Synopsis: [bge] bge0: watchdog timeout -- resetting State-Changed-From-To: closed->open State-Changed-By: anders State-Changed-When: Mon Feb 26 13:38:09 UTC 2007 State-Changed-Why: This problem still exists. http://www.freebsd.org/cgi/query-pr.cgi?pr=92090 From owner-freebsd-bugs@FreeBSD.ORG Mon Feb 26 14:50:17 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6B03016A400 for ; Mon, 26 Feb 2007 14:50:17 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 3642F13C491 for ; Mon, 26 Feb 2007 14:50:17 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1QEoHAJ023348 for ; Mon, 26 Feb 2007 14:50:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1QEoGNJ023344; Mon, 26 Feb 2007 14:50:16 GMT (envelope-from gnats) Resent-Date: Mon, 26 Feb 2007 14:50:16 GMT Resent-Message-Id: <200702261450.l1QEoGNJ023344@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, "Oliver Lehmann" Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C797216A403 for ; Mon, 26 Feb 2007 14:47:55 +0000 (UTC) (envelope-from olivleh1@avocado.salatschuessel.net) Received: from avocado.salatschuessel.net (avocado.salatschuessel.net [83.136.81.184]) by mx1.freebsd.org (Postfix) with ESMTP id 2AFC113C494 for ; Mon, 26 Feb 2007 14:47:54 +0000 (UTC) (envelope-from olivleh1@avocado.salatschuessel.net) Received: (qmail 14766 invoked by uid 0); 26 Feb 2007 14:21:13 -0000 Message-Id: <20070226142113.14765.qmail@avocado.salatschuessel.net> Date: 26 Feb 2007 14:21:13 -0000 From: "Oliver Lehmann" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Oliver Lehmann Subject: bin/109567: gzip does not detect my packed file X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Oliver Lehmann List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Feb 2007 14:50:17 -0000 >Number: 109567 >Category: bin >Synopsis: gzip does not detect my packed file >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 Feb 26 14:50:15 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Oliver Lehmann - admin >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD avocado.salatschuessel.net 6.2-STABLE FreeBSD 6.2-STABLE #0: Mon Feb 26 11:50:46 CET 2007 olivleh1@avocado.salatschuessel.net:/usr/obj/usr/src/sys/AVOCADO i386 >Description: since 6.2-STABLE, the shipped FreeBSD gzip does not detect some of my zip files (old UNIX man pages) olivleh1@avocado .man> file scc.1.z scc.1.z: packed data, 6426 characters originally olivleh1@avocado .man> gzip --decompress --stdout scc.1.z gzip: scc.1.z: not in gzip format Exit 1 olivleh1@avocado .man> gzip --version FreeBSD gzip 20070126 olivleh1@avocado .man> /usr/local/bin/gzip --decompress --stdout scc.1.z |head -10 .TH SCC 1 .\" @[$]scc.1 1.2 .ad .fi .SH NAME scc \- segmentierter C-Compiler .SH SYNTAX .B scc [-\fBcDEIOpPSU\fR] \fIfile ...\fR .SH BESCHREIBUNG olivleh1@avocado .man> /usr/local/bin/gzip --version gzip 1.3.9 Copyright (C) 2006 Free Software Foundation, Inc. Copyright (C) 1993 Jean-loup Gailly. This is free software. You may redistribute copies of it under the terms of the GNU General Public License . There is NO WARRANTY, to the extent permitted by law. Written by Jean-loup Gailly. olivleh1@avocado .man> >How-To-Repeat: ?? >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Feb 26 16:30:07 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0749216A405 for ; Mon, 26 Feb 2007 16:30:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id C20E013C46B for ; Mon, 26 Feb 2007 16:30:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1QGU6TY028618 for ; Mon, 26 Feb 2007 16:30:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1QGU6Fn028617; Mon, 26 Feb 2007 16:30:06 GMT (envelope-from gnats) Resent-Date: Mon, 26 Feb 2007 16:30:06 GMT Resent-Message-Id: <200702261630.l1QGU6Fn028617@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, Andrea Brancatelli Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7903816A401 for ; Mon, 26 Feb 2007 16:20:33 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id 6A0FE13C481 for ; Mon, 26 Feb 2007 16:20:33 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l1QGKWNa035935 for ; Mon, 26 Feb 2007 16:20:33 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l1QGKWE5035895; Mon, 26 Feb 2007 16:20:32 GMT (envelope-from nobody) Message-Id: <200702261620.l1QGKWE5035895@www.freebsd.org> Date: Mon, 26 Feb 2007 16:20:32 GMT From: Andrea Brancatelli To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: misc/109569: "mail" command not parsing sendmail parameters X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Feb 2007 16:30:07 -0000 >Number: 109569 >Category: misc >Synopsis: "mail" command not parsing sendmail parameters >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 Feb 26 16:30:05 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Andrea Brancatelli >Release: 6.0-RELEASE >Organization: >Environment: FreeBSD cupido.sara.it 6.0-RELEASE FreeBSD 6.0-RELEASE #0: Thu Nov 3 09:36:13 UTC 2005 root@x64.samsco.home:/usr/obj/usr/src/sys/GENERIC i386 >Description: the man page for mail reports that by some extra arguments to sendmail can be passed from mail: NAME mail, Mail, mailx -- send and receive mail SYNOPSIS mail [-EiInv] [-s subject] [-c cc-addr] [-b bcc-addr] [-F] to-addr ... [-sendmail-option ...] mail [-EHiInNv] [-F] -f [name] mail [-EHiInNv] [-F] [-u user] mail -e [-f name] mail [-H] Apart from the man page being wrong (it should be -- -sendmail-option), the problem is that FreeBSD mail just ignore the latest parameter! Actually looking at http://www.freebsd.org/cgi/cvsweb.cgi/src/usr.bin/mail/main.c?rev=1.15&content-type=text/x-cvsweb-markup I had the idea that the code to pass stuff to sendmail is totally missing!?! >How-To-Repeat: just send a mail like mail someone@somewhere.it -- -r ovveride@return.path >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Feb 26 17:00:13 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8AF9816A406 for ; Mon, 26 Feb 2007 17:00:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 64DF613C481 for ; Mon, 26 Feb 2007 17:00:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1QH0Dcs031284 for ; Mon, 26 Feb 2007 17:00:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1QH0DJM031282; Mon, 26 Feb 2007 17:00:13 GMT (envelope-from gnats) Resent-Date: Mon, 26 Feb 2007 17:00:13 GMT Resent-Message-Id: <200702261700.l1QH0DJM031282@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, dhchen Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 05C8316A411 for ; Mon, 26 Feb 2007 16:55:59 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id DD48A13C4C4 for ; Mon, 26 Feb 2007 16:55:58 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l1QGtw7g002488 for ; Mon, 26 Feb 2007 16:55:58 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l1QGtw84002486; Mon, 26 Feb 2007 16:55:58 GMT (envelope-from nobody) Message-Id: <200702261655.l1QGtw84002486@www.freebsd.org> Date: Mon, 26 Feb 2007 16:55:58 GMT From: dhchen To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: kern/109571: kernel panic after update to newest -current kernel X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Feb 2007 17:00:13 -0000 >Number: 109571 >Category: kern >Synopsis: kernel panic after update to newest -current kernel >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 Feb 26 17:00:12 GMT 2007 >Closed-Date: >Last-Modified: >Originator: dhchen >Release: 7.0 current >Organization: >Environment: FreeBSD equinox.dhchen.com 7.0-CURRENT FreeBSD 7.0-CURRENT #4: Mon Jan 22 12:54:35 CST 2007 root@equinox.dhchen.com:/usr/obj/usr/src/sys/EQUINOX i386 >Description: On a kernel build at Jan 22, everything goes fine. On a kernel built with recent source (I csuped at about 200702261610 GMT), kernel panics at booting. If the machine is attached with a usb keyboard, kernel will panic after: Timecounter "TSC" frequency 1399850815 Hz quality 800 Timecounters tick every 1.000 msec line, and no crash dump avaliable. If I boot machine without usb keyboard, it will enter /etc/rc script and when setting ip address, kernel panics again. The backtrace: .. orm0: at iomem 0xc0000-0xce7ff,0xd0000-0xd0fff,0xd1000-0xd1fff pnpid ORM0000 on is a0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: irq 1 on atkbdc0 atkbd0: [GIANT-LOCKED] atkbd0: [ITHREAD] sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 Timecounter "TSC" frequency 1399846538 Hz quality 800 Timecounters tick every 1.000 msec ad0: 117800MB at ata0-master UDMA100 ad4: 238475MB at ata2-master SATA150 Trying to mount root from ufs:/dev/ad4s1a <118>Loading configuration files. <118>kernel dumps on /dev/ad4s1b <118>Entropy harvesting: <118> interrupts <118> ethernet <118> point_to_point <118> kickstart <118>. <118>swapon: adding /dev/ad4s1b as swap device <118>Starting file system checks: <118>/dev/ad4s1a: FILE SYSTEM CLEAN; SKIPPING CHECKS <118>/dev/ad4s1a: clean, 87593 free (1961 frags, 10704 blocks, 0.8% fragmentation) <118>/dev/ad4s1f: FILE SYSTEM CLEAN; SKIPPING CHECKS <118>/dev/ad4s1f: clean, 13837405 free (34925 frags, 1725310 blocks, 0.2% fragmentation) <118>/dev/ad4s1g: FILE SYSTEM CLEAN; SKIPPING CHECKS <118>/dev/ad4s1g: clean, 34009610 free (2266 frags, 4250918 blocks, 0.0% fragmentation) <118>/dev/ad4s1d: FILE SYSTEM CLEAN; SKIPPING CHECKS <118>/dev/ad4s1d: clean, 1295324 free (103764 frags, 148945 blocks, 3.4% fragmentation) <118>/dev/ad4s1e: FILE SYSTEM CLEAN; SKIPPING CHECKS <118>/dev/ad4s1e: clean, 50916 free (884 frags, 6254 blocks, 0.7% fragmentation) <118>Mounting local file systems: <118>. <118>Setting hostname: equinox.dhchen.com. <118>net.inet6.ip6.auto_linklocal: <118>1 <118> -> <118>0 <118> module_register: module msk/miibus already exists! Module msk/miibus failed to register: 17 module_register: module mskc/msk already exists! Module mskc/msk failed to register: 17 module_register: module pci/mskc already exists! Module pci/mskc failed to register: 17 module_register: module msk/miibus already exists! Module msk/miibus failed to register: 17 module_register: module mskc/msk already exists! Module mskc/msk failed to register: 17 module_register: module pci/mskc already exists! Module pci/mskc failed to register: 17 module_register: module msk/miibus already exists! Module msk/miibus failed to register: 17 module_register: module mskc/msk already exists! Module mskc/msk failed to register: 17 module_register: module pci/mskc already exists! Module pci/mskc failed to register: 17 module_register: module msk/miibus already exists! Module msk/miibus failed to register: 17 module_register: module mskc/msk already exists! Module mskc/msk failed to register: 17 module_register: module pci/mskc already exists! Module pci/mskc failed to register: 17 module_register: module fxp/miibus already exists! Module fxp/miibus failed to register: 17 module_register: module cardbus/fxp already exists! Module cardbus/fxp failed to register: 17 module_register: module pci/fxp already exists! Module pci/fxp failed to register: 17 Fatal trap 12: page fault while in kernel mode fault virtual address = 0x0 fault code = supervisor read, page not present instruction pointer = 0x20:0x0 stack pointer = 0x28:0xd521fca8 frame pointer = 0x28:0xd521fcd0 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 30 (irq12: mskc1 fxp1) trap number = 12 panic: page fault KDB: stack backtrace: db_trace_self_wrapper(c06db468,d521fb58,c0533917,c06d996e,c0744b80,...) at db_trace_self_wrapper+0x26 kdb_backtrace(c06d996e,c0744b80,c06cd240,d521fb64,100,...) at kdb_backtrace+0x2e panic(c06cd240,c06ee968,c2a0a1b0,1,1,...) at panic+0xb7 trap_fatal(d521fc68,0,1,0,0,...) at trap_fatal+0x342 trap_pfault(d521fc68,0,0,306173,0,...) at trap_pfault+0x225 trap(d521fc68) at trap+0x3dc calltrap() at calltrap+0x6 --- trap 0xc, eip = 0, esp = 0xd521fca8, ebp = 0xd521fcd0 --- (null)(c2a0a000,c28df680,c2a0a000,c2a07bd0,c2abb330,...) at 0 ithread_loop(c2abb330,d521fd38,38373635,3c3b3a39,403f3e3d,...) at ithread_loop+0x76 fork_exit(c05197a0,c2abb330,d521fd38) at fork_exit+0x80 fork_trampoline() at fork_trampoline+0x8 --- trap 0, eip = 0, esp = 0xd521fd70, ebp = 0 --- Uptime: 2s Physical memory: 494 MB Dumping 37 MB: 22 6 #0 doadump () at pcpu.h:147 147 __asm __volatile("movl %%fs:0,%0" : "=r" (td)); (kgdb) bt full #0 doadump () at pcpu.h:147 No locals. #1 0xc0533646 in boot (howto=260) at /usr/src/sys/kern/kern_shutdown.c:411 first_buf_printf = 1 #2 0xc05339ad in panic (fmt=0xc06cd240 "%s") at /usr/src/sys/kern/kern_shutdown.c:567 td = (struct thread *) 0xc2a07bd0 bootopt = 256 newpanic = 1 ap = 0xc2a07bd0 "" buf = "page fault", '\0' #3 0xc06a8c22 in trap_fatal (frame=0xd521fc68, eva=0) at /usr/src/sys/i386/i386/trap.c:868 code = 0 type = 12 ss = 40 esp = 0 softseg = {ssd_base = 0, ssd_limit = 1048575, ssd_type = 27, ssd_dpl = 0, ssd_p = 1, ssd_xx = 9, ssd_xx1 = 2, ssd_def32 = 1, ssd_gran = 1} msg = 0x0 #4 0xc06a88b5 in trap_pfault (frame=0xd521fc68, usermode=0, eva=0) at /usr/src/sys/i386/i386/trap.c:777 va = 0 vm = (struct vmspace *) 0x0 map = 0x1 rv = 1 ftype = 1 '\001' td = (struct thread *) 0xc2a07bd0 p = (struct proc *) 0xc2a0a000 #5 0xc06a842c in trap (frame=0xd521fc68) at /usr/src/sys/i386/i386/trap.c:462 td = (struct thread *) 0xc2a07bd0 p = (struct proc *) 0xc2a0a000 i = 0 ucode = 0 type = 12 code = 0 addr = 0 eva = 0 ksi = {ksi_link = {tqe_next = 0xc2adc8c0, tqe_prev = 0x0}, ksi_info = {si_signo = 0, si_errno = 0, si_code = 1145653248, si_pid = 0, si_uid = 0, si_status = 0, si_addr = 0xc2adc900, si_value = {sival_int = 0, sival_ptr = 0x0}, _reason = {_fault = { _trapno = -1028805548}, _timer = {_timerid = -1028805548, _overrun = 0}, _mesgq = { _mqd = -1028805548}, _poll = {_band = -1028805548}, __spare__ = {__spare1__ = -1028805548, __spare2__ = {0, 1918988325, 7630437, 0, 0, 1701994864, 1663071342}}}}, ksi_flags = 1936941420, ksi_sigq = 0x0} #6 0xc06961fb in calltrap () at /usr/src/sys/i386/i386/exception.s:139 No locals. #7 0x00000000 in ?? () No symbol table info available. Previous frame inner to this frame (corrupt stack?) Machine hardware: dmesg from successful boot using Jan 22's kernel: Copyright (c) 1992-2007 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 is a registered trademark of The FreeBSD Foundation. FreeBSD 7.0-CURRENT #4: Mon Jan 22 12:54:35 CST 2007 root@equinox.dhchen.com:/usr/obj/usr/src/sys/EQUINOX Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: Intel(R) Celeron(R) M processor 1.40GHz (1399.85-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x6d8 Stepping = 8 Features=0xafe9fbff AMD Features=0x100000 real memory = 527302656 (502 MB) avail memory = 506507264 (483 MB) acpi0: on motherboard acpi_bus_number: can't get _ADR acpi_bus_number: can't get _ADR acpi_bus_number: can't get _ADR acpi_bus_number: can't get _ADR acpi0: Power Button (fixed) Timecounter "ACPI-safe" frequency 3579545 Hz quality 1000 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x408-0x40b on acpi0 cpu0: on acpi0 p4tcc0: on cpu0 acpi_button0: on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 vgapci0: port 0xe400-0xe407 mem 0xd0600000-0xd067ffff,0xc0000000-0xcfffffff,0xd0680000-0xd06bffff irq 10 at device 2.0 on pci0 agp0: on vgapci0 agp0: detected 7932k stolen memory agp0: aperture size is 256M pci0: at device 27.0 (no driver attached) pcib1: irq 10 at device 28.0 on pci0 pci1: on pcib1 mskc0: port 0xb000-0xb0ff mem 0xd0020000-0xd0023fff irq 10 at device 0.0 on pci1 msk0: on mskc0 msk0: Ethernet address: 00:13:d3:50:f5:b9 miibus0: on msk0 e1000phy0: PHY 0 on miibus0 e1000phy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseTX-FDX, auto mskc0: [FAST] pcib2: irq 12 at device 28.1 on pci0 pci2: on pcib2 mskc1: port 0xc000-0xc0ff mem 0xd0120000-0xd0123fff irq 12 at device 0.0 on pci2 msk1: on mskc1 msk1: Ethernet address: 00:13:d3:50:f5:b8 miibus1: on msk1 e1000phy1: PHY 0 on miibus1 e1000phy1: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseTX-FDX, auto mskc1: [FAST] pci0: at device 29.0 (no driver attached) pci0: at device 29.1 (no driver attached) pci0: at device 29.2 (no driver attached) pci0: at device 29.3 (no driver attached) pci0: at device 29.7 (no driver attached) pcib3: at device 30.0 on pci0 pci3: on pcib3 fxp0: port 0xd000-0xd03f mem 0xd0500000-0xd0500fff,0xd0200000-0xd02fffff irq 10 at device 0.0 on pci3 miibus2: on fxp0 inphy0: PHY 1 on miibus2 inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto fxp0: Ethernet address: 00:02:b3:07:08:94 fxp1: port 0xd100-0xd13f mem 0xd0502000-0xd0502fff,0xd0300000-0xd03fffff irq 12 at device 1.0 on pci3 miibus3: on fxp1 inphy1: PHY 1 on miibus3 inphy1: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto fxp1: Ethernet address: 00:02:b3:0c:21:b3 pci3: at device 9.0 (no driver attached) isab0: at device 31.0 on pci0 isa0: on isab0 atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xf000-0xf00f at device 31.1 on pci0 ata0: on atapci0 ata1: on atapci0 atapci1: port 0xe500-0xe507,0xe600-0xe603,0xe700-0xe707,0xe800-0xe803,0xe900-0xe90f irq 11 at device 31.2 on pci0 ata2: on atapci1 ata3: on atapci1 ichsmb0: port 0x500-0x51f irq 11 at device 31.3 on pci0 ichsmb0: [GIANT-LOCKED] smbus0: on ichsmb0 smb0: on smbus0 acpi_tz0: on acpi0 sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 sio0: type 16550A sio0: [FAST] sio1: <16550A-compatible COM port> port 0x2f8-0x2ff irq 3 on acpi0 sio1: type 16550A sio1: [FAST] orm0: at iomem 0xc0000-0xce7ff,0xd0000-0xd0fff,0xd1000-0xd1fff pnpid ORM0000 on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: irq 1 on atkbdc0 atkbd0: [GIANT-LOCKED] Timecounter "TSC" frequency 1399850815 Hz quality 800 Timecounters tick every 1.000 msec ad0: 117800MB at ata0-master UDMA100 ad4: 238475MB at ata2-master SATA150 Trying to mount root from ufs:/dev/ad4s1a >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Feb 26 20:50:24 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EF26716A402 for ; Mon, 26 Feb 2007 20:50:24 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 956FF13C4B3 for ; Mon, 26 Feb 2007 20:50:24 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1QKoO40047100 for ; Mon, 26 Feb 2007 20:50:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1QKoOIX047099; Mon, 26 Feb 2007 20:50:24 GMT (envelope-from gnats) Date: Mon, 26 Feb 2007 20:50:24 GMT Message-Id: <200702262050.l1QKoOIX047099@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: linimon@lonesome.com (Mark Linimon) Cc: Subject: Re: kern/109477: [vr] onboard via vt6103 ethernet does not work X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Mark Linimon List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Feb 2007 20:50:25 -0000 The following reply was made to PR kern/109477; it has been noted by GNATS. From: linimon@lonesome.com (Mark Linimon) To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: kern/109477: [vr] onboard via vt6103 ethernet does not work Date: Mon, 26 Feb 2007 14:46:28 -0600 The following diff fixed the problem for me. __FBSDID("$FreeBSD: src/sys/pci/if_vr.c,v 1.104.2.6 2006/03/17 21:30:57 glebius Exp $"); *** if_vr.c~ Mon Feb 26 11:21:43 2007 --- if_vr.c Mon Feb 26 11:22:43 2007 *************** *** 457,462 **** --- 457,463 ---- switch (sc->vr_revid) { case REV_ID_VT6102_APOLLO: + case 0x78: if (phy != 1) { frame.mii_data = 0; goto out; *************** *** 482,487 **** --- 483,489 ---- switch (sc->vr_revid) { case REV_ID_VT6102_APOLLO: + case 0x78: if (phy != 1) return (0); default: From owner-freebsd-bugs@FreeBSD.ORG Mon Feb 26 21:02:29 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C9B3216A400; Mon, 26 Feb 2007 21:02:29 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id A03A913C467; Mon, 26 Feb 2007 21:02:29 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1QL2TqF048231; Mon, 26 Feb 2007 21:02:29 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1QL2THC048226; Mon, 26 Feb 2007 21:02:29 GMT (envelope-from linimon) Date: Mon, 26 Feb 2007 21:02:29 GMT From: Mark Linimon Message-Id: <200702262102.l1QL2THC048226@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-rc@FreeBSD.org Cc: Subject: Re: conf/109562: [rc.d] [patch] Make rc.d/devfs usable from command-line X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Feb 2007 21:02:29 -0000 Synopsis: [rc.d] [patch] Make rc.d/devfs usable from command-line Responsible-Changed-From-To: freebsd-bugs->freebsd-rc Responsible-Changed-By: linimon Responsible-Changed-When: Mon Feb 26 21:02:04 UTC 2007 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=109562 From owner-freebsd-bugs@FreeBSD.ORG Tue Feb 27 03:19:35 2007 Return-Path: X-Original-To: freebsd-bugs@FreeBSD.org Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7972916A400 for ; Tue, 27 Feb 2007 03:19:35 +0000 (UTC) (envelope-from blyon@util2.sjc1.bitgravity.com) Received: from util2.sjc1.bitgravity.com (util2.sjc1.bitgravity.com [208.67.233.36]) by mx1.freebsd.org (Postfix) with ESMTP id 6C80B13C467 for ; Tue, 27 Feb 2007 03:19:35 +0000 (UTC) (envelope-from blyon@util2.sjc1.bitgravity.com) Received: from [209.131.110.199] by util2.sjc1.bitgravity.com with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.63 (FreeBSD)) (envelope-from ) id 1HLsJt-000ItD-N0; Mon, 26 Feb 2007 18:44:01 -0800 Mime-Version: 1.0 (Apple Message framework v752.3) Content-Transfer-Encoding: 7bit Message-Id: Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed To: freebsd-bugs@FreeBSD.org, littlesavage@orionet.ru From: Barrett Lyon Date: Mon, 26 Feb 2007 18:43:21 -0800 X-Mailer: Apple Mail (2.752.3) Sender: blyon@util2.sjc1.bitgravity.com Cc: Subject: kern/106243: [nve] double fault panic in if_nve.c on high loads X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Feb 2007 03:19:35 -0000 On FreeBSD 6.2-STABLE I am experiencing a crash every time the NVE adapter takes a load of 20-30Mbps. The crash dump analysis on the previous posting is a mirror image to mine. Here's a little info on the adapter: nve0: port 0xbc00-0xbc07 mem 0xfa3ff000-0xfa3fffff irq 22 at device 10.0 on pci0 The network adapter is useless to me given the level of crashes it produces and because it's on board and my other slots are in use, I will have to replace the motherboard due to this bug. Does anyone have any feedback on this? -Barrett From owner-freebsd-bugs@FreeBSD.ORG Tue Feb 27 06:54:53 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6833716A403; Tue, 27 Feb 2007 06:54:53 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 42DAA13C461; Tue, 27 Feb 2007 06:54:53 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (remko@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1R6sLWu084744; Tue, 27 Feb 2007 06:54:21 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1R6sLi7084740; Tue, 27 Feb 2007 06:54:21 GMT (envelope-from remko) Date: Tue, 27 Feb 2007 06:54:21 GMT From: Remko Lodder Message-Id: <200702270654.l1R6sLi7084740@freefall.freebsd.org> To: remko@FreeBSD.org, freebsd-bugs@FreeBSD.org, remko@FreeBSD.org Cc: Subject: Re: kern/109477: [vr] onboard via vt6103 ethernet does not work X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Feb 2007 06:54:53 -0000 Synopsis: [vr] onboard via vt6103 ethernet does not work Responsible-Changed-From-To: freebsd-bugs->remko Responsible-Changed-By: remko Responsible-Changed-When: Tue Feb 27 06:54:20 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=109477 From owner-freebsd-bugs@FreeBSD.ORG Tue Feb 27 13:10:06 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E5D6B16A400 for ; Tue, 27 Feb 2007 13:10:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id B8CAD13C4B6 for ; Tue, 27 Feb 2007 13:10:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1RDA6ep010013 for ; Tue, 27 Feb 2007 13:10:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1RDA6nh010012; Tue, 27 Feb 2007 13:10:06 GMT (envelope-from gnats) Resent-Date: Tue, 27 Feb 2007 13:10:06 GMT Resent-Message-Id: <200702271310.l1RDA6nh010012@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, Watanabe Kazuhiro Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 07F4E16A401 for ; Tue, 27 Feb 2007 13:02:47 +0000 (UTC) (envelope-from CQG00620@nifty.ne.jp) Received: from mail.asahi-net.or.jp (mail1.asahi-net.or.jp [202.224.39.197]) by mx1.freebsd.org (Postfix) with ESMTP id 3C29D13C471 for ; Tue, 27 Feb 2007 13:02:46 +0000 (UTC) (envelope-from CQG00620@nifty.ne.jp) Received: from asahi-net.jp (h205095.ppp.asahi-net.or.jp [61.114.205.95]) by mail.asahi-net.or.jp (Postfix) with ESMTP id 1269A2EBBC for ; Tue, 27 Feb 2007 21:44:38 +0900 (JST) Message-Id: <20070227124438.1269A2EBBC@mail.asahi-net.or.jp> Date: Tue, 27 Feb 2007 21:44:33 +0900 From: Watanabe Kazuhiro To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: kern/109599: [patch] Cannot control treble/bass functions on YAMAHA YMF753 AC97 codec X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Watanabe Kazuhiro List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Feb 2007 13:10:07 -0000 >Number: 109599 >Category: kern >Synopsis: [patch] Cannot control treble/bass functions on YAMAHA YMF753 AC97 codec >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 27 13:10:05 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Watanabe Kazuhiro >Release: FreeBSD 7.0-CURRENT i386 >Organization: >Environment: System: FreeBSD capricorn.sign.local 7.0-CURRENT FreeBSD 7.0-CURRENT #3: Mon Feb 26 16:31:22 JST 2007 nabe@capricorn:/FreeBSD/obj/FreeBSD/HEAD/src/sys/GENERIC i386 Sound: SiS 7012 ICH controller with YAMAHA YMF753 AC97 codec >Description: I have a PC which uses SiS 7012 ICH controller with YAMAHA YMF753 AC'97 codec. It works well with snd_ich driver, but cannot control the treble/bass functions. YAMAHA AC'97 codecs (YMF743/752/753) has treble/bass and 3D enhancement functions. YMF743 and YMF753 has both functions, and YMF752 have only 3D control. But these functions are not indicated in the Reset register (0x00). * AC'97 Component Specification Revision 2.2, p.50 http://www.alsa-project.org/alsa/ftp/manuals/intel/ac97r22.pdf * YAMAHA YMF753 datasheet, p.6 http://www.yamaha.co.jp/english/product/lsi/us/products/pdf/4MF753A20.pdf >How-To-Repeat: * before applied the patch: $ cat /dev/sndstat FreeBSD Audio Driver (newpcm: 32bit) Installed devices: pcm0: at io 0x1400, 0x1080 irq 18 bufsz 16384 kld snd_ich (1p/1r/1v c hannels duplex default) $ dmesg | grep ^pcm pcm0: port 0x1400-0x14ff,0x1080-0x10ff irq 18 at device 2.7 on pci0 pcm0: Reserved 0x100 bytes for rid 0x10 type 4 at 0x1400 pcm0: Reserved 0x80 bytes for rid 0x14 type 4 at 0x1080 pcm0: [MPSAFE] pcm0: [ITHREAD] pcm0: pcm0: Codec features 18 bit DAC, 5 bit master volume, no 3D Stereo Enhancement pcm0: Primary codec extended features reserved 1, AMAP, reserved 4 pcm0: ac97 codec dac ready count: 0 pcm0: Mixer "vol": pcm0: Mixer "pcm": pcm0: Mixer "speaker": pcm0: Mixer "line": pcm0: Mixer "mic": pcm0: Mixer "cd": pcm0: Mixer "rec": pcm0: Mixer "igain": pcm0: Mixer "line1": pcm0: Mixer "phin": pcm0: Mixer "phout": pcm0: Mixer "video": pcm0: sndbuf_setmap e9f6000, 4000; 0xcbf08000 -> e9f6000 pcm0: sndbuf_setmap e9f2000, 4000; 0xcbf0c000 -> e9f2000 pcm0: measured ac97 link rate at 48021 Hz, will use 48000 Hz $ mixer Mixer vol is currently set to 75:75 Mixer pcm is currently set to 75:75 Mixer speaker is currently set to 75:75 Mixer line is currently set to 75:75 Mixer mic is currently set to 0:0 Mixer cd is currently set to 75:75 Mixer rec is currently set to 0:0 Mixer igain is currently set to 0:0 Mixer line1 is currently set to 75:75 Mixer phin is currently set to 0:0 Mixer phout is currently set to 0:0 Mixer video is currently set to 75:75 Recording source: mic * after applied the patch: $ dmesg | grep ^pcm pcm0: port 0x1400-0x14ff,0x1080-0x10ff irq 18 at device 2.7 on pci0 pcm0: Reserved 0x100 bytes for rid 0x10 type 4 at 0x1400 pcm0: Reserved 0x80 bytes for rid 0x14 type 4 at 0x1080 pcm0: [MPSAFE] pcm0: [ITHREAD] pcm0: pcm0: Codec features tone, 18 bit DAC, 5 bit master volume, Yamaha Ymersion pcm0: Primary codec extended features reserved 1, AMAP, reserved 4 pcm0: ac97 codec dac ready count: 0 pcm0: Mixer "vol": pcm0: Mixer "bass": pcm0: Mixer "treble": pcm0: Mixer "pcm": pcm0: Mixer "speaker": pcm0: Mixer "line": pcm0: Mixer "mic": pcm0: Mixer "cd": pcm0: Mixer "rec": pcm0: Mixer "igain": pcm0: Mixer "line1": pcm0: Mixer "phin": pcm0: Mixer "phout": pcm0: Mixer "video": pcm0: sndbuf_setmap e9f6000, 4000; 0xcbf08000 -> e9f6000 pcm0: sndbuf_setmap e9f2000, 4000; 0xcbf0c000 -> e9f2000 pcm0: measured ac97 link rate at 48013 Hz, will use 48000 Hz >Fix: This patch has tested on 7-current (and 6.2-RELEASE). Index: sys/dev/sound/pcm/ac97.c =================================================================== RCS file: /home/ncvs/src/sys/dev/sound/pcm/ac97.c,v retrieving revision 1.64 diff -u -r1.64 ac97.c --- sys/dev/sound/pcm/ac97.c 26 Nov 2006 12:24:05 -0000 1.64 +++ sys/dev/sound/pcm/ac97.c 27 Feb 2007 08:24:36 -0000 @@ -538,6 +538,23 @@ static void ac97_fix_tone(struct ac97_info *codec) { + /* + * YMF chips does not indicate tone and 3D enhancement capability + * in the AC97_REG_RESET register. + */ + switch (codec->id) { + case 0x594d4800: /* YMF743 */ + case 0x594d4803: /* YMF753 */ + codec->caps |= AC97_CAP_TONE; + codec->se |= 0x04; + break; + case 0x594d4802: /* YMF752 */ + codec->se |= 0x04; + break; + default: + break; + } + /* Hide treble and bass if they don't exist */ if ((codec->caps & AC97_CAP_TONE) == 0) { bzero(&codec->mix[SOUND_MIXER_BASS], This code should be pushed out to a patch function (e.g. ymf_patch()). But the patch function (codec_patch) is called after ac97_fix_tone(). So it is a little difficult. The similar code is also appeared in the ALSA driver. http://alsa.cvs.sourceforge.net/alsa/alsa-kernel/pci/ac97/ac97_patch.c?r1=1.5&r2=1.6 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Feb 27 13:17:25 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A080916A401; Tue, 27 Feb 2007 13:17:25 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 69A7E13C47E; Tue, 27 Feb 2007 13:17:25 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (remko@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1RDHP15010685; Tue, 27 Feb 2007 13:17:25 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1RDHP9t010681; Tue, 27 Feb 2007 13:17:25 GMT (envelope-from remko) Date: Tue, 27 Feb 2007 13:17:25 GMT From: Remko Lodder Message-Id: <200702271317.l1RDHP9t010681@freefall.freebsd.org> To: remko@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-multimedia@FreeBSD.org Cc: Subject: Re: kern/109599: [patch] Cannot control treble/bass functions on YAMAHA YMF753 AC97 codec X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Feb 2007 13:17:25 -0000 Synopsis: [patch] Cannot control treble/bass functions on YAMAHA YMF753 AC97 codec Responsible-Changed-From-To: freebsd-bugs->freebsd-multimedia Responsible-Changed-By: remko Responsible-Changed-When: Tue Feb 27 13:17:09 UTC 2007 Responsible-Changed-Why: Reassign to multimedia team http://www.freebsd.org/cgi/query-pr.cgi?pr=109599 From owner-freebsd-bugs@FreeBSD.ORG Tue Feb 27 16:40:01 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 97F2816A408 for ; Tue, 27 Feb 2007 16:40:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5379B13C4B4 for ; Tue, 27 Feb 2007 16:40:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1RGe1Fa025965 for ; Tue, 27 Feb 2007 16:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1RGe1kx025964; Tue, 27 Feb 2007 16:40:01 GMT (envelope-from gnats) Resent-Date: Tue, 27 Feb 2007 16:40:01 GMT Resent-Message-Id: <200702271640.l1RGe1kx025964@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, Vova Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 48F9616A407 for ; Tue, 27 Feb 2007 16:37:05 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id 345A813C4BE for ; Tue, 27 Feb 2007 16:37:05 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l1RGb57a099632 for ; Tue, 27 Feb 2007 16:37:05 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l1RGb5VX099631; Tue, 27 Feb 2007 16:37:05 GMT (envelope-from nobody) Message-Id: <200702271637.l1RGb5VX099631@www.freebsd.org> Date: Tue, 27 Feb 2007 16:37:05 GMT From: Vova To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: kern/109610: Fatal trap 12: page fault while in kernel mode X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Feb 2007 16:40:01 -0000 >Number: 109610 >Category: kern >Synopsis: Fatal trap 12: page fault while in kernel mode >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 27 16:40:00 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Vova >Release: FreeBSD 6.0 >Organization: Raznoexport.com >Environment: Laptop Acer 2355XC, Celeron 1.4ghz, 256 ram. >Description: I have laptop "Acer TravelMate 2350" with celeron 1.4ghz, 256mb ram Trying instal FreeBSD 6.0 from dvd disk and having this error: " Fatal trap 12: page fault while in kernel mode fault virtual address = 0xe7dc2 fault code = supervisor read, page not present instruction pointer = 0x20:0xc00e9cc5 stack pointer = 0x28:0xc102098c frame pointer = 0x28:0xc102098c code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 0 (swapper) trap number = 12 panic: page fault Uptime: 1s " i can't get core dump, becouse i haven't any OS on my laptop. What should i do? >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Feb 27 20:10:07 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9358116A400 for ; Tue, 27 Feb 2007 20:10:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 64F1813C4A5 for ; Tue, 27 Feb 2007 20:10:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1RKA7Wf047919 for ; Tue, 27 Feb 2007 20:10:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1RKA7hR047918; Tue, 27 Feb 2007 20:10:07 GMT (envelope-from gnats) Resent-Date: Tue, 27 Feb 2007 20:10:07 GMT Resent-Message-Id: <200702272010.l1RKA7hR047918@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, Corey Smith Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 485D116A405 for ; Tue, 27 Feb 2007 20:08:02 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id 208F713C4B4 for ; Tue, 27 Feb 2007 20:08:02 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l1RK81q9083306 for ; Tue, 27 Feb 2007 20:08:01 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l1RK81jf083305; Tue, 27 Feb 2007 20:08:01 GMT (envelope-from nobody) Message-Id: <200702272008.l1RK81jf083305@www.freebsd.org> Date: Tue, 27 Feb 2007 20:08:01 GMT From: Corey Smith To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: kern/109642: [re] re(4) does not support 3 port 8169 but the offical RealTek driver does X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Feb 2007 20:10:07 -0000 >Number: 109642 >Category: kern >Synopsis: [re] re(4) does not support 3 port 8169 but the offical RealTek driver does >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Feb 27 20:10:06 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Corey Smith >Release: 6.2-RELEASE >Organization: >Environment: FreeBSD minivp1 6.2-RELEASE-p1 FreeBSD 6.2-RELEASE-p1 #0: Tue Feb 27 12:20:49 EST 2007 root@minivp1:/usr/obj/usr/src/sys/SMP i386 >Description: I have a 3 port Realtek interface that does not work with the version included with FreeBSD 6.2 or -CURRENT but does work under the driver made by RealTek. Using the driver rtl_bsd_drv_v172.tgz from realtek's website... rl0: port 0xf600-0xf6ff mem 0xfdfff000-0xfdfff0ff irq 18 at device 9.0 on pci0 rl0: [GIANT-LOCKED] version:1.72 rl0: Ethernet address: 00:30:18:ab:68:f6 rl0: Ethernet address: 00:30:18:ab:68:f6 rl1: port 0xf400-0xf4ff mem 0xfdffd000-0xfdffd0ff irq 19 at device 11.0 on pci0 rl1: [GIANT-LOCKED] version:1.72 rl1: Ethernet address: 00:30:18:ab:68:f7 rl1: Ethernet address: 00:30:18:ab:68:f7 rl2: port 0xf800-0xf8ff mem 0xfdffc000-0xfdffc0ff irq 16 at device 12.0 on pci0 rl2: [GIANT-LOCKED] version:1.72 rl2: Ethernet address: 00:30:18:ab:68:f8 rl2: Ethernet address: 00:30:18:ab:68:f8 rl0@pci0:9:0: class=0x020000 card=0x10ec16f3 chip=0x816910ec rev=0x10 hdr=0x00 vendor = 'Realtek Semiconductor' device = 'RTL8169 Gigabit Ethernet Adapter' class = network subclass = ethernet rl1@pci0:11:0: class=0x020000 card=0x10ec16f3 chip=0x816910ec rev=0x10 hdr=0x00 vendor = 'Realtek Semiconductor' device = 'RTL8169 Gigabit Ethernet Adapter' class = network subclass = ethernet rl2@pci0:12:0: class=0x020000 card=0x10ec16f3 chip=0x816910ec rev=0x10 hdr=0x00 vendor = 'Realtek Semiconductor' device = 'RTL8169 Gigabit Ethernet Adapter' class = network subclass = ethernet >How-To-Repeat: Current rl(4) driver does not support my NIC >Fix: Using the driver rtl_bsd_drv_v172.tgz from realtek's website... Available this URL: http://www.realtek.com.tw/downloads/downloadsView.aspx?Langid=1&PNid=13&PFid=4&Level=5&Conn=4&DownTypeID=3&GetDown=false&Downloads=true Any chance the changes in 172 could be merged into FreeBSD? >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 28 07:33:10 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8D6D616A406; Wed, 28 Feb 2007 07:33:10 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 6514D13C467; Wed, 28 Feb 2007 07:33:10 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (remko@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1S7XAfO093427; Wed, 28 Feb 2007 07:33:10 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1S7X9gB093423; Wed, 28 Feb 2007 07:33:09 GMT (envelope-from remko) Date: Wed, 28 Feb 2007 07:33:09 GMT From: Remko Lodder Message-Id: <200702280733.l1S7X9gB093423@freefall.freebsd.org> To: dl@leo.org, remko@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: gnu/33551: cvs chokes on OpenBSD repositories X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Feb 2007 07:33:10 -0000 Synopsis: cvs chokes on OpenBSD repositories State-Changed-From-To: suspended->closed State-Changed-By: remko State-Changed-When: Wed Feb 28 07:33:09 UTC 2007 State-Changed-Why: OK: I looked this information up in a 6-stable branch i have around here. I see that the patch that is provided is implemented (A bit different though), so this issue can be closed. http://www.freebsd.org/cgi/query-pr.cgi?pr=33551 From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 28 07:34:04 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0051E16A407; Wed, 28 Feb 2007 07:34:03 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id C41F713C4DB; Wed, 28 Feb 2007 07:34:03 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (remko@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1S7Y30c093524; Wed, 28 Feb 2007 07:34:03 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1S7Y3hf093520; Wed, 28 Feb 2007 07:34:03 GMT (envelope-from remko) Date: Wed, 28 Feb 2007 07:34:03 GMT From: Remko Lodder Message-Id: <200702280734.l1S7Y3hf093520@freefall.freebsd.org> To: Jim.Pirzyk@disney.com, remko@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/31047: Linux programs do not dump core in linux format but FreeBSD format. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Feb 2007 07:34:04 -0000 Synopsis: Linux programs do not dump core in linux format but FreeBSD format. State-Changed-From-To: suspended->closed State-Changed-By: remko State-Changed-When: Wed Feb 28 07:34:03 UTC 2007 State-Changed-Why: Patch never arrived http://www.freebsd.org/cgi/query-pr.cgi?pr=31047 From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 28 07:40:55 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6798716A418; Wed, 28 Feb 2007 07:40:55 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5031A13C69B; Wed, 28 Feb 2007 07:40:39 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (remko@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1S7eYdB093967; Wed, 28 Feb 2007 07:40:34 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1S7eYqW093963; Wed, 28 Feb 2007 07:40:34 GMT (envelope-from remko) Date: Wed, 28 Feb 2007 07:40:34 GMT From: Remko Lodder Message-Id: <200702280740.l1S7eYqW093963@freefall.freebsd.org> To: guolin@alexa.com, remko@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: bin/39940: [patch] /usr/sbin/periodic sends thousands of emails X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Feb 2007 07:40:55 -0000 Synopsis: [patch] /usr/sbin/periodic sends thousands of emails State-Changed-From-To: analyzed->closed State-Changed-By: remko State-Changed-When: Wed Feb 28 07:40:33 UTC 2007 State-Changed-Why: The issue described and explained by roam should be enough reasoning to close the ticket. http://www.freebsd.org/cgi/query-pr.cgi?pr=39940 From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 28 07:42:01 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4E8A316A406; Wed, 28 Feb 2007 07:42:01 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id CCC5C13C65F; Wed, 28 Feb 2007 07:41:48 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (remko@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1S7fgTD094070; Wed, 28 Feb 2007 07:41:42 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1S7ff2n094066; Wed, 28 Feb 2007 07:41:41 GMT (envelope-from remko) Date: Wed, 28 Feb 2007 07:41:41 GMT From: Remko Lodder Message-Id: <200702280741.l1S7ff2n094066@freefall.freebsd.org> To: matt@fireball.batavia.il.us, remko@FreeBSD.org, freebsd-bugs@FreeBSD.org, remko@FreeBSD.org Cc: Subject: Re: kern/41138: [vr] vr0 locks up on one hub, OK on another X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Feb 2007 07:42:01 -0000 Synopsis: [vr] vr0 locks up on one hub, OK on another State-Changed-From-To: suspended->feedback State-Changed-By: remko State-Changed-When: Wed Feb 28 07:41:03 UTC 2007 State-Changed-Why: Hello, This had been reported a long time ago and before I want to continue in trying to get the right information etc. Can you tell me whether this is still applicable? Thanks, Responsible-Changed-From-To: freebsd-bugs->remko Responsible-Changed-By: remko Responsible-Changed-When: Wed Feb 28 07:41:03 UTC 2007 Responsible-Changed-Why: grab the pr http://www.freebsd.org/cgi/query-pr.cgi?pr=41138 From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 28 08:00:40 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0D5EE16A4FC; Wed, 28 Feb 2007 08:00:40 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 8B33A13C606; Wed, 28 Feb 2007 08:00:21 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (remko@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1S80KSs094730; Wed, 28 Feb 2007 08:00:20 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1S80KhK094726; Wed, 28 Feb 2007 08:00:20 GMT (envelope-from remko) Date: Wed, 28 Feb 2007 08:00:20 GMT From: Remko Lodder Message-Id: <200702280800.l1S80KhK094726@freefall.freebsd.org> To: mlelstv@dev.de.cw.net, remko@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/44336: [nfs] NFSv3 client broken - security problem with attribute caching X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Feb 2007 08:00:40 -0000 Synopsis: [nfs] NFSv3 client broken - security problem with attribute caching State-Changed-From-To: patched->closed State-Changed-By: remko State-Changed-When: Wed Feb 28 08:00:19 UTC 2007 State-Changed-Why: The change had been in current for almost three years now. I think this is "MFC'ed" to the proper releases. Close the ticket. http://www.freebsd.org/cgi/query-pr.cgi?pr=44336 From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 28 08:20:40 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8073E16A403; Wed, 28 Feb 2007 08:20:40 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5977D13C471; Wed, 28 Feb 2007 08:20:40 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (remko@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1S8KdAV095811; Wed, 28 Feb 2007 08:20:40 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1S8KdJp095805; Wed, 28 Feb 2007 08:20:39 GMT (envelope-from remko) Date: Wed, 28 Feb 2007 08:20:39 GMT From: Remko Lodder Message-Id: <200702280820.l1S8KdJp095805@freefall.freebsd.org> To: morgothdbma@o2.pl, remko@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/44744: [vn] [patch] VN devices can hang system FreeBSD v4.5 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Feb 2007 08:20:40 -0000 Synopsis: [vn] [patch] VN devices can hang system FreeBSD v4.5 State-Changed-From-To: open->closed State-Changed-By: remko State-Changed-When: Wed Feb 28 08:20:38 UTC 2007 State-Changed-Why: I am sorry but vn and friends are no longer available within FreeBSD. If this problem still persists with mdconfig, please notify me. http://www.freebsd.org/cgi/query-pr.cgi?pr=44744 From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 28 08:33:33 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B7CF816A402; Wed, 28 Feb 2007 08:33:33 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 8DBB113C4A6; Wed, 28 Feb 2007 08:33:33 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (remko@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1S8XXKH098038; Wed, 28 Feb 2007 08:33:33 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1S8XXlR098034; Wed, 28 Feb 2007 08:33:33 GMT (envelope-from remko) Date: Wed, 28 Feb 2007 08:33:33 GMT From: Remko Lodder Message-Id: <200702280833.l1S8XXlR098034@freefall.freebsd.org> To: d_j@vip.bg, remko@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: bin/42750: fdisk(8) does not distinguish between FAT32, XFS or Ext3 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Feb 2007 08:33:33 -0000 Synopsis: fdisk(8) does not distinguish between FAT32, XFS or Ext3 State-Changed-From-To: suspended->closed State-Changed-By: remko State-Changed-When: Wed Feb 28 08:33:32 UTC 2007 State-Changed-Why: No patches? no gain. http://www.freebsd.org/cgi/query-pr.cgi?pr=42750 From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 28 08:37:09 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 093E416A400; Wed, 28 Feb 2007 08:37:09 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id C893413C48D; Wed, 28 Feb 2007 08:37:08 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (remko@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1S8b8mF098339; Wed, 28 Feb 2007 08:37:08 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1S8b8x1098335; Wed, 28 Feb 2007 08:37:08 GMT (envelope-from remko) Date: Wed, 28 Feb 2007 08:37:08 GMT From: Remko Lodder Message-Id: <200702280837.l1S8b8x1098335@freefall.freebsd.org> To: darius@dons.net.au, remko@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/45322: Panic on resume (zone: entry not free) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Feb 2007 08:37:09 -0000 Synopsis: Panic on resume (zone: entry not free) State-Changed-From-To: open->closed State-Changed-By: remko State-Changed-When: Wed Feb 28 08:37:08 UTC 2007 State-Changed-Why: The submitter mentions that this was not repeatable, also a lot had been c hanged since that time so I'll assume this was a one time story. If not, please contact me so that we can investigate this issue. http://www.freebsd.org/cgi/query-pr.cgi?pr=45322 From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 28 09:05:04 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D576B16A402; Wed, 28 Feb 2007 09:05:04 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id A9A2113C428; Wed, 28 Feb 2007 09:05:04 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (remko@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1S954V2099540; Wed, 28 Feb 2007 09:05:04 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1S954tI099536; Wed, 28 Feb 2007 09:05:04 GMT (envelope-from remko) Date: Wed, 28 Feb 2007 09:05:04 GMT From: Remko Lodder Message-Id: <200702280905.l1S954tI099536@freefall.freebsd.org> To: andreas@FreeBSD.org, remko@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/50856: [mfs] panic if mounting /tmp as mfs with soft-updates (-U) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Feb 2007 09:05:05 -0000 Synopsis: [mfs] panic if mounting /tmp as mfs with soft-updates (-U) State-Changed-From-To: suspended->closed State-Changed-By: remko State-Changed-When: Wed Feb 28 09:05:04 UTC 2007 State-Changed-Why: Since the submitter can no longer verify this and no one came up in 4 years, close the ticket. If you do have feedback for recent versions of FreeBSD, please let me know http://www.freebsd.org/cgi/query-pr.cgi?pr=50856 From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 28 12:01:25 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 125BA16A406; Wed, 28 Feb 2007 12:01:25 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id DD8BE13C4A6; Wed, 28 Feb 2007 12:01:24 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (remko@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1SC1Ox1010092; Wed, 28 Feb 2007 12:01:24 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1SC1OkA010088; Wed, 28 Feb 2007 12:01:24 GMT (envelope-from remko) Date: Wed, 28 Feb 2007 12:01:24 GMT From: Remko Lodder Message-Id: <200702281201.l1SC1OkA010088@freefall.freebsd.org> To: alex@alexwang.com, remko@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/65300: [udf] [patch] Can't use sendfile(2) to download files in UDF DVD X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Feb 2007 12:01:25 -0000 Synopsis: [udf] [patch] Can't use sendfile(2) to download files in UDF DVD State-Changed-From-To: feedback->closed State-Changed-By: remko State-Changed-When: Wed Feb 28 12:01:24 UTC 2007 State-Changed-Why: No feedback, no game, close the ticket. http://www.freebsd.org/cgi/query-pr.cgi?pr=65300 From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 28 12:07:44 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 062CA16A401; Wed, 28 Feb 2007 12:07:44 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id D2FB313C4A5; Wed, 28 Feb 2007 12:07:43 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (remko@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1SC7hpT010236; Wed, 28 Feb 2007 12:07:43 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1SC7hQt010232; Wed, 28 Feb 2007 12:07:43 GMT (envelope-from remko) Date: Wed, 28 Feb 2007 12:07:43 GMT From: Remko Lodder Message-Id: <200702281207.l1SC7hQt010232@freefall.freebsd.org> To: nasa@les.veco.ru, remko@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/59211: [nwfs] System crashes when moving files from NWFS mounted system X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Feb 2007 12:07:44 -0000 Synopsis: [nwfs] System crashes when moving files from NWFS mounted system State-Changed-From-To: analyzed->closed State-Changed-By: remko State-Changed-When: Wed Feb 28 12:07:42 UTC 2007 State-Changed-Why: There was a proposed patch but no one responded to this ticket at all. Guess it is not needed anymore; please contact me if it IS needed. http://www.freebsd.org/cgi/query-pr.cgi?pr=59211 From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 28 12:08:26 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A630D16A401; Wed, 28 Feb 2007 12:08:26 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 7E58913C441; Wed, 28 Feb 2007 12:08:26 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (remko@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1SC8Qkx010335; Wed, 28 Feb 2007 12:08:26 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1SC8Qu0010331; Wed, 28 Feb 2007 12:08:26 GMT (envelope-from remko) Date: Wed, 28 Feb 2007 12:08:26 GMT From: Remko Lodder Message-Id: <200702281208.l1SC8Qu0010331@freefall.freebsd.org> To: roderick@gog.student.utwente.nl, remko@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: gnu/55278: Externs on implicit declarations X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Feb 2007 12:08:26 -0000 Synopsis: Externs on implicit declarations State-Changed-From-To: feedback->closed State-Changed-By: remko State-Changed-When: Wed Feb 28 12:08:25 UTC 2007 State-Changed-Why: feedback timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=55278 From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 28 12:13:12 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CBACA16A403; Wed, 28 Feb 2007 12:13:12 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id A26A813C481; Wed, 28 Feb 2007 12:13:12 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (remko@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1SCDCjv010728; Wed, 28 Feb 2007 12:13:12 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1SCDCYD010724; Wed, 28 Feb 2007 12:13:12 GMT (envelope-from remko) Date: Wed, 28 Feb 2007 12:13:12 GMT From: Remko Lodder Message-Id: <200702281213.l1SCDCYD010724@freefall.freebsd.org> To: yar@comp.chem.msu.su, remko@FreeBSD.org, freebsd-bugs@FreeBSD.org, remko@FreeBSD.org Cc: Subject: Re: bin/71147: sshd(8) will allow to log into a locked account X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Feb 2007 12:13:12 -0000 Synopsis: sshd(8) will allow to log into a locked account State-Changed-From-To: open->feedback State-Changed-By: remko State-Changed-When: Wed Feb 28 12:12:49 UTC 2007 State-Changed-Why: Is this resolved in the meantime? Responsible-Changed-From-To: freebsd-bugs->remko Responsible-Changed-By: remko Responsible-Changed-When: Wed Feb 28 12:12:49 UTC 2007 Responsible-Changed-Why: grab the pr http://www.freebsd.org/cgi/query-pr.cgi?pr=71147 From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 28 12:19:49 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B192716A403; Wed, 28 Feb 2007 12:19:49 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 8A4E413C4A5; Wed, 28 Feb 2007 12:19:49 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from freefall.freebsd.org (bz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1SCJnBD010909; Wed, 28 Feb 2007 12:19:49 GMT (envelope-from bz@freefall.freebsd.org) Received: (from bz@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1SCJnn3010905; Wed, 28 Feb 2007 12:19:49 GMT (envelope-from bz) Date: Wed, 28 Feb 2007 12:19:49 GMT From: "Bjoern A. Zeeb" Message-Id: <200702281219.l1SCJnn3010905@freefall.freebsd.org> To: bz@FreeBSD.org, bz@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/89528: [jail] impossible to kill a jail X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Feb 2007 12:19:49 -0000 Synopsis: [jail] impossible to kill a jail Responsible-Changed-From-To: bz->freebsd-bugs Responsible-Changed-By: bz Responsible-Changed-When: Wed Feb 28 12:18:02 UTC 2007 Responsible-Changed-Why: It seems whatever the correct solution will be, I won't be able to help with it. http://www.freebsd.org/cgi/query-pr.cgi?pr=89528 From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 28 12:21:53 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D097816A403; Wed, 28 Feb 2007 12:21:53 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id A860213C4B2; Wed, 28 Feb 2007 12:21:53 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (remko@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1SCLrh1011279; Wed, 28 Feb 2007 12:21:53 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1SCLrUe011275; Wed, 28 Feb 2007 12:21:53 GMT (envelope-from remko) Date: Wed, 28 Feb 2007 12:21:53 GMT From: Remko Lodder Message-Id: <200702281221.l1SCLrUe011275@freefall.freebsd.org> To: dkelly@hiwaay.net, remko@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: bin/71603: "systat -v" enters infinite loop X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Feb 2007 12:21:53 -0000 Synopsis: "systat -v" enters infinite loop State-Changed-From-To: open->closed State-Changed-By: remko State-Changed-When: Wed Feb 28 12:21:53 UTC 2007 State-Changed-Why: Feedback had been requested but never given, closing the ticket. Please report to me if this is still a problem and you have valuable feedback http://www.freebsd.org/cgi/query-pr.cgi?pr=71603 From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 28 13:22:14 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1766516A403; Wed, 28 Feb 2007 13:22:14 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id E41F113C474; Wed, 28 Feb 2007 13:22:13 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (remko@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1SDMBgR015616; Wed, 28 Feb 2007 13:22:11 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1SDMB20015612; Wed, 28 Feb 2007 13:22:11 GMT (envelope-from remko) Date: Wed, 28 Feb 2007 13:22:11 GMT From: Remko Lodder Message-Id: <200702281322.l1SDMB20015612@freefall.freebsd.org> To: arundel@gmx.net, remko@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: gnu/62937: Compilation of base src Perl with static csh dependency X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Feb 2007 13:22:14 -0000 Synopsis: Compilation of base src Perl with static csh dependency State-Changed-From-To: open->closed State-Changed-By: remko State-Changed-When: Wed Feb 28 13:22:05 UTC 2007 State-Changed-Why: OK, sadly 4.x is no longer being supported and thus makes this very unlikely to get ever resolved. Stop claiming that we might be able to do this at some point, since we wont. Our apologies for not fixing this sooner! http://www.freebsd.org/cgi/query-pr.cgi?pr=62937 From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 28 18:10:04 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1508816A409 for ; Wed, 28 Feb 2007 18:10:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id D158513C4A5 for ; Wed, 28 Feb 2007 18:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1SIA3SZ035401 for ; Wed, 28 Feb 2007 18:10:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1SIA3Mm035400; Wed, 28 Feb 2007 18:10:03 GMT (envelope-from gnats) Resent-Date: Wed, 28 Feb 2007 18:10:03 GMT Resent-Message-Id: <200702281810.l1SIA3Mm035400@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, Denis Koreshkov Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4A2DE16A407 for ; Wed, 28 Feb 2007 18:02:05 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id 2C72213C4A5 for ; Wed, 28 Feb 2007 18:02:05 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l1SI247A005333 for ; Wed, 28 Feb 2007 18:02:04 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l1SI24Cb005332; Wed, 28 Feb 2007 18:02:04 GMT (envelope-from nobody) Message-Id: <200702281802.l1SI24Cb005332@www.freebsd.org> Date: Wed, 28 Feb 2007 18:02:04 GMT From: Denis Koreshkov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: bin/109692: printing -NaN X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Feb 2007 18:10:04 -0000 >Number: 109692 >Category: bin >Synopsis: printing -NaN >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 28 18:10:03 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Denis Koreshkov >Release: freebsd 6.2-stable >Organization: BMSTU >Environment: >Description: The vfprintf() function correctly formats +Inf and -Inf but it has no provision for distinguishing between +NaN and -NaN. Hence all functions of printf(3) family output all -NaNs as NaNs. >How-To-Repeat: printf("%g %g\n", +0.0/0.0, -0.0/0.0); outputs: NaN NaN which should be: NaN -NaN >Fix: vfprintf(3) tests for a 'double' argument being an Inf or a NaN using isinf() and isinf(). Then, an Inf's signum is detected by a trivial arithmetic comparison to 0.0 But arithmetic comparisons fail when an argument is a NaN, so there is no corresponding code to set a negative NaN's signum to '-'. Consider using copysign(1.0, _double) which returns +1.0 and -1.0 for +NaN and -NaN. This is the case for the msun libm used in FreeBSD, though other implementations of copysign(3) may not derive a NaN's signum correctly, or raise an exception with signaling NaNs. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 28 20:40:15 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5434416A408 for ; Wed, 28 Feb 2007 20:40:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 2686A13C4A5 for ; Wed, 28 Feb 2007 20:40:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1SKeFNY045202 for ; Wed, 28 Feb 2007 20:40:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1SKeEG4045201; Wed, 28 Feb 2007 20:40:14 GMT (envelope-from gnats) Resent-Date: Wed, 28 Feb 2007 20:40:14 GMT Resent-Message-Id: <200702282040.l1SKeEG4045201@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, "J.R. Oldroyd" Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E1C3816A400 for ; Wed, 28 Feb 2007 20:36:25 +0000 (UTC) (envelope-from jr@opal.com) Received: from smtp.vzavenue.net (smtp.vzavenue.net [66.171.59.140]) by mx1.freebsd.org (Postfix) with ESMTP id 42C5813C478 for ; Wed, 28 Feb 2007 20:36:24 +0000 (UTC) (envelope-from jr@opal.com) Received: from 77.79.171.66.subscriber.vzavenue.net (HELO homobox.opal.com) ([66.171.79.77]) by smtp.vzavenue.net with ESMTP; 28 Feb 2007 15:26:15 -0500 Received: from linwhf.opal.com (localhost [127.0.0.1]) by homobox.opal.com (8.13.8/8.13.8) with ESMTP id l1SKQEMH002578 for ; Wed, 28 Feb 2007 15:26:14 -0500 (EST) (envelope-from jr@opal.com) Received: from 192.168.3.65 ([192.168.3.65] helo=linwhf.opal.com) by ASSP-nospam; 28 Feb 2007 15:26:14 -0500 Received: from linwhf.opal.com (localhost [127.0.0.1]) by linwhf.opal.com (8.13.8/8.13.8) with ESMTP id l1SKQ1Bd002833 for ; Wed, 28 Feb 2007 15:26:01 -0500 (EST) (envelope-from jr@opal.com) Received: from 127.0.0.1 ([127.0.0.1] helo=linwhf.opal.com) by ASSP-nospam; 28 Feb 2007 15:26:01 -0500 Received: (from jr@localhost) by linwhf.opal.com (8.13.8/8.13.8/Submit) id l1SKQ0ZT002832; Wed, 28 Feb 2007 15:26:00 -0500 (EST) (envelope-from jr) Message-Id: <200702282026.l1SKQ0ZT002832@linwhf.opal.com> Date: Wed, 28 Feb 2007 15:26:00 -0500 (EST) From: "J.R. Oldroyd" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/109696: 6.2-STABLE panic page fault when deleting IPv6 gif(4) tunnel X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "J.R. Oldroyd" List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Feb 2007 20:40:15 -0000 >Number: 109696 >Category: kern >Synopsis: 6.2-STABLE panic page fault when deleting IPv6 gif(4) tunnel >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 28 20:40:14 GMT 2007 >Closed-Date: >Last-Modified: >Originator: J.R. Oldroyd >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD linwhf.opal.com 6.2-STABLE FreeBSD 6.2-STABLE #11: Mon Feb 19 10:11:02 EST 2007 xx@xx.opal.com:/usr/src/sys/i386/compile/LINWHF i386 >Description: 6.2-stable cvsup'd mid-Jan 2007 panics when IPv6 tunnel fails and is being reset. Tunnel created using tspc from the net/freenet6 port. While up, tunnel works fine. If tspc keepalives fail, tspc resets tunnel by deleting existing one and creating new one. After several resets, system panics. >How-To-Repeat: Reproducible crash details: 1. 6.2-stable system 2. IPv6 tunnel using net/freenet6 port 3. use firewall to block ICMP6 ping keepalives 4. wait 1 to 2 hours; tspc program will reset tunnel about 12 times 5. panic page fault Fatal trap 12: page fault while in kernel mode fault virtual address = 0x443c fault code = supervisor write, page not present instruction pointer = 0x20:0xc058683b stack pointer = 0x28:0xe63b8b6c frame pointer = 0x28:0xe63b8b7c code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 16975 (ifconfig) trap number = 12 panic: page fault Uptime: 1d2h51m23s Dumping 959 MB (2 chunks) chunk 0: 1MB (159 pages) ... ok chunk 1: 959MB (245488 pages) 943 927 911 895 879 863 847 831 815 799 783 767 751 735 719 703 687 671 655 639 623 607 591 575 559 543 527 511 495 479 463 447 431 415 399 383 367 351 335 319 303 287 271 255 239 223 207 191 175 159 143 127 111 95 79 63 47 31 15 #0 doadump () at pcpu.h:165 165 __asm __volatile("movl %%fs:0,%0" : "=r" (td)); (kgdb) bt #0 doadump () at pcpu.h:165 #1 0xc051869e in boot (howto=260) at ../../../kern/kern_shutdown.c:409 #2 0xc0518934 in panic (fmt=0xc06da695 "%s") at ../../../kern/kern_shutdown.c:565 #3 0xc06afe54 in trap_fatal (frame=0xe63b8b2c, eva=17468) at ../../../i386/i386/trap.c:837 #4 0xc06afbbb in trap_pfault (frame=0xe63b8b2c, usermode=0, eva=17468) at ../../../i386/i386/trap.c:745 #5 0xc06af819 in trap (frame= {tf_fs = 8, tf_es = 40, tf_ds = 40, tf_edi = 16832, tf_esi = -993340032, tf_ebp = -432305284, tf_isp = -432305320, tf_ebx = -991704512, tf_edx = -989538432, tf_ecx = 4, tf_eax = 4, tf_trapno = 12, tf_err = 2, tf_eip = -1067947973, tf_cs = 32, tf_eflags = 66198, tf_esp = -1067576410, tf_ss = -991704512}) at ../../../i386/i386/trap.c:435 #6 0xc069e7fa in calltrap () at ../../../i386/i386/exception.s:139 #7 0xc058683b in if_delmulti (ifp=0x41c0, sa=0xc4cad580) at atomic.h:146 #8 0xc05db677 in in6_delmulti (in6m=0xc4f96900) at ../../../netinet6/mld6.c:649 #9 0xc05cee70 in in6_ifdetach (ifp=0xc4b37000) at ../../../netinet6/in6_ifattach.c:806 #10 0xc058425f in if_detach (ifp=0xc4b37000) at ../../../net/if.c:665 #11 0xc0589590 in gif_destroy (sc=0xc556db00) at ../../../net/if_gif.c:209 #12 0xc0589642 in gif_clone_destroy (ifp=0x4) at ../../../net/if_gif.c:226 #13 0xc0587b4a in ifc_simple_destroy (ifc=0xc0721460, ifp=0x4) at ../../../net/if_clone.c:478 #14 0xc0587189 in if_clone_destroy (name=0xc4f697e0 "gif0") at ../../../net/if_clone.c:172 #15 0xc0585d38 in ifioctl (so=0xc4d47c84, cmd=2149607801, data=0xc4f697e0 "gif0", td=0xc504d780) at ../../../net/if.c:1533 #16 0xc05405af in soo_ioctl (fp=0x4, cmd=2149607801, data=0xc4f697e0,active_cred=0xc4921d80, td=0xc504d780) at ../../../kern/sys_socket.c:214 #17 0xc053ac79 in ioctl (td=0xc504d780, uap=0xe63b8d04) at file.h:265 #18 0xc06b016b in syscall (frame= {tf_fs = 59, tf_es = 59, tf_ds = 59, tf_edi = -1077941000, tf_esi = -1077940788, tf_ebp = -1077943208, tf_isp = -432304796, tf_ebx = 134567488, tf_edx = 134578685, tf_ecx = 0, tf_eax = 54, tf_trapno = 12, tf_err = 2, tf_eip = 672428783, tf_cs = 51, tf_eflags = 642, tf_esp = -1077943236, tf_ss = 59}) at ../../../i386/i386/trap.c:983 #19 0xc069e84f in Xint0x80_syscall () at ../../../i386/i386/exception.s:200 #20 0x00000033 in ?? () Previous frame inner to this frame (corrupt stack?) (kgdb) list *0xc058683b 0xc058683b is in if_delmulti (atomic.h:149). 144 static __inline int 145 atomic_cmpset_int(volatile u_int *dst, u_int exp, u_int src) 146 { 147 int res = exp; 148 149 __asm __volatile ( 150 " " __XSTRING(MPLOCKED) " " 151 " cmpxchgl %2,%1 ; " 152 " setz %%al ; " 153 " movzbl %%al,%0 ; " (kgdb)=20 /tspc.log then contains: 2007/02/20 11:40:16 tspc: tspMain: Disconnected, retry in 30 seconds 2007/02/20 11:40:47 tspc: tspSetupTunnel: Got tunnel parameters from server, setting up local tunnel 2007/02/20 11:40:47 tspc: tspStartLocal: Going daemon, check tspc.log for tunnel creation status 2007/02/20 11:40:47 tspc: tspSetupInterface: Your IPv6 address is 2001:05c0:8fff:fffe:0000:0000:0000:0553 2007/02/20 11:46:40 tspc: tspMain: Disconnected, retry in 30 seconds 2007/02/20 11:47:11 tspc: tspSetupTunnel: Got tunnel parameters from server, setting up local tunnel 2007/02/20 11:47:11 tspc: tspStartLocal: Going daemon, check tspc.log for tunnel creation status 2007/02/20 11:47:11 tspc: tspSetupInterface: Your IPv6 address is 2001:05c0:8fff:fffe:0000:0000:0000:0553 2007/02/20 11:50:18 tspc: tspMain: Disconnected, retry in 30 seconds 2007/02/20 11:50:48 tspc: tspSetupTunnel: Got tunnel parameters from server, setting up local tunnel 2007/02/20 11:50:48 tspc: tspStartLocal: Going daemon, check tspc.log for tunnel creation status 2007/02/20 11:50:48 tspc: tspSetupInterface: Your IPv6 address is 2001:05c0:8fff:fffe:0000:0000:0000:0553 2007/02/20 12:12:27 tspc: tspMain: Disconnected, retry in 30 seconds 2007/02/20 12:12:57 tspc: tspSetupTunnel: Got tunnel parameters from server , setting up local tunnel 2007/02/20 12:12:57 tspc: tspStartLocal: Going daemon, check tspc.log for tunnel creation status 2007/02/20 12:12:57 tspc: tspSetupInterface: Your IPv6 address is 2001:05c0:8fff:fffe:0000:0000:0000:0553 2007/02/20 12:16:42 tspc: tspMain: Disconnected, retry in 30 seconds 2007/02/20 12:17:12 tspc: tspSetupTunnel: Got tunnel parameters from server, setting up local tunnel 2007/02/20 12:17:12 tspc: tspStartLocal: Going daemon, check tspc.log for tunnel creation status 2007/02/20 12:17:12 tspc: tspSetupInterface: Your IPv6 address is 2001:05c0:8fff:fffe:0000:0000:0000:0553 2007/02/20 12:19:50 tspc: tspMain: Disconnected, retry in 30 seconds 2007/02/20 12:20:21 tspc: tspSetupTunnel: Got tunnel parameters from server, setting up local tunnel 2007/02/20 12:20:21 tspc: tspStartLocal: Going daemon, check tspc.log for tunnel creation status 2007/02/20 12:20:21 tspc: tspSetupInterface: Your IPv6 address is 2001:05c0:8fff:fffe:0000:0000:0000:0553 2007/02/20 12:32:14 tspc: tspMain: Disconnected, retry in 30 seconds 2007/02/20 12:32:44 tspc: tspSetupTunnel: Got tunnel parameters from server, setting up local tunnel 2007/02/20 12:32:44 tspc: tspStartLocal: Going daemon, check tspc.log for tunnel creation status 2007/02/20 12:32:44 tspc: tspSetupInterface: Your IPv6 address is 2001:05c0:8fff:fffe:0000:0000:0000:0553 2007/02/20 12:36:38 tspc: tspMain: Disconnected, retry in 30 seconds 2007/02/20 12:37:09 tspc: tspSetupTunnel: Got tunnel parameters from server, setting up local tunnel 2007/02/20 12:37:09 tspc: tspStartLocal: Going daemon, check tspc.log for tunnel creation status 2007/02/20 12:37:09 tspc: tspSetupInterface: Your IPv6 address is 2001:05c0:8fff:fffe:0000:0000:0000:0553 2007/02/20 12:40:56 tspc: tspMain: Disconnected, retry in 30 seconds 2007/02/20 12:41:26 tspc: tspSetupTunnel: Got tunnel parameters from server, setting up local tunnel 2007/02/20 12:41:26 tspc: tspStartLocal: Going daemon, check tspc.log for tunnel creation status 2007/02/20 12:41:26 tspc: tspSetupInterface: Your IPv6 address is 2001:05c0:8fff:fffe:0000:0000:0000:0553 2007/02/20 12:54:59 tspc: tspMain: Disconnected, retry in 30 seconds 2007/02/20 12:55:29 tspc: tspSetupTunnel: Got tunnel parameters from server, setting up local tunnel 2007/02/20 12:55:29 tspc: tspStartLocal: Going daemon, check tspc.log for tunnel creation status 2007/02/20 12:55:29 tspc: tspSetupInterface: Your IPv6 address is 2001:05c0:8fff:fffe:0000:0000:0000:0553 2007/02/20 13:05:56 tspc: tspMain: Disconnected, retry in 30 seconds 2007/02/20 13:06:27 tspc: tspSetupTunnel: Got tunnel parameters from server, setting up local tunnel 2007/02/20 13:06:27 tspc: tspStartLocal: Going daemon, check tspc.log for tunnel creation status 2007/02/20 13:06:27 tspc: tspSetupInterface: Your IPv6 address is 2001:05c0:8fff:fffe:0000:0000:0000:0553 2007/02/20 13:09:04 tspc: tspMain: Disconnected, retry in 30 seconds and then it panics. 12 resets. This appears to be very typical. >Fix: Not yet determined. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 28 22:25:51 2007 Return-Path: X-Original-To: freebsd-bugs@freebsd.org Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6C5B316A400 for ; Wed, 28 Feb 2007 22:25:51 +0000 (UTC) (envelope-from ms6194@att.com) Received: from tlph033.enaf.dadc.sbc.com (sbcsmtp3.sbc.com [144.160.112.11]) by mx1.freebsd.org (Postfix) with ESMTP id 3D98713C491 for ; Wed, 28 Feb 2007 22:25:51 +0000 (UTC) (envelope-from ms6194@att.com) Received: from enaf.dadc.sbc.com (localhost.localdomain [127.0.0.1]) by tlph033.enaf.dadc.sbc.com (8.13.8/8.13.8) with ESMTP id l1SKoJpC007550 for ; Wed, 28 Feb 2007 14:50:19 -0600 Received: from TXDLLS2MSGHUB03.ITServices.sbc.com (txdlls2msghub03.itservices.sbc.com [155.179.74.119]) by tlph033.enaf.dadc.sbc.com (8.13.8/8.13.8) with ESMTP id l1SKoEXD007471 for ; Wed, 28 Feb 2007 14:50:15 -0600 Received: from TXSNA09MSGUSR04.ITServices.sbc.com ([155.179.171.172]) by TXDLLS2MSGHUB03.ITServices.sbc.com with Microsoft SMTPSVC(6.0.3790.1830); Wed, 28 Feb 2007 14:50:14 -0600 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Date: Wed, 28 Feb 2007 14:50:13 -0600 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Current problem reports Thread-Index: AcdbegtScRJlSAypR/GMopKRVfOp3Q== From: "SENKIW, MARK \(ATTSI\)" To: X-OriginalArrivalTime: 28 Feb 2007 20:50:14.0787 (UTC) FILETIME=[0BF19D30:01C75B7A] X-TM-AS-Product-Ver: SMEX-7.0.0.1433-3.6.1039-15026.001 X-TM-AS-Result: No--7.245400-0.000000-4 Subject: Current problem reports X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Feb 2007 22:25:51 -0000 Our Java 1.5 core dumps with the message below. What could be the problem? We don't have this problem with Java 1.4. E APbM APbM UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU Fatal exception occurred. Program will exit. java _JAVA_VERSION_SET Could not create the Java virtual machine. Could not find the main class. Program will exit. Could not find the main class. Program will exit. No main method found in specified class. Main method not public. Could not detach main thread. /opt/logNtrace/parameterList -XX:+ClientApp Error: Corrupt jvm.cfg file; cycle in alias list. ERROR Error: Unable to resolve VM alias %s ERROR Error: %s VM not supported ERROR Unable to access jarfile %s Invalid or corrupt jarfile %s Syntax error in version specification "%s" null true false null 1.5.0.05-_17_oct_2006_02_15 Unable to locate JRE meeting specification "%s" %s requires class path specification 1.5.0.05-_17_oct_2006_02_15 -verbose:gc -Xtm -Xdebug -Xnoclassgc -Xverify:all -Xverify:all -Xverify:remote -Xverify:none JNI_TRUE JNI_FALSE Main-Class -Dsun.java.command=3D -Dsun.java.launcher=3DSUN_STANDARD Error: could not open `%s' VM_ALIASED_TO Mark Senkiw Technical Architect AT&T Services, Inc. 210-474-7784 =20 From owner-freebsd-bugs@FreeBSD.ORG Thu Mar 1 07:41:22 2007 Return-Path: X-Original-To: freebsd-bugs@freebsd.org Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A605D16A402 for ; Thu, 1 Mar 2007 07:41:22 +0000 (UTC) (envelope-from remko@elvandar.org) Received: from caelis.elvandar.org (caelis.elvandar.org [217.148.169.59]) by mx1.freebsd.org (Postfix) with ESMTP id 66A5013C4A7 for ; Thu, 1 Mar 2007 07:41:22 +0000 (UTC) (envelope-from remko@elvandar.org) Received: from localhost (caelis.elvandar.org [217.148.169.59]) by caelis.elvandar.org (Postfix) with ESMTP id 85B1892FD34; Thu, 1 Mar 2007 08:41:21 +0100 (CET) Received: from caelis.elvandar.org ([217.148.169.59]) by localhost (caelis.elvandar.org [217.148.169.59]) (amavisd-new, port 10024) with ESMTP id 53040-02; Thu, 1 Mar 2007 08:41:14 +0100 (CET) Received: from redqueen.evilcoder-services.org (caelis.elvandar.org [217.148.169.59]) by caelis.elvandar.org (Postfix) with ESMTP id CBE0D92FD0A; Thu, 1 Mar 2007 08:41:14 +0100 (CET) Received: by redqueen.evilcoder-services.org (Postfix, from userid 1001) id B805366CE; Thu, 1 Mar 2007 08:41:14 +0100 (CET) Date: Thu, 1 Mar 2007 08:41:14 +0100 From: Remko Lodder To: "SENKIW, MARK (ATTSI)" Message-ID: <20070301074114.GI89541@elvandar.org> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.13 (2006-08-11) X-Virus-Scanned: Maia Mailguard 1.0.1 at elvandar.org Cc: freebsd-bugs@freebsd.org Subject: Re: Current problem reports X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Mar 2007 07:41:22 -0000 On Wed, Feb 28, 2007 at 02:50:13PM -0600, SENKIW, MARK (ATTSI) wrote: > Our Java 1.5 core dumps with the message below. What could be the > problem? We don't have this problem with Java 1.4. > The information below seems to indicate a HP-UX machine, but for the record: What FreeBSD Version are you using ? if you are not using FreeBSD, then you have come to the incorrect place to ask your question; please proceed to the sun-java mailinglist (if there is any) for your question then. Regards, Remko > dalsvrXX > B.11.11 > 9000/800 > 653379353 > java > FV#>E > APbM > APbM > UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU > Fatal exception occurred. Program will exit. > java > _JAVA_VERSION_SET > Could not create the Java virtual machine. > Could not find the main class. Program will exit. > Could not find the main class. Program will exit. > No main method found in specified class. > Main method not public. > Could not detach main thread. > /opt/logNtrace/parameterList > -XX:+ClientApp > Error: Corrupt jvm.cfg file; cycle in alias list. > ERROR > Error: Unable to resolve VM alias %s > ERROR > Error: %s VM not supported > ERROR > Unable to access jarfile %s > Invalid or corrupt jarfile %s > Syntax error in version specification "%s" > null > true > false > null > 1.5.0.05-_17_oct_2006_02_15 > Unable to locate JRE meeting specification "%s" > %s requires class path specification > 1.5.0.05-_17_oct_2006_02_15 > -verbose:gc > -Xtm > -Xdebug > -Xnoclassgc > -Xverify:all > -Xverify:all > -Xverify:remote > -Xverify:none > JNI_TRUE > JNI_FALSE > Main-Class > -Dsun.java.command= > -Dsun.java.launcher=SUN_STANDARD > Error: could not open `%s' > VM_ALIASED_TO > > > > Mark Senkiw > Technical Architect > AT&T Services, Inc. > 210-474-7784 > > > > _______________________________________________ > freebsd-bugs@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-bugs > To unsubscribe, send any mail to "freebsd-bugs-unsubscribe@freebsd.org" -- Kind regards, Remko Lodder ** remko@elvandar.org FreeBSD ** remko@FreeBSD.org /* Quis custodiet ipsos custodes */ From owner-freebsd-bugs@FreeBSD.ORG Thu Mar 1 09:35:36 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5C6BF16A405; Thu, 1 Mar 2007 09:35:36 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 23B8813C467; Thu, 1 Mar 2007 09:35:36 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (remko@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l219ZZ8b093609; Thu, 1 Mar 2007 09:35:35 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l219ZZjE093605; Thu, 1 Mar 2007 09:35:35 GMT (envelope-from remko) Date: Thu, 1 Mar 2007 09:35:35 GMT From: Remko Lodder Message-Id: <200703010935.l219ZZjE093605@freefall.freebsd.org> To: peter@dataloss.nl, remko@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: bin/38918: edquota breaks silently when quota-marked filesystems are not mounted X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Mar 2007 09:35:36 -0000 Synopsis: edquota breaks silently when quota-marked filesystems are not mounted State-Changed-From-To: open->closed State-Changed-By: remko State-Changed-When: Thu Mar 1 09:35:34 UTC 2007 State-Changed-Why: A fix had recently been committed, thanks for the notification and thanks for using FreeBSD! http://www.freebsd.org/cgi/query-pr.cgi?pr=38918 From owner-freebsd-bugs@FreeBSD.ORG Thu Mar 1 16:20:06 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9FC7816A400 for ; Thu, 1 Mar 2007 16:20:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 80F3E13C478 for ; Thu, 1 Mar 2007 16:20:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l21GK6fS045577 for ; Thu, 1 Mar 2007 16:20:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l21GK6GF045576; Thu, 1 Mar 2007 16:20:06 GMT (envelope-from gnats) Resent-Date: Thu, 1 Mar 2007 16:20:06 GMT Resent-Message-Id: <200703011620.l21GK6GF045576@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, FUJIMOTO Kou Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 543F016A400 for ; Thu, 1 Mar 2007 16:12:36 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id 3E14513C461 for ; Thu, 1 Mar 2007 16:12:36 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l21GCa05095383 for ; Thu, 1 Mar 2007 16:12:36 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l21GCZQc095382; Thu, 1 Mar 2007 16:12:35 GMT (envelope-from nobody) Message-Id: <200703011612.l21GCZQc095382@www.freebsd.org> Date: Thu, 1 Mar 2007 16:12:35 GMT From: FUJIMOTO Kou To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: kern/109724: X11 fonts corrupt when loading i915 at boot time X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Mar 2007 16:20:06 -0000 >Number: 109724 >Category: kern >Synopsis: X11 fonts corrupt when loading i915 at boot time >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Mar 01 16:20:05 GMT 2007 >Closed-Date: >Last-Modified: >Originator: FUJIMOTO Kou >Release: 6.2-STABLE >Organization: Tokyo Denki University >Environment: FreeBSD fosters 6.2-STABLE FreeBSD 6.2-STABLE #31: Fri Mar 2 00:05:12 JST 2007 root@fosters:/usr/obj/usr/src/sys/FOSTERS i386 >Description: When I load i915.ko at /boot/loader.conf (or enabled in kernel), kernel recognize my 855GME internal VGA controller as: ===================================================================== agp1: port 0xe300-0xe307 mem 0xe0000000-0xe7ffffff,0xe8100000-0xe817ffff irq 16 at device 2.0 on pci0 agp1: detected 32636k stolen memory agp1: aperture size is 128M drmsub0: : (child of agp_i810.c) on agp1 info: [drm] AGP at 0xd0000000 256MB info: [drm] Initialized i915 1.5.0 20060119 ===================================================================== After finishing boot sequence, X works but fonts looks like corrupted. Kernel reports "agp_generic_alloc_memory: unsupported type 2" messages 3 times. Just unloading all related KLMs (i915, drm and agp) and reloading them, kernel messages are as follows: ===================================================================== drmsub0: detached agp1: detached agp_intel_detach: set MCHCFG to 1 agp_intel_detach: set NBXCFG to 540101 agp0: detached agp0: port 0xe300-0xe307 mem 0xe0000000-0xe7ffffff,0xe8100000-0xe817ffff irq 16 at device 2.0 on pci0 agp0: detected 32636k stolen memory agp0: aperture size is 128M drmsub0: : (child of agp_i810.c) on agp0 info: [drm] AGP at 0xe0000000 128MB info: [drm] Initialized i915 1.5.0 20060119 ===================================================================== X works fine and all fonts are displayed without any corruption. >How-To-Repeat: i915_enable="YES" in /boot/loader.conf, or build agp, drm and i915drm devices into kernel. >Fix: 1. Configuring kernel without agp, drm and i915drm. 2. Boot without loading i915. 3. "kldload i915" at command prompt. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu Mar 1 22:40:03 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3CB3C16A401 for ; Thu, 1 Mar 2007 22:40:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 17D7E13C47E for ; Thu, 1 Mar 2007 22:40:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l21Me2bS070640 for ; Thu, 1 Mar 2007 22:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l21Me2fO070639; Thu, 1 Mar 2007 22:40:02 GMT (envelope-from gnats) Resent-Date: Thu, 1 Mar 2007 22:40:02 GMT Resent-Message-Id: <200703012240.l21Me2fO070639@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, Don Brearley Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E7EA916A404 for ; Thu, 1 Mar 2007 22:32:49 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id BB35E13C461 for ; Thu, 1 Mar 2007 22:32:49 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l21MWnkv032093 for ; Thu, 1 Mar 2007 22:32:49 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l21MWnhd032092; Thu, 1 Mar 2007 22:32:49 GMT (envelope-from nobody) Message-Id: <200703012232.l21MWnhd032092@www.freebsd.org> Date: Thu, 1 Mar 2007 22:32:49 GMT From: Don Brearley To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: kern/109733: bge link state issues X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Mar 2007 22:40:03 -0000 >Number: 109733 >Category: kern >Synopsis: bge link state issues >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Mar 01 22:40:02 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Don Brearley >Release: 6.2-STABLE >Organization: Hibbing Community College >Environment: FreeBSD blah.com 6.2-STABLE FreeBSD 6.2-STABLE #8: Thu Mar 1 15:40:33 CST 2007 root@blah.com:/usr/src/sys/i386/BLAH i386 >Description: I have two 3com 3C996-SX (Broadcom 5701 chipset) NICs connected to a Tyan motherboard which do not function properly. This is a dual CPU i386 machine. I began with a fresh install of 6.1-RELEASE, discovered this issue, and then CVSup'ed my source to 6.2-STABLE. I've rebuilt the world and kernel and installed both successfully, and ran mergemaster as well. As a side note, the NIC worked fine with i386 5.4-RELEASE. When the machine comes up, the interfaces stay "status: no carrier" until I either type "ifconfig bge0 media 1000baseSX mediaopt full-duplex" or "ifconfig bge0 up". Naturally, I wish to use both NIC's so I enter the same info but replace bge0 with bge1. Setting an IP address and netmask also did not help. Once I type either of those, I get a continuous stream of: bge0: link state changed to UP bge0: link state changed to DOWN bge1: link state changed to UP bge1: link state changed to DOWN bge0: link state changed to UP bge0: link state changed to DOWN bge1: link state changed to UP bge1: link state changed to DOWN .. forever. I also get an intermittent statement: bgeX: 2 link states coalesced This will occur until I shut down the interfaces with "ifconfig bge0 down" and "ifconfig bge1 down" statements. I have rebuilt my kernel with "BGE_FAKE_AUTONEG" and added ' hw.bge.fake_autoneg="1" ' to the /boot/loader.conf which resulted in no noticable effect. sysctl maintains that this oid does not exist, and sysctl -w does not show any entry related to hw.bge* -- It would be nice to be able to see if this is actually being set or not. I've added and removed SMP support, added and removed DEVICE_POLLING and various combinations with and without APIC. I've also gone back and forth between booting with ACPI and without ACPI, again, without a noticable effect on the issue. I tried merging the device drivers in from HEAD, but as I expected, that was futile :) If necessary, it may be possible for me to provide a 3com 3c996-SX NIC to help fix this issue. >How-To-Repeat: Get a 3Com 3c996-SX nic, and try to use it on FreeBSD 6.2-STABLE or -RELEASE. >Fix: Don't use a 3com 3C996-SX with FreeBSD 6.2. Try using FreeBSD 5.4 -- the Interface worked fine then. I did not try using 5.5. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu Mar 1 23:50:02 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EE2D816A403 for ; Thu, 1 Mar 2007 23:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id B4F1613C461 for ; Thu, 1 Mar 2007 23:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l21No27B074207 for ; Thu, 1 Mar 2007 23:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l21No2ZF074206; Thu, 1 Mar 2007 23:50:02 GMT (envelope-from gnats) Resent-Date: Thu, 1 Mar 2007 23:50:02 GMT Resent-Message-Id: <200703012350.l21No2ZF074206@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, Tommy Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4812316A402 for ; Thu, 1 Mar 2007 23:41:07 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id 36FA413C48D for ; Thu, 1 Mar 2007 23:41:07 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l21Nf7XP040384 for ; Thu, 1 Mar 2007 23:41:07 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l21Nf6Xm040380; Thu, 1 Mar 2007 23:41:06 GMT (envelope-from nobody) Message-Id: <200703012341.l21Nf6Xm040380@www.freebsd.org> Date: Thu, 1 Mar 2007 23:41:06 GMT From: Tommy To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: misc/109736: FreeBSD sysinstall from CD can't find & mount NEC AD-7170S SATA DVD-RW X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Mar 2007 23:50:03 -0000 >Number: 109736 >Category: misc >Synopsis: FreeBSD sysinstall from CD can't find & mount NEC AD-7170S SATA DVD-RW >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Mar 01 23:50:02 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Tommy >Release: 6.2-Stable-amd64, 7.0-CURRENT-200702-amd64 >Organization: >Environment: >Description: FreeBSD 6.2/7.0 sysinstall from CD can't find & mount NEC AD-7170S SATA DVD+-RW it boots FreeBSD right up to media > CD/DVD in sysinstall and fails to mount the boot loader seams to load fine, it says it found acd0 in bios System Abit AT8 (ATI RD480+ULI 1575) AMD Athlon 64 X2 3800+ OCZ EL DDR PC-4000 Gold GX XTC 2GB Dual Channel PowerColor Radeon X1800 XT 512MB 1x WDC Raptor 74GB 10,000RPM, 16MB, NCQ, SATA 1.5Gp/s 2x Seagate Barracuda 7200.10 320GB, 7200RPM, 16MB, NCQ, SATA 3Gp/s NEC AD-7170S SATA DVD+-RW (Sony-NEC Optiarc) BenQ FP937s+ (8ms) Realtek ALC882D (Dolby Digital Live) Hiper Type-R 580W >How-To-Repeat: boot freebsd 6.2+ cd with a NEC AD-7170S SATA Burner and try install FreeBSD 6.2+ from CD/DVD >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Mar 2 01:26:34 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 38D3716A408; Fri, 2 Mar 2007 01:26:34 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 0E2BB13C48D; Fri, 2 Mar 2007 01:26:34 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l221QXYj079986; Fri, 2 Mar 2007 01:26:33 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l221QX9R079982; Fri, 2 Mar 2007 01:26:33 GMT (envelope-from linimon) Date: Fri, 2 Mar 2007 01:26:33 GMT From: Mark Linimon Message-Id: <200703020126.l221QX9R079982@freefall.freebsd.org> To: erik@smluc.org, linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: bin/78759: patch: verbosity for bin/chflags X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Mar 2007 01:26:34 -0000 Synopsis: patch: verbosity for bin/chflags State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Fri Mar 2 01:26:16 UTC 2007 State-Changed-Why: Closed at submitter's request. http://www.freebsd.org/cgi/query-pr.cgi?pr=78759 From owner-freebsd-bugs@FreeBSD.ORG Fri Mar 2 02:30:09 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 02D5F16A403 for ; Fri, 2 Mar 2007 02:30:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id E3A3913C48D for ; Fri, 2 Mar 2007 02:30:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l222U86w083578 for ; Fri, 2 Mar 2007 02:30:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l222U8vM083577; Fri, 2 Mar 2007 02:30:08 GMT (envelope-from gnats) Date: Fri, 2 Mar 2007 02:30:08 GMT Message-Id: <200703020230.l222U8vM083577@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Astrodog Cc: Subject: Re: bin/88872: [2TB] Error 36 while sysinstall tries to create / partition X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Astrodog List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Mar 2007 02:30:09 -0000 The following reply was made to PR bin/88872; it has been noted by GNATS. From: Astrodog To: bug-followup@FreeBSD.org, dpk@dpk.net Cc: Subject: Re: bin/88872: [2TB] Error 36 while sysinstall tries to create / partition Date: Thu, 1 Mar 2007 19:56:10 -0600 ------=_Part_68087_23354653.1172800570806 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline I cannot reproduce this error using a 5TB RAID5 array on a 3ware 9550 controller. --- Harrison ------=_Part_68087_23354653.1172800570806 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline
I cannot reproduce this error using a 5TB RAID5 array on a 3ware 9550 controller.
 
--- Harrison
------=_Part_68087_23354653.1172800570806-- From owner-freebsd-bugs@FreeBSD.ORG Fri Mar 2 05:40:10 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E293116A404 for ; Fri, 2 Mar 2007 05:40:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 4743113C4B3 for ; Fri, 2 Mar 2007 05:40:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l225e5V1094667 for ; Fri, 2 Mar 2007 05:40:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l225e5lW094666; Fri, 2 Mar 2007 05:40:05 GMT (envelope-from gnats) Resent-Date: Fri, 2 Mar 2007 05:40:05 GMT Resent-Message-Id: <200703020540.l225e5lW094666@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, Jeremy McMillan Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 43C7616A401 for ; Fri, 2 Mar 2007 05:34:30 +0000 (UTC) (envelope-from aphor@horizon.aphor.net) Received: from horizon.aphor.net (dsl092-135-118.chi1.dsl.speakeasy.net [66.92.135.118]) by mx1.freebsd.org (Postfix) with ESMTP id CE7C313C478 for ; Fri, 2 Mar 2007 05:34:29 +0000 (UTC) (envelope-from aphor@horizon.aphor.net) Received: from horizon.aphor.net (localhost [127.0.0.1]) by horizon.aphor.net (8.13.8/8.13.8) with ESMTP id l2256Ct1024041 for ; Thu, 1 Mar 2007 23:06:12 -0600 (CST) (envelope-from aphor@horizon.aphor.net) Received: (from root@localhost) by horizon.aphor.net (8.13.8/8.13.8/Submit) id l2256C8Z024040; Thu, 1 Mar 2007 23:06:12 -0600 (CST) (envelope-from aphor) Message-Id: <200703020506.l2256C8Z024040@horizon.aphor.net> Date: Thu, 1 Mar 2007 23:06:12 -0600 (CST) From: Jeremy McMillan To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/109743: The sio(4) driver appears to be getting the serial port speed multiplier bits wrong. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jeremy McMillan List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Mar 2007 05:40:10 -0000 >Number: 109743 >Category: kern >Synopsis: The sio(4) driver appears to be getting the serial port speed multiplier bits wrong. >Confidential: yes >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Mar 02 05:40:04 GMT 2007 >Closed-Date: >Last-Modified: >Originator: >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: Vintage FIC SD11 Athlon Slot-A PC motherboard. >Description: Serial port settings via sofware are not effective on the hardware device. This *used* to work, but I can't remember when I had to change the batteries last... probably 18-24 months ago. Ancient history, but my point is that the hardware hasn't changed. The behavior is identical using puc(4) ports and built-in serial port at sio0, so it doesn't appear to be puc(4) or shady cheap hardware at fault. Maybe it's ACPI bugs? - dmesg - puc0: NetMos NM9835 Dual UART and 1284 Printer port port 0xd400-0xd407,0xd000-0xd007,0xcc00-0xcc07,0xc800-0xc807,0xc400-0xc407,0xc000-0xc00f irq 10 at device 4.0 on pci0 sio4: NetMos NM9835 Dual UART and 1284 Printer port on puc0 sio4: type 16550A sio4: unable to activate interrupt in fast mode - using normal mode sio5: NetMos NM9835 Dual UART and 1284 Printer port> on puc0 sio5: type 16550A sio5: unable to activate interrupt in fast mode - using normal mode sio0: 16550A-compatible COM port port 0x3f8-0x3ff irq 4 flags 0x30 on acpi0 sio0: type 16550A, console >How-To-Repeat: I discovered this trying to get my puc(4) serial ports wired to my APC SmartUPS. I got frustrated and broke out my null-modem cable. When I set up the serial port in /etc/ttys as root autologin, I can get a shell via the serial port at 9600 baud despite the 2400 baud gettytab entry on the /etc/ttys line for that port. When I type 'stty speed 9600' in that prompt across the serial line, I get garbage until I switch to 38400 baud. When I stty to 600, I can communicate at 2400. >Fix: Get two PCs and hook up a serial debugger on one port and another null modem cable on the other. Observe the bit-twiddling on the subject kernel's second serial port via debugger on the first port as stty does its ioctl(2) magic. Marvel at the layers of abstraction that must be penetrated to understand what went wrong. Read more code than you want to. Please? >Release-Note: >Audit-Trail: >Unformatted: >System: FreeBSD horizon.aphor.net 6.2-STABLE FreeBSD 6.2-STABLE #53: Tue Feb 27 22:37:03 CST 2007 root@horizon.aphor.net:/usr/obj/usr/src/sys/ATHLON i386 From owner-freebsd-bugs@FreeBSD.ORG Fri Mar 2 07:33:15 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A1DED16A401; Fri, 2 Mar 2007 07:33:15 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 7992113C442; Fri, 2 Mar 2007 07:33:15 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (remko@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l227XFvx003676; Fri, 2 Mar 2007 07:33:15 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l227XF9I003672; Fri, 2 Mar 2007 07:33:15 GMT (envelope-from remko) Date: Fri, 2 Mar 2007 07:33:15 GMT From: Remko Lodder Message-Id: <200703020733.l227XF9I003672@freefall.freebsd.org> To: dhchen@dhchen.com, remko@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/109571: kernel panic after update to newest -current kernel X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Mar 2007 07:33:15 -0000 Synopsis: kernel panic after update to newest -current kernel State-Changed-From-To: open->closed State-Changed-By: remko State-Changed-When: Fri Mar 2 07:33:14 UTC 2007 State-Changed-Why: The submitter notices that -CURRENT (latest kern_intr.c) resolves this issue. http://www.freebsd.org/cgi/query-pr.cgi?pr=109571 From owner-freebsd-bugs@FreeBSD.ORG Fri Mar 2 09:16:24 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2458D16A401; Fri, 2 Mar 2007 09:16:24 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id EDFBC13C46B; Fri, 2 Mar 2007 09:16:23 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (remko@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l229GNKW009142; Fri, 2 Mar 2007 09:16:23 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l229GNAR009138; Fri, 2 Mar 2007 09:16:23 GMT (envelope-from remko) Date: Fri, 2 Mar 2007 09:16:23 GMT From: Remko Lodder Message-Id: <200703020916.l229GNAR009138@freefall.freebsd.org> To: kiwi@oav.net, remko@FreeBSD.org, freebsd-bugs@FreeBSD.org, remko@FreeBSD.org Cc: Subject: Re: kern/83552: [panic] [ti] Fatal trap 19 on ti0 when SMP is used. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Mar 2007 09:16:24 -0000 Old Synopsis: [panic] Fatal trap 19 on ti0 when SMP is used. New Synopsis: [panic] [ti] Fatal trap 19 on ti0 when SMP is used. State-Changed-From-To: open->feedback State-Changed-By: remko State-Changed-When: Fri Mar 2 09:15:10 UTC 2007 State-Changed-Why: Hello, Is this still the case on 6.2? Also if so can you please get a kernel dump and send us the results? see the developers handbook for more information about this: http://www.freebsd.org/doc/en/books/developers-handbook/kerneldebug.html Thanks, Responsible-Changed-From-To: freebsd-bugs->remko Responsible-Changed-By: remko Responsible-Changed-When: Fri Mar 2 09:15:10 UTC 2007 Responsible-Changed-Why: grab the pr http://www.freebsd.org/cgi/query-pr.cgi?pr=83552 From owner-freebsd-bugs@FreeBSD.ORG Fri Mar 2 09:19:03 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1C72A16A401; Fri, 2 Mar 2007 09:19:03 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id E8BF913C491; Fri, 2 Mar 2007 09:19:02 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (remko@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l229J2bx009233; Fri, 2 Mar 2007 09:19:02 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l229J1cX009229; Fri, 2 Mar 2007 09:19:01 GMT (envelope-from remko) Date: Fri, 2 Mar 2007 09:19:01 GMT From: Remko Lodder Message-Id: <200703020919.l229J1cX009229@freefall.freebsd.org> To: remko@FreeBSD.org, freebsd-bugs@FreeBSD.org, remko@FreeBSD.org Cc: Subject: Re: kern/83319: [panic] system crash on heavy hard disk load. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Mar 2007 09:19:03 -0000 Synopsis: [panic] system crash on heavy hard disk load. Responsible-Changed-From-To: freebsd-bugs->remko Responsible-Changed-By: remko Responsible-Changed-When: Fri Mar 2 09:19:01 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=83319 From owner-freebsd-bugs@FreeBSD.ORG Fri Mar 2 12:40:10 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E73FF16A401 for ; Fri, 2 Mar 2007 12:40:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 928BF13C48E for ; Fri, 2 Mar 2007 12:40:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l22CeATx033491 for ; Fri, 2 Mar 2007 12:40:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l22CeAB7033489; Fri, 2 Mar 2007 12:40:10 GMT (envelope-from gnats) Date: Fri, 2 Mar 2007 12:40:10 GMT Message-Id: <200703021240.l22CeAB7033489@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: wiak Cc: Subject: Re: kern/109736: [ata] FreeBSD sysinstall from CD can't find X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: wiak List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Mar 2007 12:40:11 -0000 The following reply was made to PR kern/109736; it has been noted by GNATS. From: wiak To: bug-followup@freebsd.org, tommarnk@gmail.com Cc: Subject: Re: kern/109736: [ata] FreeBSD sysinstall from CD can't find Date: Fri, 02 Mar 2007 13:10:21 +0100 i seam to found a fix do NET install instead of CD/DVD -- Using Opera's revolutionary e-mail client: http://www.opera.com/mail/ From owner-freebsd-bugs@FreeBSD.ORG Fri Mar 2 18:20:05 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 273C516A405 for ; Fri, 2 Mar 2007 18:20:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 0926413C4BC for ; Fri, 2 Mar 2007 18:20:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l22IK4R4053427 for ; Fri, 2 Mar 2007 18:20:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l22IK4BA053426; Fri, 2 Mar 2007 18:20:04 GMT (envelope-from gnats) Resent-Date: Fri, 2 Mar 2007 18:20:04 GMT Resent-Message-Id: <200703021820.l22IK4BA053426@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Andrew Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9CE1416A409 for ; Fri, 2 Mar 2007 18:11:45 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id 7647513C4B7 for ; Fri, 2 Mar 2007 18:11:45 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l22IBjZF012464 for ; Fri, 2 Mar 2007 18:11:45 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l22IBjDp012463; Fri, 2 Mar 2007 18:11:45 GMT (envelope-from nobody) Message-Id: <200703021811.l22IBjDp012463@www.freebsd.org> Date: Fri, 2 Mar 2007 18:11:45 GMT From: Andrew To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: kern/109762: deadlock in g_down -> ahd_action -> contigmalloc X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Mar 2007 18:20:05 -0000 >Number: 109762 >Category: kern >Synopsis: deadlock in g_down -> ahd_action -> contigmalloc >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Mar 02 18:20:04 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Andrew >Release: FreeBSD 6.2-20070202 >Organization: Critical Path, Inc >Environment: FreeBSD volcano.supernews.net 6.2-20070202 FreeBSD 6.2-20070202 #0: Fri Feb 2 16:29:10 UTC 2007 root@supernews.net:/usr/obj/usr/src/sys/SUPERNEWS i386 >Description: System hung during heavy file write activity (copying a large file between filesystems). The cause of the hang was g_down being stuck as follows: Tracing pid 4 tid 100016 td 0xa8303a80 sched_switch(a8303a80,0,1) at sched_switch+0x14b mi_switch(1,0,a8303a80,ca4249c4,a0515704,...) at mi_switch+0x1ba sleepq_switch(bc3927f0) at sleepq_switch+0x87 sleepq_wait(bc3927f0,0,a8303a80,44,bc3927f0,...) at sleepq_wait+0x5c msleep(bc3927f0,a073c7a0,44,a06f43d5,0) at msleep+0x269 bwait(bc3927f0,44,a06f43d5,bc3927f0,0,...) at bwait+0x5f swap_pager_putpages(ac2d318c,ca424ac4,1,1,ca424a90,...) at swap_pager_putpages+0x48c default_pager_putpages(ac2d318c,ca424ac4,1,1,ca424a90) at default_pager_putpages+0x18 vm_pageout_flush(ca424ac4,1,1) at vm_pageout_flush+0xcb vm_contig_launder_page(a49de288) at vm_contig_launder_page+0x2a6 vm_page_alloc_contig(3,0,0,ffffffff,8,0) at vm_page_alloc_contig+0x25c contigmalloc(3000,a0710ea0,1,0,ffffffff,...) at contigmalloc+0x97 bus_dmamem_alloc(a83d3e80,ab998618,1,ab998610) at bus_dmamem_alloc+0xb4 ahd_alloc_scbs(a8415000) at ahd_alloc_scbs+0x17a ahd_get_scb(a8415000,8) at ahd_get_scb+0x57 ahd_action(a83f82c0,ab8a4800) at ahd_action+0x103 xpt_run_dev_sendq(a83f8280) at xpt_run_dev_sendq+0x175 xpt_action(ab8a4800) at xpt_action+0x269 dastart(a862c600,ab8a4800,ab8a4800,a86254c0,1) at dastart+0x149 xpt_run_dev_allocq(a83f8280) at xpt_run_dev_allocq+0x82 xpt_schedule(a862c600,1,a9da5bdc,ca424ce8,a04bd420,...) at xpt_schedule+0xef dastrategy(a9da5bdc) at dastrategy+0x4a g_disk_start(a9da5528) at g_disk_start+0x18c g_io_schedule_down(a8303a80) at g_io_schedule_down+0x13b g_down_procbody(0,ca424d38) at g_down_procbody+0x92 fork_exit(a04bf00c,0,ca424d38) at fork_exit+0x71 fork_trampoline() at fork_trampoline+0x8 --- trap 0x1, eip = 0, esp = 0xca424d6c, ebp = 0 --- Clearly, having g_down waiting for a swap pageout to complete is a deadlock. The circumstances under which this happens are not particularly clear - at the point of the hang, most of the system memory was in the 'inactive' queue, but the amount of free and/or cached memory was substantial. Machine has 4GB of RAM of which about 3.3GB is usable (i386, no PAE). Inactive memory was about 2.2GB, cache 900M, free 5M. This has been observed twice so far, though attempts to reproduce it in a consistent fashion have failed and it seems to be relatively rare. >How-To-Repeat: Initiate a burst of heavy i/o via the ahd driver, such as copying multi-gigabyte files or using dd to create same. The other conditions needed for it to happen are not known. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Mar 3 18:20:04 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 98B9316A401 for ; Sat, 3 Mar 2007 18:20:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 6245413C481 for ; Sat, 3 Mar 2007 18:20:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l23IK4tg073120 for ; Sat, 3 Mar 2007 18:20:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l23IK4Pm073116; Sat, 3 Mar 2007 18:20:04 GMT (envelope-from gnats) Resent-Date: Sat, 3 Mar 2007 18:20:04 GMT Resent-Message-Id: <200703031820.l23IK4Pm073116@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Steve Barnes Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0884116A41A for ; Sat, 3 Mar 2007 18:14:55 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id ED96413C4A7 for ; Sat, 3 Mar 2007 18:14:54 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l23IEs8s081142 for ; Sat, 3 Mar 2007 18:14:54 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l23IEsve081139; Sat, 3 Mar 2007 18:14:54 GMT (envelope-from nobody) Message-Id: <200703031814.l23IEsve081139@www.freebsd.org> Date: Sat, 3 Mar 2007 18:14:54 GMT From: Steve Barnes To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: kern/109809: Cpu hits 100% when issuing the halt command (in a VM and also when running on native hardware) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Mar 2007 18:20:04 -0000 >Number: 109809 >Category: kern >Synopsis: Cpu hits 100% when issuing the halt command (in a VM and also when running on native hardware) >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Mar 03 18:20:03 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Steve Barnes >Release: 6.1 >Organization: Paynet Kenya Ltd >Environment: >Description: Boot up in 6.1 (acpi enabled), log in as root, issue the halt command wait for the "the operating system has halted please press any key to reboot" message and watch the cpu usage on the host OS. For non-vm'd installs the fans in the psu/cpu do that "more drain being performed" sound (spin up and generate more heat)...upon visting freebsdhelp on irc.efnet someone else confirmed the same behaviour but using " a 6.2 amd64 FBSD install on an OpenSuse 10.2 64bit VMWare host"... >How-To-Repeat: See above... >Fix: Don't ever shutdown? :) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Mar 3 20:10:06 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9336216A402 for ; Sat, 3 Mar 2007 20:10:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5146513C481 for ; Sat, 3 Mar 2007 20:10:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l23KA66m079183 for ; Sat, 3 Mar 2007 20:10:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l23KA6MB079182; Sat, 3 Mar 2007 20:10:06 GMT (envelope-from gnats) Resent-Date: Sat, 3 Mar 2007 20:10:06 GMT Resent-Message-Id: <200703032010.l23KA6MB079182@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, "Mikhail T." Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 57FE716A400 for ; Sat, 3 Mar 2007 20:02:29 +0000 (UTC) (envelope-from mi@aldan.algebra.com) Received: from mail8.sea5.speakeasy.net (mail8.sea5.speakeasy.net [69.17.117.10]) by mx1.freebsd.org (Postfix) with ESMTP id 3491B13C4A3 for ; Sat, 3 Mar 2007 20:02:29 +0000 (UTC) (envelope-from mi@aldan.algebra.com) Received: (qmail 17981 invoked from network); 3 Mar 2007 19:35:48 -0000 Received: from aldan.algebra.com ([216.254.65.224]) (envelope-sender ) by mail8.sea5.speakeasy.net (qmail-ldap-1.03) with AES256-SHA encrypted SMTP for ; 3 Mar 2007 19:35:48 -0000 Received: from aldan.algebra.com (aldan [127.0.0.1]) by aldan.algebra.com (8.13.8/8.13.8) with ESMTP id l23JZlnK058436 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 3 Mar 2007 14:35:47 -0500 (EST) (envelope-from mi@aldan.algebra.com) Received: (from mi@localhost) by aldan.algebra.com (8.13.8/8.13.8/Submit) id l23JZk06058435; Sat, 3 Mar 2007 14:35:46 -0500 (EST) (envelope-from mi) Message-Id: <200703031935.l23JZk06058435@aldan.algebra.com> Date: Sat, 3 Mar 2007 14:35:46 -0500 (EST) From: "Mikhail T." To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: pav@FreeBSD.org, ps@FreeBSD.org, msmith@FreeBSD.org Subject: kern/109813: ciss(4) driver API header is not installed X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Mar 2007 20:10:06 -0000 >Number: 109813 >Category: kern >Synopsis: ciss(4) driver API header is not installed >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Mar 03 20:10:05 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Mikhail T. >Release: FreeBSD 6.2-STABLE amd64 >Organization: Virtual Estates, Inc. >Environment: System: FreeBSD aldan.algebra.com 6.2-STABLE FreeBSD 6.2-STABLE #0: Sun Feb 11 21:22:28 EST 2007 root@aldan.algebra.com:/meow/obj/var/src/sys/SILVER amd64 >Description: The ciss(4) driver offers a number IOCTLs, which are defined in /sys/dev/ciss/cissio.h. Unfortunately, this header file is not installed by installworld, which means, any programs wishing to use the IOCTLs can only be built in the presence of /sys tree. Until fairly recently no such programs really existed, but now smartmontools could support access to individual hard-drives behind a ciss RAID controller. Building the functionality requires the header file (which, luckily, is the same as on Linux). >How-To-Repeat: >Fix: Fix is trivial -- 5 minutes of a src-committer time is all that's required :-) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Mar 3 21:20:05 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3E36A16A401 for ; Sat, 3 Mar 2007 21:20:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 20F1B13C461 for ; Sat, 3 Mar 2007 21:20:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l23LK4fv082892 for ; Sat, 3 Mar 2007 21:20:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l23LK4v0082890; Sat, 3 Mar 2007 21:20:04 GMT (envelope-from gnats) Resent-Date: Sat, 3 Mar 2007 21:20:04 GMT Resent-Message-Id: <200703032120.l23LK4v0082890@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, Eygene Ryabinkin Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8566616A403; Sat, 3 Mar 2007 21:12:39 +0000 (UTC) (envelope-from rea-fbsd@codelabs.ru) Received: from pobox.codelabs.ru (pobox.codelabs.ru [144.206.177.45]) by mx1.freebsd.org (Postfix) with ESMTP id 3DE5D13C4AA; Sat, 3 Mar 2007 21:12:39 +0000 (UTC) (envelope-from rea-fbsd@codelabs.ru) Received: from localdomain by pobox.codelabs.ru with local id 1HNbWw-000LoF-Bo; Sun, 04 Mar 2007 00:12:38 +0300 Message-Id: Date: Sun, 04 Mar 2007 00:12:38 +0300 From: Eygene Ryabinkin Sender: rea-fbsd@codelabs.ru To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: rik@FreeBSD.org, glebius@FreeBSD.org, andre@FreeBSD.org, thompsa@FreeBSD.org Subject: kern/109815: wrong interface identifier at pfil_hooks for vlans + if_bridge X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Eygene Ryabinkin List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Mar 2007 21:20:05 -0000 >Number: 109815 >Category: kern >Synopsis: wrong interface identifier at pfil_hooks for vlans + if_bridge >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Mar 03 21:20:04 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Eygene Ryabinkin >Release: FreeBSD 6.2-STABLE i386 >Organization: Code Labs >Environment: System: FreeBSD XXX 6.2-STABLE FreeBSD 6.2-STABLE #13: Mon Feb 12 15:59:07 MSK 2007 root@XXX:/usr/obj/usr/src/sys/XXX i386 >Description: When if_bridge is used to gather multiple vlan interfaces that have the same physical parent (I will call such vlan interfaces the 'vlan group') the interface identifier that will be passed to the pfil_hooks will be sometimes wrong. For all packets coming from the 'vlan group' and destined to some local interface the incoming interface passed to the pfil_hooks will be the last interface in that group regardless of the actual incoming interface. The 'last interface' is the interface that was added to the if_bridge at the very last 'addm' command. The problem is lying in the fact that MAC addresses of the 'vlan group' are just the same and they are equal to the MAC address of the parent interface. And the check for the unicat packet that is destined for 'us' in the if_bridge.c:bridge_input() is walking by the list of the if_bridge-attached interfaces and compares the MAC addresses to the packet's one. Once match is found the interface in the packet header will be rewritten to the found list entry's one. Apparently such code flow will select the last added interface from the 'vlan group' because FreeBSD list macros are adding list members to the beginning of the linked list. BPF will receive the right interface, because it is tapped before bridge_input (in if_ethersubr.c). >How-To-Repeat: Set up three vlan interfaces on the same physical one, and add them to the same if_bridge. Give one VLAN interface IP address and send packets from the other VLAN segment to that IP. See that tcpdump is seeing the correct interface, but ipfw/pf are seeing the same packet having the last added interface as the rcvif, not the right one. For the last added interface the result will be correct, but for others -- not. >Fix: Since bridge_input always knows about the incoming interface as it is passed as the first argument my fix is just to set the right interface using the passed parameter and not the interface found by the list traversal. The patch is below. It should not break the ordinary situation without CARP and I see no troubles even with the CARP code. But I am not expirienced with CARP, so I am CCing Gleb, Andrew and Andre. We'd found this bug with rik@ so he gots the CC too. Shutting up ;)) --- if_bridge.c.orig Fri Mar 2 18:23:56 2007 +++ if_bridge.c Sat Mar 3 05:04:38 2007 @@ -2122,7 +2122,11 @@ LIST_FOREACH(bif2, &sc->sc_iflist, bif_next) { if (bif2->bif_ifp->if_type == IFT_GIF) continue; - /* It is destined for us. */ + /* It is destined for us. We should not rely on the + * found interface's MAC as the interface identifier, + * because vlanX interfaces are sharing their MAC + * with the parent. Moreover, we do know the interface + * the packet is coming from. So we're using it. */ if (memcmp(IF_LLADDR(bif2->bif_ifp), eh->ether_dhost, ETHER_ADDR_LEN) == 0 #ifdef DEV_CARP @@ -2133,7 +2137,7 @@ if (bif->bif_flags & IFBIF_LEARNING) (void) bridge_rtupdate(sc, eh->ether_shost, bif, 0, IFBAF_DYNAMIC); - m->m_pkthdr.rcvif = bif2->bif_ifp; + m->m_pkthdr.rcvif = ifp; BRIDGE_UNLOCK(sc); return (m); } >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Mar 3 22:40:10 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EA90316A407 for ; Sat, 3 Mar 2007 22:40:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id A312713C4B5 for ; Sat, 3 Mar 2007 22:40:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l23Me9xt089321 for ; Sat, 3 Mar 2007 22:40:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l23Me9YY089318; Sat, 3 Mar 2007 22:40:09 GMT (envelope-from gnats) Date: Sat, 3 Mar 2007 22:40:09 GMT Message-Id: <200703032240.l23Me9YY089318@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Roman Kurakin Cc: Subject: Re: kern/109815: wrong interface identifier at pfil_hooks for vlans + if_bridge X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Roman Kurakin List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Mar 2007 22:40:10 -0000 The following reply was made to PR kern/109815; it has been noted by GNATS. From: Roman Kurakin To: Eygene Ryabinkin Cc: FreeBSD-gnats-submit@FreeBSD.org, rik@FreeBSD.org, glebius@FreeBSD.org, andre@FreeBSD.org, thompsa@FreeBSD.org Subject: Re: kern/109815: wrong interface identifier at pfil_hooks for vlans + if_bridge Date: Sun, 04 Mar 2007 01:08:40 +0300 Just come to my mind. The idea behind current code could be that in case of bridge the interface for which this packet in?nded is much more important than the physical interface it is arrived from. If this is the case, than it would be much better do the same logic for ifp and in case it is not that interface to check the list. This will fix the problem in case of vlans and will leave the old behavior for the other cases. Any comments? rik Eygene Ryabinkin wrote: >> Number: 109815 >> Category: kern >> Synopsis: wrong interface identifier at pfil_hooks for vlans + if_bridge >> Confidential: no >> Severity: serious >> Priority: medium >> Responsible: freebsd-bugs >> State: open >> Quarter: >> Keywords: >> Date-Required: >> Class: sw-bug >> Submitter-Id: current-users >> Arrival-Date: Sat Mar 03 21:20:04 GMT 2007 >> Closed-Date: >> Last-Modified: >> Originator: Eygene Ryabinkin >> Release: FreeBSD 6.2-STABLE i386 >> Organization: >> > Code Labs > >> Environment: >> > System: FreeBSD XXX 6.2-STABLE FreeBSD 6.2-STABLE #13: Mon Feb 12 15:59:07 MSK 2007 root@XXX:/usr/obj/usr/src/sys/XXX i386 > >> Description: >> > When if_bridge is used to gather multiple vlan interfaces that have > the same physical parent (I will call such vlan interfaces the 'vlan > group') the interface identifier that will be passed to the > pfil_hooks will be sometimes wrong. For all packets coming from the > 'vlan group' and destined to some local interface the incoming interface > passed to the pfil_hooks will be the last interface in that group > regardless of the actual incoming interface. The 'last interface' is > the interface that was added to the if_bridge at the very last 'addm' > command. > > The problem is lying in the fact that MAC addresses of the 'vlan group' > are just the same and they are equal to the MAC address of the parent > interface. And the check for the unicat packet that is destined for > 'us' in the if_bridge.c:bridge_input() is walking by the list of the > if_bridge-attached interfaces and compares the MAC addresses to the > packet's one. Once match is found the interface in the packet header > will be rewritten to the found list entry's one. Apparently such > code flow will select the last added interface from the 'vlan group' > because FreeBSD list macros are adding list members to the beginning > of the linked list. > > BPF will receive the right interface, because it is tapped before > bridge_input (in if_ethersubr.c). > > >> How-To-Repeat: >> > Set up three vlan interfaces on the same physical one, and add them > to the same if_bridge. Give one VLAN interface IP address and send > packets from the other VLAN segment to that IP. See that tcpdump > is seeing the correct interface, but ipfw/pf are seeing the same > packet having the last added interface as the rcvif, not the right one. > For the last added interface the result will be correct, but for > others -- not. > >> Fix: >> > Since bridge_input always knows about the incoming interface as > it is passed as the first argument my fix is just to set the > right interface using the passed parameter and not the interface > found by the list traversal. The patch is below. It should not > break the ordinary situation without CARP and I see no troubles > even with the CARP code. But I am not expirienced with CARP, so > I am CCing Gleb, Andrew and Andre. We'd found this bug with rik@ > so he gots the CC too. > > Shutting up ;)) > > --- if_bridge.c.orig Fri Mar 2 18:23:56 2007 > +++ if_bridge.c Sat Mar 3 05:04:38 2007 > @@ -2122,7 +2122,11 @@ > LIST_FOREACH(bif2, &sc->sc_iflist, bif_next) { > if (bif2->bif_ifp->if_type == IFT_GIF) > continue; > - /* It is destined for us. */ > + /* It is destined for us. We should not rely on the > + * found interface's MAC as the interface identifier, > + * because vlanX interfaces are sharing their MAC > + * with the parent. Moreover, we do know the interface > + * the packet is coming from. So we're using it. */ > if (memcmp(IF_LLADDR(bif2->bif_ifp), eh->ether_dhost, > ETHER_ADDR_LEN) == 0 > #ifdef DEV_CARP > @@ -2133,7 +2137,7 @@ > if (bif->bif_flags & IFBIF_LEARNING) > (void) bridge_rtupdate(sc, > eh->ether_shost, bif, 0, IFBAF_DYNAMIC); > - m->m_pkthdr.rcvif = bif2->bif_ifp; > + m->m_pkthdr.rcvif = ifp; > BRIDGE_UNLOCK(sc); > return (m); > } > >> Release-Note: >> Audit-Trail: >> Unformatted: >> > _______________________________________________ > freebsd-bugs@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-bugs > To unsubscribe, send any mail to "freebsd-bugs-unsubscribe@freebsd.org" >