From owner-freebsd-bugs@FreeBSD.ORG Sun Feb 11 00:50: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 69BDB16A401 for ; Sun, 11 Feb 2007 00:50:10 +0000 (UTC) (envelope-from kientzle@freebsd.org) Received: from kientzle.com (h-66-166-149-50.snvacaid.covad.net [66.166.149.50]) by mx1.freebsd.org (Postfix) with ESMTP id 436D013C441 for ; Sun, 11 Feb 2007 00:50:10 +0000 (UTC) (envelope-from kientzle@freebsd.org) Received: from [10.0.0.222] (p54.kientzle.com [66.166.149.54]) by kientzle.com (8.12.9/8.12.9) with ESMTP id l1B0FG24096801 for ; Sat, 10 Feb 2007 16:15:16 -0800 (PST) (envelope-from kientzle@freebsd.org) Message-ID: <45CE6014.2000500@freebsd.org> Date: Sat, 10 Feb 2007 16:15:16 -0800 From: Tim Kientzle User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.12) Gecko/20060422 X-Accept-Language: en-us, en MIME-Version: 1.0 CC: freebsd-bugs@freebsd.org References: <200702092105.l19L5rUg025648@freefall.freebsd.org> In-Reply-To: <200702092105.l19L5rUg025648@freefall.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: bin/108990: incorrect error handling in tar(1) for files that change size X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Feb 2007 00:50:10 -0000 Ade Lovett wrote: > Synopsis: incorrect error handling in tar(1) for files that change size > > http://www.freebsd.org/cgi/query-pr.cgi?pr=108990 This is caused by a recent fix to libarchive, which no longer silently consumes data written past the end of the entry. I think the patch presented in the PR is acceptable, but I like this better. Any concerns? Index: write.c =================================================================== --- write.c (revision 120) +++ write.c (working copy) @@ -851,11 +851,19 @@ bytes_read = read(fd, buff, sizeof(buff)); while (bytes_read > 0) { bytes_written = archive_write_data(a, buff, bytes_read); - if (bytes_written <= 0) { + if (bytes_written < 0) { /* Write failed; this is bad */ bsdtar_warnc(bsdtar, 0, "%s", archive_error_string(a)); return (-1); } + if (bytes_written < bytes_read) { + /* Write was truncated; warn but continue. */ + bsdtar_warnc(bsdtar, 0, + "Truncated write; file may have grown while being archived."); + /* Make bsdtar return a final error. */ + bsdtar->return_value = 1; + return (0); + } bytes_read = read(fd, buff, sizeof(buff)); } return 0; From owner-freebsd-bugs@FreeBSD.ORG Sun Feb 11 11:20:11 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 D782616A400 for ; Sun, 11 Feb 2007 11:20:11 +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 B2F1213C491 for ; Sun, 11 Feb 2007 11: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 l1BBK6U7096929 for ; Sun, 11 Feb 2007 11: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 l1BBK6Sd096928; Sun, 11 Feb 2007 11:20:06 GMT (envelope-from gnats) Resent-Date: Sun, 11 Feb 2007 11:20:06 GMT Resent-Message-Id: <200702111120.l1BBK6Sd096928@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 Fremantle Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2E23516A400 for ; Sun, 11 Feb 2007 11:13:20 +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 1A84513C467 for ; Sun, 11 Feb 2007 11:13:20 +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 l1BBDJeS064420 for ; Sun, 11 Feb 2007 11:13:19 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l1BBDJsv064419; Sun, 11 Feb 2007 11:13:19 GMT (envelope-from nobody) Message-Id: <200702111113.l1BBDJsv064419@www.freebsd.org> Date: Sun, 11 Feb 2007 11:13:19 GMT From: Andrew Fremantle To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: kern/109044: Bizarre problem with Pioneer 111D on i965 board X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Feb 2007 11:20:11 -0000 >Number: 109044 >Category: kern >Synopsis: Bizarre problem with Pioneer 111D on i965 board >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Feb 11 11:20:06 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Andrew Fremantle >Release: 6.2-RELEASE >Organization: >Environment: FreeBSD 6.2-RELEASE-p1 FreeBSD 6.2-RELEASE-p1 #2: Sun Feb 11 01:04:20 PST 2007 skyhawk@:/usr/obj/usr/src/sys/GENERIC amd64 >Description: To start off with I'm not certain if this is FreeBSD's fault, the controller's fault, or the drive's fault, or some combination of the above. My only defense is "It works fine in Windows". The setup is a dual-core Pentium 4 (Pentium D I think Intel calls them) on an Intel DG965OT motherboard. There's a SATA harddrive and a Pioneer DVR-111D PATA optical drive. Like most (all?) i965 chipset motherboards, this board uses a very new Marvell controller chip to provide it's PATA connector. FreeBSD 6.2 does not have a driver for this controller chip. The optical drive was not detected or usable. When I booted the install CD, sysinstall would lock up after a few seconds. When I booted without ACPI, everything was peachy. I put this down to a faulty GENERIC driver that wasn't working right with the Marvell controller. This behavior was consistent with both the i386 and amd64 install discs. After install, I discovered I could boot with ACPI and have a usable machine - it would just lock up when I tried to shut it down. Top showed a consistent 40% interrupt time, and vmstat -i showed about 50,000 interrupts per whatever interval it uses on the atapci0 controller - the unrecognized Marvell chip. Booting without ACPI gave a usable system but an error message on the console - Interrupt storm detected on "irq10:"; throttling interrupt source After grabbing sys/dev/ata/ata-pci.h and ata-chipset.c from FreeBSD-CURRENT and recompiling, FreeBSD recognized the Marvell controller. But the machine hardlocked just prior to detecting the optical drive! Booting without ACPI gave a working arrangement, with working optical drive, but with the same Interrupt storm message. I swapped the Pio-111 for another one I have lying around - same problem. This tells me it's the make and model of the drive, not a faulty unit. Then I swapped it for an old BenQ 52x32x52 CDRW drive and *everything worked fine*. I plan to swap a few more drives in there and see what happens. --- The SATA harddrive in the machine runs Windows. FreeBSD is installed on an 80GB USB harddrive, and was installed via a USB optical drive, which was not attached when this dmesg was taken. 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 6.2-RELEASE-p1 #2: Sun Feb 11 01:04:20 PST 2007 skyhawk@:/usr/obj/usr/src/sys/GENERIC Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: Intel(R) Pentium(R) D CPU 2.80GHz (2800.02-MHz K8-class CPU) Origin = "GenuineIntel" Id = 0xf47 Stepping = 7 Features=0xbfebfbff Features2=0x641d> AMD Features=0x20100800 AMD Features2=0x1 Cores per package: 2 real memory = 1046843392 (998 MB) avail memory = 998174720 (951 MB) kbd1 at kbdmux0 ath_hal: 0.9.17.2 (AR5210, AR5211, AR5212, RF5111, RF5112, RF2413, RF5413) cpu0 on motherboard pcib0: pcibus 0 on motherboard pci0: on pcib0 pci0: at device 2.0 (no driver attached) pci0: at device 3.0 (no driver attached) em0: port 0x20c0-0x20df mem 0x50300000-0x5031ffff,0x50324000-0x50324fff irq 9 at device 25.0 on pci0 em0: Ethernet address: 00:16:76:e1:88:6e uhci0: port 0x20a0-0x20bf irq 11 at device 26.0 on pci0 uhci0: [GIANT-LOCKED] usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered uhci1: port 0x2080-0x209f irq 10 at device 26.1 on pci0 uhci1: [GIANT-LOCKED] usb1: on uhci1 usb1: USB revision 1.0 uhub1: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub1: 2 ports with 2 removable, self powered ehci0: mem 0x50325400-0x503257ff irq 11 at device 26.7 on pci0 ehci0: [GIANT-LOCKED] usb2: EHCI version 1.0 usb2: companion controllers, 2 ports each: usb0 usb1 usb2: on ehci0 usb2: USB revision 2.0 uhub2: Intel EHCI root hub, class 9/0, rev 2.00/1.00, addr 1 uhub2: 4 ports with 4 removable, self powered pci0: at device 27.0 (no driver attached) pcib1: at device 28.0 on pci0 pci1: on pcib1 pcib2: at device 28.1 on pci0 pci2: on pcib2 atapci0: port 0x1018-0x101f,0x1024-0x1027,0x1010-0x1017,0x1020-0x1023,0x1000-0x100f mem 0x50100000-0x501001ff irq 10 at device 0.0 on pci2 ata2: on atapci0 pcib3: at device 28.2 on pci0 pci3: on pcib3 pcib4: at device 28.3 on pci0 pci4: on pcib4 pcib5: at device 28.4 on pci0 pci5: on pcib5 uhci2: port 0x2060-0x207f irq 11 at device 29.0 on pci0 uhci2: [GIANT-LOCKED] usb3: on uhci2 usb3: USB revision 1.0 uhub3: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub3: 2 ports with 2 removable, self powered uhci3: port 0x2040-0x205f irq 11 at device 29.1 on pci0 uhci3: [GIANT-LOCKED] usb4: on uhci3 usb4: USB revision 1.0 uhub4: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub4: 2 ports with 2 removable, self powered uhci4: port 0x2020-0x203f irq 11 at device 29.2 on pci0 uhci4: [GIANT-LOCKED] usb5: on uhci4 usb5: USB revision 1.0 uhub5: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub5: 2 ports with 2 removable, self powered ehci1: mem 0x50325000-0x503253ff irq 11 at device 29.7 on pci0 ehci1: [GIANT-LOCKED] usb6: EHCI version 1.0 usb6: companion controllers, 2 ports each: usb3 usb4 usb5 usb6: on ehci1 usb6: USB revision 2.0 uhub6: Intel EHCI root hub, class 9/0, rev 2.00/1.00, addr 1 uhub6: 6 ports with 6 removable, self powered umass0: vendor 0x04b4 Cypress AT2LP RC42, rev 2.00/4.20, addr 2 pcib6: at device 30.0 on pci0 pci6: on pcib6 fwohci0: mem 0x50004000-0x500047ff,0x50000000-0x50003fff irq 11 at device 3.0 on pci6 fwohci0: OHCI version 1.10 (ROM=0) fwohci0: No. of Isochronous channels is 4. fwohci0: EUI64 00:90:27:00:01:b7:8b:62 fwohci0: Phy 1394a available S400, 2 ports. fwohci0: Link S400, max_rec 2048 bytes. firewire0: on fwohci0 fwe0: on firewire0 if_fwe0: Fake Ethernet address: 02:90:27:b7:8b:62 fwe0: Ethernet address: 02:90:27:b7:8b:62 fwe0: if_start running deferred for Giant sbp0: on firewire0 fwohci0: Initiate bus reset fwohci0: node_id=0xc800ffc0, gen=1, CYCLEMASTER mode firewire0: 1 nodes, maxhop <= 0, cable IRM = 0 (me) firewire0: bus manager 0 (me) isab0: at device 31.0 on pci0 isa0: on isab0 atapci1: port 0x2138-0x213f,0x2154-0x2157,0x2130-0x2137,0x2150-0x2153,0x2110-0x211f,0x2100-0x210f irq 11 at device 31.2 on pci0 ata3: on atapci1 ata4: on atapci1 pci0: at device 31.3 (no driver attached) atapci2: port 0x2128-0x212f,0x214c-0x214f,0x2120-0x2127,0x2148-0x214b,0x20f0-0x20ff,0x20e0-0x20ef irq 11 at device 31.5 on pci0 ata5: on atapci2 ata6: on atapci2 orm0: at iomem 0xc0000-0xcafff on isa0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 atkbd0: [GIANT-LOCKED] psm0: irq 12 on atkbdc0 psm0: [GIANT-LOCKED] psm0: model IntelliMouse Explorer, device ID 4 ppc0: cannot reserve I/O port range sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1: configured irq 3 not in bitmap of probed irqs 0 sio1: port may not be enabled vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 RTC BIOS diagnostic error 80 Timecounter "TSC" frequency 2800020622 Hz quality 800 Timecounters tick every 1.000 msec Interrupt storm detected on "irq10:"; throttling interrupt source acd0: DVDR at ata2-master UDMA66 ad6: 152627MB at ata3-master SATA150 da0 at umass-sim0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-0 device da0: 40.000MB/s transfers da0: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) Trying to mount root from ufs:/dev/da0s1a >How-To-Repeat: Attach a Pioneer 111D recorder to the PATA header on an Intel DG965OT motherboard. I would guess this problem would apply to any i965 motherboard using the Marvell 88SX6101 controller chip. Actually compiling in the new driver for the controller chip changes the situation from a 40% CPU-eating interrupt storm to a hardlock on boot just prior to detection of the drive. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Feb 11 14: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 46FAF16A402 for ; Sun, 11 Feb 2007 14: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 2702F13C47E for ; Sun, 11 Feb 2007 14: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 l1BEA6E2009412 for ; Sun, 11 Feb 2007 14: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 l1BEA6ed009411; Sun, 11 Feb 2007 14:10:06 GMT (envelope-from gnats) Resent-Date: Sun, 11 Feb 2007 14:10:06 GMT Resent-Message-Id: <200702111410.l1BEA6ed009411@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, Tim Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CC16716A400 for ; Sun, 11 Feb 2007 14:00:26 +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 BB58A13C47E for ; Sun, 11 Feb 2007 14:00:26 +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 l1BE0QDG007823 for ; Sun, 11 Feb 2007 14:00:26 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l1BE0Q3F007822; Sun, 11 Feb 2007 14:00:26 GMT (envelope-from nobody) Message-Id: <200702111400.l1BE0Q3F007822@www.freebsd.org> Date: Sun, 11 Feb 2007 14:00:26 GMT From: Tim To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: misc/109047: cut utility reads off by one place when day (date) is a double digit X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Feb 2007 14:10:07 -0000 >Number: 109047 >Category: misc >Synopsis: cut utility reads off by one place when day (date) is a double digit >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Feb 11 14:10:05 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Tim >Release: FreeBSD 5.4-RELEASE >Organization: n/a >Environment: FreeBSD hercmud.net 5.4-RELEASE FreeBSD 5.4-RELEASE #0: Sun Sep 18 21:04:28 UTC 2005 >Description: When the day (date) reaches double digits the cut utility/program somehow reads the field as off by one. I'm not sure if this is a problem with the auth.log or with cut itself but my bet is on cut. I have a script that reads auth.log and filters out bad login attempts and writes to hosts.allow. When the date reaches double digits I have to adjust my script accordingly. Here is the offending line in my script. for IP in `grep sshd /var/log/auth.log|grep "illegal user"|cut -d " " -f14` 0.0.0.0; do I have to change the -f14 to -f13 during double digit days and then again when the month rolls over set it back to -f14. Not only is having to edit the script twice a month annoying, it shortens the length of time one can deny a host that attempts login during the single digit days. Once I adjust the offending line to compensate for the double digit day it incorectly reads the single digit day lines. >How-To-Repeat: >Fix: Run the following script on single and double days: #!/usr/local/bin/bash LAST_IP=0.0.0.0 COUNT=1 # Set MAXCOUNT to the maximum failures allowed before blacklisting # Remember though, the script gets run once per minute from cron, so # tecnically the hacker has about 1 minute at maximum to attempt login # and that really is the limiting factor in limiting the length of the attack MAXCOUNT=5 for IP in `grep sshd /var/log/auth.log|grep "illegal user"|cut -d " " -f14` 0.0.0.0; do if [ ${LAST_IP} == ${IP} ]; then let COUNT=${COUNT}+1 else if [ ${COUNT} -ge ${MAXCOUNT} ]; then # echo "sshd: ${LAST_IP} : deny" # Now echo some output for crontab to email to you once in a while - comment it out if you don't care echo ${COUNT} attempts from ${LAST_IP} fi LAST_IP=${IP} COUNT=1 fi done >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Feb 11 20:10: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 8E8A316A400 for ; Sun, 11 Feb 2007 20:10: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 7D8E913C48D for ; Sun, 11 Feb 2007 20:10: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 l1BKAHv5032780 for ; Sun, 11 Feb 2007 20:10:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1BKAHDu032779; Sun, 11 Feb 2007 20:10:17 GMT (envelope-from gnats) Date: Sun, 11 Feb 2007 20:10:17 GMT Message-Id: <200702112010.l1BKAHDu032779@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Anders Nordby Cc: Subject: Re: kern/92083: [ural] [panic] panic using WPA on ural NIC in 6.2-RELEASE X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Anders Nordby List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Feb 2007 20:10:17 -0000 The following reply was made to PR kern/92083; it has been noted by GNATS. From: Anders Nordby To: bug-followup@FreeBSD.org, Jonathan Fosburgh , Sam Leffler Cc: Subject: Re: kern/92083: [ural] [panic] panic using WPA on ural NIC in 6.2-RELEASE Date: Sun, 11 Feb 2007 20:36:39 +0100 Hi, Just been trying the same thing in 6.2-RELEASE, with the same hardware. It seems the same bug still occurs, the stack trace looks very similar. Everytime I try do do a cvsup of the ports tree, the system panics. stream# uname -a FreeBSD stream.localnet 6.2-RELEASE FreeBSD 6.2-RELEASE #0: Tue Feb 6 22:09:01 CET 2007 root@stream.localnet:/usr/obj/usr/src/sys/STREAM i386 stream# kgdb /usr/obj/usr/src/sys/STREAM/kernel.debug /var/crash/vmcore.0 kgdb: kvm_nlist(_stopped_cpus): kgdb: kvm_nlist(_stoppcbs): [GDB will not be able to debug user-mode threads: /usr/lib/libthread_db.so: Undefined symbol "ps_pglobal_lookup"] GNU gdb 6.1.1 [FreeBSD] Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-marcel-freebsd". Unread portion of the kernel message buffer: ural0: could not transmit buffer: SHORT_XFER Fatal trap 12: page fault while in kernel mode fault virtual address = 0x4 fault code = supervisor read, page not present instruction pointer = 0x20:0xc070a305 stack pointer = 0x28:0xd5693be4 frame pointer = 0x28:0xd5693bf0 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 = 21 (irq5: uhci0 uhci1) trap number = 12 panic: page fault KDB: stack backtrace: kdb_backtrace(100,c33a0780,28,d5693ba4,c,...) at kdb_backtrace+0x29 panic(c08cecee,c0923d2a,0,fffff,c339f49b,...) at panic+0xa8 trap_fatal(d5693ba4,4,c33a0780,0,c,...) at trap_fatal+0x2a6 trap_pfault(d5693ba4,0,4) at trap_pfault+0x1f3 trap(8,28,28,c33e2000,0,...) at trap+0x325 calltrap() at calltrap+0x5 --- trap 0xc, eip = 0xc070a305, esp = 0xd5693be4, ebp = 0xd5693bf0 --- ieee80211_free_node(0,0,c35c0700,c3563a80,0,...) at ieee80211_free_node+0x9 ural_txeof(c35c0700,c33e2cd4,0) at ural_txeof+0x83 usb_transfer_complete(c35c0700,c33a0780,c35c0754,a8,c3563a80,...) at usb_transfer_complete+0x14e uhci_idone(c35c0770,c33fb400,c35c0788,c35c0754,0,...) at uhci_idone+0x11b uhci_check_intr(c3389000,c35c0770) at uhci_check_intr+0x98 uhci_softintr(c3389000,d5693cc4,c060a82a,c3389000,c33bca80,...) at uhci_softintr+0x22 usb_schedsoftintr(c3389000,c33bca80,4,c32bfa80,d5693cd0,...) at usb_schedsoftintr+0xd uhci_intr1(c3389000,d5693cec,c0663f61,c3389000,c33ca740,...) at uhci_intr1+0x1ce uhci_intr(c3389000) at uhci_intr+0x28 ithread_execute_handlers(c339f430,c32bfa80) at ithread_execute_handlers+0x121 ithread_loop(c33bd340,d5693d38) at ithread_loop+0x54 fork_exit(c0664018,c33bd340,d5693d38) at fork_exit+0x70 fork_trampoline() at fork_trampoline+0x8 --- trap 0x1, eip = 0, esp = 0xd5693d6c, ebp = 0 --- Uptime: 12m23s Dumping 511 MB (2 chunks) chunk 0: 1MB (160 pages) ... ok chunk 1: 511MB (130800 pages) 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 pcpu.h: No such file or directory. in pcpu.h (kgdb) bt #0 doadump () at pcpu.h:165 #1 0xc0679632 in boot (howto=260) at /usr/src/sys/kern/kern_shutdown.c:409 #2 0xc06798f8 in panic (fmt=0xc08cecee "%s") at /usr/src/sys/kern/kern_shutdown.c:565 #3 0xc089043e in trap_fatal (frame=0xd5693ba4, eva=4) at /usr/src/sys/i386/i386/trap.c:837 #4 0xc089016f in trap_pfault (frame=0xd5693ba4, usermode=0, eva=4) at /usr/src/sys/i386/i386/trap.c:745 #5 0xc088fd69 in trap (frame= {tf_fs = 8, tf_es = 40, tf_ds = 40, tf_edi = -1019338752, tf_esi = 0, tf_ebp = -714523664, tf_isp = -714523696, tf_ebx = -1019335468, tf_edx = -1019454592, tf_ecx = -1019703296, tf_eax = 0, tf_trapno = 12, tf_err = 0, tf_eip = -1066360059, tf_cs = 32, tf_eflags = 590406, tf_esp = -1019335468, tf_ss = -1019205632}) at /usr/src/sys/i386/i386/trap.c:435 #6 0xc087dc8a in calltrap () at /usr/src/sys/i386/i386/exception.s:139 #7 0xc070a305 in ieee80211_free_node (ni=0x0) at /usr/src/sys/net80211/ieee80211_node.c:1605 #8 0xc060016f in ural_txeof (xfer=0xc35c0700, priv=0xc33e2cd4, status=USBD_NORMAL_COMPLETION) at /usr/src/sys/dev/usb/if_ural.c:888 #9 0xc0618326 in usb_transfer_complete (xfer=0xc35c0700) at /usr/src/sys/dev/usb/usbdi.c:863 #10 0xc060aa2f in uhci_idone (ii=0x0) at /usr/src/sys/dev/usb/uhci.c:1499 #11 0xc060a90c in uhci_check_intr (sc=0xc3389000, ii=0xc35c0770) at /usr/src/sys/dev/usb/uhci.c:1374 #12 0xc060a85e in uhci_softintr (v=0xc3389000) at /usr/src/sys/dev/usb/uhci.c:1304 #13 0xc061566d in usb_schedsoftintr (bus=0x0) at /usr/src/sys/dev/usb/usb.c:871 #14 0xc060a82a in uhci_intr1 (sc=0xc3389000) at /usr/src/sys/dev/usb/uhci.c:1274 #15 0xc060a658 in uhci_intr (arg=0xc3389000) at /usr/src/sys/dev/usb/uhci.c:1189 #16 0xc0663f61 in ithread_execute_handlers (p=0xc339f430, ie=0xc32bfa80) at /usr/src/sys/kern/kern_intr.c:682 #17 0xc066406c in ithread_loop (arg=0xc33bd340) at /usr/src/sys/kern/kern_intr.c:765 #18 0xc0662ee8 in fork_exit (callout=0xc0664018 , arg=0xc33bd340, frame=0xd5693d38) at /usr/src/sys/kern/kern_fork.c:821 #19 0xc087dcec in fork_trampoline () at /usr/src/sys/i386/i386/exception.s:208 (kgdb) About my ural adapter: stream# dmesg | grep ural ural0: ANI 802.11g WLAN Adapter, rev 2.00/0.01, addr 2 ural0: MAC/BBP RT2570 (rev 0x03), RF RT2526 ural0: Ethernet address: 00:11:95:da:fe:e6 ural0: if_start running deferred for Giant ural0: link state changed to UP stream# usbdevs -a 2 -f /dev/usb0 -v Controller /dev/usb0: addr 2: full speed, power 300 mA, config 1, 802.11g WLAN Adapter(0x3c00), ANI(0x2001), rev 0.01 Let me know if there is anything more I can do to help debug the problem. Regards, -- Anders. From owner-freebsd-bugs@FreeBSD.ORG Mon Feb 12 00:02: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 48EFA16A407; Mon, 12 Feb 2007 00:02:31 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id CAF9B13C428; Mon, 12 Feb 2007 00:02:30 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from freefall.freebsd.org (pjd@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1C02OlM050189; Mon, 12 Feb 2007 00:02:24 GMT (envelope-from pjd@freefall.freebsd.org) Received: (from pjd@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1C02OqI050185; Mon, 12 Feb 2007 00:02:24 GMT (envelope-from pjd) Date: Mon, 12 Feb 2007 00:02:24 GMT From: Pawel Jakub Dawidek Message-Id: <200702120002.l1C02OqI050185@freefall.freebsd.org> To: pjd@FreeBSD.org, freebsd-bugs@FreeBSD.org, pjd@FreeBSD.org Cc: Subject: Re: kern/94669: [vfs] [patch] Panic from Failed Removable Media Mount 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, 12 Feb 2007 00:02:31 -0000 Synopsis: [vfs] [patch] Panic from Failed Removable Media Mount Responsible-Changed-From-To: freebsd-bugs->pjd Responsible-Changed-By: pjd Responsible-Changed-When: Mon Feb 12 00:02:10 UTC 2007 Responsible-Changed-Why: I'll look into this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=94669 From owner-freebsd-bugs@FreeBSD.ORG Mon Feb 12 00:40: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 9760416A402 for ; Mon, 12 Feb 2007 00:40: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 879B913C461 for ; Mon, 12 Feb 2007 00:40: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 l1C0eHxD054051 for ; Mon, 12 Feb 2007 00:40:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1C0eHXi054050; Mon, 12 Feb 2007 00:40:17 GMT (envelope-from gnats) Date: Mon, 12 Feb 2007 00:40:17 GMT Message-Id: <200702120040.l1C0eHXi054050@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Jonathan Fosburgh Cc: Subject: Re: kern/92083: [ural] [panic] panic using WPA on ural NIC in 6.2-RELEASE X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jonathan Fosburgh List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Feb 2007 00:40:17 -0000 The following reply was made to PR kern/92083; it has been noted by GNATS. From: Jonathan Fosburgh To: Anders Nordby Cc: bug-followup@freebsd.org, Sam Leffler Subject: Re: kern/92083: [ural] [panic] panic using WPA on ural NIC in 6.2-RELEASE Date: Sun, 11 Feb 2007 17:36:59 -0600 On Sunday 11 February 2007 13:36, Anders Nordby wrote: > Hi, > > Just been trying the same thing in 6.2-RELEASE, with the same hardware. > > It seems the same bug still occurs, the stack trace looks very similar. > Everytime I try do do a cvsup of the ports tree, the system panics. > For other reasons I have upgraded to -CURRENT and the problem continues for me. Unfortunately I just don't have time for proper PD right now. I will be interested in seeing if the new USB stack behaves any better once it matures. From owner-freebsd-bugs@FreeBSD.ORG Mon Feb 12 01:50: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 5BBB316A41F for ; Mon, 12 Feb 2007 01:50: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 4C2CF13C428 for ; Mon, 12 Feb 2007 01:50: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 l1C1oDHY058553 for ; Mon, 12 Feb 2007 01:50:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1C1oDXZ058548; Mon, 12 Feb 2007 01:50:13 GMT (envelope-from gnats) Date: Mon, 12 Feb 2007 01:50:13 GMT Message-Id: <200702120150.l1C1oDXZ058548@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Jonathan Fosburgh Cc: Subject: Re: kern/92083: [ural] [panic] panic using WPA on ural NIC in 6.2-RELEASE X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jonathan Fosburgh List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Feb 2007 01:50:13 -0000 The following reply was made to PR kern/92083; it has been noted by GNATS. From: Jonathan Fosburgh To: Anders Nordby Cc: bug-followup@freebsd.org, Sam Leffler Subject: Re: kern/92083: [ural] [panic] panic using WPA on ural NIC in 6.2-RELEASE Date: Sun, 11 Feb 2007 19:43:00 -0600 On Sunday 11 February 2007 13:36, Anders Nordby wrote: > Hi, > > Just been trying the same thing in 6.2-RELEASE, with the same hardware. > > It seems the same bug still occurs, the stack trace looks very similar. > Everytime I try do do a cvsup of the ports tree, the system panics. > > stream# uname -a > FreeBSD stream.localnet 6.2-RELEASE FreeBSD 6.2-RELEASE #0: Tue Feb 6 > 22:09:01 CET 2007 root@stream.localnet:/usr/obj/usr/src/sys/STREAM > i386 Actually I recently discovered that it is not the use of WPA itself that causes the panic, it is the wpa_suplicant. Using that for WEP also caused a panic on this NIC. From owner-freebsd-bugs@FreeBSD.ORG Mon Feb 12 08:00:20 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 F1B4816A468 for ; Mon, 12 Feb 2007 08:00:20 +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 BA22513C428 for ; Mon, 12 Feb 2007 08:00:20 +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 l1C80FCg084806 for ; Mon, 12 Feb 2007 08:00:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1C80FPV084805; Mon, 12 Feb 2007 08:00:15 GMT (envelope-from gnats) Resent-Date: Mon, 12 Feb 2007 08:00:15 GMT Resent-Message-Id: <200702120800.l1C80FPV084805@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, Imri Zvik Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0EFAE16A400 for ; Mon, 12 Feb 2007 07:53:34 +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 F1B7413C48E for ; Mon, 12 Feb 2007 07:53: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 l1C7rXxm065129 for ; Mon, 12 Feb 2007 07:53:33 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l1C7rXYO065128; Mon, 12 Feb 2007 07:53:33 GMT (envelope-from nobody) Message-Id: <200702120753.l1C7rXYO065128@www.freebsd.org> Date: Mon, 12 Feb 2007 07:53:33 GMT From: Imri Zvik To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: misc/109075: Line wraping doesn't work when TERM is set to 'linux' 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, 12 Feb 2007 08:00:21 -0000 >Number: 109075 >Category: misc >Synopsis: Line wraping doesn't work when TERM is set to 'linux' >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 12 08:00:14 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Imri Zvik >Release: 6.2-STABLE >Organization: Internet Gold >Environment: FreeBSD cemetery 6.2-STABLE FreeBSD 6.2-STABLE #6: Sun Jan 21 10:02:39 IST 2007 root@cemetery:/usr/obj/usr/src/sys/IGLD i386 >Description: Line wraping doesn't work when TERM is set to 'linux'. >How-To-Repeat: export TERM=linux and just type a really long line :) >Fix: Removing the xn option from the termcap entry solves this issue: --- termcap.orig Mon Feb 12 09:46:33 2007 +++ termcap Mon Feb 12 09:45:21 2007 @@ -4486,7 +4486,7 @@ # From Christian Weisgerber, naddy@mips.inka.de, a TERMCAP entry # for Linux consoles. linux|Linux Console:\ - :am:eo:mi:ms:xn:xo:\ + :am:eo:mi:ms:xo:\ :co#80:it#8:li#25:\ :pa#64:Co#8:AF=\E[3%dm:AB=\E[4%dm:op=\E[39;49m:\ :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:K2=\E[G:\ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Feb 12 11:06:19 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 372FC16A408 for ; Mon, 12 Feb 2007 11:06:19 +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 0E00C13C4B3 for ; Mon, 12 Feb 2007 11:06:19 +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 l1CB6IFn097485 for ; Mon, 12 Feb 2007 11:06:18 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1CB6HrF097481 for freebsd-bugs@FreeBSD.org; Mon, 12 Feb 2007 11:06:17 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 12 Feb 2007 11:06:17 GMT Message-Id: <200702121106.l1CB6HrF097481@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, 12 Feb 2007 11:06:19 -0000 Current FreeBSD problem reports Critical problems Serious problems S Tracker Resp. Description -------------------------------------------------------------------------------- o pendi/109078 gnats-adminLog was mailed directly to dougb. 1 problem total. Non-critical problems From owner-freebsd-bugs@FreeBSD.ORG Mon Feb 12 11:06:38 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 B7DEB16A401 for ; Mon, 12 Feb 2007 11:06:38 +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 8618013C467 for ; Mon, 12 Feb 2007 11:06:38 +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 l1CB6cS2097494 for ; Mon, 12 Feb 2007 11:06:38 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1CB6Jbs097490 for freebsd-bugs@FreeBSD.org; Mon, 12 Feb 2007 11:06:19 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 12 Feb 2007 11:06:19 GMT Message-Id: <200702121106.l1CB6Jbs097490@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, 12 Feb 2007 11:06:38 -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/27250 daichi [unionfs] [patch] unionfs filesystem panics in large n 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/70881 re 5.3 beta1 kernel.generic missing from /boot/kernel/ 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 kern/84498 daichi [unionfs] [hang] file system hangs when jail starts if 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 s ports/106436 shaun Samba startup script uses old PID files naming scheme o bin/108607 kientzle [PATCH] lib/libarchive core dumps on 6.2 o ports/108833 sobomax zaptel port does not build o amd64/108920 amd64 LAN to ASUS M2N32 WS Professional o ports/109048 remko ports-mgmt/portaudit-db: fix infinete loop of packaudi 36 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 f kern/17819 remko [unionfs] Build ports on nfs & union mount panics kern 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 a bin/26869 vi(1) crashes in viewing a file with long lines 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 bin/33672 [patch] telnetd and mount_mfs signal handlers call exi 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 s kern/52110 daichi [unionfs] FS corruption when using unionfs 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 s kern/52745 daichi [unionfs] Fatal trap 12: page fault while in kernel mo 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 s kern/54534 daichi [unionfs] unionfs && mfs|md crashing machine 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 a kern/56381 daichi [unionfs] panic: page fault in fifo_close() ... 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 o 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 s kern/66066 daichi [unionfs] panic: ufs_direnter: compact2 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/66152 daichi [unionfs] laying unionfs over another unionfs mount ca 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 kern/66829 daichi [unionfs] mounting fdesc union on /dev panics 4.10-pre 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 f kern/69607 bms [if_tap] [crash] system crashes in if_tap module [4.10 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 f kern/70931 [panic] page fault at end of boot on Athlon 64 / Asus 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 o amd64/73775 amd64 Kernel panic (trap 12) when booting with (not from!) P 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 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 amd64/76336 amd64 racoon/setkey -D cases instant "Fatal Trap 12: Page fa 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 lawrance 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 amd64/78848 amd64 [sis] sis driver on FreeBSD 5.x does not work on amd64 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 ports/82759 devel/sourcenav: Source navigator installs in wrong di 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 s kern/86596 daichi [unionfs] unionfs -b brokes file modes 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 o 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 s kern/89755 daichi [unionfs] [hang] Jailed process deadlocks when using u 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/90748 nobutaka xine-lib-1.1.1compilation 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 [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/92785 Using exported filesystem on OS/2 NFS client causes fi 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 i386/95021 i386 PAE enabled kernel boot panic 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 o i386/97589 i386 [ata] FAILURE - READ_DMA (regression from 5.4) s kern/97595 daichi [unionfs] FreeBSD 6.1-RELEASE - "lockmgr: locking aga 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 kern/97699 daichi [unionfs] UNIONFS panic 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 p kern/98799 bms [netinet] fastforwarding routes packets to network ip 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 ports/99518 stefan security/gpa crashes when attempting to encrypt multip 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/100683 [syscons] [patch] syscons screen savers can eat up to 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/101817 i386 crashing of system when is server under higher pressur 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 o i386/101933 i386 server crashing o kern/101948 Kernel Panic Trap No 12 Page Fault - caused by IpFilte o i386/101980 i386 [PATCH] Intel 631xESB ata and ichsmb support (i386/amd 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 kern/102654 [panic]: sleeping thread 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 f ports/103367 pav www/pglogd: pglogd fails to start 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 sos 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 o ports/104034 delphij openldap24-client port calls shtool with unknown optio 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 ports/104524 tobez Perl5.8 port spams /usr/bin/, preventing cross install 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/104914 [em] network hang (the em driver) when filesystem is f o kern/104978 [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 kern/105255 boot up loop 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 kern/105464 panic under heavy load 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 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 o 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 kern/106131 sam [ndis] [patch] sys/contrib/ndis: new functions needed 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 i386/106924 i386 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 f ports/107022 db math/py-numpy is broken with default installation 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 ports/107178 pav [PATCH] sysutils/eiciel: [SUMMARIZE CHANGES] 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 o conf/107278 rc [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) f ports/107466 pav sysutils/fusefs-sshfs: fuse.ko not loading when rc.d s 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 p kern/107807 maxim [netinet] [patch] Spurious EHOSTDOWN errors -- ARP ret 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 i386/107829 i386 invalid boundary checking in fdisk / wraps value of > 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 o ports/107990 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 f ports/108294 dinoex print/cups: cups-lpr does not work with diablo-jdk1.5. 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 i386/108379 i386 Secondary sata drive not detected by FreeBSD 6.2 (was 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 o i386/108582 i386 White square cursor i915 DRI Xorg 6.9.0 AGP f ports/108606 Courier MTA terminates abnormaly after installation o ports/108642 ahze slib-3a4_1 breaks GNUcash o i386/108646 i386 /mnt/usr: write failed, filesystem is full 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/108839 tmclaugh lang/mono 1.2.2.1 build fails with "Can't find custom f ports/108843 tmclaugh f-spot 0.3.2,1 fails with bus-related error o amd64/108861 amd64 [nve] nve(4) driver on FreeBSD 6.2 AMD64 does not work o i386/108895 i386 PPPoE dead connections 6.2 o ports/108921 hrs portupgrade -R gaim-devel-2.0.0.b6_2 fails with error: o i386/108924 i386 Panics when Intel MatrixRAID RAID1 is degraded f ports/108948 ports/lang/stklos has bashism in installed scripts o kern/108954 'sleep(1)' sleeps >1 seconds when speedstep (Cx) is in o i386/108963 i386 kernel panic on swi:net o kern/108968 Double mount then umount and ls resuits in panic. o bin/108990 kientzle incorrect error handling in tar(1) for files that chan o docs/109008 csjp [patch] add summary of kern/48198 to jexec(8) o docs/109034 doc [patch] add csup to cvsup.html o docs/109036 doc [patch] add csup snip to ports-using.html 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/109077 patch to graphics/djvulibre to respect QT_PREFIX 2037 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 s bin/7606 [patch] NIS Makefile.dist: NOPUSH replaced by REMOTE_S 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/27571 daichi [unionfs] Changing policy of shadowing files and direc 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 kris 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 docs/46295 doc please add information to Nvi recovery email 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 o bin/54897 matteo [PATCH] -y flag for mount_mfs 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 docs/55482 doc document the fact that DUMP has access to block device 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 o bin/56952 re [sysinstall] floppy install error 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 o docs/61070 doc handbook: Installation docs misleading: PResizer isn' 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 f bin/64153 dd mdmfs features via fstab 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 docs/64807 doc Handbook section on NAT incomplete 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 doc 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 o 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 s kern/67706 daichi [unionfs] cvs update over a union mount slows and then 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 o i386/71586 i386 FreeBSD 5.3-BETA3 #3 hang during boot on HP Vectra VE 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 o i386/71924 i386 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 o i386/73308 i386 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 o i386/73742 i386 5.3 rel i386 disk2 image not copying 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 o i386/74218 i386 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 i386/74803 i386 regression: lost 3Com509B in 5.X 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 i386/75185 i386 ACPI doesn't power off Tyan S2460 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 i386/75583 i386 Installation fails 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 i386/77477 i386 AHA-1542CP SCSI failed to probe 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 lawrance [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 i386 [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 s bin/84084 [sysinstall] FreeBSD 4.11-R won't install to 4th part p docs/84101 doc [patch] mt(1) manpage has erroneous synopsis, etc. 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 o 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 p docs/84266 doc [patch] security(8) manpage should have init(8)'s list o docs/84267 doc [patch] chflags(1) manual doesn't say it's affected by o docs/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 [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/ f bin/84667 [sysinstall] annoying installation problem o docs/84670 doc [patch] tput(1) manpage missing ENVIRONMENT section wi o bin/84674 [sysinstall] Installer trying to install bad package t 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 o conf/89860 matteo [patch] Add ability to set up vnode backed filesystems o conf/89870 rc [patch] feature request to make netif verbose rc.conf 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 bin/90415 [patch] Add -Z (no newfs) to mount_mfs(8). Use with e o ports/90436 portmgr [patch] Add a way to handle configuration files to bsd o kern/90521 [udf] [patch] UDF driver might calculate a wrong descr o bin/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 o 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 kern/91010 daichi [unionfs] [patch] new source code and some changes o bin/91034 [patch] minor fix to iostat(8) so that columns line up o bin/91049 [patch] dump(8): make dumps more rsync-friendly o bin/91101 [patch] /usr/src/usr.bin/whereis/whereis.c o 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 lawrance [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 p kern/93368 remko [ata] [patch] ATA_SMART command is missing 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 docs/94125 doc DGE-530T doesn't work on FreeBSD v6.0 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 o bin/94154 [sysinstall] [patch] add release and architecture to t 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 kern/95155 rodrigc [ufs] Creation of UFS snapshot turns 'acls' mount opti 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 p kern/95957 bms [netinet6] [patch] missing check for failed memory all 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 o i386/96452 i386 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 f bin/97198 matteo [patch] powerd(8) unable to reduce CPU frequency 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 matteo [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 matteo [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 o 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 conf/99536 [UPDATE] /etc/pf.os to OpenBSD rev 1.20 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 matteo [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 o docs/99845 doc [patch] First introduce porttools to Porter's Handbook o i386/99851 i386 setting rootdev crashes loader(8) 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 p kern/100080 bms tun(4) device close removes only IPv4 addresses and ro 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 f kern/100519 bms [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 [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 f ports/101423 stas [NEW PORT] ruby/ruby18-doc-stdlib: Documentation for R 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 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 i386/102026 i386 Fix ACPI Problems on Acer Travelmate 4100 Series o kern/102035 net [plip] plip networking disables parallel port printing f ports/102058 lawrance 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 i386 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 o kern/103020 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 kern/103411 (Probably) a deadlock caused by rtorrent downloading a o usb/103418 usb [usb] [patch] usbhidctl: add ability to write output a o bin/103425 ntpdate(8) utility does not obey the -s option the rig o ports/103453 skv devel/bugzilla dependency missing 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] rc.d/jail: mount fstab after devfs o conf/103489 rc [rc.d] [patch] named_chroot_autoupdate doesn't work in o bin/103500 [patch] mkuzip(1) enhancement to accept size of input o 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 p ports/103588 gnome gnome-system-monitor reads cpu activity wrong 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 kern/104318 Promise SATA PDC4xxxx cards -- port numbering problem 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 www/104488 gabor how about making Site Map more visible 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 [patch] x11-toolkits/py-gtk2 does not configure with p o usb/104645 usb QUIRK: Rave C-201 MP3 player o 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 o bin/104689 [patch] powerd(8): add support for limiting cpu freque p bin/104702 des [patch] Make fetch(1) preserve permissions when overwr o bin/104713 [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 www/105026 gabor [PATCH] Missing space between skip site and section na 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) o 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 f ports/105342 stefan sysutils/nut can't write data at shutdown 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 docs/105494 doc [PATCH] PH: rewrite WxWidgets entry 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 o www/105527 gabor [Patch] Better format of pages with news 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 docs/105556 keramida hosts.allow is available as a man-page 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 [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 o 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 ports/105901 perky [UPDATE] Update python24 to 2.4.4 o ports/105917 portmgr bsd.port.subdir.mk: Fix 'make search' with non-default o www/105950 gabor [Patch] Event anchors in main index.html are broken o kern/105964 rodrigc [msdosfs] Make MSDOSFS_LARGE a mount option o ports/105978 alexbl nmh prints postscript attachments by default 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) o 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 bin/106382 parenthesis bug in ipfw(8) 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 i386/106444 i386 Kernel Panic on Binding to an ip to a virtual atm inte 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 o ports/106557 portmgr [PATCH] Make USE_PHP work after inclusion of bsd.port. f ports/106602 dinoex mail/milter-regex always do syslog(LOG_DEBUG, ...) o ports/106616 portmgr bsd.port.mk: Default file modes set incorrect for non- o docs/106617 doc Typo found in Spanish translation of FreeBSD handbook 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 f ports/106685 kuriyama misc/amanda-client: amanda-client-2.5.1p2,1 backup fai 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/106813 mnag mail/gmime2: stray printf causes issues o ports/106848 portmgr [PATCH] Mk/bsd.port.mk -- Add support to remove locale o i386/106850 i386 powernow0 attach returned 6 o i386/106851 i386 vge0: MII read timed out 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 o conf/106927 rc.d/ntpd flags wrong when setting ntpd_config variabl o ports/106932 chinese/scim-pinyin: libtool - pthread problem with o kern/106955 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 rc "daily run" incorrectly assumes auth.log is rolled mor o www/106996 jkois Link auf de-Startseite fehlerhaft 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 f ports/107177 gnome [PATCH] multimedia/totem: [SUMMARIZE CHANGES] o ports/107184 lioux net-p2p/mldonkey port is broken. o ports/107185 kuriyama [PATCH] security/gnupg updates o ports/107209 delphij [patch] request reserved uid/gid for port spamd + miss o www/107220 remko ISP link submission 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 f ports/107336 Port Update: database/grass o ports/107340 alexbl textproc/highlight is built with hardcoded config loca 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 s ports/107499 dinoex HP 1320 (USB) fails to work with cups 1.2.7 o www/107500 remko Request to be added to the FreeBSD consultants list 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 o ports/107557 mnag [PATCH] mail/py-spf: update to 2.0.2 o conf/107560 [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 o 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' f ports/107675 security/vpnc suggest rc.d script o bin/107676 file -p does not work o usb/107701 usb usbd ignores "detach" f kern/107706 bms adding route 10.1000.0.0/24 doesn't result in error bu 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 f ports/107874 port databases/freetds: fix for MSSQL 7 o www/107881 remko Support vendor listing o www/107893 remko Maryland BSD Users Group o www/107897 remko new society support for FreeBSD f ports/107899 itetcu [PATCH] audio/gtick: update to 0.3.12 o ports/107900 perky [PATCH] devel/py-logilab-common: update to 0.21.1 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 i386/107943 i386 Forget to unlock mutex-locks 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 f ports/107955 miwi [PATCH] irc/ezbounce: update to 1.04.c o www/107956 remko Please add to Commercial Vendors - Consulting Services 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 [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 f ports/108132 [update] www/zope-zwiki update to 0.58.0 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 f ports/108144 [update] www/plone update to 2.5.2 o ports/108146 nobutaka multimedia/libxine: leftover xineplug_ao_out_jack.so o i386/108150 i386 ASUS NX1001 (if_ste) hardware support o ports/108153 portmgr ports extraction with package uid/gid and quota proble f ports/108168 itetcu [Update Version] x11/accessx to 0.951 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) f ports/108194 ports/lang/gauche doesn't install docs properly o ports/108203 miwi [maintainer update] games/gish-demo o ports/108208 perky [PATCH] devel/py-ctypes: update to 1.0.1 o kern/108211 [netinet] potentially a bug for inet_aton in sys/netin o ports/108218 gnome devel/desktop-file-utils: silently depends on emacs if f ports/108236 itetcu [Update Version] net/dgd-net to 1.2 o bin/108238 the tail command acts weird when reading from a file t 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 f ports/108265 vd Update port: graphics/libpano12 from 2.7.0.3 to 2.8.4 f ports/108266 vd Update port: graphics/hugin from 0.5 to 0.6.1 o ports/108267 gnome ports/lang/guile: please update o ports/108276 itetcu [Update Version] www/mapedit to 2.32 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 metis and metis-edf install files into the same place o ports/108306 skv Update textproc/p5-Pod-ProjectDocs to 0.30 f ports/108307 dinoex net/sixxs-aiccu fix fetch/build 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 f ports/108339 [fix] security/tor and security/tor-devel use pre-inst 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 f kern/108355 remko boot0cfg -s 2 does not work if noupdate is set. o ports/108356 obrien Typo in vim 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/108371 vd Update port: security/openvpn (add profiles support to f ports/108378 itetcu [PATCH] games/foobillard: add OPTIONS f ports/108385 itetcu [Update Version] audio/libcddb-doc to 1.3.0 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 www/108424 remko [PATCH] add OCUUT to list of use groups o usb/108427 usb QUIRK-SAMSUNG MP0402H o ports/108433 itetcu [Update Version] devel/dmake to 4.7 f ports/108437 jylefort Update graphics/ac3d 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 ports/108466 sysutils/logrotate: [patch] syslog.sample should go in o i386/108468 i386 Stop in /usr/src/sys/modules/netgraph/atm/atmbase. on o ports/108471 perky [PATCH] dns/py-adns: update to 1.2.1 o ports/108476 perky [PATCH] devel/scons: update to 0.96.94 f ports/108487 miwi [UPDATE] games/wormux: to 0.7.9 o i386/108488 acpi ACPI-1304: *** Error: Method execution failed o ports/108498 alepulver New port: lang/xds Excelsior Oberon-2/Modula-2 compile o ports/108499 alepulver New port: lang/xds-c Excelsior Oberon-2/Modula-2 to C f ports/108501 sat update port russian/xneur o ports/108504 dinoex VICE port 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 o docs/108536 doc sysinstall(8) man page and example needs to be updated o ports/108538 alexbl audio/ruby-xmms2-ecore (needed by euphoria) does not b o ports/108539 alepulver New Port www/vde2, repocopy from www/vde o 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 o ports/108564 nobutaka Update libxine to 1.1.4, fixes 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 ports/108579 itetcu [MAINTAINER-UPDATE] sysutils/bacula-docs upgrade to la o ports/108580 itetcu [MAINTAINER-UPDATE] sysutils/bacula-server upgrade to 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/108596 itetcu [Update Version] devel/kdbg to 2.0.5 o ports/108597 shaun [PATCH] www/p5-ClearSilver doesn't build on 4.x + upda o conf/108611 [patch] An obsolete nice(1) syntax is left in etc/peri f ports/108625 [PATCH] textproc/p5-Pod-LaTeX: fixing pkg-plist "issue f ports/108626 bsam [patch] shells/bash-completion: drop dependency shells o ports/108627 andreas [patch] print/apsfilter: drop shells/bash2 dependency o ports/108648 openoffice openoffice.org-2-devel broken? o kern/108655 messages from kernel are mixed (/dev/klog? syslog?) f ports/108658 pear-HTML_AJAX has wrong package description 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 i386/108666 i386 Geometry o ports/108667 grog [PATCH] multimedia/mythtv: fixes frontend<->backend co o ports/108679 delphij [PATCH] mail/spamlogd fail without PF f ports/108687 miwi [UPDATE] www/py24-xist: update to 2.15.2 f ports/108689 alepulver [patch] irc/bitlbee: bitlbee on 6.2-RELEASE with NO_IN o ports/108692 itetcu maintainer update: deskutils/sugarcrm 3.5.1 -> 4.5.1 o i386/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/108711 mich update audio/amarok to 1.4.5 o ports/108714 kde missing RUN_DEPENDS for www/kdewebdev3 o ports/108715 clsung [NEW PORT] www/rubygem-scrapi: A scrAPI toolkit for Ru o ports/108716 clsung [NEW PORT] www/rubygem-tidy: Ruby interface to HTML Ti f ports/108717 clsung [PATCH] devel/astyle: update to 1.20.1 f ports/108723 kxgenerator never worked for me o ports/108728 rafan [NEW PORT] mail/squirrelmail-compatibility-plugin1: Re f ports/108730 farrokhi update port net-mgmt/ipplan to 4.81 o ports/108731 rafan [MAINTAINER] mail/squirrelmail-compatibility-plugin: M o sparc/108732 sparc64 ping reports 14 digit time o ports/108738 portmgr NO_LDCONFIG_MTREE used but undocumented in Mk/bsd.port o ports/108739 portmgr Update/enhance description of INSTALLS_SHLIB and USE_L o ports/108741 clsung [Maintainer Update] audio/mp3stat - Makefile o ports/108744 kuriyama [PATCH] deskutils/egroupware broken, fix errors in Mak o 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/108760 itetcu [Update Version] print/abcm2ps to 5.2.5 o ports/108761 itetcu [Update Version] devel/agide to 0.124 o ports/108762 itetcu [Update Version] science/elmergrid to 5.3.1 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/108770 multimedia [PATCH] multimedia/iriverter: Update to support newer o bin/108775 [patch] tip/cu core dump if $HOME is not set o ports/108778 perky Building py-gd tries to pull in X even when WITHOUT_X1 o ports/108779 kde x11/kdelibs3: Convert to USE_LDCONFIG o 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 f ports/108797 rafan [PATCH] mail/freepops: update to 0.0.99 o ports/108800 apache Update of www/mod_auth_mysql2 f ports/108801 Apache-2.0.59 / mod_perl-2-2.0.3_1 frequently dump cor o usb/108810 usb quirk for I/O Magic USB flash drive "Giga Bank" o ports/108815 infofarmer graphics/gscan2pdf - version 0.9.2 hangs when getting o i386/108830 remko Add support for nForce MCP61 chipset o ports/108836 [NEW PORT] japanese/p5-Acme-Lou: Let's together with L o amd64/108841 amd64 Zdump prints bad information and hangs o ports/108842 wes [patch] mimedefang and sendmail from ports o ports/108847 jdp [PATCH] net/cvsup-mirror allow for cvsupd_flags o amd64/108848 amd64 Motherboard MSI K9NGM-L f ports/108849 rafan [PATCH] java/proguard: update to 3.7 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 f ports/108858 dinoex ports mail/sendmail cannot disable MILTER f ports/108859 rafan [PATCH] www/p5-WWW-Google-Calculator: update to 0.04 o ports/108862 portmgr move x11-wm/xfce4/bsd.xfce.mk to Mk/ o docs/108863 pav enhance porters handbook by USE_XFCE o ports/108864 flz astro/google-earth: update to 4.0.2735 o ports/108865 naddy [PATCH] update audio/flac to 1.1.3 f ports/108866 gnome www/seamonkey 1.1 does not compile o ports/108880 clsung [MAINTAINER UPDATE] devel/ruby-gems 0.9.1 -> 0.9.2 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/108918 [NEW PORT] devel/php5-json: JSON extension was added w o ports/108922 x11 libbitmap.so: Undefined symbol "FontFileBitmapSources" o ports/108932 Stale port removal recommendation: audio/anthem o ports/108933 [patch] archivers/unrar, chinese/unrar and archivers/l o ports/108934 perl spamassassin uses /var/lib/spamassassin directory but f ports/108935 itetcu [Update Version] net/sipp to 1.1.r8.20070208 o ports/108946 sat [New Port] mail/mimp - A mobile webmail system which 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) f ports/108958 [PATCH] x11-toolkits/blt again o ports/108959 databases/zodb outdated and deprecated o i386/108961 i386 High CPU use on directories containing files with mult o ports/108965 perky databases/zodb3 update o 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/108975 vd [FEATURE] devel/pth-hard 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 o ports/108981 [maintainer-update] added port knob that allows buildi o ports/108985 miwi [PATCH] devel/py-tables o conf/108988 rc [patch] RELENG_6_2 rc.d/jail unaliases incorrectly, on f ports/108989 [PATCH] polish/libgadu: update to 1.7.0 f ports/108999 ports/archivers/sharutils -> 4.6.3 o ports/109000 obraun [PATCH] sysutils/multitail: update to 4.3.0 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 i386/109010 i386 can mv directory within fat32 file system f ports/109011 [PATCH] devel/jrtplib: update to 3.7.0 o ports/109016 acm [Update Version] security/dazuko to 2.3.2 o ports/109017 itetcu [Update Version] security/libecc to 0.11.1 f ports/109018 itetcu [Update Version] net/miredo to 1.0.6 f ports/109023 nivit [PATCH] devel/py-twistedCore: fix py-zopeInterface pat o ports/109026 girgen [PATCH] databases/py-PyGreSQL: update to 3.8.1 o ports/109027 itetcu [Update Version] science/elmergrid to 5.3.2 o ports/109032 clsung [MAINTAINER] devel/py-pycallgraph: update to 0.2.0 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 o ports/109042 anray [maintainer] lang/haskell-mode.el update to 2.2 f ports/109045 security/xca compile fails: x509rev.cpp:63: error: inv o bin/109047 cut(1) reads off by one place when day (date) is a dou o ports/109050 roam [PATCH] textproc/p5-Time-Human: update to 1.03 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/109058 clsung [PATCH] www/py-django: Add FastCGI support f ports/109063 dougb portmaster doesn't chase category moves f ports/109064 [PATCH] fix incorrect dependencies on pecl-PDO package o ports/109066 clsung [maintainer-update] www/templatelite to 2.10 f ports/109067 clsung [PATCH] databases/rubygem-activerecord: fix depend pat o ports/109069 rafan [MAINTAINER] net/p5-RRD-Simple: update to 1.41 o ports/109071 rafan Maintainer Update comms/syncterm: Use sourceforge rath o ports/109072 rafan [MAINTAINER] net/p5-RRD-Simple: update to 1.41 o ports/109074 [NEW PORT]Jakarta Commons Modeler o conf/109075 [termcap] Line wrapping doesn't work when TERM is set o ports/109076 graphics/djvulibre really needs a bash? 3172 problems total. From owner-freebsd-bugs@FreeBSD.ORG Mon Feb 12 11: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 21EFF16A469 for ; Mon, 12 Feb 2007 11:19:35 +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 0D8D113C4D9 for ; Mon, 12 Feb 2007 11:19:35 +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 l1CBJYYR001067 for ; Mon, 12 Feb 2007 11:19:34 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1CBJPig001063 for freebsd-bugs@FreeBSD.org; Mon, 12 Feb 2007 11:19:25 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 12 Feb 2007 11:19:25 GMT Message-Id: <200702121119.l1CBJPig001063@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, 12 Feb 2007 11:19:35 -0000 Current FreeBSD problem reports Critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/27250 daichi [unionfs] [patch] unionfs filesystem panics in large n o kern/70096 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 o bin/108607 kientzle [PATCH] lib/libarchive core dumps on 6.2 6 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 bin/33672 [patch] telnetd and mount_mfs signal handlers call exi 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/100683 [syscons] [patch] syscons screen savers can eat up to 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 i386/101980 i386 [PATCH] Intel 631xESB ata and ichsmb support (i386/amd 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/106131 sam [ndis] [patch] sys/contrib/ndis: new functions needed 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 ports/107178 pav [PATCH] sysutils/eiciel: [SUMMARIZE CHANGES] o usb/107248 usb [PATCH] scsi_da.c quirk for Cowon iAUDIO X5 MP3 player o conf/107278 rc [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 p kern/107807 maxim [netinet] [patch] Spurious EHOSTDOWN errors -- ARP ret 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 docs/109034 doc [patch] add csup to cvsup.html o docs/109036 doc [patch] add csup snip to ports-using.html 237 problems total. Non-critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- a bin/1375 eivind [patch] Extraneous warning from mv(1) s kern/2298 [sio] [patch] support for DSR/DCD swapping on serial p s kern/4184 [netatalk] [patch] minor nits in sys/netatalk s bin/5173 [PATCH] restore ought to deal with root setable file f o bin/5745 nik [PATCH] Add /usr/local/share/mk to default make(1) sea s kern/6668 babkin [patch] new driver: Virtual Ethernet driver o bin/7265 [patch] A warning flag is added to ln(1). s bin/7606 [patch] NIS Makefile.dist: NOPUSH replaced by REMOTE_S o bin/7868 [patch] morse(6): Morse Code Fixups o bin/8867 [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 bin/54897 matteo [PATCH] -y flag for mount_mfs o conf/55015 [patch] 700.kernelmsg: Security check output enhacemen o kern/55163 [jail] [patch] hide kld system details from jails o misc/55387 [patch] users LD_LIBRARY_PATH can interfere with mail o conf/55470 [pccard] [patch] new pccard.conf entry (I-O DATA WN-B1 s ports/55515 portmgr [patch] extract perl stuff from bsd.port.mk into bsd.p o bin/55539 [patch] Parse fstab(5) with spaces in path names o kern/55835 emulation [linux] [patch] Linux IPC emulation missing SETALL sys o 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 i386 [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 p docs/84101 doc [patch] mt(1) manpage has erroneous synopsis, etc. o kern/84215 [jail] [patch] wildcard ip (INADDR_ANY) should not bin o bin/84219 rafan [ncurses] [patch] ncurses.h wchar_t confliction o docs/84265 doc [patch] chmod(1) manpage omits implication of setting p docs/84266 doc [patch] security(8) manpage should have init(8)'s list o docs/84267 doc [patch] chflags(1) manual doesn't say it's affected by o docs/84271 ceri [patch] compress(1) doesn't warn about nasty link hand 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 [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 o conf/89860 matteo [patch] Add ability to set up vnode backed filesystems o conf/89870 rc [patch] feature request to make netif verbose rc.conf o 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 bin/90415 [patch] Add -Z (no newfs) to mount_mfs(8). Use with e o ports/90436 portmgr [patch] Add a way to handle configuration files to bsd o kern/90521 [udf] [patch] UDF driver might calculate a wrong descr o bin/90680 [patch] make(1) thinks "^.for.o:" is a directive (".fo o bin/90687 [patch] side effect of -delete option of find(1) o bin/90823 [PATCH] cp(1) should use lchflags() o bin/90990 rafan [PATCH] ncurses doesn't compile with --enable-widec o kern/91010 daichi [unionfs] [patch] new source code and some changes o bin/91034 [patch] minor fix to iostat(8) so that columns line up o bin/91049 [patch] dump(8): make dumps more rsync-friendly o bin/91101 [patch] /usr/src/usr.bin/whereis/whereis.c o bin/91134 [smbfs] [patch] Preserve access and modification time o kern/91293 emulation [svr4] [patch] *Experimental* Update to the SVR4 emula o bin/91299 yar [patch] add ftpd(8) SITE SHA256 command 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 lawrance [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 p kern/93368 remko [ata] [patch] ATA_SMART command is missing 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 bin/94154 [sysinstall] [patch] add release and architecture to t o ports/94167 x11 [patch] x11/xorg-clients: install xdm/Xstartup and /Xr o kern/94273 gnn [netipsec] [patch] IPIP decapsulation problem in FAST_ o usb/94311 usb [ugen][PATCH] allow interrupt IN transactions to be af o bin/94367 [patch] wall(1): fix `wall: /dev/:0: No such file or d o kern/94369 [bktr] [patch] Patch to support Leadtek WinFast Tv2000 o 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 p kern/95957 bms [netinet6] [patch] missing check for failed memory all 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 f bin/97198 matteo [patch] powerd(8) unable to reduce CPU frequency 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 matteo [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 matteo [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 o 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 matteo [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 docs/99845 doc [patch] First introduce porttools to Porter's Handbook 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 [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] rc.d/jail: mount fstab after devfs o conf/103489 rc [rc.d] [patch] named_chroot_autoupdate doesn't work in o bin/103500 [patch] mkuzip(1) enhancement to accept size of input o 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 [patch] x11-toolkits/py-gtk2 does not configure with p o kern/104682 ipfw [ipfw] [patch] Some minor language consistency fixes a o bin/104689 [patch] powerd(8): add support for limiting cpu freque p bin/104702 des [patch] Make fetch(1) preserve permissions when overwr o bin/104713 [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 www/105026 gabor [PATCH] Missing space between skip site and section na 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 docs/105494 doc [PATCH] PH: rewrite WxWidgets entry o ports/105516 obrien [patch] sysutils/asr-utils needs ASR_COMPAT kernel opt o www/105527 gabor [Patch] Better format of pages with news 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 o 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 www/105950 gabor [Patch] Event anchors in main index.html are broken 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 usb/106538 usb [patch] Can not burn DVD on Sony DRX-820UL external US o 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 f ports/107177 gnome [PATCH] multimedia/totem: [SUMMARIZE CHANGES] o ports/107185 kuriyama [PATCH] security/gnupg updates 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 o ports/107557 mnag [PATCH] mail/py-spf: update to 2.0.2 o conf/107560 [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 f ports/107899 itetcu [PATCH] audio/gtick: update to 0.3.12 o ports/107900 perky [PATCH] devel/py-logilab-common: update to 0.21.1 o ports/107951 fenner [PATCH] editors/xxe-std: update to 3.5.1 f ports/107955 miwi [PATCH] irc/ezbounce: update to 1.04.c o ports/107957 shaun [PATCH] irc/ircd-ratbox: update to 2.2.4 o kern/108046 [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 ports/108208 perky [PATCH] devel/py-ctypes: update to 1.0.1 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 www/108424 remko [PATCH] add OCUUT to list of use groups o ports/108465 mnag [patch] databases/memcached: allow to run with negativ f ports/108466 sysutils/logrotate: [patch] syslog.sample should go in o ports/108471 perky [PATCH] dns/py-adns: update to 1.2.1 o ports/108476 perky [PATCH] devel/scons: update to 0.96.94 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 o conf/108611 [patch] An obsolete nice(1) syntax is left in etc/peri f ports/108625 [PATCH] textproc/p5-Pod-LaTeX: fixing pkg-plist "issue f ports/108626 bsam [patch] shells/bash-completion: drop dependency shells o ports/108627 andreas [patch] print/apsfilter: drop shells/bash2 dependency 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/108667 grog [PATCH] multimedia/mythtv: fixes frontend<->backend co o ports/108679 delphij [PATCH] mail/spamlogd fail without PF f ports/108689 alepulver [patch] irc/bitlbee: bitlbee on 6.2-RELEASE with NO_IN f ports/108717 clsung [PATCH] devel/astyle: update to 1.20.1 o ports/108744 kuriyama [PATCH] deskutils/egroupware broken, fix errors in Mak o ports/108770 multimedia [PATCH] multimedia/iriverter: Update to support newer o bin/108775 [patch] tip/cu core dump if $HOME is not set 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 f ports/108797 rafan [PATCH] mail/freepops: update to 0.0.99 o ports/108842 wes [patch] mimedefang and sendmail from ports o ports/108847 jdp [PATCH] net/cvsup-mirror allow for cvsupd_flags f ports/108849 rafan [PATCH] java/proguard: update to 3.7 f ports/108859 rafan [PATCH] www/p5-WWW-Google-Calculator: update to 0.04 o ports/108865 naddy [PATCH] update audio/flac to 1.1.3 o kern/108899 [termcap] [patch] termcap update for screen and linux o ports/108933 [patch] archivers/unrar, chinese/unrar and archivers/l f ports/108958 [PATCH] x11-toolkits/blt again o ports/108978 lioux [PATCH] print/mftrace: update to 1.2.14, take maintain o ports/108985 miwi [PATCH] devel/py-tables o conf/108988 rc [patch] RELENG_6_2 rc.d/jail unaliases incorrectly, on f ports/108989 [PATCH] polish/libgadu: update to 1.7.0 o ports/109000 obraun [PATCH] sysutils/multitail: update to 4.3.0 o ports/109001 sobomax [PATCH] net/ortp: update to 0.13.0 o ports/109004 shaun [PATCH] net/GeoIP: update to 1.4.2 f ports/109011 [PATCH] devel/jrtplib: update to 3.7.0 f ports/109023 nivit [PATCH] devel/py-twistedCore: fix py-zopeInterface pat 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/109050 roam [PATCH] textproc/p5-Time-Human: update to 1.03 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/109058 clsung [PATCH] www/py-django: Add FastCGI support f ports/109064 [PATCH] fix incorrect dependencies on pecl-PDO package f ports/109067 clsung [PATCH] databases/rubygem-activerecord: fix depend pat 1048 problems total. From owner-freebsd-bugs@FreeBSD.ORG Mon Feb 12 11:36:12 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 8F68716A400 for ; Mon, 12 Feb 2007 11:36:12 +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 48BE413C467 for ; Mon, 12 Feb 2007 11:36:12 +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 l1CBaCE7003127 for ; Mon, 12 Feb 2007 11:36:12 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1CBJZ5L001072 for freebsd-bugs@FreeBSD.org; Mon, 12 Feb 2007 11:19:35 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 12 Feb 2007 11:19:35 GMT Message-Id: <200702121119.l1CBJZ5L001072@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, 12 Feb 2007 11:36:12 -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" 10 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 i386/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] 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 p kern/93368 remko [ata] [patch] ATA_SMART command is missing 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 o i386/97589 i386 [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/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/109044 [ata] Bizarre problem with Pioneer 111D on i965 board 57 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 '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 -------------------------------------------------------------------------------- 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 5 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 [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/104914 [em] network hang (the em driver) when filesystem is f o kern/104978 [em] jumbo frames has been broken in RELENG_6 by last 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 i386 [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 [libalias] dcc resume over natd in 6.x 4 problems total. Problem reports for tag 'libarchive': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/86742 kientzle [libarchive] [patch] Add archive_open_ to read from a 1 problem total. Problem reports for tag 'libc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/19406 [libc] setenv(3) allocates memory which is not freed b o kern/25886 [libc] cgetset(3) doesn't get cleared when switching d o kern/26486 [libc] [patch] setnetgrent hangs when netgroup contain o kern/31981 [libc] [patch] (mis)feature in getnetent parsing -- co o kern/32098 [libc] semctl() does not propagate permissions o kern/35506 jon [libc] innetgr() doesn't match wildcard fields in NIS- o kern/36902 [libc] [patch] proposed new format code %N for strftim o kern/42429 [libc] [patch] hash_action called with HASH_DELETE doe o kern/42956 [libc] dlclose gives "invalid shared object handle" wh o kern/52907 phk [libc] [patch] more malloc options for debugging progr o kern/56720 [libc] feature request: UNICODE support in Resolver o kern/58687 deischen [libc] [patch] gethostbyname(3) leaks kqueue file desc s kern/59739 [libc] rmdir(2) and mkdir(2) both return EISDIR for ar s kern/64875 standards [libc] [patch] [feature request] add a system call: fd o kern/68690 [libc] write(2) returns wrong value when EFAULT o kern/69825 [libc] 1st group supplied to setgroups() does not take o kern/69826 [libc] 16th group has no effect when accesing file on o kern/72498 [libc] timestamp code on jailed SMP machine generates o kern/75702 dwmalone [libc] -O5 flag breaks some compiles in /usr/src/lib/l o kern/76398 [libc] stdio can lose data in the presence of signals o kern/77841 [libc] [patch] cast away const in getpublickey() o kern/78756 [libc] [patch] src/lib/libc/nls/fr_FR.ISO8859-1.msg fo s kern/79048 [libc] realloc() copies data even when the size of all o kern/81987 [libc] [patch] memory leaks in libc/rpc 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 39 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 5 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 o 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 o kern/57195 [mfs] mount_mfs -i 512 => panic? 3 problems total. Problem reports for tag 'mii': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/76710 [mii] [patch] rgephy does not deal with status properl 1 problem total. Problem reports for tag '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 20 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 -------------------------------------------------------------------------------- o 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/106131 sam [ndis] [patch] sys/contrib/ndis: new functions needed o kern/108891 [ndis] Fatal Kernel Trap 12 ndis ralink wireless drive 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 p kern/98799 bms [netinet] fastforwarding routes packets to network ip p kern/107807 maxim [netinet] [patch] Spurious EHOSTDOWN errors -- ARP ret o kern/108211 [netinet] potentially a bug for inet_aton in sys/netin 7 problems total. Problem reports for tag 'netinet6': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/72217 [netinet6] [patch] Bug in calculation of the parameter p kern/95957 bms [netinet6] [patch] missing check for failed memory all o kern/98597 [netinet6] Bug in FreeBSD 6.1 IPv6 link-local DAD proc 3 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 -------------------------------------------------------------------------------- f kern/100519 bms [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 matteo [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 '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 [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] rc.d/jail: mount fstab after devfs 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 12 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 3 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 11 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 amd64/78848 amd64 [sis] sis driver on FreeBSD 5.x does not work on amd64 o kern/83807 [sis] [patch] if_sis: Wake On Lan support for FreeBSD o kern/89633 [sis] [panic] if_sis panic under extended load in 6.0- 8 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 1 problem total. Problem reports for tag 'svr4': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/91293 emulation [svr4] [patch] *Experimental* Update to the SVR4 emula 1 problem total. Problem reports for tag 'sym': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/27059 scsi [sym] SCSI subsystem hangs under heavy load on (Server o kern/60641 scsi [sym] Sporadic SCSI bus resets with 53C810 under load o kern/73289 [sym] Interrupt storm on sym0 o i386/88315 i386 [sym] [hang] Symbios/LSI-HBA (SYM83C895) hangs o kern/90282 scsi [sym] SCSI bus resets cause loss of ch device o kern/93128 scsi [sym] FreeBSD 6.1 BETA 1 has problems with Symbios/LSI 6 problems total. Problem reports for tag 'syscons': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/15436 [syscons] syscons extension: "propellers" o kern/31890 [syscons] [patch] new syscons font o kern/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 o kern/100683 [syscons] [patch] syscons screen savers can eat up to 9 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/56952 re [sysinstall] floppy install error 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 s bin/84084 [sysinstall] FreeBSD 4.11-R won't install to 4th part o bin/84208 [sysinstall] "Leave the MBR untouched" option not work f bin/84667 [sysinstall] annoying installation problem o bin/84668 [sysinstall] ssh and sysinstall problem o bin/84674 [sysinstall] Installer trying to install bad package t 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/94154 [sysinstall] [patch] add release and architecture to t 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 127 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 o conf/109075 [termcap] Line wrapping doesn't work when TERM is set 2 problems 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/95155 rodrigc [ufs] Creation of UFS snapshot turns 'acls' mount opti 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 15 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 -------------------------------------------------------------------------------- f kern/17819 remko [unionfs] Build ports on nfs & union mount panics kern a kern/27250 daichi [unionfs] [patch] unionfs filesystem panics in large n o kern/27571 daichi [unionfs] Changing policy of shadowing files and direc s kern/52110 daichi [unionfs] FS corruption when using unionfs s kern/52745 daichi [unionfs] Fatal trap 12: page fault while in kernel mo s kern/54534 daichi [unionfs] unionfs && mfs|md crashing machine a kern/56381 daichi [unionfs] panic: page fault in fifo_close() ... s kern/66066 daichi [unionfs] panic: ufs_direnter: compact2 o kern/66152 daichi [unionfs] laying unionfs over another unionfs mount ca o kern/66829 daichi [unionfs] mounting fdesc union on /dev panics 4.10-pre s kern/67706 daichi [unionfs] cvs update over a union mount slows and then o kern/73094 daichi [unionfs] system runs out of vnodes o bin/75585 matteo [unionfs] mount -p on unionfs results in non parsable o kern/84498 daichi [unionfs] [hang] file system hangs when jail starts if s kern/86596 daichi [unionfs] unionfs -b brokes file modes s kern/89755 daichi [unionfs] [hang] Jailed process deadlocks when using u o kern/91010 daichi [unionfs] [patch] new source code and some changes s kern/97595 daichi [unionfs] FreeBSD 6.1-RELEASE - "lockmgr: locking aga o kern/97699 daichi [unionfs] UNIONFS panic 19 problems total. Problem reports for tag 'uplcom': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/92403 usb [uplcom] uplcom.c needs new entry for 4.00 revision of o kern/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 [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 45 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 3 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 10 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 12 13:05: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 A2EDD16A406; Mon, 12 Feb 2007 13:05:01 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 7B0A513C4B2; Mon, 12 Feb 2007 13:05:01 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from freefall.freebsd.org (bms@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1CD51xX012469; Mon, 12 Feb 2007 13:05:01 GMT (envelope-from bms@freefall.freebsd.org) Received: (from bms@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1CD51Ff012465; Mon, 12 Feb 2007 13:05:01 GMT (envelope-from bms) Date: Mon, 12 Feb 2007 13:05:01 GMT From: Bruce M Simpson Message-Id: <200702121305.l1CD51Ff012465@freefall.freebsd.org> To: bms@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/108963: [ipfilter] panic in nat with ftp_proxy 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, 12 Feb 2007 13:05:01 -0000 Old Synopsis: kernel panic on swi:net New Synopsis: [ipfilter] panic in nat with ftp_proxy Responsible-Changed-From-To: freebsd-i386->freebsd-bugs Responsible-Changed-By: bms Responsible-Changed-When: Mon Feb 12 13:03:22 UTC 2007 Responsible-Changed-Why: Looks like a more general bug http://www.freebsd.org/cgi/query-pr.cgi?pr=108963 From owner-freebsd-bugs@FreeBSD.ORG Mon Feb 12 15:10:30 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 4733116A402 for ; Mon, 12 Feb 2007 15:10:30 +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 E784113C428 for ; Mon, 12 Feb 2007 15:10:29 +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 l1CFATDt020629 for ; Mon, 12 Feb 2007 15:10:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1CFATV1020628; Mon, 12 Feb 2007 15:10:29 GMT (envelope-from gnats) Date: Mon, 12 Feb 2007 15:10:29 GMT Message-Id: <200702121510.l1CFATV1020628@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: "Imri Zvik" Cc: Subject: Re: conf/109075: [termcap] Line wrapping doesn't work when TERM is set to 'linux' X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Imri Zvik List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Feb 2007 15:10:30 -0000 The following reply was made to PR conf/109075; it has been noted by GNATS. From: "Imri Zvik" To: Cc: Subject: Re: conf/109075: [termcap] Line wrapping doesn't work when TERM is set to 'linux' Date: Mon, 12 Feb 2007 17:08:50 +0200 I feel a bit stupid, but I think I've found my error - PS1 was set to '\e[1m\u@\h\e[m:\w\$ ' which somehow messed the terminal if xn was enabled. Changing it to: PS1=3D"\[\033[1;37m\]\u@\h\[\033[0m\]:\w\$ " fixed everything. I'm really sorry for hurrying with this PR - please close it. Thanks, From owner-freebsd-bugs@FreeBSD.ORG Mon Feb 12 15:57: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 F026716A407; Mon, 12 Feb 2007 15:57:38 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id C88C113C474; Mon, 12 Feb 2007 15:57:38 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from freefall.freebsd.org (kris@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1CFvco8023536; Mon, 12 Feb 2007 15:57:38 GMT (envelope-from kris@freefall.freebsd.org) Received: (from kris@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1CFvcnQ023532; Mon, 12 Feb 2007 15:57:38 GMT (envelope-from kris) Date: Mon, 12 Feb 2007 15:57:38 GMT From: Kris Kennaway Message-Id: <200702121557.l1CFvcnQ023532@freefall.freebsd.org> To: imriz@co.zahav.net.il, kris@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: conf/109075: [termcap] Line wrapping doesn't work when TERM is set to 'linux' 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, 12 Feb 2007 15:57:39 -0000 Synopsis: [termcap] Line wrapping doesn't work when TERM is set to 'linux' State-Changed-From-To: open->closed State-Changed-By: kris State-Changed-When: Mon Feb 12 15:57:26 UTC 2007 State-Changed-Why: Closed at submitter's request http://www.freebsd.org/cgi/query-pr.cgi?pr=109075 From owner-freebsd-bugs@FreeBSD.ORG Mon Feb 12 15:58:28 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 8C79416A402; Mon, 12 Feb 2007 15:58:28 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 61BC513C4B6; Mon, 12 Feb 2007 15:58:28 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from freefall.freebsd.org (kris@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1CFwRlb023596; Mon, 12 Feb 2007 15:58:27 GMT (envelope-from kris@freefall.freebsd.org) Received: (from kris@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1CFwRK5023592; Mon, 12 Feb 2007 15:58:27 GMT (envelope-from kris) Date: Mon, 12 Feb 2007 15:58:27 GMT From: Kris Kennaway Message-Id: <200702121558.l1CFwRK5023592@freefall.freebsd.org> To: cyberlord@cyber-wizard.com, kris@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: bin/109047: cut(1) reads off by one place when day (date) is a double digit 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, 12 Feb 2007 15:58:28 -0000 Synopsis: cut(1) reads off by one place when day (date) is a double digit State-Changed-From-To: open->closed State-Changed-By: kris State-Changed-When: Mon Feb 12 15:58:01 UTC 2007 State-Changed-Why: Not a bug, this is just how cut(1) works. http://www.freebsd.org/cgi/query-pr.cgi?pr=109047 From owner-freebsd-bugs@FreeBSD.ORG Mon Feb 12 16:00:28 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 8ABE616A402 for ; Mon, 12 Feb 2007 16:00:28 +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 7A84113C47E for ; Mon, 12 Feb 2007 16:00:28 +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 l1CG0SYA023889 for ; Mon, 12 Feb 2007 16:00:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1CG0Sh8023888; Mon, 12 Feb 2007 16:00:28 GMT (envelope-from gnats) Date: Mon, 12 Feb 2007 16:00:28 GMT Message-Id: <200702121600.l1CG0Sh8023888@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Kris Kennaway Cc: Subject: Re: misc/109047: cut utility reads off by one place when day (date) is a double digit X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Kris Kennaway List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Feb 2007 16:00:28 -0000 The following reply was made to PR bin/109047; it has been noted by GNATS. From: Kris Kennaway To: Tim Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: misc/109047: cut utility reads off by one place when day (date) is a double digit Date: Mon, 12 Feb 2007 10:57:02 -0500 On Sun, Feb 11, 2007 at 02:00:26PM +0000, Tim wrote: > When the day (date) reaches double digits the cut utility/program somehow reads the field as off by one. I'm not sure if this is a problem with the auth.log or with cut itself but my bet is on cut. > > I have a script that reads auth.log and filters out bad login attempts and writes to hosts.allow. When the date reaches double digits I have to adjust my script accordingly. > > Here is the offending line in my script. > > for IP in `grep sshd /var/log/auth.log|grep "illegal user"|cut -d " " -f14` 0.0.0.0; do > > I have to change the -f14 to -f13 during double digit days and then again when the month rolls over set it back to -f14. I think this is a bug in your expectation of how to use cut :-) As you have found (also how it is documented to work), cut treats each instance of the delimiter (" ") as separating a new field, so when spacing changes so does its idea of field counting. This is by design. If you want to extract a word without worrying about whitespace, use a different tool, a convenient one is awk '{print $14}' Kris From owner-freebsd-bugs@FreeBSD.ORG Mon Feb 12 17:50:18 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 CFE7016A401 for ; Mon, 12 Feb 2007 17:50:18 +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 C093B13C481 for ; Mon, 12 Feb 2007 17:50:18 +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 l1CHoGVY032212 for ; Mon, 12 Feb 2007 17:50:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1CHoGCM032211; Mon, 12 Feb 2007 17:50:16 GMT (envelope-from gnats) Date: Mon, 12 Feb 2007 17:50:16 GMT Message-Id: <200702121750.l1CHoGCM032211@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Sam Leffler Cc: Subject: Re: kern/92083: [ural] [panic] panic using WPA on ural NIC in 6.2-RELEASE X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Sam Leffler List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Feb 2007 17:50:18 -0000 The following reply was made to PR kern/92083; it has been noted by GNATS. From: Sam Leffler To: Jonathan Fosburgh Cc: Anders Nordby , bug-followup@freebsd.org Subject: Re: kern/92083: [ural] [panic] panic using WPA on ural NIC in 6.2-RELEASE Date: Mon, 12 Feb 2007 09:27:39 -0800 Jonathan Fosburgh wrote: > On Sunday 11 February 2007 13:36, Anders Nordby wrote: >> Hi, >> >> Just been trying the same thing in 6.2-RELEASE, with the same hardware. >> >> It seems the same bug still occurs, the stack trace looks very similar. >> Everytime I try do do a cvsup of the ports tree, the system panics. >> >> stream# uname -a >> FreeBSD stream.localnet 6.2-RELEASE FreeBSD 6.2-RELEASE #0: Tue Feb 6 >> 22:09:01 CET 2007 root@stream.localnet:/usr/obj/usr/src/sys/STREAM >> i386 > > Actually I recently discovered that it is not the use of WPA itself that > causes the panic, it is the wpa_suplicant. Using that for WEP also caused a > panic on this NIC. > > The last I heard about any of this stuff your problems were related to usb xfer stalls. If this no longer true then please provide me with a recipe for recreating the issue. If it's a driver/net80211 issue I will try to fix it. If it's in the usb subsystem it's unlikely I'm going to pursue it. FWIW the "new usb stack" is unlikely to help you. The author broke ural in porting it and so far as I know it's not been fixed. This is independent of whether or not any changes in his code base will resolve the original issue. Sam From owner-freebsd-bugs@FreeBSD.ORG Mon Feb 12 19:50: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 51AD216A408 for ; Mon, 12 Feb 2007 19:50: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 16BDD13C48D for ; Mon, 12 Feb 2007 19:50:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1CJo2B9039921 for ; Mon, 12 Feb 2007 19: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 l1CJo2XR039920; Mon, 12 Feb 2007 19:50:02 GMT (envelope-from gnats) Resent-Date: Mon, 12 Feb 2007 19:50:02 GMT Resent-Message-Id: <200702121950.l1CJo2XR039920@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, "Dr. Markus Waldeck" Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3FE1B16A401 for ; Mon, 12 Feb 2007 19:40: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 2FEBF13C4C1 for ; Mon, 12 Feb 2007 19:40: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 l1CJeaaL071176 for ; Mon, 12 Feb 2007 19:40:36 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l1CJeask071175; Mon, 12 Feb 2007 19:40:36 GMT (envelope-from nobody) Message-Id: <200702121940.l1CJeask071175@www.freebsd.org> Date: Mon, 12 Feb 2007 19:40:36 GMT From: "Dr. Markus Waldeck" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: bin/109102: sysctl security.mac.bsdextended is not consistent with the output of sysctl -d 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, 12 Feb 2007 19:50:03 -0000 >Number: 109102 >Category: bin >Synopsis: sysctl security.mac.bsdextended is not consistent with the output of sysctl -d >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Feb 12 19:50:02 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Dr. Markus Waldeck >Release: 7.0-CURRENT-200702 >Organization: >Environment: FreeBSD fb 7.0-CURRENT-200702 FreeBSD 7.0-CURRENT-200702 #1: Sun Feb 11 14:37:59 UTC 2007 root@fbh:/huge/fbsrc200702/sys/i386/compile/FB070201 i386 >Description: CUSTOM kernel: options MAC kldload mac_bsdextended.ko % sysctl security.mac.bsdextended security.mac.bsdextended.enabled: 1 security.mac.bsdextended.rule_count: 0 security.mac.bsdextended.rule_slots: 0 security.mac.bsdextended.rule_version: 2 security.mac.bsdextended.logging: 0 security.mac.bsdextended.firstmatch_enabled: 0 % sysctl -d security.mac.bsdextended security.mac.bsdextended: TrustedBSD extended BSD MAC policy controls security.mac.bsdextended.enabled: Enforce extended BSD policy security.mac.bsdextended.rule_count: Number of defined rules security.mac.bsdextended.rule_slots: Number of used rule slots security.mac.bsdextended.rule_version: Version number for API security.mac.bsdextended.logging: Log failed authorization requests security.mac.bsdextended.firstmatch_enabled: Disable/enable match first rule functionality security.mac.bsdextended.rules: BSD extended MAC rules sysctl -d mentions security.mac.bsdextended.rules with does not exist and shows some redundant newlines. >How-To-Repeat: % sysctl security.mac.bsdextended % sysctl -d security.mac.bsdextended >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Feb 12 20:04:56 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 7F09516A400; Mon, 12 Feb 2007 20:04:56 +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 59A9F13C4A3; Mon, 12 Feb 2007 20:04:56 +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 l1CK4uZn040749; Mon, 12 Feb 2007 20:04:56 GMT (envelope-from anders@freefall.freebsd.org) Received: (from anders@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1CK4uUv040745; Mon, 12 Feb 2007 20:04:56 GMT (envelope-from anders) Date: Mon, 12 Feb 2007 20:04:56 GMT From: Anders Nordby Message-Id: <200702122004.l1CK4uUv040745@freefall.freebsd.org> To: anders@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: kern/92083: [ural] [panic] panic using WPA on ural NIC in 6.0-RELEASE 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, 12 Feb 2007 20:04:56 -0000 Synopsis: [ural] [panic] panic using WPA on ural NIC in 6.0-RELEASE Responsible-Changed-From-To: freebsd-bugs->freebsd-usb Responsible-Changed-By: anders Responsible-Changed-When: Mon Feb 12 20:03:57 UTC 2007 Responsible-Changed-Why: Seems to be a USB problem. http://www.freebsd.org/cgi/query-pr.cgi?pr=92083 From owner-freebsd-bugs@FreeBSD.ORG Mon Feb 12 22:02: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 1174B16A402; Mon, 12 Feb 2007 22:02:13 +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 E024A13C491; Mon, 12 Feb 2007 22:02: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 l1CM2CRG052917; Mon, 12 Feb 2007 22:02:12 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1CM2CID052913; Mon, 12 Feb 2007 22:02:12 GMT (envelope-from remko) Date: Mon, 12 Feb 2007 22:02:12 GMT From: Remko Lodder Message-Id: <200702122202.l1CM2CID052913@freefall.freebsd.org> To: not@not.not, remko@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/105255: boot up 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: Mon, 12 Feb 2007 22:02:13 -0000 Synopsis: boot up loop State-Changed-From-To: open->closed State-Changed-By: remko State-Changed-When: Mon Feb 12 22:02:11 UTC 2007 State-Changed-Why: Closing the PR as ruslan mentioned earlier, feedback timeout. http://www.freebsd.org/cgi/query-pr.cgi?pr=105255 From owner-freebsd-bugs@FreeBSD.ORG Mon Feb 12 23:30: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 3612916A400 for ; Mon, 12 Feb 2007 23:30: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 D7A7413C48D for ; Mon, 12 Feb 2007 23:30:16 +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 l1CNUGgZ058399 for ; Mon, 12 Feb 2007 23:30:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1CNUGLT058398; Mon, 12 Feb 2007 23:30:16 GMT (envelope-from gnats) Date: Mon, 12 Feb 2007 23:30:16 GMT Message-Id: <200702122330.l1CNUGLT058398@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Eriks Dobelis Cc: Subject: Re: conf/105100: [patch] no support for lv (latvian) locale X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Eriks Dobelis List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Feb 2007 23:30:17 -0000 The following reply was made to PR conf/105100; it has been noted by GNATS. From: Eriks Dobelis To: bug-followup@FreeBSD.org, eriks00@moon.lv Cc: Subject: Re: conf/105100: [patch] no support for lv (latvian) locale Date: Tue, 13 Feb 2007 01:14:45 +0200 Could it be possible for somebody to review and submit the previously added patch? It's just about adding missing locale, so probability of adverse impact is minimal. From owner-freebsd-bugs@FreeBSD.ORG Tue Feb 13 00:04:07 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 2D66F16A406 for ; Tue, 13 Feb 2007 00:04:07 +0000 (UTC) (envelope-from ache@nagual.pp.ru) Received: from nagual.pp.ru (nagual.pp.ru [194.87.13.69]) by mx1.freebsd.org (Postfix) with ESMTP id 8221E13C478 for ; Tue, 13 Feb 2007 00:02:32 +0000 (UTC) (envelope-from ache@nagual.pp.ru) Received: from nagual.pp.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.13.8/8.13.8) with ESMTP id l1CNphIw092882; Tue, 13 Feb 2007 02:51:43 +0300 (MSK) (envelope-from ache@nagual.pp.ru) Received: (from ache@localhost) by nagual.pp.ru (8.13.8/8.13.8/Submit) id l1CNphF9092881; Tue, 13 Feb 2007 02:51:43 +0300 (MSK) (envelope-from ache) Date: Tue, 13 Feb 2007 02:51:43 +0300 From: Andrey Chernov To: Eriks Dobelis Message-ID: <20070212235143.GA92715@nagual.pp.ru> Mail-Followup-To: Andrey Chernov , Eriks Dobelis , freebsd-bugs@freebsd.org References: <200702122330.l1CNUGLT058398@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200702122330.l1CNUGLT058398@freefall.freebsd.org> User-Agent: Mutt/1.5.13 (2006-08-11) Cc: freebsd-bugs@freebsd.org Subject: Re: conf/105100: [patch] no support for lv (latvian) locale 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, 13 Feb 2007 00:04:07 -0000 On Mon, Feb 12, 2007 at 11:30:16PM +0000, Eriks Dobelis wrote: > Subject: Re: conf/105100: [patch] no support for lv (latvian) locale > Date: Tue, 13 Feb 2007 01:14:45 +0200 > > Could it be possible for somebody to review and submit the previously > added patch? It's just about adding missing locale, so probability of > adverse impact is minimal. Some mistakes are there. There is no needs to copy mklocale/lt_LT.ISO8859-13.src but link it instead. There is no needs to copy colldef/lt_LT.ISO8859-13.src but link it instead. In timedef data md_order is dm, not md. BSD.local.dist shold be left untouched. -- http://ache.pp.ru/ From owner-freebsd-bugs@FreeBSD.ORG Tue Feb 13 00:49:30 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 6082316A400; Tue, 13 Feb 2007 00:49:30 +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 381FD13C4AC; Tue, 13 Feb 2007 00:49:30 +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 l1D0nUKS065897; Tue, 13 Feb 2007 00:49:30 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1D0nUOR065893; Tue, 13 Feb 2007 00:49:30 GMT (envelope-from linimon) Date: Tue, 13 Feb 2007 00:49:30 GMT From: Mark Linimon Message-Id: <200702130049.l1D0nUOR065893@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/109010: [msdosfs] can't mv directory within fat32 file 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: Tue, 13 Feb 2007 00:49:30 -0000 Synopsis: [msdosfs] can't mv directory within fat32 file system Responsible-Changed-From-To: freebsd-i386->freebsd-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Tue Feb 13 00:49:20 UTC 2007 Responsible-Changed-Why: This does not sound i386-specific. http://www.freebsd.org/cgi/query-pr.cgi?pr=109010 From owner-freebsd-bugs@FreeBSD.ORG Tue Feb 13 00:50: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 8716B16A400; Tue, 13 Feb 2007 00:50: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 5ED0913C491; Tue, 13 Feb 2007 00:50:09 +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 l1D0o9hi066012; Tue, 13 Feb 2007 00:50:09 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1D0o9nP066008; Tue, 13 Feb 2007 00:50:09 GMT (envelope-from linimon) Date: Tue, 13 Feb 2007 00:50:09 GMT From: Mark Linimon Message-Id: <200702130050.l1D0o9nP066008@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/108961: High CPU use on directories containing files with multiple UIDs 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, 13 Feb 2007 00:50:09 -0000 Synopsis: High CPU use on directories containing files with multiple UIDs Responsible-Changed-From-To: freebsd-i386->freebsd-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Tue Feb 13 00:49:42 UTC 2007 Responsible-Changed-Why: This does not sound i386-specific. http://www.freebsd.org/cgi/query-pr.cgi?pr=108961 From owner-freebsd-bugs@FreeBSD.ORG Tue Feb 13 00:51:11 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 7C5E316A406; Tue, 13 Feb 2007 00:51:11 +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 52D0313C4A3; Tue, 13 Feb 2007 00:51:11 +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 l1D0pB5w066263; Tue, 13 Feb 2007 00:51:11 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1D0pB7I066259; Tue, 13 Feb 2007 00:51:11 GMT (envelope-from linimon) Date: Tue, 13 Feb 2007 00:51:11 GMT From: Mark Linimon Message-Id: <200702130051.l1D0pB7I066259@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/108924: Panics when Intel MatrixRAID RAID1 is degraded 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, 13 Feb 2007 00:51:11 -0000 Synopsis: Panics when Intel MatrixRAID RAID1 is degraded Responsible-Changed-From-To: freebsd-i386->freebsd-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Tue Feb 13 00:50:18 UTC 2007 Responsible-Changed-Why: This does not sound i386-specific. http://www.freebsd.org/cgi/query-pr.cgi?pr=108924 From owner-freebsd-bugs@FreeBSD.ORG Tue Feb 13 00:52: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 7431116A401; Tue, 13 Feb 2007 00:52:14 +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 4CE6713C4A3; Tue, 13 Feb 2007 00:52:14 +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 l1D0qEPh066323; Tue, 13 Feb 2007 00:52:14 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1D0qEkm066319; Tue, 13 Feb 2007 00:52:14 GMT (envelope-from linimon) Date: Tue, 13 Feb 2007 00:52:14 GMT From: Mark Linimon Message-Id: <200702130052.l1D0qEkm066319@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: bin/108895: pppd(8): PPPoE dead connections on 6.2 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Feb 2007 00:52:14 -0000 Old Synopsis: PPPoE dead connections 6.2 New Synopsis: pppd(8): PPPoE dead connections on 6.2 Responsible-Changed-From-To: freebsd-i386->freebsd-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Tue Feb 13 00:51:18 UTC 2007 Responsible-Changed-Why: This does not sound i386-specific. http://www.freebsd.org/cgi/query-pr.cgi?pr=108895 From owner-freebsd-bugs@FreeBSD.ORG Tue Feb 13 00:56:22 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 F036B16A56D; Tue, 13 Feb 2007 00:56:22 +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 C660213C494; Tue, 13 Feb 2007 00:56:22 +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 l1D0uMmX066556; Tue, 13 Feb 2007 00:56:22 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1D0uMvi066552; Tue, 13 Feb 2007 00:56:22 GMT (envelope-from linimon) Date: Tue, 13 Feb 2007 00:56:22 GMT From: Mark Linimon Message-Id: <200702130056.l1D0uMvi066552@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/108582: [agp] White square cursor i915 DRI Xorg 6.9.0 AGP 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, 13 Feb 2007 00:56:23 -0000 Old Synopsis: White square cursor i915 DRI Xorg 6.9.0 AGP New Synopsis: [agp] White square cursor i915 DRI Xorg 6.9.0 AGP Responsible-Changed-From-To: freebsd-i386->freebsd-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Tue Feb 13 00:56:02 UTC 2007 Responsible-Changed-Why: This does not sound i386-specific. http://www.freebsd.org/cgi/query-pr.cgi?pr=108582 From owner-freebsd-bugs@FreeBSD.ORG Tue Feb 13 00:57:51 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 6818B16A400; Tue, 13 Feb 2007 00:57:51 +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 4054213C461; Tue, 13 Feb 2007 00:57:51 +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 l1D0vpQa066636; Tue, 13 Feb 2007 00:57:51 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1D0vpMC066632; Tue, 13 Feb 2007 00:57:51 GMT (envelope-from linimon) Date: Tue, 13 Feb 2007 00:57:51 GMT From: Mark Linimon Message-Id: <200702130057.l1D0vpMC066632@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/108468: Stop in /usr/src/sys/modules/netgraph/atm/atmbase. on custom kernel build. 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, 13 Feb 2007 00:57:51 -0000 Synopsis: Stop in /usr/src/sys/modules/netgraph/atm/atmbase. on custom kernel build. Responsible-Changed-From-To: freebsd-i386->freebsd-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Tue Feb 13 00:56:48 UTC 2007 Responsible-Changed-Why: This is not i386-specific. http://www.freebsd.org/cgi/query-pr.cgi?pr=108468 From owner-freebsd-bugs@FreeBSD.ORG Tue Feb 13 00:58: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 6CAD416A402; Tue, 13 Feb 2007 00:58: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 4549B13C49D; Tue, 13 Feb 2007 00:58: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 l1D0wYeN066710; Tue, 13 Feb 2007 00:58:34 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1D0wYYF066706; Tue, 13 Feb 2007 00:58:34 GMT (envelope-from linimon) Date: Tue, 13 Feb 2007 00:58:34 GMT From: Mark Linimon Message-Id: <200702130058.l1D0wYYF066706@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/108379: [ata] Secondary sata drive not detected by FreeBSD 6.2 (regression) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Feb 2007 00:58:34 -0000 Synopsis: [ata] Secondary sata drive not detected by FreeBSD 6.2 (regression) Responsible-Changed-From-To: freebsd-i386->freebsd-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Tue Feb 13 00:58:21 UTC 2007 Responsible-Changed-Why: This does not sound i386-specific. http://www.freebsd.org/cgi/query-pr.cgi?pr=108379 From owner-freebsd-bugs@FreeBSD.ORG Tue Feb 13 00:59: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 9A9EF16A401; Tue, 13 Feb 2007 00:59:53 +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 732F113C474; Tue, 13 Feb 2007 00:59:53 +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 l1D0xrvf066800; Tue, 13 Feb 2007 00:59:53 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1D0xrWD066796; Tue, 13 Feb 2007 00:59:53 GMT (envelope-from linimon) Date: Tue, 13 Feb 2007 00:59:53 GMT From: Mark Linimon Message-Id: <200702130059.l1D0xrWD066796@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/108150: [ste] [patch] ASUS NX1001 (if_ste) hardware support 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, 13 Feb 2007 00:59:53 -0000 Synopsis: [ste] [patch] ASUS NX1001 (if_ste) hardware support Responsible-Changed-From-To: freebsd-i386->freebsd-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Tue Feb 13 00:59:36 UTC 2007 Responsible-Changed-Why: Try to bring this to the attention of a wider audience. http://www.freebsd.org/cgi/query-pr.cgi?pr=108150 From owner-freebsd-bugs@FreeBSD.ORG Tue Feb 13 01:02: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 DD8FC16A400; Tue, 13 Feb 2007 01:02:36 +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 B4C9613C47E; Tue, 13 Feb 2007 01:02:36 +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 l1D12aI1067263; Tue, 13 Feb 2007 01:02:36 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1D12arQ067259; Tue, 13 Feb 2007 01:02:36 GMT (envelope-from linimon) Date: Tue, 13 Feb 2007 01:02:36 GMT From: Mark Linimon Message-Id: <200702130102.l1D12arQ067259@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: bin/107829: [2TB] fdisk(8): invalid boundary checking in fdisk / wraps value of > 2TB filesystem. 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, 13 Feb 2007 01:02:37 -0000 Old Synopsis: invalid boundary checking in fdisk / wraps value of > 2TB filesystem. New Synopsis: [2TB] fdisk(8): invalid boundary checking in fdisk / wraps value of > 2TB filesystem. Responsible-Changed-From-To: freebsd-i386->freebsd-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Tue Feb 13 01:01:42 UTC 2007 Responsible-Changed-Why: This is not i386-specific. http://www.freebsd.org/cgi/query-pr.cgi?pr=107829 From owner-freebsd-bugs@FreeBSD.ORG Tue Feb 13 01:03:42 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 7D2DA16A408; Tue, 13 Feb 2007 01:03:42 +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 51E0A13C491; Tue, 13 Feb 2007 01:03:42 +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 l1D13gjv067354; Tue, 13 Feb 2007 01:03:42 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1D13gYJ067350; Tue, 13 Feb 2007 01:03:42 GMT (envelope-from linimon) Date: Tue, 13 Feb 2007 01:03:42 GMT From: Mark Linimon Message-Id: <200702130103.l1D13gYJ067350@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/106851: [vge] vge0: MII read timed out (regression) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Feb 2007 01:03:42 -0000 Old Synopsis: vge0: MII read timed out New Synopsis: [vge] vge0: MII read timed out (regression) Responsible-Changed-From-To: freebsd-i386->freebsd-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Tue Feb 13 01:03:10 UTC 2007 Responsible-Changed-Why: This may not be i386-specific. http://www.freebsd.org/cgi/query-pr.cgi?pr=106851 From owner-freebsd-bugs@FreeBSD.ORG Tue Feb 13 01:06: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 7173D16A401; Tue, 13 Feb 2007 01:06:10 +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 4979413C478; Tue, 13 Feb 2007 01:06:10 +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 l1D16AG6067493; Tue, 13 Feb 2007 01:06:10 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1D16AIJ067489; Tue, 13 Feb 2007 01:06:10 GMT (envelope-from linimon) Date: Tue, 13 Feb 2007 01:06:10 GMT From: Mark Linimon Message-Id: <200702130106.l1D16AIJ067489@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/106444: [ng] Kernel Panic on Binding to an ip to a virtual atm interface(ng_atmpif) 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, 13 Feb 2007 01:06:10 -0000 Old Synopsis: Kernel Panic on Binding to an ip to a virtual atm interface(ng_atmpif) New Synopsis: [ng] Kernel Panic on Binding to an ip to a virtual atm interface(ng_atmpif) Responsible-Changed-From-To: freebsd-i386->freebsd-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Tue Feb 13 01:05:52 UTC 2007 Responsible-Changed-Why: This does not sound i386-specific. http://www.freebsd.org/cgi/query-pr.cgi?pr=106444 From owner-freebsd-bugs@FreeBSD.ORG Tue Feb 13 01: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 30D1716A406; Tue, 13 Feb 2007 01:10:14 +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 E800A13C49D; Tue, 13 Feb 2007 01:10:13 +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 l1D1ADbH067830; Tue, 13 Feb 2007 01:10:13 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1D1ACU7067825; Tue, 13 Feb 2007 01:10:13 GMT (envelope-from linimon) Date: Tue, 13 Feb 2007 01:10:13 GMT From: Mark Linimon Message-Id: <200702130110.l1D1ACU7067825@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/101980: [ata] [patch] Intel 631xESB ata and ichsmb support (i386/amd64) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Feb 2007 01:10:14 -0000 Synopsis: [ata] [patch] Intel 631xESB ata and ichsmb support (i386/amd64) Responsible-Changed-From-To: freebsd-i386->freebsd-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Tue Feb 13 01:09:27 UTC 2007 Responsible-Changed-Why: This is not i386-specific. http://www.freebsd.org/cgi/query-pr.cgi?pr=101980 From owner-freebsd-bugs@FreeBSD.ORG Tue Feb 13 04:48:34 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 13B2A16A402 for ; Tue, 13 Feb 2007 04:48:34 +0000 (UTC) (envelope-from cryx-freebsd@h3q.com) Received: from mail.h3q.com (mail.h3q.com [217.13.206.148]) by mx1.freebsd.org (Postfix) with ESMTP id 401C113C4B8 for ; Tue, 13 Feb 2007 04:48:33 +0000 (UTC) (envelope-from cryx-freebsd@h3q.com) Received: (qmail 13887 invoked from network); 13 Feb 2007 04:21:51 -0000 Received: from unknown (HELO ?192.168.23.150?) (cryx@85.179.6.154) by mail.h3q.com with AES256-SHA encrypted SMTP; 13 Feb 2007 04:21:51 -0000 Message-ID: <45D13CDE.9070804@h3q.com> Date: Tue, 13 Feb 2007 05:21:50 +0100 From: Philipp Wuensche User-Agent: Thunderbird 1.5.0.9 (Macintosh/20061207) MIME-Version: 1.0 To: Mark Linimon References: <200612281339.kBSDdqPO081584@freefall.freebsd.org> In-Reply-To: <200612281339.kBSDdqPO081584@freefall.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-bugs@FreeBSD.org, freebsd-rc@FreeBSD.org Subject: Re: conf/107278: [patch] possible DoS when using the jail_interface option in rc.conf introduced with 6.2 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Feb 2007 04:48:34 -0000 Mark Linimon wrote: > Old Synopsis: Possible DoS when using the jail_interface option in rc.conf introduced with 6.2 > New Synopsis: [patch] possible DoS when using the jail_interface option in rc.conf introduced with 6.2 > > Responsible-Changed-From-To: freebsd-bugs->freebsd-rc > Responsible-Changed-By: linimon > Responsible-Changed-When: Thu Dec 28 13:39:33 UTC 2006 > Responsible-Changed-Why: > Over to maintainer(s). > > http://www.freebsd.org/cgi/query-pr.cgi?pr=107278 Discussion got up again on freebsd-stable@ so I wanted to ask why the patch still isn't present in RELENG_6_2? greetings, philipp From owner-freebsd-bugs@FreeBSD.ORG Tue Feb 13 08:38:35 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 6135716A402; Tue, 13 Feb 2007 08:38:35 +0000 (UTC) (envelope-from matteo@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 34F8313C4B3; Tue, 13 Feb 2007 08:38:35 +0000 (UTC) (envelope-from matteo@FreeBSD.org) Received: from freefall.freebsd.org (matteo@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1D8cZoX098510; Tue, 13 Feb 2007 08:38:35 GMT (envelope-from matteo@freefall.freebsd.org) Received: (from matteo@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1D8cXJD098506; Tue, 13 Feb 2007 08:38:33 GMT (envelope-from matteo) Date: Tue, 13 Feb 2007 08:38:33 GMT From: Matteo Riondato Message-Id: <200702130838.l1D8cXJD098506@freefall.freebsd.org> To: umesh@juniper.net, matteo@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: bin/33672: [patch] telnetd and mount_mfs signal handlers call exit() which can hang process. 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, 13 Feb 2007 08:38:35 -0000 Synopsis: [patch] telnetd and mount_mfs signal handlers call exit() which can hang process. State-Changed-From-To: open->closed State-Changed-By: matteo State-Changed-When: Tue Feb 13 08:36:02 UTC 2007 State-Changed-Why: telnetd was fixed back in 2002 (rev.1.16) and mdmfs doesn't need to be patched anymore. http://www.freebsd.org/cgi/query-pr.cgi?pr=33672 From owner-freebsd-bugs@FreeBSD.ORG Tue Feb 13 09:24:56 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 414E316A402; Tue, 13 Feb 2007 09:24:56 +0000 (UTC) (envelope-from matteo@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 15A7C13C471; Tue, 13 Feb 2007 09:24:56 +0000 (UTC) (envelope-from matteo@FreeBSD.org) Received: from freefall.freebsd.org (matteo@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1D9OtKH000704; Tue, 13 Feb 2007 09:24:55 GMT (envelope-from matteo@freefall.freebsd.org) Received: (from matteo@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1D9Otct000700; Tue, 13 Feb 2007 09:24:55 GMT (envelope-from matteo) Date: Tue, 13 Feb 2007 09:24:55 GMT From: Matteo Riondato Message-Id: <200702130924.l1D9Otct000700@freefall.freebsd.org> To: lannygodsey@yahoo.com, matteo@FreeBSD.org, freebsd-bugs@FreeBSD.org, matteo@FreeBSD.org Cc: Subject: Re: bin/90415: [patch] Add -Z (no newfs) to mount_mfs(8). Use with existing vnode backed devices between reboots. 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, 13 Feb 2007 09:24:56 -0000 Synopsis: [patch] Add -Z (no newfs) to mount_mfs(8). Use with existing vnode backed devices between reboots. State-Changed-From-To: open->closed State-Changed-By: matteo State-Changed-When: Tue Feb 13 09:24:09 UTC 2007 State-Changed-Why: The "-P" option is available to accomplish this task. Responsible-Changed-From-To: freebsd-bugs->matteo Responsible-Changed-By: matteo Responsible-Changed-When: Tue Feb 13 09:24:09 UTC 2007 Responsible-Changed-Why: The "-P" option is available to accomplish this task. http://www.freebsd.org/cgi/query-pr.cgi?pr=90415 From owner-freebsd-bugs@FreeBSD.ORG Tue Feb 13 10:00: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 D4AA816A401 for ; Tue, 13 Feb 2007 10:00:29 +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 75B0913C48E for ; Tue, 13 Feb 2007 10:00:29 +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 l1DA0TYO004500 for ; Tue, 13 Feb 2007 10:00:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1DA0TT8004499; Tue, 13 Feb 2007 10:00:29 GMT (envelope-from gnats) Date: Tue, 13 Feb 2007 10:00:29 GMT Message-Id: <200702131000.l1DA0TT8004499@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Eriks Cc: Subject: Re: conf/105100: [patch] no support for lv (latvian) locale X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Eriks List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Feb 2007 10:00:29 -0000 The following reply was made to PR conf/105100; it has been noted by GNATS. From: Eriks To: bug-followup@FreeBSD.org Cc: Subject: Re: conf/105100: [patch] no support for lv (latvian) locale Date: Tue, 13 Feb 2007 11:34:28 +0200 This is a multi-part message in MIME format. --------------040503000508090906010403 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Updated as for Andrey's comments. Please, review! P.S. I was a bit confused why BSD.local.dist should be untoched as e.g. lt locales lt_LT.ISO8859-13, lt_LT.ISO8859-4, lt_LT.UTF-8 are there. Anyway, I removed BSD.local.dist.diff from the patch archive. Regards! --------------040503000508090906010403 Content-Type: application/gzip; name="latvian_locale_patch_v2.tar.gz" Content-Transfer-Encoding: base64 Content-Disposition: inline; filename="latvian_locale_patch_v2.tar.gz" H4sIAOKD0UUAA+1by3LbNhTNNvgKzKSaaTuyBIAv2Wk7Yyd2G0exPZGbJumDA5GQTImvASAl WuYb8gVd5zecH8kmu0732RSkKMmWLMud2nRt44xMXF7iSeBcXF7STHr1SHLG6lutx7WB4DU/ EFIdOp17lwWEkG2aMEsV5lOEsOlAjCxCbIRMYkCEbWSZ9yC6tB6cg4GQlKuu8CSR5+V7c8RY eM71+cHdEFimQy2zUbUsDH6AJxEO3eaL2pPWfqNhra9hY+5yrXZm/p8Pd9Yai1mve5gaSyCO KGd1LwlDn3Xq83NeE9z7722s4n92ovhvm8RxbMOCiGDLse9BEkq3eXjp3TmNO87/0/P/jPZZ JwhZufaf2IX9txwLOSSz/8RC2v6XAeJQctJez1sA+BtYJ966Ab6D9+/3qLt7APt99+lr2E/c p89hzlAYh+7Wdnbca8I4cff2YRq6B02YSnfreXY8OFT1rK2tqYaW15I3fcG6rvu23RqM+R/1 w8SjIbuaDeDC9t9QkmVk9t8xiLb/ZWBu/q9kA1ht//HE/jtY7QXK/quloO1/GSCIEpyb5TMs fwN5Dawt/21Gwf8kZvLKHgBW8B8jbE34T4zM/mMHEf38XwoewK92OGNbrccbUM11/QLroTqE uIYgUbNax7iO1IStbyCkfpB6Rwxuv03hV+ABeAB/2Xy+92TvR1VzSj0mYERHsM0gE4LFMqAh pBJKVYLFPkw6MAxiJk4WY1EqR2M1VN06UVAmSd5CEEvXG3DuilHUTkL4dUiFhJ4aBPUk45CG b+hIwNbB5qPtb0DzRROqQlkBFnujohBoZo2qIbs+84KIhm6aqHpBtdDKo2QgaOwLV7AUwELb 5ckgDeJuFSqtak4yH7ZH8CEwHhoqS5qIQAZD5oqgGwOliFmXzhRrRd87qp+uH3QDKQBRuvnz 1PWEm3LmMV/dGpRrVHtuW3U+u6cAZ1UvZIoXM6V5w2poIi4KnT7f3t/RtvXuYY7v1+L/YdOY +n+mYef+n6n9v1Jg2tR0lvl/GJsexpbyAGdqN4/wfj/23ArPbsnVsV+nrcr/GQX/Rffqwr8r +W84U//PsM08/mchovlfBpb4f8vXw9neH9lA6+V7fyMm2NuUgz9+7e2OXv1e+zbza5JCFe+N FSqTkBz0PuUXMzH+rP2dCc6Y79yEX2aobTX/yYz/Dsrf/zqa/6XgAvyfrocbS/3jdzPuH7/X 5D+BU/N9Na//Vsf/7Rn/HdvM+I+Rjv+UAsOhRqNqrC97BJipczOgA7C3DGP+x4OI8cC7omeA Vfw3MZrGf02Cs/ivYdia/2Xg7P1/xXqYdwTINUaAF2O2i/HaFbHau+wNLMz3FfgAK+N/1uz9 r2Vn/LdVqvlfBkiDkvXzv//ByPYwcnQU8DZizH8ZROzavv/ElmFMv//BjpXx3zb1838pOHv/ P70eVgQA8n1f9vhk2y9h028dJVxmr2HlEYxplBUHuzQGO6wNnlEONlOu0gDsfonVXwg2B13Q Us7Afl+CvWQIHjMvr6eZxN25ano0Hn7igQAd1uaDXIoolwLQlP8V5mdBT4Del3ichFlCB121 jgRQ7oVkUTsrlPRlkgtxMixUylUppNkY3jDW99X9mTTfGoIDDvYlOOTgkQQHfdASs64u5v4s /YDFFBwEPBpL+5KPhUPO/h5Lj5gc8GlG1i/EFhOFlDXw0u1EUkmVnzYqzzYqrVz5dqL065Wo XnmVK72xElY2q7DyCkY1WNmCFQZ9JRyCClNJO7tSg13qC1h5mZeikUpyKZ1KvnLFJi1sTotQ mNeh6jyElddnThQMYkhDyXicv1SHnYRHZU5e5LsJ9xlXJ35UDC+NiqHcJJfyXL5fUhsr7f/Y /8vtP7Hy+C8h2v8rBbfc/n/8EGeHf70DHL+bWpGxODUjxx9O2BFVfZFe8zZw/P7cfeDjn3dw IyhvDm/wbnCa79fz/z/Isafx/8L/J5al7X8ZsCxq2VXLOT8EMH9RvwvQ0NDQ0NDQ0NDQ0NDQ 0NDQ0NC4CfgHS4GuaABQAAA= --------------040503000508090906010403-- From owner-freebsd-bugs@FreeBSD.ORG Tue Feb 13 11:17:28 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 42D2A16A406; Tue, 13 Feb 2007 11:17:28 +0000 (UTC) (envelope-from matteo@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 1800213C49D; Tue, 13 Feb 2007 11:17:28 +0000 (UTC) (envelope-from matteo@FreeBSD.org) Received: from freefall.freebsd.org (matteo@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1DBHRgY009138; Tue, 13 Feb 2007 11:17:27 GMT (envelope-from matteo@freefall.freebsd.org) Received: (from matteo@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1DBHRNU009134; Tue, 13 Feb 2007 11:17:27 GMT (envelope-from matteo) Date: Tue, 13 Feb 2007 11:17:27 GMT From: Matteo Riondato Message-Id: <200702131117.l1DBHRNU009134@freefall.freebsd.org> To: pb@ludd.luth.se, matteo@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/57195: [mfs] mount_mfs -i 512 => panic? 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, 13 Feb 2007 11:17:28 -0000 Synopsis: [mfs] mount_mfs -i 512 => panic? State-Changed-From-To: open->feedback State-Changed-By: matteo State-Changed-When: Tue Feb 13 11:16:32 UTC 2007 State-Changed-Why: is this problem still reproducible in supported releases ? http://www.freebsd.org/cgi/query-pr.cgi?pr=57195 From owner-freebsd-bugs@FreeBSD.ORG Tue Feb 13 11:34: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 9FC2F16A402; Tue, 13 Feb 2007 11:34:40 +0000 (UTC) (envelope-from matteo@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 7550513C48D; Tue, 13 Feb 2007 11:34:40 +0000 (UTC) (envelope-from matteo@FreeBSD.org) Received: from freefall.freebsd.org (matteo@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1DBYeMK011150; Tue, 13 Feb 2007 11:34:40 GMT (envelope-from matteo@freefall.freebsd.org) Received: (from matteo@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1DBYePi011146; Tue, 13 Feb 2007 11:34:40 GMT (envelope-from matteo) Date: Tue, 13 Feb 2007 11:34:40 GMT From: Matteo Riondato Message-Id: <200702131134.l1DBYePi011146@freefall.freebsd.org> To: koitsu@FreeBSD.org, matteo@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: conf/106927: rc.d/ntpd flags wrong when setting ntpd_config variable 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, 13 Feb 2007 11:34:40 -0000 Synopsis: rc.d/ntpd flags wrong when setting ntpd_config variable State-Changed-From-To: open->feedback State-Changed-By: matteo State-Changed-When: Tue Feb 13 11:33:44 UTC 2007 State-Changed-Why: I cannot reproduce this problem. Does it still exist for you? http://www.freebsd.org/cgi/query-pr.cgi?pr=106927 From owner-freebsd-bugs@FreeBSD.ORG Tue Feb 13 12:50: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 BA8C216A47A for ; Tue, 13 Feb 2007 12:50:25 +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 0276A13C4CC for ; Tue, 13 Feb 2007 12: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 l1DCoNmm017743 for ; Tue, 13 Feb 2007 12:50:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1DCoNmu017741; Tue, 13 Feb 2007 12:50:23 GMT (envelope-from gnats) Resent-Date: Tue, 13 Feb 2007 12:50:23 GMT Resent-Message-Id: <200702131250.l1DCoNmu017741@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, Federico GD Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7960116A41F for ; Tue, 13 Feb 2007 12:45:25 +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 668FD13C494 for ; Tue, 13 Feb 2007 12:45:25 +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 l1DCjPFm015807 for ; Tue, 13 Feb 2007 12:45:25 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l1DCjPQY015806; Tue, 13 Feb 2007 12:45:25 GMT (envelope-from nobody) Message-Id: <200702131245.l1DCjPQY015806@www.freebsd.org> Date: Tue, 13 Feb 2007 12:45:25 GMT From: Federico GD To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: kern/109132: DELL E521 snd_hda: output OK, input broken X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Feb 2007 12:50:25 -0000 >Number: 109132 >Category: kern >Synopsis: DELL E521 snd_hda: output OK, input broken >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 13 12:50:23 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Federico GD >Release: 6.2-stable >Organization: none >Environment: FreeBSD trinity.local 6.2-STABLE FreeBSD 6.2-STABLE #0: Tue Feb 13 10:09:32 UTC 2007 root@trinity.local:/usr/obj/usr/src/sys/TRINITY amd64 >Description: snd_hda outputs quite well with a simple pair of speakers. I don't have a 5.1 speaker set right now. Input with Mic is not working. The signal captured is reproduced with slow, distorted speech; no recognisable sounds. The snd_hda driver has been added patching the kernel with: http://people.freebsd.org/~ariff/snd_RELENG_6_20070212_142_lowlatency.diff.gz (thanks Ariff). 1) uname -a FreeBSD trinity.local 6.2-STABLE FreeBSD 6.2-STABLE #0: Tue Feb 13 10:09:32 UTC 2007 root@trinity.local:/usr/obj/usr/src/sys/TRINITY amd64 2) pciconf -lv | grep -B 4 audio 3) grep ^pcm /var/run/dmesg.boot pcm0: mem 0xfe024000-0xfe027fff irq 21 at device 16.1 on pci0 pcm0: pcm0: pcm0: mem 0xfe024000-0xfe027fff irq 21 at device 16.1 on pci0 pcm0: pcm0: 4) sysctl hw.snd.verbose=2 ; cat /dev/sndstat hw.snd.verbose: 2 -> 2 FreeBSD Audio Driver (newpcm: 64bit) Installed devices: pcm0: at memory 0xfe024000 irq 21 kld snd_hda [20070128_0039] (1p/1r/2v channels duplex default) [pcm0:play:0:dsp0.p0]: spd 48000, fmt 0x10000010, flags 0x00101020, 0x00000020 interrupts 28048, underruns 0, feed 28048, ready 0 [b:4096/2048/2|bs:4096/2048/2] {userland} -> feeder_vchan(0x10000010) -> feeder_volume(0x10000010) -> {hardware} [pcm0:record:0:dsp0.r0]: spd 8000/44100, fmt 0x00000008/0x10000010, flags 0x00000000, 0x00000008 interrupts 0, overruns 0, feed 0, hfree 4096, sfree 4096 [b:4096/2048/2|bs:4096/128/32] {hardware} -> feeder_root(0x10000010) -> feeder_stereotomono16(0x10000010 -> 0x00000010) -> feeder_sign16(0x00000010 -> 0x00000080) -> feeder_rate(44100 -> 8000) -> feeder_16to8(0x00000080 -> 0x00000008) -> {userland} pcm0:play:0:dsp0.p0[pcm0:virtual:0:dsp0.v0]: spd 44100/48000, fmt 0x10000010, flags 0x10003030, 0x00000008, pid 4363 interrupts 0, underruns 0, feed 28048, ready 128936 [b:0/0/0|bs:131072/4096/32] {userland} -> feeder_root(0x10000010) -> feeder_rate(44100 -> 48000) -> {hardware} pcm0:play:0:dsp0.p0[pcm0:virtual:1:dsp0.v1]: spd 8000/48000, fmt 0x00000008/0x10000010, flags 0x10000000, 0x00000008 interrupts 0, underruns 0, feed 0, ready 0 [b:0/0/0|bs:4096/128/32] {userland} -> feeder_root(0x00000008) -> feeder_8to16(0x00000008 -> 0x00000080) -> feeder_rate(8000 -> 48000) -> feeder_monotostereo16(0x00000080 -> 0x10000080) -> feeder_sign16(0x10000080 -> 0x10000010) -> {hardware} 5) sysctl hw.snd hw.snd.report_soft_formats: 1 hw.snd.latency: 5 hw.snd.latency_profile: 1 hw.snd.feeder_buffersize: 16384 hw.snd.feeder_rate_min: 1 hw.snd.feeder_rate_max: 2016000 hw.snd.feeder_rate_round: 25 hw.snd.verbose: 2 hw.snd.default_unit: 0 hw.snd.maxautovchans: 4 6) output of /usr/sbin/mixer Mixer vol is currently set to 75:75 Mixer pcm is currently set to 50:50 Mixer speaker is currently set to 75:75 Mixer mic is currently set to 50:50 Mixer rec is currently set to 75:75 Recording source: mic >How-To-Repeat: It happens in a DELL E521, Bios 1.1.4. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Feb 13 13:30:08 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 159A416A402 for ; Tue, 13 Feb 2007 13:30:08 +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 EABCA13C4AC for ; Tue, 13 Feb 2007 13:30: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 l1DDU7ZQ019226 for ; Tue, 13 Feb 2007 13:30:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1DDU7Pb019223; Tue, 13 Feb 2007 13:30:07 GMT (envelope-from gnats) Resent-Date: Tue, 13 Feb 2007 13:30:07 GMT Resent-Message-Id: <200702131330.l1DDU7Pb019223@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, Constantin Stefanov Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 97DA716A511 for ; Tue, 13 Feb 2007 13:21:12 +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 49BAD13C4B6 for ; Tue, 13 Feb 2007 13:21:12 +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 l1DDLB71021168 for ; Tue, 13 Feb 2007 13:21:11 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l1DDLBG7021167; Tue, 13 Feb 2007 13:21:11 GMT (envelope-from nobody) Message-Id: <200702131321.l1DDLBG7021167@www.freebsd.org> Date: Tue, 13 Feb 2007 13:21:11 GMT From: Constantin Stefanov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: bin/109134: [patch] pkg_add replaces symlink in path to installed file for ordinary directory 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, 13 Feb 2007 13:30:08 -0000 >Number: 109134 >Category: bin >Synopsis: [patch] pkg_add replaces symlink in path to installed file for ordinary directory >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 13 13:30:07 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Constantin Stefanov >Release: FreeBSD 6.1-RELEASE-p3 >Organization: SRCC MSU >Environment: FreeBSD stat.srcc.msu.ru 6.1-RELEASE-p3 FreeBSD 6.1-RELEASE-p3 #2: Wed Jul 26 14:29:50 MSD 2006 coctic@stat.srcc.msu.ru:/opt/obj/opt/src/sys/STAT i386 >Description: I have /usr/local symlinked to /opt/local (created with mkdir -p /opt/local; cd /usr; rmdir local; ln -s ../opt/local local). I have some other parts of file hierarchy symlinked into /opt which is a separate filesystem. When I try to install DrWeb Enterprise Suite package (got on ftp://ftp.drweb.com/pub/drweb/esuite/drweb-es-433-1-200609270-unix-freebsd6.1-i386.tbz link), it fails. After failing I see that /usr/local is not a symlink any more, but is a real directory. In my case installation failed because the package depends on some software installed in my symlinked /usr/local, and it disappeared during installation. As I can understand, this package has "@cwd /" in +CONTENTS file, and some usr/local/... files after that @cwd. And tar that is invoked from pkg_add deletes all symlinks in path where it installs files to and changes it for ordinary directories. Packages from FreeBSD collection are not affected by the issue because they (at least all I looked into) have "@cwd /usr/local" in +CONTENTS. And I did not find any guidelines why it is not correct to have "@cwd /" in package and to install files in /usr/local with it. >How-To-Repeat: Get fresh FreeBSD 6.1-RELEASE (I also checked 6.2-RELEASE, it has the same issue). mkdir /opt mkdir /opt/local cd /usr rmdir local ln -s ../opt/local local Install latest iconv (it is a dependency which is not registered in the package). Run pkg_add ftp://ftp.drweb.com/pub/drweb/esuite/drweb-es-433-1-200609270-unix-freebsd6.1-i386.tbz Press Enter three times, then accept license agreement. When user selection table is shown, run ls -l /usr in another console. You'll see that /usr/local is not a symlink now, but is an ordinary directory. >Fix: My fix was to add -P switch to tar which is invoked from pkg_add when putting package files into place (see attached patch). After the fix the package did install. Patch attached with submission follows: --- src/usr.sbin/pkg_install/add/extract.c.orig Mon Feb 12 14:47:06 2007 +++ src/usr.sbin/pkg_install/add/extract.c Mon Feb 12 14:47:15 2007 @@ -34,7 +34,7 @@ #define PUSHOUT(todir) /* push out string */ \ if (where_count > (int)sizeof(STARTSTRING)-1) { \ - strcat(where_args, "|/usr/bin/tar --unlink -xpf - -C "); \ + strcat(where_args, "|/usr/bin/tar --unlink -xpPf - -C "); \ strcat(where_args, todir); \ if (system(where_args)) { \ cleanup(0); \ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Feb 13 15:09:20 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 49C7016A402; Tue, 13 Feb 2007 15:09:20 +0000 (UTC) (envelope-from koitsu@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 2614613C494; Tue, 13 Feb 2007 15:09:20 +0000 (UTC) (envelope-from koitsu@FreeBSD.org) Received: from freefall.freebsd.org (koitsu@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1DF9JeO025491; Tue, 13 Feb 2007 15:09:19 GMT (envelope-from koitsu@freefall.freebsd.org) Received: (from koitsu@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1DF9JYx025487; Tue, 13 Feb 2007 15:09:19 GMT (envelope-from koitsu) Date: Tue, 13 Feb 2007 15:09:19 GMT From: Jeremy Chadwick Message-Id: <200702131509.l1DF9JYx025487@freefall.freebsd.org> To: koitsu@FreeBSD.org, koitsu@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: conf/106927: rc.d/ntpd flags wrong when setting ntpd_config variable 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, 13 Feb 2007 15:09:20 -0000 Synopsis: rc.d/ntpd flags wrong when setting ntpd_config variable State-Changed-From-To: feedback->closed State-Changed-By: koitsu State-Changed-When: Tue Feb 13 15:09:18 UTC 2007 State-Changed-Why: Hmm, interesting. No, I can't reproduce this. Maybe something in the rc.subr framework changed which somehow tickled a fix for this. I'll go ahead and close this. :) Thanks for looking into it. http://www.freebsd.org/cgi/query-pr.cgi?pr=106927 From owner-freebsd-bugs@FreeBSD.ORG Tue Feb 13 16:06: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 02DE416A400; Tue, 13 Feb 2007 16:06:29 +0000 (UTC) (envelope-from csjp@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id D378213C46B; Tue, 13 Feb 2007 16:06:28 +0000 (UTC) (envelope-from csjp@FreeBSD.org) Received: from freefall.freebsd.org (csjp@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1DG6S7R029279; Tue, 13 Feb 2007 16:06:28 GMT (envelope-from csjp@freefall.freebsd.org) Received: (from csjp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1DG6ShC029275; Tue, 13 Feb 2007 16:06:28 GMT (envelope-from csjp) Date: Tue, 13 Feb 2007 16:06:28 GMT From: "Christian S.J. Peron" Message-Id: <200702131606.l1DG6ShC029275@freefall.freebsd.org> To: csjp@FreeBSD.org, freebsd-bugs@FreeBSD.org, csjp@FreeBSD.org Cc: Subject: Re: bin/109102: sysctl security.mac.bsdextended is not consistent with the output of sysctl -d 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, 13 Feb 2007 16:06:29 -0000 Synopsis: sysctl security.mac.bsdextended is not consistent with the output of sysctl -d Responsible-Changed-From-To: freebsd-bugs->csjp Responsible-Changed-By: csjp Responsible-Changed-When: Tue Feb 13 16:04:35 UTC 2007 Responsible-Changed-Why: I will take ownership of this. This is not really a bug since the rules variable is of type CTLTYPE_NODE which only gets processed if the -d flag is set (by design). However we might need to look into the logic for printing newlines more carefully. http://www.freebsd.org/cgi/query-pr.cgi?pr=109102 From owner-freebsd-bugs@FreeBSD.ORG Tue Feb 13 16:10:20 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 593A016A407; Tue, 13 Feb 2007 16:10:20 +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 37A8013C442; Tue, 13 Feb 2007 16:10:20 +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 l1DGAJdC029530; Tue, 13 Feb 2007 16:10:19 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1DGAJRw029515; Tue, 13 Feb 2007 16:10:19 GMT (envelope-from remko) Date: Tue, 13 Feb 2007 16:10:19 GMT From: Remko Lodder Message-Id: <200702131610.l1DGAJRw029515@freefall.freebsd.org> To: remko@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-multimedia@FreeBSD.org Cc: Subject: Re: kern/109132: DELL E521 snd_hda: output OK, input broken X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Feb 2007 16:10:20 -0000 Synopsis: DELL E521 snd_hda: output OK, input broken Responsible-Changed-From-To: freebsd-bugs->freebsd-multimedia Responsible-Changed-By: remko Responsible-Changed-When: Tue Feb 13 16:10:11 UTC 2007 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=109132 From owner-freebsd-bugs@FreeBSD.ORG Tue Feb 13 23:40: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 9EEC916A408 for ; Tue, 13 Feb 2007 23:40: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 82A8313C442 for ; Tue, 13 Feb 2007 23:40: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 l1DNe6B7064478 for ; Tue, 13 Feb 2007 23:40:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1DNe6pC064477; Tue, 13 Feb 2007 23:40:06 GMT (envelope-from gnats) Resent-Date: Tue, 13 Feb 2007 23:40:06 GMT Resent-Message-Id: <200702132340.l1DNe6pC064477@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, "O. Hartmann" Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 59B7C16A406 for ; Tue, 13 Feb 2007 23:39:26 +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 4D4AF13C4AC for ; Tue, 13 Feb 2007 23:39:26 +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 l1DNdQFQ066531 for ; Tue, 13 Feb 2007 23:39:26 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l1DNdQjA066530; Tue, 13 Feb 2007 23:39:26 GMT (envelope-from nobody) Message-Id: <200702132339.l1DNdQjA066530@www.freebsd.org> Date: Tue, 13 Feb 2007 23:39:26 GMT From: "O. Hartmann" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: kern/109147: snd_envy24ht does not compile into kernel, but module .ko 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, 13 Feb 2007 23:40:07 -0000 >Number: 109147 >Category: kern >Synopsis: snd_envy24ht does not compile into kernel, but module .ko does >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 13 23:40:05 GMT 2007 >Closed-Date: >Last-Modified: >Originator: O. Hartmann >Release: FreeBSD 7.0-CURRENT/AMD64 >Organization: Freie UNiversität Berlin >Environment: FreeBSD foo.org 7.0-CURRENT FreeBSD 7.0-CURRENT #91: Tue Feb 13 18:47:14 UTC 2007 root@foo.org:/usr/obj/usr/src/sys/FOO amd64 >Description: Trying to compile driver snd_envy24ht into kernel fails (see below), but kernel module compiles well and is loadable. FreeBSD 7.0-CURRENT/AMD64 as cvsupdated and buildworld today: cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -march=opteron -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -fformat-extensions -nostdinc -I- -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -mcmodel=kernel -mno-red-zone -mfpmath=387 -mno-sse -mno-sse2 -mno-mmx -mno-3dnow -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -Werror /usr/src/sys/dev/sound/pci/envy24ht.c /usr/src/sys/dev/sound/pci/envy24ht.c: In function `envy24htchan_init': /usr/src/sys/dev/sound/pci/envy24ht.c:1426: warning: dereferencing `void *' pointer /usr/src/sys/dev/sound/pci/envy24ht.c:1426: error: request for member `mtx_lock' in something not a structure or union /usr/src/sys/dev/sound/pci/envy24ht.c:1450: warning: dereferencing `void *' pointer /usr/src/sys/dev/sound/pci/envy24ht.c:1450: error: request for member `mtx_lock' in something not a structure or union /usr/src/sys/dev/sound/pci/envy24ht.c:1452: warning: dereferencing `void *' pointer /usr/src/sys/dev/sound/pci/envy24ht.c:1452: error: request for member `mtx_lock' in something not a structure or union /usr/src/sys/dev/sound/pci/envy24ht.c:1457: warning: dereferencing `void *' pointer /usr/src/sys/dev/sound/pci/envy24ht.c:1457: error: request for member `mtx_lock' in something not a structure or union /usr/src/sys/dev/sound/pci/envy24ht.c: In function `envy24htchan_free': /usr/src/sys/dev/sound/pci/envy24ht.c:1471: warning: dereferencing `void *' pointer /usr/src/sys/dev/sound/pci/envy24ht.c:1471: error: request for member `mtx_lock' in something not a structure or union /usr/src/sys/dev/sound/pci/envy24ht.c:1476: warning: dereferencing `void *' pointer /usr/src/sys/dev/sound/pci/envy24ht.c:1476: error: request for member `mtx_lock' in something not a structure or union /usr/src/sys/dev/sound/pci/envy24ht.c: In function `envy24htchan_setformat': /usr/src/sys/dev/sound/pci/envy24ht.c:1493: warning: dereferencing `void *' pointer /usr/src/sys/dev/sound/pci/envy24ht.c:1493: error: request for member `mtx_lock' in something not a structure or union /usr/src/sys/dev/sound/pci/envy24ht.c:1500: warning: dereferencing `void *' pointer /usr/src/sys/dev/sound/pci/envy24ht.c:1500: error: request for member `mtx_lock' in something not a structure or union /usr/src/sys/dev/sound/pci/envy24ht.c:1507: warning: dereferencing `void *' pointer /usr/src/sys/dev/sound/pci/envy24ht.c:1507: error: request for member `mtx_lock' in something not a structure or union /usr/src/sys/dev/sound/pci/envy24ht.c:1531: warning: dereferencing `void *' pointer /usr/src/sys/dev/sound/pci/envy24ht.c:1531: error: request for member `mtx_lock' in something not a structure or union /usr/src/sys/dev/sound/pci/envy24ht.c: In function `envy24htchan_trigger': /usr/src/sys/dev/sound/pci/envy24ht.c:1627: warning: dereferencing `void *' pointer /usr/src/sys/dev/sound/pci/envy24ht.c:1627: error: request for member `mtx_lock' in something not a structure or union /usr/src/sys/dev/sound/pci/envy24ht.c:1711: warning: dereferencing `void *' pointer /usr/src/sys/dev/sound/pci/envy24ht.c:1711: error: request for member `mtx_lock' in something not a structure or union /usr/src/sys/dev/sound/pci/envy24ht.c: In function `envy24htchan_getptr': /usr/src/sys/dev/sound/pci/envy24ht.c:1727: warning: dereferencing `void *' pointer /usr/src/sys/dev/sound/pci/envy24ht.c:1727: error: request for member `mtx_lock' in something not a structure or union /usr/src/sys/dev/sound/pci/envy24ht.c:1730: warning: dereferencing `void *' pointer /usr/src/sys/dev/sound/pci/envy24ht.c:1730: error: request for member `mtx_lock' in something not a structure or union /usr/src/sys/dev/sound/pci/envy24ht.c: In function `envy24htchan_getcaps': /usr/src/sys/dev/sound/pci/envy24ht.c:1749: warning: dereferencing `void *' pointer /usr/src/sys/dev/sound/pci/envy24ht.c:1749: error: request for member `mtx_lock' in something not a structure or union /usr/src/sys/dev/sound/pci/envy24ht.c:1762: warning: dereferencing `void *' pointer /usr/src/sys/dev/sound/pci/envy24ht.c:1762: error: request for member `mtx_lock' in something not a structure or union /usr/src/sys/dev/sound/pci/envy24ht.c: In function `envy24htmixer_init': /usr/src/sys/dev/sound/pci/envy24ht.c:1796: warning: dereferencing `void *' pointer /usr/src/sys/dev/sound/pci/envy24ht.c:1796: error: request for member `mtx_lock' in something not a structure or union >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 14 05:04:02 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 CDD4416A408 for ; Wed, 14 Feb 2007 05:04:02 +0000 (UTC) (envelope-from Tad1214@aol.com) Received: from imr-m03.mx.aol.com (imr-m03.mx.aol.com [64.12.138.201]) by mx1.freebsd.org (Postfix) with ESMTP id 5BBDB13C4A6 for ; Wed, 14 Feb 2007 05:04:02 +0000 (UTC) (envelope-from Tad1214@aol.com) Received: from imo-m17.mx.aol.com (imo-m17.mail.aol.com [172.21.18.205]) by imr-m03.mx.aol.com (v107.10) with ESMTP id RELAYIN3-445d298412fc; Wed, 14 Feb 2007 00:04:01 -0500 Received: from Tad1214@aol.com by imo-m17.mx.aol.com (mail_out_v38_r7.6.) id n.d16.751d738 (52325) for ; Tue, 13 Feb 2007 23:48:51 -0500 (EST) Received: from dellxps (c-66-41-114-182.hsd1.mn.comcast.net [66.41.114.182]) by ciaaol-d03.mail.aol.com (v114_r3.2) with ESMTP id MAILCIAAOLD037-cc6545d294af47; Tue, 13 Feb 2007 23:48:50 -0500 Message-ID: <002301c74ff3$69cf9ed0$6401a8c0@dellxps> From: "Tom Donnelly" To: Date: Tue, 13 Feb 2007 22:48:43 -0600 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.3028 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3028 X-AOL-IP: 172.21.18.205 X-Spam-Flag: NO Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Hard Locks 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, 14 Feb 2007 05:04:02 -0000 Hello all! This is my first message on here so hopefully I don't screw up. I am fairly new to FreeBSD, and recently installed 6.2 on my Inspiron XPS. H= ardware is as follows: 3.4GHz Pentium 4 2 GB Ram ATi Mobility Radeon 9800 Broadcom Gig Etherenet (Integrated) Dell 1350 Trumobile (not functional) Dlink DWL G630 (Atheros Based) PCMCIA Whenever I am in KDE or GNOME or any gui for that matter, I get hard locks. I can expedite this by visiting web pages, but it does seem to happen incons= istancy. Originally I posted this on bsdforums.org for help, but we havent been able=20= to get far. http://www.bsdforums.org/forums/showthread.php?t=3D47072 First we thought it was a keyboard mux problem, so we removed that. Still no fix. Then we thought it was an irq conflict interrupt total rate irq1: atkbd0 169 0 irq12: psm0 2595 7 irq14: ata0 41981 115 irq15: ata1 47 0 irq19: cbb0 ath0++ 171829 474 cpu0: timer 716536 1979 cpu1: timer 706378 1951 Total 1639535 4529 Once I removed the USB from the Kernel and Sysinstall, the IRQ conflict seem= ed to go away but the hardlocks still stayed. The usb.ko is not in the kldstat -v The current interrupt is=20 irq1: atkbd0 irq12: psm0 irq14: ata0 irq15: ata1 cpu0: timer There is little consistancy to these hard locks and no logs seem to be left. The only thing that makes a difference is visitng web sites speeds up the ha= rdlock (usually 2 -3 web pages) Any ideas? Thanks! -=3DTom Donnelly ------ This message sent on 100% recycled electrons. From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 14 05:50: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 D312416A41F for ; Wed, 14 Feb 2007 05:50: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 ACA9213C4A3 for ; Wed, 14 Feb 2007 05:50: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 l1E5o4hl088311 for ; Wed, 14 Feb 2007 05:50:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1E5o4lX088310; Wed, 14 Feb 2007 05:50:04 GMT (envelope-from gnats) Resent-Date: Wed, 14 Feb 2007 05:50:04 GMT Resent-Message-Id: <200702140550.l1E5o4lX088310@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, leres@ee.lbl.gov (Craig Leres) Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9894316A402 for ; Wed, 14 Feb 2007 05:47:31 +0000 (UTC) (envelope-from leres@ee.lbl.gov) Received: from fun.ee.lbl.gov (fun.ee.lbl.gov [131.243.1.81]) by mx1.freebsd.org (Postfix) with ESMTP id 6F2A913C46B for ; Wed, 14 Feb 2007 05:47:31 +0000 (UTC) (envelope-from leres@ee.lbl.gov) Received: from fun.ee.lbl.gov (localhost [127.0.0.1]) by fun.ee.lbl.gov (8.14.0/8.14.0) with ESMTP id l1E5Yrfs085093 for ; Tue, 13 Feb 2007 21:34:53 -0800 (PST) Received: from fun.ee.lbl.gov (leres@localhost) by fun.ee.lbl.gov (8.14.0/8.14.0/Submit) with ESMTP id l1E5Yr5D085089 for ; Tue, 13 Feb 2007 21:34:53 -0800 (PST) Message-Id: <200702140534.l1E5Yr5D085089@fun.ee.lbl.gov> Date: Tue, 13 Feb 2007 21:34:53 -0800 From: leres@ee.lbl.gov (Craig Leres) To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/109152: [rp] RocketPort panic from device_unbusy() 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, 14 Feb 2007 05:50:04 -0000 >Number: 109152 >Category: kern >Synopsis: [rp] RocketPort panic from device_unbusy() >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 14 05:50:04 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Craig Leres >Release: FreeBSD 6.2-RELEASE i386 >Organization: Lawrence Berkeley National Laboratory >Environment: % uname -a FreeBSD ee.lbl.gov 6.2-RELEASE FreeBSD 6.2-RELEASE #1: Mon Jan 15 11:31:32 PST 2007 leres@fox.ee.lbl.gov:/usr/src/6.2-RELEASE/sys/i386/compile/LBLSMP i386 rp0: port 0x3000-0x30ff irq 19 at device 7.0 on pci2 RocketPort0 (Version 3.02) 32 ports. >Description: Removing a devfs symlink can cause a panic if a program had that symlink open and then exits. I use the comms/conserver port to manage a bunch of serial lines connected to a 32 port RocketPort config. To keep track of what each line is connected to, I create symlinks via "link" lines in devfs.conf. I disovered that if I remove link lines from devfs.conf, update devfs and then kill off a conserver that has one or more of the obsolete links open, the system will panic. >How-To-Repeat: Append a line to devfs.conf: link cuaR00 test Update devfs and verify the new symlink: # /etc/rc.d/devfs restart # ls -l /dev/test /dev/cuaR00 crw-rw---- 1 uucp dialer 0, 40 Feb 12 19:45 /dev/cuaR00 lrwxr-xr-x 1 root wheel 6 Feb 12 19:45 /dev/test -> cuaR00 Add a line to conserver.cf: test:/dev/test:9600p:/var/console/test.log:0 Startup conserver. Remove out the link line previously added to devfs.conf. Update devfs again. Note that the /dev/test symlink still exists. Kill conserver. The system panics with: device_unbusy: called for non-busy device rp0 kgdb shows: (kgdb) bt #0 0xc0692c96 in doadump () #1 0xc06931f2 in boot () #2 0xc0693519 in panic () #3 0xc06a9304 in device_unbusy () #4 0xc05ca8e9 in rpclose () #5 0xc06c6617 in ttyclose () #6 0xc066878b in giant_close () #7 0xc0644876 in devfs_close () #8 0xc08ae164 in VOP_CLOSE_APV () #9 0xc06fa8c6 in vn_close () #10 0xc06fb836 in vn_closefile () #11 0xc06448b7 in devfs_close_f () #12 0xc0672a04 in fdrop_locked () #13 0xc0672951 in fdrop () #14 0xc0670eef in closef () #15 0xc066e04d in close () #16 0xc08998f3 in syscall () #17 0xc08853df in Xint0x80_syscall () #18 0x00000033 in ?? () Previous frame inner to this frame (corrupt stack?) >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 14 06:42:59 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 E8F8716A400; Wed, 14 Feb 2007 06:42:59 +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 C1C3713C441; Wed, 14 Feb 2007 06:42:59 +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 l1E6gwmO091503; Wed, 14 Feb 2007 06:42:59 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1E6gwFr091499; Wed, 14 Feb 2007 06:42:58 GMT (envelope-from remko) Date: Wed, 14 Feb 2007 06:42:58 GMT From: Remko Lodder Message-Id: <200702140642.l1E6gwFr091499@freefall.freebsd.org> To: remko@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-multimedia@FreeBSD.org Cc: Subject: Re: kern/109147: snd_envy24ht does not compile into kernel, but module .ko 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: Wed, 14 Feb 2007 06:43:00 -0000 Synopsis: snd_envy24ht does not compile into kernel, but module .ko does Responsible-Changed-From-To: freebsd-bugs->freebsd-multimedia Responsible-Changed-By: remko Responsible-Changed-When: Wed Feb 14 06:42:53 UTC 2007 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=109147 From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 14 07:00: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 3E80C16A402 for ; Wed, 14 Feb 2007 07:00:29 +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 2F0E513C4A3 for ; Wed, 14 Feb 2007 07:00:29 +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 l1E70SsY092473 for ; Wed, 14 Feb 2007 07:00:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1E70SdC092472; Wed, 14 Feb 2007 07:00:28 GMT (envelope-from gnats) Date: Wed, 14 Feb 2007 07:00:28 GMT Message-Id: <200702140700.l1E70SdC092472@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Remko Lodder Cc: Subject: Re: kern/109152: [rp] RocketPort panic from device_unbusy() X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Remko Lodder List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Feb 2007 07:00:29 -0000 The following reply was made to PR kern/109152; it has been noted by GNATS. From: Remko Lodder To: Craig Leres Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: kern/109152: [rp] RocketPort panic from device_unbusy() Date: Wed, 14 Feb 2007 07:51:42 +0100 On Tue, Feb 13, 2007 at 09:34:53PM -0800, Craig Leres wrote: > > % uname -a > FreeBSD ee.lbl.gov 6.2-RELEASE FreeBSD 6.2-RELEASE #1: Mon Jan 15 11:31:32 PST 2007 leres@fox.ee.lbl.gov:/usr/src/6.2-RELEASE/sys/i386/compile/LBLSMP i386 > > rp0: port 0x3000-0x30ff irq 19 at device 7.0 on pci2 > RocketPort0 (Version 3.02) 32 ports. > > >Description: > Removing a devfs symlink can cause a panic if a program had > that symlink open and then exits. > > I use the comms/conserver port to manage a bunch of serial > lines connected to a 32 port RocketPort config. To keep > track of what each line is connected to, I create symlinks > via "link" lines in devfs.conf. I disovered that if I remove > link lines from devfs.conf, update devfs and then kill off > a conserver that has one or more of the obsolete links open, > the system will panic. > Hello, This does not really feel like a bug but rather a configuration failure from the administrator (you in this case). When you have active connections, applications assume that they can have IO with (in this case a symlinked device). When you remove that device the application can no longer access that IO and in this case kills the system. The latter of this might be a problem (though I really feel like "dont do that!"): What we need prior to continueing is a dump of the panic, you can read how to do that on the http://www.freebsd.org/doc/en/books/developers-handbook/kerneldebug.html documentation pages. Thanks in advance ! -- Kind regards, Remko Lodder ** remko@elvandar.org FreeBSD ** remko@FreeBSD.org /* Quis custodiet ipsos custodes */ From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 14 08:40:19 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 48A1316A409 for ; Wed, 14 Feb 2007 08:40:19 +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 1E1DD13C4A5 for ; Wed, 14 Feb 2007 08:40:19 +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 l1E8eIKj004541 for ; Wed, 14 Feb 2007 08:40:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1E8eIIZ004540; Wed, 14 Feb 2007 08:40:18 GMT (envelope-from gnats) Date: Wed, 14 Feb 2007 08:40:18 GMT Message-Id: <200702140840.l1E8eIIZ004540@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: leres@ee.lbl.gov (Craig Leres) Cc: Subject: Re: kern/109152: [rp] RocketPort panic from device_unbusy() X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Craig Leres List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Feb 2007 08:40:19 -0000 The following reply was made to PR kern/109152; it has been noted by GNATS. From: leres@ee.lbl.gov (Craig Leres) To: Remko Lodder Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: kern/109152: [rp] RocketPort panic from device_unbusy() Date: Wed, 14 Feb 2007 00:34:11 -0800 > This does not really feel like a bug but rather a configuration > failure from the administrator (you in this case). (Not a bug? Seriously?) Here's some additional info. I ran the scenario with a sio port; the system does not crash, /dev/modem does not go away and tip can still communicate with the modem after devfs is updated. (As expected.) I also ran the scenario with an puc port which worked the same as with the sio port. Finally, I reran the scenario with the RocketPort and found it's not necessary to make any changes to devfs.conf to induce a panic. You can simply: tip to a rocketport line run "/etc/rc.d/devfs restart" exit tip (wait for the system to reboot) I think the issue is a side effect of refreshing the devfs layout is that the state is getting reset. The rp driver seems to be the only one using device_busy/device_unbusy in a manner that's sensitive to the dev state. > What we need prior to continueing is a dump of > the panic, I used a crash dump to create the kgdb stack trace. Craig From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 14 10:30: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 903DA16A407 for ; Wed, 14 Feb 2007 10:30: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 6EF5D13C49D for ; Wed, 14 Feb 2007 10:30: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 l1EAU4ed010830 for ; Wed, 14 Feb 2007 10:30:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1EAU4o3010829; Wed, 14 Feb 2007 10:30:04 GMT (envelope-from gnats) Resent-Date: Wed, 14 Feb 2007 10:30:04 GMT Resent-Message-Id: <200702141030.l1EAU4o3010829@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, "Anton A. Vesnin" Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 71D7C16A401 for ; Wed, 14 Feb 2007 10:28:31 +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 5FFAF13C4A3 for ; Wed, 14 Feb 2007 10:28:31 +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 l1EASUZZ084534 for ; Wed, 14 Feb 2007 10:28:30 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l1EASUh5084533; Wed, 14 Feb 2007 10:28:30 GMT (envelope-from nobody) Message-Id: <200702141028.l1EASUh5084533@www.freebsd.org> Date: Wed, 14 Feb 2007 10:28:30 GMT From: "Anton A. Vesnin" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: kern/109161: synaptic touchpad doesn't works 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, 14 Feb 2007 10:30:04 -0000 >Number: 109161 >Category: kern >Synopsis: synaptic touchpad doesn't works >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 14 10:30:03 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Anton A. Vesnin >Release: 6.2 >Organization: >Environment: FreeBSD daemon 6.2-STABLE FreeBSD 6.2-STABLE #1: Tue Jan 16 03:36:28 MSK 2007 root@daemon:/usr/obj/usr/src/sys/DELL_D820_OPT i386 >Description: Synaptic tochpad doesn't works on my new laptop (dell latitude D820), I set hw.psm.synaptics_support=1 in my /boot/loader.conf as writen in psm(4), but nothing was changed. Here is verbose dmesg, may be it will help: ======================== 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 6.2-STABLE #1: Tue Jan 16 03:36:28 MSK 2007 root@daemon:/usr/obj/usr/src/sys/DELL_D820_OPT Preloaded elf kernel "/boot/kernel/kernel" at 0xc1110000. Preloaded elf module "/boot/kernel/geom_eli.ko" at 0xc11101c4. Preloaded elf module "/boot/kernel/crypto.ko" at 0xc1110274. Preloaded elf module "/boot/kernel/zlib.ko" at 0xc1110320. Preloaded elf module "/boot/kernel/linux.ko" at 0xc11103cc. Preloaded elf module "/boot/kernel/pf.ko" at 0xc1110478. Preloaded elf module "/boot/kernel/if_bge.ko" at 0xc1110520. Preloaded elf module "/boot/kernel/sound.ko" at 0xc11105cc. Preloaded elf module "/boot/kernel/ugen.ko" at 0xc1110678. Preloaded elf module "/boot/kernel/umass.ko" at 0xc1110724. Preloaded elf module "/boot/kernel/cardbus.ko" at 0xc11107d0. Preloaded elf module "/boot/kernel/pccard.ko" at 0xc111087c. Preloaded elf module "/boot/kernel/cbb.ko" at 0xc1110928. Preloaded elf module "/boot/kernel/exca.ko" at 0xc11109d0. Preloaded elf module "/boot/kernel/wlan_acl.ko" at 0xc1110a7c. Preloaded elf module "/boot/kernel/wlan.ko" at 0xc1110b2c. Preloaded elf module "/boot/kernel/wlan_tkip.ko" at 0xc1110bd8. Preloaded elf module "/boot/kernel/wlan_wep.ko" at 0xc1110c88. Preloaded elf module "/boot/modules/fuse.ko" at 0xc1110d38. Preloaded elf module "/boot/kernel/ng_ubt.ko" at 0xc1110de4. Preloaded elf module "/boot/kernel/netgraph.ko" at 0xc1110e90. Preloaded elf module "/boot/kernel/snd_hda.ko" at 0xc1110f40. Preloaded elf module "/boot/kernel/if_ndis.ko" at 0xc1110fec. Preloaded elf module "/boot/kernel/ndis.ko" at 0xc1111098. Preloaded elf module "/boot/modules/bcmwl5_sys.ko" at 0xc1111144. Preloaded elf module "/boot/modules/nvidia.ko" at 0xc11111f4. Table 'FACP' at 0x3fe92800 Table 'APIC' at 0x3fe93000 MADT: Found table at 0x3fe93000 APIC: Using the MADT enumerator. MADT: Found CPU APIC ID 0 ACPI ID 0: enabled SMP: Added CPU 0 (AP) MADT: Found CPU APIC ID 1 ACPI ID 1: enabled SMP: Added CPU 1 (AP) INTR: Adding local APIC 0 as a target ACPI APIC Table: Calibrating clock(s) ... i8254 clock: 1193202 Hz CLK_USE_I8254_CALIBRATION not specified - using default frequency Timecounter "i8254" frequency 1193182 Hz quality 0 Calibrating TSC clock ... TSC clock: 1997340732 Hz CPU: Intel(R) Core(TM)2 CPU T7200 @ 2.00GHz (1997.34-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x6f6 Stepping = 6 Features=0xbfebfbff Features2=0xe3bd,CX16,,> AMD Features=0x20100000 AMD Features2=0x1 Cores per package: 2 real memory = 1072238592 (1022 MB) Physical memory chunk(s): 0x0000000000001000 - 0x000000000009dfff, 643072 bytes (157 pages) 0x0000000000100000 - 0x00000000003fffff, 3145728 bytes (768 pages) 0x0000000001428000 - 0x000000003ec4efff, 1031958528 bytes (251943 pages) avail memory = 1031651328 (983 MB) INTR: Adding local APIC 1 as a target FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 1 APIC: CPU 0 has ACPI ID 0 APIC: CPU 1 has ACPI ID 1 bios32: Found BIOS32 Service Directory header at 0xc00ffa00 bios32: Entry = 0xffa10 (c00ffa10) Rev = 0 Len = 1 pcibios: PCI BIOS entry at 0xf0000+0xadb6 pnpbios: Found PnP BIOS data at 0xc00fe2d0 pnpbios: Entry = f0000:e2f4 Rev = 1.0 pnpbios: Event flag at 4b4 Other BIOS signatures found: MADT: Found IO APIC ID 2, Interrupt 0 at 0xfec00000 ioapic0: Changing APIC ID to 2 ioapic0: Routing external 8259A's -> intpin 0 MADT: Interrupt override: source 0, irq 2 ioapic0: Routing IRQ 0 -> intpin 2 MADT: Interrupt override: source 9, irq 9 ioapic0: intpin 9 trigger: level lapic0: Routing NMI -> LINT1 lapic0: LINT1 trigger: edge lapic0: LINT1 polarity: high lapic1: Routing NMI -> LINT1 lapic1: LINT1 trigger: edge lapic1: LINT1 polarity: high ioapic0 irqs 0-23 on motherboard cpu0 BSP: ID: 0x00000000 VER: 0x00050014 LDR: 0x00000000 DFR: 0xffffffff lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff timer: 0x000100ef therm: 0x00010000 err: 0x00010000 pcm: 0x00010000 wlan: <802.11 Link Layer> wlan: <802.11 MAC ACL support> wlan: mac acl policy registered crypto: feeder_register: snd_unit=0 snd_maxautovchans=4 latency=5 feeder_buffersize=16384 feeder_rate_min=1 feeder_rate_max=2016000 feeder_rate_round=25 mem: Pentium Pro MTRR support enabled null: random: io: acpi0: on motherboard ioapic0: routing intpin 9 (ISA IRQ 9) to vector 48 acpi0: [MPSAFE] pci_open(1): mode 1 addr port (0x0cf8) is 0x80000054 pci_open(1a): mode1res=0x80000000 (0x80000000) pci_cfgcheck: device 0 [class=060000] [hdr=00] is there (id=27a08086) pcibios: BIOS version 2.10 acpi_bus_number: root bus has no _BBN, assuming 0 AcpiOsDerivePciId: bus 0 dev 31 func 0 acpi_bus_number: root bus has no _BBN, assuming 0 AcpiOsDerivePciId: bus 0 dev 31 func 0 acpi0: wakeup code va 0xd927e000 pa 0x9d000 ACPI timer: 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 -> 10 Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x1008-0x100b on acpi0 pci_link0: Index IRQ Rtd Ref IRQs Initial Probe 0 9 N 0 9 10 11 Validation 0 9 N 0 9 10 11 After Disable 0 255 N 0 9 10 11 pci_link1: Index IRQ Rtd Ref IRQs Initial Probe 0 3 N 0 5 7 Validation 0 255 N 0 5 7 After Disable 0 255 N 0 5 7 pci_link2: Index IRQ Rtd Ref IRQs Initial Probe 0 5 N 0 9 10 11 Validation 0 255 N 0 9 10 11 After Disable 0 255 N 0 9 10 11 pci_link3: Index IRQ Rtd Ref IRQs Initial Probe 0 11 N 0 5 7 9 10 11 Validation 0 11 N 0 5 7 9 10 11 After Disable 0 255 N 0 5 7 9 10 11 pci_link4: Index IRQ Rtd Ref IRQs Initial Probe 0 10 N 0 3 4 5 6 7 9 10 11 12 14 15 Validation 0 10 N 0 3 4 5 6 7 9 10 11 12 14 15 After Disable 0 255 N 0 3 4 5 6 7 9 10 11 12 14 15 pci_link5: Index IRQ Rtd Ref IRQs Initial Probe 0 11 N 0 3 4 5 6 7 9 10 11 12 14 15 Validation 0 11 N 0 3 4 5 6 7 9 10 11 12 14 15 After Disable 0 255 N 0 3 4 5 6 7 9 10 11 12 14 15 pci_link6: Index IRQ Rtd Ref IRQs Initial Probe 0 9 N 0 3 4 5 6 7 9 10 11 12 14 15 Validation 0 9 N 0 3 4 5 6 7 9 10 11 12 14 15 After Disable 0 255 N 0 3 4 5 6 7 9 10 11 12 14 15 pci_link7: Index IRQ Rtd Ref IRQs Initial Probe 0 5 N 0 3 4 5 6 7 9 10 11 12 14 15 Validation 0 5 N 0 3 4 5 6 7 9 10 11 12 14 15 After Disable 0 255 N 0 3 4 5 6 7 9 10 11 12 14 15 cpu0: on acpi0 est0: on cpu0 p4tcc0: on cpu0 cpu1: on acpi0 est1: on cpu1 p4tcc1: on cpu1 acpi_acad0: on acpi0 battery0: on acpi0 battery1: on acpi0 acpi_lid0: on acpi0 acpi_button0: on acpi0 acpi_button1: on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 pci0: physical bus=0 found-> vendor=0x8086, dev=0x27a0, revid=0x03 bus=0, slot=0, func=0 class=06-00-00, hdrtype=0x00, mfdev=0 cmdreg=0x0006, statreg=0x2090, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) found-> vendor=0x8086, dev=0x27a1, revid=0x03 bus=0, slot=1, func=0 class=06-04-00, hdrtype=0x01, mfdev=0 cmdreg=0x0107, statreg=0x0010, cachelnsz=16 (dwords) lattimer=0x00 (0 ns), mingnt=0x1a (6500 ns), maxlat=0x00 (0 ns) intpin=a, irq=255 powerspec 2 supports D0 D3 current D0 MSI supports 1 message found-> vendor=0x8086, dev=0x27d8, revid=0x01 bus=0, slot=27, func=0 class=04-03-00, hdrtype=0x00, mfdev=0 cmdreg=0x0106, statreg=0x0010, cachelnsz=16 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=a, irq=11 powerspec 2 supports D0 D3 current D0 MSI supports 1 message, 64 bit map[10]: type 1, range 64, base dfffc000, size 14, enabled pcib0: matched entry for 0.27.INTA pcib0: slot 27 INTA hardwired to IRQ 21 found-> vendor=0x8086, dev=0x27d0, revid=0x01 bus=0, slot=28, func=0 class=06-04-00, hdrtype=0x01, mfdev=1 cmdreg=0x0107, statreg=0x0010, cachelnsz=16 (dwords) lattimer=0x00 (0 ns), mingnt=0x02 (500 ns), maxlat=0x00 (0 ns) intpin=a, irq=255 powerspec 2 supports D0 D3 current D0 MSI supports 1 message found-> vendor=0x8086, dev=0x27d2, revid=0x01 bus=0, slot=28, func=1 class=06-04-00, hdrtype=0x01, mfdev=1 cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords) lattimer=0x00 (0 ns), mingnt=0x02 (500 ns), maxlat=0x00 (0 ns) intpin=b, irq=255 powerspec 2 supports D0 D3 current D0 MSI supports 1 message found-> vendor=0x8086, dev=0x27d4, revid=0x01 bus=0, slot=28, func=2 class=06-04-00, hdrtype=0x01, mfdev=1 cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords) lattimer=0x00 (0 ns), mingnt=0x02 (500 ns), maxlat=0x00 (0 ns) intpin=c, irq=255 powerspec 2 supports D0 D3 current D0 MSI supports 1 message found-> vendor=0x8086, dev=0x27d6, revid=0x01 bus=0, slot=28, func=3 class=06-04-00, hdrtype=0x01, mfdev=1 cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords) lattimer=0x00 (0 ns), mingnt=0x02 (500 ns), maxlat=0x00 (0 ns) intpin=d, irq=255 powerspec 2 supports D0 D3 current D0 MSI supports 1 message found-> vendor=0x8086, dev=0x27c8, revid=0x01 bus=0, slot=29, func=0 class=0c-03-00, hdrtype=0x00, mfdev=1 cmdreg=0x0005, statreg=0x0280, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=a, irq=10 map[20]: type 4, range 32, base 0000bf80, size 5, enabled pcib0: matched entry for 0.29.INTA pcib0: slot 29 INTA hardwired to IRQ 20 found-> vendor=0x8086, dev=0x27c9, revid=0x01 bus=0, slot=29, func=1 class=0c-03-00, hdrtype=0x00, mfdev=0 cmdreg=0x0005, statreg=0x0280, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=b, irq=11 map[20]: type 4, range 32, base 0000bf60, size 5, enabled pcib0: matched entry for 0.29.INTB pcib0: slot 29 INTB hardwired to IRQ 21 found-> vendor=0x8086, dev=0x27ca, revid=0x01 bus=0, slot=29, func=2 class=0c-03-00, hdrtype=0x00, mfdev=0 cmdreg=0x0005, statreg=0x0280, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=c, irq=9 map[20]: type 4, range 32, base 0000bf40, size 5, enabled pcib0: matched entry for 0.29.INTC pcib0: slot 29 INTC hardwired to IRQ 22 found-> vendor=0x8086, dev=0x27cb, revid=0x01 bus=0, slot=29, func=3 class=0c-03-00, hdrtype=0x00, mfdev=0 cmdreg=0x0005, statreg=0x0280, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=d, irq=5 map[20]: type 4, range 32, base 0000bf20, size 5, enabled pcib0: matched entry for 0.29.INTD pcib0: slot 29 INTD hardwired to IRQ 23 found-> vendor=0x8086, dev=0x27cc, revid=0x01 bus=0, slot=29, func=7 class=0c-03-20, hdrtype=0x00, mfdev=0 cmdreg=0x0106, statreg=0x0290, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=a, irq=10 powerspec 2 supports D0 D3 current D0 map[10]: type 1, range 32, base ffa80000, size 10, enabled pcib0: matched entry for 0.29.INTA pcib0: slot 29 INTA hardwired to IRQ 20 found-> vendor=0x8086, dev=0x2448, revid=0xe1 bus=0, slot=30, func=0 class=06-04-01, hdrtype=0x01, mfdev=0 cmdreg=0x0007, statreg=0x0010, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x02 (500 ns), maxlat=0x00 (0 ns) found-> vendor=0x8086, dev=0x27b9, revid=0x01 bus=0, slot=31, func=0 class=06-01-00, hdrtype=0x00, mfdev=1 cmdreg=0x0107, statreg=0x0210, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) found-> vendor=0x8086, dev=0x27c4, revid=0x01 bus=0, slot=31, func=2 class=01-01-80, hdrtype=0x00, mfdev=0 cmdreg=0x0005, statreg=0x02b0, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=b, irq=3 powerspec 2 supports D0 D3 current D0 map[20]: type 4, range 32, base 0000bfa0, size 4, enabled pcib0: matched entry for 0.31.INTB pcib0: slot 31 INTB hardwired to IRQ 17 found-> vendor=0x8086, dev=0x27da, revid=0x01 bus=0, slot=31, func=3 class=0c-05-00, hdrtype=0x00, mfdev=0 cmdreg=0x0101, statreg=0x0280, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=b, irq=3 map[20]: type 4, range 32, base 000010c0, size 5, enabled pcib0: matched entry for 0.31.INTB pcib0: slot 31 INTB hardwired to IRQ 17 pcib1: at device 1.0 on pci0 pcib1: secondary bus 1 pcib1: subordinate bus 1 pcib1: I/O decode 0xf000-0xfff pcib1: memory decode 0xdd000000-0xdfefffff pcib1: prefetched decode 0xc0000000-0xcfffffff pci1: on pcib1 pci1: physical bus=1 found-> vendor=0x10de, dev=0x01d7, revid=0xa1 bus=1, slot=0, func=0 class=03-00-00, hdrtype=0x00, mfdev=0 cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=a, irq=9 powerspec 2 supports D0 D3 current D0 MSI supports 1 message, 64 bit map[10]: type 1, range 32, base dd000000, size 24, enabled pcib1: requested memory range 0xdd000000-0xddffffff: good map[14]: type 3, range 64, base c0000000, size 28, enabled pcib1: requested memory range 0xc0000000-0xcfffffff: good map[1c]: type 1, range 64, base de000000, size 24, enabled pcib1: requested memory range 0xde000000-0xdeffffff: good pcib1: matched entry for 1.0.INTA pcib1: slot 0 INTA hardwired to IRQ 16 nvidia0: mem 0xdd000000-0xddffffff,0xc0000000-0xcfffffff,0xde000000-0xdeffffff irq 16 at device 0.0 on pci1 nvidia0: Reserved 0x1000000 bytes for rid 0x10 type 3 at 0xdd000000 nvidia0: Reserved 0x10000000 bytes for rid 0x14 type 3 at 0xc0000000 nvidia0: Reserved 0x1000000 bytes for rid 0x1c type 3 at 0xde000000 ioapic0: routing intpin 16 (PCI IRQ 16) to vector 49 nvidia0: [GIANT-LOCKED] pcm0: mem 0xdfffc000-0xdfffffff irq 21 at device 27.0 on pci0 pcm0: Reserved 0x4000 bytes for rid 0x10 type 3 at 0xdfffc000 ioapic0: routing intpin 21 (PCI IRQ 21) to vector 50 pcm0: [MPSAFE] pcib2: at device 28.0 on pci0 pcib2: secondary bus 11 pcib2: subordinate bus 11 pcib2: I/O decode 0xf000-0xfff pcib2: memory decode 0xfff00000-0xfffff pcib2: prefetched decode 0xfff00000-0xfffff pci11: on pcib2 pci11: physical bus=11 pcib3: at device 28.1 on pci0 pcib3: secondary bus 12 pcib3: subordinate bus 12 pcib3: I/O decode 0xf000-0xfff pcib3: memory decode 0xdcf00000-0xdcffffff pcib3: prefetched decode 0xfff00000-0xfffff pci12: on pcib3 pci12: physical bus=12 found-> vendor=0x14e4, dev=0x4311, revid=0x01 bus=12, slot=0, func=0 class=02-80-00, hdrtype=0x00, mfdev=0 cmdreg=0x0107, statreg=0x0010, cachelnsz=16 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=a, irq=3 powerspec 2 supports D0 D1 D2 D3 current D0 MSI supports 1 message map[10]: type 1, range 32, base dcffc000, size 14, enabled pcib3: requested memory range 0xdcffc000-0xdcffffff: good pcib3: matched entry for 12.0.INTA pcib3: slot 0 INTA hardwired to IRQ 17 ndis0: mem 0xdcffc000-0xdcffffff irq 17 at device 0.0 on pci12 ndis0: Reserved 0x4000 bytes for rid 0x10 type 3 at 0xdcffc000 ioapic0: routing intpin 17 (PCI IRQ 17) to vector 51 ndis0: [MPSAFE] ndis0: NDIS API version: 5.1 ndis0: bpf attached ndis0: Ethernet address: 00:16:cf:60:70:05 ndis0: bpf attached pcib4: at device 28.2 on pci0 pcib4: secondary bus 9 pcib4: subordinate bus 9 pcib4: I/O decode 0xf000-0xfff pcib4: memory decode 0xdce00000-0xdcefffff pcib4: prefetched decode 0xfff00000-0xfffff pci9: on pcib4 pci9: physical bus=9 found-> vendor=0x14e4, dev=0x1600, revid=0x02 bus=9, slot=0, func=0 class=02-00-00, hdrtype=0x00, mfdev=0 cmdreg=0x0106, statreg=0x0010, cachelnsz=16 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=a, irq=5 powerspec 2 supports D0 D3 current D0 MSI supports 8 messages, 64 bit map[10]: type 1, range 64, base dcef0000, size 16, enabled pcib4: requested memory range 0xdcef0000-0xdcefffff: good pcib4: matched entry for 9.0.INTA pcib4: slot 0 INTA hardwired to IRQ 18 bge0: mem 0xdcef0000-0xdcefffff irq 18 at device 0.0 on pci9 bge0: Reserved 0x10000 bytes for rid 0x10 type 3 at 0xdcef0000 bge0: firmware handshake timed out miibus0: on bge0 brgphy0: on miibus0 brgphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseTX, 1000baseTX-FDX, auto bge0: bpf attached bge0: Ethernet address: 00:15:c5:b7:22:de ioapic0: routing intpin 18 (PCI IRQ 18) to vector 52 bge0: [MPSAFE] pcib5: at device 28.3 on pci0 pcib5: secondary bus 13 pcib5: subordinate bus 14 pcib5: I/O decode 0xe000-0xefff pcib5: memory decode 0xdcc00000-0xdcdfffff pcib5: prefetched decode 0xd0000000-0xd01fffff pci13: on pcib5 pci13: physical bus=13 uhci0: port 0xbf80-0xbf9f irq 20 at device 29.0 on pci0 uhci0: Reserved 0x20 bytes for rid 0x20 type 4 at 0xbf80 ioapic0: routing intpin 20 (PCI IRQ 20) to vector 53 uhci0: [MPSAFE] uhci0: LegSup = 0x0000 usb0: on uhci0 uhci1: port 0xbf60-0xbf7f irq 21 at device 29.1 on pci0 uhci1: Reserved 0x20 bytes for rid 0x20 type 4 at 0xbf60 uhci1: [MPSAFE] uhci1: LegSup = 0x0000 usb1: on uhci1 uhci2: port 0xbf40-0xbf5f irq 22 at device 29.2 on pci0 uhci2: Reserved 0x20 bytes for rid 0x20 type 4 at 0xbf40 ioapic0: routing intpin 22 (PCI IRQ 22) to vector 54 uhci2: [MPSAFE] uhci2: LegSup = 0x0000 usb2: on uhci2 uhci3: port 0xbf20-0xbf3f irq 23 at device 29.3 on pci0 uhci3: Reserved 0x20 bytes for rid 0x20 type 4 at 0xbf20 ioapic0: routing intpin 23 (PCI IRQ 23) to vector 55 uhci3: [MPSAFE] uhci3: LegSup = 0x0000 usb3: on uhci3 ehci0: mem 0xffa80000-0xffa803ff irq 20 at device 29.7 on pci0 ehci0: Reserved 0x400 bytes for rid 0x10 type 3 at 0xffa80000 ehci0: [MPSAFE] usb4: EHCI version 1.0 usb4: on ehci0 pcib6: at device 30.0 on pci0 pcib6: secondary bus 3 pcib6: subordinate bus 4 pcib6: I/O decode 0xf000-0xfff pcib6: memory decode 0xdcb00000-0xdcbfffff pcib6: prefetched decode 0xfff00000-0xfffff pcib6: Subtractively decoded bridge. pci3: on pcib6 pci3: physical bus=3 found-> vendor=0x1217, dev=0x7135, revid=0x21 bus=3, slot=1, func=0 class=06-07-00, hdrtype=0x02, mfdev=1 cmdreg=0x0000, statreg=0x0410, cachelnsz=0 (dwords) lattimer=0x40 (1920 ns), mingnt=0x40 (16000 ns), maxlat=0x00 (0 ns) intpin=a, irq=255 powerspec 2 supports D0 D1 D2 D3 current D0 map[10]: type 1, range 32, base 00000000, size 12, memory disabled found-> vendor=0x1217, dev=0x00f7, revid=0x02 bus=3, slot=1, func=4 class=0c-00-10, hdrtype=0x00, mfdev=0 cmdreg=0x0117, statreg=0x0210, cachelnsz=16 (dwords) lattimer=0x40 (1920 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=a, irq=11 powerspec 2 supports D0 D1 D2 D3 current D0 map[10]: type 1, range 32, base dcbff000, size 12, enabled pcib6: requested memory range 0xdcbff000-0xdcbfffff: good map[14]: type 1, range 32, base dcbfe800, size 11, enabled pcib6: requested memory range 0xdcbfe800-0xdcbfefff: good pcib6: matched entry for 3.1.INTA pcib6: slot 1 INTA hardwired to IRQ 19 cbb0: at device 1.0 on pci3 pcib6: cbb0 requested memory range 0xdcb00000-0xdcbfffff: good cbb0: Lazy allocation of 0x1000 bytes rid 0x10 type 3 at 0xdcb00000 cardbus0: on cbb0 pccard0: <16-bit PCCard bus> on cbb0 pcib6: matched entry for 3.1.INTA pcib6: slot 1 INTA hardwired to IRQ 19 ioapic0: routing intpin 19 (PCI IRQ 19) to vector 56 cbb0: [MPSAFE] cbb0: PCI Configuration space: 0x00: 0x71351217 0x04100007 0x06070021 0x00824000 0x10: 0xdcb00000 0x020000a0 0x20040403 0xfffff000 0x20: 0x00000000 0xfffff000 0x00000000 0x0000fffd 0x30: 0x00000001 0x0000fffd 0x00000001 0x04400113 0x40: 0x01cc1028 0x00000001 0x00000000 0x00000000 0x50: 0x00000000 0x00000000 0x00000000 0x00000000 0x60: 0x00000000 0x00000000 0x00000000 0x00000000 0x70: 0x00000000 0x00000000 0x00000000 0x00000000 0x80: 0x00000000 0x00000000 0x00000000 0x00000000 0x90: 0x00052403 0x00000000 0x00000000 0x00000000 0xa0: 0xfe020001 0x00c04000 0x00000015 0x0000000a 0xb0: 0x00000000 0x00000000 0x00000000 0x00000000 0xc0: 0x00000000 0x00000000 0x00000000 0x00000000 0xd0: 0x09004000 0x808203ea 0x00000000 0x00400008 0xe0: 0x00820000 0x000b101b 0x83000000 0x00000000 0xf0: 0x00000000 0x00000000 0x00000000 0x00000000 pci3: at device 1.4 (no driver attached) isab0: at device 31.0 on pci0 isa0: on isab0 atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xbfa0-0xbfaf irq 17 at device 31.2 on pci0 atapci0: Reserved 0x10 bytes for rid 0x20 type 4 at 0xbfa0 ata0: on atapci0 atapci0: Reserved 0x8 bytes for rid 0x10 type 4 at 0x1f0 atapci0: Reserved 0x1 bytes for rid 0x14 type 4 at 0x3f6 ata0: reset tp1 mask=03 ostat0=50 ostat1=00 ata0: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 ata0: stat1=0x00 err=0x01 lsb=0x00 msb=0x00 ata0: reset tp2 stat0=50 stat1=00 devices=0x1 ioapic0: routing intpin 14 (ISA IRQ 14) to vector 57 ata0: [MPSAFE] ata1: on atapci0 atapci0: Reserved 0x8 bytes for rid 0x18 type 4 at 0x170 atapci0: Reserved 0x1 bytes for rid 0x1c type 4 at 0x376 ata1: reset tp1 mask=03 ostat0=50 ostat1=00 ata1: stat0=0x00 err=0x01 lsb=0x14 msb=0xeb ata1: stat1=0x00 err=0x00 lsb=0x00 msb=0x00 ata1: reset tp2 stat0=00 stat1=00 devices=0x4 ioapic0: routing intpin 15 (ISA IRQ 15) to vector 58 ata1: [MPSAFE] pci0: at device 31.3 (no driver attached) acpi_tz0: on acpi0 psmcpnp0: irq 12 on acpi0 atkbdc0: port 0x60,0x64,0x62,0x66 irq 1 on acpi0 atkbd0: irq 1 on atkbdc0 atkbd: the current kbd controller command byte 0065 atkbd: keyboard ID 0x41ab (2) kbd0 at atkbd0 kbd0: atkbd0, AT 101/102 (2), config:0x0, flags:0x3d0000 ioapic0: routing intpin 1 (ISA IRQ 1) to vector 59 atkbd0: [GIANT-LOCKED] psm0: current command byte:0065 psm0: irq 12 on atkbdc0 ioapic0: routing intpin 12 (ISA IRQ 12) to vector 60 psm0: [GIANT-LOCKED] psm0: model GlidePoint, device ID 0-00, 2 buttons psm0: config:00000000, flags:00000008, packet size:3 psm0: syncmask:c0, syncbits:00 npx0: INT 16 interface ata: ata0 already exists; skipping it ata: ata1 already exists; skipping it atkbdc: atkbdc0 already exists; skipping it pnp_identify: Trying Read_Port at 203 pnp_identify: Trying Read_Port at 243 pnp_identify: Trying Read_Port at 283 pnp_identify: Trying Read_Port at 2c3 pnp_identify: Trying Read_Port at 303 pnp_identify: Trying Read_Port at 343 pnp_identify: Trying Read_Port at 383 pnp_identify: Trying Read_Port at 3c3 PNP Identify complete sc: sc0 already exists; skipping it vga: vga0 already exists; skipping it isa_probe_children: disabling PnP devices isa_probe_children: probing non-PnP devices pmtimer0 on isa0 orm0: at iomem 0xc0000-0xcffff on isa0 adv0: not probed (disabled) aha0: not probed (disabled) aic0: not probed (disabled) bt0: not probed (disabled) cs0: not probed (disabled) ed0: not probed (disabled) fdc0 failed to probe at port 0x3f0 irq 6 drq 2 on isa0 fe0: not probed (disabled) ie0: not probed (disabled) lnc0: not probed (disabled) ppc0 failed to probe at irq 7 on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sc0: fb0, kbd0, terminal emulator: sc (syscons terminal) sio0 failed to probe at port 0x3f8 irq 4 on isa0 sio1 failed to probe at port 0x2f8 irq 3 on isa0 sio2: not probed (disabled) sio3: not probed (disabled) sn0: not probed (disabled) vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 vt0: not probed (disabled) isa_probe_children: probing PnP devices Device configuration finished. fuse4bsd: version 0.3.0, FUSE ABI 7.5 procfs registered lapic: Divisor 2, Frequency 83222106 hz Timecounter "TSC" frequency 1997340732 Hz quality -100 Timecounters tick every 2.500 msec crypto: assign driver 0, flags 6 crypto: driver 0 registers alg 1 flags 0 maxoplen 0 crypto: driver 0 registers alg 2 flags 0 maxoplen 0 crypto: driver 0 registers alg 3 flags 0 maxoplen 0 crypto: driver 0 registers alg 4 flags 0 maxoplen 0 crypto: driver 0 registers alg 5 flags 0 maxoplen 0 crypto: driver 0 registers alg 16 flags 0 maxoplen 0 crypto: driver 0 registers alg 6 flags 0 maxoplen 0 crypto: driver 0 registers alg 7 flags 0 maxoplen 0 crypto: driver 0 registers alg 18 flags 0 maxoplen 0 crypto: driver 0 registers alg 19 flags 0 maxoplen 0 crypto: driver 0 registers alg 20 flags 0 maxoplen 0 crypto: driver 0 registers alg 8 flags 0 maxoplen 0 crypto: driver 0 registers alg 15 flags 0 maxoplen 0 crypto: driver 0 registers alg 9 flags 0 maxoplen 0 crypto: driver 0 registers alg 10 flags 0 maxoplen 0 crypto: driver 0 registers alg 13 flags 0 maxoplen 0 crypto: driver 0 registers alg 14 flags 0 maxoplen 0 crypto: driver 0 registers alg 11 flags 0 maxoplen 0 crypto: driver 0 registers alg 17 flags 0 maxoplen 0 usb0: USB revision 1.0 acpi_acad0: acline initialization start acpi_acad0: On Line acpi_acad0: acline initialization done, tried 1 times battery0: battery initialization start battery1: battery initialization start battery0: battery initialization done, tried 1 times uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 127 uhub0: 2 ports with 2 removable, self powered usb1: USB revision 1.0 uhub1: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 127 uhub1: 2 ports with 2 removable, self powered usb2: USB revision 1.0 uhub2: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 127 uhub2: 2 ports with 2 removable, self powered usb3: USB revision 1.0 uhub3: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 127 uhub3: 2 ports with 2 removable, self powered usb4: USB revision 2.0 uhub4: Intel EHCI root hub, class 9/0, rev 2.00/1.00, addr 127 uhub4: 8 ports with 8 removable, self powered uhub5: Dell product 0xa005, class 9/0, rev 2.00/50.18, addr 126 uhub5: 4 ports with 1 removable, self powered usbd_fill_iface_data: invalid wMaxPacketSize, addr=125! usbd_fill_iface_data: invalid wMaxPacketSize, addr=125! ubt0: Linux ELF exec handler installed lo0: bpf attached ata0-master: pio=PIO4 wdma=WDMA2 udma=UDMA133 cable=40 wire atapicam: atapicam0 already exists; skipping it ad0: 114473MB at ata0-master SATA150 ad0: 234441648 sectors [232581C/16H/63S] 16 sectors/interrupt 1 depth queue GEOM: new disk ad0 ata1-master: pio=PIO4 wdma=WDMA2 udma=UDMA33 cable=40 wire acd0: DVDR drive at ata1 as master acd0: read 4134KB/s (4134KB/s) write 4134KB/s (4134KB/s), 2048KB buffer, UDMA33 acd0: Reads: CDR, CDRW, CDDA stream, DVDROM, DVDR, packet acd0: Writes: CDR, CDRW, DVDR, test write, burnproof acd0: Audio: play, 256 volume levels acd0: Mechanism: ejectable tray, unlocked acd0: Medium: no/blank disc pcm0: HDA_DEBUG: HDA Config: on=0x00000000 off=0x00000000 pcm0: HDA_DEBUG: Starting CORB Engine... pcm0: HDA_DEBUG: Starting RIRB Engine... pcm0: HDA_DEBUG: Enabling controller interrupt... pcm0: HDA_DEBUG: Scanning HDA codecs... pcm0: HDA_DEBUG: Probing codec: 0 pcm0: HDA_DEBUG: startnode=1 endnode=2 pcm0: HDA_DEBUG: Found AFG nid=1 [startnode=1 endnode=2] pcm0: HDA_DEBUG: Parsing AFG nid=1 cad=0 pcm0: Vendor: 0x00008384 pcm0: Device: 0x00007690 pcm0: Revision: 0x00000022 pcm0: Stepping: 0x00000001 pcm0: PCI Subvendor: 0x01cc1028 pcm0: Nodes: start=2 endnode=21 total=19 pcm0: HDA_DEBUG: Parsing Ctls... pcm0: HDA_DEBUG: Parsing vendor patch... pcm0: HDA_DEBUG: Building AFG tree... pcm0: HDA_DEBUG: HWiP: HDA Widget Parser - Revision 1 pcm0: HDA_DEBUG: HWiP: Found 2 DAC path using HDA_PARSE_MIXER strategy. pcm0: HDA_DEBUG: AFG commit... pcm0: HDA_DEBUG: Ctls commit... pcm0: [ 2] Ctl nid=11 Bind to NONE pcm0: [ 4] Ctl nid=17 DISABLED pcm0: HDA_DEBUG: PCMDIR_PLAY setup... pcm0: HDA_DEBUG: PCMDIR_REC setup... pcm0: HDA_DEBUG: OSS mixer initialization... pcm0: HDA_DEBUG: Pin sense: nid=13 res=0x7fffffff pcm0: HDA_DEBUG: Enabling headphone/speaker audio routing switching: pcm0: HDA_DEBUG: index=4 nid=13 pci_subvendor=0x01cc1028 codec=0x83847690 pcm0: HDA_DEBUG: Forcing Soft PCM volume pcm0: Mixer "vol": pcm0: Mixer "pcm": pcm0: Mixer "speaker": pcm0: Mixer "line": pcm0: Mixer "rec": pcm0: Soft PCM mixer ENABLED pcm0: HDA_DEBUG: Registering PCM channels... pcm0: sndbuf_setmap 3e6e5000, 4000; 0xe594a000 -> 3e6e5000 pcm0: sndbuf_setmap 3e6de000, 4000; 0xe594e000 -> 3e6de000 pcm0: pcm0: pcm0: pcm0: pcm0: HDA config/quirks: softpcmvol forcestereo vref pcm0: pcm0: +-------------------+ pcm0: | DUMPING HDA NODES | pcm0: +-------------------+ pcm0: pcm0: Default Parameter pcm0: ----------------- pcm0: Stream cap: 0x00000001 pcm0: Format: PCM pcm0: PCM cap: 0x000e07e0 pcm0: PCM size: 16 20 24 pcm0: PCM rate: 44 48 88 96 176 192 pcm0: IN amp: 0x00000000 pcm0: OUT amp: 0x80051f1f pcm0: pcm0: nid: 2 [ANALOG] pcm0: name: audio output pcm0: widget_cap: 0x000d0401 pcm0: Parse flags: 0x00000001 pcm0: Ctl flags: 0x00000000 pcm0: Stream cap: 0x00000001 pcm0: Format: PCM pcm0: PCM cap: 0x000e07e0 pcm0: PCM size: 16 20 24 pcm0: PCM rate: 44 48 88 96 176 192 pcm0: connections: 0 pcm0: pcm0: nid: 3 [ANALOG] pcm0: name: audio input pcm0: widget_cap: 0x001d0541 pcm0: Parse flags: 0x00000002 pcm0: Ctl flags: 0x00000800 pcm0: Stream cap: 0x00000001 pcm0: Format: PCM pcm0: PCM cap: 0x000e07e0 pcm0: PCM size: 16 20 24 pcm0: PCM rate: 44 48 88 96 176 192 pcm0: connections: 1 pcm0: | pcm0: + <- nid=10 [audio selector] pcm0: pcm0: nid: 4 [DIGITAL] [DISABLED] pcm0: name: audio input pcm0: widget_cap: 0x00140311 pcm0: Parse flags: 0x00000000 pcm0: Ctl flags: 0x00000000 pcm0: Stream cap: 0x00000005 pcm0: Format: AC3 PCM pcm0: PCM cap: 0x000e0160 pcm0: PCM size: 16 20 24 pcm0: PCM rate: 44 48 96 pcm0: connections: 1 pcm0: | pcm0: + <- nid=8 [pin: other (none)] [DISABLED] pcm0: pcm0: nid: 5 [DIGITAL] [DISABLED] pcm0: name: audio output pcm0: widget_cap: 0x00040211 pcm0: Parse flags: 0x00000000 pcm0: Ctl flags: 0x00000000 pcm0: Stream cap: 0x00000005 pcm0: Format: AC3 PCM pcm0: PCM cap: 0x000e01e0 pcm0: PCM size: 16 20 24 pcm0: PCM rate: 44 48 88 96 pcm0: connections: 0 pcm0: pcm0: nid: 6 [DIGITAL] [DISABLED] pcm0: name: vendor widget pcm0: widget_cap: 0x00f30201 pcm0: Parse flags: 0x00000000 pcm0: Ctl flags: 0x00000000 pcm0: connections: 0 pcm0: pcm0: nid: 7 [ANALOG] pcm0: name: audio selector pcm0: widget_cap: 0x00300901 pcm0: Parse flags: 0x00000001 pcm0: Ctl flags: 0x00000041 pcm0: connections: 3 pcm0: | pcm0: + <- nid=2 [audio output] (selected) pcm0: | pcm0: + <- nid=8 [pin: other (none)] [DISABLED] pcm0: | pcm0: + <- nid=10 [audio selector] pcm0: pcm0: nid: 8 [DIGITAL] [DISABLED] pcm0: name: pin: other (none) pcm0: widget_cap: 0x00430681 pcm0: Parse flags: 0x00000000 pcm0: Ctl flags: 0x00000000 pcm0: Pin cap: 0x00010024 pcm0: IN EAPD : UNSOL pcm0: Pin config: 0x40f000f0 pcm0: Pin control: 0x00000020 IN pcm0: EAPD: 0x00000002 pcm0: connections: 0 pcm0: pcm0: nid: 9 [DIGITAL] [DISABLED] pcm0: name: pin: other (none) pcm0: widget_cap: 0x00400301 pcm0: Parse flags: 0x00000000 pcm0: Ctl flags: 0x00000000 pcm0: Pin cap: 0x00000010 pcm0: OUT pcm0: Pin config: 0x40f000f1 pcm0: Pin control: 0x00000040 OUT pcm0: connections: 2 pcm0: | pcm0: + <- nid=5 [audio output] [DISABLED] pcm0: | pcm0: + <- nid=10 [audio selector] pcm0: pcm0: nid: 10 [ANALOG] pcm0: name: audio selector pcm0: widget_cap: 0x0030090d pcm0: Parse flags: 0x00000002 pcm0: Ctl flags: 0x00000841 pcm0: Output amp: 0x80050f00 pcm0: mute=1 step=15 size=5 offset=0 pcm0: connections: 1 pcm0: | pcm0: + <- nid=12 [audio selector] pcm0: pcm0: nid: 11 [ANALOG] pcm0: name: audio selector pcm0: widget_cap: 0x00300105 pcm0: Parse flags: 0x00000001 pcm0: Ctl flags: 0x00000000 pcm0: Output amp: 0x80051f1f pcm0: mute=1 step=31 size=5 offset=31 pcm0: connections: 1 pcm0: | pcm0: + <- nid=7 [audio selector] pcm0: pcm0: nid: 12 [ANALOG] pcm0: name: audio selector pcm0: widget_cap: 0x0030010d pcm0: Parse flags: 0x00000006 pcm0: Ctl flags: 0x00000041 pcm0: Output amp: 0x00270400 pcm0: mute=0 step=4 size=39 offset=0 pcm0: connections: 5 pcm0: | pcm0: + <- nid=16 [pin: line in (jack)] (selected) pcm0: | pcm0: + <- nid=15 [pin: Mic in (fixed)] pcm0: | pcm0: + <- nid=14 [pin: speaker (fixed)] pcm0: | pcm0: + <- nid=13 [pin: headphones out (jack)] pcm0: | pcm0: + <- nid=18 [pin: other (none)] [DISABLED] pcm0: pcm0: nid: 13 [ANALOG] pcm0: name: pin: headphones out (jack) pcm0: widget_cap: 0x00400181 pcm0: Parse flags: 0x00000001 pcm0: Ctl flags: 0x00000000 pcm0: Pin cap: 0x0000003f pcm0: ISC TRQD HP OUT IN : UNSOL pcm0: Pin config: 0x0321101f pcm0: Pin control: 0x00000080 HP pcm0: connections: 1 pcm0: | pcm0: + <- nid=11 [audio selector] pcm0: pcm0: nid: 14 [ANALOG] pcm0: name: pin: speaker (fixed) pcm0: widget_cap: 0x00400181 pcm0: Parse flags: 0x00000001 pcm0: Ctl flags: 0x00000000 pcm0: Pin cap: 0x0000003f pcm0: ISC TRQD HP OUT IN : UNSOL pcm0: Pin config: 0x90170310 pcm0: Pin control: 0x00000040 OUT pcm0: connections: 1 pcm0: | pcm0: + <- nid=11 [audio selector] pcm0: pcm0: nid: 15 [ANALOG] pcm0: name: pin: Mic in (fixed) pcm0: widget_cap: 0x00400181 pcm0: Parse flags: 0x00000002 pcm0: Ctl flags: 0x00000000 pcm0: Pin cap: 0x00000037 pcm0: ISC TRQD OUT IN : UNSOL pcm0: Pin config: 0x90a70320 pcm0: Pin control: 0x00000020 IN pcm0: connections: 1 pcm0: | pcm0: + <- nid=11 [audio selector] pcm0: pcm0: nid: 16 [ANALOG] pcm0: name: pin: line in (jack) pcm0: widget_cap: 0x00400181 pcm0: Parse flags: 0x00000002 pcm0: Ctl flags: 0x00000041 pcm0: Pin cap: 0x00001737 pcm0: ISC TRQD OUT IN VREF[ 50 80 GROUND HIZ ] : UNSOL pcm0: Pin config: 0x0381102e pcm0: Pin control: 0x00000024 IN pcm0: connections: 1 pcm0: | pcm0: + <- nid=11 [audio selector] pcm0: pcm0: nid: 17 [ANALOG] [DISABLED] pcm0: name: pin: other (none) pcm0: widget_cap: 0x00400104 pcm0: Parse flags: 0x00000000 pcm0: Ctl flags: 0x00000000 pcm0: Pin cap: 0x00000010 pcm0: OUT pcm0: Pin config: 0x40f000f2 pcm0: Pin control: 0x00000040 OUT pcm0: Output amp: 0x80051f1f pcm0: mute=1 step=31 size=5 offset=31 pcm0: connections: 1 pcm0: | pcm0: + <- nid=19 [audio mixer] pcm0: pcm0: nid: 18 [ANALOG] [DISABLED] pcm0: name: pin: other (none) pcm0: widget_cap: 0x00400001 pcm0: Parse flags: 0x00000000 pcm0: Ctl flags: 0x00000000 pcm0: Pin cap: 0x00000020 pcm0: IN pcm0: Pin config: 0x40f000f3 pcm0: Pin control: 0x00000020 IN pcm0: connections: 0 pcm0: pcm0: nid: 19 [ANALOG] pcm0: name: audio mixer pcm0: widget_cap: 0x00200100 pcm0: Parse flags: 0x00000000 pcm0: Ctl flags: 0x00000000 pcm0: connections: 1 pcm0: | pcm0: + <- nid=7 [audio selector] pcm0: pcm0: nid: 20 [ANALOG] pcm0: name: beep widget pcm0: widget_cap: 0x0070000c pcm0: Parse flags: 0x00000000 pcm0: Ctl flags: 0x00000021 pcm0: Output amp: 0x80170303 pcm0: mute=1 step=3 size=23 offset=3 pcm0: connections: 0 pcm0: pcm0: +------------------------+ pcm0: | DUMPING HDA AMPLIFIERS | pcm0: +------------------------+ pcm0: pcm0: 1: nid=10 dir=0x1 index=0 ossmask=0x00000800 ossdev=0 pcm0: 2: nid=11 dir=0x1 index=0 ossmask=0x00000001 ossdev=0 pcm0: 3: nid=12 dir=0x1 index=0 ossmask=0x00000040 ossdev=6 pcm0: 4: nid=17 dir=0x1 index=0 ossmask=0x00000000 ossdev=0 [DISABLED] pcm0: 5: nid=20 dir=0x1 index=0 ossmask=0x00000020 ossdev=5 pcm0: pcm0: +-----------------------------------+ pcm0: | DUMPING HDA AUDIO/VOLUME CONTROLS | pcm0: +-----------------------------------+ pcm0: pcm0: Master Volume (OSS: vol) pcm0: | pcm0: +- nid: 11 index: 0 mute: 1 step: 31 size: 5 off: 31 dir=0x1 ossmask=0x00000001 pcm0: pcm0: Line-in Volume (OSS: line) pcm0: | pcm0: +- nid: 12 index: 0 mute: 0 step: 4 size: 39 off: 0 dir=0x1 ossmask=0x00000040 pcm0: pcm0: Recording Level (OSS: rec) pcm0: | pcm0: +- nid: 10 index: 0 mute: 1 step: 15 size: 5 off: 0 dir=0x1 ossmask=0x00000800 pcm0: pcm0: Speaker/Beep (OSS: speaker) pcm0: | pcm0: +- nid: 20 index: 0 mute: 1 step: 3 size: 23 off: 3 dir=0x1 ossmask=0x00000020 pcm0: pcm0: Playback path: pcm0: pcm0: nid=13 [pin: headphones out (jack)] pcm0: ^ pcm0: | pcm0: +-----<------+ pcm0: ^ pcm0: | pcm0: nid=11 [audio selector] pcm0: ^ pcm0: | pcm0: nid=7 [audio selector] pcm0: ^ pcm0: | pcm0: nid=2 [audio output] pcm0: pcm0: nid=14 [pin: speaker (fixed)] pcm0: ^ pcm0: | pcm0: +-----<------+ pcm0: ^ pcm0: | pcm0: nid=11 [audio selector] pcm0: ^ pcm0: | pcm0: nid=7 [audio selector] pcm0: ^ pcm0: | pcm0: nid=2 [audio output] pcm0: pcm0: Recording sources: pcm0: pcm0: nid=12 [audio selector] pcm0: | pcm0: + <- nid=16 [pin: line in (jack)] [recsrc: vol, line] pcm0: | pcm0: + <- nid=15 [pin: Mic in (fixed)] pcm0: | pcm0: + <- nid=14 [pin: speaker (fixed)] pcm0: | pcm0: + <- nid=13 [pin: headphones out (jack)] pcm0: pcm0: +--------------------------------------+ pcm0: | DUMPING PCM Playback/Record Channels | pcm0: +--------------------------------------+ pcm0: pcm0: PCM Playback: 1 pcm0: Stream cap: 0x00000001 pcm0: Format: PCM pcm0: PCM cap: 0x000e07e0 pcm0: PCM size: 16 20 24 pcm0: PCM rate: 44 48 88 96 176 192 pcm0: DAC: 2 pcm0: pcm0: PCM Record: 1 pcm0: Stream cap: 0x00000001 pcm0: Format: PCM pcm0: PCM cap: 0x000e07e0 pcm0: PCM size: 16 20 24 pcm0: PCM rate: 44 48 88 96 176 192 pcm0: ADC: 3 SMP: AP CPU #1 Launched! cpu1 AP: ID: 0x01000000 VER: 0x00050014 LDR: 0x00000000 DFR: 0xffffffff lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff timer: 0x000200ef therm: 0x00010000 err: 0x00010000 pcm: 0x00010000 ioapic0: Assigning ISA IRQ 1 to local APIC 0 ioapic0: Assigning ISA IRQ 9 to local APIC 1 ioapic0: Assigning ISA IRQ 12 to local APIC 0 ioapic0: Assigning ISA IRQ 14 to local APIC 1 ioapic0: Assigning ISA IRQ 15 to local APIC 0 ioapic0: Assigning PCI IRQ 16 to local APIC 1 ioapic0: Assigning PCI IRQ 17 to local APIC 0 ioapic0: Assigning PCI IRQ 18 to local APIC 1 ioapic0: Assigning PCI IRQ 19 to local APIC 0 ioapic0: Assigning PCI IRQ 20 to local APIC 1 ioapic0: Assigning PCI IRQ 21 to local APIC 0 ioapic0: Assigning PCI IRQ 22 to local APIC 1 ioapic0: Assigning PCI IRQ 23 to local APIC 0 (probe0:ata1:0:0:0): error 22 (probe0:ata1:0:0:0): Unretryable Error pass0 at ata1 bus 0 target 0 lun 0 pass0: Removable CD-ROM SCSI-0 device pass0: 33.000MB/s transfers (cd0:ata1:0:0:0): error 6 (cd0:ata1:0:0:0): Unretryable Error cd0 at ata1 bus 0 target 0 lun 0 cd0: Removable CD-ROM SCSI-0 device cd0: 33.000MB/s transfers cd0: Attempt to query device size failed: NOT READY, Medium not present GEOM: new disk cd0 (cd0:ata1:0:0:0): error 6 (cd0:ata1:0:0:0): Unretryable Error (cd0:ata1:0:0:0): error 6 (cd0:ata1:0:0:0): Unretryable Error (cd0:ata1:0:0:0): error 6 (cd0:ata1:0:0:0): Unretryable Error (cd0:ata1:0:0:0): error 6 (cd0:ata1:0:0:0): Unretryable Error Trying to mount root from ufs:/dev/ad0s1a start_init: trying /sbin/init uhub6: vendor 0x0b97 product 0x7761, class 9/0, rev 1.10/1.10, addr 126 uhub6: 3 ports with 2 removable, bus powered ugen0: ======================= Thanks for helping. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 14 10:40: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 4C9DE16A401 for ; Wed, 14 Feb 2007 10:40: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 E951913C471 for ; Wed, 14 Feb 2007 10:40:16 +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 l1EAeGQv012283 for ; Wed, 14 Feb 2007 10:40:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1EAeG7E012278; Wed, 14 Feb 2007 10:40:16 GMT (envelope-from gnats) Date: Wed, 14 Feb 2007 10:40:16 GMT Message-Id: <200702141040.l1EAeG7E012278@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Bob Bishop Cc: Subject: Re: kern/107695: VIA 8237A, Seagate ST380811AS initialisation problem X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Bob Bishop List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Feb 2007 10:40:17 -0000 The following reply was made to PR kern/107695; it has been noted by GNATS. From: Bob Bishop To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/107695: VIA 8237A, Seagate ST380811AS initialisation problem Date: Wed, 14 Feb 2007 10:09:43 +0000 A bit more info: this controller is onboard an Asus A8V-VM SE m/b, the system has been running in production for a month with a hack along the lines suggested above. From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 14 12:18: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 59F9B16A408 for ; Wed, 14 Feb 2007 12:18:22 +0000 (UTC) (envelope-from alb@kdtu.kr.ua) Received: from mail.kdtu.kr.ua (internetgateway.kdtu.kr.ua [193.254.219.94]) by mx1.freebsd.org (Postfix) with ESMTP id CDFEE13C4B4 for ; Wed, 14 Feb 2007 12:18:21 +0000 (UTC) (envelope-from alb@kdtu.kr.ua) Received: from albert (albert.kdtu.kr.ua [10.10.10.150]) by mail.kdtu.kr.ua with esmtp; Wed, 14 Feb 2007 14:14:01 +0000 id 00119C12.45D31929.00006F00 Message-ID: <002b01c75030$d1f587d0$960a0a0a@kdtu.kr.ua> From: "Albert" To: freebsd-bugs@FreeBSD.org Date: Wed, 14 Feb 2007 14:08:21 +0200 Mime-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Content-Type: text/plain; name="freebsd-bugs.txt"; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="freebsd-bugs.txt" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: freebsd-bugs 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, 14 Feb 2007 12:18:22 -0000 internetgateway# kgdb kernel.debug /var/crash/vmcore.8 [GDB will not be able to debug user-mode threads: = /usr/lib/libthread_db.so: Undefined symbol "ps_pglobal_lookup"] GNU gdb 6.1.1 [FreeBSD] Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you = are welcome to change it and/or distribute copies of it under certain = conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for = details. This GDB was configured as "i386-marcel-freebsd". Unread portion of the kernel message buffer: Fatal trap 12: page fault while in kernel mode fault virtual address =3D 0x4563254e fault code =3D supervisor read, page not present instruction pointer =3D 0x20:0xc067d6ec stack pointer =3D 0x28:0xeefbca04 frame pointer =3D 0x28:0xeefbca30 code segment =3D base 0x0, limit 0xfffff, type 0x1b =3D DPL 0, pres 1, def32 1, gran 1 processor eflags =3D interrupt enabled, resume, IOPL =3D 0 current process =3D 60372 (stargazer) trap number =3D 12 panic: page fault Uptime: 4d2h6m4s Dumping 991 MB (2 chunks) chunk 0: 1MB (160 pages) ... ok chunk 1: 991MB (253680 pages) 975 959 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" : "=3Dr" (td)); (kgdb) list *0xc067d6ec 0xc067d6ec is in brelse (../../../kern/vfs_bio.c:1200). 1195 * the commit state and we cannot afford to lose the = buffer. If the 1196 * buffer has a background write in progress, we need to = keep it 1197 * around to prevent it from being reconstituted and = starting a second 1198 * background write. 1199 */ 1200 if ((bp->b_flags & B_VMIO) 1201 && !(bp->b_vp->v_mount !=3D NULL && 1202 (bp->b_vp->v_mount->mnt_vfc->vfc_flags & = VFCF_NETWORK) !=3D 0 && 1203 !vn_isdisk(bp->b_vp, NULL) && 1204 (bp->b_flags & B_DELWRI)) (kgdb) backtrace #0 doadump () at pcpu.h:165 #1 0xc0638552 in boot (howto=3D260) at = ../../../kern/kern_shutdown.c:399 #2 0xc06387e8 in panic (fmt=3D0xc085a72b "%s") at = ../../../kern/kern_shutdown.c:555 #3 0xc0813880 in trap_fatal (frame=3D0xeefbc9c4, eva=3D1164125518) at = ../../../i386/i386/trap.c:831 #4 0xc08135eb in trap_pfault (frame=3D0xeefbc9c4, usermode=3D0, = eva=3D1164125518) at ../../../i386/i386/trap.c:742 #5 0xc0813229 in trap (frame=3D {tf_fs =3D 8, tf_es =3D 40, tf_ds =3D 40, tf_edi =3D 512, tf_esi = =3D -1030038300, tf_ebp =3D -285488592, tf_isp =3D -285488656, tf_ebx = =3D -700536128, tf_edx =3D -1030015936, tf_ecx =3D -1029999552, tf_eax = =3D 1164125506, tf_trapno =3D 12, tf_err =3D 0, tf_eip =3D -1066936596, = tf_cs =3D 32, tf_eflags =3D 66054, tf_esp =3D 0, tf_ss =3D -285488624}) = at ../../../i386/i386/trap.c:432 #6 0xc0802a1a in calltrap () at ../../../i386/i386/exception.s:139 #7 0xc067d6ec in brelse (bp=3D0xd63eaac0) at = ../../../kern/vfs_bio.c:1200 #8 0xc07996cf in ufs_lookup (ap=3D0xeefbcb18) at = ../../../ufs/ufs/ufs_lookup.c:462 #9 0xc08229b4 in VOP_CACHEDLOOKUP_APV (vop=3D0x45632542, = a=3D0xc29b3440) at vnode_if.c:150 #10 0xc0682fee in vfs_cache_lookup (ap=3D0x45632542) at vnode_if.h:82 #11 0xc0822943 in VOP_LOOKUP_APV (vop=3D0xc090a060, a=3D0xeefbcbb0) at = vnode_if.c:99 #12 0xc068757d in lookup (ndp=3D0xeefbcc6c) at vnode_if.h:56 #13 0xc0686ebe in namei (ndp=3D0xeefbcc6c) at = ../../../kern/vfs_lookup.c:203 #14 0xc0693c7a in kern_unlink (td=3D0xc2768480, path=3D0x8cb4e0c =
, pathseg=3DUIO_USERSPACE) at ../../../kern/vfs_syscalls.c:1637 #15 0xc0693c3e in unlink (td=3D0xc2768480, uap=3D0x45632542) at = ../../../kern/vfs_syscalls.c:1621 #16 0xc0813b97 in syscall (frame=3D {tf_fs =3D 59, tf_es =3D 59, tf_ds =3D 59, tf_edi =3D 671998600, = tf_esi =3D -1083191296, tf_ebp =3D -1082143592, tf_isp =3D -285487772, = tf_ebx =3D 674391780, tf_edx =3D 1, tf_ecx =3D 0, tf_eax =3D 10, = tf_trapno =3D 0, tf_err =3D 2, tf_eip =3D 672687987, tf_cs =3D 51, = tf_eflags =3D 646, tf_esp =3D -1082143636, tf_ss =3D 59}) at = ../../../i386/i386/trap.c:976 #17 0xc0802a6f in Xint0x80_syscall () at = ../../../i386/i386/exception.s:200 #18 0x00000033 in ?? () Previous frame inner to this frame (corrupt stack?) From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 14 12:19:55 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 9288916A407 for ; Wed, 14 Feb 2007 12:19:55 +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 55B9313C428 for ; Wed, 14 Feb 2007 12:19:55 +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 7FDE092FD1A; Wed, 14 Feb 2007 13:19:54 +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 53680-10; Wed, 14 Feb 2007 13:19:48 +0100 (CET) Received: from redqueen.evilcoder-services.org (caelis.elvandar.org [217.148.169.59]) by caelis.elvandar.org (Postfix) with ESMTP id 2970092FC46; Wed, 14 Feb 2007 13:19:48 +0100 (CET) Received: by redqueen.evilcoder-services.org (Postfix, from userid 1001) id 088CA66B3; Wed, 14 Feb 2007 13:19:47 +0100 (CET) Date: Wed, 14 Feb 2007 13:19:47 +0100 From: Remko Lodder To: Albert Message-ID: <20070214121947.GK12066@elvandar.org> References: <002b01c75030$d1f587d0$960a0a0a@kdtu.kr.ua> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <002b01c75030$d1f587d0$960a0a0a@kdtu.kr.ua> 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: freebsd-bugs 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, 14 Feb 2007 12:19:55 -0000 On Wed, Feb 14, 2007 at 02:08:21PM +0200, Albert wrote: Thanks for the dump. What is this about if I may ask? -- Kind regards, Remko Lodder ** remko@elvandar.org FreeBSD ** remko@FreeBSD.org /* Quis custodiet ipsos custodes */ From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 14 12:25: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 1869E16A401 for ; Wed, 14 Feb 2007 12:25:24 +0000 (UTC) (envelope-from rnsanchez@wait4.org) Received: from sumo.dreamhost.com (sumo.dreamhost.com [66.33.216.29]) by mx1.freebsd.org (Postfix) with ESMTP id 0422D13C441 for ; Wed, 14 Feb 2007 12:25:23 +0000 (UTC) (envelope-from rnsanchez@wait4.org) Received: from spunkymail-a7.g.dreamhost.com (mailbigip.dreamhost.com [208.97.132.5]) by sumo.dreamhost.com (Postfix) with ESMTP id A2C361842ED for ; Wed, 14 Feb 2007 04:02:18 -0800 (PST) Received: from sauron.lan.box (unknown [200.203.29.69]) by spunkymail-a7.g.dreamhost.com (Postfix) with ESMTP id 7B0A85C165; Wed, 14 Feb 2007 04:02:16 -0800 (PST) Date: Wed, 14 Feb 2007 10:02:11 -0200 From: Ricardo Nabinger Sanchez To: freebsd-bugs@freebsd.org Message-Id: <20070214100211.560b3079.rnsanchez@wait4.org> In-Reply-To: <002301c74ff3$69cf9ed0$6401a8c0@dellxps> References: <002301c74ff3$69cf9ed0$6401a8c0@dellxps> Organization: SYS_WAIT4 X-Mailer: Sylpheed 2.4.0beta3 (GTK+ 2.10.9; i386-unknown-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Tom Donnelly Subject: Re: Hard Locks 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, 14 Feb 2007 12:25:24 -0000 On Tue, 13 Feb 2007 22:48:43 -0600 "Tom Donnelly" wrote: > There is little consistancy to these hard locks and no logs seem to be left. > The only thing that makes a difference is visitng web sites speeds up the > hardlock (usually 2 -3 web pages) > > Any ideas? Have you already ruled out temperature (CPU, GPU, main memory and bridges), bad RAM module and failing power supply? -- Ricardo Nabinger Sanchez Powered by FreeBSD "Left to themselves, things tend to go from bad to worse." From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 14 14: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 501C216A408 for ; Wed, 14 Feb 2007 14: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 18AC413C4B3 for ; Wed, 14 Feb 2007 14: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 l1EEA5eG026211 for ; Wed, 14 Feb 2007 14:10:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1EEA57r026210; Wed, 14 Feb 2007 14:10:05 GMT (envelope-from gnats) Resent-Date: Wed, 14 Feb 2007 14:10:05 GMT Resent-Message-Id: <200702141410.l1EEA57r026210@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, Helmut Schneider Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7DB4F16A406 for ; Wed, 14 Feb 2007 14:00:24 +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 6EC7013C481 for ; Wed, 14 Feb 2007 14:00:24 +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 l1EE0O5S014349 for ; Wed, 14 Feb 2007 14:00:24 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l1EE0OQT014348; Wed, 14 Feb 2007 14:00:24 GMT (envelope-from nobody) Message-Id: <200702141400.l1EE0OQT014348@www.freebsd.org> Date: Wed, 14 Feb 2007 14:00:24 GMT From: Helmut Schneider To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: kern/109165: hw.bge.fake_autoneg without effect 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, 14 Feb 2007 14:10:06 -0000 >Number: 109165 >Category: kern >Synopsis: hw.bge.fake_autoneg without effect >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 14 14:10:05 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Helmut Schneider >Release: 6.2-RELEASE >Organization: >Environment: bge0: mem 0xfbff0000-0xfbffffff,0xfbfe0000-0xfbfeffff irq 16 at device 0.0 on pci1 bge0: Ethernet address: 00:09:6b:b5:cb:9a bge1: mem 0xfbfd0000-0xfbfdffff,0xfbfc0000-0xfbfcffff irq 17 at device 0.1 on pci1 bge1: Ethernet address: 00:09:6b:b5:cb:9b bge1: flags=8843 mtu 1500 inet6 fe80::209:6bff:feb5:cb9b%bge1 prefixlen 64 tentative scopeid 0x2 bge1: flags=8843 mtu 1500 inet6 fe80::209:6bff:feb5:cb9b%bge1 prefixlen 64 tentative scopeid 0x2 >Description: Found that one: http://lists.freebsd.org/pipermail/freebsd-bugs/2006-March/017618.html (kern/94833) Does not work here (or pebkac?). >How-To-Repeat: echo "hw.bge.fake_autoneg" >> /boot/loader.conf reboot >Fix: Put "options BGE_FAKE_AUTONEG" into kernel conf and recompile kernel. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 14 15:00: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 2707616A402 for ; Wed, 14 Feb 2007 15:00: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 B198413C494 for ; Wed, 14 Feb 2007 15:00:23 +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 l1EF0N6q029213 for ; Wed, 14 Feb 2007 15:00:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1EF0NCI029212; Wed, 14 Feb 2007 15:00:23 GMT (envelope-from gnats) Date: Wed, 14 Feb 2007 15:00:23 GMT Message-Id: <200702141500.l1EF0NCI029212@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: "Helmut Schneider" Cc: Subject: Re: kern/109165: hw.bge.fake_autoneg without effect X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Helmut Schneider List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Feb 2007 15:00:24 -0000 The following reply was made to PR kern/109165; it has been noted by GNATS. From: "Helmut Schneider" To: Cc: Subject: Re: kern/109165: hw.bge.fake_autoneg without effect Date: Wed, 14 Feb 2007 15:25:04 +0100 Ehem, please tell me that this is PEBKAC as "options BGE_FAKE_AUTONEG" is without effect, too. With FreeBSD6.1-RELEASE "options BGE_FAKE_AUTONEG" works fine on the same machine. Helmut From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 14 15: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 5BAEB16A400 for ; Wed, 14 Feb 2007 15: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 0724C13C48E for ; Wed, 14 Feb 2007 15: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 l1EFoNvW032118 for ; Wed, 14 Feb 2007 15:50:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1EFoNhU032117; Wed, 14 Feb 2007 15:50:23 GMT (envelope-from gnats) Date: Wed, 14 Feb 2007 15:50:23 GMT Message-Id: <200702141550.l1EFoNhU032117@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Craig Rodrigues Cc: Subject: Re: kern/109165: hw.bge.fake_autoneg without effect X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Craig Rodrigues List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Feb 2007 15:50:24 -0000 The following reply was made to PR kern/109165; it has been noted by GNATS. From: Craig Rodrigues To: Helmut Schneider Cc: bug-followup@freebsd.org Subject: Re: kern/109165: hw.bge.fake_autoneg without effect Date: Wed, 14 Feb 2007 10:45:22 -0500 On Wed, Feb 14, 2007 at 02:00:24PM +0000, Helmut Schneider wrote: > >How-To-Repeat: > echo "hw.bge.fake_autoneg" >> /boot/loader.conf > reboot Try to put this line in /boot/loader.conf: hw.bge.fake_autoneg="1" -- Craig Rodrigues rodrigc@crodrigues.org From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 14 16:50: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 CEE8416A402 for ; Wed, 14 Feb 2007 16:50: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 BF94E13C46B for ; Wed, 14 Feb 2007 16:50: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 l1EGoDH5035508 for ; Wed, 14 Feb 2007 16:50:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1EGoDL0035507; Wed, 14 Feb 2007 16:50:13 GMT (envelope-from gnats) Date: Wed, 14 Feb 2007 16:50:13 GMT Message-Id: <200702141650.l1EGoDL0035507@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: "Helmut Schneider" Cc: Subject: Re: kern/109165: hw.bge.fake_autoneg without effect X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Helmut Schneider List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Feb 2007 16:50:13 -0000 The following reply was made to PR kern/109165; it has been noted by GNATS. From: "Helmut Schneider" To: "Craig Rodrigues" Cc: Subject: Re: kern/109165: hw.bge.fake_autoneg without effect Date: Wed, 14 Feb 2007 17:40:11 +0100 From: "Craig Rodrigues" > On Wed, Feb 14, 2007 at 02:00:24PM +0000, Helmut Schneider wrote: >> >How-To-Repeat: >> echo "hw.bge.fake_autoneg" >> /boot/loader.conf >> reboot > > Try to put this line in /boot/loader.conf: > hw.bge.fake_autoneg="1" Sorry, typo, "hw.bge.fake_autoneg=1" >> /boot/loader.conf Or are the exclamation marks around 1 important (can't test right now as I rolled back to 6.1)? Helmut From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 14 17:10:19 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 4AB9616A468 for ; Wed, 14 Feb 2007 17:10:19 +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 0256713C441 for ; Wed, 14 Feb 2007 17:10:19 +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 l1EHAIS5036416 for ; Wed, 14 Feb 2007 17:10:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1EHAILP036411; Wed, 14 Feb 2007 17:10:18 GMT (envelope-from gnats) Resent-Date: Wed, 14 Feb 2007 17:10:18 GMT Resent-Message-Id: <200702141710.l1EHAILP036411@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, Ahsan Khan Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A3D3816A420 for ; Wed, 14 Feb 2007 17:09: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 94CAA13C4A7 for ; Wed, 14 Feb 2007 17:09: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 l1EH9WUF056339 for ; Wed, 14 Feb 2007 17:09:32 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l1EH9WQN056338; Wed, 14 Feb 2007 17:09:32 GMT (envelope-from nobody) Message-Id: <200702141709.l1EH9WQN056338@www.freebsd.org> Date: Wed, 14 Feb 2007 17:09:32 GMT From: Ahsan Khan To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: misc/109168: ftpd shows full system files when using FTP with IE7 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, 14 Feb 2007 17:10:19 -0000 >Number: 109168 >Category: misc >Synopsis: ftpd shows full system files when using FTP with IE7 >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 14 17:10:18 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Ahsan Khan >Release: 4.9-RELEASE FreeBSD 4.9-RELEASE #0 >Organization: NA >Environment: FreeBSD xxxxxxxxx 4.9-RELEASE FreeBSD 4.9-RELEASE #0: Sun Oct 31 11:32:31 EST 2004 root@xxxxxxxx:/usr/src/sys/compile/jahil i386 >Description: When using FTP feature of Browser on IE7 browser shows file listing of / and one can then drill down to any other folder including etc, bin can read any file, can download any thing. system security is fully compromised. >How-To-Repeat: install IE7 on XP or Vista and open FTP using /etc/inetd.conf, then simplly do the FTP using any account, i have tried accounts with bash shell and it will show you the root of file system insted of user home folder. These foders are not chroot so in theory users can go up one level and get to other folders anyway. >Fix: not known yet >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 14 17:38:59 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 A98D216A401; Wed, 14 Feb 2007 17:38:59 +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 81C1213C441; Wed, 14 Feb 2007 17:38:59 +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 l1EHcxu7038660; Wed, 14 Feb 2007 17:38:59 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1EHcxmI038656; Wed, 14 Feb 2007 17:38:59 GMT (envelope-from remko) Date: Wed, 14 Feb 2007 17:38:59 GMT From: Remko Lodder Message-Id: <200702141738.l1EHcxmI038656@freefall.freebsd.org> To: ahsank@jahil.net, remko@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: misc/109168: ftpd shows full system files when using FTP with IE7 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, 14 Feb 2007 17:38:59 -0000 Synopsis: ftpd shows full system files when using FTP with IE7 State-Changed-From-To: open->closed State-Changed-By: remko State-Changed-When: Wed Feb 14 17:38:58 UTC 2007 State-Changed-Why: Yes, thank you for reporting this, but this is default behaviour. IE7 might be changing to the / by default, which either is your homedir (if chrooted)or the real /. In this case the latter. This is not uncommon for unchrooted environments and will always be possible with accounts that can get outside their homedir. No bug, no PR, closing this ticket (Thanks for trying to improve FreeBSD though!) http://www.freebsd.org/cgi/query-pr.cgi?pr=109168 From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 14 18: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 06D6616A409 for ; Wed, 14 Feb 2007 18: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 C2B5113C48E for ; Wed, 14 Feb 2007 18:00:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1EI0Csg039513 for ; Wed, 14 Feb 2007 18:00:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1EI0C7j039512; Wed, 14 Feb 2007 18:00:12 GMT (envelope-from gnats) Resent-Date: Wed, 14 Feb 2007 18:00:12 GMT Resent-Message-Id: <200702141800.l1EI0C7j039512@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Alexander Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8073116A406 for ; Wed, 14 Feb 2007 17:56:40 +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 713E513C4B3 for ; Wed, 14 Feb 2007 17:56:40 +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 l1EHuek9081528 for ; Wed, 14 Feb 2007 17:56:40 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l1EHuexw081527; Wed, 14 Feb 2007 17:56:40 GMT (envelope-from nobody) Message-Id: <200702141756.l1EHuexw081527@www.freebsd.org> Date: Wed, 14 Feb 2007 17:56:40 GMT From: Alexander To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: misc/109172: panic on double mounting the same mount point 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, 14 Feb 2007 18:00:13 -0000 >Number: 109172 >Category: misc >Synopsis: panic on double mounting the same mount point >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 14 18:00:12 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Alexander >Release: FreeBSD 6.2 >Organization: >Environment: FreeBSD localhost 6.2-RELEASE FreeBSD 6.2-RELEASE #7: Thu Jan 25 21:09:24 MSK 2007 is@localhost:/usr/obj/usr/src/sys/LUKA i386 >Description: Sorry for my english! I have double mounted the same mount point and then get panic. /etc/fstab: /dev/ad0s1 /mnt/c ntfs ro,noauto,-C=KOI8-R,-m=755,-u=luka,-g=luka 0 0 I`m working as user "is" (not the owner of the mount point). is@localhost> mount /mnt/c is@localhost> mount /mnt/c panic... >How-To-Repeat: /etc/fstab: /dev/ad0s1 /mnt/c ntfs ro,noauto,-C=KOI8-R,-m=755,-u=luka,-g=luka 0 0 is@localhost> mount /mnt/c is@localhost> mount /mnt/c panic... >Fix: Check if mount point has been mounted before mounting. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 14 18:57: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 147AB16A406; Wed, 14 Feb 2007 18:57:10 +0000 (UTC) (envelope-from rodrigc@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id DE7D013C4A8; Wed, 14 Feb 2007 18:57:09 +0000 (UTC) (envelope-from rodrigc@FreeBSD.org) Received: from freefall.freebsd.org (rodrigc@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1EIv9gb042819; Wed, 14 Feb 2007 18:57:09 GMT (envelope-from rodrigc@freefall.freebsd.org) Received: (from rodrigc@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1EIv9OY042815; Wed, 14 Feb 2007 18:57:09 GMT (envelope-from rodrigc) Date: Wed, 14 Feb 2007 18:57:09 GMT From: Craig Rodrigues Message-Id: <200702141857.l1EIv9OY042815@freefall.freebsd.org> To: lunkov@gmail.com, rodrigc@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: misc/109172: panic on double mounting the same mount point 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, 14 Feb 2007 18:57:10 -0000 Synopsis: panic on double mounting the same mount point State-Changed-From-To: open->closed State-Changed-By: rodrigc State-Changed-When: Wed Feb 14 18:56:44 UTC 2007 State-Changed-Why: Duplicate of 89966. http://www.freebsd.org/cgi/query-pr.cgi?pr=89966 http://www.freebsd.org/cgi/query-pr.cgi?pr=109172 From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 14 20:21:36 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 6F92416A406 for ; Wed, 14 Feb 2007 20:21:36 +0000 (UTC) (envelope-from romantik1989@yandex.ru) Received: from webmail19.mail.yandex.net (webmail19.mail.yandex.net [213.180.200.53]) by mx1.freebsd.org (Postfix) with ESMTP id 2EB9813C4B3; Wed, 14 Feb 2007 20:21:36 +0000 (UTC) (envelope-from romantik1989@yandex.ru) Received: from YAMAIL (webmail19.yandex.ru) by mail.yandex.ru id ; Wed, 14 Feb 2007 23:09:09 +0300 Received: from [83.170.235.68] ([83.170.235.68]) by mail.yandex.ru with HTTP; Wed, 14 Feb 2007 23:09:09 +0300 (MSK) Date: Wed, 14 Feb 2007 23:09:09 +0300 (MSK) From: "romantik1989" Sender: romantik1989@yandex.ru Message-Id: <45D36C65.000002.30409@webmail19.yandex.ru> MIME-Version: 1.0 X-Mailer: Yamail [ http://yandex.ru ] Errors-To: romantik1989@yandex.ru To: freebsd-bugs@freebsd.org Cc: freebsd-bugs@freebsd.org X-MsgDayCount: 4 X-BornDate: 1131656400 X-Source-Ip: 83.170.235.68 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Subject: Sata < adaptec controllers X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: romantik1989@yandex.ru List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Feb 2007 20:21:36 -0000 Good evening, I would like to ask you about a help in the search of abstract, on a theme (Adaptec controller 2420SA or 2820SA (4-8 ports controllers) passing in them (caching) and (command queuing)). I will be you very thank. Student of Kievan National University. Anikin Roman. From owner-freebsd-bugs@FreeBSD.ORG Thu Feb 15 10:03:28 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 3AC7216A407; Thu, 15 Feb 2007 10:03:28 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 129AA13C47E; Thu, 15 Feb 2007 10:03:28 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from freefall.freebsd.org (kib@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1FA3RRp014896; Thu, 15 Feb 2007 10:03:27 GMT (envelope-from kib@freefall.freebsd.org) Received: (from kib@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1FA3Rl6014892; Thu, 15 Feb 2007 10:03:27 GMT (envelope-from kib) Date: Thu, 15 Feb 2007 10:03:27 GMT From: Konstantin Belousov Message-Id: <200702151003.l1FA3Rl6014892@freefall.freebsd.org> To: rockowallaby@bellsouth.net, kib@FreeBSD.org, freebsd-bugs@FreeBSD.org, kib@FreeBSD.org Cc: Subject: Re: kern/92785: Using exported filesystem on OS/2 NFS client causes filesystem freeze 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, 15 Feb 2007 10:03:28 -0000 Synopsis: Using exported filesystem on OS/2 NFS client causes filesystem freeze State-Changed-From-To: open->patched State-Changed-By: kib State-Changed-When: Thu Feb 15 10:01:46 UTC 2007 State-Changed-Why: Patch by tegge' was just committed. Responsible-Changed-From-To: freebsd-bugs->kib Responsible-Changed-By: kib Responsible-Changed-When: Thu Feb 15 10:01:46 UTC 2007 Responsible-Changed-Why: Patch by tegge' was just committed. http://www.freebsd.org/cgi/query-pr.cgi?pr=92785 From owner-freebsd-bugs@FreeBSD.ORG Thu Feb 15 10:39: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 63C9116A402; Thu, 15 Feb 2007 10:39:02 +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 3CBE013C467; Thu, 15 Feb 2007 10:39: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 l1FAd2gS017351; Thu, 15 Feb 2007 10:39:02 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1FAd1RD017347; Thu, 15 Feb 2007 10:39:01 GMT (envelope-from remko) Date: Thu, 15 Feb 2007 10:39:01 GMT From: Remko Lodder Message-Id: <200702151039.l1FAd1RD017347@freefall.freebsd.org> To: dimma@higis.ru, remko@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/105464: panic under heavy 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: Thu, 15 Feb 2007 10:39:02 -0000 Synopsis: panic under heavy load State-Changed-From-To: open->closed State-Changed-By: remko State-Changed-When: Thu Feb 15 10:39:01 UTC 2007 State-Changed-Why: A bugfix had been committed to releng_6 by davidxu (1.116.2.2 +52 -30 src/sys/kern/kern_switch.c) http://www.freebsd.org/cgi/query-pr.cgi?pr=105464 From owner-freebsd-bugs@FreeBSD.ORG Thu Feb 15 10:41:22 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 B130216A402; Thu, 15 Feb 2007 10:41:22 +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 8A42D13C49D; Thu, 15 Feb 2007 10:41:22 +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 l1FAfMuT017712; Thu, 15 Feb 2007 10:41:22 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1FAfMTV017708; Thu, 15 Feb 2007 10:41:22 GMT (envelope-from remko) Date: Thu, 15 Feb 2007 10:41:22 GMT From: Remko Lodder Message-Id: <200702151041.l1FAfMTV017708@freefall.freebsd.org> To: mi@aldan.algebra.com, remko@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/105056: FS can not be remounted read-only, if a running process' executable was modified 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, 15 Feb 2007 10:41:22 -0000 Synopsis: FS can not be remounted read-only, if a running process' executable was modified State-Changed-From-To: open->closed State-Changed-By: remko State-Changed-When: Thu Feb 15 10:41:21 UTC 2007 State-Changed-Why: Your explaination tells us that you are still using the device (there are open and running files from the partition you are trying to remount, exiting them will free the partition and will make sure that you can remount this). Imo this is not a flaw (please correct me if i am wrong) http://www.freebsd.org/cgi/query-pr.cgi?pr=105056 From owner-freebsd-bugs@FreeBSD.ORG Thu Feb 15 10:42: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 817D916A400; Thu, 15 Feb 2007 10:42: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 5B27713C471; Thu, 15 Feb 2007 10:42: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 l1FAg42n017810; Thu, 15 Feb 2007 10:42:04 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1FAg4IG017806; Thu, 15 Feb 2007 10:42:04 GMT (envelope-from remko) Date: Thu, 15 Feb 2007 10:42:04 GMT From: Remko Lodder Message-Id: <200702151042.l1FAg4IG017806@freefall.freebsd.org> To: remko@FreeBSD.org, freebsd-bugs@FreeBSD.org, jfv@FreeBSD.org Cc: Subject: Re: kern/104978: [em] jumbo frames has been broken in RELENG_6 by last commit 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, 15 Feb 2007 10:42:04 -0000 Synopsis: [em] jumbo frames has been broken in RELENG_6 by last commit Responsible-Changed-From-To: freebsd-bugs->jfv Responsible-Changed-By: remko Responsible-Changed-When: Thu Feb 15 10:42:02 UTC 2007 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=104978 From owner-freebsd-bugs@FreeBSD.ORG Thu Feb 15 10:42: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 1206816A407; Thu, 15 Feb 2007 10:42:49 +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 DF3A013C49D; Thu, 15 Feb 2007 10:42: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 l1FAgm1P017903; Thu, 15 Feb 2007 10:42:48 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1FAglIq017899; Thu, 15 Feb 2007 10:42:47 GMT (envelope-from remko) Date: Thu, 15 Feb 2007 10:42:47 GMT From: Remko Lodder Message-Id: <200702151042.l1FAglIq017899@freefall.freebsd.org> To: imriz@co.zahav.net.il, remko@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/104914: [em] network hang (the em driver) when filesystem is full 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, 15 Feb 2007 10:42:49 -0000 Synopsis: [em] network hang (the em driver) when filesystem is full State-Changed-From-To: open->feedback State-Changed-By: remko State-Changed-When: Thu Feb 15 10:42:42 UTC 2007 State-Changed-Why: What filesystem are we talking about!? http://www.freebsd.org/cgi/query-pr.cgi?pr=104914 From owner-freebsd-bugs@FreeBSD.ORG Thu Feb 15 10:43:18 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 A967016A406; Thu, 15 Feb 2007 10:43:18 +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 8230A13C49D; Thu, 15 Feb 2007 10:43:18 +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 l1FAhIUB017992; Thu, 15 Feb 2007 10:43:18 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1FAhI7V017988; Thu, 15 Feb 2007 10:43:18 GMT (envelope-from remko) Date: Thu, 15 Feb 2007 10:43:18 GMT From: Remko Lodder Message-Id: <200702151043.l1FAhI7V017988@freefall.freebsd.org> To: remko@FreeBSD.org, freebsd-bugs@FreeBSD.org, remko@FreeBSD.org Cc: Subject: Re: kern/104914: [em] network hang (the em driver) when filesystem is full 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, 15 Feb 2007 10:43:18 -0000 Synopsis: [em] network hang (the em driver) when filesystem is full Responsible-Changed-From-To: freebsd-bugs->remko Responsible-Changed-By: remko Responsible-Changed-When: Thu Feb 15 10:43:15 UTC 2007 Responsible-Changed-Why: await feedback http://www.freebsd.org/cgi/query-pr.cgi?pr=104914 From owner-freebsd-bugs@FreeBSD.ORG Thu Feb 15 11:00: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 A9E9B16A408 for ; Thu, 15 Feb 2007 11:00: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 80E5F13C4A8 for ; Thu, 15 Feb 2007 11:00: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 l1FB0JBE018447 for ; Thu, 15 Feb 2007 11:00:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1FB0J2J018446; Thu, 15 Feb 2007 11:00:19 GMT (envelope-from gnats) Date: Thu, 15 Feb 2007 11:00:19 GMT Message-Id: <200702151100.l1FB0J2J018446@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Andrew Fremantle Cc: Subject: Re: kern/109044: [ata] Bizarre problem with Pioneer 111D on i965 board X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Andrew Fremantle List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Feb 2007 11:00:24 -0000 The following reply was made to PR kern/109044; it has been noted by GNATS. From: Andrew Fremantle To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/109044: [ata] Bizarre problem with Pioneer 111D on i965 board Date: Thu, 15 Feb 2007 01:54:46 -0800 Okay, I've done a bunch of experimentation with different drives. This problem seems specifically confined to the Pioneer 111D. I do have a Pioneer 110D around, but I don't want to pull it right now. I'll probably update with that in a day or two. I noticed the Lite-On drive reported a non-UDMA66 cable, which is incorrect, and therefore ran in UDMA33 mode. I swapped the cable in question and it made no difference. I also thought that perhaps the Pioneer was causing problems because it's the only device on the list that runs in UDMA66 mode, but I tried forcing ATAPI devices to PIO and got the same result. I've got a Pioneer 110D, the previous generation in my Windows PC, and it detects as UDMA4, so that is the correct speed for that drive. Just to rule out high-speed devices I also tried removing the system drive from it's USB enclosure and attaching it directly to the controller in place of the Pioneer drive, and it worked just fine. -------- AOpen CD-940E/AKU (March 1999) acd0: CDROM at ata2-slave PIO4 TEAC CD-532E (July 1999) acd0: CDROM at ata2-slave PIO4 BenQ 5232W (Nov 2003) acd0: CDRW at ata2-master UDMA33 Lite-On SHM-160P6S (Nov 2005) acd0: DMA limited to UDMA33, device found non-ATA66 cable acd0: DVDR at ata2-slave UDMA33 acd0: DMA limited to UDMA33, device found non-ATA66 cable acd0: DVDR at ata2-master UDMA33 LG GSA-4163B (Feb 2005) acd0: DVDR at ata2-master UDMA33 BenQ DW1655 (Mar 2006) acd0: DVDR at ata2-master UDMA33 Pioneer 111D (Oct 2006) (Non-ACPI) (ACPI Freezes) Interrupt storm detected on "irq10:"; throttling interrupt source acd0: DVDR at ata2-master UDMA66 Interrupt storm detected on "irq10:"; throttling interrupt source acd0: DVDR at ata2-master PIO4 ad4: 76319MB at ata2-master UDMA100 From owner-freebsd-bugs@FreeBSD.ORG Thu Feb 15 12:10: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 D195A16A41F for ; Thu, 15 Feb 2007 12:10: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 AD85313C48D for ; Thu, 15 Feb 2007 12:10: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 l1FCA9wh022165 for ; Thu, 15 Feb 2007 12:10:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1FCA9sX022164; Thu, 15 Feb 2007 12:10:09 GMT (envelope-from gnats) Resent-Date: Thu, 15 Feb 2007 12:10:09 GMT Resent-Message-Id: <200702151210.l1FCA9sX022164@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, Alex Keda Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CA47716A402 for ; Thu, 15 Feb 2007 12:08:51 +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 A1B6A13C461 for ; Thu, 15 Feb 2007 12:08:51 +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 l1FC8nZY008571 for ; Thu, 15 Feb 2007 12:08:49 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l1FC8nVa008570; Thu, 15 Feb 2007 12:08:49 GMT (envelope-from nobody) Message-Id: <200702151208.l1FC8nVa008570@www.freebsd.org> Date: Thu, 15 Feb 2007 12:08:49 GMT From: Alex Keda To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: misc/109201: No manual entry for callbootd 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, 15 Feb 2007 12:10:09 -0000 >Number: 109201 >Category: misc >Synopsis: No manual entry for callbootd >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Thu Feb 15 12:10:03 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Alex Keda >Release: FreeBSD 6.2-RELEASE >Organization: USSR >Environment: FreeBSD lissyara.eliron.local 6.2-RELEASE FreeBSD 6.2-RELEASE #0: Wed Jan 31 11:52:10 MSK 2007 root@lissyara.eliron.local:/usr/obj/usr/src/sys/lissyara.eliron.local.2007-01-31 i386 >Description: # ll /usr/sbin/callbootd -r-xr-xr-x 1 root wheel 5,9K 12 янв 10:41 /usr/sbin/callbootd # man callbootd No manual entry for callbootd >How-To-Repeat: always >Fix: writting man? :) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu Feb 15 13:00:21 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 A8B8216A401 for ; Thu, 15 Feb 2007 13:00:21 +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 5488E13C4B2 for ; Thu, 15 Feb 2007 13:00:21 +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 l1FD0LJq028269 for ; Thu, 15 Feb 2007 13:00:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1FD0K2l028268; Thu, 15 Feb 2007 13:00:21 GMT (envelope-from gnats) Date: Thu, 15 Feb 2007 13:00:21 GMT Message-Id: <200702151300.l1FD0K2l028268@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: "Helmut Schneider" Cc: Subject: Re: kern/109165: hw.bge.fake_autoneg without effect X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Helmut Schneider List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Feb 2007 13:00:21 -0000 The following reply was made to PR kern/109165; it has been noted by GNATS. From: "Helmut Schneider" To: Cc: Subject: Re: kern/109165: hw.bge.fake_autoneg without effect Date: Thu, 15 Feb 2007 13:54:37 +0100 From: "Craig Rodrigues" > On Wed, Feb 14, 2007 at 02:00:24PM +0000, Helmut Schneider wrote: >> >How-To-Repeat: >> echo "hw.bge.fake_autoneg" >> /boot/loader.conf >> reboot > > Try to put this line in /boot/loader.conf: > hw.bge.fake_autoneg="1" DOH! "ifconfig_bgex=" in rc.conf is mandatory. A simple "dhclient bgex" does not work... Helmut, happy now. From owner-freebsd-bugs@FreeBSD.ORG Thu Feb 15 14: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 6DFE916A402; Thu, 15 Feb 2007 14: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 4355D13C461; Thu, 15 Feb 2007 14: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 l1FEDClg033392; Thu, 15 Feb 2007 14: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 l1FEDCo2033388; Thu, 15 Feb 2007 14:13:12 GMT (envelope-from remko) Date: Thu, 15 Feb 2007 14:13:12 GMT From: Remko Lodder Message-Id: <200702151413.l1FEDCo2033388@freefall.freebsd.org> To: remko@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-doc@FreeBSD.org Cc: Subject: Re: docs/109201: [request]: manual for callbootd 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, 15 Feb 2007 14:13:12 -0000 Old Synopsis: No manual entry for callbootd New Synopsis: [request]: manual for callbootd Responsible-Changed-From-To: freebsd-bugs->freebsd-doc Responsible-Changed-By: remko Responsible-Changed-When: Thu Feb 15 14:11:43 UTC 2007 Responsible-Changed-Why: Forward to the docs team since this is a request for a new manual page. http://www.freebsd.org/cgi/query-pr.cgi?pr=109201 From owner-freebsd-bugs@FreeBSD.ORG Thu Feb 15 16:31:08 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 8671316A469; Thu, 15 Feb 2007 16:31:08 +0000 (UTC) (envelope-from matteo@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5CFCB13C48E; Thu, 15 Feb 2007 16:31:08 +0000 (UTC) (envelope-from matteo@FreeBSD.org) Received: from freefall.freebsd.org (matteo@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1FGV8sE042233; Thu, 15 Feb 2007 16:31:08 GMT (envelope-from matteo@freefall.freebsd.org) Received: (from matteo@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1FGV7dt042227; Thu, 15 Feb 2007 16:31:07 GMT (envelope-from matteo) Date: Thu, 15 Feb 2007 16:31:07 GMT From: Matteo Riondato Message-Id: <200702151631.l1FGV7dt042227@freefall.freebsd.org> To: h-k@mail.ru, matteo@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: conf/99536: [UPDATE] /etc/pf.os to OpenBSD rev 1.20 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Feb 2007 16:31:08 -0000 Synopsis: [UPDATE] /etc/pf.os to OpenBSD rev 1.20 State-Changed-From-To: open->closed State-Changed-By: matteo State-Changed-When: Thu Feb 15 16:30:36 UTC 2007 State-Changed-Why: Fixed and MFC'ed 3 months ago http://www.freebsd.org/cgi/query-pr.cgi?pr=99536 From owner-freebsd-bugs@FreeBSD.ORG Thu Feb 15 16:31:18 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 0074616A407; Thu, 15 Feb 2007 16:31:17 +0000 (UTC) (envelope-from mi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id CC20A13C4AA; Thu, 15 Feb 2007 16:31:17 +0000 (UTC) (envelope-from mi@FreeBSD.org) Received: from freefall.freebsd.org (mi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1FGVHD0042250; Thu, 15 Feb 2007 16:31:17 GMT (envelope-from mi@freefall.freebsd.org) Received: (from mi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1FGVHIg042246; Thu, 15 Feb 2007 16:31:17 GMT (envelope-from mi) Date: Thu, 15 Feb 2007 16:31:17 GMT From: Mikhail Teterin Message-Id: <200702151631.l1FGVHIg042246@freefall.freebsd.org> To: mi@aldan.algebra.com, mi@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/105056: FS can not be remounted read-only, if a running process' executable was modified 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, 15 Feb 2007 16:31:18 -0000 Synopsis: FS can not be remounted read-only, if a running process' executable was modified State-Changed-From-To: closed->open State-Changed-By: mi State-Changed-When: Thu Feb 15 16:28:23 UTC 2007 State-Changed-Why: Correcting. Yes, there are open and running files on the partition, but they are open ONLY FOR READING (execution, actually). Thus a ``-o ro -u'' remount should succeed, yet it fails... http://www.freebsd.org/cgi/query-pr.cgi?pr=105056 From owner-freebsd-bugs@FreeBSD.ORG Thu Feb 15 16:46: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 E80B216A401; Thu, 15 Feb 2007 16:46:49 +0000 (UTC) (envelope-from matteo@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id BDD4913C428; Thu, 15 Feb 2007 16:46:49 +0000 (UTC) (envelope-from matteo@FreeBSD.org) Received: from freefall.freebsd.org (matteo@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1FGknJ1046214; Thu, 15 Feb 2007 16:46:49 GMT (envelope-from matteo@freefall.freebsd.org) Received: (from matteo@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1FGknwM046210; Thu, 15 Feb 2007 16:46:49 GMT (envelope-from matteo) Date: Thu, 15 Feb 2007 16:46:49 GMT From: Matteo Riondato Message-Id: <200702151646.l1FGknwM046210@freefall.freebsd.org> To: matteo@FreeBSD.org, freebsd-bugs@FreeBSD.org, fjoe@FreeBSD.org Cc: Subject: Re: bin/103500: [patch] mkuzip(1) enhancement to accept size of input file 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, 15 Feb 2007 16:46:50 -0000 Synopsis: [patch] mkuzip(1) enhancement to accept size of input file Responsible-Changed-From-To: freebsd-bugs-> fjoe Responsible-Changed-By: matteo Responsible-Changed-When: Thu Feb 15 16:45:57 UTC 2007 Responsible-Changed-Why: Assigno to fjoe@ as original uzip's writer http://www.freebsd.org/cgi/query-pr.cgi?pr=103500 From owner-freebsd-bugs@FreeBSD.ORG Thu Feb 15 19: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 0B89816A400 for ; Thu, 15 Feb 2007 19: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 DF69B13C4B4 for ; Thu, 15 Feb 2007 19:10: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 l1FJA57m056850 for ; Thu, 15 Feb 2007 19:10:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1FJA5th056849; Thu, 15 Feb 2007 19:10:05 GMT (envelope-from gnats) Resent-Date: Thu, 15 Feb 2007 19:10:05 GMT Resent-Message-Id: <200702151910.l1FJA5th056849@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, Gerd Rausch Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2174216A401 for ; Thu, 15 Feb 2007 19:08:20 +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 053A613C474 for ; Thu, 15 Feb 2007 19:08:20 +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 l1FJ8H0N058335 for ; Thu, 15 Feb 2007 19:08:17 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l1FJ8HAN058334; Thu, 15 Feb 2007 19:08:17 GMT (envelope-from nobody) Message-Id: <200702151908.l1FJ8HAN058334@www.freebsd.org> Date: Thu, 15 Feb 2007 19:08:17 GMT From: Gerd Rausch To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: misc/109206: setgroups with incomplete list if line exceeds 1kB 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, 15 Feb 2007 19:10:06 -0000 >Number: 109206 >Category: misc >Synopsis: setgroups with incomplete list if line exceeds 1kB >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: Thu Feb 15 19:10:05 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Gerd Rausch >Release: 6.1 >Organization: Juniper Networks >Environment: >Description: This is a bug in libc not handling group lines that exceed 1kB in size correctly. The group parsing functions start with a 1k buffer and increase it if there is need for more space in order to accommodate a line. Unfortunately, they do not reposition the file pointer so that when trying to read the line again with an increased buffer size , the groups that were supposed to be inclueded for a user did not get picked up. Fix is to re-position the stream if a situation occurs that we need more space (i.e. errno == ERANGE). >How-To-Repeat: >Fix: Patch attached with submission follows: Index: lib/libc/gen/getgrent.c =================================================================== RCS file: /cvs/junos-2001/src/lib/libc/gen/getgrent.c,v retrieving revision 1.3.68.2 diff -u -p -r1.3.68.2 getgrent.c --- lib/libc/gen/getgrent.c 24 Jun 2006 02:58:49 -0000 1.3.68.2 +++ lib/libc/gen/getgrent.c 14 Feb 2007 23:55:31 -0000 @@ -446,6 +446,8 @@ files_group(void *retval, void *mdata, v char *buffer; size_t bufsize, linesize; int rv, stayopen, *errnop; + fpos_t saved_pos; + int have_saved_pos; name = NULL; gid = (gid_t)-1; @@ -481,7 +483,10 @@ files_group(void *retval, void *mdata, v stayopen = st->stayopen; } rv = NS_NOTFOUND; - while ((line = fgetln(st->fp, &linesize)) != NULL) { + while (1) { + have_saved_pos = fgetpos(st->fp, &saved_pos) == 0; + if ((line = fgetln(st->fp, &linesize)) == NULL) + break; if (line[linesize-1] == '\n') linesize--; rv = __gr_match_entry(line, linesize, how, name, gid); @@ -503,6 +508,12 @@ files_group(void *retval, void *mdata, v if (rv & NS_TERMINATE) break; } + if (rv == NS_RETURN && *errnop == ERANGE) { + if (!have_saved_pos || fsetpos(st->fp, &saved_pos) != 0) { + *errnop = ESPIPE; + rv = NS_UNAVAIL; + } + } if (!stayopen && st->fp != NULL) { fclose(st->fp); st->fp = NULL; @@ -908,6 +919,8 @@ compat_group(void *retval, void *mdata, void *discard; size_t bufsize, linesize; int rv, stayopen, *errnop; + fpos_t saved_pos; + int have_saved_pos; #define set_lookup_type(x, y) do { \ int i; \ @@ -1010,7 +1023,10 @@ docompat: break; } rv = NS_NOTFOUND; - while ((line = fgetln(st->fp, &linesize)) != NULL) { + while (1) { + have_saved_pos = fgetpos(st->fp, &saved_pos) == 0; + if ((line = fgetln(st->fp, &linesize)) == NULL) + break; if (line[linesize-1] == '\n') linesize--; if (linesize > 2 && line[0] == '+') { @@ -1051,6 +1067,12 @@ docompat: if (rv & NS_TERMINATE) break; } + if (rv == NS_RETURN && *errnop == ERANGE) { + if (!have_saved_pos || fsetpos(st->fp, &saved_pos) != 0) { + *errnop = ESPIPE; + rv = NS_UNAVAIL; + } + } fin: if (!stayopen && st->fp != NULL) { fclose(st->fp); >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu Feb 15 19: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 5BEFF16A420 for ; Thu, 15 Feb 2007 19: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 3C5D113C471 for ; Thu, 15 Feb 2007 19: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 l1FJK56O057219 for ; Thu, 15 Feb 2007 19:20:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1FJK5Wh057218; Thu, 15 Feb 2007 19:20:05 GMT (envelope-from gnats) Resent-Date: Thu, 15 Feb 2007 19:20:05 GMT Resent-Message-Id: <200702151920.l1FJK5Wh057218@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, Nicholas Hockey Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 841EE16A4CC for ; Thu, 15 Feb 2007 19:15:51 +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 603C113C4B6 for ; Thu, 15 Feb 2007 19:15:51 +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 l1FJFpT4059457 for ; Thu, 15 Feb 2007 19:15:51 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l1FJFpCT059456; Thu, 15 Feb 2007 19:15:51 GMT (envelope-from nobody) Message-Id: <200702151915.l1FJFpCT059456@www.freebsd.org> Date: Thu, 15 Feb 2007 19:15:51 GMT From: Nicholas Hockey To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: misc/109207: ACPI Promlem 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, 15 Feb 2007 19:20:05 -0000 >Number: 109207 >Category: misc >Synopsis: ACPI Promlem >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: Thu Feb 15 19:20:04 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Nicholas Hockey >Release: 6-STABLE >Organization: >Environment: FreeBSD core 6.2-PRERELEASE FreeBSD 6.2-PRERELEASE #2: Sun Oct 15 22:36:12 EDT 2006 tilt@core:/usr/obj/usr/src/sys/CORE i386 >Description: When hw.acpi.sleep_button_state is set to S1 and i suspend my computer using acpiconf -s 5, on resume it freezes. I bealive it's trying to resume from a S1 state even though it was suspended to a S5 state. The reason i bealive this to be true is, when hw.acpi.sleep_button_state is set to S5 everything seems to work fine. Also when when i set either hw.acpi.power_button_state or hw.acpi.lid_switch_state to S5 everything seems to work fine either closing the lid or pressing the power button. sysctrl hw.acpi output: hw.acpi.supported_sleep_state: S1 S3 S4 S5 hw.acpi.power_button_state: S5 hw.acpi.sleep_button_state: S5 hw.acpi.lid_switch_state: NONE hw.acpi.standby_state: S1 hw.acpi.suspend_state: S3 hw.acpi.sleep_delay: 1 hw.acpi.s4bios: 1 hw.acpi.verbose: 0 hw.acpi.disable_on_reboot: 0 hw.acpi.handle_reboot: 0 hw.acpi.reset_video: 0 hw.acpi.cpu.cx_supported: C1/0 C2/50 hw.acpi.cpu.cx_lowest: C1 hw.acpi.cpu.cx_usage: 100.00% 0.00% hw.acpi.acline: 0 hw.acpi.battery.life: 40 hw.acpi.battery.time: 190 hw.acpi.battery.state: 1 hw.acpi.battery.units: 2 hw.acpi.battery.info_expire: 5 hw.acpi.video.crt0.active: 0 hw.acpi.video.lcd0.active: 1 hw.acpi.thermal.min_runtime: 0 hw.acpi.thermal.polling_rate: 10 hw.acpi.thermal.user_override: 0 hw.acpi.thermal.tz0.temperature: 25.0C hw.acpi.thermal.tz0.active: -1 hw.acpi.thermal.tz0.passive_cooling: 0 hw.acpi.thermal.tz0.thermal_flags: 0 hw.acpi.thermal.tz0._PSV: -1 hw.acpi.thermal.tz0._HOT: -1 hw.acpi.thermal.tz0._CRT: 78.0C hw.acpi.thermal.tz0._ACx: -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 >How-To-Repeat: Set hw.acpi.sleep_button_state to S1 use sysctrl -s 5 to suspend >Fix: if you want to use acpiconf -s to suspend the machine you MUST set hw.acpi.sleep_button_state to the same state prior to issuing the acpiconf command. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu Feb 15 19:40: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 E509F16A41F for ; Thu, 15 Feb 2007 19:40:29 +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 BDB9E13C461 for ; Thu, 15 Feb 2007 19:40:29 +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 l1FJeTVv059479 for ; Thu, 15 Feb 2007 19:40:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1FJeT5m059478; Thu, 15 Feb 2007 19:40:29 GMT (envelope-from gnats) Date: Thu, 15 Feb 2007 19:40:29 GMT Message-Id: <200702151940.l1FJeT5m059478@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: gerd@juniper.net Cc: Subject: Re: misc/109206: setgroups with incomplete list if line exceeds 1kB X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gerd@juniper.net List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Feb 2007 19:40:30 -0000 The following reply was made to PR misc/109206; it has been noted by GNATS. From: gerd@juniper.net To: bug-followup@FreeBSD.org Cc: Subject: Re: misc/109206: setgroups with incomplete list if line exceeds 1kB Date: Thu, 15 Feb 2007 11:23:37 -0800 (PST) Hi, I realized I made a booboo with regards to the PR: It should have been called "initgroups with incomplete list..." Of course, the system call setgroups is not affected by this. Thanks, Gerd From owner-freebsd-bugs@FreeBSD.ORG Thu Feb 15 19:44:54 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 A3CF816A400; Thu, 15 Feb 2007 19:44:54 +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 7D2F713C494; Thu, 15 Feb 2007 19:44:54 +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 l1FJisiw059752; Thu, 15 Feb 2007 19:44:54 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1FJisSs059748; Thu, 15 Feb 2007 19:44:54 GMT (envelope-from remko) Date: Thu, 15 Feb 2007 19:44:54 GMT From: Remko Lodder Message-Id: <200702151944.l1FJisSs059748@freefall.freebsd.org> To: remko@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-acpi@FreeBSD.org Cc: Subject: Re: misc/109207: ACPI Promlem 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, 15 Feb 2007 19:44:54 -0000 Synopsis: ACPI Promlem Responsible-Changed-From-To: freebsd-bugs->freebsd-acpi Responsible-Changed-By: remko Responsible-Changed-When: Thu Feb 15 19:44:53 UTC 2007 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=109207 From owner-freebsd-bugs@FreeBSD.ORG Thu Feb 15 19:52:43 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 5F12E16A402; Thu, 15 Feb 2007 19:52:43 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 37CA913C491; Thu, 15 Feb 2007 19:52:43 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from freefall.freebsd.org (maxim@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1FJqhao060081; Thu, 15 Feb 2007 19:52:43 GMT (envelope-from maxim@freefall.freebsd.org) Received: (from maxim@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1FJqhDS060077; Thu, 15 Feb 2007 19:52:43 GMT (envelope-from maxim) Date: Thu, 15 Feb 2007 19:52:43 GMT From: Maxim Konovalov Message-Id: <200702151952.l1FJqhDS060077@freefall.freebsd.org> To: gerd@juniper.net, maxim@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: misc/109206: setgroups with incomplete list if line exceeds 1kB 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, 15 Feb 2007 19:52:43 -0000 Synopsis: setgroups with incomplete list if line exceeds 1kB State-Changed-From-To: open->feedback State-Changed-By: maxim State-Changed-When: Thu Feb 15 19:52:20 UTC 2007 State-Changed-Why: I believe, I've already fixed this issue in HEAD and RELENG_6 (getgrent.c rev. 1.32.8.3). Please report back it it works for you. http://www.freebsd.org/cgi/query-pr.cgi?pr=109206 From owner-freebsd-bugs@FreeBSD.ORG Thu Feb 15 22:00: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 863AA16A400 for ; Thu, 15 Feb 2007 22:00: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 6955313C494 for ; Thu, 15 Feb 2007 22:00: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 l1FM0EQn068207 for ; Thu, 15 Feb 2007 22:00:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1FM0EsT068206; Thu, 15 Feb 2007 22:00:14 GMT (envelope-from gnats) Resent-Date: Thu, 15 Feb 2007 22:00:14 GMT Resent-Message-Id: <200702152200.l1FM0EsT068206@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, Erwin Hoffmann Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F289D16A402 for ; Thu, 15 Feb 2007 21:52: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 E4F1113C442 for ; Thu, 15 Feb 2007 21:52: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 l1FLq5RU090896 for ; Thu, 15 Feb 2007 21:52:05 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l1FLq5UP090893; Thu, 15 Feb 2007 21:52:05 GMT (envelope-from nobody) Message-Id: <200702152152.l1FLq5UP090893@www.freebsd.org> Date: Thu, 15 Feb 2007 21:52:05 GMT From: Erwin Hoffmann To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: misc/109210: gcc 3.4.6 is broken wrt -O2 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, 15 Feb 2007 22:00:14 -0000 >Number: 109210 >Category: misc >Synopsis: gcc 3.4.6 is broken wrt -O2 >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 Feb 15 22:00:13 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Erwin Hoffmann >Release: 6.2 >Organization: FEHCom >Environment: >Description: Hi, it has been reported, that "gcc -O2" is broken for gcc 3.4.6. The report has been forwarded to me, using my base64.c implemention on CentOS 4.4: John Simpson (John Simpson ): >How-To-Repeat: Compile and use qmail-1.03 + http://www.fehcom.de/qmail/auth/qmail-authentication-066_tgz.bin and http://www.fehcom.de/qmail/auth/qmail-authentication-065_tgz.bin and compare results. Version 0.66 includes fixes for gcc 3.4.6 incapabilities. >Fix: >Release-Note: >Audit-Trail: >Unformatted: >in your base64.c, in the b64decode() function, we find these lines: > >36 out->len = (n * 3) - p; >37 if (!stralloc_ready(out,out->len)) return -1; >38 s - out->s; > >the gcc compiler's "-O2" option does some strange things to this >code, and line 37 ends up setting out->len back to zero for some >reason, which ends up causing auth_plain() to return "malformed auth >input" in response to an AUTH PLAIN command. (it doesn't help that >stralloc_ready() is written as a macro and is therefore impossible to >debug directly.) >it's "gcc 3.4.6 20060404 (Red Hat 3.4.6-3)", which is the current >version for CentOS 4.4. This bug inhibits some former FreeBSD ports to be used on FreeBSD 6.2 (eg. mlwm). In addition it is claimed falsly (for this port), that the SW is broken for all FreeBSD 6.x releases, whereas mlwm works fine with FreeBSD 6.2. In fact, it is the gcc which generate the problem with those ports. Form my point of view, due the the gcc bug, FreeBSD is unusable. regards. --eh. From owner-freebsd-bugs@FreeBSD.ORG Fri Feb 16 00:06: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 2B5E916A400; Fri, 16 Feb 2007 00:06: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 066D213C442; Fri, 16 Feb 2007 00:06: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 l1G06S9Y075262; Fri, 16 Feb 2007 00:06:28 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1G06S8N075258; Fri, 16 Feb 2007 00:06:28 GMT (envelope-from linimon) Date: Fri, 16 Feb 2007 00:06:28 GMT From: Mark Linimon Message-Id: <200702160006.l1G06S8N075258@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, gerald@FreeBSD.org Cc: Subject: Re: ports/109210: gcc 3.4.6 is broken wrt -O2 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, 16 Feb 2007 00:06:29 -0000 Synopsis: gcc 3.4.6 is broken wrt -O2 Responsible-Changed-From-To: freebsd-bugs->gerald Responsible-Changed-By: linimon Responsible-Changed-When: Fri Feb 16 00:03:23 UTC 2007 Responsible-Changed-Why: Gerald, I'm not sure this is something that we can fix from our side, but can you take a look at it and evaluate? http://www.freebsd.org/cgi/query-pr.cgi?pr=109210 From owner-freebsd-bugs@FreeBSD.ORG Fri Feb 16 00:50: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 A735916A400 for ; Fri, 16 Feb 2007 00:50: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 7426313C4B4 for ; Fri, 16 Feb 2007 00:50: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 l1G0o7D6078805 for ; Fri, 16 Feb 2007 00:50:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1G0o7Fk078804; Fri, 16 Feb 2007 00:50:07 GMT (envelope-from gnats) Resent-Date: Fri, 16 Feb 2007 00:50:07 GMT Resent-Message-Id: <200702160050.l1G0o7Fk078804@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, werner fein Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6D8FA16A402 for ; Fri, 16 Feb 2007 00:41:22 +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 630BF13C4BA for ; Fri, 16 Feb 2007 00:41:22 +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 l1G0fM6p020407 for ; Fri, 16 Feb 2007 00:41:22 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l1G0fM2F020406; Fri, 16 Feb 2007 00:41:22 GMT (envelope-from nobody) Message-Id: <200702160041.l1G0fM2F020406@www.freebsd.org> Date: Fri, 16 Feb 2007 00:41:22 GMT From: werner fein To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: misc/109212: needless warnings at runtime with crypt::primes 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, 16 Feb 2007 00:50:07 -0000 >Number: 109212 >Category: misc >Synopsis: needless warnings at runtime with crypt::primes >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 16 00:50:06 GMT 2007 >Closed-Date: >Last-Modified: >Originator: werner fein >Release: 6.2 >Organization: - >Environment: FreeBSD laptop 6.2-RELEASE FreeBSD 6.2-RELEASE #0: Tue Jan 30 23:00:12 CET 2007 fein@laptop:/usr/obj/usr/src/sys/GENERIC i386 >Description: Using Crypt::Primes with strict & warnings in perl generates warnings at runtime, because perhaps $verbose isn't set. >How-To-Repeat: exec following lines as a perlscript: #!/usr/bin/perl -w use strict; use warnings; use Crypt::Primes; >Fix: the file here http://deknos.gbks.net/misc/Primes.pm.new is a corrected version, the warnings won't occur with this instead of the old Primes.pm >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Feb 16 04:36: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 7C03616A402; Fri, 16 Feb 2007 04:36:17 +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 59B4513C428; Fri, 16 Feb 2007 04:36:17 +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 l1G4aHIi093183; Fri, 16 Feb 2007 04:36:17 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1G4aHXZ093179; Fri, 16 Feb 2007 04:36:17 GMT (envelope-from linimon) Date: Fri, 16 Feb 2007 04:36:17 GMT From: Mark Linimon Message-Id: <200702160436.l1G4aHXZ093179@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, mharo@FreeBSD.org Cc: Subject: Re: ports/109212: security/p5-Crypt-Primes: needless warnings at runtime with crypt::primes 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, 16 Feb 2007 04:36:17 -0000 Old Synopsis: needless warnings at runtime with crypt::primes New Synopsis: security/p5-Crypt-Primes: needless warnings at runtime with crypt::primes Responsible-Changed-From-To: freebsd-bugs->mharo Responsible-Changed-By: linimon Responsible-Changed-When: Fri Feb 16 04:34:54 UTC 2007 Responsible-Changed-Why: Make this a ports PR and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=109212 From owner-freebsd-bugs@FreeBSD.ORG Fri Feb 16 08:38: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 19AF116A401; Fri, 16 Feb 2007 08:38:31 +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 E481813C441; Fri, 16 Feb 2007 08:38:30 +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 l1G8cUKR010178; Fri, 16 Feb 2007 08:38:30 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1G8cUYR010174; Fri, 16 Feb 2007 08:38:30 GMT (envelope-from linimon) Date: Fri, 16 Feb 2007 08:38:30 GMT From: Mark Linimon Message-Id: <200702160838.l1G8cUYR010174@freefall.freebsd.org> To: jumper99@gmx.de, linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/109165: [bge] hw.bge.fake_autoneg without effect 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, 16 Feb 2007 08:38:31 -0000 Synopsis: [bge] hw.bge.fake_autoneg without effect State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Fri Feb 16 08:38:20 UTC 2007 State-Changed-Why: Closed at submitter's request. http://www.freebsd.org/cgi/query-pr.cgi?pr=109165 From owner-freebsd-bugs@FreeBSD.ORG Fri Feb 16 09:00: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 1BAC916A400 for ; Fri, 16 Feb 2007 09:00: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 EE1FC13C4A7 for ; Fri, 16 Feb 2007 09:00:23 +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 l1G90NIL011656 for ; Fri, 16 Feb 2007 09:00:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1G90NZB011655; Fri, 16 Feb 2007 09:00:23 GMT (envelope-from gnats) Resent-Date: Fri, 16 Feb 2007 09:00:23 GMT Resent-Message-Id: <200702160900.l1G90NZB011655@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, "P. Chekov" Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B40F416A41F for ; Fri, 16 Feb 2007 08:57:21 +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 8B15C13C4B2 for ; Fri, 16 Feb 2007 08:57:21 +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 l1G8vLEn063798 for ; Fri, 16 Feb 2007 08:57:21 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l1G8vLkP063797; Fri, 16 Feb 2007 08:57:21 GMT (envelope-from nobody) Message-Id: <200702160857.l1G8vLkP063797@www.freebsd.org> Date: Fri, 16 Feb 2007 08:57:21 GMT From: "P. Chekov" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: conf/109219: Support IPX 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, 16 Feb 2007 09:00:24 -0000 >Number: 109219 >Category: conf >Synopsis: Support IPX >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Feb 16 09:00:23 GMT 2007 >Closed-Date: >Last-Modified: >Originator: P. Chekov >Release: 6.0 >Organization: RWTD >Environment: >Description: I have a Novell NetWare 5 network. How i can installing, configuring and up network interface (rl0) with IPX support? Is it possible mount NetWare 5 partition to FreeBSD partition? >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Feb 16 09:03:30 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 9695E16A408; Fri, 16 Feb 2007 09:03:30 +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 6CB9213C474; Fri, 16 Feb 2007 09:03:30 +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 l1G93U4G012005; Fri, 16 Feb 2007 09:03:30 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1G93UDb012001; Fri, 16 Feb 2007 09:03:30 GMT (envelope-from remko) Date: Fri, 16 Feb 2007 09:03:30 GMT From: Remko Lodder Message-Id: <200702160903.l1G93UDb012001@freefall.freebsd.org> To: ptch@europe.com, remko@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: conf/109219: Support IPX 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, 16 Feb 2007 09:03:30 -0000 Synopsis: Support IPX State-Changed-From-To: open->closed State-Changed-By: remko State-Changed-When: Fri Feb 16 09:03:29 UTC 2007 State-Changed-Why: Hello, this is a support question, please proceed to http://lists.freebsd.org/mailman/listinfo/freebsd-questions and ask your questions there. Thanks for using FreeBSD! http://www.freebsd.org/cgi/query-pr.cgi?pr=109219 From owner-freebsd-bugs@FreeBSD.ORG Fri Feb 16 11:00:19 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 2DF1716A4A1 for ; Fri, 16 Feb 2007 11:00:19 +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 0B34C13C471 for ; Fri, 16 Feb 2007 11:00:19 +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 l1GB0Ie2018927 for ; Fri, 16 Feb 2007 11:00:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1GB0I8C018914; Fri, 16 Feb 2007 11:00:18 GMT (envelope-from gnats) Resent-Date: Fri, 16 Feb 2007 11:00:18 GMT Resent-Message-Id: <200702161100.l1GB0I8C018914@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, Alex Keda Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1E12416A420 for ; Fri, 16 Feb 2007 10:58:35 +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 E79AC13C49D for ; Fri, 16 Feb 2007 10:58:34 +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 l1GAwY7H001330 for ; Fri, 16 Feb 2007 10:58:34 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l1GAwYMX001329; Fri, 16 Feb 2007 10:58:34 GMT (envelope-from nobody) Message-Id: <200702161058.l1GAwYMX001329@www.freebsd.org> Date: Fri, 16 Feb 2007 10:58:34 GMT From: Alex Keda To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: misc/109226: No manual entry for sntp 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, 16 Feb 2007 11:00:19 -0000 >Number: 109226 >Category: misc >Synopsis: No manual entry for sntp >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 16 11:00:14 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Alex Keda >Release: FreeBSD 6.2-RELEASE #0 >Organization: USSR >Environment: FreeBSD lissyara.eliron.local 6.2-RELEASE FreeBSD 6.2-RELEASE #0: Wed Jan 31 11:52:10 MSK 2007 root@lissyara.eliron.local:/usr/obj/usr/src/sys/lissyara.eliron.local.2007-01-31 i386 >Description: No manual entry for sntp >How-To-Repeat: always >Fix: writing man pages >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Feb 16 11:23: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 191C416A401; Fri, 16 Feb 2007 11:23: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 E321113C46B; Fri, 16 Feb 2007 11:23:33 +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 l1GBNXcn020037; Fri, 16 Feb 2007 11:23:33 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1GBNXWf020033; Fri, 16 Feb 2007 11:23:33 GMT (envelope-from linimon) Date: Fri, 16 Feb 2007 11:23:33 GMT From: Mark Linimon Message-Id: <200702161123.l1GBNXWf020033@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-doc@FreeBSD.org Cc: Subject: Re: docs/109226: No manual entry for sntp 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, 16 Feb 2007 11:23:34 -0000 Synopsis: No manual entry for sntp Responsible-Changed-From-To: freebsd-bugs->freebsd-doc Responsible-Changed-By: linimon Responsible-Changed-When: Fri Feb 16 11:23:21 UTC 2007 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=109226 From owner-freebsd-bugs@FreeBSD.ORG Fri Feb 16 12: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 A053016A420 for ; Fri, 16 Feb 2007 12: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 47FAC13C4A6 for ; Fri, 16 Feb 2007 12: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 l1GCU5Wv023426 for ; Fri, 16 Feb 2007 12:30:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1GCU5vw023425; Fri, 16 Feb 2007 12:30:05 GMT (envelope-from gnats) Resent-Date: Fri, 16 Feb 2007 12:30:05 GMT Resent-Message-Id: <200702161230.l1GCU5vw023425@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, Matthieu Guegan Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D63E316A400 for ; Fri, 16 Feb 2007 12:23:24 +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 C37BD13C481 for ; Fri, 16 Feb 2007 12:23:24 +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 l1GCNOke019107 for ; Fri, 16 Feb 2007 12:23:24 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l1GCNOrL019106; Fri, 16 Feb 2007 12:23:24 GMT (envelope-from nobody) Message-Id: <200702161223.l1GCNOrL019106@www.freebsd.org> Date: Fri, 16 Feb 2007 12:23:24 GMT From: Matthieu Guegan To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: kern/109227: ral(4) driver doesn't handle correctly RT2561C PCI chipsets - didn't 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: Fri, 16 Feb 2007 12:30:07 -0000 >Number: 109227 >Category: kern >Synopsis: ral(4) driver doesn't handle correctly RT2561C PCI chipsets - didn't work >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 16 12:30:05 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Matthieu Guegan >Release: 6.2-STABLE >Organization: >Environment: FreeBSD 6.2-STABLE #0: Fri Feb 16 13:03:52 CET 2007 BEASTIE-SMP i386 >Description: In 6.2-STABLE (16/02/2007) Tested with Dlink DWL-G510 rev C2 ( MAC/BPP RT2561C, RF RT2527 ) and with Ovislink Evo-W54PCI v.2 ( RT2561S ) PCI Cards After compiling and loading if_ral.ko module, the card appears correctly into /var/log/messages and ifconfig but doesn't work at all when trying to associate. When trying to scan AP ( ifconfig ral0 scan ) BSSID, CHAN RATE S:N INT and CAPS infos seems correct but NOT the SSID ( always SSID : 0 ) When trying to associate, status is still at "no carrier" In 7.0-CURRENT : All seems to work ( both scanning and association ) but _sometimes_ the card disassociate itself, and it's impossible to reassociate until reboot. On OpenBSD-4.1 : All works _perfectly_ Output of dmesg : ral0: MAC/BBP RT2561C, RF RT2527 ral0: Ethernet address: 00:19:5b:23:10:88 ral0: [GIANT-LOCKED] >How-To-Repeat: Just insert a RT2561* chipset into a fresh 6.2-STABLE install and try to load if_ral (as module or into the kernel) >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Feb 16 12:57:58 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 7904816A408; Fri, 16 Feb 2007 12:57:58 +0000 (UTC) (envelope-from philip@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 4F97813C46B; Fri, 16 Feb 2007 12:57:58 +0000 (UTC) (envelope-from philip@FreeBSD.org) Received: from freefall.freebsd.org (philip@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1GCvwvC029224; Fri, 16 Feb 2007 12:57:58 GMT (envelope-from philip@freefall.freebsd.org) Received: (from philip@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1GCvwHo029220; Fri, 16 Feb 2007 12:57:58 GMT (envelope-from philip) Date: Fri, 16 Feb 2007 12:57:58 GMT From: Philip Paeps Message-Id: <200702161257.l1GCvwHo029220@freefall.freebsd.org> To: philip@FreeBSD.org, freebsd-bugs@FreeBSD.org, philip@FreeBSD.org Cc: Subject: Re: kern/100683: [syscons] [patch] syscons screen savers can eat up to 75% of CPU 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, 16 Feb 2007 12:57:58 -0000 Synopsis: [syscons] [patch] syscons screen savers can eat up to 75% of CPU Responsible-Changed-From-To: freebsd-bugs->philip Responsible-Changed-By: philip Responsible-Changed-When: Fri Feb 16 12:57:55 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=100683 From owner-freebsd-bugs@FreeBSD.ORG Fri Feb 16 15:20: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 AA35916A41F for ; Fri, 16 Feb 2007 15:20: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 A433C13C49D for ; Fri, 16 Feb 2007 15: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 l1GFK5K2038218 for ; Fri, 16 Feb 2007 15:20:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1GFK5Og038217; Fri, 16 Feb 2007 15:20:05 GMT (envelope-from gnats) Resent-Date: Fri, 16 Feb 2007 15:20:05 GMT Resent-Message-Id: <200702161520.l1GFK5Og038217@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, Greg Ansley Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C141E16A408 for ; Fri, 16 Feb 2007 15:13:52 +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 98F0613C491 for ; Fri, 16 Feb 2007 15:13:52 +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 l1GFDqPw006018 for ; Fri, 16 Feb 2007 15:13:52 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l1GFDqi5006017; Fri, 16 Feb 2007 15:13:52 GMT (envelope-from nobody) Message-Id: <200702161513.l1GFDqi5006017@www.freebsd.org> Date: Fri, 16 Feb 2007 15:13:52 GMT From: Greg Ansley To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: kern/109232: [sio][patch] ibufsize calculation wrong causing data loss 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, 16 Feb 2007 15:20:09 -0000 >Number: 109232 >Category: kern >Synopsis: [sio][patch] ibufsize calculation wrong causing data loss >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 Feb 16 15:20:05 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Greg Ansley >Release: 6.1-RELEASE >Organization: Ansley & Associates, Inc. >Environment: FreeBSD anakin.telecine.com 6.1-RELEASE-p2 FreeBSD 6.1-RELEASE-p2 #7: Mon Sep 25 13:20:44 EDT 2006 gja@anakin.telecine.com:/usr/src/sys/i386/compile/ANAKIN i386 >Description: sio comwakeup time (sio_timeout) is limited to 200 hz (see siosettimeout()) but calculation for sio ibufsize uses hz which is now >> 200 hz causing insufficiently sized interrupt level sio buffers. This in turn causes lost incoming data and the kernel issues the "interrupt-level buffer overflow" message when receiving long strings of high speed (baud > 19200) data. Probalby has bearing on kern/26261 although I don't know when hz was raised above 200. >How-To-Repeat: Open serial port at > 19200 baud and recieve long (> 128 bytes) of continuous full speed data. >Fix: Index: sio.c sio.c:1929 Change: cp4ticks = speed / 10 / hz * 4; to cp4ticks = speed / 10 / (hz > 200 ? 200 : hz) * 4; >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Feb 16 16:10: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 91C0516A401 for ; Fri, 16 Feb 2007 16:10: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 520B913C442 for ; Fri, 16 Feb 2007 16:10:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1GGA1iK041130 for ; Fri, 16 Feb 2007 16:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1GGA19o041129; Fri, 16 Feb 2007 16:10:01 GMT (envelope-from gnats) Resent-Date: Fri, 16 Feb 2007 16:10:01 GMT Resent-Message-Id: <200702161610.l1GGA19o041129@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, David Glassman Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BD1A816A408 for ; Fri, 16 Feb 2007 16:06:39 +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 91E1313C47E for ; Fri, 16 Feb 2007 16:06:39 +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 l1GG6dBr013418 for ; Fri, 16 Feb 2007 16:06:39 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l1GG6dEU013417; Fri, 16 Feb 2007 16:06:39 GMT (envelope-from nobody) Message-Id: <200702161606.l1GG6dEU013417@www.freebsd.org> Date: Fri, 16 Feb 2007 16:06:39 GMT From: David Glassman To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: misc/109235: Need to get daylight savings time patch for Freebsd 3.x, 4.x, 5.x 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, 16 Feb 2007 16:10:01 -0000 >Number: 109235 >Category: misc >Synopsis: Need to get daylight savings time patch for Freebsd 3.x,4.x,5.x >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 16 16:10:00 GMT 2007 >Closed-Date: >Last-Modified: >Originator: David Glassman >Release: 3.x,4.x,5.x >Organization: Keuhne & Nagel >Environment: FreeBSD fwnau430.usco.com 4.1-RELEASE FreeBSD 4.1-RELEASE #0: Mon Nov 13 15:31:56 EST 2000 FreeBSD llral101.knleadlogistics.com 4.5-RELEASE FreeBSD 4.5-RELEASE #0 FreeBSD 4.4-RELEASE (FreeBSD44) #0 FreeBSD smtpasp0100.usco.com 4.7-RELEASE FreeBSD 4.7-RELEASE #0 >Description: We have several Freebsd systems which are production systems that need to have the daylight savings time patch applied. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Feb 16 16:21:43 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 7DD9C16A407; Fri, 16 Feb 2007 16:21:43 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 513B813C4A7; Fri, 16 Feb 2007 16:21:43 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from freefall.freebsd.org (brooks@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1GGLgoX041824; Fri, 16 Feb 2007 16:21:42 GMT (envelope-from brooks@freefall.freebsd.org) Received: (from brooks@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1GGLgRN041820; Fri, 16 Feb 2007 16:21:42 GMT (envelope-from brooks) Date: Fri, 16 Feb 2007 16:21:42 GMT From: Brooks Davis Message-Id: <200702161621.l1GGLgRN041820@freefall.freebsd.org> To: david.glassman@kuehne-nagel.com, brooks@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: misc/109235: Need to get daylight savings time patch for Freebsd 3.x, 4.x, 5.x 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, 16 Feb 2007 16:21:43 -0000 Synopsis: Need to get daylight savings time patch for Freebsd 3.x,4.x,5.x State-Changed-From-To: open->closed State-Changed-By: brooks State-Changed-When: Fri Feb 16 16:19:56 UTC 2007 State-Changed-Why: Install the latest version of the misc/zoneinfo port and then run tzsetup to update /etc/localtime. Alterntivly upgrade to 4-STABLE or a supported release. Note that the PR system is not the correct place for support questions. The freebsd-questions mailing list would be a better choice in the future. http://www.freebsd.org/cgi/query-pr.cgi?pr=109235 From owner-freebsd-bugs@FreeBSD.ORG Fri Feb 16 16:45: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 A6BB816A406; Fri, 16 Feb 2007 16:45:55 +0000 (UTC) (envelope-from matteo@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 79DDF13C494; Fri, 16 Feb 2007 16:45:55 +0000 (UTC) (envelope-from matteo@FreeBSD.org) Received: from freefall.freebsd.org (matteo@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1GGjtMH045480; Fri, 16 Feb 2007 16:45:55 GMT (envelope-from matteo@freefall.freebsd.org) Received: (from matteo@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1GGjtpG045476; Fri, 16 Feb 2007 16:45:55 GMT (envelope-from matteo) Date: Fri, 16 Feb 2007 16:45:55 GMT From: Matteo Riondato Message-Id: <200702161645.l1GGjtpG045476@freefall.freebsd.org> To: pieter@degoeje.nl, matteo@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: bin/94154: [sysinstall] [patch] add release and architecture to title of main menu 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, 16 Feb 2007 16:45:55 -0000 Synopsis: [sysinstall] [patch] add release and architecture to title of main menu State-Changed-From-To: open->closed State-Changed-By: matteo State-Changed-When: Fri Feb 16 16:44:43 UTC 2007 State-Changed-Why: simon@ fixed this feature request four monthes ago by committing a patch based on 100309 http://www.freebsd.org/cgi/query-pr.cgi?pr=94154 From owner-freebsd-bugs@FreeBSD.ORG Fri Feb 16 18:56: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 8AFF116A400; Fri, 16 Feb 2007 18:56:05 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5014A13C494; Fri, 16 Feb 2007 18:56:05 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from freefall.freebsd.org (kris@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1GIu5eZ052803; Fri, 16 Feb 2007 18:56:05 GMT (envelope-from kris@freefall.freebsd.org) Received: (from kris@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1GIu5CP052799; Fri, 16 Feb 2007 18:56:05 GMT (envelope-from kris) Date: Fri, 16 Feb 2007 18:56:05 GMT From: Kris Kennaway Message-Id: <200702161856.l1GIu5CP052799@freefall.freebsd.org> To: kris@FreeBSD.org, freebsd-bugs@FreeBSD.org, imp@FreeBSD.org Cc: Subject: Re: kern/109232: [sio][patch] ibufsize calculation wrong causing data loss 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, 16 Feb 2007 18:56:05 -0000 Synopsis: [sio][patch] ibufsize calculation wrong causing data loss Responsible-Changed-From-To: freebsd-bugs->imp Responsible-Changed-By: kris Responsible-Changed-When: Fri Feb 16 18:55:48 UTC 2007 Responsible-Changed-Why: imp has expressed interest in this PR http://www.freebsd.org/cgi/query-pr.cgi?pr=109232 From owner-freebsd-bugs@FreeBSD.ORG Fri Feb 16 20: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 51A8E16A402 for ; Fri, 16 Feb 2007 20: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 133D513C47E for ; Fri, 16 Feb 2007 20: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 l1GKo1Fa061083 for ; Fri, 16 Feb 2007 20:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1GKo1YV061082; Fri, 16 Feb 2007 20:50:01 GMT (envelope-from gnats) Resent-Date: Fri, 16 Feb 2007 20:50:01 GMT Resent-Message-Id: <200702162050.l1GKo1YV061082@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, Gustavo Pérez Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 57FF316A401 for ; Fri, 16 Feb 2007 20:43:43 +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 44C8F13C441 for ; Fri, 16 Feb 2007 20:43:43 +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 l1GKhhgr034661 for ; Fri, 16 Feb 2007 20:43:43 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l1GKhhDb034660; Fri, 16 Feb 2007 20:43:43 GMT (envelope-from nobody) Message-Id: <200702162043.l1GKhhDb034660@www.freebsd.org> Date: Fri, 16 Feb 2007 20:43:43 GMT From: Gustavo Pérez To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: misc/109244: [UPDATE PORT] brutalchess to 0.5.2 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Feb 2007 20:50:02 -0000 >Number: 109244 >Category: misc >Synopsis: [UPDATE PORT] brutalchess to 0.5.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 16 20:50:01 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Gustavo Pérez >Release: 6.2 >Organization: UPC >Environment: FreeBSD portatil 6.2-STABLE FreeBSD 6.2-STABLE #1: Thu Jan 18 09:29:43 CET 2007 gperez@portatil:/usr/src/sys/i386/compile/CUSTOM i386 >Description: Update to version 0.5.2 Changed-files : - Makefile - distinfo >How-To-Repeat: >Fix: diff -ruN brutalchess.old/Makefile brutalchess/Makefile --- brutalchess.old/Makefile Fri Feb 16 21:31:13 2007 +++ brutalchess/Makefile Fri Feb 16 21:31:28 2007 @@ -6,7 +6,7 @@ # PORTNAME= brutalchess -PORTVERSION= 0.5.1 +PORTVERSION= 0.5.2 CATEGORIES= games MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} diff -ruN brutalchess.old/distinfo brutalchess/distinfo --- brutalchess.old/distinfo Fri Feb 16 21:31:20 2007 +++ brutalchess/distinfo Fri Feb 16 21:31:33 2007 @@ -1,3 +1,3 @@ -MD5 (brutalchess-alpha-0.5.1-src.tar.gz) = f600fd6181f7c69935dc4207aeb3a266 -SHA256 (brutalchess-alpha-0.5.1-src.tar.gz) = c265e88e51b8813e0b9e7daebec8b9af80da91be92b3d0fde7aad4983daf2922 -SIZE (brutalchess-alpha-0.5.1-src.tar.gz) = 7342080 +MD5 (brutalchess-alpha-0.5.2-src.tar.gz) = 370476b63091b8d82a9ea57c604dcbab +SHA256 (brutalchess-alpha-0.5.2-src.tar.gz) = 67774ffb4865e1a3015c90e5d4abd0ef2f243c85608cfbec4bc3b59462e67622 +SIZE (brutalchess-alpha-0.5.2-src.tar.gz) = 4505686 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Feb 16 21:30: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 4CF2D16A407 for ; Fri, 16 Feb 2007 21:30: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 11A7C13C474 for ; Fri, 16 Feb 2007 21:30: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 l1GLU3YB063098 for ; Fri, 16 Feb 2007 21:30:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1GLU3cf063097; Fri, 16 Feb 2007 21:30:03 GMT (envelope-from gnats) Resent-Date: Fri, 16 Feb 2007 21:30:03 GMT Resent-Message-Id: <200702162130.l1GLU3cf063097@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, Ingo Flaschberger Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5E5BD16A406 for ; Fri, 16 Feb 2007 21:23: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 4BD1613C4B7 for ; Fri, 16 Feb 2007 21:23: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 l1GLNmKV040433 for ; Fri, 16 Feb 2007 21:23:48 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l1GLNmrZ040432; Fri, 16 Feb 2007 21:23:48 GMT (envelope-from nobody) Message-Id: <200702162123.l1GLNmrZ040432@www.freebsd.org> Date: Fri, 16 Feb 2007 21:23:48 GMT From: Ingo Flaschberger To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: kern/109246: ICMP rejects are not generated with fastforwarding enabled 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, 16 Feb 2007 21:30:04 -0000 >Number: 109246 >Category: kern >Synopsis: ICMP rejects are not generated with fastforwarding enabled >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: Fri Feb 16 21:30:03 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Ingo Flaschberger >Release: 6.1-RELEASE-p12 >Organization: >Environment: i386 >Description: In the routingtable is a blackhole reject route: Destination Gateway Flags Refs Use Netif Expire 192.168.0/16 127.0.0.1 UGR1 0 0 lo0 With fastforwarding disabled, a ICMP reject is generated: traceroute to 192.168.200.1 (192.168.200.1), 30 hops max, 38 byte packets 1 10.0.0.175 (10.0.0.175) 2.752 ms 0.231 ms 0.208 ms 2 10.0.0.175 (10.0.0.175) 0.224 ms !H 0.187 ms !H 0.193 ms !H With fastforwarding enabled, not: traceroute to 192.168.200.1 (192.168.200.1), 30 hops max, 38 byte packets 1 10.0.0.175 (10.0.0.175) 0.620 ms 0.214 ms 0.142 ms 2 * * * 3 * * * 4 * * * >How-To-Repeat: No problem: At the router: sysctl -w net.inet.ip.forwarding=1 route add -net 192.168.0.0/8 lo0 -reject -nostatic -proto1 At another machine: route add -net 192.168.100.0/24 gateway traceroute 192.168.101.1 Problem: At the router: sysctl -w net.inet.ip.fastforwarding=1 At another machine: traceroute 192.168.101.1 >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Feb 16 21:56: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 3F11016A400; Fri, 16 Feb 2007 21:56:12 +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 13FAB13C491; Fri, 16 Feb 2007 21:56:12 +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 l1GLuB0x065768; Fri, 16 Feb 2007 21:56:11 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1GLuBkJ065764; Fri, 16 Feb 2007 21:56:11 GMT (envelope-from linimon) Date: Fri, 16 Feb 2007 21:56:11 GMT From: Mark Linimon Message-Id: <200702162156.l1GLuBkJ065764@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/109244: [UPDATE] games/brutalchess to 0.5.2 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Feb 2007 21:56:12 -0000 Old Synopsis: [UPDATE PORT] brutalchess to 0.5.2 New Synopsis: [UPDATE] games/brutalchess to 0.5.2 Class-Changed-From-To: sw-bug->maintainer-update Class-Changed-By: linimon Class-Changed-When: Fri Feb 16 21:54:38 UTC 2007 Class-Changed-Why: Fix category, class, synopsis, and assign properly. Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Fri Feb 16 21:54:38 UTC 2007 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=109244 From owner-freebsd-bugs@FreeBSD.ORG Fri Feb 16 22:32:13 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 C57FE16A402; Fri, 16 Feb 2007 22:32:13 +0000 (UTC) (envelope-from bde@zeta.org.au) Received: from mailout1.pacific.net.au (mailout1-3.pacific.net.au [61.8.2.210]) by mx1.freebsd.org (Postfix) with ESMTP id 587BB13C48E; Fri, 16 Feb 2007 22:32:13 +0000 (UTC) (envelope-from bde@zeta.org.au) Received: from mailproxy1.pacific.net.au (mailproxy1.pacific.net.au [61.8.2.162]) by mailout1.pacific.net.au (Postfix) with ESMTP id DFB285A7CE3; Sat, 17 Feb 2007 09:32:11 +1100 (EST) Received: from epsplex.bde.org (katana.zip.com.au [61.8.7.246]) by mailproxy1.pacific.net.au (Postfix) with ESMTP id 24F358C11; Sat, 17 Feb 2007 09:32:10 +1100 (EST) Date: Sat, 17 Feb 2007 09:32:08 +1100 (EST) From: Bruce Evans X-X-Sender: bde@epsplex.bde.org To: Greg Ansley In-Reply-To: <200702161513.l1GFDqi5006017@www.freebsd.org> Message-ID: <20070217093159.K705@epsplex.bde.org> References: <200702161513.l1GFDqi5006017@www.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-bugs@freebsd.org, freebsd-gnats-submit@freebsd.org Subject: Re: kern/109232: [sio][patch] ibufsize calculation wrong causing data loss 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, 16 Feb 2007 22:32:13 -0000 On Fri, 16 Feb 2007, Greg Ansley wrote: >> Description: > sio comwakeup time (sio_timeout) is limited to 200 hz (see siosettimeout()) but calculation for sio ibufsize uses hz which is now >> 200 hz causing insufficiently sized interrupt level sio buffers. This in turn causes lost incoming data and the kernel issues the "interrupt-level buffer overflow" message when receiving long strings of high speed (baud > 19200) data. The problem is actually a little different: - the timeout is normally limited to 1 second and is not normally used (except in FreeBSD-1 and maybe FreeBSD-2). It is used mainly for for polling (when polling is enabled on some sio device, the timeout is scalled by hz but limited to 200 Hz) but the polling case is broken in other ways. - ibufsize is limited from below to 128. This should be plenty for low speeds up to 57600 bps, and should barely work at the low speed of 115200 bps too. 128 character times at 115200 bps = 11.1111 msec, so the system only needs to have a worst-case tty software interrupt latency of than 11.1111 msec to avoid interrupt-level buffer overruns. However, the broken interrupt latency in RELENG_[5-7] is apparently worse than that in some cases, and the calculation of ibufsize is supposed to be leaving a safety margin of a factor of 4. - A period of 11.1111 msec is a frequency of just 90 Hz. The system also needs a worst-case _clock_ software interrupt latency of slightly better than that just to keep up with the old default HZ of 100. Both the clock software interrupt handler (SWI) and the tty SWI have some Giant locking, so they can't actually keep up with that in all cases, even on very fast CPUs. The default for HZ is now 10 times larger, so there are many more cases in which the system can't actually keep up. This is not usually a problem, provided the CPU is not very slow -- the system can keep up in most cases, and the other cases work provided everything uses enormous buffers or doesn't mind dropping i/o. - the calculation of ibufsize is written under the naive assumption that the _clock_ interrupt handler can actually keep up with HZ. Note that sio is essentially independent of HZ. The calculation just uses hz as a hint of what the system can keep up with. The tty SWI has a higher priority than the clock SWI. Thus if the clock SWI can keep up with HZ, the tty SWI can keep up too. At least before RELENG_5. With mutex locking, priority inversion is possible; also, it is possible for the clock SWI to not have any Giant locking, while the tty SWI always has it; thus the clock SWI might be less limited by Giant locking than the tty SWI. I think that in practice the priorities don't affect this problem much, but Giant locking does, and that the clock SWI normally blocks at least once on Giant, and that it only takes one long blockage on Giant in the clock SWI to destroy its worst-case latency in the same way as for the tty SWI. > Probalby has bearing on kern/26261 although I don't know when hz was raised above 200. kern/26261 seems to be mostly about lower-level problems. Some of these problems are smaller now that "fast" interrupt handlers can be shared. Some of them are larger since shared interrupt handlers can only be "fast", unless they cooperate with each other (using a scheduler a bit like the one used for DEVICE_POLLING), but the sio interrupt handler works best when it is fast. >> How-To-Repeat: > Open serial port at > 19200 baud and recieve long (> 128 bytes) of continuous full speed data. >> Fix: > Index: sio.c > sio.c:1929 > > Change: > cp4ticks = speed / 10 / hz * 4; > to > cp4ticks = speed / 10 / (hz > 200 ? 200 : hz) * 4; The 200 shouldn't be used here, except possibly in the polling case. I previously suggested bumping the factor of 4 safety margin to a factor of 40. This is also not quite right. Since memory is now plentiful and hz is only indirectly relevant, it might be best to make the buffer size independent of hz. E.g., scale it for hz = 10 or hz = 1, since no one should set hz that low. The tty layer already does this. IIRC, it uses a size of (1 second's worth of data) + 2 * ibufsize It needs a reserve of (2 * ibufsize) since the ibuf level may want to add up to ibufsize characters to it on short notice. The factor is 2 instead of 1 to support spacing of watermarks sufficient for flow control. This shows that 1 second's worth of buffering in ibuf would be too much -- it would almost triple the size of the ttybuf. 1/10 second's worth would be OK. ibuf needs a similar reserve adding up to characters to it at short notice. This is currently only handled indirectly via the factor of 4. Some UARTs have an rx fifo size of 128 or 256, but it is currently a confguration error to use these since using sizes >= 16 has only small possible positive benefits and has negative benefits in practice since sio's watermark processing is not quite right for larger sizes. In particular, the watermark/ flow control stuff is more primitive than in the tty layer, but for large rx fifos it needs to be similar. So I suggest changing cp4ticks = speed / 10 / hz * 4; to cp4ticks = speed / 10 / 10; and renaming the variable and adjusting comments, since hz, ticks and 4 are no longer involved. The wastage would be small since the tty layer already uses huge buffers. (However, the tty layer uses dynamic allocation while ibuf is malloced. The complexities for dynamic allocation are silly given plentiful memory. The tty subsystem only has small memory requirements, but it manages its memory as if its requirements were relatively large, like they were 30 years ago. Its 30-year old memory allocation scheme was replaced 15 years in 386BSD, but came back.) I use HZ = 100 without the above change (but with timeouts used again, and the 200 in siosettimeout() adjusted to 1000) and haven't seen this problem at any speed <= 921600 bps. Bruce From owner-freebsd-bugs@FreeBSD.ORG Fri Feb 16 23:05: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 BABA616A402; Fri, 16 Feb 2007 23:05:09 +0000 (UTC) (envelope-from mpp@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 92A8913C491; Fri, 16 Feb 2007 23:05:09 +0000 (UTC) (envelope-from mpp@FreeBSD.org) Received: from freefall.freebsd.org (mpp@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1GN59fN069950; Fri, 16 Feb 2007 23:05:09 GMT (envelope-from mpp@freefall.freebsd.org) Received: (from mpp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1GN58Jt069946; Fri, 16 Feb 2007 23:05:08 GMT (envelope-from mpp) Date: Fri, 16 Feb 2007 23:05:08 GMT From: Mike Pritchard Message-Id: <200702162305.l1GN58Jt069946@freefall.freebsd.org> To: hsu@bbnetworks.net, mpp@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: bin/33235: find terminates with "find: fts_read: Permission denied" 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, 16 Feb 2007 23:05:09 -0000 Synopsis: find terminates with "find: fts_read: Permission denied" State-Changed-From-To: closed->open State-Changed-By: mpp State-Changed-When: Fri Feb 16 22:53:37 UTC 2007 State-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=33235 From owner-freebsd-bugs@FreeBSD.ORG Fri Feb 16 23:32:57 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 AC27116A406; Fri, 16 Feb 2007 23:32:57 +0000 (UTC) (envelope-from mpp@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 84EA613C47E; Fri, 16 Feb 2007 23:32:57 +0000 (UTC) (envelope-from mpp@FreeBSD.org) Received: from freefall.freebsd.org (mpp@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1GNWvRd072089; Fri, 16 Feb 2007 23:32:57 GMT (envelope-from mpp@freefall.freebsd.org) Received: (from mpp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1GNWvCc072085; Fri, 16 Feb 2007 23:32:57 GMT (envelope-from mpp) Date: Fri, 16 Feb 2007 23:32:57 GMT From: Mike Pritchard Message-Id: <200702162332.l1GNWvCc072085@freefall.freebsd.org> To: hsu@bbnetworks.net, mpp@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: bin/33235: find terminates with "find: fts_read: Permission denied" 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, 16 Feb 2007 23:32:57 -0000 Synopsis: find terminates with "find: fts_read: Permission denied" State-Changed-From-To: open->closed State-Changed-By: mpp State-Changed-When: Fri Feb 16 23:24:31 UTC 2007 State-Changed-Why: This problem happens if the underlying directory for a mount point does not have world read/execute permission. find -s will fail when it is done with the directory tree for that mount point. Unmounting the file system and fixing the permissions on the underlying directory fixes this problem. http://www.freebsd.org/cgi/query-pr.cgi?pr=33235 From owner-freebsd-bugs@FreeBSD.ORG Fri Feb 16 23:33:03 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 1A69A16A408 for ; Fri, 16 Feb 2007 23:33:03 +0000 (UTC) (envelope-from mpp@mppsystems.com) Received: from mail.mppsystems.com (mppsystems.com [208.210.148.205]) by mx1.freebsd.org (Postfix) with ESMTP id E8D6513C48E for ; Fri, 16 Feb 2007 23:33:02 +0000 (UTC) (envelope-from mpp@mppsystems.com) Received: by mail.mppsystems.com (Postfix, from userid 1000) id E04DE115F9; Fri, 16 Feb 2007 17:08:28 -0600 (CST) Date: Fri, 16 Feb 2007 17:08:28 -0600 From: Mike Pritchard To: Mike Pritchard Message-ID: <20070216230828.GA46899@mail.mppsystems.com> References: <200702162305.l1GN58Jt069946@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200702162305.l1GN58Jt069946@freefall.freebsd.org> User-Agent: mutt-ng/devel-r804 (FreeBSD) Cc: hsu@bbnetworks.net, freebsd-bugs@FreeBSD.org Subject: Re: bin/33235: find terminates with "find: fts_read: Permission denied" 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, 16 Feb 2007 23:33:03 -0000 On Fri, Feb 16, 2007 at 11:05:08PM +0000, Mike Pritchard wrote: > Synopsis: find terminates with "find: fts_read: Permission denied" > > State-Changed-From-To: closed->open > State-Changed-By: mpp > State-Changed-When: Fri Feb 16 22:53:37 UTC 2007 > State-Changed-Why: Gnats didn't give me a chance to abort... but was re-opening because I'm seeing this problem on 7.0-current but saw another PR that may explain it and was going to reboot first to test the idea in that PR first. -- Mike Pritchard mpp @ mppsystems.com or mpp @ FreeBSD.org "If tyranny and oppression come to this land, it will be in the guise of fighting a foreign enemy." - James Madison (1787) From owner-freebsd-bugs@FreeBSD.ORG Sat Feb 17 05:40: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 8FE7C16A406 for ; Sat, 17 Feb 2007 05:40: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 5B90513C441 for ; Sat, 17 Feb 2007 05:40: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 l1H5e6jC098276 for ; Sat, 17 Feb 2007 05:40:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1H5e67K098275; Sat, 17 Feb 2007 05:40:06 GMT (envelope-from gnats) Resent-Date: Sat, 17 Feb 2007 05:40:06 GMT Resent-Message-Id: <200702170540.l1H5e67K098275@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Pete Carah Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 04A2316A409 for ; Sat, 17 Feb 2007 05:30:07 +0000 (UTC) (envelope-from root@port3.altadena.net) Received: from kestrel.altadena.net (kestrel.altadena.net [207.136.131.34]) by mx1.freebsd.org (Postfix) with ESMTP id CBD1813C4B8 for ; Sat, 17 Feb 2007 05:30:06 +0000 (UTC) (envelope-from root@port3.altadena.net) Received: from c-69-143-147-7.hsd1.md.comcast.net ([69.143.147.7] helo=port3.altadena.net) by kestrel.altadena.net with esmtps (TLSv1:AES256-SHA:256) (Exim 4.65) (envelope-from ) id 1HIHqV-000K1v-Lx for FreeBSD-gnats-submit@freebsd.org; Fri, 16 Feb 2007 21:10:51 -0800 Received: from root by port3.altadena.net with local (Exim 4.63) (envelope-from ) id 1HIHqU-0000NA-6i for FreeBSD-gnats-submit@freebsd.org; Sat, 17 Feb 2007 00:10:50 -0500 Message-Id: Date: Sat, 17 Feb 2007 00:10:50 -0500 From: Pete Carah To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/109251: if_re cardbus card won't attach X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Feb 2007 05:40:06 -0000 >Number: 109251 >Category: kern >Synopsis: if_re cardbus card won't attach >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 Feb 17 05:40:03 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Pete Carah >Release: FreeBSD 6.2-STABLE i386 >Organization: Altadena Internet >Environment: System: FreeBSD port3.altadena.net 6.2-STABLE FreeBSD 6.2-STABLE #10: Thu Feb 15 10:30:29 EST 2007 pete@port3.altadena.net:/usr/obj/usr/src/sys/PORT3 i386 >Description: Cardbus if_re (netgear GA511) won't attach with message "couldn't set up irq". Cardbus (at least in this Compaq) doesn't support INTR_FAST. >How-To-Repeat: Insert GA511 card, look at dmesg >Fix: --- if_re.c.orig Thu Feb 1 19:48:55 2007 +++ if_re.c Fri Feb 16 23:55:54 2007 @@ -1292,6 +1292,10 @@ /* Hook interrupt last to avoid having to lock softc */ error = bus_setup_intr(dev, sc->rl_irq, INTR_TYPE_NET | INTR_MPSAFE | INTR_FAST, re_intr, sc, &sc->rl_intrhand); + /* FAST won't work on a cardbus card, so try without it. + I leave previous call in case it is a real PCI card */ + if (error) + error = bus_setup_intr(dev, sc->rl_irq, INTR_TYPE_NET | + INTR_MPSAFE, re_intr, sc, &sc->rl_intrhand); if (error) { device_printf(dev, "couldn't set up irq\n"); ether_ifdetach(ifp); >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Feb 17 09:37:59 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 65D4916A407; Sat, 17 Feb 2007 09:37:59 +0000 (UTC) (envelope-from matteo@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 3CA5413C428; Sat, 17 Feb 2007 09:37:59 +0000 (UTC) (envelope-from matteo@FreeBSD.org) Received: from freefall.freebsd.org (matteo@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1H9bxCg014834; Sat, 17 Feb 2007 09:37:59 GMT (envelope-from matteo@freefall.freebsd.org) Received: (from matteo@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1H9bwjG014830; Sat, 17 Feb 2007 09:37:58 GMT (envelope-from matteo) Date: Sat, 17 Feb 2007 09:37:58 GMT From: Matteo Riondato Message-Id: <200702170937.l1H9bwjG014830@freefall.freebsd.org> To: waldeck@gmx.de, matteo@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/106022: The kernel 2006-11 does NOT work well with the powerd. 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, 17 Feb 2007 09:37:59 -0000 Synopsis: The kernel 2006-11 does NOT work well with the powerd. State-Changed-From-To: open->feedback State-Changed-By: matteo State-Changed-When: Sat Feb 17 09:37:33 UTC 2007 State-Changed-Why: Are you still having this issue? http://www.freebsd.org/cgi/query-pr.cgi?pr=106022 From owner-freebsd-bugs@FreeBSD.ORG Sat Feb 17 11:14: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 E607016A407; Sat, 17 Feb 2007 11:14:12 +0000 (UTC) (envelope-from matteo@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id BAAFF13C46B; Sat, 17 Feb 2007 11:14:12 +0000 (UTC) (envelope-from matteo@FreeBSD.org) Received: from freefall.freebsd.org (matteo@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1HBEALo019997; Sat, 17 Feb 2007 11:14:10 GMT (envelope-from matteo@freefall.freebsd.org) Received: (from matteo@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1HBEA8J019993; Sat, 17 Feb 2007 11:14:10 GMT (envelope-from matteo) Date: Sat, 17 Feb 2007 11:14:10 GMT From: Matteo Riondato Message-Id: <200702171114.l1HBEA8J019993@freefall.freebsd.org> To: matteo@FreeBSD.org, freebsd-bugs@FreeBSD.org, matteo@FreeBSD.org Cc: Subject: Re: bin/104689: [patch] powerd(8): add support for limiting cpu frequency on adaptive 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: Sat, 17 Feb 2007 11:14:13 -0000 Synopsis: [patch] powerd(8): add support for limiting cpu frequency on adaptive mode Responsible-Changed-From-To: freebsd-bugs->matteo Responsible-Changed-By: matteo Responsible-Changed-When: Sat Feb 17 11:13:51 UTC 2007 Responsible-Changed-Why: I'll take care of this. http://www.freebsd.org/cgi/query-pr.cgi?pr=104689 From owner-freebsd-bugs@FreeBSD.ORG Sat Feb 17 13:00:34 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 77E4F16A479 for ; Sat, 17 Feb 2007 13:00:34 +0000 (UTC) (envelope-from vermaden@interia.pl) Received: from smtp4.poczta.interia.pl (smtp33.poczta.interia.pl [80.48.65.33]) by mx1.freebsd.org (Postfix) with ESMTP id CC88E13C4B2 for ; Sat, 17 Feb 2007 13:00:33 +0000 (UTC) (envelope-from vermaden@interia.pl) Received: by smtp4.poczta.interia.pl (INTERIA.PL, from userid 502) id C1BF8D260C; Sat, 17 Feb 2007 13:33:21 +0100 (CET) Received: from poczta.interia.pl (f45.poczta.interia.pl [10.217.2.45]) by smtp4.poczta.interia.pl (INTERIA.PL) with ESMTP id 491C6D25DB for ; Sat, 17 Feb 2007 13:33:21 +0100 (CET) Received: by poczta.interia.pl (Postfix, from userid 502) id 01EDB78591; Sat, 17 Feb 2007 13:33:21 +0100 (CET) Received: from localhost (localhost.interia.pl [127.0.0.1]) by poczta.interia.pl (Postfix) with ESMTP id CF50D7858E for ; Sat, 17 Feb 2007 13:33:20 +0100 (CET) Date: 17 Feb 2007 13:33:20 +0100 From: vermaden To: freebsd-bugs@freebsd.org MIME-Version: 1.0 Content-Type: TEXT/plain; CHARSET=ISO-8859-2 Content-Transfer-Encoding: QUOTED-PRINTABLE X-ORIGINATE-IP: 85.89.167.26 X-Mailer: PSE Message-Id: <20070217123320.CF50D7858E@poczta.interia.pl> X-EMID: 74540acc Subject: DELL Laptop // IRQ Conflict // Maestro3 // !ACPI/SAFE MODE Failure 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, 17 Feb 2007 13:00:34 -0000 My buddy does not know english very well so I am posting his problem with D= ell Latitude Laptop: The problem is that he has crappy sound with his Maestro3 Sound Card. error messages: pcm0:play:1:dsp0.1: play interrupt timeout channel dead % vmstat -i # GENERIC 6.2 interrupt total rate=20 irq0: clk 151683 991=20 irq1: atkbd0 119 0=20 irq5: pcm0 469 3=20 irq6: fdc0 7 0=20 irq7: ppc0 1 0=20 irq8: rtc 19427 126=20 irq10: cbb0 cbb1+* 1444 9=20 irq11: nvidia0 7564 49=20 irq12: psm0 7089 46=20 irq14: ata0 7968 52=20 Total 195771 1279 this setup in /boot/loader.conf also did not helped: snd_maestro3_load=3D"YES" hint.cbb.0.disabled=3D"1"=20 hint.cbb.1.disabled=3D"1"=20 hint.pccard.0.disabled=3D"1"=20 hint.pccard.1.disabled=3D"1"=20 hint.cardbus.0.disabled=3D"1"=20 hint.cardbus.1.disabled=3D"1" after removing pcimcia support from kernel: % vmstat -i interrupt total rate=20 irq0: clk 206211 991=20 irq1: atkbd0 512 2=20 irq5: pcm0 1474 7=20 irq6: fdc0 7 0=20 irq7: ppc0 1 0=20 irq8: rtc 26408 126=20 irq10: xl0 fwohci+ 4748 22=20 irq11: nvidia0 8684 41=20 irq12: psm0 36 0=20 irq14: ata0 7999 38=20 Total 256080 1231 after removing firewire from kernel: % vmstat -i interrupt total rate=20 irq0: clk 247221 992=20 irq1: atkbd0 413 1=20 irq5: pcm0 509 2=20 irq6: fdc0 7 0=20 irq7: ppc0 1 0=20 irq8: rtc 31659 127=20 irq10: xl0 uhci0 6701 26=20 irq11: nvidia0 12729 51=20 irq12: psm0 6 0=20 irq14: ata0 9677 38=20 Total 308923 1240 no IRQ conflicts at this time, but the glitchy sound still is the problem. setting hint.pcm.0.hwvol_config=3D"0" in /boot/loader.conf also did not hel= ped. hardware: Dell Latitude C810 BIOS A12 P3 Tualatin Mobile 1000/733 133MHz FSB=20 2x256 SDRAM 133MHz Kingston=20 Intel 815e/ep=20 Geforce2Go 16MB DDR=20 ESS Maestro 3=20 3Com 56k V.90Mini PCI Modem/ 3Com Ethernet 10/100=20 Kontroler IEEE 1394 Texas Instruments=20 CardBUS Texas Instruments PCI-4451=20 Dysk Toshiba MK2018GAS=20 CD SAMSUNG SN-124 kernel was GENERIC 6.2[later with remover pcimcia and firewire] also 7.0/5.= 4 GENERIC tried without success. here is some other info: % pciconf -lv hostb0@pci0:0:0: class=3D0x060000 card=3D0x00000000 chip=3D0x1130808= 6 rev=3D0x04=20 hdr=3D0x00=20 vendor =3D 'Intel Corporation'=20 device =3D '82815/EM/EP/P 815/EM/EP/P (Solano) Host to I/O Hub Bridge= '=20 class =3D bridge=20 subclass =3D HOST-PCI=20 pcib1@pci0:1:0: class=3D0x060400 card=3D0x00000000 chip=3D0x11318086 rev=3D= 0x04 hdr=3D0x01=20 vendor =3D 'Intel Corporation'=20 device =3D '82815/EM/EP/P 815/EM/EP/P (Solano) PCI to AGP Bridge'=20 class =3D bridge=20 subclass =3D PCI-PCI=20 pcib2@pci0:30:0: class=3D0x060400 card=3D0x00000000 chip=3D0x2448808= 6 rev=3D0x03=20 hdr=3D0x01=20 vendor =3D 'Intel Corporation'=20 device =3D '82801BAM/CAM/DBM (ICH2-M/3-M/4-M) Hub Interface to PCI Br= idge'=20 class =3D bridge=20 subclass =3D PCI-PCI=20 isab0@pci0:31:0: class=3D0x060100 card=3D0x00000000 chip=3D0x244c808= 6 rev=3D0x03=20 hdr=3D0x00=20 vendor =3D 'Intel Corporation'=20 device =3D '82801BAM (ICH2-M) LPC Interface Controller'=20 class =3D bridge=20 subclass =3D PCI-ISA=20 atapci0@pci0:31:1: class=3D0x010180 card=3D0x45418086 chip=3D0x244a808= 6 rev=3D0x03=20 hdr=3D0x00=20 vendor =3D 'Intel Corporation'=20 device =3D '82801BAM (ICH2-M) UltraATA/100 IDE Controller'=20 class =3D mass storage=20 subclass =3D ATA=20 uhci0@pci0:31:2: class=3D0x0c0300 card=3D0x45418086 chip=3D0x2442808= 6 rev=3D0x03=20 hdr=3D0x00=20 vendor =3D 'Intel Corporation'=20 device =3D '82801BA/BAM (ICH2/ICH2-M) USB Universal Host Controller'= =20 class =3D serial bus=20 subclass =3D USB=20 none0@pci1:0:0: class=3D0x030000 card=3D0x00e51028 chip=3D0x011210de rev=3D= 0xb2 hdr=3D0x00=20 vendor =3D 'NVIDIA Corporation'=20 device =3D 'NV11 GeForce2 Go / MX Ultra'=20 class =3D display=20 subclass =3D VGA=20 none1@pci2:3:0: class=3D0x040100 card=3D0x00e51028 chip=3D0x1998125d rev=3D= 0x10 hdr=3D0x00=20 vendor =3D 'ESS Technology'=20 device =3D 'ES1980 Maestro-3 PCI Audio Accelerator'=20 class =3D multimedia=20 subclass =3D audio=20 xl0@pci2:6:0: class=3D0x020000 card=3D0x645610b7 chip=3D0x605510b7 rev=3D= 0x10 hdr=3D0x00=20 vendor =3D '3COM Corp, Networking Division'=20 device =3D '3C556 10/100 Mini PCI Fast Ethernet Adapter'=20 class =3D network=20 subclass =3D ethernet=20 none2@pci2:6:1: class=3D0x078000 card=3D0x615b10b7 chip=3D0x100710b7 rev=3D= 0x10 hdr=3D0x00=20 vendor =3D '3COM Corp, Networking Division'=20 device =3D '3C556 V.90 Mini-PCI Modem'=20 class =3D simple comms=20 cbb0@pci2:15:0: class=3D0x060700 card=3D0x00e51028 chip=3D0xac42104c rev=3D= 0x00 hdr=3D0x02=20 vendor =3D 'Texas Instruments (TI)'=20 device =3D 'PCI4451 PC card CardBus Controller'=20 class =3D bridge=20 subclass =3D PCI-CardBus=20 cbb1@pci2:15:1: class=3D0x060700 card=3D0x00e51028 chip=3D0xac42104c rev=3D= 0x00 hdr=3D0x02=20 vendor =3D 'Texas Instruments (TI)'=20 device =3D 'PCI4451 PC card CardBus Controller'=20 class =3D bridge=20 subclass =3D PCI-CardBus=20 fwohci0@pci2:15:2: class=3D0x0c0010 card=3D0x00e51028 chip=3D0x8027104= c rev=3D0x00=20 hdr=3D0x00=20 vendor =3D 'Texas Instruments (TI)'=20 device =3D 'PCI4451 OHCI-Lynx IEEE-1394 FireWire Adapter'=20 class =3D serial bus=20 subclass =3D FireWire % vmstat -i # from GENERIC FreeBSD 7.0-CURRENT 200702 snapshot interrupt total rate=20 irq0: clk 1713674 999=20 irq1: atkbd0 1085 0=20 irq5: pcm0 11217 6=20 irq6: fdc0 7 0=20 irq7: ppc0 1 0=20 irq8: rtc 219463 127=20 irq10: cbb0 cbb1+* 43281 25=20 irq12: psm0 39 0=20 irq14: ata0 39936 23=20 Total 2028703 1182 the other problem is also that booting in SAFE MODE or with ACPI DISABLED t= he laptop is not booting and bootloader is showing that it cant load the ke= rnel. my knowledge ends here... thanks for any help and hints. ---------------------------------------------------------------------- Ustawiaj rekordy DNS dla swojej domeny >> http://link.interia.pl/f1a1a From owner-freebsd-bugs@FreeBSD.ORG Sat Feb 17 14:30:14 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 0413B16A406 for ; Sat, 17 Feb 2007 14:30:14 +0000 (UTC) (envelope-from waldeck@hk2.uwaterloo.ca) Received: from hk2.uwaterloo.ca (hk2.uwaterloo.ca [129.97.47.5]) by mx1.freebsd.org (Postfix) with ESMTP id ACF7413C442 for ; Sat, 17 Feb 2007 14:30:11 +0000 (UTC) (envelope-from waldeck@hk2.uwaterloo.ca) Received: from uwaterloo.ca (localhost.localdomain [127.0.0.1]) by hk2.uwaterloo.ca (Postfix) with SMTP id 919F210194F for ; Sat, 17 Feb 2007 09:04:51 -0500 (EST) Message-Id: <20070217140451.919F210194F@hk2.uwaterloo.ca> Date: Sat, 17 Feb 2007 09:04:51 -0500 (EST) From: waldeck@hk2.uwaterloo.ca To: undisclosed-recipients:; X-Mailman-Approved-At: Sat, 17 Feb 2007 16:22:18 +0000 Subject: Re: Re: kern/106022: The kernel 2006-11 does NOT work well with the powerd. 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, 17 Feb 2007 14:30:14 -0000 > Are you still having this issue? Unfortunately, yes! There a no foreground or background processes. Until november the freqence falls until 75 MHz. So I set debug.cpufreq.lowest: 300. The possible vales are: dev.cpu.0.freq_levels: 1700/21000 1487/18375 1400/17500 1225/15312 1200/15000 1050/13125 1000/12500 875/10937 800/10000 700/8750 600/7500 525/6562 450/5625 375/4687 300/3750 If I do absolutely nothing the minimal value I get is 1400 MHz. sysctl debug.cpufreq.verbose=1 results in: cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: adding abs setting 1700 at head cpufreq: adding abs setting 1400 after 1700 cpufreq: adding abs setting 1200 after 1400 cpufreq: adding abs setting 1000 after 1200 cpufreq: adding abs setting 800 after 1000 cpufreq: adding abs setting 600 after 800 cpufreq: adding 8 relative settings cpufreq: expand set added rel setting 100% to 600 level cpufreq: dup set considering derived setting 525 cpufreq: removed last relative driver: acpi_throttle0 cpufreq: dup done, inserting new level 525 after 600 cpufreq: expand set added rel setting 87% to 525 level cpufreq: dup set considering derived setting 450 cpufreq: removed last relative driver: acpi_throttle0 cpufreq: dup done, inserting new level 450 after 525 cpufreq: expand set added rel setting 75% to 450 level cpufreq: dup set considering derived setting 375 cpufreq: removed last relative driver: acpi_throttle0 cpufreq: dup done, inserting new level 375 after 450 cpufreq: expand set added rel setting 62% to 375 level cpufreq: dup set considering derived setting 300 cpufreq: removed last relative driver: acpi_throttle0 cpufreq: dup done, inserting new level 300 after 375 cpufreq: expand set added rel setting 50% to 300 level cpufreq: dup set considering derived setting 225 cpufreq: removed last relative driver: acpi_throttle0 cpufreq: dup done, inserting new level 225 after 300 cpufreq: expand set added rel setting 37% to 225 level cpufreq: dup set considering derived setting 150 cpufreq: removed last relative driver: acpi_throttle0 cpufreq: dup done, inserting new level 150 after 225 cpufreq: expand set added rel setting 25% to 150 level cpufreq: dup set considering derived setting 75 cpufreq: removed last relative driver: acpi_throttle0 cpufreq: dup done, inserting new level 75 after 150 cpufreq: expand set added rel setting 12% to 75 level cpufreq: expand set added rel setting 100% to 800 level cpufreq: dup set considering derived setting 700 cpufreq: removed last relative driver: acpi_throttle0 cpufreq: dup done, inserting new level 700 after 800 cpufreq: expand set added rel setting 87% to 700 level cpufreq: dup set considering derived setting 600 cpufreq: removed last relative driver: acpi_throttle0 cpufreq: dup set rejecting 600 (dupe) cpufreq: dup set freeing new level 600 (not optimal) cpufreq: expand set added rel setting 100% to 1000 level cpufreq: dup set considering derived setting 875 cpufreq: removed last relative driver: acpi_throttle0 cpufreq: dup done, inserting new level 875 after 1000 cpufreq: expand set added rel setting 87% to 875 level cpufreq: dup set considering derived setting 750 cpufreq: removed last relative driver: acpi_throttle0 cpufreq: dup set rejecting 750 (abs too big) cpufreq: dup set freeing new level 750 (not optimal) cpufreq: expand set added rel setting 100% to 1200 level cpufreq: dup set considering derived setting 1050 cpufreq: removed last relative driver: acpi_throttle0 cpufreq: dup done, inserting new level 1050 after 1200 cpufreq: expand set added rel setting 87% to 1050 level cpufreq: dup set considering derived setting 900 cpufreq: removed last relative driver: acpi_throttle0 cpufreq: dup set rejecting 900 (abs too big) cpufreq: dup set freeing new level 900 (not optimal) cpufreq: expand set added rel setting 100% to 1400 level cpufreq: dup set considering derived setting 1225 cpufreq: removed last relative driver: acpi_throttle0 cpufreq: dup done, inserting new level 1225 after 1400 cpufreq: expand set added rel setting 87% to 1225 level cpufreq: dup set considering derived setting 1050 cpufreq: removed last relative driver: acpi_throttle0 cpufreq: dup set rejecting 1050 (dupe) cpufreq: dup set freeing new level 1050 (not optimal) cpufreq: expand set added rel setting 100% to 1700 level cpufreq: dup set considering derived setting 1487 cpufreq: removed last relative driver: acpi_throttle0 cpufreq: dup done, inserting new level 1487 after 1700 cpufreq: expand set added rel setting 87% to 1487 level cpufreq: dup set considering derived setting 1275 cpufreq: removed last relative driver: acpi_throttle0 cpufreq: dup set rejecting 1275 (abs too big) cpufreq: dup set freeing new level 1275 (not optimal) cpufreq: setting abs freq 1700 on acpi_perf0 (cpu 0) cpufreq: setting rel freq 8750 on acpi_throttle0 (cpu 0) cpufreq: get returning known freq 1487 cpufreq: get returning known freq 1487 cpufreq: adding abs setting 1700 at head cpufreq: adding abs setting 1400 after 1700 cpufreq: adding abs setting 1200 after 1400 cpufreq: adding abs setting 1000 after 1200 cpufreq: adding abs setting 800 after 1000 cpufreq: adding abs setting 600 after 800 cpufreq: adding 8 relative settings cpufreq: expand set added rel setting 100% to 600 level cpufreq: dup set considering derived setting 525 cpufreq: removed last relative driver: acpi_throttle0 cpufreq: dup done, inserting new level 525 after 600 cpufreq: expand set added rel setting 87% to 525 level cpufreq: dup set considering derived setting 450 cpufreq: removed last relative driver: acpi_throttle0 cpufreq: dup done, inserting new level 450 after 525 cpufreq: expand set added rel setting 75% to 450 level cpufreq: dup set considering derived setting 375 cpufreq: removed last relative driver: acpi_throttle0 cpufreq: dup done, inserting new level 375 after 450 cpufreq: expand set added rel setting 62% to 375 level cpufreq: dup set considering derived setting 300 cpufreq: removed last relative driver: acpi_throttle0 cpufreq: dup done, inserting new level 300 after 375 cpufreq: expand set added rel setting 50% to 300 level cpufreq: dup set considering derived setting 225 cpufreq: removed last relative driver: acpi_throttle0 cpufreq: dup done, inserting new level 225 after 300 cpufreq: expand set added rel setting 37% to 225 level cpufreq: dup set considering derived setting 150 cpufreq: removed last relative driver: acpi_throttle0 cpufreq: dup done, inserting new level 150 after 225 cpufreq: expand set added rel setting 25% to 150 level cpufreq: dup set considering derived setting 75 cpufreq: removed last relative driver: acpi_throttle0 cpufreq: dup done, inserting new level 75 after 150 cpufreq: expand set added rel setting 12% to 75 level cpufreq: expand set added rel setting 100% to 800 level cpufreq: dup set considering derived setting 700 cpufreq: removed last relative driver: acpi_throttle0 cpufreq: dup done, inserting new level 700 after 800 cpufreq: expand set added rel setting 87% to 700 level cpufreq: dup set considering derived setting 600 cpufreq: removed last relative driver: acpi_throttle0 cpufreq: dup set rejecting 600 (dupe) cpufreq: dup set freeing new level 600 (not optimal) cpufreq: expand set added rel setting 100% to 1000 level cpufreq: dup set considering derived setting 875 cpufreq: removed last relative driver: acpi_throttle0 cpufreq: dup done, inserting new level 875 after 1000 cpufreq: expand set added rel setting 87% to 875 level cpufreq: dup set considering derived setting 750 cpufreq: removed last relative driver: acpi_throttle0 cpufreq: dup set rejecting 750 (abs too big) cpufreq: dup set freeing new level 750 (not optimal) cpufreq: expand set added rel setting 100% to 1200 level cpufreq: dup set considering derived setting 1050 cpufreq: removed last relative driver: acpi_throttle0 cpufreq: dup done, inserting new level 1050 after 1200 cpufreq: expand set added rel setting 87% to 1050 level cpufreq: dup set considering derived setting 900 cpufreq: removed last relative driver: acpi_throttle0 cpufreq: dup set rejecting 900 (abs too big) cpufreq: dup set freeing new level 900 (not optimal) cpufreq: expand set added rel setting 100% to 1400 level cpufreq: dup set considering derived setting 1225 cpufreq: removed last relative driver: acpi_throttle0 cpufreq: dup done, inserting new level 1225 after 1400 cpufreq: expand set added rel setting 87% to 1225 level cpufreq: dup set considering derived setting 1050 cpufreq: removed last relative driver: acpi_throttle0 cpufreq: dup set rejecting 1050 (dupe) cpufreq: dup set freeing new level 1050 (not optimal) cpufreq: expand set added rel setting 100% to 1700 level cpufreq: dup set considering derived setting 1487 cpufreq: removed last relative driver: acpi_throttle0 cpufreq: dup done, inserting new level 1487 after 1700 cpufreq: expand set added rel setting 87% to 1487 level cpufreq: dup set considering derived setting 1275 cpufreq: removed last relative driver: acpi_throttle0 cpufreq: dup set rejecting 1275 (abs too big) cpufreq: dup set freeing new level 1275 (not optimal) cpufreq: setting abs freq 1700 on acpi_perf0 (cpu 0) cpufreq: setting rel freq 10000 on acpi_throttle0 (cpu 0) cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700 cpufreq: get returning known freq 1700