From owner-freebsd-bugs Sun Dec 16 7:30: 5 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 88A5937B41C for ; Sun, 16 Dec 2001 07:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBGFU1x28241; Sun, 16 Dec 2001 07:30:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 087A637B405 for ; Sun, 16 Dec 2001 07:20:57 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBGFKvb27323; Sun, 16 Dec 2001 07:20:57 -0800 (PST) (envelope-from nobody) Message-Id: <200112161520.fBGFKvb27323@freefall.freebsd.org> Date: Sun, 16 Dec 2001 07:20:57 -0800 (PST) From: "Martin P. Hansen" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: gnu/32902: Incremental tar archiving using GNU style fails to handle regional chars Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32902 >Category: gnu >Synopsis: Incremental tar archiving using GNU style fails to handle regional chars >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 Dec 16 07:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Martin P. Hansen >Release: 4.1.1-RELEASE >Organization: >Environment: FreeBSD bsd-kools.kools.dk 4.1.1-RELEASE FreeBSD 4.1.1-RELEASE #0: Sat Dec 23 16:02:34 CET 2000 root@argon.lan.dk:/usr/src/sys/compile/KOOLS i386 >Description: tar's '-g' option doesn't handle regional chars properly, it archives wheter or not the file is modified. >How-To-Repeat: Creating a test tree containing two directories one without extended chars and one with. Put two or more docs in each and try to tar: tar -g snapshot -cvf test.tar test-tree/ and then tar -g snapshot -cvf test2.tar test-tree/ The second tar should ofcause not archive anything except some dirs. But will faithfully archive the complete dir with the regional char. >Fix: This all happens due a missing increment in un_quote_string() in port.c. At line 992 "*to_there = tmp;" should be "*to_there++ = tmp;". >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 16 12:10: 7 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 65F5B37B419 for ; Sun, 16 Dec 2001 12:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBGKA2G99167; Sun, 16 Dec 2001 12:10:02 -0800 (PST) (envelope-from gnats) Date: Sun, 16 Dec 2001 12:10:02 -0800 (PST) Message-Id: <200112162010.fBGKA2G99167@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Jon-Erik Lido Subject: Re: kern/30836: Chipset SiS735 / NIC SiS 900 Reply-To: Jon-Erik Lido Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/30836; it has been noted by GNATS. From: Jon-Erik Lido To: freebsd-gnats-submit@FreeBSD.org, jlido@goof.com, metal@gc5.so-net.ne.jp Cc: Subject: Re: kern/30836: Chipset SiS735 / NIC SiS 900 Date: Sun, 16 Dec 2001 15:07:19 -0500 1234567890123456789012345678901234567890123456789012345678901234567890 I tried Suzuki Koichi's patches with mixed results. Basically it seems that while his patches might work for 100BaseTX, they do not work for 10BaseT. My dmesg results are the same as his: --- dmesg --- sis0: port 0xdc00-0xdcff mem 0xcfffd000-0xcfffdfff irq 10 at device 3.0 on pci0 sis0: Ethernet address: 00:d0:09:f4:7b:cf miibus0: on sis0 ukphy0: on miibus0 ukphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto --- However, here are the results when trying to use ifconfig: ifconfig sis0 inet 10.10.10.3 netmask 255.255.255.0 sis0: flags=8843 mtu 1500 inet 10.10.10.3 netmask 0xffffff00 broadcast 10.10.10.255 inet6 fe80::2d0:9ff:fef4:7bcf%sis0 prefixlen 64 scopeid 0x1 ether 00:d0:09:f4:7b:cf media: Ethernet autoselect (none) status: active It appears that while it does not recognize the media type, it does see a carrier. I tried explicitly specifying 10BaseT (which is what my LAN uses): ifconfig sis0 inet 10.10.10.3 netmask 255.255.255.0 media 10BaseT/UTP sis0: flags=8843 mtu 1500 inet 10.10.10.3 netmask 0xffffff00 broadcast 10.10.10.255 inet6 fe80::2d0:9ff:fef4:7bcf%sis0 prefixlen 64 scopeid 0x1 ether 00:d0:09:f4:7b:cf media: Ethernet 10baseT/UTP (none) status: active Still no luck. Then I tried something bizzare. I have a RealTek 8139 10/100BaseTX NIC in the same computer, so I tried hooking up a crossover cable between the two interfaces. I wanted to see if it would recognize 100BaseTX. Sure enough: ifconfig sis0 inet 10.10.10.3 netmask 255.255.255.0 ifconfig rl0 inet 10.10.10.4 netmask 255.255.255.0 sis0: flags=8843 mtu 1500 inet 10.10.10.3 netmask 0xffffff00 broadcast 10.10.10.255 inet6 fe80::2d0:9ff:fef4:7bcf%sis0 prefixlen 64 scopeid 0x1 ether 00:d0:09:f4:7b:cf media: Ethernet autoselect (100baseTX ) status: active rl0: flags=8843 mtu 1500 inet 10.10.10.4 netmask 0xffffff00 broadcast 10.10.10.255 inet6 fe80::24f:4eff:fe04:3b35%rl0 prefixlen 64 scopeid 0x2 ether 00:4f:4e:04:3b:35 media: Ethernet autoselect (100baseTX ) status: active I hope this helps someone. I'm not sure what to try next. -Jon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 16 13:40: 8 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7E8C237B41F for ; Sun, 16 Dec 2001 13:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBGLe1C26782; Sun, 16 Dec 2001 13:40:01 -0800 (PST) (envelope-from gnats) Received: from slackerbsd.org (cn488734-a.wall1.pa.home.com [65.9.18.254]) by hub.freebsd.org (Postfix) with SMTP id 1F61C37B405 for ; Sun, 16 Dec 2001 13:36:37 -0800 (PST) Received: (qmail 67948 invoked by uid 1000); 16 Dec 2001 21:36:34 -0000 Message-Id: <20011216213634.67947.qmail@slackerbsd.org> Date: 16 Dec 2001 21:36:34 -0000 From: carl@slackerbsd.org Reply-To: Carl Schmidt To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: kern/32912: options misssing TCBHASHSIZE Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32912 >Category: kern >Synopsis: options misssing TCBHASHSIZE >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 Dec 16 13:40:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Carl Schmidt >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD Carbon.SlackerBSD.ORG 4.4-STABLE FreeBSD 4.4-STABLE #0: Thu Dec 13 19:42:50 EST 2001 root@Carbon.SlackerBSD.ORG:/usr/obj/usr/src/sys/CARBON i386 >Description: /sys/conf/options is lacking TCBHASHSIZE and so is LINT. This isn't really a sw-bug but i don't think misc or doc-bug would really be appropriate either. Sorry (and correct me) if I'm wrong. >How-To-Repeat: grep TCBHASHSIZE /sys/netinet/tcp_subr.c grep TCBHASHSIZE /sys/conf/options grep TCBHASHSIZE /sys/i386/conf/LINT >Fix: --- options.old Fri Nov 2 20:41:07 2001 +++ options Sun Dec 16 16:03:20 2001 @@ -269,6 +269,7 @@ PPP_FILTER opt_ppp.h RANDOM_IP_ID SLIP_IFF_OPTS opt_slip.h +TCBHASHSIZE TCPDEBUG TCP_DROP_SYNFIN opt_tcp_input.h XBONEHACK --- LINT.old Fri Dec 14 22:29:03 2001 +++ LINT Sun Dec 16 16:35:39 2001 @@ -556,6 +556,10 @@ # packets without touching the ttl). This can be useful to hide firewalls # from traceroute and similar tools. # +# TCBHASHSIZE is the target size of the TCP PCB (process control block) hash +# tables. This must be a power of 2. The default is 512 (2^9). See tcp(4) +# for more information. +# # TCPDEBUG is undocumented. # options MROUTING # Multicast routing @@ -573,6 +577,7 @@ options IPFILTER_LOG #ipfilter logging options IPFILTER_DEFAULT_BLOCK #block all packets by default options IPSTEALTH #support for stealth forwarding +options TCBHASHSIZE=512 #tcp pcb hash table size options TCPDEBUG # RANDOM_IP_ID causes the ID field in IP packets to be randomized >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 16 14: 0: 7 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8E27937B405 for ; Sun, 16 Dec 2001 14:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBGM02N32135; Sun, 16 Dec 2001 14:00:02 -0800 (PST) (envelope-from gnats) Date: Sun, 16 Dec 2001 14:00:02 -0800 (PST) Message-Id: <200112162200.fBGM02N32135@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: carl@slackerbsd.org Subject: Re: kern/32912: options misssing TCBHASHSIZE Reply-To: carl@slackerbsd.org Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/32912; it has been noted by GNATS. From: carl@slackerbsd.org To: FreeBSD-gnats-submit@freebsd.org Cc: Subject: Re: kern/32912: options misssing TCBHASHSIZE Date: Sun, 16 Dec 2001 16:50:44 -0500 On Sun, Dec 16, 2001 at 09:36:34PM -0000, Carl Schmidt wrote: > >Number: 32912 > >Category: kern > >Synopsis: options misssing TCBHASHSIZE > >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 Dec 16 13:40:01 PST 2001 > >Closed-Date: > >Last-Modified: > >Originator: Carl Schmidt > >Release: FreeBSD 4.4-STABLE i386 > >Organization: > >Environment: > System: FreeBSD Carbon.SlackerBSD.ORG 4.4-STABLE FreeBSD 4.4-STABLE #0: Thu Dec 13 19:42:50 EST 2001 root@Carbon.SlackerBSD.ORG:/usr/obj/usr/src/sys/CARBON i386 > > >Description: > /sys/conf/options is lacking TCBHASHSIZE and so is LINT. > This isn't really a sw-bug but i don't think misc or doc-bug would really be > appropriate either. Sorry (and correct me) if I'm wrong. > > >How-To-Repeat: > grep TCBHASHSIZE /sys/netinet/tcp_subr.c > grep TCBHASHSIZE /sys/conf/options > grep TCBHASHSIZE /sys/i386/conf/LINT > > >Fix: > --- options.old Fri Nov 2 20:41:07 2001 > +++ options Sun Dec 16 16:03:20 2001 > @@ -269,6 +269,7 @@ > PPP_FILTER opt_ppp.h > RANDOM_IP_ID > SLIP_IFF_OPTS opt_slip.h > +TCBHASHSIZE > TCPDEBUG > TCP_DROP_SYNFIN opt_tcp_input.h > XBONEHACK > > --- LINT.old Fri Dec 14 22:29:03 2001 > +++ LINT Sun Dec 16 16:35:39 2001 > @@ -556,6 +556,10 @@ > # packets without touching the ttl). This can be useful to hide firewalls > # from traceroute and similar tools. > # > +# TCBHASHSIZE is the target size of the TCP PCB (process control block) hash > +# tables. This must be a power of 2. The default is 512 (2^9). See tcp(4) > +# for more information. > +# > # TCPDEBUG is undocumented. > # > options MROUTING # Multicast routing > @@ -573,6 +577,7 @@ > options IPFILTER_LOG #ipfilter logging > options IPFILTER_DEFAULT_BLOCK #block all packets by default > options IPSTEALTH #support for stealth forwarding > +options TCBHASHSIZE=512 #tcp pcb hash table size > options TCPDEBUG > > # RANDOM_IP_ID causes the ID field in IP packets to be randomized > >Release-Note: > >Audit-Trail: > >Unformatted: Sorry about the formatting mistake and the spelling error in the synopsis. --- LINT.old Fri Dec 14 22:29:03 2001 +++ LINT Sun Dec 16 16:35:39 2001 @@ -556,6 +556,10 @@ # packets without touching the ttl). This can be useful to hide firewalls # from traceroute and similar tools. # +# TCBHASHSIZE is the target size of the TCP PCB (process control block) hash +# tables. This must be a power of 2. The default is 512 (2^9). See tcp(4) +# for more information. +# # TCPDEBUG is undocumented. # options MROUTING # Multicast routing @@ -573,6 +577,7 @@ options IPFILTER_LOG #ipfilter logging options IPFILTER_DEFAULT_BLOCK #block all packets by default options IPSTEALTH #support for stealth forwarding +options TCBHASHSIZE=512 #tcp pcb hash table size options TCPDEBUG # RANDOM_IP_ID causes the ID field in IP packets to be randomized -- Carl Schmidt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 16 14:30: 5 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B38B737B41D for ; Sun, 16 Dec 2001 14:30:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBGMU0Y43505; Sun, 16 Dec 2001 14:30:00 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E2D7937B417 for ; Sun, 16 Dec 2001 14:24:36 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBGMOaN42107; Sun, 16 Dec 2001 14:24:36 -0800 (PST) (envelope-from nobody) Message-Id: <200112162224.fBGMOaN42107@freefall.freebsd.org> Date: Sun, 16 Dec 2001 14:24:36 -0800 (PST) From: Olaf Zaplinski To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/32913: still no support for Intel "eepro100" NICs Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32913 >Category: kern >Synopsis: still no support for Intel "eepro100" NICs >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Dec 16 14:30:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Olaf Zaplinski >Release: 4.4 >Organization: >Environment: had to delete BSD - if it has no network, it's useless :-( Problem is there with both standard and self compiled kernel >Description: - tried FreeBSD 4.4 and had to learn that both my several years old Intel Pro/100B and also my newer Pro/100+ do not work, fxp0 says "could not map [address|register]" (don't remember the exact phrase). Same as with 4.0 (this was the last time I wanted to try BSD). Both cards work fine under Win9x/2K + Linux 2.4.x - Machine A (older card) has Intel LX chipset - Machine B (newer card, BSD test install) has Via 694X/694Z chipset - swapping cards between machines and reinstall on B did not help Info for the older card (Linux): 00:10.0 Ethernet controller: Intel Corporation 82557 [Ethernet Pro 100] (rev 02) Subsystem: Intel Corporation EtherExpress PRO/100B (TX) Flags: bus master, medium devsel, latency 66, IRQ 11 Memory at fecfe000 (32-bit, prefetchable) [size=4K] I/O ports at f800 [size=32] Memory at fed00000 (32-bit, non-prefetchable) [size=1M] Expansion ROM at [disabled] [size=1M] >How-To-Repeat: Just buy that Intel NIC and try to ping your default gw ;-) >Fix: install Linux? ;-) (SCNR) I would like to test BSD/compare with Linux, but I only have Intel NICs both at home and at work >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 16 14:40: 4 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3E43437B417 for ; Sun, 16 Dec 2001 14:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBGMe1345858; Sun, 16 Dec 2001 14:40:01 -0800 (PST) (envelope-from gnats) Date: Sun, 16 Dec 2001 14:40:01 -0800 (PST) Message-Id: <200112162240.fBGMe1345858@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: David Greenman Subject: Re: kern/32913: still no support for Intel "eepro100" NICs Reply-To: David Greenman Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/32913; it has been noted by GNATS. From: David Greenman To: Olaf Zaplinski Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: kern/32913: still no support for Intel "eepro100" NICs Date: Sun, 16 Dec 2001 14:28:00 -0800 >had to delete BSD - if it has no network, it's useless :-( >Problem is there with both standard and self compiled kernel >>Description: >- tried FreeBSD 4.4 and had to learn that both my several years old Intel Pro/100B and also my newer Pro/100+ do not work, fxp0 says "could not map [address|register]" (don't remember the exact phrase). Same as with 4.0 (this was the last time I wanted to try BSD). Both cards work fine under Win9x/2K + Linux 2.4.x >- Machine A (older card) has Intel LX chipset >- Machine B (newer card, BSD test install) has Via 694X/694Z chipset >- swapping cards between machines and reinstall on B did not help > >Info for the older card (Linux): > >00:10.0 Ethernet controller: Intel Corporation 82557 [Ethernet Pro 100] (rev 02) > Subsystem: Intel Corporation EtherExpress PRO/100B (TX) > Flags: bus master, medium devsel, latency 66, IRQ 11 > Memory at fecfe000 (32-bit, prefetchable) [size=4K] > I/O ports at f800 [size=32] > Memory at fed00000 (32-bit, non-prefetchable) [size=1M] > Expansion ROM at [disabled] [size=1M] > >>How-To-Repeat: >Just buy that Intel NIC and try to ping your default gw ;-) Both the Pro/100B and Pro/100+ boards are fully supported. The problem that you described is a problem with your motherboard PCI BIOS not properly allocating a shared memory region for the device registers to be mapped. -DG David Greenman Co-founder, The FreeBSD Project - http://www.freebsd.org President, TeraSolutions, Inc. - http://www.terasolutions.com Pave the road of life with opportunities. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 16 15: 0: 4 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4485B37B416 for ; Sun, 16 Dec 2001 15:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBGN01850909; Sun, 16 Dec 2001 15:00:01 -0800 (PST) (envelope-from gnats) Date: Sun, 16 Dec 2001 15:00:01 -0800 (PST) Message-Id: <200112162300.fBGN01850909@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: SUZUKI Koichi Subject: Re: kern/30836: Chipset SiS735 / NIC SiS 900 Reply-To: SUZUKI Koichi Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/30836; it has been noted by GNATS. From: SUZUKI Koichi To: Jon-Erik Lido Cc: freebsd-gnats-submit@FreeBSD.org, fwkg7679@mb.infoweb.ne.jp Subject: Re: kern/30836: Chipset SiS735 / NIC SiS 900 Date: Sun, 16 Dec 2001 14:50:25 -0800 [Cc-ed to Kurosawa-san] Hi guys, Jon-Erik Lido wrote: > I tried Suzuki Koichi's patches with mixed results. Basically it seems > that while his patches might work for 100BaseTX, they do not work for > 10BaseT. My work-around has another problem when you use IPv6. Kurosawa-san made another patch to deal with IPv6. He made this patch under 5.0-current, but this is available for 4.4-stable as well. I use this patch instead of my work-around in 4.4-stable (But I don't use IPv6). I'm not sure his patch works well in your situation. But, would you try his patch? http://homepage2.nifty.com/tkuro/archive/if_sis.diff -- This is my STYLE. SUZUKI Koichi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 16 17: 0: 9 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6E4D937B41B for ; Sun, 16 Dec 2001 17:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBH102K83555; Sun, 16 Dec 2001 17:00:02 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 15C9337B417 for ; Sun, 16 Dec 2001 16:54:57 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBH0svE82661; Sun, 16 Dec 2001 16:54:57 -0800 (PST) (envelope-from nobody) Message-Id: <200112170054.fBH0svE82661@freefall.freebsd.org> Date: Sun, 16 Dec 2001 16:54:57 -0800 (PST) From: Mike Todd To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/32919: Network, Graphics, and USB Mouse support for Gateway solo 9500 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32919 >Category: i386 >Synopsis: Network, Graphics, and USB Mouse support for Gateway solo 9500 >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Dec 16 17:00:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Mike Todd >Release: FreeBSD i386, v. 4.4 >Organization: Mike Todd Associates >Environment: FreeBSD MT1Ghz 4.4-RELEASE FreeBSD 4.4-RELEASE #0: Tue Sep 18 11:57:08 PDT 2001 murray@builder.FreeBSD.org:/usr/src/sys/compile/GENERIC i386 >Description: Finally got it all working on the Gateway solo 9500. FreeBSD 4.4 supports the TI PCI Bus and can reach the network card. No special configuration required. The USB Mouse (my own preference because I can't keep my hands off the touch pad, which can now be disabled in the BIOS) works by using moused_port="/dev/ums0" and moused_type="auto" in the rc.conf file. And XiG.com has provided ($) a graphics driver with version LX601 that makes full use of the ATI AGP4X video for the X-Server. >How-To-Repeat: Problem Solved! >Fix: FreeBSD 4.4, a little configuration, reported above, and a commercial graphic driver (LX601, with an update) from XiG.com got the Gateway solo 9500 working just fine with FreeBSD! >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 16 17:13: 4 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from mz.ru (aserver.oo.ru [194.135.19.10]) by hub.freebsd.org (Postfix) with SMTP id 4B2AC37B417 for ; Sun, 16 Dec 2001 17:13:00 -0800 (PST) From: "Nik.Ru" To: users@mz.ru Reply-To: chats05@mz.ru Subject: Новогодние и Рождественские предложения для Вас! Message-Id: <20011217011300.4B2AC37B417@hub.freebsd.org> Date: Sun, 16 Dec 2001 17:13:00 -0800 (PST) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org -------------------------------------------------------------------------------- Информация о рассылке: http://www.mz.ru, приносим Вам извинения, если письмо Вам не интересно. ================================================= Мы от всей души поздравляем Вас с наступающим Новым Годом и Рождеством и хотим рассказать Вам о наших предложениях и подарках, надеемся они будут полезны и выгодны для Вас и для Вашего нынешнего или будущего сайта в Интернет. Если же у Вас еще нет своего сайта, Вы можете переслать наше письмо своим друзьям-владельцам сайтов в Интернет, скорее всего они будут очень благодарны Вам за это: -- Приглашаем Вас воспользоваться услугами нашей хостинговой компании USERS.Ru - http://www.users.ru , ( зеркало - http://www.companies.ru ) для размещения Ваших сайтов; - у нас лучшая в России скорость (1 Gb/sec), неограниченный траффик,все дополнительные сервисы, большое дисковое пространство (до 3 гигабайт и более), незагруженные сервера, круглосуточная поддержка. С 10 декабря мы ввели Новогодние и Рождественские планы хостинга (http://www.users.ru/nhosting.html), например - план "Рождество" 177 мегабайта дискового пространства, все сервисы, на лучшем канале в России всего за $94 в год(!) + домен в подарок! Также предлагаем отличные ежемесячные (http://www.users.ru/hosting.html) и годовые планы полнофункционального хостинга всего от 4$/месяц или от 39$/год (!) - (http://www.users.ru/yhosting.html) Перенос домена от другого провайдера бесплатно и без перерыва в работе сайта. Регистрация доменов в зонах *.com, *.net, *.org у нас всего $11 в год, *.info, *.biz - $15/год, в зоне *.ru - $24. При оплате хостинга на год - домен в подарок! Никаких скрытых оплат. Скидки для дилеров и если Вы размещаете несколько сайтов. Дополнительные Рождественские скидки и бонусы! У нас действительно лучшие в России условия, цены и качество! Мы принимаем к оплате (помимо обычных способов) и кредитные карты VISA и MasterCard/EuroCard в оплату за хостинг, доменные имена, рекламу, программирование и другие услуги. Помимо этого принимается к оплате WebMoney. Звоните (095) 4308658, 4322846 в рабочее время Факс : (095) 4313384 E-mail: hosting@markets.ru Присоединяйтесь! Мы будем Вам надежным и верным партнером. -- Популярный рейтинг Top.One.Ru предлагает размещение коммерческих оплачиваемых ссылок и баннеров вверху страниц разделов рейтинга всего от $7 в месяц. Выделение цветом и толстым шрифтом ссылки от $2 в месяц. Для размещения коммерческой ссылки или баннера Вам нужно связаться с нами, забронировать место и оплатить размещение на избранный срок. Вы сможете получить чистую целевую аудиторию на свой ресурс за очень небольшие деньги. Полные расценки на размещение коммерческих ссылок и баннеров Вы можете посмотреть здесь: http://top.one.ru/paylink.htm -- Интернет-агентство DeLuxe (http://www.deluxe.ru) совместно с программным бюро ManWill ( http://www.manwill.ru ) c 10 декабря 2001 года проводят небывалую Новогоднюю акцию - создание полнофункционального корпоративного сайта включающего в себя интернет-магазин ( с интегрированной платежной системой для приема кредитных карт VISA и MasterCard/EuroCard) и систему обновления сайта за $1499. Редизайн и обновление существующего сайта с добавлением торговых и интерактивных модулей за $1299. Рекламные и промо-акции в Интернет от $199 ! Разработка магазинов и аукционов - от $749 ! Звоните нам прямо сейчас: +7(095)7202036 Мы будем рады быть полезными Вам! -------------------------------------------------------------------------------- To unsubscribe from any MailZone lists please visit http://www.mz.ru and enter your e-mail. Do not forget enter all redirect e-mails too. -------------------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 16 17:29:46 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E667D37B419; Sun, 16 Dec 2001 17:29:44 -0800 (PST) Received: (from greid@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBH1Ouu91019; Sun, 16 Dec 2001 17:24:56 -0800 (PST) (envelope-from greid) Date: Sun, 16 Dec 2001 17:24:56 -0800 (PST) From: Message-Id: <200112170124.fBH1Ouu91019@freefall.freebsd.org> To: MikeTodd@miketodd.com, greid@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/32919: Network, Graphics, and USB Mouse support for Gateway solo 9500 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Network, Graphics, and USB Mouse support for Gateway solo 9500 State-Changed-From-To: open->closed State-Changed-By: greid State-Changed-When: Sun Dec 16 17:24:39 PST 2001 State-Changed-Why: If the problem doesn't exist, why file a problem report? http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32919 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 16 23:20:11 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 14B6B37B417 for ; Sun, 16 Dec 2001 23:20:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBH7K1j66430; Sun, 16 Dec 2001 23:20:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 90CFC37B416 for ; Sun, 16 Dec 2001 23:19:16 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBH7JG766289; Sun, 16 Dec 2001 23:19:16 -0800 (PST) (envelope-from nobody) Message-Id: <200112170719.fBH7JG766289@freefall.freebsd.org> Date: Sun, 16 Dec 2001 23:19:16 -0800 (PST) From: Adam Powers To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/32924: raylink driver having problems receiving packets from win98se Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32924 >Category: misc >Synopsis: raylink driver having problems receiving packets from win98se >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 Dec 16 23:20:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Adam Powers >Release: 4.3 Stable >Organization: >Environment: Computer 1 - Desktop 1.3GHz AMD, Windows 98se, WebGear Aviator 2.4 Firmware 4.xx, ISA PCMCIA card Computer 2 - Laptop 366MHz Celeron, FreeBSDd 4.3 Stable, Generic kernel, WebGear Aviator 2.4 Firmware 4.xx (dual boot to Windows 98se) >Description: hardware is fully function when speaking win98se<->win98se. ray_rx() drops all packets because of an incorrect 802.11 header version. upon modifying the driver to print out the contents of the packets it receives, it appears that all packets contain the same repeating byte: "0x55 0x55 0x55 ...". it seems that ray_tx() is working fine because ethereal running on the windows 98 machine shows arp requests from the fbsd box and shows windows sending arp replies. also note that previous to printing out packet contents, a debug message would occasionally say "incorrect header version: ", but i haven't seen that since. my test code, kernel object and messages file are available on request. (adam.powers@intel.com) >How-To-Repeat: attempt to use webgear aviator 2.4 cards to communicate between windows 98se and freebsd >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 17 1:30:11 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 65CA437B416 for ; Mon, 17 Dec 2001 01:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBH9U1r95602; Mon, 17 Dec 2001 01:30:01 -0800 (PST) (envelope-from gnats) Date: Mon, 17 Dec 2001 01:30:01 -0800 (PST) Message-Id: <200112170930.fBH9U1r95602@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Crist J . Clark" Subject: Re: conf/32841: kernel ppp sample conf files missing from /etc/ppp for FBSD version 4.4 Reply-To: "Crist J . Clark" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR conf/32841; it has been noted by GNATS. From: "Crist J . Clark" To: Joseph Barbish Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: conf/32841: kernel ppp sample conf files missing from /etc/ppp for FBSD version 4.4 Date: Mon, 17 Dec 2001 01:24:37 -0800 On Fri, Dec 14, 2001 at 03:14:05PM -0800, Joseph Barbish wrote: [snip] > >Description: > The 4.4 version as distributed is missing the sample /etc/ppp/option file and all other assocated conf files for kernel ppp. The man pppd says they should be there. > >How-To-Repeat: > Look for your self. > >Fix: > look into previous releases for samples and move forward. If kernel is being rewritten then add option file containing statments explaning why files are not there. Want to see sample containing modem dial out to ISP and modem dial in to the FBSD box showing both static and dynamic IP address configurations. Correct, there are no pppd(8) '/etc/ppp/options' examples anywhere in the distribution nor can I find any traces that there have ever been any. However, I don't see where it is actually said anywhere that they should exist with this one exception from the manpage, EXAMPLES The following examples assume that the /etc/ppp/options file contains the auth option (as in the default /etc/ppp/options file in the ppp distribution). I cannot find a default /etc/ppp/options in the pppd distribution or any evidence there ever was one. So to summarize, where in pppd(8) did you see it say that the /etc/ppp/options exists before the user creates one? I think the only fix might be to remove the parenthesized portion in the above sentence. -- "It's always funny until someone gets hurt. Then it's hilarious." Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 17 1:40: 7 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A718A37B405 for ; Mon, 17 Dec 2001 01:40:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBH9e3397030; Mon, 17 Dec 2001 01:40:03 -0800 (PST) (envelope-from gnats) Date: Mon, 17 Dec 2001 01:40:03 -0800 (PST) Message-Id: <200112170940.fBH9e3397030@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Crist J . Clark" Subject: Re: conf/32842: User ppp sample configuration files in /etc/ppp are out of date with FBSD version 4.4 Reply-To: "Crist J . Clark" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR conf/32842; it has been noted by GNATS. From: "Crist J . Clark" To: Joesph Barbish Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: conf/32842: User ppp sample configuration files in /etc/ppp are out of date with FBSD version 4.4 Date: Mon, 17 Dec 2001 01:39:34 -0800 On Fri, Dec 14, 2001 at 03:52:27PM -0800, Joesph Barbish wrote: [snip] > >Description: > The sample user ppp configuration files distributed with the version 4.4 located in /etc/ppp are out of date and obsolete. What exactly is out of date about them? > >Fix: > Replace content of /etc/ppp/ppp.conf with following content for ppp.conf, and update default section of existing /etc/gettytab as showen by included sample gettytab file. [snip] This very verbose example is probably better suited to /usr/share/examples/ppp. The examples in /etc/ppp are bare minimums. Could you have a look in /usr/share/examples/ppp and see which file(s) in there you think could be improved? I don't think we want to put something this complex in /etc/ppp. -- "It's always funny until someone gets hurt. Then it's hilarious." Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 17 3: 9:55 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BE38F37B425; Mon, 17 Dec 2001 03:09:49 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBHB0M513924; Mon, 17 Dec 2001 03:00:22 -0800 (PST) (envelope-from cjc) Date: Mon, 17 Dec 2001 03:00:22 -0800 (PST) From: Message-Id: <200112171100.fBHB0M513924@freefall.freebsd.org> To: freebsd.org@daveola.com, cjc@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/31204: FreeBSD login will display secure log notices before password is given Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: FreeBSD login will display secure log notices before password is given State-Changed-From-To: feedback->closed State-Changed-By: cjc State-Changed-When: Mon Dec 17 02:58:35 PST 2001 State-Changed-Why: Feedback timeout, over 2 months. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31204 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 17 3:39:47 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CEDDA37B416; Mon, 17 Dec 2001 03:39:45 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBHBTwj21977; Mon, 17 Dec 2001 03:29:58 -0800 (PST) (envelope-from cjc) Date: Mon, 17 Dec 2001 03:29:58 -0800 (PST) From: Message-Id: <200112171129.fBHBTwj21977@freefall.freebsd.org> To: yar@comp.chem.msu.su, cjc@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/32816: ntpd/ntpdc incompatibility across the last two versions Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: ntpd/ntpdc incompatibility across the last two versions State-Changed-From-To: open->closed State-Changed-By: cjc State-Changed-When: Mon Dec 17 03:27:29 PST 2001 State-Changed-Why: The documentation on ntpdc(8) seems pretty clear, The operation of ntpdc are specific to the particular implementation of the ntpd(8) daemon and can be expected to work only with this and maybe some previous versions of the daemon. The two versions in the PR are ones that do not play well together. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32816 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 17 3:40: 9 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6591737B417 for ; Mon, 17 Dec 2001 03:40:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBHBe4Q24309; Mon, 17 Dec 2001 03:40:04 -0800 (PST) (envelope-from gnats) Date: Mon, 17 Dec 2001 03:40:04 -0800 (PST) Message-Id: <200112171140.fBHBe4Q24309@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Crist J . Clark" Subject: Re: bin/32740: ftpd segfaults after get Reply-To: "Crist J . Clark" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/32740; it has been noted by GNATS. From: "Crist J . Clark" To: "Alexandr P. Kovalenko" Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/32740: ftpd segfaults after get Date: Mon, 17 Dec 2001 03:36:09 -0800 On Wed, Dec 12, 2001 at 10:43:38AM +0200, Alexandr P. Kovalenko wrote: [snip] > daily security output: > > pid 43138 (ftpd), uid 3033: exited on signal 11 > > Dec 11 16:35:26 rabbit /kernel: pid 43138 (ftpd), uid 3033: exited on signal 11 > > uid 3033 is user atlon > > >How-To-Repeat: > I cannot reproduce this error for sure, it happens according to very > strange law... > >Fix: > > Haven't find anything that could cause this on 'get' in sources. Maybe you > will? Have a look at, http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/troubleshoot.html#SIGNAL11 Anything there look familiar? Is ftpd(8) the only on dying like this? Do you have a better idea of how to reproduce this yet? -- "It's always funny until someone gets hurt. Then it's hilarious." Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 17 4:19: 1 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 732FB37B41B; Mon, 17 Dec 2001 04:18:58 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBHCChZ39402; Mon, 17 Dec 2001 04:12:43 -0800 (PST) (envelope-from cjc) Date: Mon, 17 Dec 2001 04:12:43 -0800 (PST) From: Message-Id: <200112171212.fBHCChZ39402@freefall.freebsd.org> To: never@nevermind.kiev.ua, cjc@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/32740: ftpd segfaults after get Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: ftpd segfaults after get State-Changed-From-To: open->feedback State-Changed-By: cjc State-Changed-When: Mon Dec 17 04:11:37 PST 2001 State-Changed-Why: We need more information to zero in on any problem (if one exists). http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32740 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 17 4:20:14 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from nsvm09.zaq.ne.jp (nsvm09.zaq.ne.jp [211.124.0.170]) by hub.freebsd.org (Postfix) with SMTP id 9F5E937B41E for ; Mon, 17 Dec 2001 04:19:03 -0800 (PST) Received: (qmail 3477 invoked from network); 17 Dec 2001 21:19:01 +0900 Received: from zaqd3875bb3.zaq.ne.jp (HELO mail.njstar.net) (211.135.91.179) by nsvm09.zaq.ne.jp with SMTP; 17 Dec 2001 21:19:01 +0900 From: "Shannon.G@njstar.com" To: "8687@hotbot.com" <8687@hotbot.com> Message-ID: <1008613073.0733327407@mail.njstar.net> Subject: Conference calls are safe MIME-Version: 1.0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Date: Mon, 17 Dec 2001 04:19:03 -0800 (PST) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Take Control Of Your Conference Calls

Long Distance Conferencing
Only 18 Cents Per Minute

Connects Up To 100 Participants=21

  • No setup fees
  • No contracts or monthly fees
  • Call anytime, from anywhere, to anywhere
  • International Dial In 18 cents per minute
  • Simplicity in set up and administration
  • Operator Help available 24/7
  • G= et the best quality, the easiest to use, and lowest rate in the industry.

    If you like saving = money, fill out the form below and one of our consultants will contact you.

    Required Input Field*

    Name*
    Web Address*
    Company Name*
    State*
    Business Phone*
    Home Phone
    Email Address*
    Type of Business



    This ad is being sent in compliance with Senate Bill 1618= , Title 3, Section 301. You have recently visited our web site, referral or affiliate sit= es which indicated you were interested in communication services. If this email is reaching = you in error and you feel that you have not contacted us, Click here. We sincerely apologize, and assure you will be r= emoved from our distribution list.

    To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 17 7:30:20 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6F26437B41B for ; Mon, 17 Dec 2001 07:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBHFU1F21935; Mon, 17 Dec 2001 07:30:01 -0800 (PST) (envelope-from gnats) Received: from vbook.express.ru (asplinux.ru [195.133.213.194]) by hub.freebsd.org (Postfix) with ESMTP id 5C16837B416 for ; Mon, 17 Dec 2001 07:27:00 -0800 (PST) Received: from vova by vbook.express.ru with local (Exim 3.31 #2) id 16FzfS-0006UA-00 for FreeBSD-gnats-submit@freebsd.org; Mon, 17 Dec 2001 18:27:02 +0300 Message-Id: Date: Mon, 17 Dec 2001 18:27:02 +0300 From: "Vladimir B.Grebenschikov" Reply-To: "Vladimir B.Grebenschikov" To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/32935: /bin/sh buildin echo command have invalid implimentation of command args parser Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32935 >Category: bin >Synopsis: /bin/sh buildin echo command have invalid implimentation of command args parser >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 Dec 17 07:30:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Vladimir B. Grebenschikov >Release: FreeBSD 5.0-CURRENT i386 >Organization: SWsoft >Environment: System: FreeBSD vbook.express.ru 5.0-CURRENT FreeBSD 5.0-CURRENT #4: Mon Dec 17 12:45:42 MSK 2001 root@vbook.express.ru:/usr/local/src/sys/i386/compile/VBOOK i386 also same problem in 4.4-RELEASE >Description: According to manpage sh(1): echo [-en] string Print string to the standard output with a newline appended. -n Suppress the output of the trailing newline. -e Process C-style backslash escape sequences. echo under- stands the following character escapes: But in realality echo accepts either -n or -e flag but not both simultaneously. >How-To-Repeat: $ echo -en "\tGGG\nJJJ\nccc" -en \tGGG\nJJJ\nccc $ but: $ echo -e "\tGGG\nJJJ\nccc" GGG JJJ ccc $ $ echo -n "test" test$ >Fix: diff -u src/bin/sh/bltin/echo.c:1.9.2.1 src/bin/sh/bltin/echo.c:1.9.2.1.10000.2 --- src/bin/sh/bltin/echo.c:1.9.2.1 Fri Jun 30 00:51:59 2000 +++ src/bin/sh/bltin/echo.c Mon Dec 17 18:15:23 2001 @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)echo.c 8.2 (Berkeley) 5/4/95 - * $FreeBSD: src/bin/sh/bltin/echo.c,v 1.9.2.1 2000/06/29 20:51:59 mph Exp $ + * $FreeBSD: src/bin/sh/bltin/echo.c,v 1.9.2.1.10000.2 2001/12/17 15:15:23 kmv Exp $ */ /* @@ -64,16 +64,28 @@ ap = argv; if (argc) ap++; - if ((p = *ap) != NULL) { - if (equal(p, "-n")) { - nflag++; - ap++; - } else if (equal(p, "-e")) { + if ((p = *ap) != NULL && *p == '-') { + ap++; + p++; + do { + if (*p == 'n') { + nflag++; + } +#ifndef eflag + else if (*p == 'e') { + eflag++; + } +#endif + else { + nflag = 0; #ifndef eflag - eflag++; + eflag = 0; #endif - ap++; - } + ap--; + break; + } + p++; + } while (*p); } while ((p = *ap++) != NULL) { while ((c = *p++) != '\0') { -- SWSoft, Moscow Vladimir B. Grebenschikov vova@sw.ru >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 17 8:50:11 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A9D9837B41C for ; Mon, 17 Dec 2001 08:50:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBHGo0Y40163; Mon, 17 Dec 2001 08:50:00 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 40C0C37B417 for ; Mon, 17 Dec 2001 08:45:50 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBHGjoF39147; Mon, 17 Dec 2001 08:45:50 -0800 (PST) (envelope-from nobody) Message-Id: <200112171645.fBHGjoF39147@freefall.freebsd.org> Date: Mon, 17 Dec 2001 08:45:50 -0800 (PST) From: Miguel Mendez To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/32939: UPDATE : ftp/vsftpd to 1.01 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32939 >Category: misc >Synopsis: UPDATE : ftp/vsftpd to 1.01 >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 Dec 17 08:50:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Miguel Mendez >Release: 4.4-STABLE >Organization: n/a >Environment: FreeBSD swordfish.energyhq.org 4.4-STABLE FreeBSD 4.4-STABLE #0: Wed Dec 5 18:08:19 CET 2001 root@swordfish.energyhq.org:/usr/obj/usr/src/sys/SWORDFISH i386 >Description: Neil Blakey-Milner said in the ports list he is outside his country, so I've upgraded this package for him. If he can't or doesn't want to keep mainteinership I can take care of it. >How-To-Repeat: cd /usr/ports/ftp/vsftpd && make install >Fix: begin 644 vsftpd.diff M9&EF9B`MBD@/2!A,S`W =,C1A-64U-C`Y,3$V-&8U,SAB8F1C93$P8V1F-`H` ` end >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 17 9:29:48 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 68FFA37B41D; Mon, 17 Dec 2001 09:29:46 -0800 (PST) Received: (from sumikawa@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBHHL7F48958; Mon, 17 Dec 2001 09:21:07 -0800 (PST) (envelope-from sumikawa) Date: Mon, 17 Dec 2001 09:21:07 -0800 (PST) From: Message-Id: <200112171721.fBHHL7F48958@freefall.freebsd.org> To: mark.andrews@isc.org, sumikawa@FreeBSD.org, freebsd-bugs@FreeBSD.org, sumikawa@FreeBSD.org Subject: Re: kern/32446: redundant casts Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: redundant casts State-Changed-From-To: open->feedback State-Changed-By: sumikawa State-Changed-When: Tue Dec 18 02:17:48 JST 2001 State-Changed-Why: This is for supressing lint warning. Could I close this PR? Responsible-Changed-From-To: freebsd-bugs->sumikawa Responsible-Changed-By: sumikawa Responsible-Changed-When: Tue Dec 18 02:17:48 JST 2001 Responsible-Changed-Why: I'll handle this. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32446 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 17 11: 0:20 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 606FF37B68D for ; Mon, 17 Dec 2001 11:00:07 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBHJ07J72813 for freebsd-bugs@freebsd.org; Mon, 17 Dec 2001 11:00:07 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 17 Dec 2001 11:00:07 -0800 (PST) Message-Id: <200112171900.fBHJ07J72813@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list Subject: open PR's (mis)filed to gnats-admin and in limbo Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Current FreeBSD problem reports Critical problems Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2001/12/12] pending/32765gnats-adminRe ports/32750: Update port: misc/sword-m o [2001/12/14] pending/32845gnats-admin o [2001/12/15] pending/32885gnats-adminRE: [PATCH] net/cvsup-mirror: cvsupd.sh d o [2001/12/15] pending/32894gnats-adminRe: mail/mutt broken since recent changes o [2001/12/17] pending/32942gnats-adminPostgreSQL port broken o [2001/12/17] pending/32943gnats-adminPostgreSQL port broken 6 problems total. Non-critical problems To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 17 11:13: 3 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1A79937B629 for ; Mon, 17 Dec 2001 11:00:13 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBHJ08072828 for freebsd-bugs@freebsd.org; Mon, 17 Dec 2001 11:00:08 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 17 Dec 2001 11:00:08 -0800 (PST) Message-Id: <200112171900.fBHJ08072828@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list Subject: Current problem reports Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org 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 report has been examined by a team member and evaluated. f - feedback The problem has been solved, and the originator has been given a patch or a fix has been committed. The PR remains in this state pending a response from the originator. s - suspended The problem is not being worked on. 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. Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- f [1998/05/13] kern/6630 julian [PATCH] Fix for Cyrix I8254 bug o [1998/07/12] kern/7264 gibbs Buslogic BT 950 scsi card not detected o [1998/11/25] kern/8861 mdodd under heavy (multi interface) traffic ep0 o [1999/02/20] kern/10172 [panics] Kernel (esp kern/sys_pipe.c) die o [1999/05/24] kern/11869 wpaul Network hangging due to xl0: tx underrun o [1999/05/31] kern/11966 TCP copies send and receive socket buffer s [1999/06/05] kern/12041 n_hibma Crashes on startup if Zip drive is switch f [1999/06/25] kern/12395 gibbs Buslogic SCSI cards (BT948) time out unde f [1999/06/30] kern/12466 Fast system hangs under high FS load o [1999/07/13] alpha/12623 alpha Certain valid numeric strings cause a SIG o [1999/08/10] i386/13059 imp Install aborts with panic:aha0: Invalid C o [1999/09/12] kern/13709 panic: sched_sync: fsync failed o [1999/10/30] kern/14614 dillon VM DoS attack (with exploit attached) f [1999/11/22] i386/15040 Installation problems with 3.x FreeBSD o [1999/12/05] kern/15281 Please fix handling Ross(?) host to PCI b o [2000/01/17] misc/16157 green "fire" screensave kills network performan o [2000/02/14] kern/16708 wpaul 3Com 3c900-Combo Ehternet card make kerne o [2000/02/15] kern/16740 mckusick The kernel panics with "ffs_clusteralloc: o [2000/02/18] i386/16802 An user math program have the system on K o [2000/03/15] i386/17391 jhb FreeBSD boot loader does not recognize ke o [2000/03/27] kern/17620 jhay Digi/570i sync driver (if_ar.c) causes sy f [2000/03/28] alpha/17642 alpha FreeBSD/alpha 4.0 RELEASE installation fa o [2000/04/04] bin/17791 mjacob Restore does not handle bad or missing ta f [2000/04/04] i386/17808 cannot swap /dev/.... f [2000/04/18] kern/18074 Fatal trap 12: page fault while in kernel f [2000/04/23] kern/18182 Remote serial gdb no longer works since m o [2000/05/09] misc/18466 dillon install via nfs or ftp media silently tru s [2000/05/17] misc/18641 paul FreeBSD V4.0 crashes when using ifconfig f [2000/05/29] kern/18874 peter 32bit NFS servers export wrong negative v o [2000/05/29] bin/18887 Undefined symbol "_krb_err_txt" in telnet f [2000/06/09] kern/19162 4.0-STABLE panics w/ softupdates and quot o [2000/06/13] kern/19247 jasone uthread_sigaction.c does not do anything o [2000/06/14] misc/19257 Detection of connected ports on a Cyclom f [2000/06/23] kern/19480 System hang when use current (GENERIC) ke o [2000/07/01] conf/19629 dougb /etc/rc.sysctl can't set all syctls s [2000/07/05] kern/19722 rwatson FreeBSD box responds to broadcast IP o [2000/07/12] gnu/19882 obrien ld does not detect all undefined symbols! o [2000/07/30] i386/20308 yokota vidcontrol VESA_800x600 causes a kernel p f [2000/07/31] kern/20310 groudier Symbios 53c875j drivers don't work o [2000/08/03] kern/20375 APM doesn't work properly! Suspend/resum o [2000/08/05] kern/20429 yokota setting flags 0x1 in atkbd0 locks keyboar o [2000/08/08] i386/20495 yokota 4.1-STABLE and 4.1-RELEASE: keyboard does o [2000/08/28] kern/20895 groudier sym driver doesn't work for SYM53C895A o [2000/09/04] misc/21025 msmith BTX loader 1.00 gets 1Gb of memory from B f [2000/09/04] i386/21042 mdodd Keyboard driver problems with PS/2 Model o [2000/09/12] kern/21220 msmith mlx0: I/O error - attempt to write beyond f [2000/09/13] bin/21253 mjacob dump/restore fail on any stream (tape/pip o [2000/09/14] kern/21272 wpaul USB interrupts seem to be turned off o [2000/09/14] kern/21278 gibbs ahc driver wedges on stressed SMP system o [2000/09/17] kern/21323 msmith Lock up at boot on Acer507DX with pci.c 1 f [2000/09/18] kern/21378 Accessing floppy under 4.1-STABLE (with D o [2000/09/19] kern/21397 Floppy drive doesn't work on Compaq ProLi f [2000/10/05] i386/21772 No interrupts for 39160 PCI adapter in PR f [2000/10/06] misc/21782 4.1.1 and ADAPTEC 29160N SCSI controller o [2000/10/06] kern/21783 When msgrcv() blocks, it blocks ALL threa o [2000/11/01] kern/22494 wpaul Fatal trap 12: page fault while in kernel f [2000/11/02] kern/22557 fatal kernel trap 0x2(memory management) f [2000/11/03] bin/22595 brian telnetd tricked into using arbitrary peer o [2000/11/18] kern/22953 keu driver throws 'usb error on rx: IOERR o [2000/11/20] gnu/22972 obrien Internal Compiler Error o [2000/11/25] misc/23103 lacks many ISO C99 features (NAN f [2000/11/27] i386/23145 brian pppoe-test-program panics the server o [2000/11/29] kern/23173 read hangs in linux emulation o [2000/12/04] kern/23258 mckusick panic: softdep_lock: locking against myse f [2000/12/09] kern/23411 SMP Kernel Freezes Machines on Dual Proce a [2000/12/14] kern/23547 msmith only one logical device on Mylex AcceleRA f [2000/12/14] i386/23548 4.x causes Thinkpad 560X disk to spin up/ a [2000/12/21] kern/23740 roam kernel DoS tha could be executed by any u o [2000/12/26] kern/23859 panicked on sofree o [2001/01/17] kern/24418 jasone read/write in thread library (-lc_r) does f [2001/01/18] kern/24433 NFSv3 service hangs when writing large am f [2001/01/30] kern/24740 cy filesystem corruption CFP1080 CAM SCSI ca a [2001/02/02] kern/24811 Networking in FreeBSD 4.2-RELEASE doesn't f [2001/02/15] i386/25123 Heavy NFS traffic over virtual interface f [2001/02/19] kern/25215 RELENG_4 kernel crashes starting SCSI dis f [2001/02/20] kern/25235 OS Hungs up when using with a Battery of f [2001/02/23] i386/25328 4.x stable kernel crash: page fault f [2001/02/27] misc/25407 Error while booting 4.2 : ahc0 Signaled A o [2001/03/09] kern/25632 n_hibma USB modem (umodem) may destroy the cfreel o [2001/03/20] kern/25950 obrien Bad drives on asr look zero-length and pa o [2001/03/24] kern/26048 obrien 4.3-RC: SMP and asr driver don't work to f [2001/03/30] kern/26223 Linux /compat/linux/dev devices doesn't w o [2001/03/30] kern/26224 VFS Panic/SMP/CFLOW(HEAVY network)/Heavy o [2001/04/02] bin/26305 mjacob Cannnot restore partions with FreeBSD 4.x f [2001/04/07] kern/26417 kernel crash using mpd-netgraph f [2001/04/12] kern/26510 kernel panic while booting on Intel STL2 o [2001/04/13] kern/26549 IPsec policies for more than one pair of o [2001/04/20] i386/26736 System freeze booting from (i386) 4.3 flo o [2001/04/25] kern/26840 process doing mmap() over nfs hangs in vm o [2001/05/02] ports/27036 sobomax All Ports using Mesa3 are required with - f [2001/05/02] i386/27042 4.3-RELEASE installation from CDROM fails f [2001/05/02] kern/27048 Bus support (I believe) broken in freeBSD f [2001/05/03] kern/27059 groudier (symbios) SCSI subsystem hangs under heav a [2001/05/10] kern/27250 bp unionfs filesystem panics in large number o [2001/05/11] kern/27275 kernel bug ? o [2001/05/11] kern/27278 ex0 panics system at boot with Ethernet c o [2001/05/17] conf/27408 rc.network hangs at rpc.umntall if stale o [2001/06/07] bin/27939 rlogin uses wrong IP address for remote h o [2001/06/08] kern/27985 Recent -STABLE crashes when accessing dc o [2001/06/09] kern/27987 New ATA Driver failure with VIA Southbrid a [2001/06/09] i386/27991 ssh 1 and 2 login with keys is not possib o [2001/06/09] bin/28002 ru SHARED=symlinks is broken o [2001/06/11] kern/28087 Fatal trap 12: page fault while in kernel f [2001/06/14] kern/28162 RELENG_4 (4.2, 4.3) Panics when system ha f [2001/06/14] kern/28163 in_pcballoc Panic in RELENG_4 with large o [2001/06/15] bin/28191 jdp rtld-elf ignores LD_LIBRARY_PATH o [2001/06/20] i386/28293 imp Dell Latitude CpxJ 750 hangs on install o [2001/06/25] kern/28402 kernel panic caused by softupdates (may b o [2001/06/25] kern/28418 XFree86 4.X panics FreeBSD 4.3-STABLE on o [2001/06/27] kern/28465 Enabling softupdates on a clean but activ o [2001/06/27] kern/28466 When soft updates is enabled, cpl is not o [2001/06/30] i386/28550 Boot: Fatal Trap 12: page fault while in f [2001/06/30] i386/28558 makedev return non-zero status after inst o [2001/07/02] kern/28630 Look like hung up a kernel after few minu f [2001/07/04] kern/28703 Kernel reboot during tape backup of nfs m o [2001/07/05] kern/28751 n_hibma USB Mouse doesn't seem to work! f [2001/07/09] kern/28844 Router/nameserver system crashes 2-3 time o [2001/07/14] kern/28966 pirzyk math libraries in linux emulation do not o [2001/07/14] kern/28974 PPPoE software fails when SOCK_RAW employ o [2001/07/15] ports/28995 max deMime produces blank line in header part o [2001/07/17] i386/29045 Heavy disk usage causes panic in ffs_blkf o [2001/07/19] i386/29096 freebsd 4.2/4.3 hangs after probing devic o [2001/07/21] kern/29121 msdos fs causes kernel panic when writing o [2001/07/22] kern/29150 Incomplete cleanup in the netgraph bridge o [2001/07/24] bin/29191 NFS file locking fails from Solaris 8 cli o [2001/07/24] misc/29200 dcs Syntax errors in /boot/device.hints cause o [2001/07/30] ports/29325 ports Dbview contains an error, because of whic o [2001/08/13] ports/29681 portmgr bsd.port.mk cannot handle some module's P o [2001/08/14] conf/29699 Setting NO_MAILWRAPPER results in a syst o [2001/08/15] kern/29741 ptrace(pid);ptrace(ppid) makes pid and pp o [2001/08/15] kern/29742 PCCARD Modems don't work on cardbus bridg o [2001/08/15] kern/29743 TI-1450 interrupt storm o [2001/08/18] kern/29844 setpgrp does not behave as manual says o [2001/08/18] kern/29847 n_hibma USB usbd_probe_and_attach() is broken and o [2001/08/28] kern/30164 Machine hangs on swap problems. f [2001/08/31] kern/30238 3Com 509-Combo ISA NIC don`t work o [2001/09/03] ports/30292 kde QT/KDE 1.x needs to be removed o [2001/09/03] kern/30300 -current hang caught and crash-dump'd. o [2001/09/04] kern/30307 dmesg output: looutput: mbuf allocation f o [2001/09/04] kern/30315 ifpw broken: curr_dyn_buckets cannot be c o [2001/09/04] ports/30331 portmgr Conflict between bsd.port.mk MAKEFILE var o [2001/09/09] i386/30458 Workstation sometimes hangs when connecte a [2001/09/11] misc/30509 Server stops responding f [2001/09/12] i386/30527 does not like scsi on atrend 6260 dual PI f [2001/09/14] i386/30580 named crashes on 4.4-PRERELEASE o [2001/09/18] kern/30665 acpi_ec driver does not release its resou o [2001/09/19] i386/30670 4.3 and 4.4 mfsroot floppies reboot Dell o [2001/09/20] i386/30693 On new install bootup does endless usb0: f [2001/09/21] i386/30705 msmith Installation fails on system with Mylex A o [2001/09/23] kern/30771 Panic when mounting drive o [2001/09/24] kern/30781 msgrcv call blocks other pthread's jobs a [2001/09/24] i386/30802 gibbs repeat of i386/22760. Adaptec SCSI contro o [2001/09/27] bin/30869 dump does not dump all files of a filesys o [2001/09/28] i386/30898 Inspiron 8100 keyboard unusable off mains o [2001/09/29] kern/30921 ACER mechanic ps/2 keyboard don╢t work an o [2001/09/30] ports/30935 taoka pips sc880 - needs to have syvr4 support o [2001/10/01] i386/30961 On lsdev -> error & BTX halted =( o [2001/10/04] kern/31042 murray Device name conflict o [2001/10/11] i386/31224 XFree4.1 fails to run on Intel i810 o [2001/10/12] kern/31233 Kernel panics after upgrading to 4.4-STAB o [2001/10/13] ports/31254 obrien I cannot compile Java src files using gcj o [2001/10/14] misc/31266 System can be crashed with "ls -al /flopp o [2001/10/15] bin/31304 joe fix crunchgen to work with more contrib-k o [2001/10/16] kern/31310 pthread broken with KVA_PAGES=512 o [2001/10/17] conf/31327 Fixes and improvements for rc.diskless* s o [2001/10/20] kern/31391 n_hibma usb.h uses a variable name "class" which o [2001/10/24] kern/31468 Spontaneous crashes, possible related to o [2001/10/25] kern/31493 BTX halted with big disk and 4.4R o [2001/10/28] ports/31574 gnome sawfish 1.0.1 port claims it requires an f [2001/10/31] i386/31671 4.4 installer hangs at " Mounting root fr o [2001/11/02] kern/31710 kernel reboots; looks like an unintended o [2001/11/03] i386/31728 Install hangs on: (debug screens last wri o [2001/11/12] ports/31938 ports Broken cookie handling in lynx-ssl-2.8.4. o [2001/11/12] ports/31948 steve open-motif: having USE_MOTIF in /etc/make o [2001/11/16] bin/32040 brian 4.4-Release "set mtu" in ppp is broken wi o [2001/11/20] i386/32127 Proliant 1600 kernel panics after SMP is o [2001/11/22] kern/32184 Kernel crashes in ufs code o [2001/11/23] i386/32237 4.4-RELEASE keyboard doesnt work after bo o [2001/11/30] kern/32418 kernel table full o [2001/12/04] ports/32506 ports mod_auth_pam doesn't works o [2001/12/07] conf/32583 jkh System becomes unusable after performing o [2001/12/09] ports/32664 obrien open-motif-devel-2.1.30 registers itself o [2001/12/10] kern/32681 des Reproducable PANIC in -stable and .curren o [2001/12/11] ports/32707 ports ghostscript-gnu fails during install o [2001/12/11] kern/32713 usb mouse detaches from hub and doesnt re o [2001/12/11] ports/32714 kde KDE build failure: Qt's uic core dumps a [2001/12/11] kern/32715 sos ATA-133 Promise Support not detecting car f [2001/12/12] bin/32740 ftpd segfaults after get o [2001/12/12] alpha/32757 alpha fatal kernel trap using generic kernel fo o [2001/12/14] i386/32830 FreeBSD 4.4 install fails on Thinkpad 750 o [2001/12/14] kern/32831 HP Colorado IDE tape drive get wedged eas o [2001/12/16] bin/32895 rebooting between Win98SE and 4.4-2001121 o [2001/12/16] kern/32913 still no support for Intel "eepro100" NIC o [2001/12/16] ports/32923 ports Unbreak port: x11-wm/mosfet-liquid (by ma o [2001/12/17] ports/32929 petef update port: ftp/vsftpd 0.0.15 -> 1.0.1 195 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- s [1996/11/08] gnu/1981 ypserv handles null key incorrectly s [1996/12/30] kern/2325 quota.user enlarged, no boot on 2.2-BETA o [1997/02/07] kern/2690 asami When Using ccd in a mirror mode, file cre o [1997/02/19] kern/2768 ktrace(1) -i dumps corrupted trace data o [1997/02/20] bin/2785 wpaul callbootd uses an unitialized variable a [1997/04/01] bin/3170 vi freaks and dump core if user doesn't e o [1997/04/05] kern/3201 peter de0 not re-enabled after hub down f [1997/05/04] i386/3502 mdodd Merge of if_ix* and if_ie* broke EE/16 su o [1997/05/06] bin/3524 imp rlogin doesn't read $HOSTALIASES for non- o [1997/06/28] misc/3980 peter access via NFS fails during mount-operati o [1997/07/02] kern/4012 peter 2.2-RELEASE/Digital UNIX NFSv3 0 length f f [1997/07/17] kern/4115 peter SunOS NFS file has wrong owner if creator s [1997/07/26] bin/4176 mjacob restore gets confused when run over pipe o [1997/07/30] kern/4194 peter kernel pci driver for Digital 21041 Ether o [1997/08/12] kern/4284 paul le0 goes OACTIVE after some time o [1997/08/22] bin/4357 wosch bug in adduser script causes duplicate UI o [1997/10/01] kern/4666 dfr umount -f doesn't seem to work s [1997/10/01] bin/4672 rdist does not do hard links right when t o [1997/10/03] bin/4683 des restore doesn't correctly handle "sparse" o [1997/10/16] kern/4782 dillon Under certain conditions, several krsh's o [1997/12/14] bin/5297 make incompatibility with System V style o [1997/12/19] kern/5347 peter DEC (de0) ethernet card has no buffers af o [1997/12/31] i386/5401 peter de0 selects wrong media when reconnected o [1998/01/27] kern/5587 des session id gets dropped o [1998/02/28] kern/5877 bmilekic sb_cc counts control data as well as data f [1998/03/16] kern/6035 The system "sort-of" hangs when playing b o [1998/03/19] kern/6066 paul lnc driver does not work correctly with A a [1998/04/07] kern/6238 cg Sound-driver patch for MAD16 (OPTi 928,92 o [1998/04/14] kern/6300 System locks up in SMP mode when accessin a [1998/05/06] bin/6536 pppd doesn't restore drainwait for tty s [1998/06/02] bin/6830 make(1) exhibits confusing and non-standa s [1998/06/23] bin/7033 Same process notified multiple times o [1998/06/24] i386/7057 mdodd 3Com 3C509 locks up, or has >1000ms rtt u s [1998/07/05] kern/7169 cannot use accton on a append-only file f [1998/07/11] kern/7245 processes die with signal 6, if machine o o [1998/07/12] i386/7266 yokota PSM detection failure with Linksys consol s [1998/07/14] kern/7281 [STABLE] Multicast kludge does not work c s [1998/07/27] kern/7410 [PATCH] driver for arlan-655 s [1998/07/27] i386/7420 [PATCH] Maximum socket buffer size (SB_MA s [1998/08/10] kern/7556 sl_compress_init() will fail if called an o [1998/09/11] kern/7902 if_de doesn't properly recognize a "Magic o [1998/09/17] bin/7968 If /usr/libexec/yppwupdate DNE, rpc.yppas o [1998/09/30] gnu/8099 obrien [patch] some bugs in cpio o [1998/10/08] kern/8206 [patch] Unconected UDP socket declined, i o [1998/11/01] kern/8534 insufficient support routines for poll(2) o [1998/11/10] bin/8646 peter Implement rlogind -a option f [1998/11/11] kern/8657 dillon nfs client hung in nfs_bwrite/vfs_busy_pa o [1998/11/18] bin/8745 wosch adduser permit adding `root' and mail ali f [1998/11/20] kern/8778 gibbs Buslogic BT948 in 2 boxes upgraded from S f [1998/11/25] bin/8865 dwmalone syslogd hangs with serial console o [1998/11/29] conf/8903 dillon /etc/rc can do NFS mounts before the netw o [1998/12/21] kern/9163 adrian [patch] squid does not join a multicast g s [1999/01/07] bin/9379 pppd does not go through all interfaces l s [1999/01/08] kern/9391 if_addmulti doesn't check for retifma == o [1999/01/13] kern/9478 assar support for running a script from kldload s [1999/02/06] kern/9927 gibbs the ahc driver doesn't correctly grok swi f [1999/02/13] kern/10066 problem with a X-Window and syscons drive o [1999/02/15] kern/10107 dillon interlock situation with exec_map and a p f [1999/02/25] bin/10264 davidn passwd(1) tryis NIS even with `-l' switch o [1999/02/28] bin/10312 ken pciconf -l generates output incompatible s [1999/03/02] bin/10353 ypserv gets segmentation violation f [1999/03/07] kern/10466 resume causes crashes if BIOS extmem != R o [1999/03/09] bin/10510 Remote cvs botches commits on occassion f [1999/03/14] bin/10596 I can't find out where someone is logged o [1999/03/16] bin/10633 fenner [patch] tcpslice timezone problem and upd a [1999/03/24] kern/10778 ru "ipforward_rt" is not cleared when routin o [1999/03/27] bin/10821 des getpwent() fails on NIS clients after dro o [1999/03/30] kern/10870 eivind Kernel panic when writing to write-protec o [1999/04/07] bin/11005 iedowse `umount -f' does not work if the NFS-serv s [1999/04/08] misc/11024 getpwnam(3) uses incorrect #define to lim s [1999/04/28] conf/11376 NFS mount may be happening too soon in /e o [1999/05/03] kern/11462 imp CS network interface driver (for CS89XX b o [1999/05/04] kern/11490 yokota VESA+VM86+Splash == unstable system o [1999/05/05] kern/11507 imp CS89XX (i386/isa/if_cs.c) fails to proper o [1999/05/05] misc/11525 dwmalone [PATCH] Networking patches to increase # s [1999/05/07] gnu/11562 tar verification doesn't work f [1999/05/13] kern/11686 APM: Always "Resume failure" from suspend o [1999/05/13] kern/11697 tegge Disk failure hangs system o [1999/05/18] i386/11773 yokota mouse works at setup time. Under X it go o [1999/05/28] kern/11922 deischen missing reentrant interfaces for getpwnam f [1999/06/06] bin/12054 explicit -ltermcap after -lncurses causes o [1999/06/22] bin/12349 des 3.2-R inetd doesn't re-read ALL configura o [1999/06/30] kern/12464 bp bad reference in struct vm_zone f [1999/07/06] bin/12538 getpwuid() NIS UID override fails o [1999/07/07] kern/12551 mks ASIC output is shifted following a short o [1999/07/20] bin/12727 billf Game patches from NetBSD f [1999/07/27] kern/12838 PC-Card ctlr(0) Vadem 365 support seems b o [1999/08/14] kern/13141 se Multiple LUN support in NCR driver is bro a [1999/08/15] kern/13150 mckusick panic: ufs_dirbad: bad dir f [1999/08/17] gnu/13200 The assembler chokes on very long operand o [1999/08/27] gnu/13427 gdb reports wrong info f [1999/08/28] gnu/13438 objc forward core dump using system cc f [1999/08/29] bin/13463 /bin/sh does not handle interrupts correc o [1999/09/10] bin/13691 fenner tcpslice cannot extract over 2GB part of o [1999/09/13] kern/13740 jlemon wrong IP statistics s [1999/09/16] conf/13775 multi-user boot may hang in NIS environme s [1999/09/17] i386/13787 lnc driver isn't really the lnc driver f [1999/09/23] misc/13920 pppd acts differently on 3.3-RELEASE ("mi o [1999/09/26] misc/13978 peter a write to last column bug appears since o [1999/09/27] kern/13997 rwatson RLIMIT_NPROC works unadequately for jails f [1999/10/04] misc/14121 resurfaced bug in rmt preventing remote d s [1999/10/04] i386/14135 lpt1 nolonger exists after 3.2-RELEASE o [1999/10/12] kern/14285 dillon NFS client appears to lose data f [1999/10/14] misc/14326 kerberos4 pam-related breakage in current o [1999/10/14] i386/14334 imp AHA-1542A not supported by FreeBSD 3.x (" s [1999/10/20] bin/14444 enigma command can't decrypt files encryp f [1999/10/21] i386/14446 Doesn't boot on Mobile Celeron f [1999/10/25] kern/14536 kernel panic on 64KB block size ufs files o [1999/10/26] kern/14549 mdodd 3C509 broken in 3.3 o [1999/10/27] kern/14566 yokota Non-kernel programs have little/no contro a [1999/11/04] kern/14712 iedowse root has access to NFS mounted directorie f [1999/11/05] kern/14722 TCP connections hangs in FIN_WAIT_2 for > s [1999/11/12] kern/14848 Frame Relay support, corrected a [1999/11/12] misc/14856 billf ftp stalls on FreeBSD 3.3 (CDROM) tested f [1999/11/15] misc/14895 portmap bug (when run with -v flag) o [1999/11/17] i386/14946 mjacob rmt - remote magtape protocol o [1999/11/27] ports/15123 ports www/apache13-modssl has PREFIX problems f f [1999/12/01] kern/15204 systems panics when ktrace-ing f [1999/12/13] kern/15475 pppd(8) sets the Source Address field of s [1999/12/14] kern/15478 incorrect utmp/wtmp records update upon c f [1999/12/17] i386/15548 Intel EtherExpress Pro/10+: Only 1024 byt f [1999/12/20] bin/15581 ftp(1) file completion does not work if s o [1999/12/23] misc/15662 markm [PATCH] perl5 Sys::Hostname fails if no P o [1999/12/26] kern/15707 dillon bad trap in mprotect o [2000/01/01] kern/15825 dillon Softupdates gets behind, runs the system s [2000/01/02] i386/15845 Driver for RealTek 8029 o [2000/01/03] bin/15877 tobez Perl 5.00503 interpreter crashes with a s f [2000/01/04] i386/15879 System hangs while watching the tv and ap f [2000/01/09] kern/16013 FreeBSD 3.3 sends ICMP reply to IP unicas o [2000/01/12] kern/16090 mdodd No buffer space available o [2000/01/17] bin/16155 cp -p does not preserve modification time f [2000/01/19] i386/16214 Driver for Intel EtherExpress 16 is unrel f [2000/01/21] kern/16257 Kernel panic in sbdrop f [2000/01/21] i386/16269 smp dosen't work with >2 cpus on AMI Goli a [2000/01/22] kern/16299 tmm nfs.ko can be unloaded when nfsd is runni f [2000/01/23] kern/16318 Fix for wrong interface when adding new r f [2000/01/25] i386/16349 Intel EtherExpress Pro/10+ card detection f [2000/01/25] bin/16353 rlogin encryption is broken on transmit s o [2000/01/27] ports/16396 portmgr libtool -export-symbols doesn't restrict f [2000/01/27] kern/16416 Hang on boot with SMP Dell 2400 o [2000/02/08] kern/16587 cg Can't record with newpcm & CS4236 (AW35/P f [2000/02/10] kern/16644 Bad comparsion expression in bpf_filter.c o [2000/02/21] conf/16879 tanimura Sound drivers seem to be using shared irq o [2000/02/23] conf/16948 qa Sysinstall/disklabel: bad partition table o [2000/02/25] misc/16991 jhb booting install disk and USB f [2000/02/28] bin/17056 rshd does improper home directory check s [2000/03/01] misc/17108 SecureRPC not supported in mount_nfs comm f [2000/03/02] bin/17134 problem with 3.0-RELEASE cron forgetting f [2000/03/03] kern/17142 4.0-CURRENT hangs in ex_isa_identify() wh o [2000/03/10] misc/17310 wpaul NIS host name resolving may loop forever o [2000/03/13] bin/17360 green [PATCH] Cleanup bug in pam_ssh o [2000/03/16] kern/17422 bde 4.0-STABLE: top: nlist failed f [2000/03/17] gnu/17433 libobjc locks mutex before deallocating i o [2000/03/20] kern/17504 ken Another Micropolis Synchronize Cache Prob f [2000/03/20] misc/17517 wpaul 100/10baseT card resets under load s [2000/03/21] conf/17540 NIS host lookups cause NFS mounts to wedg f [2000/03/21] kern/17542 greid random static with GUS PnP o [2000/03/24] misc/17584 groudier fatal SCSI error with a Symbios 53c875 co o [2000/03/27] i386/17626 green sshd cores when I scp to it f [2000/03/28] kern/17634 Non-deterministic PnP sound device config o [2000/03/28] alpha/17637 billf misconfigured syscons bell causes panic o o [2000/03/29] i386/17662 gibbs cam_xpt.c incorrectly disables tagged que o [2000/03/31] i386/17713 gibbs MAKEDEV and /stand/sysinstall goofups wit f [2000/04/02] i386/17761 disk label editor in 4.0 deleted 3.4 part o [2000/04/04] i386/17800 bde [PATCH] problem with statclock initializa f [2000/04/06] kern/17829 The dc driver is seriously broken f [2000/04/07] kern/17842 Erratic user time reports for long runnin o [2000/04/07] bin/17843 ftpd fails to set cwd with mode 700 NFS m f [2000/04/10] kern/17895 dwmalone stale unix domain connections f [2000/04/10] kern/17905 dillon 4.0-SNAP keep on crashing every 3 days o [2000/04/11] i386/17926 yokota psm device problems with apm resume f [2000/04/11] kern/17936 panic: resource_list_alloc: resource entr o [2000/04/12] kern/17961 n_hibma Fatal Trap 12. Page fault while in kernel o [2000/04/12] kern/17965 wpaul vr (MII-bus version in 4.0 ONLY) driver l o [2000/04/14] kern/18012 adrian vnode_free_list corruption, "free vnode i o [2000/04/17] misc/18065 mdodd FREEBSD 4.0 crashes on boot Compaq Prolia o [2000/04/23] ports/18180 jmz xdm authorization fails with XDM-AUTHORIZ s [2000/04/23] bin/18181 Getty can fail to observe :de: specificat f [2000/04/23] i386/18185 gibbs Adaptec 3950U2 errors during boot/probe o [2000/04/24] kern/18200 mdodd 3com 3c509b recognized twice during boot f [2000/04/25] kern/18209 green rlimits are never checked in exec() if ex o [2000/04/28] kern/18285 the system froze when use scon -s 50 f [2000/04/30] kern/18316 close-together bt848/878 captures to file o [2000/05/02] kern/18345 cg sbc / pcm not fully recognizing AWE64 o [2000/05/02] kern/18348 yokota tags o [2000/07/19] kern/20040 msmith Toshiba 2775 hangs after pcib0 driver is o [2000/07/25] misc/20172 byacc 1.9 fails to generate $default tran f [2000/07/27] kern/20213 NFS and Linuxulator issues in PR kern/194 f [2000/07/27] kern/20217 darrenr IPF default block and inclusion in rc.net o [2000/07/27] kern/20234 green panic(): lockmgr: pid 259, not exclusive f [2000/07/28] bin/20259 des fetch(1) confused when redirected from ht o [2000/07/29] conf/20282 qa sysinstall does not recover some /etc fil f [2000/07/31] kern/20335 yokota S3Trio64V+ is detected as CGA by syscons a [2000/08/02] bin/20373 Setting breakpoints in shared objects bro o [2000/08/08] ports/20490 tg Termios timeout parameters, VMIN, VTIME, f [2000/08/09] i386/20507 yokota Mouse freezes in 4.0-release after some u o [2000/08/10] misc/20521 mjacob /etc/rmt several problems o [2000/08/10] kern/20523 Support for PCI multiport cards for sio d o [2000/08/13] kern/20572 marcel cannot safely remove COMPAT_43 from the k o [2000/08/14] kern/20609 dillon panic: vm_fault: fault on nofault entry, f [2000/08/15] kern/20632 stacking mount_null causes an error: moun o [2000/08/15] bin/20633 fdisk doesn't handle LBA correctly f [2000/08/17] i386/20685 fbsd 4.1-stable crashed when compiling st f [2000/08/17] kern/20689 groudier Newbusified version of ncr driver does no o [2000/08/18] kern/20708 imp Adaptec 1542 ISA SCSI Controller not dete f [2000/08/22] bin/20779 assar junk pointer error causes kpasswd to fail o [2000/08/26] misc/20861 jasone libc_r does not honor socket timeouts o [2000/08/28] gnu/20912 gdb does not recognise old executables. f [2000/08/30] bin/20952 markm ftpd doesn't honor account expiration tim o [2000/08/31] kern/20958 mdodd ep0 lockup with ifconfig showing OACTIVE o [2000/09/07] misc/21089 vi silently corrupt open file on SIGINT w f [2000/09/08] kern/21131 Floppy causing cold boot in -STABLE f [2000/09/08] kern/21139 ken IBM DNES drives need 'quirk table' entry. o [2000/09/11] bin/21208 tar does not support 2.5 GB file o [2000/09/11] kern/21209 groudier scsi ncr driver installs instead of scsi a [2000/09/13] bin/21248 kris openssl dumps core with blank passwords o [2000/09/13] bin/21251 NIS problem - ypbind does loop in CLNT_BR o [2000/09/14] gnu/21260 buffer overrun in uux o [2000/09/14] ports/21264 markm tn3270 port receives segmentation fault f [2000/09/14] kern/21270 Kernel compilation errors and dies when c o [2000/09/14] gnu/21276 libI77 is unable to handle files >2Gbytes o [2000/09/15] bin/21292 ifconfig warn but does duplicate IP addre f [2000/09/15] i386/21297 kernel panic TRAP 18 during kern.flp inst o [2000/09/15] kern/21304 wpaul dc0 watchdog timeouts on NetGear FA310TX o [2000/09/15] kern/21305 roger bktr driver dosn't send signals in contin s [2000/09/18] misc/21384 greid pcm driver has static in recorded audio o [2000/09/19] misc/21406 freebsd's bootinst or booteasy overwrites f [2000/09/20] kern/21424 Blocking issue while regenerating aliases o [2000/09/20] gnu/21433 g++ optimiser produces bad code on right o [2000/09/21] kern/21461 imp ISA PnP resource allocator problem o [2000/09/21] kern/21463 emulationLinux compatability mode should not allow o [2000/09/26] i386/21559 BTX loader sometime show registers f [2000/09/27] bin/21603 green Can't change user passwords on 4.1.1-STAB f [2000/09/28] i386/21624 trap in gusc_attach f [2000/09/28] kern/21631 4.1.1 Release and Stable don't detect my o [2000/09/28] kern/21642 Compaq Netelligent 10/100 card (TI Thunde f [2000/10/01] kern/21688 Kernel crash with Adaptec AAA-133 and ahc f [2000/10/02] misc/21701 qa Keymap selection menu broken on initial i o [2000/10/02] docs/21708 jlemon kqueue/kevent man pages isn't specific ab o [2000/10/02] ports/21714 sobomax audio problem with nil o [2000/10/05] kern/21771 murray Fix for sppp and Cronyx drivers update f [2000/10/06] kern/21791 Hang on FIN_WAIT_2 a [2000/10/06] kern/21808 [patches] msdosfs incorrectly handles vno o [2000/10/15] misc/21998 green ident only for outgoing connections o [2000/10/16] kern/22029 mckusick use of softdependencies leads to major fi o [2000/10/17] kern/22063 jdp bpf when used with the select system call o [2000/10/19] kern/22142 securelevel does not affect mount o [2000/10/22] bin/22212 skeyaccess(3) doesn't for primary group f [2000/10/23] kern/22265 Suspend only possible once after reboot o [2000/10/24] misc/22284 Change (SunOS) NIS passwd error o [2000/10/25] bin/22291 getcwd() fails on recently-modified NFS-m f [2000/10/26] i386/22315 Cannot reboot or power-off the machine o [2000/10/29] ports/22403 portmgr "make readmes" hangs if category director o [2000/10/30] kern/22417 gibbs advansys wide scsi driver does not suppor a [2000/10/30] ports/22421 ports New port: Enhydra 3.1 beta 1 o [2000/10/31] i386/22441 pmap_growkernel() is not effective at ker f [2000/11/04] i386/22606 Panic on boot: panic string "panic ahc0: o [2000/11/05] bin/22614 billf pam_ssh dumps core o [2000/11/05] kern/22624 Interrupt conflict btw. vga and Ethernet o [2000/11/06] gnu/22635 Why don't you use truncate(2) in libI77 o [2000/11/06] bin/22647 rmail calls sendmail with -G which upsets f [2000/11/07] kern/22677 (Was pr: misc/11525) similar behavior in o [2000/11/13] kern/22826 emulationMemory limits have no effect in linux com o [2000/11/14] bin/22846 Routed does not reflect preference of Int f [2000/11/15] kern/22862 ncr probe fails with CACHE TEST FAILED: ? o [2000/11/15] kern/22866 Packets send on INET6 sockets compatible f [2000/11/17] kern/22926 kernel 4.1-RELEASE, 4.1.1-RELEASE (floppy o [2000/11/18] kern/22943 emulationProblem with linux emulation o [2000/11/18] i386/22944 isa_dmainit fails on machines with 512MB a [2000/11/18] kern/22947 jon IBM 10/100 EtherJet Cardbus (Xircom X3201 f [2000/11/18] kern/22951 failed drive causes panic with HPT370 RAI f [2000/11/19] i386/22969 4.1.1 stable kernel cannot find console f [2000/11/22] i386/23039 disklabel editor couldn't create partitio o [2000/11/23] gnu/23058 ncurses: tgoto_internal() ugliness o [2000/11/24] misc/23069 jkh Compat22 does not work until you reboot o [2000/11/25] bin/23098 murray If installing on a serial console, enable f [2000/11/26] misc/23120 '|more' takes up to 100% system resources o [2000/11/26] ports/23125 ports Successful emulation of StarOffice depend f [2000/11/29] i386/23188 PCI modem doesn't work with 4.1-RELEASE w f [2000/11/30] conf/23192 FTP REALLY slow on internal NIC aswel (12 a [2000/11/30] bin/23203 opie doesn't know that ssh connections ar o [2000/12/04] bin/23269 green OpenSSH TIS Authentication support has br f [2000/12/06] i386/23320 Can`t create a new thread for connect to o [2000/12/07] bin/23352 [SECURITY] buffer overflow in opieftpd o [2000/12/07] ports/23358 ports New port: java/jakarta-oro f [2000/12/07] misc/23364 gethostbyaddr takes longer or locks up an a [2000/12/07] misc/23376 tobez The version of CGI.pm bundled with perl i o [2000/12/08] kern/23400 IPsec transport mode precludes filtering o [2000/12/11] kern/23468 imp xe Driver causes kernel panic when Xircom f [2000/12/11] i386/23485 Freebsd Kernel: unknown Vr0 rx Error occ o [2000/12/11] bin/23489 tcsh fails to do file completion on non-E o [2000/12/12] kern/23515 get error in messages system log "Dec 11 o [2000/12/13] kern/23535 imp 4.x kernels seem to no longer support Ada f [2000/12/13] conf/23537 Post 4.2 RELEASE errata problem about pas o [2000/12/14] misc/23561 emulationLinux compatibility mode does not support f [2000/12/15] i386/23572 486/66 on Micronics motherboard will not o [2000/12/16] gnu/23593 obrien [patch] possible fix to awk(1) o [2000/12/18] ports/23638 kuriyama Add turbine-pool.jar to Cocoon CLASSPATH o [2000/12/19] gnu/23678 gdb won't exit if attached process disapp o [2000/12/22] kern/23771 bridge/firewall doesn't work as in bridge o [2000/12/26] bin/23866 dwmalone patch for pointing out current date o [2001/01/02] kern/24032 markm rndcontrol and pccardd use of interupt ha o [2001/01/03] kern/24059 n_hibma USB support broken in SMP kernel o [2001/01/04] kern/24070 n_hibma uhci USB driver disables port on reatachi o [2001/01/04] kern/24074 mdodd Properties of token-ring protocol must be f [2001/01/04] gnu/24082 Use of seekp() in C++ programs causes seg f [2001/01/05] kern/24085 syncing on shutdown leaves filesystem dir o [2001/01/06] kern/24100 imp Having a 3c589 PCMCIA/PCCARD inserted pre o [2001/01/06] docs/24125 wes connect(2) can yield EWOULDBLOCK/EAGAIN f [2001/01/09] i386/24210 compaq dl360 hangs with smp kernel o [2001/01/10] conf/24238 First physical interface always has IPv6 o [2001/01/12] bin/24271 dumpon should check its argument more f [2001/01/14] kern/24335 Crash when returning from single user mod f [2001/01/15] kern/24365 delete alias from ipv6 p-t-p iface will c a [2001/01/16] bin/24377 schweikh make(1) does not correctly substitute in o [2001/01/16] misc/24391 cannot kill amd after interface disappear o [2001/01/19] bin/24461 pirzyk Being able to increase the YP timeout wit o [2001/01/19] bin/24472 libc_r does not honor SO_SNDTIMEO/SO_RCVT o [2001/01/22] kern/24559 aio_suspend() had Bus error when using -l s [2001/01/23] misc/24590 timezone function not compatible witn Sin f [2001/01/23] kern/24593 NFS hang between stable and current boxes o [2001/01/25] kern/24629 ng_socket failes to declare connected dat o [2001/01/25] bin/24632 libc_r delicate deviation from libc in ha o [2001/01/25] misc/24641 pthread_rwlock_rdlock can deadlock o [2001/01/28] bin/24691 map-mbone segfaults at getsockname o [2001/01/28] i386/24701 tempnam() possibly used unsafely by libg2 o [2001/01/29] ports/24711 portmgr ${MAKEFILE} causing trouble with ports o [2001/01/29] misc/24712 Getting message /usr/libexec/ld-elf.so.1: o [2001/01/29] bin/24721 libgcc_r problem - library precedence wit o [2001/01/30] i386/24737 Socks5 clients die with leaving zombie pr a [2001/01/31] ports/24753 ports Pipsecd may get a tun device with the IFH o [2001/02/01] ports/24778 portmgr "update" target not available in categori o [2001/02/06] gnu/24903 Patch to remove 32bit limit from tar o [2001/02/06] i386/24916 SCSI timeout errors with adv0 driver (Adv o [2001/02/09] kern/24982 stack gap usage o [2001/02/10] i386/24997 /boot/loader cannot handle extended dos p o [2001/02/11] ports/25007 max telnetx problem on 4.x o [2001/02/12] kern/25037 top doesn't show CPU states (shows zeroes o [2001/02/12] kern/25038 dhcp client could not set hostname on boo o [2001/02/13] kern/25067 adrian able to mount a pathname > 80 char. but u o [2001/02/14] kern/25093 4.2-STABLE does not recognize PCNet-ISA+ f [2001/02/16] kern/25136 Fatal trap 12: page fault while in kernel o [2001/02/16] bin/25153 pirzyk kdump does not finish displaying data a [2001/02/19] kern/25201 imp pccard event and syscons beep duration de o [2001/02/19] kern/25213 peter Bus abstraction interface doesn't allow p f [2001/02/19] i386/25214 Installing 4.2, and after the initial set o [2001/02/20] bin/25244 termcap and printcap interference f [2001/02/21] kern/25245 mounting NFS to/from same host + activity o [2001/02/21] kern/25248 bde sys/user.h needs sys/param.h, but doesn't f [2001/02/21] kern/25261 gibbs ahc0 no active SCB errors when booting of o [2001/02/21] ports/25272 rse Using eperl as cgi/nph binary executor ca o [2001/02/23] bin/25337 rwatson dmesg -a should be restricted o [2001/02/24] kern/25344 ipfilter and ppp insecure in 4.2-Stable f [2001/02/24] kern/25346 Some interrupts not delivered on Dell Wor o [2001/02/25] ports/25374 okazaki A new port math/atlas highly optimized BL o [2001/02/28] bin/25461 qa sysinstall's fdisk and disklabel don't wo f [2001/02/28] kern/25464 if_xl.so kld does not work with "options o [2001/02/28] ports/25466 netscape navigator 4.7 package installati f [2001/03/01] kern/25476 [PATCH] The syscall oldgetkerninfo can re o [2001/03/03] kern/25511 ioctl(fd, FIONREAD, &c) on a FIFO (not PI o [2001/03/04] ports/25522 portmgr FORBIDDEN ports doesn't return error for o [2001/03/05] bin/25542 /bin/sh: null char in quoted string o [2001/03/07] misc/25585 sed.test 8.16 puts bugged sed into infini o [2001/03/07] bin/25586 green Password expiration doesn't work after up f [2001/03/11] i386/25693 VGA driver on Current not found o [2001/03/13] kern/25781 Statclocks cannot be disables on ServerWo o [2001/03/14] misc/25801 imp change IP-address on pccard (3Com) fails o [2001/03/15] bin/25826 nfsd -t -h adr1 -h adr2 doesn't work o [2001/03/16] misc/25851 qa Security hole in anonymous FTP setup scri o [2001/03/17] bin/25886 cgetset(3) doesn't get cleared when switc o [2001/03/18] i386/25889 FDISK lost a partition ! o [2001/03/19] bin/25929 Can't use MAKEDEV in fixit mount o [2001/03/20] kern/25949 msmith camcontrol doesn't find new drives or RAI o [2001/03/20] i386/25958 msmith Xfree86's savage and vesa drivers can pan o [2001/03/21] i386/25968 /usr/src/lib/libcrypt/../libutil/property o [2001/03/22] kern/25986 Socket would hang at LAST_ACK forever. o [2001/03/22] misc/26002 n_hibma Poor read/write performance on uhci USB c o [2001/03/22] kern/26013 Linksys (rev 3) USB 100TX NIC causes infi o [2001/03/23] ports/26036 dima acroread4 produces invalid postscript in o [2001/03/25] kern/26078 Jails cannot connect to the main server a o [2001/03/26] bin/26093 markm pam_unix rejects authenticating accounts o [2001/03/27] kern/26142 Unlink fails on NFS mounted filesystem f [2001/03/27] kern/26161 Kernel Panic on Dual Processor System dur o [2001/03/28] kern/26171 emulationnot work Linux-emulator, but hi is work i o [2001/03/31] i386/26261 silo overflow problem in sio driver f [2001/04/01] conf/26275 darrenr ipfilter_enable in rc.conf does not load o [2001/04/02] bin/26307 libc_r aborts when using the KDE media pl o [2001/04/03] kern/26309 PPPoE client panics in kernel - fxp probl o [2001/04/03] misc/26320 mountd breaks IRIX automounter f [2001/04/04] kern/26356 Large copy of files to the machine causes f [2001/04/04] kern/26361 5.0-04022001-CURRENT kernel panic on kern f [2001/04/05] gnu/26362 "cvs server" doesn't honour the global -- o [2001/04/06] kern/26384 dc driver hangs in dc_rxeof o [2001/04/08] kern/26430 cg -CURRENT panics on cat /dev/dsp or cat /d o [2001/04/09] ports/26464 ports Citrix client no longer reads files in lo o [2001/04/10] misc/26486 setnetgrent hangs when netgroup contains o [2001/04/11] kern/26501 imp Unsuported PCCARD freeze the kernel in is o [2001/04/12] kern/26506 sendto() syscall returns EINVAL in jail e a [2001/04/12] kern/26517 sos ATAPI DVD drive not recognized (solo mast o [2001/04/14] kern/26567 Mouse driver will not properly restart if o [2001/04/14] kern/26568 Mouse driver will die if you move mouse a o [2001/04/16] kern/26613 ethernet vr0 hangs o [2001/04/19] kern/26704 AHA-2940[UW] gives MPARERR on cold boot ( o [2001/04/23] ports/26797 assar arla-0.34.6 causes kernel panic/page faul o [2001/04/23] bin/26809 /etc not saved on upgrade o [2001/04/25] bin/26842 dd dump with h flag takes a very long time o [2001/04/25] ports/26848 sobomax jre port core dumps o [2001/04/25] bin/26869 vi(1) crashes in viewing a file with long o [2001/04/27] ports/26891 dwcjr Star Office 5.2 doesn't run after install o [2001/04/27] kern/26896 Kernel panic during ktrace (vrele: negati o [2001/04/27] misc/26897 qa 4.3R sysinstall fails to create swap part f [2001/04/27] i386/26903 qa Cannot use DHCP from /stand/sysinstall ne o [2001/04/28] kern/26920 imp PCI autoconfiguration of USB, dc ether, a o [2001/04/29] kern/26953 adter the installation is over it's make o [2001/04/30] i386/26985 jkh floppy install 4.3 via FTP hangs o [2001/04/30] bin/26996 green sshd fails when / mounted read-only o [2001/05/01] kern/27020 FreeBSD 4.3RC compiled with an SMP kernel o [2001/05/02] kern/27044 remounting a r/w filesystem read-only cau o [2001/05/02] ports/27052 portmgr libtool port broken in 4.3 RELEASE o [2001/05/04] bin/27086 green OpenSSH does not set X11 forwarding o [2001/05/04] kern/27087 FreeBSD 4.3-RELEASE does not recognize Gi a [2001/05/08] ports/27202 dougb mail/pine sucks rocks when saving over NF o [2001/05/09] bin/27230 nectar Users after NIS lines in /etc/passwd o [2001/05/09] kern/27237 Watchdog Timeouts under EXCESSIVE load o [2001/05/09] kern/27242 SIGHUP propagation failure to processes o o [2001/05/10] i386/27247 Panic on install - "page fault syncing di o [2001/05/10] kern/27262 process won't be terminated after CPUTIME a [2001/05/15] ports/27358 znerd Naming scheme for JDK ports (java) f [2001/05/16] misc/27384 SCSI Hardrive bios of COMPAQ Proliant is o [2001/05/16] misc/27400 4.3 install hangs because it is looking f f [2001/05/17] i386/27404 FreeBSD-4.3 crashes in VMware o [2001/05/17] ports/27419 jhb E-FancyLauncer clones itself over and ove o [2001/05/20] kern/27474 Interactive use of user PPP and ipfilter o [2001/05/21] misc/27498 grog vinum crashed after 'vinum dumpconfig' o [2001/05/21] kern/27522 des linprocfs:/proc/stat does not handle SMP o [2001/05/22] kern/27543 des /proc/cpuinfo does not handle SMP hosts o [2001/05/23] bin/27593 sos burncd msinfo returns wrong info at more o [2001/05/23] docs/27605 doc Cross-document references () f [2001/05/24] bin/27630 mktime failure. o [2001/05/27] kern/27694 cg Panic in csa(4) f [2001/05/28] i386/27711 panic: ffs_write: type: 0xc39b2fc9 9 (0,5 f [2001/05/29] i386/27729 qa the ls120 device "afd" does not show up u a [2001/05/29] ports/27739 ports Broken Port: textproc/pspell-ispell -- co o [2001/06/01] misc/27810 rpc.statd can loop o [2001/06/04] ports/27875 ports invoked on boot, SIGHUP is delivered and f [2001/06/04] misc/27880 select fails to return incoming connect o [2001/06/04] ports/27883 bp shares mounted by the smbfs-1.4.1 port ar o [2001/06/05] misc/27893 can't burn audio cds on LG CD-RW CED-8083 o [2001/06/05] misc/27896 Error in /etc/exports invalidates entire o [2001/06/07] ports/27925 portmgr index is not updated when it html manpage o [2001/06/07] ports/27926 portmgr bsd.port.mk does not handle MLINKS with h o [2001/06/07] ports/27929 jmz make extract on x11/XFree86-4 port fails o [2001/06/09] bin/27988 [PATCH] let pam_ssh.so explicitly start s o [2001/06/09] kern/27995 src/sys/pci if_pcn.c revision 1.21 resp. o [2001/06/12] misc/28095 [PATCH] pax may descend into directories o [2001/06/12] kern/28100 Hang after device probe on EISA machine o [2001/06/12] ports/28102 assar Recent changes to 4.3-STABLE break arla-0 o [2001/06/12] kern/28112 Packet capture does not work well with -p o [2001/06/14] ports/28155 portmgr DESTDIR is used incorrectly in bsd.port.m o [2001/06/15] kern/28173 Problem with Touchpad on Inspiron 5000e o [2001/06/15] ports/28179 nbm vsftpd port creates a user without a warn o [2001/06/15] misc/28188 Cron is being started to early in /etc/rc o [2001/06/16] kern/28218 A peer of TCP socket cannot detect termin o [2001/06/16] bin/28221 eric dialog(1) segfaults (due to the bug in li o [2001/06/17] bin/28223 su doesn't look at login.conf all the tim o [2001/06/17] bin/28224 ftpd doesn't honor invalid shelll in logi o [2001/06/17] i386/28231 /boot/loader can't load kernel on Xyberna o [2001/06/20] ports/28301 ports Isakmpd port hogs 99% of cpu capacity. o [2001/06/20] bin/28311 markm ftpd and sshd do not honor expired pw ent f [2001/06/22] misc/28339 roam Slow Disk performance on 4.3 (about half o [2001/06/23] misc/28374 Re: gdb output is wrong (same as #13427 ? o [2001/06/23] ports/28378 jedgar p5-Net-IRC-0.70_1 eats irc text with col o [2001/06/23] bin/28381 Can't turn off telnet autologin o [2001/06/24] ports/28398 ports ja-dvips cannot find tex.pro o [2001/06/25] kern/28417 arplookup uses potentially unprotected st o [2001/06/26] bin/28424 mtree fails to report directory hierarchy o [2001/06/26] kern/28434 cs0's promiscuous mode does not work o [2001/06/27] misc/28442 hot rebuild on Compaq Intergrated Smart A o [2001/06/27] ports/28458 ports Gnome-1.4's use of Xalf out of sync with o [2001/06/28] ports/28491 kiri www/w3-4 port: mismatch between pkg-plist o [2001/06/28] kern/28497 dmesg corrupted buffer/output o [2001/06/28] kern/28498 /var/log/messages incorrect o [2001/06/29] misc/28508 problems with backup to Tandberg SLR40 st o [2001/06/30] i386/28536 writing to corrupted msdosfs causes kerne o [2001/06/30] bin/28552 EUC support of wcstombs(3) is broken for o [2001/07/01] i386/28592 Please support boot from ATA RAID-0 devic o [2001/07/02] misc/28629 ftpd REST command does not support restar o [2001/07/03] kern/28672 Erroneously mounting Audio-CDs as ISO cra o [2001/07/04] kern/28692 cg ICH sound driver hangs kernel o [2001/07/04] kern/28713 NEW IPFW FEATURE [PATCHES]: Dynamic rule o [2001/07/05] bin/28724 green ssh client won't do RhostsRSAAuthenticati o [2001/07/05] misc/28737 D-Link DFE530TX - vr0: Watchdog Timeouts; o [2001/07/06] kern/28768 The system doesn't get connects on one of o [2001/07/06] bin/28773 [PATCH] Bug in pw, no $ in username o [2001/07/07] bin/28798 mikeh mail(1) with a pager (more) requires fg/C o [2001/07/07] i386/28802 3com Performance Pro modem conflicts with o [2001/07/09] kern/28840 gibbs Possible interrupt masking trouble in sys o [2001/07/09] bin/28852 cracauer behavior of /bin/sh with -e option looks o [2001/07/09] ports/28853 gnome textproc/scrollkeeper doesn't compile o [2001/07/09] kern/28856 3COM PCI FaxModem with shared IRQ causes o [2001/07/11] ports/28889 lioux qpopper-4.0.3 error: Insufficient room to o [2001/07/12] i386/28928 wpaul dual starfire nic doesn't seem to work (a o [2001/07/13] bin/28935 dwmalone syslogd -u doesn't treat * as "all levels o [2001/07/15] i386/28985 Installing FreeBSD 4.3 on a Dell Optiplex o [2001/07/16] bin/29026 traceroute -s option allows any IP addres o [2001/07/17] bin/29049 green multi-user with star o [2001/09/15] misc/30590 /etc/hosts.equiv and ~/.rhosts interactio o [2001/09/15] kern/30592 roam [PATCH] panic: static sysctl oid too high o [2001/09/17] kern/30630 fenner Failure to check for existence of interfa o [2001/09/17] ports/30635 dougb Reduce bindir clutter in xscreensaver por a [2001/09/17] ports/30638 ports SQL-Ledger port update o [2001/09/18] kern/30653 brooks KAME option MAX_GIF_NEST missing from /us o [2001/09/18] bin/30654 Added ability for newsyslog to archive lo o [2001/09/18] ports/30663 ports NEW PORT: devel/libCxClient o [2001/09/21] misc/30708 DHCP and multiple interfaces o [2001/09/21] kern/30712 fatal kernel trap during ufs_rename o [2001/09/21] kern/30715 4.4-RELEASE cannot boot up with fxp NIC o o [2001/09/21] ports/30728 portmgr pkg_add causes install of multiple versio o [2001/09/22] kern/30744 UDMA ICRC error results in kernel panic o [2001/09/23] kern/30755 It is impossible to mount CD-ROM in some o [2001/09/23] ports/30767 jmz silly links break XFree-4 port if /usr/X1 o [2001/09/24] i386/30784 4.4 does not install KDE or Gnome+Sawfish o [2001/09/24] kern/30798 contigfree() doesn't o [2001/09/25] kern/30820 PCM sound fails o [2001/09/25] ports/30823 ports New port: KinterbasDB, Python module to a o [2001/09/26] bin/30837 Sysinstall doesn't set the schg flag on t o [2001/09/27] gnu/30876 tar ignores complaints from gzip o [2001/09/30] ports/30947 ports mail/mahogany fails to build, conflicts w o [2001/09/30] kern/30948 ls'ing mounted brand new floppy locks up o [2001/09/30] kern/30952 kernel panics with 3C905[BC] cards / xl d o [2001/10/01] kern/30958 QUOTA with 0 bytes in quota.user hangs up o [2001/10/01] bin/30959 newfs -i x dumps core for small values of o [2001/10/01] i386/30965 Cyclades Cyclom-Yep causes FreeBSD to han f [2001/10/01] bin/30966 fenner TCPdump repeating on Radius accounting pa o [2001/10/01] kern/30971 peter NFS client modification time resolution i o [2001/10/02] i386/30991 pcm in PNP-OS mode vs. non-PNP-OS mode po o [2001/10/02] bin/30993 xxgdb cannot open source file o [2001/10/04] bin/31029 cjc syslogd remote logging back down o [2001/10/04] i386/31035 Smart Array & SMP hangs on Proliant 1600 o [2001/10/04] bin/31045 routed dumps core o [2001/10/04] kern/31046 Linux OpenGL programs do not work under t o [2001/10/04] kern/31047 Linux programs do not dump core in linux o [2001/10/06] kern/31084 imp xe driver device probe fails in CIS tuple o [2001/10/06] kern/31085 kernel panic on tftp only pxeboot o [2001/10/07] kern/31102 lge + Pentium III data transmission probl o [2001/10/07] kern/31103 nfs read i/o error when nfs-mounting onto o [2001/10/07] ports/31113 portmgr bsd.ports.subdir.mk: remove NOCLEANDEPEND a [2001/10/08] kern/31130 cjc ipfw tee functionality causes malfunction a [2001/10/08] ports/31143 ports gd does not compile, uses nonexistent ftg o [2001/10/08] kern/31147 Kernel panics (double fault) in some "net o [2001/10/09] misc/31175 4.4 wikk not detect ethernet cards on HP o [2001/10/09] ports/31184 ports Latex2html problem o [2001/10/10] ports/31191 ports netsaint - plugins sometimes not found o [2001/10/10] kern/31203 Cardbus xl driver broken on -CURRENT o [2001/10/11] ports/31216 znerd New port: devel/plist-builder o [2001/10/12] kern/31238 `hpijs' process hangs unkillably in `devb o [2001/10/14] docs/31265 doc crontab(1) doesn't decribe format of allo o [2001/10/14] conf/31280 /etc/rc.network NFS server startup broken o [2001/10/15] bin/31306 sysinstall fails to create non-root parti o [2001/10/17] bin/31339 make's .if processing buggy o [2001/10/17] bin/31341 bind exits with core dump and signal 6 ev o [2001/10/18] ports/31352 ports Netsaint check_by_ssh: fcntl(0, F_SETFL, o [2001/10/18] misc/31363 sysinstall "partition editor" silently co o [2001/10/20] ports/31390 ports Citrix ICA client 6.0.908 is no longer av o [2001/10/21] kern/31398 cg newpcm does not play back the tail of sou o [2001/10/21] ports/31414 ports gd won't compile on 4.3 f [2001/10/21] ports/31422 ache Does pkg_delete have to erase /usr/local/ o [2001/10/23] kern/31460 ATAPI CD-ROM makes system reboot with DVD o [2001/10/24] kern/31471 Specific IPFW's FWD rule crashes the kern o [2001/10/24] i386/31481 FreeBSD does Not find disk drives with Co o [2001/10/24] conf/31482 darrenr ipfilter /etc/rc.* bug fixes and manual p o [2001/10/25] kern/31492 Panic in sysctl_remove_oid. o [2001/10/25] ports/31494 ache mod_perl fixes for apache13 port o [2001/10/26] ports/31511 obrien g++30 produces binaries which SIGBUS when a [2001/10/26] bin/31512 Burncd faillure on Creative's CDRW o [2001/10/26] kern/31515 Use of USB Keyboard crashes 4.4 during in o [2001/10/26] ports/31527 dwcjr "reject_unknown_client" configuration pro a [2001/10/27] kern/31530 Fatal trap 12 when reading from DVD. o [2001/10/28] kern/31565 USB devices cripple SMBFS o [2001/10/28] ports/31567 ports tgif -print fails to create temp files o [2001/10/28] ports/31578 ports ports: patch for /usr/ports/java/linux-ib o [2001/10/29] kern/31586 netgraph bridges cause connectivity probs o [2001/10/29] kern/31597 pcm_addchan incorrectly adds vchans to PC o [2001/10/29] ports/31605 kde kmail cannot decrpyt/encrypt/verify gnupg o [2001/10/29] docs/31607 doc /etc/ppp/pap-secrets needs IP field, whic o [2001/10/29] i386/31620 kernel panic at ACPI enable kernel o [2001/10/30] conf/31631 "MAC address" can't be acquired properly. o [2001/10/30] bin/31649 libpcap doesn't work with -pthread o [2001/10/31] kern/31659 USB controller driver will die after some o [2001/10/31] bin/31661 pthread_kill signal handler doesn't get s o [2001/10/31] misc/31670 Wide-Ultra 10k SCSI 3 drive is not recogn o [2001/10/31] bin/31678 A bug in handling an error reading a CD-R o [2001/11/01] ports/31688 ports JDK 1.3.1 Update for Sun's Java Communica o [2001/11/01] ports/31689 ports JDK 1.3.1 update for FreeBSD/Java Commapi o [2001/11/01] bin/31692 2872-or-less-byte ftp binary transfer fro o [2001/11/01] ports/31699 ports The graphics/gd2 port conflicts with grap o [2001/11/03] ports/31729 kde QT2.3 will not build o [2001/11/03] misc/31736 DMA mode not possible switching to PIO mo o [2001/11/03] kern/31746 failed connect(2) seems to cause problems o [2001/11/04] ports/31767 ports Fix glide3 includes for DRI compile o [2001/11/05] kern/31768 darrenr Use of fastroute in IPFilter reboots the o [2001/11/05] i386/31771 brian PPP compares CHAP81 response case sensiti o [2001/11/05] kern/31790 problem with NFS and jail() o [2001/11/05] ports/31793 billf snmpd loops on udp.ipv6UdpTable.ipv6UdpEn o [2001/11/06] kern/31804 Clearing PME mode kills network performan o [2001/11/07] ports/31819 jmz ports/ispell install doesn't work o [2001/11/07] bin/31835 dhclient doesn't close FD's before spawni o [2001/11/07] bin/31837 sysinstall change mountpoint o [2001/11/07] kern/31839 ex0 panic if NIC not cabled o [2001/11/07] ports/31840 gnome package naming inadequation (gnome vs gtk o [2001/11/07] i386/31845 Toshiba Satellite 2105CDS won't boot Free o [2001/11/08] i386/31850 panic: allocdirect_check o [2001/11/08] bin/31860 read wont timeout on sockets if using thr o [2001/11/08] misc/31864 system header file attempts to redefine a o [2001/11/09] ports/31892 dima KPilot port is history. KPilot is fully i o [2001/11/09] ports/31893 des gnats-3.113.1 conflicts with /usr/bin/sen o [2001/11/11] misc/31915 System lock-up o [2001/11/12] gnu/31929 GNU Tar shipped with FreeBSD handles rela o [2001/11/12] kern/31940 nge gigabit adapter link reset and slow t o [2001/11/13] kern/31954 rwhod does not see itself via xl0 o [2001/11/13] i386/31967 reboot/shutdown hangs on Sony VAIO 505 w/ o [2001/11/14] kern/31979 Setup and boot locks Compaq Armada E500 l o [2001/11/16] ports/32047 ports Existence of linux_base-62 appeares to be o [2001/11/17] ports/32063 znerd patch for /usr/ports/java/linux-jdk about o [2001/11/17] bin/32072 setuid w/o immutable flag o [2001/11/18] kern/32098 semctl() does not propagate permissions o [2001/11/19] kern/32118 21143 with dc driver will not select 10ba o [2001/11/19] ports/32121 jmz xf86cfg 4.1.0 writes bad "Chipset" value o [2001/11/19] ports/32123 des send-pr aborts after editing if VISUAL=je o [2001/11/20] kern/32124 Cannot set 128 bit wep key on prism2 (wi0 a [2001/11/21] ports/32164 ports New port: p5-XML-SAX-Simple-0.01 o [2001/11/21] ports/32166 lioux Installing avifile emphasizes problems wi o [2001/11/21] bin/32175 ssh-keygen -p core dumps o [2001/11/22] misc/32194 Adaptec SCSI RAID 2100 fails by reboot o [2001/11/22] bin/32205 brian PPP login fails in LCP negotiation on opt o [2001/11/23] ports/32223 ports Port databases/mysql-jdbc-mm is quite out o [2001/11/23] kern/32226 time of day clock runs fast (approx twice o [2001/11/23] ports/32234 portmgr Perl ports not $LOCALBASE clean o [2001/11/24] ports/32247 mi Port graphics/libfpx: build failed (could a [2001/11/24] ports/32249 ports New port: net/vicq-devel : ICQ client wit o [2001/11/24] kern/32256 System crash/reboot when deleting file on o [2001/11/24] bin/32261 dump creates a dump file much larger than o [2001/11/25] i386/32269 [PATCH] - categorizing (XXX Lines) in NOT o [2001/11/26] alpha/32289 alpha memory management fault o [2001/11/26] bin/32295 pthread dont dequeue signals o [2001/11/26] misc/32296 dwmalone brk() has illegal prototype o [2001/11/26] misc/32297 Scratchy sound, bad hiss with ALS4000 bas o [2001/11/27] kern/32331 system panic in quotaoff o [2001/11/27] kern/32338 Network to disk write performance low und o [2001/11/28] kern/32353 if kern.maxproc > 512 sybase ASE 11.9.2( o [2001/11/28] gnu/32365 obrien gcc optimiser bug with -O -march=i686 o [2001/11/29] bin/32374 vi -r doesn't work, file contained unexpe o [2001/11/29] docs/32381 doc [PATCH] Handbook section on chrooting nam o [2001/11/29] ports/32382 znerd 'ant' doesn't work if JAVA_HOME not set o [2001/11/29] ports/32383 sobomax 'javavm' doesn't work if more than 1 argu o [2001/12/01] bin/32432 /etc/rc.diskless2 borken in stable. o [2001/12/02] ports/32443 gnome gnomeutils makefile looks for fictional m o [2001/12/02] i386/32447 analyzed Data corruption when reading from ATAPI C o [2001/12/03] ports/32465 ports emulators/vmware2 doesn't build o [2001/12/03] ports/32471 ports amavis-perl only usable for sendmail o [2001/12/03] ports/32476 ports New port: oracle7-client o [2001/12/03] ports/32477 ports New port: p5-DBD-Oracle-1.12 o [2001/12/03] ports/32491 ports XF86 4.1.0 DPMS not functioning o [2001/12/04] ports/32524 kde Port build failed: x11-toolkits/qt23 o [2001/12/05] ports/32529 kde Konqueror 2.2.2 refuses to follow some li o [2001/12/05] ports/32539 gnome gnomedb-fe will not run. o [2001/12/06] kern/32556 system crashes when unloading sound modul o [2001/12/06] ports/32558 olgeni www/sitecopy is broken o [2001/12/06] docs/32564 doc [PATCH] MAKEDEV.8 (i386) - wd# is replace o [2001/12/07] ports/32589 dirk mod_php4 configure script fails o [2001/12/07] bin/32591 markm The memory block doubly freed in Heimdal o [2001/12/07] pending/32594keramida Re: New article: setting up a CVS reposit o [2001/12/08] kern/32600 luigi [PATCH] incorrect handling of parent rule f [2001/12/08] bin/32615 des libfetch-based fetch(1) has no useful -v o [2001/12/08] bin/32619 des libfetch does not use RFC 1738's definito o [2001/12/08] misc/32631 installing 4.4 "mounting root from ufs:/d o [2001/12/08] ports/32637 ports Can't make install ja-mozilla-jlp-0.9.6, o [2001/12/09] ports/32639 ports freeamp: preference AllowMultipleInstance o [2001/12/09] ports/32663 kde kdelibs2 port potentially conflicts with o [2001/12/10] kern/32668 NFS directory removal problems manifested o [2001/12/10] ports/32669 sobomax mpg123 can't play mono mp3 file after ste o [2001/12/10] ports/32670 sobomax mpg123: -b doesn't work o [2001/12/10] kern/32672 Invalid FFS node allocation algorithm on o [2001/12/10] bin/32686 locate command dumps a core file with bro s [2001/12/10] misc/32687 roam scripts in /usr/local/etc/rc.d not execut o [2001/12/11] docs/32697 murray [NEW ARTICLE] - Release Engineering of Fr o [2001/12/11] misc/32699 Tulip ether card EN2242 (if_dc.c) use wro o [2001/12/11] ports/32700 assar inode changes for large o [2001/12/11] kern/32716 system hangs when running vid (usb webcam o [2001/12/11] bin/32717 brian ppp(8) change mss to wrong size o [2001/12/12] ports/32753 ports althea port doesn't compile. o [2001/12/12] bin/32759 [PATCH] make(1) System V include behaviou o [2001/12/12] misc/32760 Please MFC /usr/include/malloc.h to -STAB o [2001/12/12] ports/32772 wjv Update port: p5-libxml f [2001/12/12] ports/32773 tobez Update port: p5-XML-Simple-1.06 o [2001/12/12] ports/32789 ports musicbrainz port won't build (autoconf/au o [2001/12/12] bin/32791 FreeBSD's man(1) utility vulnerable to ol o [2001/12/13] kern/32797 Problem with IPX and netgraph(4) o [2001/12/13] ports/32800 dec gated dies on ppp interface up/down o [2001/12/13] ports/32805 ports The apache2 port overwrites configuration o [2001/12/13] kern/32806 Reproducible panic in ipfw o [2001/12/13] kern/32809 yet another panic while syncing disks aft o [2001/12/13] bin/32817 Base system includes outdated CGI module o [2001/12/13] docs/32818 doc [PATCH] - Formal Text for /docproj/who.ht o [2001/12/14] kern/32827 small SO_RCVTIMEO values are taken to be o [2001/12/14] ports/32832 kde Kmail 1.3.2 / kde 2.2.1 / PGP 6.5.8 - kma o [2001/12/14] ports/32837 kuriyama Update port: p5-XML-DOM-1.35 o [2001/12/14] ports/32844 kde exiting konq term emulator causes crash o [2001/12/15] ports/32871 tobez Update port: p5-XML-Parser-encodings-1.02 o [2001/12/15] ports/32872 ports nethack3-gnome port, gtk library componen o [2001/12/15] ports/32887 obrien mail/mutt broken since recent changes: ch o [2001/12/15] ports/32890 pat sysutils/wmbattery port does not work; up o [2001/12/16] ports/32896 vanilla o [2001/12/16] ports/32903 ports Kernel panic when returning from single m o [2001/12/16] ports/32922 ports ports/devel/bin86 won't build with umask o [2001/12/16] misc/32924 raylink driver having problems receiving f [2001/12/17] ports/32931 ports New port: p5-Class-Fields-0.14 o [2001/12/17] ports/32933 ports New port: p5-Class-Accessor-0.17 o [2001/12/17] ports/32934 ports New port: p5-Class-Data-Inheritable-0.02 o [2001/12/17] ports/32937 ports Update port: p5-Class-Fields-0.14 850 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- f [1995/01/11] i386/105 Distributed libm (msun) has non-standard s [1995/09/26] kern/742 syslog errors accessing Mac hard disks [p s [1995/11/20] kern/831 one minor complaint about the kernel visu a [1996/01/30] bin/981 fenner clnt_broadcast() is not aware of aliases a [1996/07/07] bin/1375 eivind Extraneous warning from mv(1) [PATCH] s [1996/10/13] misc/1791 tegge syslimits.h does not allow overriding def o [1996/10/20] bin/1849 gdb sets library breakpoints on the wrong s [1996/11/04] gnu/1961 [PATCH] uucp logging files are in /var/sp s [1996/11/22] bin/2090 clients may bind to FreeBSD ypserv refusi s [1996/12/02] bin/2137 tegge vm statistics are bad s [1996/12/14] bin/2216 [PATCH] Ada specs not being compiled into o [1996/12/24] kern/2273 dufault support for POSIX.4 / POSIX.1a RT-schedul s [1996/12/27] kern/2298 Support for DSR/DCD swapping on serial po a [1996/12/27] misc/2302 brandon new crypt() including SHS and an extendab o [1997/01/10] bin/2442 davidn setusershell()/endusershell() missing o [1997/01/28] bin/2603 dufault Added POSIX.4/POSIX.1b constants in unist a [1997/02/02] bin/2641 wpaul login_access.c doesn't work with NIS by d s [1997/02/15] misc/2745 fenner PR querry web form doesn't sort correctly o [1997/03/03] kern/2865 peter NFS client hangs on umount, ls, df when N o [1997/03/10] bin/2934 cracauer sh(1) has problems with $ENV s [1997/03/10] bin/2938 hoek Add -b, -l, and -f options to du(1) o [1997/03/31] gnu/3157 obrien Patches to gas and gdb to support MMX ext o [1997/04/07] bin/3221 rpc.rusersd : can't communicate with SunO o [1997/04/07] misc/3225 [PATCH] uucpd.c should normalize host nam o [1997/04/09] bin/3242 incorrect prototype for initgroups o [1997/04/14] bin/3284 [PATCH] symorder(1): -t option doesn╢t wo a [1997/05/08] gnu/3552 the -L option of tar does not work proper f [1997/05/16] bin/3608 jkoshy Telnet in linemode will break apart long o [1997/06/02] bin/3762 dufault Bogus return values from rtprio(1) o [1997/06/10] bin/3837 dufault new feature for rtprio o [1997/06/19] misc/3912 ctags(1) cannot trace some macro correctl o [1997/06/24] kern/3944 paul if_le doesnt receive ether multicast pack o [1997/06/25] kern/3948 jlemon nonworking t/tcp server side o [1997/07/18] bin/4116 davidn Kerberized login as .root fails to s [1997/07/26] bin/4172 des suggest reconnection option added to fetc s [1997/07/28] kern/4184 [PATCH] minor nits in sys/netatalk o [1997/08/07] kern/4243 file locking doesn't work for pipe o [1997/08/08] misc/4249 wpaul ypchsh doesn't care about changing a user o [1997/08/13] kern/4297 dufault SIGEV_NONE and SIGEV_SIGNAL go in signal. o [1997/08/13] i386/4300 msmith The initial timeout on open("/dev/lpt0".. o [1997/08/14] ports/4304 portmgr Recommendation re. Ports Collection o [1997/08/29] kern/4413 No way to unmount a floppy that goes bad o [1997/08/29] bin/4419 man can display the same man page twice o [1997/08/29] bin/4420 roberto find -exedir doesn't chdir for first entr o [1997/09/03] bin/4459 bde No prototype for moncontrol(3) and monsta o [1997/09/13] kern/4528 processes hang if the mount_portal proces o [1997/09/25] bin/4629 calendar doesn't print all dates sometime o [1997/09/28] misc/4646 qa Can't fixit with an NFS-mounted CD. o [1997/10/05] bin/4696 ping hangs on certain unresolvable hosts o [1997/10/15] gnu/4771 diff to correct misleading total bytes in o [1997/10/24] kern/4845 Boot complains about disk slices in FAT p o [1997/11/08] bin/4975 quotaon while server very busy causes loc o [1997/11/13] bin/5031 gad lpr does not remove original file if -s i s [1997/11/28] bin/5173 [PATCH] restore ought to deal with root s s [1997/11/30] i386/5182 bde [PATCH] A patch support high speed serial s [1997/12/14] bin/5296 slattach fails creating pidfile with ioct o [1997/12/22] kern/5362 peter mount incorrectly reports / as an NFS exp s [1998/01/03] bin/5419 [PATCH] timed rejects valid networks with f [1998/01/08] bin/5444 [PATCH] ypserv uses wrong dns lookup orde o [1998/01/11] bin/5483 Login(1) clears utmp entry s [1998/01/20] kern/5532 [PATCH] Dropped packet counts are inaccur o [1998/01/26] kern/5577 bde Unnecessary disk I/O and noatime ffs fixe a [1998/01/28] bin/5591 jkoshy Trouble with LD_PRELOAD environment varia o [1998/01/31] bin/5609 gad lpd cannot send long files to HP's JetDir o [1998/02/09] kern/5689 phk sysctl vm.vmmeter - bogus and unsupported o [1998/02/10] bin/5712 mikeh /bin/chio code cleaup and option added o [1998/02/14] bin/5745 nik [PATCH] Add /usr/local/share/mk to defaul o [1998/02/26] kern/5863 Kernel support for sorted SHUTDOWN & SHUT a [1998/03/06] i386/5932 perfmon kernel code should check for non- o [1998/03/11] gnu/5982 no error exit code from tar on child fail f [1998/03/28] bin/6161 assar 2.2.6 kerberos servers are awfully visibl f [1998/03/30] bin/6176 running architextSearch (excite) under li o [1998/03/31] bin/6183 quota hangups o [1998/03/31] kern/6184 No error if resulting file pos in lseek i a [1998/04/16] misc/6320 mike Sometimes nohup isn't good enough. o [1998/04/17] gnu/6338 Gnu tar not working properly with the -G o [1998/04/18] conf/6346 Kernel version strings need to relate to o [1998/05/11] i386/6595 Old IP address persistent after change o [1998/05/12] misc/6612 bsd.man.mk can't handle man pages with ": o [1998/05/13] conf/6624 davidn One class with nologin=/etc/nologin: reje o [1998/05/15] kern/6651 peter Possible NFS deadlock clue s [1998/05/17] kern/6668 babkin [PATCH] new driver: Virtual Ethernet driv s [1998/05/29] bin/6785 place for all the default dump flags s [1998/06/01] kern/6820 jesper cd9660_mount NULL pointer deref for no CD o [1998/06/06] kern/6874 accounting prevents transition to multi u o [1998/06/22] bin/7023 portmgr bsd.port.(%|subdir.).mk patches for size s [1998/06/24] kern/7044 [PATCH] WaveLAN (2.4G, ISA, full-length b o [1998/06/25] docs/7065 wosch FreeBSD webpages -> applications, port br s [1998/06/28] i386/7100 integrate pcvt configuration into the /et s [1998/07/01] bin/7136 kerberized telnetd doesn't use gettytab % s [1998/07/08] kern/7210 [PATCH] od(4) bug fixes and enhancements, s [1998/07/10] misc/7232 qa Suggestion for FreeBSD installation dialo o [1998/07/10] kern/7234 yokota keyboard problems during login immediatel o [1998/07/12] bin/7265 A warning flag is added to ln(1). o [1998/07/13] ports/7268 portmgr MASTER_SITE_OVERRIDE works more better o [1998/07/14] kern/7282 some old and rarely used drivers have app o [1998/07/15] bin/7287 Incorrect domain name for MAP_UPDATE in m a [1998/07/19] bin/7324 wosch Suggestions for minor modifications to ad s [1998/08/13] conf/7606 [PATCH] NIS Makefile.dist: NOPUSH replace s [1998/08/18] bin/7669 libalias does not IRC DCC packets under c o [1998/08/19] gnu/7687 description of default baud rate for cu c s [1998/08/22] kern/7722 Changes to acct format o [1998/08/28] misc/7771 Debugging putenv/getenv o [1998/09/03] bin/7828 Add a command line option to cp to make i o [1998/09/08] bin/7860 gad Extra option to pr(1). s [1998/09/08] bin/7868 [almost patch]Morse Code Fixups o [1998/09/16] misc/7946 asami ccdconfig gives confusing error when give o [1998/09/18] bin/7973 gad lpd: Bad control file owner in case of re s [1998/09/21] kern/8015 nbm [patch] Some sysctl descriptions for the o [1998/09/27] ports/8063 portmgr [PATCH] Add multiple CDROM support to bsd o [1998/10/03] misc/8133 markm [patch] bug in telnetd (Kerberos IV) f [1998/10/12] bin/8295 order of options in printcap causes some f [1998/10/16] kern/8349 [PATCH] Changer definition for SureStore o [1998/10/19] kern/8376 CLOCK_VIRTUAL not implemented o [1998/10/27] i386/8474 repquota does not pick up NIS information a [1998/10/28] bin/8479 dd Final \'s in /etc/exports did not work in o [1998/10/30] kern/8498 Race condition between unp_gc() and accep o [1998/11/03] bin/8553 /usr/libexec/mail.local doesn't handle "> f [1998/11/08] kern/8604 ps u gets confused about process start ti f [1998/11/09] kern/8633 TCP packet via SLIP/CSLIP containing this o [1998/11/19] docs/8765 dwhite some suggested text for describing passwo o [1998/11/27] i386/8867 qa /stand/sysinstall core dumps (signal 11) o [1998/12/16] ports/9107 portmgr Addition to bsd.port.mk for searching mul a [1998/12/18] bin/9123 kris pax can't read tar archives that contain o [1998/12/24] bin/9188 telnet gets stuck in ttydrain() f [1998/12/28] misc/9220 ache nvi: catalog: mistake in Russian error me o [1998/12/29] bin/9233 gmp's mpq_add and mpq_sub are buggy o [1999/01/04] bin/9318 vgrind(1): no JAVA support a [1999/01/05] bin/9333 jkoshy timestamp dump's progress o [1999/01/08] kern/9392 Alternate system clock OR kernel stats cl o [1999/01/19] kern/9570 dfr ed(4) irq config enhancement o [1999/01/22] kern/9619 Restarting mountd kills existing mounts o [1999/01/25] kern/9679 fix for uninterruptible open in portal fi f [1999/01/25] kern/9689 panic in sbdrop(kern/uipc_socket2.c) o [1999/01/26] bin/9711 Fails: cd /usr/bin; gzip file ; mv file. o [1999/01/28] kern/9748 error in queue handling of at_shutdown() a [1999/01/28] bin/9770 kris An openpty(3) auxiliary program o [1999/01/29] i386/9777 cg Generic AD1816 sound suport in Luigi's pc o [1999/01/31] ports/9840 portmgr patch allows ports to fetch their sources o [1999/02/01] bin/9868 Patch to add "date -a" o [1999/02/01] kern/9869 When using macros out of function, they s o [1999/02/01] conf/9874 idle-timeout facilities in /etc/login.con o [1999/02/03] bin/9902 error in german (and some other) locale s o [1999/02/09] i386/9991 new driver for National Instruments GPIB o [1999/02/11] bin/10030 markm Kerberized telnet fails to encrypt when a o [1999/02/25] docs/10240 wosch We need a script which check if our web m f [1999/02/26] bin/10274 make does not understand "lib(obj)" synta o [1999/02/26] bin/10283 Race condition in rc.network o [1999/03/01] docs/10349 phantom For long .Dt fields, rendering is broken- o [1999/03/02] bin/10358 mikeh ftp(1) has problems with long pathnames f [1999/03/05] ports/10396 asami SPIN is in the wrong category f [1999/03/07] i386/10465 mdodd Must disable ex0 to install. o [1999/03/15] bin/10601 wosch Ownership of symlinks copied by adduser a o [1999/03/15] i386/10608 add Opti Viper-M PCI ID o [1999/03/15] kern/10609 adjtime bug (tv_sec > 2147) and enhanceme o [1999/03/15] bin/10610 New options to date to slowly adjust time o [1999/03/15] bin/10611 timed enhancement o [1999/03/17] kern/10641 groudier Default sync rate in ncr SCSI driver is s o [1999/03/19] gnu/10670 cvs doesn't allow digits in local keyword o [1999/03/19] kern/10673 wpaul Non-ASCII chars on serial console with Re f [1999/03/19] kern/10678 Printing problems using ppc bus o [1999/03/19] ports/10682 portmgr List mirror sites in MASTER_SITE_BACKUP - o [1999/03/23] kern/10755 de driver says `invalid EESPROM checksum' o [1999/04/02] bin/10924 Extensions to biff(1) o [1999/04/03] bin/10931 biff b o [1999/04/05] ports/10965 ports lcc-3.6 unable to compile anything o [1999/04/08] kern/11020 popen does not honor ISO 9899 syntax o [1999/04/08] bin/11036 markm Perl does not honor -DNOMAN o [1999/04/10] conf/11058 Recent change to rc script causes hang on o [1999/04/11] bin/11085 Per-host configuration for syslog.conf o [1999/04/11] bin/11092 readlink(1) from OpenBSD o [1999/04/13] bin/11114 make(1) does not work as documented with o [1999/04/13] misc/11126 vt100 termcap entry appears broken o [1999/04/14] ports/11134 hoek existense of /usr/obj/usr/ports/shells/ba o [1999/04/16] i386/11165 IBCS2 don't work correctly with PID_MAX 9 a [1999/04/16] bin/11168 davidn pw(8) usermod does not recognize -w flag o [1999/04/20] bin/11236 mountd fails to properly check for kernel o [1999/04/20] bin/11248 Shuffle o [1999/04/23] kern/11293 brian FreeBSD's PPP implementation of LQM appea o [1999/04/23] bin/11294 direct logging to other hosts (no local s o [1999/05/06] misc/11553 /usr/share/misc/latin1 (new file submissi o [1999/05/18] misc/11767 sppp does not implement VJ compression o [1999/05/19] kern/11789 obrien ELF machine definition missing for ARM o [1999/05/28] bin/11914 wosch makewhatis during installworld uses /usr/ o [1999/05/29] bin/11929 symorder doesn't work on elf format objec f [1999/05/30] kern/11945 mjacob tape problems on -stable, mt bl(ocksize), o [1999/05/31] kern/11968 kldload should call module entry point be o [1999/06/01] i386/11979 Vaio 505DX touchpad not detected as Glide o [1999/06/03] kern/12014 alfred Fix SysV Semaphore handling o [1999/06/06] gnu/12046 markm Perl subsystem does not install all tutor o [1999/06/07] kern/12071 [PATCH] large scale IP aliasing o [1999/06/08] i386/12088 Enhancement to ed driver for Linksys 10/1 o [1999/06/16] bin/12244 realpath() fails when there is no permiss o [1999/06/17] bin/12263 hoek "more" problems with long filenames o [1999/06/18] bin/12280 LD_IGNORE_MISSING_OBJECTS not honored for o [1999/06/18] kern/12281 active-filter option in pppd doesn't stop o [1999/06/21] conf/12324 qa Sysinstall's fdisk partition editor is mi o [1999/06/21] ports/12325 portmgr Adds refetch functionallity to bsd.port.m s [1999/06/23] bin/12358 ken Patch: "camcontrol help" should go to std o [1999/06/24] i386/12383 make release warns about /dev entries mak o [1999/06/26] bin/12398 fsck in free(): warning: pointer to wrong o [1999/06/28] conf/12432 dougb empty amd_flags causes start failure in r o [1999/07/06] kern/12543 dg [PATCH] cumulative error counters for fxp o [1999/07/07] bin/12545 kldload(8) should be more sensitive to er o [1999/07/08] ports/12566 billf a guide to pyrotechnics o [1999/07/20] kern/12723 des Unnecessary use of magic numbers in F_[SG o [1999/07/25] bin/12801 nvi infinite recursion with options "left o [1999/07/28] kern/12855 mckusick panic:softdep_flushfiles:looping, caused o [1999/08/03] bin/12939 add flag to quota to suppress NFS quota c o [1999/08/04] ports/12952 portmgr make _PORT_USE touch cookies by variable, f [1999/08/04] kern/12966 wpaul receiver lockups in vr0 driver f [1999/08/05] bin/12982 keramida last does not support -y option. f [1999/08/05] i386/12993 gibbs "ahc0: Data Parity Error Detected during o [1999/08/09] bin/13042 make doesn't handle wildcards in subdirec o [1999/08/09] bin/13043 minigzip -c option support. f [1999/08/10] kern/13062 lnc ethernet xmit underflow problem o [1999/08/11] bin/13068 billf Don't stamp out score files! o [1999/08/11] bin/13072 billf Extensions to biff(1) o [1999/08/11] bin/13073 billf Extensions to mesg(1) o [1999/08/11] docs/13079 dwhite new man page describing timeradd() family o [1999/08/12] bin/13108 authunix_create_default includes egid twi o [1999/08/13] bin/13128 billf pkg_delete doesn't handle absolute pathna o [1999/08/15] kern/13161 alfred mounting on top of a mounted file system f [1999/08/18] kern/13232 panic("rtfree"); when sending bootp reque o [1999/08/20] misc/13266 Removal of #defines and addition of const o [1999/08/21] bin/13309 Fixes to nos-tun o [1999/08/22] misc/13326 additional timeval interfaces for ' cannot be used in "via" o [2000/05/30] kern/18909 dwmalone select(2) timeout limited to 100000000 se o [2000/06/01] ports/18960 portmgr Add USE_APACHE to bsd.port.mk for Apache o [2000/06/01] bin/18961 green sshd does not print before motd o [2000/06/02] bin/18967 ypserv not linked with tcp wrappers o [2000/06/03] bin/18992 brian log packets blocked by filter rules o [2000/06/03] misc/18997 markm Kerberos5 CFLAGS needed o [2000/06/04] conf/19001 Delayed fsck + mount of insignificant fil o [2000/06/06] ports/19051 asami New target for bsd.port.mk : fetchdepends f [2000/06/06] bin/19056 yacc in 3.4 and 4.0 reports "maximum tabl o [2000/06/06] bin/19057 offer of patch to uname that produces pre f [2000/06/06] kern/19063 VGA keyboard sometimes fails to work in b o [2000/06/07] ports/19112 portmgr files with names something,v in patches d o [2000/06/09] kern/19156 jkh Enable the doFS.sh to run in arbitrary lo f [2000/06/10] bin/19183 more(1) doesn't handle redraw correctly o [2000/06/11] kern/19213 SC_DFLT_FONT compile option breaks kernel f [2000/06/13] conf/19236 sanpei not-existing PCMCI cards in pccard.conf.s o [2000/06/13] bin/19239 login allows users to login remotely with o [2000/06/13] misc/19246 portmgr Poor error message when fetching files wi o [2000/06/13] ports/19253 dirk mod_php4 has pkg dependency when not usin o [2000/06/14] ports/19270 portmgr Ports build mechanism doesn't check wheth o [2000/06/15] gnu/19327 Fix to build 'a.out' binary. f [2000/06/17] bin/19355 fstat gives signal 10 (SIGBUS) when outpu o [2000/06/19] misc/19391 emulationEvilness with Linux Terminus, causes X to o [2000/06/20] bin/19404 /usr/bin/error should be included in the o [2000/06/20] misc/19406 setenv() allocates memory which is not fr f [2000/06/20] i386/19410 spontaneous reboot when esd runs on a -ST f [2000/06/21] bin/19422 mikeh users can overflow argv to make ps segfau f [2000/06/22] conf/19442 can't install on diverse harddisks. o [2000/06/22] ports/19448 markm filename input broken o [2000/06/22] ports/19456 chuckr the sp port is hardwired to install it's o [2000/06/23] misc/19467 green OpenSSH (as an rsync tunnel) blocks forev o [2000/06/24] kern/19490 faith0 network device has high number of o [2000/06/26] kern/19535 adrian procfs_rlimit tidyup s [2000/06/28] conf/19573 des Dot Files for Optional Shells o [2000/06/29] ports/19591 issei ssh2 port ignores 'ignorenologin' from lo o [2000/06/30] ports/19594 trevor update port: qrash o [2000/07/01] bin/19635 add -c for grand total to df(1), like du( o [2000/07/02] gnu/19642 kbyanc patch to merge OpenBSD changes to patch(1 o [2000/07/02] ports/19650 asami python package causes segmentation fault o [2000/07/03] bin/19683 green mount displays incorrect mount point on f a [2000/07/03] kern/19686 yokota splash screen fails f [2000/07/05] kern/19706 Framing error on PC/NET 32 also used in o o [2000/07/05] kern/19720 kbyanc more sysctl signed-ness patches o [2000/07/06] gnu/19733 obrien GDB 4.18 is not GDB 4.18 o [2000/07/07] bin/19755 nologin not configurable o [2000/07/07] kern/19756 Inability to use linux extended partition o [2000/07/07] bin/19772 df output wrong for union-mounts o [2000/07/08] kern/19782 dirk mkisofs 1.12.1 (i386-unknown-freebsd4.0) f [2000/07/09] misc/19798 cg 4DWAVE doesn't work. f [2000/07/09] misc/19805 not installable on old-fashioned dx50 o [2000/07/10] kern/19827 yokota psm flag bit9(NOIDPROBE) doesn't work cor o [2000/07/10] misc/19837 murray Run Fit it floppy from serial port o [2000/07/12] ports/19868 portmgr modify ports/Mk/bsd.port.mk to remove ALL o [2000/07/12] kern/19871 alfred select on named pipes always returns 'ava o [2000/07/14] kern/19913 des add SYN+FIN counter o [2000/07/15] kern/19966 new syscons screensaver o [2000/07/18] gnu/20004 FBSD4 gcc __attribute__(constructor) not o [2000/07/18] misc/20024 jake [PATCH] queue(3) concatenation macros o [2000/07/19] bin/20042 "rsh -t" doesn't timeout if rcmd(3) never o [2000/07/20] bin/20054 ftpd: rotating _PATH_FTPDSTATFILE losts x o [2000/07/23] docs/20121 jim Better user ppp documentation in man page o [2000/07/24] misc/20139 msmith Simple typo in src/share/examples/ppi/ppi o [2000/07/24] ports/20145 dburr improving the devel/SN port o [2000/07/24] misc/20159 strftime() can't produce ISO8601 format t o [2000/07/24] misc/20166 billf Corrections & additions to games/quiz/dat o [2000/07/26] bin/20204 ps more doesn't handle 8-bit characters prop o [2000/07/27] kern/20214 dec kernel routing bug for nexthop is routed o [2000/07/28] misc/20254 jhb BTX loader 1.00 can not recognize floppy o [2000/07/28] ports/20270 reg libtool needlessly runs ldconfig after in o [2000/07/29] kern/20297 cg Joystick is not enabled with es1370 based o [2000/07/31] bin/20311 markm src/release/Makefile: broken CHECKSUM.MD5 o [2000/07/31] misc/20326 marcel [PATCH] installkernel fails if DESTDIR is o [2000/07/31] misc/20333 ftp login fails on unix password when s/k o [2000/08/01] kern/20352 yokota Configuring a synaptics touchpad o [2000/08/02] ports/20359 demon New port: Apache-mod_perl_guide o [2000/08/02] bin/20371 dhclient inserts bogus configurations o [2000/08/03] kern/20384 n_hibma Phase errors with Zip650 CD on USB o [2000/08/03] kern/20389 ken "device pass" required for CD ripping o [2000/08/03] bin/20391 jhb sysinstall should check debug.boothowto s o [2000/08/03] kern/20393 dillon processes get stuck in vmwait instead of o [2000/08/04] bin/20402 ache 4.1R's ls conflicts with Emacs' dired mod o [2000/08/04] kern/20410 sio support for high speed NS16550A, ST16 o [2000/08/05] conf/20436 doc Can't make only cd0 under 4.1-STABLE o [2000/08/07] misc/20457 davidn pw command doesn't generate random passwo o [2000/08/09] ports/20499 obrien [PATCH] conserver port doesn't like MD5 c o [2000/08/09] bin/20501 mjacob extra flag to dump to offline autoloaders a [2000/08/10] ports/20520 olgeni New port: lang/mercury o [2000/08/10] docs/20528 doc sysconf(3) manpage doesn't mention posix. s [2000/08/10] kern/20529 billf gigabit cards fail to link o [2000/08/11] i386/20537 msmith HP NetRAID controller error when rebootin a [2000/08/14] ports/20601 ports DESTDIR and /etc/shells a [2000/08/14] ports/20610 patrick New port of cgoban2 o [2000/08/15] bin/20613 des fetch -T n is not timeout correctly when o [2000/08/16] i386/20660 wpaul if_wi provides 802.11 src and dst, not et o [2000/08/17] ports/20678 portmgr make SORTED_MASTER_SITES_CMD variable ove o [2000/08/20] docs/20738 doc correction and modification to clocks(7) o [2000/08/21] bin/20742 ps Weird problem with 'more' on 4-1-STABLE s [2000/08/22] conf/20774 dougb 'NFS access cache time=2' is not a daemon o [2000/08/23] ports/20795 msmith FBSD 4.x: Citrix client with drive mappin o [2000/08/23] bin/20799 davidn top's problem o [2000/08/23] i386/20803 mdodd ep0 driver finds additional "shadow" ep c o [2000/08/23] kern/20804 deadlocking when using vnode disk file an o [2000/08/24] bin/20824 ftpd returns, "ad0s1a: not a plain file." o [2000/08/24] misc/20830 lile kernel link problems with Olicom token ri o [2000/08/25] i386/20845 Cyclades cy driver incompatible with Cycl o [2000/08/26] kern/20878 wpaul Patch to add support for the 3c556B MiniP o [2000/08/26] bin/20881 kris There's no reason not to build DNSsec-DSA o [2000/08/27] bin/20889 dwmalone syslogd.c still uses depreciated domain A o [2000/08/28] bin/20908 qa /stand/sysinstall too limited in selectio o [2000/08/29] misc/20920 yokota window(1) interferes with screensaver o [2000/08/30] bin/20944 ru natd enhancements, default config file an f [2000/09/01] kern/20992 kern/tty_subr.c, b_to_q to a clist with n o [2000/09/02] bin/20996 kris permissions on /usr/bin/opiepasswd o [2000/09/02] bin/21008 gad Fix for lpr's handling of lots of jobs in o [2000/09/04] bin/21024 pow() ERANGE bug o [2000/09/04] kern/21051 Updating 4.1-RELEASE to -current fails be o [2000/09/05] conf/21059 marcel `make -jN buildkernel' can't keep source o [2000/09/05] conf/21066 Proposed change in rc scripts o [2000/09/05] misc/21070 marcel default setting of ${SUP} in Makefile.inc o [2000/09/06] bin/21074 davidn chkgrp vs group(5) inconsistency f [2000/09/06] bin/21075 dwmalone top: can't allocate sufficient memory o [2000/09/06] bin/21080 mjacob dump doesn't use eject tape device correc o [2000/09/08] gnu/21128 a proposed patch for uucp package o [2000/09/09] bin/21142 [PATCH] avoid errors from "make objlink" o [2000/09/09] kern/21156 yokota [PATCH] inconsistency in scmouse vs xterm s [2000/09/10] bin/21178 ken voltag selector, and unload support for c f [2000/09/10] ports/21179 ports New port: math/gul-vdog-qt o [2000/09/12] kern/21222 wrong behavior of concurrent mmap()s on N o [2000/09/12] kern/21229 Proper value for vfs.nfs.access_cache_tim f [2000/09/12] kern/21240 mbufs allocated to data is huge number in a [2000/09/14] misc/21273 murray PLIP Configuration in sysinstall is broke o [2000/09/16] bin/21312 more incorrectly redraws screen on xterm f [2000/09/16] ports/21313 ports vmwarIPv6 and vmware2 panic: Fatal trap 1 o [2000/09/16] bin/21315 Shells often behave oddly when executing f [2000/09/22] bin/21476 ftp in 4.1-STABLE fails on http:// URLs o [2000/09/22] misc/21494 mikeh ftpd can't handle /etc/chroot entries wit o [2000/09/24] bin/21519 sys/dir.h should be deprecated some more o [2000/09/24] bin/21531 csh/tcsh provide no way to see/adjust new a [2000/09/25] docs/21542 doc sigaction(2) man page is misleading f [2000/09/26] bin/21570 dougb [PATCH] Add -r option to /usr/bin/mail, q o [2000/09/28] ports/21621 portmgr Update port: devel/libtool to 1.3.5 o [2000/09/28] kern/21623 wpaul Chipset SiS630E / NIC SiS 900 o [2000/09/29] misc/21644 /usr/include/sys/mman.h uses a type defin o [2000/09/30] bin/21659 Berkeley db library is statically compile o [2000/10/01] i386/21672 obrien AMD Duron Rev. A0 reports incorrect L2 ca o [2000/10/01] misc/21675 Better and more disktab entries for MO dr o [2000/10/02] conf/21695 ifconfig_XXX_aliasY in rc.conf; Y must be o [2000/10/02] docs/21712 dan core(5) manpage fails to mention kern.sug o [2000/10/02] misc/21715 The freebsd mail list digifier loses MIME o [2000/10/02] ports/21719 nbm New Port: Courier Mail Suite o [2000/10/03] conf/21722 The mixer settings are lost on sysetm reb o [2000/10/04] bin/21751 ken libcam's cam_real_open_device() may lose o [2000/10/04] kern/21754 n_hibma Sound stops working when NetGear USB Devi o [2000/10/05] ports/21765 portmgr I cat't make ports using pw_gid) != typeof(group->g o [2000/10/26] conf/22308 mounting NFS during boot blocks if host m o [2000/10/26] misc/22332 request to add vtys to /etc/ttys o [2000/10/27] bin/22351 sed(1) fails with backslash on buffer bou o [2000/10/29] ports/22399 msmith PIB 1.2 still looks for MD5 info in files o [2000/10/30] ports/22412 taoka two extraneous ports and one name change f [2000/10/30] misc/22434 problem with certain NIC's using rl on au o [2000/10/31] bin/22442 greid [PATCH] Increase speed of split(1) s [2000/11/01] docs/22470 doc man 3 msgrcv's BUGS section needs updatin o [2000/11/02] ports/22550 obrien Patch for conserver for log file rotation o [2000/11/04] kern/22602 CDRoms checked during shutdown (umount) o [2000/11/04] bin/22612 crontab -e failures o [2000/11/06] conf/22645 Cannot override "ignore" in /etc/mail.rc o [2000/11/07] misc/22660 termcap kterm entry tc=xterm is wrong f [2000/11/07] ports/22683 ports New port net/dnip-update a [2000/11/08] misc/22696 luigi picobsd build with router configuration c o [2000/11/08] ports/22698 portmgr Ports' rc.d files should use rc.conf o [2000/11/09] bin/22730 fenner tcpslice doesn't handle long file offsets f [2000/11/14] conf/22859 darrenr rc.network should start ipf/ipnat AFTER p o [2000/11/14] bin/22860 [PATCH] adduser & friends with '$' in use o [2000/11/14] docs/22861 dd newsyslog man page is misleading and inco o [2000/11/15] kern/22868 getsockname may return an incorrect addre o [2000/11/15] misc/22873 markm Perl's core'h conflicts with ncurses.h o [2000/11/16] i386/22900 patch: Adds Brand ID support to src/sys/i o [2000/11/17] misc/22914 bootinst messages are not updated s [2000/11/17] conf/22916 green Ssh/sshd binaries lacks kerberos support o [2000/11/17] bin/22933 green Typographical error in ssh.1 f [2000/11/20] ports/22995 grog Update port: x11-servers/x2x (fix ports/2 o [2000/11/23] conf/23063 ru [PATCH] for static ARP tables in rc.netwo o [2000/11/24] bin/23081 Touchpad on NEC Versa laptop is unusable o [2000/11/24] bin/23082 dwmalone ntpd has only one reference-clock parser f [2000/11/24] misc/23084 mount_nfs hangs self with some NFS server o [2000/11/25] bin/23097 Enhance WEP some more including ability t o [2000/11/26] kern/23123 IP options reveal IPstealth mode. Just t f [2000/11/27] i386/23141 ad1816 audio driver produces noise. o [2000/11/27] misc/23148 getopt(3) works non-intuitively? o [2000/11/29] bin/23178 'talk' not doing right thing o [2000/11/29] bin/23180 Certain KOI8 characters are treated as "w o [2000/12/01] bin/23204 length of salt in crypt() is not the same a [2000/12/02] ports/23232 ports gettext/xview port collision o [2000/12/02] bin/23233 kris Reincorporate /usr/bin/error in the FreeB a [2000/12/03] bin/23254 fenner yacc accepts bad grammer o [2000/12/04] ports/23287 portmgr allow system-local patches for ports o [2000/12/05] kern/23304 POSIX clock_gettime, clock_getres return f [2000/12/05] kern/23314 aic driver fails to detect Adaptec 1520B f [2000/12/07] kern/23353 fcntl(F_GETLK) return l_pid equal to -1 f f [2000/12/07] misc/23362 fenner tcpdump wrong on sppp CISCO_HDLC encoded o [2000/12/07] misc/23366 mmap() non conforming o [2000/12/07] gnu/23367 some src/gnu Makefiles are missing $FreeB o [2000/12/09] conf/23402 sysinstall upgrade ought to check partiti o [2000/12/09] ports/23410 obrien [PATCH] FreeBSD throws away information o o [2000/12/11] bin/23472 gdb weirdness on programs compiled with - a [2000/12/12] ports/23499 ports [NEW PORT]: Two LaTeX macro package ports f [2000/12/13] kern/23520 sb0 old style audio support in 4.2-RELEAS o [2000/12/13] misc/23539 marcel make installworld from nfs mounted /usr/s o [2000/12/14] kern/23546 tanimura [PATCH] csa DMA-interrupt problem o [2000/12/14] ports/23560 portmgr linux-jdk/Makefile assumes default `patch o [2000/12/15] i386/23562 telnetd doesn't show message in file spec o [2000/12/15] ports/23581 portmgr Updates to bsd.port.mk to detect changing o [2000/12/17] gnu/23598 Merge libgcc_r with libgcc o [2000/12/17] ports/23602 portmgr Recursive distclean for bsd.port.mk w/pat o [2000/12/18] bin/23635 mike [PATCH] whois enhancement - smarter whois o [2000/12/19] ports/23649 ports the port of mod_php4 does not install cor f [2000/12/20] kern/23692 GENERIC kernel config on 4.2 changes defa o [2000/12/22] misc/23766 /etc/periodic/daily/440.status-mailq does o [2000/12/24] kern/23814 .au sound files < 528 bytes actual data d o [2000/12/24] ports/23822 ports mtree entries for German X11 man pages f [2000/12/28] bin/23912 underflow of cnt in vs_paint() by O_NUMBE o [2000/12/29] bin/23944 Patch for ftpd to add a cd after the chro o [2001/01/02] misc/24034 "CWD" discloses the full "real" path in a o [2001/01/04] bin/24066 gdb can't detach from programs linked wit o [2001/01/06] ports/24120 portmgr "/usr/ports/Mk/bsd.port.mk", line 626: In o [2001/01/07] misc/24132 gdb output is wrong (same as #13427 ?) f [2001/01/07] kern/24141 emu10k1 has trouble playing non-44.1KHz s o [2001/01/10] ports/24214 portmgr [PATCH] verbose 'make index' o [2001/01/11] ports/24259 steve port of open-motif on make install compla o [2001/01/12] ports/24292 portmgr update-patches target in ports/Mk/bsd.por o [2001/01/12] ports/24299 ports Configure the synaptics touchpad. a [2001/01/14] misc/24324 Greek console support o [2001/01/15] ports/24361 asami wrong filemodes o [2001/01/16] misc/24384 4.1 Cant add entry to neighbour discovery o [2001/01/16] bin/24390 Replacing old dir-symlinks when using /bi o [2001/01/16] kern/24393 Patch to msdosfs to handle a kind of inco o [2001/01/18] bin/24435 Changing slice type causes Auto-partition o [2001/01/18] bin/24439 suggested replament for adduser(8) o [2001/01/20] bin/24485 [PATCH] to make cron(8) handle clock jump o [2001/01/20] ports/24493 msmith Pib maker function unable to launch xterm a [2001/01/21] kern/24512 jesper Sent ICMP unreach when packet not for us f [2001/01/21] misc/24513 new options for pppd o [2001/01/21] conf/24515 Fix for find(1) warning in /etc/rc o [2001/01/21] kern/24516 Mouse Logitech M-S48 does not in FreeBSD o [2001/01/21] bin/24521 green ssh-agent exits when authenticating DSA v o [2001/01/22] kern/24528 Bad tracking of Modem status o [2001/01/23] bin/24569 PATCH for PPPD o [2001/01/23] bin/24592 cjc dmesg.boot Gets Overwritten without Reboo o [2001/01/25] ports/24651 mharo portlint gives a bogus warning o [2001/01/26] ports/24658 jkh Enhancement to src/release/Makefile a [2001/01/26] ports/24660 ports New port: Xerces-C 1.3.0 o [2001/01/26] alpha/24663 alpha Console output gets scribbled into /var/l o [2001/01/27] gnu/24681 gcc 2.95.3 cannot compile rince.c from IO o [2001/01/27] ports/24687 ports QUAKE FORGE & SVGALIB a [2001/01/30] ports/24736 ports New port: SGI's open inventor (graphics/i o [2001/01/30] bin/24742 send adduser.message before dirs are crea o [2001/01/30] ports/24743 chuckr a2ps port installs files in / o [2001/01/30] misc/24746 green SSH terminal hangs on large paste of data o [2001/01/30] ports/24749 dirk mysql323-server pkg-install script doesn' o [2001/01/31] bin/24757 ftpd not RFC compliant o [2001/02/01] docs/24786 doc missing FILES descriptions in sa(4) o [2001/02/02] docs/24797 phk when using MALLOC_DEFINE sys/param.h and o [2001/02/03] kern/24827 Erratic Intellimouse Explorer in 4.1 and o [2001/02/03] bin/24828 [PATCH] ntpd compilation and additional r o [2001/02/04] gnu/24844 gdb does not support kernel threads a [2001/02/05] docs/24869 keramida Some text elf.5 is duplicated o [2001/02/05] kern/24882 ktrace not syncing .out file before panic o [2001/02/06] kern/24900 Server logs:indfcntl(8, F_SETFL, 4): Inap o [2001/02/06] kern/24902 IPC Message Queue number to big o [2001/02/06] misc/24907 qa Options screen at MenuMedia menu problem o [2001/02/06] docs/24921 phk Typo /devs --> /dev o [2001/02/07] ports/24940 demon prolem with Tnm::icmp echo command due to o [2001/02/08] bin/24953 green adduser ignores passwd_format in login.co o [2001/02/08] bin/24955 /usr/bin/tail -F in 4.1+ doesn't work if o [2001/02/08] kern/24959 jesper proper TCP_NOPUSH/TCP_CORK compatibility o [2001/02/08] i386/24963 perfmon(4) doesn't work on SMP systems o [2001/02/09] ports/24983 asami Emacs ports have misleading names o [2001/02/10] ports/24987 nbm New port: Courier mail server. o [2001/02/11] bin/25012 tar(1) as root does not preserve ownershi o [2001/02/11] bin/25013 mv(1) cannot move unresolvable symlinks a o [2001/02/11] bin/25015 cp: options -i and -f do not work as docu a [2001/02/11] docs/25016 ru symlink(7) manpage says symlinks have no o [2001/02/11] bin/25017 cp -pRP does not preserve symlink ownersh o [2001/02/11] kern/25018 lstat(2) returns bogus permissions on sym o [2001/02/12] ports/25031 ache www/apache: dbmmanage fails verifying md5 o [2001/02/13] bin/25059 dlopen(..,RTLD_GLOBAL) doesn't work for s o [2001/02/13] bin/25070 newsyslog(8) should send signals only onc o [2001/02/13] bin/25085 msmith mlxcontrol utility fails silently if devi o [2001/02/15] misc/25109 Fujitsu MO device MCC3064AP could't be c a [2001/02/17] ports/25177 ports New port: java/jdbcpool-current o [2001/02/19] misc/25218 peter mailwrapper invokes sendmail when resourc f [2001/02/19] conf/25223 darrenr PATCH for rc.network to enable ipnat sepe o [2001/02/20] bin/25241 luigi ipfw shouldn't show dynamics rules when s o [2001/02/21] ports/25251 dima acroread4 uses hard coded path for lpr f [2001/02/21] bin/25263 green openssh and /etc/login.access does not wo o [2001/02/21] bin/25273 add fs type feature to vnconfig(8) to all f [2001/02/21] kern/25275 X server freezes system randomly on pentu f [2001/02/22] bin/25278 dd bs accepts -s -c but not -sc o [2001/02/22] alpha/25284 alpha PC164 won't reboot with graphics console o [2001/02/23] ports/25313 wosch Script source displayed at http://www.nl. a [2001/02/24] ports/25342 ports saint: user authentication fails in remot o [2001/02/25] misc/25354 Slovak (sk_SK) locale missing o [2001/02/26] misc/25378 kris update contrib/libgmp to newer version (3 o [2001/02/26] kern/25386 cg Incorrect mixer registers (line & synth) s [2001/02/26] docs/25392 doc Chapter 9 pages could use 'location of fu o [2001/02/26] docs/25405 wosch misleading warning from catman(1), etc. a [2001/02/27] ports/25419 dwcjr Difficulties installing print/teTeX port o [2001/02/27] kern/25445 kernel statistics are displayed in wrong a [2001/02/28] ports/25448 ports mpmf20 fails to correctly display the dir o [2001/02/28] gnu/25459 Dumpvalue.pm says SYNOPSYS instead of SYN o [2001/02/28] bin/25462 daemon(3) fails if called by a session le o [2001/02/28] i386/25463 PS/2 mouse sync problems with KVM switch f [2001/03/01] bin/25474 dump can't close fifo pipe correctly o [2001/03/01] bin/25477 billf pam_radius fix to allow null passwords fo o [2001/03/02] ports/25490 wosch [PATCH] fix various bugs in stat(1) a [2001/03/02] conf/25495 keichii missing et_EE.ISO_8859-15 locale a [2001/03/02] misc/25499 buffer paste functionality from keyboard o [2001/03/03] kern/25517 ARP cache timeout behavior can be improve o [2001/03/04] kern/25521 Laptop with FreeBSD4.2 freezes in battery f [2001/03/04] conf/25527 jdp `man ldconfig' does not reflect its behav o [2001/03/04] ports/25531 portmgr INSTALL_* macros fail for non-root users a [2001/03/05] ports/25560 ports New port: ftp/kbear: An ftp client for KD o [2001/03/05] ports/25564 obrien Port ups-debug doesn't build on the alpha o [2001/03/06] bin/25572 sshd core dump o [2001/03/06] ports/25576 jmz XFree86-4 port installs manual pages with s [2001/03/07] bin/25584 arp.c - better printed ether address s [2001/03/07] bin/25587 des Add Solaris-like functionality to truss(1 o [2001/03/07] bin/25598 patch to let ftpd output message when cha s [2001/03/09] bin/25627 Cannot append hash after .elif in Makefil o [2001/03/09] misc/25635 gad lpr -# didn't work on network printer a [2001/03/11] ports/25708 dougb pine4 port hard-code /usr/local/include a [2001/03/11] ports/25710 ports New port: news/slrn-pl, slrn with polish o [2001/03/11] bin/25723 green OpenSSH on 4.2 excessively regenerates RS o [2001/03/12] bin/25724 quota(1) outputs wrong limits about NFS q o [2001/03/12] kern/25733 mismatch between error reporting in smbus o [2001/03/12] bin/25736 ac -d option probrem with overdays logon o [2001/03/12] ports/25763 shige XV fails to refresh properly on image dis o [2001/03/13] kern/25777 atime not updated on exec o [2001/03/13] ports/25779 portmgr (patch) make fetch-list should list all m o [2001/03/14] gnu/25794 markm [PATCH] make perl use a decent random num o [2001/03/14] conf/25809 /etc/default/rc.conf bad default ipfilter o [2001/03/14] ports/25815 portmgr [PATCH] Port build collision fix. o [2001/03/15] ports/25828 portmgr The devel/autoconf port won't install ins o [2001/03/15] conf/25829 IPSec config in rc.network doesn't allow f [2001/03/15] bin/25833 LOG_FAC() is bogus o [2001/03/16] kern/25866 more than 256 ptys, up to 1302 ptys. o [2001/03/17] ports/25878 tegge error during compilation of linuxthreads o [2001/03/18] kern/25909 4.x kernel freezes on P3-Asus CUSL2-C mot o [2001/03/18] kern/25910 cg Kernel sound driver may die if a program o [2001/03/19] misc/25917 green Paste thrue SSH Secure Shell v.2.4.0 (bui f [2001/03/19] kern/25923 vm_map.h defines a macro called "min_offs o [2001/03/21] misc/25984 bsd.prog.mk doesn't link C++ programs pro f [2001/03/22] docs/26003 doc getgroups(2) lists NGROUPS_MAX but not sy o [2001/03/22] bin/26005 MIME quoted-printable encoding added to v a [2001/03/22] docs/26006 doc Changing zone(9) man page o [2001/03/22] kern/26016 VMWare is crash on SMP machine f [2001/03/23] misc/26035 System hangs when playing mp3 on PCI Maes o [2001/03/24] ports/26058 billf textproc/htdig simplifications and separa o [2001/03/27] conf/26145 [PATCH] There is no make.conf equivalent o [2001/03/27] misc/26153 sed G does not double space o [2001/03/28] ports/26192 ports apel appeared both in xemacs/site-package o [2001/03/29] bin/26201 telnet SRA password exchange trap when no a [2001/04/01] ports/26274 ports New port: Perl/TK Jabber client o [2001/04/01] kern/26277 ppc driver doesn't work with port 0x3BC p o [2001/04/02] docs/26286 doc *printf(3) etc should gain format string a [2001/04/02] ports/26297 ports New port: devel/florist o [2001/04/02] ports/26303 adrian Wrong permission on Squid24's errors dire a [2001/04/03] ports/26313 ports New Port: german/eagle: A tool for design o [2001/04/03] kern/26316 Booting FreeBSD on VMware2 with 2 or 3 et o [2001/04/03] misc/26323 Quota system create zero-length files o [2001/04/03] kern/26324 Defaults for NFS mounts over TCP are slow o [2001/04/04] kern/26348 [pcvt] scon -s, page fault in HP mode o [2001/04/04] bin/26359 [PATCH] a minor nit in how netstat detect o [2001/04/05] misc/26373 Rpc.statd implements the SM_NOTIFY call b o [2001/04/06] bin/26375 markm PAMized su allows non-wheel members to su f [2001/04/06] misc/26378 All 4.X-Release and 4.3rc2 Panics Install o [2001/04/06] kern/26385 VMWare reboots entire system after starti f [2001/04/08] kern/26437 Kernel Panics on SMP box when subjected t o [2001/04/08] docs/26451 doc ctype.h defined functions are not accurat o [2001/04/09] kern/26454 cg mixer volume settings on Maestro-2E (Diam o [2001/04/09] bin/26468 pkg_delete clears dependencies after runn o [2001/04/10] conf/26488 incomplete named sandbox information a [2001/04/13] docs/26532 green ".Ql ?" becomes "`'?" through nroff (and a [2001/04/13] kern/26534 Add an option to ipfw to log gid/uid of w o [2001/04/13] kern/26547 "lnc" problem with shared memory mode wit o [2001/04/13] i386/26562 /dev/lpt0 returns EBUSY when attempting t o [2001/04/14] kern/26563 ioctl(SNDCTL_DSP_SPEED) returns -1 when f o [2001/04/14] kern/26584 kernel boot messages aren't logged correc o [2001/04/15] bin/26602 RELENG_4 ssh/sshd modifies the 'erase' ch o [2001/04/16] kern/26608 when boot Freebsd 4.2 Release from the c o [2001/04/16] kern/26618 unmount(2) can't unmount a filesystem who a [2001/04/16] ports/26628 ports New port: audio/qtecasound, well done o [2001/04/17] misc/26636 If /etc/ttys goes empty, init(8) never re o [2001/04/17] kern/26638 kern.fast_vfork sysctl doesn't do anythin o [2001/04/17] kern/26644 sos [PATCH] ATA/ATAPI driver doesn't implemen a [2001/04/17] misc/26646 srand() provides only 8-bit table o [2001/04/17] misc/26649 diskless client can't share root with ser o [2001/04/17] misc/26653 RTL8012 ethernet not listed in LINT or ha o [2001/04/17] misc/26658 update to src/usr.bin/calendar/calendars/ o [2001/04/18] misc/26678 Correction of: misc/26521 o [2001/04/18] bin/26686 Freeze at boot from 4.3-RC4 floopies - US o [2001/04/18] docs/26692 rnordier boot manpage describes bootfile prompt in o [2001/04/18] misc/26695 CHANGE REQUEST: kill(all) -l output o [2001/04/19] misc/26720 Both .cshrc and .profile should have the o [2001/04/20] kern/26740 rwatson [PATCH] jail improvement f [2001/04/21] bin/26746 dmesg only prints the last couple of line f [2001/04/22] misc/26763 darrenr installing ipfilter sample files to share o [2001/04/22] kern/26787 dd sysctl change request o [2001/04/23] kern/26798 cvsup 4.3-RC -> 4.3-STABLE causes problem o [2001/04/23] kern/26800 wpaul Support for Netgear MA-301 wireless o [2001/04/23] ports/26801 ports cyrus port should add periodic file to pr s [2001/04/23] bin/26803 des Fix fetch to allow FTP puts in '-o' & all o [2001/04/24] i386/26812 old bootstrap /sys/i386/boot/... still in a [2001/04/24] ports/26825 ports port xmms-avi won't compile libavixmms.so o [2001/04/25] bin/26854 Better fix for ESS Technology Maestro-2E o [2001/04/25] docs/26861 doc accept(2) manpage documents non-existant o [2001/04/26] misc/26879 mkfilter not installed, yet referred to v s [2001/04/26] ports/26882 kde KDE should use ca-roots port for SSL cert a [2001/04/26] ports/26884 ports new port for visualworks 5i.3 o [2001/04/26] kern/26885 keichii add if_xe as kernel module o [2001/04/27] ports/26904 jim New port(?): net/everybuddy-i18n (i18n pa o [2001/04/28] bin/26919 qa sysinstall' fdisk can ONLY set bootable f o [2001/04/29] bin/26943 [patch] description of :C modifier is mis o [2001/04/30] i386/26994 obrien AMD Athlon Thunderbird not known to ident o [2001/05/01] kern/27008 kernel function sysbeep(xxx, 0) does prod o [2001/05/01] ports/27019 marcel patch supplied in PR ports/26976 breaks l o [2001/05/02] docs/27027 nik Update src/share/misc/iso639 o [2001/05/02] misc/27039 new syscons screensaver a [2001/05/02] docs/27040 dougb rc(8) and syscons(4) talk about rc.conf.l o [2001/05/02] misc/27041 modify src/release/Makefile to make anoth f [2001/05/03] bin/27063 darrenr /sbin/ipfs missing f [2001/05/03] conf/27070 darrenr save/restore IP Filter's state tables at o [2001/05/04] ports/27075 sobomax Port java/javavmwrapper installs no man p o [2001/05/04] ports/27079 sobomax Improvements for javavmwrapper? o [2001/05/06] bin/27163 cracauer sh trap TSTP () deadly hangs o [2001/05/06] ports/27167 ports ETHOberonV4 won't run a [2001/05/07] ports/27182 mharo Teach portlint to recognize RUN_DEPENDS=$ o [2001/05/07] ports/27187 jmz add linux ioctl handler to dri xf86-403 c o [2001/05/07] bin/27188 fix of rsh non-interactive mode behaviour o [2001/05/07] misc/27190 Day light savings in Mexico. o [2001/05/08] ports/27200 greid new port: bed (binary editor) o [2001/05/08] i386/27216 qa Can not get to shell prompt from serial c o [2001/05/09] kern/27232 On NFSv3 mounted filesystems, stat return o [2001/05/10] bin/27258 getty didn't check if if= isn't empty o [2001/05/11] ports/27266 kevlo Port textproc/xerces should be named xerc o [2001/05/11] bin/27268 fdisk does not recognize Linux extended p o [2001/05/11] kern/27269 Cannot mount linux extended (logical) par o [2001/05/11] bin/27270 cg sys/soundcard.h fails to define AFMT_S16_ o [2001/05/12] bin/27281 vidcontrol(1) does not have error codes f [2001/05/12] bin/27283 brian netstat -i missing IPv4 input packet coun o [2001/05/12] bin/27289 green SSH don't do correct diagnostic when no r a [2001/05/12] misc/27290 Slovak(sk) locale was not present o [2001/05/12] ports/27291 jim Bluefish port doesn't build mo files o [2001/05/12] bin/27294 paul pkg_update disregards suffixes (portrevis o [2001/05/13] i386/27306 hw watchpoints work unreliable under gdb o [2001/05/14] misc/27311 pthread_attr_setscope always fails o [2001/05/14] bin/27319 obrien df displays amd pid processes f [2001/05/15] ports/27332 ports New port: swedish/staroffice52 o [2001/05/15] kern/27342 change-request o [2001/05/16] bin/27374 Added bold color to the /bin/ls color sup o [2001/05/17] kern/27403 lpt driver doesn't handle flags anymore o [2001/05/17] bin/27423 change request a [2001/05/18] misc/27425 Slovak definitions of locale missing o [2001/05/18] kern/27429 'dependant' is a misspelling o [2001/05/18] bin/27433 ps binary does not do what the man page s o [2001/05/20] misc/27471 Linux emulation is missing code needed to o [2001/05/20] ports/27473 jmz when I install the package XFree86-4.0.3_ f [2001/05/20] bin/27483 make sysinstall ask for the keymap at ins f [2001/05/22] ports/27542 sobomax xmps should not require gnome a [2001/05/23] ports/27569 ports bootup error problem with Apache 2 o [2001/05/23] kern/27571 bp Changing policy of shadowing files and di o [2001/05/23] docs/27572 luigi ipfw(8) manpage does not clearly state ch o [2001/05/23] bin/27604 change truncate to support low case size o [2001/05/24] kern/27615 darrenr ipf restricts rule-changing at secureleve o [2001/05/24] i386/27627 machdep.tsc_freq does not exists on machi o [2001/05/25] misc/27633 Mapping for serbian keyboards, follows IS o [2001/05/25] docs/27653 doc Updates to send-pr.html to support MIME o [2001/05/26] docs/27654 doc Update to PR 27653 o [2001/05/26] kern/27660 Kernel does not return error if adding du o [2001/05/26] misc/27677 miss BIND name server library o [2001/05/27] bin/27687 fsck wrapper is not properly passing opti o [2001/05/27] bin/27697 assar trouble compiling libroken o [2001/05/29] ports/27743 kuriyama UPDATE to converters/tcs o [2001/05/31] gnu/27803 Enhancement to sort(1) a [2001/05/31] ports/27805 ports New port: SQL-Ledger Accounting o [2001/06/01] conf/27811 alfred bad order of rpc.lockd and rpc.statd star o [2001/06/01] misc/27816 rpcgen -b generates server code which doe o [2001/06/01] misc/27829 kris pax's uid/gid cache is read-only a [2001/06/02] docs/27833 cjc No man page for locate.rc o [2001/06/02] kern/27834 Cannot warm-reboot Compaq AP400 due to SC o [2001/06/02] kern/27835 execve() doesn't conform to execve(2) spe o [2001/06/02] ports/27838 keichii dot.emacs is 600 s [2001/06/02] docs/27843 alex [PATCH] make.conf WITH_* variables aren't o [2001/06/02] kern/27849 dfr AGP RELEASE ioctl frees memory o [2001/06/04] misc/27872 "Load Config" (sysinstall) hangs Compaq D o [2001/06/06] ports/27903 peter Update: www/transproxy o [2001/06/06] docs/27915 doc man 5 passwd does not properly explain th o [2001/06/06] docs/27919 n_hibma missing usb man pages o [2001/06/06] docs/27921 markm manpage skey(1) should be skey(7) o [2001/06/07] alpha/27930 NE2000 not supported on FreeBSD Alpha 4.x o [2001/06/07] ports/27931 ports devel/pth vs. native pthreads conflict fi o [2001/06/07] alpha/27933 alpha Time jitter under load on FreeBSD 4.3 alp a [2001/06/07] ports/27936 mi Update /usr/ports/deskutils/xmdiary 3.0.1 a [2001/06/08] ports/27956 ports New port:A messenging client supporting A a [2001/06/08] conf/27959 imp Add cygwin termcap entry o [2001/06/08] bin/27972 losing information with talk o [2001/06/10] bin/28007 added "force printing of non-print chars" o [2001/06/10] i386/28023 sendmail tries to get the netgraph.ko mod o [2001/06/10] bin/28026 Graphics mode suspend causes weird hang o a [2001/06/11] conf/28078 /stand/sysinstall skips distro selection a [2001/06/11] conf/28081 murray /stand/sysinstall errs out if /cdrom/ alr o [2001/06/12] ports/28111 ports pcb port has unlisted dependencies a [2001/06/12] ports/28115 ports New Port - textproc/htmldoc o [2001/06/13] ports/28121 sobomax New port: 3D modelling and animation syst o [2001/06/13] ports/28138 tg python os.statvfs module is not functiona s [2001/06/14] docs/28144 keramida no manpage for host.conf, no xrefs in oth a [2001/06/15] bin/28171 des [PATCH] to support a HTTP_REFERER env var a [2001/06/15] gnu/28189 [PATCH] fix for detecting empty CVS commi f [2001/06/16] misc/28203 NEWCARD won't recognize my cardbus contro o [2001/06/16] kern/28206 bp UMAPFS module should depend on NULLFS - p f [2001/06/17] misc/28230 iso-8859-1_to_cp437.scm doesn't contain s o [2001/06/17] misc/28236 [PATCH] iso-8859-1_to_cp437.scm doesn't c o [2001/06/17] kern/28247 pirzyk ATM/HARP driver for IDT and ForeLE ATM ca o [2001/06/18] misc/28255 picobsd documentation still references ol o [2001/06/18] ports/28256 ports New port: citadel-5.74 s [2001/06/18] kern/28260 UIO_MAXIOV needs to be made public a [2001/06/19] ports/28272 ports Update port: net/libsocket++ o [2001/06/20] bin/28294 dump of vinum based file systems by devic o [2001/06/20] kern/28297 change request for sys/i386/conf/NOTES o [2001/06/21] ports/28332 ports Gimp manual port 1-2 years out of date, m o [2001/06/21] bin/28333 rtprio/idprio setuid problems s [2001/06/22] i386/28346 n_hibma USB ethernet dongle detach requires "ifco a [2001/06/23] ports/28363 ports New port: audacity-0.95 - a graphical wav o [2001/06/23] bin/28364 lex(1) generated files fail to compile cl o [2001/06/23] ports/28365 wosch Typical use of portchecheckout breaks int o [2001/06/23] docs/28371 phk malloc(2) man page correction o [2001/06/26] ports/28432 obrien [patch] comms/conserver fails with MD5 pa o [2001/06/26] bin/28435 [patch] allow newsyslog to signal process f [2001/06/27] i386/28444 qa instal.cfg; setting tryRTSOL=NO does not o [2001/06/27] bin/28449 cracauer sh(1) aborts on certain input a [2001/06/27] misc/28455 GNU readline should be updated to 4.2 o [2001/06/27] misc/28456 german keymap with dead keys f [2001/06/27] misc/28468 There may be problems about login o [2001/06/27] ports/28471 keith no iso8859 font a [2001/06/28] ports/28482 ports PostgreSQL Compile problem o [2001/06/28] misc/28494 n_hibma ugen usable only from "attach" or by usbd o [2001/06/29] ports/28510 portmgr Can't make ports readmes if categories mi o [2001/06/29] ports/28521 ports inconsistency: daemontools and serialmail o [2001/06/29] ports/28526 nakai x11-wm/icewm can't show the CPU status wi o [2001/06/29] misc/28529 runetype.h doesn't have C++ 'extern "C"' f [2001/06/30] ports/28551 ports ports/mail/faces doesn't build (linking w o [2001/06/30] docs/28555 doc [PATCH] style(9) isn't explicit about boo o [2001/06/30] kern/28566 bp Mount_null loopbacks can hang startx temp o [2001/07/01] bin/28620 ru xinstall has no way to pass options to st o [2001/07/02] ports/28644 jmz Make error when rebuilding xdvi o [2001/07/03] ports/28678 wosch portcheckout doesn't allow flexible build o [2001/07/03] ports/28680 portmgr pkg_update complains about missing REQUIR o [2001/07/03] kern/28681 ATAPI MO drive support o [2001/07/03] ports/28682 portmgr Some port install builds fail if silent ( o [2001/07/04] docs/28699 doc strptime(3) %d format specifier not compl o [2001/07/05] ports/28717 billf net/net-snmp stop enumerate interfaces wh a [2001/07/05] ports/28758 roam New port: security/apg o [2001/07/06] ports/28771 ports opendx server fails to start o [2001/07/07] bin/28789 /usr/bin/last does not filter for uucp co o [2001/07/07] ports/28803 obrien ports/comms/conserver does not support ## o [2001/07/08] ports/28810 lioux qpopper 4.0.3 + PAM modification; HAVE_SH o [2001/07/08] bin/28820 tar and cpio cannot deal with files > 2GB a [2001/07/08] bin/28824 sos [patch] src/usr.sbin/burncd warning clean o [2001/07/09] ports/28851 ports New port: conserver-7.0.2 o [2001/07/10] ports/28887 brian [PATCH] sandbox for httptunnel! o [2001/07/10] kern/28888 Acer 8000 NIC not detected correctly o [2001/07/11] misc/28890 merge.c compares int i against size_t siz f [2001/07/11] ports/28904 portmgr bsd.port.mk: PLIST_SUB for DOCSDIR, DATAD o [2001/07/13] misc/28938 small PicoBSD - An update to the build script t o [2001/07/13] kern/28947 dup2 closing pthread file descriptor a [2001/07/13] docs/28949 phk the mknod(8) man page stills refers to bl o [2001/07/14] bin/28972 dwmalone gamma returns same result as lgamma o [2001/07/14] i386/28975 mjacob RocketPort problems o [2001/07/14] kern/28976 ddb doesn't understand ctrl-u o [2001/07/14] misc/28980 Fujitsu/Siemens Lifebook E-6540 stalls wh o [2001/07/15] bin/28988 We need more simple message digesting too f [2001/07/15] docs/28994 dd New article for docproj "Checkpoint VPN-1 o [2001/07/16] ports/29009 dburr fsgs port installs cfg file with wrong pa o [2001/07/16] ports/29030 obrien [PATCH] net/netcat: support for IPv6 o [2001/07/18] bin/29062 markm krb4 and krb5 multiply defined version sy o [2001/07/18] ports/29068 nsayer cyrus-sasl port pwcheck should allow PAM o [2001/07/18] ports/29069 portmgr Update port devel/autoconf o [2001/07/18] bin/29071 relay patch for rwhod o [2001/07/19] misc/29077 At loading notebook pccardd not correctly o [2001/07/19] ports/29080 ports New port: net/icradius - IC-Radius daemon o [2001/07/19] ports/29081 ports New port: net/p5-IC-Radius o [2001/07/19] docs/29088 phk jail(8) man page has innacurate instructi o [2001/07/19] misc/29089 Some kind of fsbn0 error... o [2001/07/19] bin/29090 add `no_rip_out' option to routed o [2001/07/20] misc/29103 make (1) dump core while processing ^C fr o [2001/07/20] conf/29117 pccard.conf missing an entry for NOVAC NV o [2001/07/21] bin/29119 menu of fdisk editor in 4.3R does not lis o [2001/07/21] ports/29120 ports [PATCH] net/radiusd-cistron: Add PAM supp a [2001/07/21] ports/29137 cy Brand New Tripwire-2.3.1 Port o [2001/07/22] docs/29143 doc List of man pages that need to be written o [2001/07/22] ports/29154 nik TeX resource settings from MAKE_ENV in pr o [2001/07/23] ports/29163 jmz XFree86-4 port should register XFree86-4- o [2001/07/23] bin/29164 [PATCH] lack of 'Do not fragment' flag in f [2001/07/23] docs/29166 tomsoft Flaw in growfs(8) manpage o [2001/07/23] conf/29167 rc.pccard doesn't check /var/run/pccardd. o [2001/07/23] kern/29169 mjacob FC loop that 'goes away' never times out o [2001/07/23] bin/29171 [PATCH] keyserv and rpc.yppasswd o [2001/07/23] bin/29172 [PATCH] Add more checks in rpc/svc_vc.c a o [2001/07/23] bin/29173 [PATCH] wrong flags for rpcgen(1) o [2001/07/23] bin/29174 [PATCH] cleanup of the ti-rpc merger o [2001/07/23] bin/29175 tmm [PATCH] rpcgen(1) and inetdflag/pmflag su o [2001/07/23] bin/29177 [PATCH] rpc client create functions with o [2001/07/24] ports/29199 sobomax jdk12beta port should register open-motif o [2001/07/25] ports/29219 bp smbfs-1.4.1 don't compile o [2001/07/25] ports/29223 ports cyrus-imapd and postfix master.8 manpage o [2001/07/25] kern/29233 VIA 82C686 AC97 codec gets probed as 'chi o [2001/07/26] docs/29245 doc top(1) manpage doesn't understand SMP o [2001/07/26] ports/29248 jmz XFree86 4.1 hangs with an i815 chip while o [2001/07/26] ports/29250 greid Update net/ettercap to 0.5.4 o [2001/07/27] kern/29264 Recovery from LIPs on FCAL using isp not o [2001/07/27] ports/29267 nbm Update the svscan.sh startup script for d o [2001/07/28] ports/29278 greid Update port net/ettercap o [2001/07/28] ports/29286 ports New port: french/xtel - an emulator for t o [2001/07/28] ports/29291 billf ethereal fails to build in wiretap a [2001/07/28] misc/29292 sos The functional addtion to burncd(8) o [2001/07/29] ports/29297 ports NEW PORT: System Maintenance Aid written o [2001/07/29] ports/29298 cpiazza Installation of documentation for vcdgear o [2001/07/29] alpha/29299 alpha FreeBSD 4.3 Alpha + Tekram SCSI adapter p o [2001/07/29] kern/29307 NIC Initialization fails on dual CPU syst o [2001/07/29] ports/29310 steve Fix bento checksum errors o [2001/07/29] misc/29312 sound Using mixer on pcm misbehaves with onboar f [2001/07/29] kern/29318 mjacob Exabyte 8200 needs SA_QUIRK_1FM and SA_QU o [2001/07/30] gnu/29331 still documented broken options in gcc ma o [2001/07/30] ports/29332 ports Refiling New Port: ripem-2.1 o [2001/07/30] ports/29343 ports new postgresql7 port feature o [2001/07/31] ports/29346 ports New port: misc/afbackup-beta o [2001/07/31] kern/29355 adrian [patch] lchflags support o [2001/08/01] bin/29361 startslip can't load if_sl.ko o [2001/08/01] bin/29363 [PATCH] newsyslog can support time as ext o [2001/08/01] conf/29364 imp please add STI Flash 5.0 to pccard.config o [2001/08/01] ports/29369 ports new port for the CHTML package o [2001/08/02] ports/29392 portmgr Small built-time glitch in Makefile for a o [2001/08/02] kern/29395 reaction on ctrl-alt-del - poweroff, halt o [2001/08/02] kern/29405 bp many mount/umount smbfs share results in o [2001/08/03] kern/29423 [PATCH] kernel security hooks implementat o [2001/08/03] ports/29426 ports New port: he2 - a Hebrew LaTeX oriented e o [2001/08/04] ports/29456 ports New port of blimitd (daemon to enforce lo a [2001/08/04] misc/29458 Replace DIS_8859-15 by ISO_8859-15 o [2001/08/07] kern/29499 dwmalone it is not possible to send creditionals o [2001/08/07] ports/29514 ports new port submission: games/xlogical (SDL o [2001/08/07] bin/29516 markm telnet from an non FreeBSD host still use o [2001/08/07] ports/29519 ports X11 ports generate undef pthread refs wit o [2001/08/07] ports/29528 dburr Update misc/tvguide to 0.9.0 o [2001/08/07] misc/29529 dcs Boot prompt "?" command doesn't list "boo o [2001/08/08] kern/29538 joerg Mounting /dev/fd0 never completes o [2001/08/08] misc/29550 duplicate pings jinside of vmware 2.0 f [2001/08/09] docs/29571 doc [PATCH] No man page for pgrp kernel funct o [2001/08/09] ports/29573 ports New port: A script to fetch mail from a H o [2001/08/09] bin/29581 proposed gethostbyXXXX_r() implementation o [2001/08/09] ports/29590 ports [new port] www/parser-bin One more server o [2001/08/11] kern/29621 n_hibma Missing man page for ulpt a [2001/08/11] ports/29630 ports New port : xtexsh o [2001/08/11] ports/29638 green [patch] upgrade security/cfs a [2001/08/12] i386/29639 murray entry for zip 250 drives in /etc/disktab o [2001/08/12] ports/29667 ports New port: www/mod_auth_pwcheck o [2001/08/13] ports/29674 yoichi diclookup-mule port which works on emacs- o [2001/08/13] bin/29675 lint fails on stdio.h o [2001/08/13] ports/29691 portmgr New port variable USE_COMPAT_LIB - bsd.po o [2001/08/14] kern/29698 linux ipcs doesn'work o [2001/08/14] ports/29710 portmgr bsd.port.mk - Include more MASTER_SITE_* o [2001/08/14] ports/29711 ports New port: xjumpx -- improved version of g f [2001/08/14] ports/29712 dwcjr New port : muttprint - fancy printing for o [2001/08/15] kern/29727 amr_enquiry3 structure in amrreg.h (amr d o [2001/08/15] ports/29731 ports minor errors in docs, install o [2001/08/15] ports/29732 sobomax linking error o [2001/08/15] ports/29746 obrien Fix pkg-plist for chinese/cless o [2001/08/15] ports/29747 obrien Fix pkg-plist for chinese/cxterm o [2001/08/15] ports/29749 obrien Fix pkg-plist for chinese/gb2ps o [2001/08/15] ports/29757 se Fix pkg-plist for comms/yaps o [2001/08/15] ports/29760 hoek Fix pkg-plist and Makefile for converters o [2001/08/15] ports/29762 hoek Fix Makefile and pkg-plist for converters o [2001/08/16] kern/29769 Kernel configuration hangs on i815e with f [2001/08/16] kern/29777 n_hibma kernel uscanner.c contains wrong vendor a f [2001/08/17] docs/29807 dd [PATCH] XFREE86_VERSION is undocumented o [2001/08/17] ports/29831 ume Fix port sysutils/gkrellm o [2001/08/17] ports/29836 ports New port: cyrus-imspd o [2001/08/18] ports/29843 ports StarOffice 5.2 port does not find CD-ROM f [2001/08/18] bin/29850 markm ftpd.c doesn't check via PAM/pam_acct_mgm o [2001/08/18] ports/29851 kuriyama ports/textproc/cocoon has a checksum erro o [2001/08/18] ports/29856 portmgr make extract of cyrus did an install of c o [2001/08/19] conf/29870 rc.diskless2 uses /usr/sbin/mtree before o [2001/08/19] kern/29875 CURRENT driver for Tekram DC395X and DC31 o [2001/08/19] ports/29876 portmgr bsd.port.mk: MLINKS Description wrong o [2001/08/19] ports/29883 markm Update textproc/par to 1.53 o [2001/08/20] misc/29893 qa suggestions for 4.4 sysinstall o [2001/08/20] bin/29897 pam_unix patch, which uses loginclass pas a [2001/08/20] docs/29902 www Mozilla package URL problems o [2001/08/20] kern/29915 kernel panics on interaction with mlock a o [2001/08/21] ports/29924 ports remove port smalleiffel-0.76.b4 o [2001/08/21] ports/29929 ports wginstall.pl script chokes on calculated o [2001/08/21] ports/29930 demon new port for LAM/MPI o [2001/08/22] bin/29961 ru A4 paper size for groff knob for /etc/mak o [2001/08/22] kern/29962 sent broadcast packets get spurious 4 byt a [2001/08/22] ports/29969 gnome gnomedb does not build o [2001/08/22] kern/29974 bp smbfs generates a ''Negative opencount'' a [2001/08/23] docs/30008 doc This document should be translated, comme o [2001/08/23] ports/30012 dirk mod_php4 does not build on 4.4 with apach f [2001/08/23] i386/30013 a program loops when used with && o [2001/08/24] ports/30029 ports new port: net/papaya-plugins (plugins for o [2001/08/24] ports/30030 ports new port: net/papaya-plugins (graphical m o [2001/08/24] kern/30052 dc(4) driver queues outgoing pkts indefin a [2001/08/24] bin/30054 mike ftp(1)'s fetch.c could easily have vhost o [2001/08/24] bin/30055 mike ftp(1)'s fetch.c has readability-issues w o [2001/08/25] docs/30082 jkoshy Dead URL on website o [2001/08/26] ports/30099 portmgr [PATCH] Useless use of cat in /usr/ports/ o [2001/08/27] ports/30148 portmgr devel/libtool: shared libs with compaq-cc o [2001/08/28] kern/30160 Kernel panic when flash disk is removed a f [2001/08/28] ports/30166 ports ports/net/nettest2001 o [2001/08/28] ports/30170 anders majordomo port: scripts/createuser does n o [2001/08/28] kern/30179 FreeBSD 5.0 install hangs: deviceTry: mak o [2001/08/29] misc/30186 getaddrinfo does not handle incorrect ser o [2001/08/29] ports/30196 portmgr HTTP_PROXY (and FTP_PROXY) in /etc/make.c o [2001/08/29] kern/30200 yokota Bug in psm in 4.4-RC o [2001/08/29] ports/30201 msmith editors/wordperfect in ports is not usabl o [2001/08/29] i386/30206 PS/2 server 85 can't boot kern.flp o [2001/08/29] misc/30213 Fatal Errors of Server Programe o [2001/08/30] misc/30224 No irq - PCI wi card doesn't allow interu o [2001/08/30] ports/30225 nectar mozilla 0.93 build problem o [2001/09/01] bin/30247 sh cannot redirect to /dev/fd/1 or from / f [2001/09/01] ports/30249 ports SmallEiffel update to -0.75 o [2001/09/01] docs/30253 bp [PATCH] mount_unionfs(8) and mount_nullfs o [2001/09/01] kern/30257 apm enabled kernel panics (4.4-RC) o [2001/09/01] bin/30258 aborting burncd using Ctrl-C screws up CD o [2001/09/02] ports/30264 greid Update port: graphics/xawtv o [2001/09/02] ports/30272 grog [PATCH] instant-workstation RUN_DEPENDS b o [2001/09/03] misc/30297 dwmalone CLOCKS_PER_SEC non-standard o [2001/09/03] ports/30298 chuckr [PATCH] a2ps-4.13 can't cope with ENOMEM o [2001/09/03] conf/30301 Default printcap "mx" config too small o [2001/09/04] bin/30304 [PATCH] PAM authentication for uucpd o [2001/09/04] ports/30314 ports [PATCH] Add Exim packages to CDROM 1 o [2001/09/04] misc/30320 n_hibma USB mouse does not work after return'ing o [2001/09/04] bin/30321 strftime(3) '%s' format does not work pro o [2001/09/05] bin/30334 mount_nfs ignores acregmin, acregmax, axd o [2001/09/05] ports/30339 nakai port compilation problem found in rpm arc o [2001/09/05] conf/30341 be keymap: wrong Capslock behaviour with o [2001/09/05] bin/30360 vmstat returns impossible data f [2001/09/06] ports/30383 sobomax Updated port: x11-toolkits/gtk-engines-co o [2001/09/06] bin/30392 sh: incorrect value of $? in here-documen f [2001/09/06] ports/30395 ports New port: lang/spl o [2001/09/07] misc/30412 rtdl/dlopen() fails to merge common varia o [2001/09/07] kern/30422 WDT hardware watchdog driver & daemon o [2001/09/07] bin/30424 Generalization of vipw to lock pwdb while o [2001/09/08] conf/30441 Can't set interface arguments for dhcp co o [2001/09/08] docs/30442 doc remove broken referemce to gettime(9) fro o [2001/09/08] docs/30443 keramida remove broken reference to kerberos(1) fr o [2001/09/08] docs/30444 keramida remove broken references to gated(8) and o [2001/09/09] i386/30461 sound no audio cd with cmi8330 o [2001/09/09] bin/30464 pthread mutex attributes -- pshared f [2001/09/09] bin/30471 brian periodic script output to a file always a o [2001/09/10] bin/30484 rpc.rstatd consumed lots of open file des o [2001/09/10] bin/30496 `host` does not work properly with top-le o [2001/09/10] ports/30499 portmgr libtool-1.4.1 port diffs o [2001/09/11] i386/30503 imp stray pccard card insertion events after o [2001/09/11] kern/30510 no apm for VIA KT133A chipset o [2001/09/11] ports/30511 kde Problem getting opengl/mesa to work with o [2001/09/11] misc/30517 using sysinstall with install.cfg has no o [2001/09/12] conf/30520 rc files creation problem o [2001/09/12] misc/30526 inserting a Sony Ninja-ATA pcmcia style c o [2001/09/12] ports/30535 nakai Update port: x11-wm/icewm (fix ports/2806 o [2001/09/12] misc/30536 sos burncd(8) doesn't wait long enough for CD o [2001/09/12] kern/30540 [PATCH] spelling and grammar fixes in a c o [2001/09/12] kern/30541 imp [PATCH] old pccard beep depends on value o [2001/09/12] bin/30542 [PATCH] add -q option to shut up killall s [2001/09/12] bin/30543 ru [PATCH] use err() instead of just exit() o [2001/09/12] bin/30546 [PATCH] /etc/rc pedantry o [2001/09/13] ports/30549 ports Maintainer update: Jakarta Ant 1.4 o [2001/09/13] docs/30556 doc vnconfig man page incorrect; functionalit o [2001/09/13] ports/30557 ports bitchx fails to build when WITH_TCL=yes i o [2001/09/13] ports/30560 ports Typos in /usr/ports/french/staroffice52/p o [2001/09/13] kern/30570 boot loader don't reacts on USB keyboard o [2001/09/14] ports/30573 nakai /usr/X11R6/bin/xfce_setup does not create o [2001/09/15] docs/30603 doc physio(9) is internally inconsistent o [2001/09/15] ports/30604 ports postgresql7 doesn't build with kerberos5 o [2001/09/16] kern/30608 kern.ps_showallproc=0 doesn't limit queri f [2001/09/16] ports/30615 ports The 'bcwipe' port installs Linux binaries o [2001/09/16] docs/30618 keramida ediff man page incomplete o [2001/09/16] ports/30623 sobomax Update of the audio/glame port o [2001/09/17] ports/30625 ports [PATCH] vmware2 patch for -current with K o [2001/09/17] bin/30627 /usr/libexec/makekey doesn't grok modern o [2001/09/17] misc/30631 readdir_r() SEGV on large directories o [2001/09/17] kern/30634 kevent.data value incorrect for UDP socke o [2001/09/17] bin/30639 apmd crashes on SIGHUP (under certain con o [2001/09/17] bin/30640 apmd does not terminate properly on SIGTE o [2001/09/18] misc/30647 "make release" in src/release/ creates po o [2001/09/18] bin/30661 FreeBSD-current fails to do partial NFS f o [2001/09/19] ports/30673 greid Update port: net/ettercap to 0.6.0 o [2001/09/20] misc/30683 [PATCH] loader(8) fails to load module wh a [2001/09/20] bin/30685 cjc Patch for usr.bin/hexdump o [2001/09/20] ports/30698 ports New port: news/pl-slrn o [2001/09/20] misc/30699 pthread_attr_setscope function fails unco o [2001/09/20] i386/30700 Applications cannot synchronize sound usi o [2001/09/20] ports/30701 ports setiathome port misuses the 'nobody' user o [2001/09/21] ports/30707 ports midnight commander can't handle correctly o [2001/09/22] docs/30731 doc printf(1) refers to ANSI C Standard draft o [2001/09/22] ports/30732 obrien bash2 - pkg-plist fix and sample files ad a [2001/09/22] bin/30737 murray sysinstall leaks file descriptors on rest o [2001/09/23] ports/30754 nakai x11/dgs port overwrites a number of files o [2001/09/23] ports/30777 portmgr add a 'make pkg-plist' make target in por o [2001/09/23] misc/30778 termcap problem with wyse-60 terminal o [2001/09/24] ports/30788 sobomax compile works, install fails of graphics/ o [2001/09/24] misc/30792 traffic destined for 127/8 addresses shou o [2001/09/24] kern/30794 sound ESS Solo-1 does not work after suspend/re o [2001/09/24] docs/30797 ru YP documentation should not be in section o [2001/09/24] i386/30808 sound t4dwave on Acer Alladin M5451 interrupt p o [2001/09/24] docs/30809 doc fdisk(8) cleanup o [2001/09/25] bin/30812 giant termcap database update o [2001/09/25] ports/30813 jmz Xfree86-4 port creates libfreetype.so.6 w o [2001/09/25] ports/30814 roam Added option to specify the mysql server o [2001/09/25] bin/30819 /bin/mv results in warnings when /bin/cp o [2001/09/25] kern/30836 Chipset SiS735 / NIC SiS 900 o [2001/09/26] ports/30841 ports News port: fortuneru, contains fortune fi o [2001/09/26] ports/30845 ports New port: textproc/xerces-c: Xerces C++ X o [2001/09/26] ports/30848 roam courier imapd won't compile with vpopmail o [2001/09/26] ports/30849 ports news/ntpcache fails compiling authinfo_pa o [2001/09/26] bin/30854 bootpd/bootpgw change - skip ARP modifica o [2001/09/26] misc/30857 intr_machdep.c allows access out of array o [2001/09/26] i386/30858 intr_machdep.c allows access out of array o [2001/09/26] ports/30859 ports A New Port f [2001/09/26] i386/30860 While install after "Mounting root from u o [2001/09/27] bin/30863 bootpd/dovend.c Win95 compatibility impro o [2001/09/27] ports/30870 ports httpd in free(): warning: recursive call o [2001/09/27] docs/30873 doc ``ip'' man page does not specify byte ord o [2001/09/28] bin/30887 dump allways saves files with modified c- o [2001/09/29] bin/30907 green [PATCH] ssh configuration oddities o [2001/09/29] bin/30908 [PATCH] Tweak ldd to provide more informa o [2001/09/29] ports/30911 olgeni Update devel/happy to version 1.11 o [2001/09/29] ports/30912 gnome [PATCH] port editors/AbiWord fails to set o [2001/09/29] ports/30923 obrien small fix for devel/gindent port o [2001/09/29] ports/30926 ports LPRngTool port update o [2001/09/30] ports/30929 brian [net/pppoa] use usbd to initialize USB AD o [2001/09/30] ports/30933 ports New port : lang/linux-j o [2001/09/30] ports/30936 taoka pips-sc880 installed script contains inco o [2001/09/30] conf/30938 Improving behavior of /etc/periodic/daily o [2001/09/30] ports/30942 ports New port: Pike 7.0 from CVS o [2001/09/30] kern/30951 Optimize page queue scan on miss of speci o [2001/10/01] alpha/30970 alpha Ensoniq 1371 (Creative chipset) does not o [2001/10/01] bin/30972 peter nfsd and mountd are in the wrong location o [2001/10/01] ports/30979 ports New port for "txfonts" TeX's font package o [2001/10/02] ports/30983 portmgr [PATCH] Some staroffice cdrom fixes o [2001/10/02] ports/30986 obrien vim6 LITE=YES packing list incorrect f [2001/10/02] ports/30988 gnome AbiWord's american.hash dictionary appear o [2001/10/03] ports/31013 obrien John The Ripper Package Lists Bad Path o [2001/10/03] ports/31017 ache Add missing manpage entry to news/tin o [2001/10/03] ports/31019 nakai Fix x11/xmascot o [2001/10/03] ports/31022 nakai Fix port games/xrubik o [2001/10/03] ports/31026 ports New Port: Internet Message Support Protoc o [2001/10/04] bin/31034 regularly add original address logging fo o [2001/10/04] ports/31036 ports NEW PORT: KWebget o [2001/10/04] ports/31037 ports NEW PORT: Krusader o [2001/10/04] ports/31039 ports New Port: nhc98 1.08 - a haskell compiler o [2001/10/04] kern/31043 Missing Ptrace functionality in Linuxulat o [2001/10/04] kern/31048 linprocfs:/proc/meminfo cannot handle mul o [2001/10/04] bin/31049 yar /usr/sbin/adduser does not allow '.' in l o [2001/10/04] bin/31052 fenner Traceroute needs update f [2001/10/04] ports/31053 ports Update port: devel/stlport o [2001/10/05] ports/31061 ports New port: security/gnupg-devel o [2001/10/05] ports/31063 ports Upgrade aim-transport in jabber port. o [2001/10/05] i386/31067 malloc.h, lines 81,82,and 87 - syntax err o [2001/10/05] ports/31068 kde x11/kdelibs2 can't build static libraries o [2001/10/05] ports/31082 ports New port: LaBrea security utility o [2001/10/06] bin/31088 tobez Make whereis.pl use strict, and a couple a [2001/10/06] ports/31093 ports new port "flyway" o [2001/10/06] ports/31096 znerd New port for jakarta-tomcat 4 o [2001/10/07] misc/31097 main thread will accept() failure when so o [2001/10/07] ports/31101 roam Update port: mail/vpopmail various requir o [2001/10/07] docs/31109 doc replace gif images w/ png ones due to pat o [2001/10/08] bin/31135 /bin/df reporting 'NaNB' as a Size. o [2001/10/08] ports/31142 portmgr patch-libtool target in bsd.port.mk break a [2001/10/08] ports/31144 ports New port: x11/xcursor f [2001/10/09] ports/31159 cpiazza gmixer 0.98c dumps core with some mixers o [2001/10/09] docs/31164 doc man page for strftime is incorrect o [2001/10/09] ports/31170 dima kpilot does not build o [2001/10/10] ports/31188 znerd New port: www/orion-current o [2001/10/10] bin/31199 tunefs error is incorrect when enabling s o [2001/10/10] conf/31200 Modification of rc.diskless1 needs change o [2001/10/10] bin/31201 [patch] add free_space(chunk) to libdisk o [2001/10/10] bin/31205 [PATCH] WARNSify and add a new option to o [2001/10/10] docs/31210 peter cvs info page missing -R o [2001/10/11] misc/31218 How to build release from selected date a [2001/10/11] conf/31219 Missing cons25u entry in termcap o [2001/10/11] ports/31222 ports ports:astro/SETIsupport(version is wrong) o [2001/10/11] ports/31223 ports ImageMagick utilities link without -lciph o [2001/10/11] misc/31225 "make release" fails if TERMCAP environme o [2001/10/11] bin/31228 vnconfig -ae configures but not mount dev o [2001/10/11] ports/31229 ports new port: astro/linux-setiathome-i686 o [2001/10/13] kern/31255 select with zero timeout returns 0 even w o [2001/10/14] docs/31260 ru mdoc(7) has "resp.\&" for "or" 4 times. o [2001/10/14] docs/31261 ru man(1) doesn't say what "system' (in "-m" o [2001/10/14] docs/31263 doc ipfw(8) doesn't explain list versus show. o [2001/10/14] docs/31264 jdp cvsup(1) "base" option and keyword descri o [2001/10/14] ports/31268 ports New port: comms/zssh a [2001/10/14] docs/31271 doc rl(4) discourages vender openness by disp o [2001/10/15] ports/31282 ports NEW PORT: aolserver+ad o [2001/10/15] ports/31286 ports ifhp-3.4.7 port (LPRng) update o [2001/10/15] ports/31288 ports LPRng-3.7.9 port (LPRng) update o [2001/10/15] ports/31289 billf ntop man page does not inform about optio s [2001/10/15] misc/31297 New screen blanker module for syscons o [2001/10/17] ports/31326 lioux Update Port: www/kwebwatch to 0.90 o [2001/10/17] ports/31331 ports new port of adpcm library o [2001/10/17] ports/31342 ports I was trying to install xscreensaver and o [2001/10/18] i386/31353 'shutdown -p' does not work on SMP Tyan T o [2001/10/18] conf/31358 Need to load NFS client LKM. o [2001/10/18] ports/31364 sobomax URW fonts needed to run jdk13 jfc demos a o [2001/10/19] kern/31367 General boot fault during mounting root w o [2001/10/19] ports/31369 ports New KMerlin Port o [2001/10/19] docs/31370 fenner typo in tcpdump manpage o [2001/10/19] ports/31377 ports New port: squidpurge o [2001/10/19] ports/31378 ports Port upgrade : gdkxft 1.1 -> gdkxft 1.2 o [2001/10/19] misc/31380 NFS rootfs mount failure message too cryp o [2001/10/20] bin/31387 When getuid()=0, mailwrapper should drop o [2001/10/20] ports/31389 portmgr tidy readme templates + port readme enhan f [2001/10/20] bin/31392 ru fmt(1) does format nroff source correctly o [2001/10/21] ports/31399 jkh sysinstall (4.4REL) hangs on pkg_add of c o [2001/10/21] i386/31427 minor incorrect code in sys/i386/i386/pma o [2001/10/22] bin/31432 umount(8) and unmount(2) don't corespond o [2001/10/22] ports/31434 billf [PATCH] net/ethereal upgrade to 0.8.20 o [2001/10/22] kern/31445 cat sound.au > /dev/audio fails for sound o [2001/10/23] misc/31448 /usr/include/unistd.h:124: syntax error b o [2001/10/23] ports/31453 ports New Port: nhc98 1.10 - a haskell compiler a [2001/10/23] kern/31455 n_hibma [PATCH] ohci driver probrem when send dat o [2001/10/23] kern/31456 Register number definition for AMD PCnet o [2001/10/23] ports/31461 ports New ports: deskutils/mcal & gmcal - a lib o [2001/10/23] ports/31462 peter rdist6 does not like accounts with '.' in o [2001/10/23] ports/31463 ports Updates to vterrain-sdk and vterrain-apps o [2001/10/24] ports/31466 trevor Updated port: security/oidentd (2.0.1) o [2001/10/24] ports/31473 ports New port: Courier-MTA SMTP IMAP POP3 HTTP o [2001/10/24] ports/31475 ports New port: sysconftool o [2001/10/24] bin/31476 ifconfig's lladdr is ethernet specific o [2001/10/25] ports/31486 kuriyama ports/palm/prc-tools-gcc does not build m o [2001/10/25] ports/31487 green licq-qt-gui plugin does not parse local a f [2001/10/25] misc/31489 Conflict Between BPF and ssh2 protocol in o [2001/10/25] kern/31490 Panic in sysctl_sysctl_next_ls on empy no o [2001/10/26] ports/31508 ports Coding error in py-4suite: Ft/Lib/Uuid.py o [2001/10/26] ports/31517 ports New Port: kdetheme-qnix o [2001/10/26] ports/31518 ports GD 1.8.4 port fails to build TTF support o [2001/10/26] kern/31521 cg pcm0 plays too fast on Intel 82801BA (ICH o [2001/10/27] ports/31528 ports New port: GTK client for StaticCling.org o [2001/10/27] ports/31529 ports avifile-0.60.20010429_1 doesn't build if o [2001/10/27] i386/31535 Can't reboot system: Tyan Thunder K7+ Dua o [2001/10/27] ports/31539 ports New port: graphics/xpcd (PhotoCD tool col o [2001/10/28] ports/31547 ports cthumb port is stale o [2001/10/28] conf/31555 rc.syscons does not run standalone o [2001/10/28] ports/31560 gnome Abiword crashes if called with LANG=de_DE o [2001/10/28] docs/31570 phantom Updated frontpage of the http://www.freeb f [2001/10/28] ports/31579 kde kdessl of kde-2.2.1 wants to link to libs o [2001/10/29] bin/31588 change request to allow mount(1) to set t a [2001/10/29] ports/31591 kde kdeinit crashes when I close KDE2 session o [2001/10/29] ports/31606 ports New port: irc/gruftistats o [2001/10/29] ports/31611 chuckr Update port: graphics/xpdf to 0.93 o [2001/10/29] kern/31624 writev may return undocumented ECONNRESET o [2001/10/29] ports/31625 ports New Port: Frontpage v5.0 + language speci o [2001/10/29] ports/31626 ports Update to mod_frontpage v5, removal of FP o [2001/10/30] ports/31630 ports Port se-ispell install the dictionary in o [2001/10/30] bin/31632 ip6fw error under DNS dislabled environme o [2001/10/30] ports/31635 bp ports/net/smbfs deinstall should not remo o [2001/10/30] docs/31640 doc Avoiding uppercase program names in manpa o [2001/10/30] ports/31644 jmacd Update: devel/prcs o [2001/10/30] ports/31645 nakai Update port: editors/dedit to 0.6.2.2 o [2001/10/30] kern/31647 socket calls can return undocumented EINV o [2001/10/30] ports/31652 obrien default make package fails for editors/vi o [2001/10/30] docs/31653 doc Chapter 14 of the Handbook lacks content o [2001/10/31] ports/31669 ports New port: graphics/xawtv_applet o [2001/10/31] ports/31674 ports port math/plplot doesn't build a TCL enab o [2001/10/31] ports/31679 ports Maintainer update: graphics/linux_mesa3 o [2001/10/31] bin/31683 ssh-keygen dumps core when changing a dsa o [2001/10/31] ports/31684 ports ports/comms/hylafax fixes o [2001/11/01] gnu/31685 apropos(1) manual page doesn't tell that o [2001/11/01] i386/31686 Problem with the timestamp option when fl o [2001/11/01] ports/31691 greid update port: graphics/xawtv o [2001/11/01] ports/31697 ports Jabber port doesn't install jud o [2001/11/02] kern/31708 VM system / fsync / flushing delayed inde o [2001/11/02] kern/31711 Enhancements and bug fixes to Aironet dri o [2001/11/02] ports/31712 ports Add the Linux to flash Cisco/Aironet card o [2001/11/02] i386/31716 FreeBSD uses broken tsc timecounter by de o [2001/11/03] ports/31727 ports update pnet 0.1.8->0.2.2 o [2001/11/03] ports/31739 ports New port: lang/python-devel o [2001/11/03] ports/31740 ports Update port: ftp/py-curl o [2001/11/03] ports/31744 ports New port: emulators/minix (2.0.0) a [2001/11/03] docs/31747 dd pthread_create.3 does not markup NULL o [2001/11/04] ports/31755 znerd linux-jdk1.2.2 looks for registervm in st o [2001/11/04] ports/31757 ports devel/gvd doesn't build without tex a [2001/11/05] bin/31769 add 2 russian holydays o [2001/11/05] gnu/31772 New option in dialog(1) o [2001/11/05] ports/31773 ports New port: audio/cplay, audioplayer for th o [2001/11/05] ports/31775 ports Better path for the X11 fonts from the po s [2001/11/06] ports/31809 kde [UPDATE] qt23 port to qt-2.3.2 o [2001/11/06] ports/31813 ports New Port - Update: dbXML - Java Native XM o [2001/11/07] bin/31826 /usr/sbin/burncd "msinfo" always returns o [2001/11/07] ports/31827 ports New port: Mird database library o [2001/11/07] ports/31841 ports update to geda tool set o [2001/11/07] ports/31846 markm [patch] games/xneko checksum mismatch o [2001/11/08] ports/31856 ports New port: security/pcsc-lite o [2001/11/08] ports/31858 ports New port: pike 7.2.234 (current CVS versi o [2001/11/08] ports/31862 portmgr [PATCH] 'make search' problem if /usr/obj o [2001/11/09] misc/31890 new syscons font o [2001/11/10] bin/31906 No method available to unwind atexit(3) s o [2001/11/11] ports/31910 greid comms/sms_client o [2001/11/11] ports/31920 ports sniffit does not detect packets on some i o [2001/11/11] ports/31922 ports new port o [2001/11/12] ports/31926 ports New port security/drweb-qmail: Qmail mess o [2001/11/12] misc/31931 For floppy install, fdimage reports 'File o [2001/11/12] bin/31933 pw can interpret numeric name as userid d o [2001/11/12] ports/31936 dougb Minor change to bind8 port a [2001/11/12] ports/31943 dirk mysql323-server port hostname look up fai o [2001/11/12] ports/31944 portmgr bsd.port.mk: USE_XPM (implied by USE_MOTI o [2001/11/12] ports/31945 ports new port: devel/xbkregex library o [2001/11/12] ports/31950 ports New port: japanese/celrw o [2001/11/13] misc/31952 gnome Evolution still broken o [2001/11/13] ports/31957 znerd Update tomcat port to jdk 1.3.1 o [2001/11/13] ports/31965 ports New port: editss, an editor for XPilot sh o [2001/11/13] ports/31970 ports New port o [2001/11/13] kern/31971 microuptime() went backwards when apm is o [2001/11/14] ports/31974 ports Update port: japanese/gqmpeg o [2001/11/14] ports/31975 ports "Error in backend/storage/lmgr/proc.c: Pr o [2001/11/14] ports/31980 gnome evolution fails to load o [2001/11/14] misc/31981 (mis)feature in getnetent parsing -- comm o [2001/11/14] ports/31984 ports Update orion port for config of rmi serve o [2001/11/14] bin/31985 New /etc/remote flag for tip to append LF o [2001/11/14] bin/31987 patch to allow dump(1) to notify operator o [2001/11/14] ports/31996 ports Build of db3 fails at ./configure a [2001/11/14] bin/31997 des login: chmod(/dev/tty??): No such file or a [2001/11/15] ports/32001 olgeni Update lang/ghc to 5.02.1 (REPLACES PR po o [2001/11/15] docs/32008 doc wrong path for dhclient.conf in dhclient- o [2001/11/15] ports/32013 gnome galeon port won't compile on my system. o [2001/11/15] i386/32014 ppi locks up system during boot o [2001/11/15] ports/32015 kuriyama ports/palm/pilrc bugs o [2001/11/15] ports/32016 markp ports/graphics/ppmcaption font file path o [2001/11/15] docs/32020 doc loader.8 manpage missing tunables o [2001/11/15] ports/32022 znerd New port: Jakarta Tomcat 4.0.1 o [2001/11/15] ports/32034 ports [NEW PORT] ncurses-ada -- an Ada 95 bindi o [2001/11/16] ports/32037 ports New port: pm-lib o [2001/11/16] ports/32039 greid UPDATE devel/asmutils 0.14 -> 0.15 o [2001/11/16] docs/32041 doc Add point about net.inet.tcp.portange.{fi o [2001/11/16] docs/32042 doc kernfs.5 references files that will (prob o [2001/11/16] ports/32046 ports Port cleanup: x11-fonts/webfonts o [2001/11/16] ports/32048 ports New port: palm/hdunix (1.0) o [2001/11/16] ports/32051 nakai Update port: graphics/gqview to 0.13.0 (f o [2001/11/16] docs/32054 doc inconsistency between index.3 and rindex. o [2001/11/17] ports/32056 ports New Port: emulators/adamem o [2001/11/17] ports/32060 ports New port: mkfile(8) for FreeBSD o [2001/11/17] conf/32067 Problems with spanish keyboard in console o [2001/11/17] ports/32069 nakai malloc.h fix for games/kxl o [2001/11/17] ports/32071 mita malloc.h update o [2001/11/18] ports/32076 ports WISH: merge icon patch to blackbox port o [2001/11/18] bin/32079 minor timebomb in /etc/rc o [2001/11/18] bin/32092 crypt pickups the wrong password format o [2001/11/18] ports/32097 nik scr2png doesn't make with other LOCALBASE o [2001/11/19] conf/32108 Proposed Firewall (IPv4) configuration sc o [2001/11/19] ports/32114 portmgr WRKDIRs should be moved to a central loca o [2001/11/19] ports/32115 ports create port mail/sylpheed-devel [sylpheed a [2001/11/19] misc/32119 Support for the modern greek language a [2001/11/19] misc/32120 PR misc/24324 errata o [2001/11/19] ports/32122 jmz xf86cfg graphics-mode fails on Samsung Sy o [2001/11/20] ports/32125 keichii ports/chinese/rxvt-gb is missing checksum o [2001/11/20] bin/32126 getopt(3) not Unix-98 conformant a [2001/11/20] misc/32133 Bug in greek locale fixed o [2001/11/20] bin/32138 better progress reporting for dump(8) f [2001/11/20] misc/32144 murray unattended install with sysinstall doesn' o [2001/11/20] ports/32145 jmz XFree86 doesn't ldconfig itself o [2001/11/20] ports/32147 kris mindguard port dumps core o [2001/11/20] kern/32157 AC97 Audio (appears to be) unsupported o [2001/11/21] kern/32169 kernel option to enable PCI devices on ma o [2001/11/21] ports/32174 portmgr Autoconf patch for bsd.port.mk o [2001/11/21] ports/32179 ports New port: editss (an editor for XPilot sh a [2001/11/22] misc/32193 Termcap ACS support for greek ISO-8859-7 o [2001/11/22] ports/32195 ports New port: icradius: a powerful RADIUS dae o [2001/11/22] ports/32196 ports New port: p5-IC-Radius: required for icra o [2001/11/22] ports/32199 ports linking dict is at /usr/local/share/doc/t o [2001/11/22] ports/32202 ports ports/devel/py-htmlkit distribution does o [2001/11/22] ports/32207 gnome libiconv cannot be built by a pleb o [2001/11/23] misc/32210 System hangs while kernel waiting for SCS o [2001/11/23] ports/32224 znerd java/linux-jdk is out of date (RC4 iso FC o [2001/11/23] ports/32228 billf Update port: print/pdflib3 to include TIF o [2001/11/23] docs/32229 keramida Omission from Handbook Chapter 17.8 (DHCP a [2001/11/23] ports/32231 ports Update port devel/fam o [2001/11/23] ports/32232 dirk Update and bugfix port: www/mod_php4 a [2001/11/23] misc/32233 Fix /usr/src/sbin/mount_msdosfs/iso72dos o [2001/11/23] ports/32235 billf /usr/ports/net/ntop is not $LOCALBASE cle o [2001/11/23] docs/32241 doc vm_page_alloc.9 rewrite o [2001/11/23] bin/32242 brian patch to allow 'at now' to queue a job fo o [2001/11/23] ports/32243 sobomax ports/py-wxPython fails to compile o [2001/11/24] i386/32251 bugfix and new feature for apmd a [2001/11/24] kern/32255 murray AMD761(tm) and MGA G550 are not known by o [2001/11/24] ports/32258 scrappy converters/p5-Convert-ASN1 out of date o [2001/11/24] ports/32259 scrappy Update security/p5-IO-Socket-SSL request o [2001/11/25] misc/32265 Adding calendar.french o [2001/11/25] docs/32266 doc an incorrect ERROR section in tunefs.8 o [2001/11/25] ports/32271 dwcjr [PATCH] pkg-plist for net/isc-dhcp2 incor o [2001/11/25] ports/32272 petef port upgrade to latest blender version o [2001/11/25] ports/32273 kde kdm doesn't set paths from login.conf o [2001/11/25] docs/32278 mwlucas additional info for ports section o [2001/11/25] ports/32281 ports Dead project for openverse. o [2001/11/25] ports/32282 petef fvwm 2.4.3 generate error wrt 'Help' key o [2001/11/25] ports/32283 nbm Port upgrade: www/zope from 2.4.2 to 2.4. o [2001/11/26] ports/32285 vanilla a new port for application gimp-print o [2001/11/26] conf/32288 After install: /etc/rc complains if crypt o [2001/11/26] ports/32298 ports mail/nmh port fails with new autoconf por o [2001/11/26] bin/32299 nm coredumps on sendmail in -current o [2001/11/26] i386/32301 dfr Fix for agpgart for the AMD-751 and relat o [2001/11/26] ports/32302 ports [NEW PORT] mtx 1.2.14 o [2001/11/26] ports/32317 petef Request for linux-qt port o [2001/11/26] bin/32318 cjc no userland tool available to test resolv a [2001/11/26] docs/32323 doc man page `named(8)' do not have link for o [2001/11/27] ports/32326 dougb update of net/bind9 to 9.2.0 o [2001/11/27] ports/32328 ports Port update: mc-4.5.55 o [2001/11/27] docs/32329 mwlucas additions to example refuse file o [2001/11/27] docs/32339 doc Sending italian translation for new users o [2001/11/27] bin/32342 vmstat.c: certain variables appear to hav o [2001/11/27] ports/32345 ports New port: devel/hmake a [2001/11/28] bin/32354 ru # "ping -l 5 -c 0 gateway", slightly unre o [2001/11/28] ports/32361 ports port doesn't work o [2001/11/28] ports/32362 ports postgresql7 port should install more *.h o [2001/11/29] docs/32373 doc Bad ifconfig(8) alias advice in FAQ 10.9 a [2001/11/29] conf/32375 murray sysinstall doesn't respect User generated o [2001/11/29] ports/32376 ports New port: GPS Manager (astro/gpsman) o [2001/11/29] ports/32379 ports NEW PORT: wots 1.22 o [2001/11/29] ports/32391 shige psgml-emacs20 breaks emacs's standard htm o [2001/11/30] bin/32397 df -l doesn't work o [2001/11/30] misc/32400 rwhod - option to specify hostname o [2001/11/30] kern/32404 ESS Allegro-1 fails to recover from APM s o [2001/11/30] ports/32405 dirk Japanese encoding translation support for o [2001/11/30] ports/32407 sobomax Update port: graphics/tiff to 5.3.7 o [2001/11/30] ports/32408 ports Update port: print/ghostscript-afpl o [2001/11/30] bin/32411 shutdown's absolute-time handling could b o [2001/11/30] bin/32420 syslogd accumulates "repeated" messages w a [2001/11/30] kern/32421 sos patch to support ATA66 Mode (UDMA4) on Si o [2001/12/01] ports/32424 petef dopewars port is broke o [2001/12/01] docs/32425 doc Document cvs update `P file' output o [2001/12/01] ports/32429 ports NEW PORT: graphics/jhead o [2001/12/01] ports/32430 kris UPDATED PORT: converters/dumpasn1 o [2001/12/01] bin/32433 Cannot specify files beginning with + on o [2001/12/01] ports/32434 ports New Port: TeXmacs, a free wysiwyg scienti o [2001/12/02] ports/32440 ports graphics/gd does not build (requires free o [2001/12/02] docs/32441 doc ssh-keyscan does not collect v2 keys o [2001/12/02] ports/32444 dirk www/mod_php4: ctype support o [2001/12/02] ports/32445 portmgr CONFIGURE_TARGET default setting is bogus f [2001/12/02] kern/32446 sumikawa redundant casts o [2001/12/02] misc/32448 Cyrillic ISO 8859-5 fonts o [2001/12/02] misc/32449 Cyrillic ISO 8859-5 keymaps o [2001/12/02] misc/32450 Ukrainian ISO 8859-5 locale files o [2001/12/02] docs/32451 doc Missing images in vm-design article o [2001/12/02] docs/32452 doc disklabel(8)'s "examine or save" is confu o [2001/12/02] docs/32453 doc loop(4) should exist as link to lo(4). o [2001/12/02] ports/32457 ports New port: mail/p5-razor-agents o [2001/12/02] docs/32460 keramida named.conf(5) types and two bad markups. o [2001/12/02] docs/32462 doc ifconfig(8) has extraneous "prefixlength" o [2001/12/02] docs/32463 doc ifconfig(8) missing address_family defaul o [2001/12/03] docs/32468 doc broken link in handbook: sysutils/mkisofs o [2001/12/03] docs/32472 keramida New article: setting up a CVS repository o [2001/12/03] kern/32478 scsi/NIC drivers fail when using SMP kern o [2001/12/03] misc/32480 Missing graphic characters in syscons fon o [2001/12/03] ports/32481 ports New port: devel/chora - the Horde CVS web o [2001/12/03] misc/32490 umass support for ATAPI [with patch] o [2001/12/04] ports/32494 sada Update checkpassword to 0.90 o [2001/12/04] bin/32501 quot(8) is stupid regarding the filesyste o [2001/12/04] ports/32502 dima port update palm/pilot-link to 0.9.6 o [2001/12/04] ports/32508 sobomax www/flashplugin-mozilla has malloc bug o [2001/12/04] ports/32517 green Update port: emulators/snes9x to 1.39 o [2001/12/04] ports/32523 ports Update port: print/ghostscript-gnu (fix p o [2001/12/04] ports/32527 gnome gconf-1.0.7 build fails: #includes need f o [2001/12/05] kern/32530 Fix for midi(4) causing hang at boot with o [2001/12/05] ports/32533 ports new port: databases/db4 (DB v4) o [2001/12/05] ports/32535 ports update of /usr/ports/www/roxen/ o [2001/12/05] docs/32542 rwatson tuning(7) inaccurate o [2001/12/05] ports/32543 ports Update of Click Modular Router to version o [2001/12/05] ports/32546 znerd Remove fully-qualified lib symlinks from o [2001/12/05] ports/32547 ports update cadaver port o [2001/12/05] ports/32549 kde kdesu doesn't work on kde2 port o [2001/12/06] ports/32559 ports gdkxft is now at version 1.4 o [2001/12/06] docs/32560 doc make.conf(5) and share/examples/make.conf o [2001/12/06] docs/32561 doc missed functions in pthread(3) o [2001/12/06] ports/32565 ports New port: QScheme scheme interpretor o [2001/12/06] ports/32571 ports build broken on eperl o [2001/12/07] ports/32572 kde net/kio_fish: konq has no icons for fish: o [2001/12/07] ports/32577 ports little patch for textproc/catdoc o [2001/12/07] docs/32578 doc A _really_ petty change to the front page o [2001/12/07] ports/32580 ports Two ports to be put in the ports tree o [2001/12/07] ports/32582 greid Update port: audio/tempest_for_eliza o [2001/12/07] ports/32585 nbm x11-wm/pwm/pkg-descr refers to "screensho o [2001/12/07] bin/32588 grog operator should backup vinum vols o [2001/12/07] ports/32596 keichii update port: chinese/auto-tw-l10n o [2001/12/08] ports/32602 sf Update port: emulators/xsystem35 to 1.4.2 o [2001/12/08] ports/32604 ports Many ports which depends on apache don't f [2001/12/08] misc/32605 nsouch SMBus driver broken o [2001/12/08] ports/32620 nakai Update port: graphics/gqview to 0.99.2 (f o [2001/12/08] ports/32629 nakai Update port: x11-wm/xfce to 3.8.12b (fix o [2001/12/08] ports/32633 ports Update port: x11-wm/golem o [2001/12/09] ports/32640 ports New port: p5-Class-ObjectTemplate o [2001/12/09] ports/32641 ports New port: p5-Class-ObjectTemplate-DB o [2001/12/09] ports/32643 anders update mod_watch from 2.4 to 3.0 o [2001/12/09] ports/32651 ache a small patch to obtain socks5 support to o [2001/12/09] kern/32652 n_hibma Add new scanners and a new ioctl to uscan o [2001/12/09] ports/32653 ports Added patches to improve USB scanner supp f [2001/12/09] bin/32657 sed file handing is non-standard o [2001/12/09] kern/32659 jhb VM and VNODE leak with vm.swap_idle_enabl o [2001/12/09] gnu/32661 dd send-pr uses $LOGNAME for From and Reply o [2001/12/09] docs/32662 doc arp(8) uses "this host" with two differen o [2001/12/10] i386/32666 mbufs leaks in dev/ed o [2001/12/10] bin/32667 systat waste too much time reading input o [2001/12/10] kern/32671 imp Patch to generate usbdevs.h automatically o [2001/12/10] ports/32673 greid update port: graphics/xawtv o [2001/12/10] docs/32674 docs no man page for the ntp_adjtime system ca o [2001/12/10] kern/32675 openssl dhparam hangs when using /dev/ran o [2001/12/10] kern/32677 pciconf -l opens /dev/pci for read/write o [2001/12/10] ports/32678 ports New port: wscan, 802.11 wireless signal s f [2001/12/10] docs/32679 murray Kernel Config chapter could use touching o [2001/12/10] misc/32680 [PATCH] Allows users to start jails by ho o [2001/12/10] ports/32682 lioux Bugfix graphics/avifile o [2001/12/10] ports/32690 keichii Uodate port: chinese/rxvt from 2.7.5 to 2 o [2001/12/11] ports/32701 gnome evolution port uses .gz instead of .bz2 i o [2001/12/11] ports/32704 obrien update ical to use tk8.3 o [2001/12/11] ports/32705 kiri update of xemacs-packages list to current o [2001/12/11] ports/32708 kde kdegraphics doesn't require ghostscript p o [2001/12/11] misc/32731 Question concerning FreeBSD introductions o [2001/12/12] kern/32741 Getting segmentation fault in connect sys o [2001/12/12] ports/32743 ports Update port: games/nethack3-gnome/games/n o [2001/12/12] ports/32745 gnome Evolution port missing out on dependencie o [2001/12/12] ports/32746 gnome Update port: textproc/libxml2 o [2001/12/12] ports/32747 gnome Update port: textproc/libxslt o [2001/12/12] ports/32756 kde [PATCH] Fix compile on CURRENT: ports/dev o [2001/12/12] ports/32758 ports PORT UPDATE : net/openldap 1.2.11 -> 1.2. o [2001/12/12] ports/32762 ache Update for archivers/xpk o [2001/12/12] ports/32769 kde kdebase2 w/o motif still puts nsplugin in o [2001/12/12] ports/32790 lioux patch for mail/qpopper with WITH_DRAC o [2001/12/13] kern/32799 ucom and uplcom drivers ported from NetBS o [2001/12/13] ports/32802 greid update port: graphics/xawtv o [2001/12/13] bin/32807 which utility replacement in C o [2001/12/13] bin/32808 dwmalone [PATCH] tcpd.h lacks prototype for hosts_ o [2001/12/13] ports/32810 ports ports/security/pad security (mkstemp()) f o [2001/12/13] ports/32811 ports Update port: games/imaze update to versio o [2001/12/13] kern/32812 bktr driver missing tuner for eeprom dete o [2001/12/13] ports/32815 roam PORT UPDATE : ftp/curl 7.9.1 -> 7.9.2 f [2001/12/13] ports/32823 ports Update port: devel/viewcvs Update to View o [2001/12/13] docs/32825 doc undocumented options in LINT o [2001/12/13] ports/32826 ports New port: eieio - Enhanced Integration of o [2001/12/14] bin/32828 w incorrectly handles stale utmp slots wi o [2001/12/14] ports/32838 gnome Add LDAP support to mail/evolution o [2001/12/14] ports/32840 gnome Update x11/gdm to fix locale problems o [2001/12/14] conf/32841 kernel ppp sample conf files missing fro o [2001/12/14] conf/32842 User ppp sample configuration files in /e o [2001/12/14] docs/32843 doc make at(1) man page Y2K clean o [2001/12/14] ports/32846 ports [NEW PORT] SIDplug 1.1.4 - a Commodore 64 o [2001/12/14] ports/32848 ports New port: mail/smtpproxy o [2001/12/14] docs/32849 murray TEXCMDS not used for pdfjadetex o [2001/12/15] ports/32851 ports Update port: databases/unixODBC to 2.1.0 o [2001/12/15] ports/32852 ports Update port: devel/libdsp to 4.2.0 o [2001/12/15] ports/32855 ports Update port: graphics/gnofract4d to 1.6 o [2001/12/15] ports/32859 ports Update port: lang/smalltalk to 1.95.7 o [2001/12/15] ports/32862 ports Update port: net/tn5250 to 0.16.3 o [2001/12/15] ports/32863 trevor Update port: x11-wm/aewm to 1.1.3 o [2001/12/15] ports/32864 trevor Update port: x11-wm/swm to 1.3.2 (fix por o [2001/12/15] ports/32866 des www/linux-opera considered harmful, downg o [2001/12/15] ports/32870 demon sysutils/koncd can't be built, should be o [2001/12/15] ports/32874 ports Maintainer update of misc/smssend o [2001/12/15] docs/32877 doc typo in ipfs.8 o [2001/12/15] kern/32880 Update aironet driver to correct signal s o [2001/12/15] ports/32883 ports New port: deskutils/nag - Horde's task li o [2001/12/15] kern/32891 add PNP ID to sio driver o [2001/12/15] ports/32892 ports New ports: x11-toolkits/gtk12-apireferenc o [2001/12/16] ports/32897 gnome gnomedb does not compile o [2001/12/16] ports/32898 gnome libgda patch failed to apply o [2001/12/16] ports/32899 ports mail/nbsmtp causes segfaults while a comm o [2001/12/16] docs/32901 doc Misleading statement about "X Windows" o [2001/12/16] gnu/32902 Incremental tar archiving using GNU style o [2001/12/16] docs/32904 doc [PATCH] - add kern.maxusers to loader(8) a [2001/12/16] ports/32906 ports [PATCH] Fix distinfo of ports/www/wwwcoun o [2001/12/16] ports/32907 nakai ports/graphics/gqview update o [2001/12/16] ports/32908 ports [PATCH] Fix pkg-plist of ports/editors/st o [2001/12/16] ports/32909 dirk cdrtools produce unreadable ISO 9660 CD o [2001/12/16] docs/32910 doc [NEW DOC] The Jail Subsystem o [2001/12/16] ports/32911 ports New Port: devel/scons - SCons 0.01 - a bu o [2001/12/16] kern/32912 options misssing TCBHASHSIZE o [2001/12/16] ports/32914 ports New Port: biology/artemis o [2001/12/16] ports/32915 ports Change maintainer, update port: editors/l o [2001/12/16] ports/32916 ports NEW PORT: graphics/jhead o [2001/12/16] ports/32917 ports installing ports may fail if $GREP_OPTION o [2001/12/16] ports/32920 ports New Port: biology/gff2ps o [2001/12/16] docs/32921 doc Dead URL in FreeBSD FAQ o [2001/12/17] ports/32925 ports new port: lang/tcl-manual o [2001/12/17] ports/32926 ports [NEW PORT] djvulibre-3.5.2--a Mozilla plu o [2001/12/17] ports/32927 gnome [PATCH] Upgrade balsa to balsa-1.3.0 o [2001/12/17] ports/32928 ports new port: devel/autobook o [2001/12/17] ports/32932 ports New port: editors/koffice-i18n o [2001/12/17] bin/32935 /bin/sh buildin echo command have invalid o [2001/12/17] ports/32936 ports ports/security/keyprint only supports S/K o [2001/12/17] ports/32939 UPDATE : ftp/vsftpd to 1.01 o [2001/12/17] ports/32940 ports [MAINTAINER-UPDATE] Update net/openslp o [2001/12/17] docs/32941 doc Minor grammatical fixes for intro.4 1765 problems total. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 17 11:31:17 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id 1FBED37B417; Mon, 17 Dec 2001 11:31:11 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 14B0F14C53; Mon, 17 Dec 2001 20:31:09 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: freebsd-chat@freebsd.org Subject: Holidays From: Dag-Erling Smorgrav Date: 17 Dec 2001 20:31:08 +0100 Message-ID: Lines: 10 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/20.7 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I'm leaving tomorrow for a week's offline R&R. I'll be back a few days after Christmas. Though sickness and other obligations the past few weeks have kept me from being as active as I'd have wished, I mean to make a strong comeback on all fronts in 2002 :) Merry Christmas and a happy New Year! DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 17 11:39:54 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B7DF837B41F; Mon, 17 Dec 2001 11:39:49 -0800 (PST) Received: (from jasone@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBHJcbW88026; Mon, 17 Dec 2001 11:38:37 -0800 (PST) (envelope-from jasone) Date: Mon, 17 Dec 2001 11:38:37 -0800 (PST) From: Message-Id: <200112171938.fBHJcbW88026@freefall.freebsd.org> To: jasone@FreeBSD.org, freebsd-bugs@FreeBSD.org, jasone@FreeBSD.org Subject: Re: misc/27311: pthread_attr_setscope always fails Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: pthread_attr_setscope always fails Responsible-Changed-From-To: freebsd-bugs->jasone Responsible-Changed-By: jasone Responsible-Changed-When: Mon Dec 17 11:38:20 PST 2001 Responsible-Changed-Why: I'll take a look at this. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=27311 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 17 11:39:55 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C5DF337B41E; Mon, 17 Dec 2001 11:39:48 -0800 (PST) Received: (from jasone@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBHJXhP86808; Mon, 17 Dec 2001 11:33:43 -0800 (PST) (envelope-from jasone) Date: Mon, 17 Dec 2001 11:33:43 -0800 (PST) From: Message-Id: <200112171933.fBHJXhP86808@freefall.freebsd.org> To: jasone@FreeBSD.org, freebsd-bugs@FreeBSD.org, jasone@FreeBSD.org Subject: Re: misc/24641: pthread_rwlock_rdlock can deadlock Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: pthread_rwlock_rdlock can deadlock Responsible-Changed-From-To: freebsd-bugs->jasone Responsible-Changed-By: jasone Responsible-Changed-When: Mon Dec 17 11:33:22 PST 2001 Responsible-Changed-Why: I'll take a look at this. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=24641 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 17 11:40: 1 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8B37D37B425; Mon, 17 Dec 2001 11:39:51 -0800 (PST) Received: (from jasone@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBHJaU587619; Mon, 17 Dec 2001 11:36:30 -0800 (PST) (envelope-from jasone) Date: Mon, 17 Dec 2001 11:36:30 -0800 (PST) From: Message-Id: <200112171936.fBHJaU587619@freefall.freebsd.org> To: jasone@FreeBSD.org, freebsd-bugs@FreeBSD.org, jasone@FreeBSD.org Subject: Re: bin/31661: pthread_kill signal handler doesn't get sigcontext or ucontext Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: pthread_kill signal handler doesn't get sigcontext or ucontext Responsible-Changed-From-To: freebsd-bugs->jasone Responsible-Changed-By: jasone Responsible-Changed-When: Mon Dec 17 11:36:14 PST 2001 Responsible-Changed-Why: I'll take a look at this. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31661 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 17 11:40: 1 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DD0FC37B423; Mon, 17 Dec 2001 11:39:50 -0800 (PST) Received: (from jdp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBHJYNu86987; Mon, 17 Dec 2001 11:34:23 -0800 (PST) (envelope-from jdp) Date: Mon, 17 Dec 2001 11:34:23 -0800 (PST) From: Message-Id: <200112171934.fBHJYNu86987@freefall.freebsd.org> To: edwin@mavetju.org, jdp@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/31649: libpcap doesn't work with -pthread Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: libpcap doesn't work with -pthread State-Changed-From-To: open->closed State-Changed-By: jdp State-Changed-When: Mon Dec 17 11:34:11 PST 2001 State-Changed-Why: Fixed in sys/net/bpf.c revision 1.59.2.8 and sys/net/bpfdesc.h revision 1.14.2.2. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31649 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 17 12:10:34 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 68D0737B42A for ; Mon, 17 Dec 2001 12:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBHKA2n98375; Mon, 17 Dec 2001 12:10:02 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8B33B37B41F for ; Mon, 17 Dec 2001 12:02:47 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBHK2lL93023; Mon, 17 Dec 2001 12:02:47 -0800 (PST) (envelope-from nobody) Message-Id: <200112172002.fBHK2lL93023@freefall.freebsd.org> Date: Mon, 17 Dec 2001 12:02:47 -0800 (PST) From: Dennis Kanevsky To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/32946: If device sbc included, Kernel don`t compile- cant find channel_if.h file. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32946 >Category: kern >Synopsis: If device sbc included, Kernel don`t compile- cant find channel_if.h file. >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 17 12:10:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: Dennis Kanevsky >Release: 4.4-RELEASE >Organization: >Environment: >Description: If You wish enable SB driver in kernel and include string "device sbc0 ..."in kernel-config file, when start "make depend" will see critical error - process can`t find channel_if.h file in /sys/src/dev/sound/pcm .. I can`t find it in src of 4.4-RELEASE, 4-4-STABLE, 5.0-CURRENT too.. If anybody know how to fix it- please writo to me - mailto:dnk@berill.dp.ua >How-To-Repeat: regular >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 17 12:40: 7 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 036E237B416 for ; Mon, 17 Dec 2001 12:40:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBHKe2s04831; Mon, 17 Dec 2001 12:40:02 -0800 (PST) (envelope-from gnats) Date: Mon, 17 Dec 2001 12:40:02 -0800 (PST) Message-Id: <200112172040.fBHKe2s04831@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Dennis A. Kanevsky" Subject: Re: kern/32946: If device sbc included, Kernel don`t compile- cant find channel_if.h file. Reply-To: "Dennis A. Kanevsky" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/32946; it has been noted by GNATS. From: "Dennis A. Kanevsky" To: freebsd-gnats-submit@FreeBSD.org, dnk@berill.dp.ua Cc: Subject: Re: kern/32946: If device sbc included, Kernel don`t compile- cant find channel_if.h file. Date: Mon, 17 Dec 2001 22:33:28 +0200 This PR can be closed To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 17 12:49:52 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 565AA37B417; Mon, 17 Dec 2001 12:49:47 -0800 (PST) Received: (from jasone@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBHKgYm05310; Mon, 17 Dec 2001 12:42:34 -0800 (PST) (envelope-from jasone) Date: Mon, 17 Dec 2001 12:42:34 -0800 (PST) From: Message-Id: <200112172042.fBHKgYm05310@freefall.freebsd.org> To: jasone@FreeBSD.org, freebsd-bugs@FreeBSD.org, jasone@FreeBSD.org Subject: Re: bin/30464: pthread mutex attributes -- pshared Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: pthread mutex attributes -- pshared Responsible-Changed-From-To: freebsd-bugs->jasone Responsible-Changed-By: jasone Responsible-Changed-When: Mon Dec 17 12:42:17 PST 2001 Responsible-Changed-Why: I'll look at this. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=30464 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 17 12:49:52 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2550A37B41F; Mon, 17 Dec 2001 12:49:48 -0800 (PST) Received: (from jasone@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBHKfH105047; Mon, 17 Dec 2001 12:41:17 -0800 (PST) (envelope-from jasone) Date: Mon, 17 Dec 2001 12:41:17 -0800 (PST) From: Message-Id: <200112172041.fBHKfH105047@freefall.freebsd.org> To: jasone@FreeBSD.org, freebsd-bugs@FreeBSD.org, jasone@FreeBSD.org Subject: Re: kern/28947: dup2 closing pthread file descriptor Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: dup2 closing pthread file descriptor Responsible-Changed-From-To: freebsd-bugs->jasone Responsible-Changed-By: jasone Responsible-Changed-When: Mon Dec 17 12:41:01 PST 2001 Responsible-Changed-Why: I'll look at this. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=28947 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 17 12:49:58 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0EF8A37B419; Mon, 17 Dec 2001 12:49:49 -0800 (PST) Received: (from jasone@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBHKhJA05452; Mon, 17 Dec 2001 12:43:19 -0800 (PST) (envelope-from jasone) Date: Mon, 17 Dec 2001 12:43:19 -0800 (PST) From: Message-Id: <200112172043.fBHKhJA05452@freefall.freebsd.org> To: jasone@FreeBSD.org, freebsd-bugs@FreeBSD.org, jasone@FreeBSD.org Subject: Re: misc/30699: pthread_attr_setscope function fails unconditionally Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: pthread_attr_setscope function fails unconditionally Responsible-Changed-From-To: freebsd-bugs->jasone Responsible-Changed-By: jasone Responsible-Changed-When: Mon Dec 17 12:43:06 PST 2001 Responsible-Changed-Why: I'll look at this. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=30699 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 17 13:49:50 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D1CF837B405; Mon, 17 Dec 2001 13:49:46 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBHLhe621645; Mon, 17 Dec 2001 13:43:40 -0800 (PST) (envelope-from bmah) Date: Mon, 17 Dec 2001 13:43:40 -0800 (PST) From: Message-Id: <200112172143.fBHLhe621645@freefall.freebsd.org> To: dnk@berill.dp.ua, bmah@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/32946: If device sbc included, Kernel don`t compile- cant find channel_if.h file. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: If device sbc included, Kernel don`t compile- cant find channel_if.h file. State-Changed-From-To: open->closed State-Changed-By: bmah State-Changed-When: Mon Dec 17 13:43:05 PST 2001 State-Changed-Why: Closed at request of submitter. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32946 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 17 15: 9:50 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2520337B405; Mon, 17 Dec 2001 15:09:48 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBHN0Ll37221; Mon, 17 Dec 2001 15:00:21 -0800 (PST) (envelope-from peter) Date: Mon, 17 Dec 2001 15:00:21 -0800 (PST) From: Message-Id: <200112172300.fBHN0Ll37221@freefall.freebsd.org> To: buggy@kkcity.com.tw, peter@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/31310: pthread broken with KVA_PAGES=512 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: pthread broken with KVA_PAGES=512 State-Changed-From-To: open->closed State-Changed-By: peter State-Changed-When: Mon Dec 17 14:58:12 PST 2001 State-Changed-Why: Committed to -current on 2001/10/26, and -stable on 2001/11/03. (See src/lib/libc_r/uthread/uthread_init.c and uthread_stack.c etc) http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31310 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 17 16:30:13 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 793E837B41F for ; Mon, 17 Dec 2001 16:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBI0U1Q58468; Mon, 17 Dec 2001 16:30:01 -0800 (PST) (envelope-from gnats) Received: from dragon.nuxi.com (trang.nuxi.com [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id 8587E37B657 for ; Mon, 17 Dec 2001 16:28:07 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.6/8.11.1) id fBI0S7F85476; Mon, 17 Dec 2001 16:28:07 -0800 (PST) (envelope-from obrien) Message-Id: <200112180028.fBI0S7F85476@dragon.nuxi.com> Date: Mon, 17 Dec 2001 16:28:07 -0800 (PST) From: "David O'Brien" Reply-To: "David O'Brien" To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/32953: log-in-vain level should be setable in rc.conf Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32953 >Category: bin >Synopsis: log-in-vain level should be setable in rc.conf >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 Dec 17 16:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: David O'Brien >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD dragon.nuxi.com 5.0-CURRENT FreeBSD 5.0-CURRENT #226: Mon Dec 10 17:53:38 PST 2001 rootk@dragon.nuxi.com:/FBSD/src/sys/i386/compile/DRAGON i386 >Description: We allow the turning off and on of log-in-vain in rc.conf as seen in rc.network: network_pass4() { echo -n 'Additional TCP options:' case ${log_in_vain} in Therefor we should also allow the log-in-vain level to be set in rc.conf also. The following shows '2' is also supported: Value of 1: "Connection attempt to TCP %s:%d from %s:%d\n", dbuf, ntohs(th->th_dport), sbuf, ntohs(th->th_sport)); Value of 2: "Connection attempt to TCP %s:%d from %s:%d flags:0x%x\n", dbuf, ntohs(th->th_dport), sbuf, ntohs(th->th_sport), thflags); >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 17 16:41:39 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from pork.abattoir.com (adsl-216-102-198-168.dsl.snfc21.pacbell.net [216.102.198.168]) by hub.freebsd.org (Postfix) with ESMTP id 3045F37B416 for ; Mon, 17 Dec 2001 16:41:37 -0800 (PST) Received: (from banshee@localhost) by pork.abattoir.com (8.11.6/8.11.4) id fBI0faP75817 for bugs@freebsd.org; Mon, 17 Dec 2001 16:41:36 -0800 (PST) (envelope-from banshee) Date: Mon, 17 Dec 2001 16:41:36 -0800 (PST) From: banshee Message-Id: <200112180041.fBI0faP75817@pork.abattoir.com> To: bugs@freebsd.org Subject: bug in units Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org tbl should be a synonym for tablespoon tsp should be a synonym for teaspoon src/usr.bin/units/units.lib --- units.lib.old Mon Dec 17 16:38:49 2001 +++ units.lib Mon Dec 17 16:39:38 2001 @@ -1,4 +1,4 @@ -/ $FreeBSD: src/usr.bin/units/units.lib,v 1.5.2.4 2001/06/08 04:57:05 dd Exp $ +/ $FreeBSD: src/usr.bin/units/units.lib,v local 2001/06/08 04:57:05 dd Exp $ / primitive units @@ -542,7 +542,10 @@ surveyorschain 66 ft surveyorslink 66|100 ft tablespoon 4 fldr +tbl tablespoon +tbsp tablespoon teaspoon 4|3 fldr +tsp teaspoon tesla weber/m2 therm 1e+5 btu thermie 1e+6 cal To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 17 17:19:51 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2912237B405; Mon, 17 Dec 2001 17:19:47 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBI1Hxv70115; Mon, 17 Dec 2001 17:17:59 -0800 (PST) (envelope-from cjc) Date: Mon, 17 Dec 2001 17:17:59 -0800 (PST) From: Message-Id: <200112180117.fBI1Hxv70115@freefall.freebsd.org> To: cjc@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32939: UPDATE : ftp/vsftpd to 1.01 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: UPDATE : ftp/vsftpd to 1.01 Responsible-Changed-From-To: freebsd-bugs->freebsd-ports Responsible-Changed-By: cjc Responsible-Changed-When: Mon Dec 17 17:16:58 PST 2001 Responsible-Changed-Why: Misfiled. A ports PR. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32939 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 17 17:20:12 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 935E337B41F for ; Mon, 17 Dec 2001 17:20:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBI1K0f70510; Mon, 17 Dec 2001 17:20:00 -0800 (PST) (envelope-from gnats) Received: from harrier.prod.itd.earthlink.net (harrier.mail.pas.earthlink.net [207.217.120.12]) by hub.freebsd.org (Postfix) with ESMTP id A232837B41A for ; Mon, 17 Dec 2001 17:15:49 -0800 (PST) Received: from sdn-ar-007dcwashp245.dialsprint.net ([63.178.90.135] helo=moo.holy.cow) by harrier.prod.itd.earthlink.net with esmtp (Exim 3.33 #1) id 16G8rD-0002rW-00 for FreeBSD-gnats-submit@freebsd.org; Mon, 17 Dec 2001 17:15:48 -0800 Received: by moo.holy.cow (Postfix, from userid 1001) id 3434A50D10; Mon, 17 Dec 2001 20:16:42 -0500 (EST) Message-Id: <20011218011642.3434A50D10@moo.holy.cow> Date: Mon, 17 Dec 2001 20:16:42 -0500 (EST) From: parv_@yahoo.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: gnu/32954: makewhatis doesn't remove entries for nonexistent manpages by default Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32954 >Category: gnu >Synopsis: makewhatis doesn't remove entries for nonexistent manpages by default >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 17 17:20:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: parv >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: freebsd version is 4.4-stable as of 2001.10.03.02.12.13 below are are the dates & version of makewhatis* files... 99.08.27.23.36.10 src/gnu/usr.bin/man/makewhatis/makewhatis.local.sh,v 1.7 2001.04.25.14.04.13 src/gnu/usr.bin/man/makewhatis/Makefile,v 1.16.2.2 2001.08.13.09.05.58 src/gnu/usr.bin/man/makewhatis/makewhatis.perl,v 1.21.2.3 2001.08.16.10.14.57 src/gnu/usr.bin/man/makewhatis/makewhatis.1,v 1.14.2.6 2001.08.16.10.14.57 src/gnu/usr.bin/man/makewhatis/makewhatis.local.8,v 1.8.2.3 >Description: makewhatis doesn't remove entries for nonexistent manpages by default. i issued this command... # cd /usr/local/man # makewhatis /usr/local/man in its manpage, there is no mention of the default behaviour. -v option would only "issue more warnings"; -a option would append to the database w/o checking if old entries are valid. and that's what puzzles me. i didn't specify the -a option, yet just that was happening. i had to delete the existing whatis database so that changes in /usr/local/man would reflect. >How-To-Repeat: - create whatis database in an appropriate directory, say, /usr/local/man. - move the whatis db to other name. - change /usr/local/man's contents by (re)moving man/cat file(s). - recreate whatis db and comapare w/ the old version. >Fix: either document the default -a option (as described above) in makewhtais(1), or fix the makewhatis. if manpage is modified, then please also add that to have fresh & clean whatis db, the current "whatis" needs to (re)moved. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 17 17:40: 8 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C612537B416 for ; Mon, 17 Dec 2001 17:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBI1e2477444; Mon, 17 Dec 2001 17:40:02 -0800 (PST) (envelope-from gnats) Date: Mon, 17 Dec 2001 17:40:02 -0800 (PST) Message-Id: <200112180140.fBI1e2477444@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Crist J . Clark" Subject: Re: bin/32953: log-in-vain level should be setable in rc.conf Reply-To: "Crist J . Clark" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/32953; it has been noted by GNATS. From: "Crist J . Clark" To: "David O'Brien" Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/32953: log-in-vain level should be setable in rc.conf Date: Mon, 17 Dec 2001 17:29:57 -0800 On Mon, Dec 17, 2001 at 04:28:07PM -0800, David O'Brien wrote: > >Description: > We allow the turning off and on of log-in-vain in rc.conf as seen in > rc.network: > > network_pass4() { > echo -n 'Additional TCP options:' > case ${log_in_vain} in > > Therefor we should also allow the log-in-vain level to be set in > rc.conf also. [snip] We should. How about this simple change which is back compaitible, but does not add more rc.conf knobs: Index: rc.network =================================================================== RCS file: /export/ncvs/src/etc/rc.network,v retrieving revision 1.119 diff -u -r1.119 rc.network --- rc.network 13 Dec 2001 04:21:18 -0000 1.119 +++ rc.network 18 Dec 2001 01:26:07 -0000 @@ -366,7 +366,7 @@ case ${firewall_logging} in [Yy][Ee][Ss] | '') echo 'Firewall logging=YES' - sysctl net.inet.ip.fw.verbose=1 >/dev/null + sysctl net.inet.ip.fw.verbose="${firewall_verbose:-1}" >/dev/null ;; *) ;; @@ -848,9 +848,12 @@ [Nn][Oo] | '') ;; *) - echo -n ' log_in_vain=YES' - sysctl net.inet.tcp.log_in_vain=1 >/dev/null - sysctl net.inet.udp.log_in_vain=1 >/dev/null + if ! expr "${log_in_vain}" : '[0-9]*' >/dev/null 2>&1; then + log_in_vain=1 + fi + echo -n " log_in_vain=${log_in_vain}" + sysctl net.inet.tcp.log_in_vain="${log_in_vain}" >/dev/null + sysctl net.inet.udp.log_in_vain="${log_in_vain}" >/dev/null ;; esac That is, if log_in_vain holds an integer value, use it. If it is anything else, revert to the old behavior of setting it to 1. -- "It's always funny until someone gets hurt. Then it's hilarious." Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 17 21:10: 4 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CD47637B41C for ; Mon, 17 Dec 2001 21:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBI5A1U46135; Mon, 17 Dec 2001 21:10:01 -0800 (PST) (envelope-from gnats) Date: Mon, 17 Dec 2001 21:10:01 -0800 (PST) Message-Id: <200112180510.fBI5A1U46135@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Tony Finch Subject: Re: kern/32404: ESS Allegro-1 fails to recover from APM suspend/resume Reply-To: Tony Finch Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/32404; it has been noted by GNATS. From: Tony Finch To: FreeBSD-gnats-submit@freebsd.org Cc: dot@dotat.at Subject: Re: kern/32404: ESS Allegro-1 fails to recover from APM suspend/resume Date: Tue, 18 Dec 2001 05:02:38 +0000 I have just upgraded, and it seems that rev 1.2.2.6 of maestro3.c fixed the problem. This PR can be closed. Tony. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 17 22:50:58 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3F7EA37B417 for ; Mon, 17 Dec 2001 22:50:54 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBI6osa64903; Mon, 17 Dec 2001 22:50:54 -0800 (PST) (envelope-from gnats) Date: Mon, 17 Dec 2001 22:50:54 -0800 (PST) Message-Id: <200112180650.fBI6osa64903@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Alexey V. Neyman" Subject: Re: misc/32731: Question concerning FreeBSD introductions Reply-To: "Alexey V. Neyman" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR misc/32731; it has been noted by GNATS. From: "Alexey V. Neyman" To: bug-followup@FreeBSD.org Cc: Subject: Re: misc/32731: Question concerning FreeBSD introductions Date: Tue, 18 Dec 2001 09:44:36 +0300 This PR can be closed. -- <-------------------------> ) May the Sun and Water ( Regards, Alexey V. Neyman ) always fall upon you! ( mailto:alex.neyman@auriga.ru <-------------------------> To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 17 23:10:15 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 238C237B421 for ; Mon, 17 Dec 2001 23:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBI7A2P70284; Mon, 17 Dec 2001 23:10:02 -0800 (PST) (envelope-from gnats) Date: Mon, 17 Dec 2001 23:10:02 -0800 (PST) Message-Id: <200112180710.fBI7A2P70284@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Alexey V. Neyman" Subject: Re: kern/32741: Getting segmentation fault in connect system call Reply-To: "Alexey V. Neyman" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/32741; it has been noted by GNATS. From: "Alexey V. Neyman" To: bug-followup@freebsd.org Cc: Subject: Re: kern/32741: Getting segmentation fault in connect system call Date: Tue, 18 Dec 2001 10:03:38 +0300 --------------Boundary-00=_2A2JZ8G1GSHP494KCN0J Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 8bit Adding to Audit-Trail. This PR can be closed. ---------- Forwarded Message ---------- Subject: Re: kern/32741: Getting segmentation fault in connect system call Date: Tue, 18 Dec 2001 12:29:59 +0530 From: "Lokendra Kr. Verma" To: "Alexey V. Neyman" Hello sir, Thanx for reply. I got solved this problem last weak. U r right actually. I was building my .so file using libc_r library which is thread safe. But the exe on which this .so shall be loaded was not thread safe. I was linking the exe with libc which is not thread safe on freeBSD. Now everything is ok. Once again i say thanx..... PLease keep in touch. Lokendra "Alexey V. Neyman" wrote: > Hello there, > > seems that you have an isolated test case; may I have a look at it? > (the backtrace shown in PR does not look like that you're crashing in > connect(2), but rather you've got shared object linked incorrectly). > > What options do you pass to compiler/linker to build client.so? > > Regards, > Alexey. > > -- > <-------------------------> > ) May the Sun and Water ( Regards, Alexey V. Neyman > ) always fall upon you! ( mailto:alex.neyman@auriga.ru > <-------------------------> ------------------------------------------------------- -- <-------------------------> ) May the Sun and Water ( Regards, Alexey V. Neyman ) always fall upon you! ( mailto:alex.neyman@auriga.ru <-------------------------> --------------Boundary-00=_2A2JZ8G1GSHP494KCN0J Content-Type: text/x-vcard; charset="us-ascii"; name="lokendra.vcf" Content-Transfer-Encoding: 7bit Content-Description: Card for Lokendra Kr. Verma Content-Disposition: attachment; filename="lokendra.vcf" begin:vcard n:Verma;Lokendra Kr. tel;work:Network Management Systems (NPI) x-mozilla-html:FALSE adr:;;;;;; version:2.1 email;internet:lokendra@npi.stpn.soft.net fn:Lokendra Kr. Verma end:vcard --------------Boundary-00=_2A2JZ8G1GSHP494KCN0J-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 18 0:30: 8 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 74F5B37B419 for ; Tue, 18 Dec 2001 00:30:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBI8U2187650; Tue, 18 Dec 2001 00:30:02 -0800 (PST) (envelope-from gnats) Date: Tue, 18 Dec 2001 00:30:02 -0800 (PST) Message-Id: <200112180830.fBI8U2187650@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ruslan Ermilov Subject: Re: gnu/32954: makewhatis doesn't remove entries for nonexistent manpages by default Reply-To: Ruslan Ermilov Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR gnu/32954; it has been noted by GNATS. From: Ruslan Ermilov To: parv_@yahoo.com Cc: bug-followup@FreeBSD.org Subject: Re: gnu/32954: makewhatis doesn't remove entries for nonexistent manpages by default Date: Tue, 18 Dec 2001 10:29:05 +0200 On Mon, Dec 17, 2001 at 08:16:42PM -0500, parv_@yahoo.com wrote: > > freebsd version is 4.4-stable as of 2001.10.03.02.12.13 > > below are are the dates & version of makewhatis* files... > > 99.08.27.23.36.10 src/gnu/usr.bin/man/makewhatis/makewhatis.local.sh,v 1.7 > 2001.04.25.14.04.13 src/gnu/usr.bin/man/makewhatis/Makefile,v 1.16.2.2 > 2001.08.13.09.05.58 src/gnu/usr.bin/man/makewhatis/makewhatis.perl,v 1.21.2.3 > 2001.08.16.10.14.57 src/gnu/usr.bin/man/makewhatis/makewhatis.1,v 1.14.2.6 > 2001.08.16.10.14.57 src/gnu/usr.bin/man/makewhatis/makewhatis.local.8,v 1.8.2.3 > > makewhatis doesn't remove entries for nonexistent manpages by > default. i issued this command... > > # cd /usr/local/man > # makewhatis /usr/local/man > > in its manpage, there is no mention of the default behaviour. -v > option would only "issue more warnings"; -a option would append to > the database w/o checking if old entries are valid. > > and that's what puzzles me. i didn't specify the -a option, yet > just that was happening. i had to delete the existing whatis > database so that changes in /usr/local/man would reflect. > > > >How-To-Repeat: > > - create whatis database in an appropriate directory, say, /usr/local/man. > - move the whatis db to other name. > - change /usr/local/man's contents by (re)moving man/cat file(s). > - recreate whatis db and comapare w/ the old version. > > >Fix: > > either document the default -a option (as described above) in > makewhtais(1), or fix the makewhatis. > > if manpage is modified, then please also add that to have fresh & clean > whatis db, the current "whatis" needs to (re)moved. > Hmm, I have exactly the same versions of files above, and can't reproduce the problem. I.e., without -a, makewhatis(1) doesn't pre-open /usr/local/man/makewhatis, but rather does a search of all manpages, sorts them, outputs them into makewhatis.tmp, and then renames makewhatis.tmp to makewhatis. Can you please show me the output of the following command: /usr/bin/makewhatis -v /usr/local/man Cheers, -- Ruslan Ermilov Oracle Developer/DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 18 3:26:39 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from tao.org.uk (genius.tao.org.uk [212.135.162.51]) by hub.freebsd.org (Postfix) with ESMTP id 92D5237B41A for ; Tue, 18 Dec 2001 03:26:33 -0800 (PST) Received: by tao.org.uk (Postfix, from userid 100) id 6F5CD4BE; Tue, 18 Dec 2001 11:26:25 +0000 (GMT) Date: Tue, 18 Dec 2001 11:26:25 +0000 From: Josef Karthauser To: banshee Cc: bugs@freebsd.org Subject: Re: bug in units Message-ID: <20011218112625.D708@tao.org.uk> References: <200112180041.fBI0faP75817@pork.abattoir.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="pY3vCvL1qV+PayAL" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200112180041.fBI0faP75817@pork.abattoir.com>; from banshee@pork.abattoir.com on Mon, Dec 17, 2001 at 04:41:36PM -0800 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --pY3vCvL1qV+PayAL Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Committed. For future reference this should have been submitted using 'send-pr' run from the command line. Thanks, Joe On Mon, Dec 17, 2001 at 04:41:36PM -0800, banshee wrote: >=20 > tbl should be a synonym for tablespoon > tsp should be a synonym for teaspoon >=20 > src/usr.bin/units/units.lib >=20 > --- units.lib.old Mon Dec 17 16:38:49 2001 > +++ units.lib Mon Dec 17 16:39:38 2001 > @@ -1,4 +1,4 @@ > -/ $FreeBSD: src/usr.bin/units/units.lib,v 1.5.2.4 2001/06/08 04:57:05 dd= Exp $ > +/ $FreeBSD: src/usr.bin/units/units.lib,v local 2001/06/08 04:57:05 dd E= xp $ > =20 > / primitive units > =20 > @@ -542,7 +542,10 @@ > surveyorschain 66 ft > surveyorslink 66|100 ft > tablespoon 4 fldr > +tbl tablespoon > +tbsp tablespoon > teaspoon 4|3 fldr > +tsp teaspoon > tesla weber/m2 > therm 1e+5 btu > thermie 1e+6 cal >=20 >=20 > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-bugs" in the body of the message --pY3vCvL1qV+PayAL Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iEYEARECAAYFAjwfJ+AACgkQXVIcjOaxUBasJwCfQ8hbkSzaC6dZQvMb2CnbsGYg Vu8AnAqIom2WHhtGAK0i3fIy1D1kZfKW =uvfT -----END PGP SIGNATURE----- --pY3vCvL1qV+PayAL-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 18 3:59:50 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ACC4B37B41A; Tue, 18 Dec 2001 03:59:48 -0800 (PST) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBIBpEt22029; Tue, 18 Dec 2001 03:51:14 -0800 (PST) (envelope-from dwmalone) Date: Tue, 18 Dec 2001 03:51:14 -0800 (PST) From: Message-Id: <200112181151.fBIBpEt22029@freefall.freebsd.org> To: dot@dotat.at, dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/32404: ESS Allegro-1 fails to recover from APM suspend/resume Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: ESS Allegro-1 fails to recover from APM suspend/resume State-Changed-From-To: open->closed State-Changed-By: dwmalone State-Changed-When: Tue Dec 18 03:50:37 PST 2001 State-Changed-Why: Closed at submitters request - problem seems to be fixed. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32404 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 18 5: 0:40 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B9D3437B41A for ; Tue, 18 Dec 2001 05:00:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBID03x39727; Tue, 18 Dec 2001 05:00:03 -0800 (PST) (envelope-from gnats) Date: Tue, 18 Dec 2001 05:00:03 -0800 (PST) Message-Id: <200112181300.fBID03x39727@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ruslan Ermilov Subject: Re: bin/32953: log-in-vain level should be setable in rc.conf Reply-To: Ruslan Ermilov Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/32953; it has been noted by GNATS. From: Ruslan Ermilov To: "Crist J . Clark" Cc: bug-followup@FreeBSD.ORG Subject: Re: bin/32953: log-in-vain level should be setable in rc.conf Date: Tue, 18 Dec 2001 14:52:49 +0200 On Mon, Dec 17, 2001 at 05:40:02PM -0800, Crist J . Clark wrote: > The following reply was made to PR bin/32953; it has been noted by GNATS. > > From: "Crist J . Clark" > To: "David O'Brien" > Cc: FreeBSD-gnats-submit@FreeBSD.ORG > Subject: Re: bin/32953: log-in-vain level should be setable in rc.conf > Date: Mon, 17 Dec 2001 17:29:57 -0800 > > On Mon, Dec 17, 2001 at 04:28:07PM -0800, David O'Brien wrote: > > > >Description: > > We allow the turning off and on of log-in-vain in rc.conf as seen in > > rc.network: > > > > network_pass4() { > > echo -n 'Additional TCP options:' > > case ${log_in_vain} in > > > > Therefor we should also allow the log-in-vain level to be set in > > rc.conf also. > [snip] > > We should. How about this simple change which is back compaitible, but > does not add more rc.conf knobs: > > Index: rc.network > =================================================================== > RCS file: /export/ncvs/src/etc/rc.network,v > retrieving revision 1.119 > diff -u -r1.119 rc.network > --- rc.network 13 Dec 2001 04:21:18 -0000 1.119 > +++ rc.network 18 Dec 2001 01:26:07 -0000 > @@ -366,7 +366,7 @@ > case ${firewall_logging} in > [Yy][Ee][Ss] | '') > echo 'Firewall logging=YES' > - sysctl net.inet.ip.fw.verbose=1 >/dev/null > + sysctl net.inet.ip.fw.verbose="${firewall_verbose:-1}" >/dev/null > ;; > *) > ;; Is this a stray change? fw_verbose is boolean, at least in my version of ip_fw.c. > @@ -848,9 +848,12 @@ > [Nn][Oo] | '') > ;; > *) > - echo -n ' log_in_vain=YES' > - sysctl net.inet.tcp.log_in_vain=1 >/dev/null > - sysctl net.inet.udp.log_in_vain=1 >/dev/null > + if ! expr "${log_in_vain}" : '[0-9]*' >/dev/null 2>&1; then > + log_in_vain=1 > + fi > + echo -n " log_in_vain=${log_in_vain}" > + sysctl net.inet.tcp.log_in_vain="${log_in_vain}" >/dev/null > + sysctl net.inet.udp.log_in_vain="${log_in_vain}" >/dev/null > ;; > esac > I think you should add a case for [Yy][Ee][Ss], and treat the fallback case as a numeric value, without expr(1)-checking it. There's nothing wrong here as the only documented values were YES and NO, and people who had it set to the other value (e.g. "YUP") will now have to fix it to the right value. :-) Cheers, -- Ruslan Ermilov Oracle Developer/DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 18 6:50:14 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1154737B41B for ; Tue, 18 Dec 2001 06:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBIEo1O52395; Tue, 18 Dec 2001 06:50:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6B1F637B41A for ; Tue, 18 Dec 2001 06:49:48 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBIEkg630830; Tue, 18 Dec 2001 06:46:42 -0800 (PST) (envelope-from nobody) Message-Id: <200112181446.fBIEkg630830@freefall.freebsd.org> Date: Tue, 18 Dec 2001 06:46:42 -0800 (PST) From: KT Sin To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/32973: psm missing when acpi is loaded Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32973 >Category: kern >Synopsis: psm missing when acpi is loaded >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 18 06:50:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: KT Sin >Release: FreeBSD 5.0-CURRENT >Organization: >Environment: FreeBSD passion.daddylonglegs.com 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Sun Dec 16 22:08:25 SGT 2001 ktsin@passion.daddylonglegs.com:/usr/src/sys/i386/compile/PASSION i386 >Description: The PS/2 mouse device is not detected during bootup for certain motherboards when ACPI is loaded. >How-To-Repeat: >Fix: Please apply the patch below: ===========================cut here================================== *** sys/isa/psm.c.orig Sat Oct 13 18:28:02 2001 --- sys/isa/psm.c Tue Nov 6 09:35:25 2001 *************** *** 928,933 **** --- 928,934 ---- int mask; int rid; int i; + int irq; #if 0 kbdc_debug(TRUE); *************** *** 935,940 **** --- 936,952 ---- /* see if IRQ is available */ rid = KBDC_RID_AUX; + + irq = bus_get_resource_start(dev, SYS_RES_IRQ, rid); + if (irq <= 0) { + if (resource_long_value(PSM_DRIVER_NAME, + device_get_unit(dev), "irq", &irq) != 0) + irq = 12; /* XXX */ + device_printf(dev, "irq resource info is missing; " + "assuming irq %ld\n", irq); + bus_set_resource(dev, SYS_RES_IRQ, rid, irq, 1); + } + sc->intr = bus_alloc_resource(dev, SYS_RES_IRQ, &rid, 0, ~0, 1, RF_SHAREABLE | RF_ACTIVE); if (sc->intr == NULL) { ===========================cut here=================================== begin 644 psm-patch M*BHJ('-YPHK(`EI9B`HRelease-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 18 7:40:11 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 564B537B437 for ; Tue, 18 Dec 2001 07:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBIFe1O04069; Tue, 18 Dec 2001 07:40:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7E88337B416 for ; Tue, 18 Dec 2001 07:39:48 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBIFWqt01931; Tue, 18 Dec 2001 07:32:52 -0800 (PST) (envelope-from nobody) Message-Id: <200112181532.fBIFWqt01931@freefall.freebsd.org> Date: Tue, 18 Dec 2001 07:32:52 -0800 (PST) From: Michel Oosterhof To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: conf/32976: Kerberos5 config files not installed by default (while KerberosIV files are) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32976 >Category: conf >Synopsis: Kerberos5 config files not installed by default (while KerberosIV files are) >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: Tue Dec 18 07:40:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Michel Oosterhof >Release: 4.4-STABLE >Organization: >Environment: FreeBSD router 4.4-STABLE FreeBSD 4.4-STABLE #1: Sun Dec 2 14:17:46 CET 2001 root@router:/usr/obj/usr/src/sys/ROUTER i386 >Description: For KerberosIV (Bones) the configuration files are installed by default in /etc/KerberosIV (krb.realms and krb.conf) For Kerberos5 (Heimdal) this is not done. To be consistent it should also be installed. Also: the manual page for krb5.conf(5) is not installed by default. >How-To-Repeat: n/a >Fix: Create /usr/src/etc/krb5.conf (an example is located in /usr/src/crypto/heimdal/lib/krb5.conf) >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 18 8:30:11 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7B12737B43B for ; Tue, 18 Dec 2001 08:30:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBIGU3a16238; Tue, 18 Dec 2001 08:30:03 -0800 (PST) (envelope-from gnats) Date: Tue, 18 Dec 2001 08:30:03 -0800 (PST) Message-Id: <200112181630.fBIGU3a16238@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Nevermind Subject: Re: bin/32740: ftpd segfaults after get Reply-To: Nevermind Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/32740; it has been noted by GNATS. From: Nevermind To: "Crist J . Clark" Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/32740: ftpd segfaults after get Date: Mon, 17 Dec 2001 16:27:20 +0200 Hello, Crist J . Clark! On Mon, Dec 17, 2001 at 03:36:09AM -0800, you wrote: > > > pid 43138 (ftpd), uid 3033: exited on signal 11 > > > Dec 11 16:35:26 rabbit /kernel: pid 43138 (ftpd), uid 3033: exited on signal 11 > > > > uid 3033 is user atlon > > > > >How-To-Repeat: > > I cannot reproduce this error for sure, it happens according to very > > strange law... > > >Fix: > > > > Haven't find anything that could cause this on 'get' in sources. Maybe you > > will? > http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/troubleshoot.html#SIGNAL11 > > Anything there look familiar? Is ftpd(8) the only on dying like this? I've checked URL, nothing looks familiar, I have not overclocked CPU, I have brand new Trascend memory, I have 400W power suppoly and ftpd(8) is the only one which is dying like this. No 11 signals except for ftpd. This server is pretty loaded with apache/mysql/postgresql, and nothing segfaults except for ftpd. > Do you have a better idea of how to reproduce this yet? No, unfortunately... I had this problem few times on different hardware known to be absolutely good. And the strange thing -- it does not leave core... -- NEVE-RIPE To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 18 8:46:40 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from snipe.prod.itd.earthlink.net (snipe.mail.pas.earthlink.net [207.217.120.62]) by hub.freebsd.org (Postfix) with ESMTP id 1C58737B419; Tue, 18 Dec 2001 08:45:55 -0800 (PST) Received: from sdn-ar-007dcwashp053.dialsprint.net ([63.178.91.37] helo=moo.holy.cow) by snipe.prod.itd.earthlink.net with esmtp (Exim 3.33 #1) id 16GNNA-0000rO-00; Tue, 18 Dec 2001 08:45:45 -0800 Received: by moo.holy.cow (Postfix, from userid 1001) id CBE1350D10; Tue, 18 Dec 2001 04:48:17 -0500 (EST) Date: Tue, 18 Dec 2001 04:48:17 -0500 From: parv To: Ruslan Ermilov Cc: freebsd-bugs@FreeBSD.org Subject: Re: gnu/32954: makewhatis doesn't remove entries for nonexistent manpages by default Message-ID: <20011218044817.A72002@moo.holy.cow> Mail-Followup-To: Ruslan Ermilov , freebsd-bugs@FreeBSD.org References: <200112180830.fBI8U2187650@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200112180830.fBI8U2187650@freefall.freebsd.org>; from ru@FreeBSD.org on Tue, Dec 18, 2001 at 12:30:02AM -0800 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org in message <200112180830.fBI8U2187650@freefall.freebsd.org>, wrote Ruslan Ermilov thusly... > > The following reply was made to PR gnu/32954; it has been noted by GNATS. > > From: Ruslan Ermilov > To: parv_@yahoo.com > Cc: bug-followup@FreeBSD.org > Subject: Re: gnu/32954: makewhatis doesn't remove entries for nonexistent manpages by default > Date: Tue, 18 Dec 2001 10:29:05 +0200 > > On Mon, Dec 17, 2001 at 08:16:42PM -0500, parv_@yahoo.com wrote: > > > > freebsd version is 4.4-stable as of 2001.10.03.02.12.13 > > > > below are are the dates & version of makewhatis* files... > > > > 99.08.27.23.36.10 src/gnu/usr.bin/man/makewhatis/makewhatis.local.sh,v 1.7 > > 2001.04.25.14.04.13 src/gnu/usr.bin/man/makewhatis/Makefile,v 1.16.2.2 > > 2001.08.13.09.05.58 src/gnu/usr.bin/man/makewhatis/makewhatis.perl,v 1.21.2.3 > > 2001.08.16.10.14.57 src/gnu/usr.bin/man/makewhatis/makewhatis.1,v 1.14.2.6 > > 2001.08.16.10.14.57 src/gnu/usr.bin/man/makewhatis/makewhatis.local.8,v 1.8.2.3 > > > > makewhatis doesn't remove entries for nonexistent manpages by > > default. i issued this command... > > > > # cd /usr/local/man > > # makewhatis /usr/local/man > > > > in its manpage, there is no mention of the default behaviour. -v > > option would only "issue more warnings"; -a option would append to > > the database w/o checking if old entries are valid. ... > Hmm, I have exactly the same versions of files above, and can't > reproduce the problem. I.e., without -a, makewhatis(1) doesn't > pre-open /usr/local/man/makewhatis, but rather does a search of > all manpages, sorts them, outputs them into makewhatis.tmp, and > then renames makewhatis.tmp to makewhatis. Can you please show > me the output of the following command: > > /usr/bin/makewhatis -v /usr/local/man here is the output... Open /usr/local/man/whatis.tmp open manpath directory ``/usr/local/man'' traverse /usr/local/man/man1 ... sort -u > /usr/local/man/whatis.tmp Rename /usr/local/man/whatis.tmp to /usr/local/man/whatis 1420 entries in /usr/local/man/whatis ...indeed it does overwrite the whatis db. i apologize for wasting everybody's time & resources. i suppose i was confused for getting a negative response for "man 3 Tcl_InitStubs" when "man -k tcl_" clearly showed it listed. however i did find it listed under "man 3 TclInitStubs". thanks for the knock on the head. :p -- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 18 8:54:44 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6D76337B416; Tue, 18 Dec 2001 08:54:42 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBIGsc519172; Tue, 18 Dec 2001 08:54:38 -0800 (PST) (envelope-from ru) Date: Tue, 18 Dec 2001 08:54:38 -0800 (PST) From: Message-Id: <200112181654.fBIGsc519172@freefall.freebsd.org> To: ru@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: gnu/32954: makewhatis doesn't remove entries for nonexistent manpages by default Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: makewhatis doesn't remove entries for nonexistent manpages by default State-Changed-From-To: open->closed State-Changed-By: ru State-Changed-When: Tue Dec 18 08:52:02 PST 2001 State-Changed-Why: Originator was confused by apropos(1) output for non-existing manpage link. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32954 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 18 9:19:49 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C579037B405; Tue, 18 Dec 2001 09:19:48 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBIHBHj24838; Tue, 18 Dec 2001 09:11:17 -0800 (PST) (envelope-from bmah) Date: Tue, 18 Dec 2001 09:11:17 -0800 (PST) From: Message-Id: <200112181711.fBIHBHj24838@freefall.freebsd.org> To: tim@beyondjw.com, bmah@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/32731: Question concerning FreeBSD introductions Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Question concerning FreeBSD introductions State-Changed-From-To: open->closed State-Changed-By: bmah State-Changed-When: Tue Dec 18 09:10:31 PST 2001 State-Changed-Why: Null PR. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32731 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 18 9:19:54 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AF4C937B405; Tue, 18 Dec 2001 09:19:52 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBIHD8325124; Tue, 18 Dec 2001 09:13:08 -0800 (PST) (envelope-from bmah) Date: Tue, 18 Dec 2001 09:13:08 -0800 (PST) From: Message-Id: <200112181713.fBIHD8325124@freefall.freebsd.org> To: lokendra@npi.stpn.soft.net, bmah@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/32741: Getting segmentation fault in connect system call Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Getting segmentation fault in connect system call State-Changed-From-To: open->closed State-Changed-By: bmah State-Changed-When: Tue Dec 18 09:11:45 PST 2001 State-Changed-Why: Problem solved, according to follow-up from "Alexey V. Neyman" . http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32741 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 18 12:29:56 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 48DA337B416; Tue, 18 Dec 2001 12:29:49 -0800 (PST) Received: (from dg@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBIKP5V58259; Tue, 18 Dec 2001 12:25:05 -0800 (PST) (envelope-from dg) Date: Tue, 18 Dec 2001 12:25:05 -0800 (PST) From: Message-Id: <200112182025.fBIKP5V58259@freefall.freebsd.org> To: oz@mediascape.de, dg@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/32913: still no support for Intel "eepro100" NICs Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: still no support for Intel "eepro100" NICs State-Changed-From-To: open->closed State-Changed-By: dg State-Changed-When: Tue Dec 18 12:23:51 PST 2001 State-Changed-Why: Submitter solved the problem by setting the "PNP OS" BIOS option to "NO". http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32913 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 18 14:10:26 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7A78837B41A for ; Tue, 18 Dec 2001 14:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBIMA1G79324; Tue, 18 Dec 2001 14:10:01 -0800 (PST) (envelope-from gnats) Received: from stash.attlabs.att.com (mpfg.attlabs.net [12.106.35.2]) by hub.freebsd.org (Postfix) with ESMTP id 99F6D37B41A for ; Tue, 18 Dec 2001 14:03:36 -0800 (PST) Received: (from fenner@localhost) by stash.attlabs.att.com (8.11.6/8.11.6) id fBIM2wt17372; Tue, 18 Dec 2001 14:02:58 -0800 (PST) (envelope-from fenner) Message-Id: <200112182202.fBIM2wt17372@stash.attlabs.att.com> Date: Tue, 18 Dec 2001 14:02:58 -0800 (PST) From: Bill Fenner Reply-To: Bill Fenner To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/32988: libfetch debugging includes vt100-ish escape sequences Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32988 >Category: bin >Synopsis: libfetch debugging includes vt100-ish escape sequences >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 18 14:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Bill Fenner >Release: FreeBSD 5.0-CURRENT i386 >Organization: AT&T Labs - Research >Environment: System: FreeBSD stash.attlabs.att.com 5.0-CURRENT FreeBSD 5.0-CURRENT #56: Thu Dec 13 13:30:23 PST 2001 root@stash.attlabs.att.com:/usr/obj/usr/src/sys/STASHNOV6 i386 >Description: I'm happy to see libfetch's new debugging output - unfortunately, it uses escape sequences that may not be supported by the current terminal, or desired in a log file. >How-To-Repeat: "fetch -vv ftp://ftp.freebsd.org/pub/FreeBSD/nosuchfile > /tmp/log 2>&1"; examine /tmp/log for escape characters. >Fix: If you really want to have the debugging stand out, perhaps using termcap's so/se sequences is appropriate; however, stripping them completely suffices for me: cvs diff: Diffing . Index: common.c =================================================================== RCS file: /home/ncvs/src/lib/libfetch/common.c,v retrieving revision 1.22 diff -u -r1.22 common.c --- common.c 19 Oct 2001 10:08:05 -0000 1.22 +++ common.c 18 Dec 2001 21:52:44 -0000 @@ -208,7 +208,7 @@ struct addrinfo hints, *res, *res0; int sd, err; - DEBUG(fprintf(stderr, "\033[1m---> %s:%d\033[m\n", host, port)); + DEBUG(fprintf(stderr, "---> %s:%d\n", host, port)); if (verbose) _fetch_info("looking up %s", host); @@ -324,7 +324,7 @@ } } while (c != '\n'); - DEBUG(fprintf(stderr, "\033[1m<<< %.*s\033[m", (int)*len, *buf)); + DEBUG(fprintf(stderr, "<<< %.*s", (int)*len, *buf)); return 0; } @@ -348,7 +348,7 @@ wlen = writev(fd, iov, 2); if (wlen < 0 || (size_t)wlen != len) return -1; - DEBUG(fprintf(stderr, "\033[1m>>> %s\n\033[m", str)); + DEBUG(fprintf(stderr, ">>> %s\n", str)); return 0; } Index: fetch.c =================================================================== RCS file: /home/ncvs/src/lib/libfetch/fetch.c,v retrieving revision 1.31 diff -u -r1.31 fetch.c --- fetch.c 9 Dec 2001 15:05:19 -0000 1.31 +++ fetch.c 18 Dec 2001 21:52:44 -0000 @@ -403,12 +403,12 @@ } DEBUG(fprintf(stderr, - "scheme: [\033[1m%s\033[m]\n" - "user: [\033[1m%s\033[m]\n" - "password: [\033[1m%s\033[m]\n" - "host: [\033[1m%s\033[m]\n" - "port: [\033[1m%d\033[m]\n" - "document: [\033[1m%s\033[m]\n", + "scheme: [%s]\n" + "user: [%s]\n" + "password: [%s]\n" + "host: [%s]\n" + "port: [%d]\n" + "document: [%s]\n", u->scheme, u->user, u->pwd, u->host, u->port, u->doc)); Index: ftp.c =================================================================== RCS file: /home/ncvs/src/lib/libfetch/ftp.c,v retrieving revision 1.72 diff -u -r1.72 ftp.c --- ftp.c 4 Dec 2001 01:09:19 -0000 1.72 +++ ftp.c 18 Dec 2001 21:52:44 -0000 @@ -267,7 +267,7 @@ } if (us->size == 0) us->size = -1; - DEBUG(fprintf(stderr, "size: [\033[1m%lld\033[m]\n", (long long)us->size)); + DEBUG(fprintf(stderr, "size: [%lld]\n", (long long)us->size)); if ((e = _ftp_cmd(cd, "MDTM %s", s)) != FTP_FILE_STATUS) { _ftp_seterr(e); @@ -301,8 +301,8 @@ t = time(NULL); us->mtime = t; us->atime = t; - DEBUG(fprintf(stderr, "last modified: [\033[1m%04d-%02d-%02d " - "%02d:%02d:%02d\033[m]\n", + DEBUG(fprintf(stderr, "last modified: [%04d-%02d-%02d " + "%02d:%02d:%02d]\n", tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday, tm.tm_hour, tm.tm_min, tm.tm_sec)); return 0; Index: http.c =================================================================== RCS file: /home/ncvs/src/lib/libfetch/http.c,v retrieving revision 1.47 diff -u -r1.47 http.c --- http.c 9 Dec 2001 15:05:58 -0000 1.47 +++ http.c 18 Dec 2001 21:52:44 -0000 @@ -146,11 +146,11 @@ if (fetchDebug) { c->total += c->chunksize; if (c->chunksize == 0) - fprintf(stderr, "\033[1m_http_fillbuf(): " - "end of last chunk\033[m\n"); + fprintf(stderr, "_http_fillbuf(): " + "end of last chunk\n"); else - fprintf(stderr, "\033[1m_http_fillbuf(): " - "new chunk: %lu (%lu)\033[m\n", + fprintf(stderr, "_http_fillbuf(): " + "new chunk: %lu (%lu)\n", (unsigned long)c->chunksize, (unsigned long)c->total); } #endif @@ -447,8 +447,8 @@ setlocale(LC_TIME, locale); if (r == NULL) return -1; - DEBUG(fprintf(stderr, "last modified: [\033[1m%04d-%02d-%02d " - "%02d:%02d:%02d\033[m]\n", + DEBUG(fprintf(stderr, "last modified: [%04d-%02d-%02d " + "%02d:%02d:%02d]\n", tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday, tm.tm_hour, tm.tm_min, tm.tm_sec)); *mtime = timegm(&tm); @@ -467,7 +467,7 @@ len = len * 10 + (*p - '0'); if (*p) return -1; - DEBUG(fprintf(stderr, "content length: [\033[1m%lld\033[m]\n", + DEBUG(fprintf(stderr, "content length: [%lld]\n", (long long)len)); *length = len; return 0; @@ -495,7 +495,7 @@ len = len * 10 + *p - '0'; if (*p || len < last - first + 1) return -1; - DEBUG(fprintf(stderr, "content range: [\033[1m%lld-%lld/%lld\033[m]\n", + DEBUG(fprintf(stderr, "content range: [%lld-%lld/%lld]\n", (long long)first, (long long)last, (long long)len)); *offset = first; *length = last - first + 1; @@ -573,8 +573,8 @@ char *upw, *auth; int r; - DEBUG(fprintf(stderr, "usr: [\033[1m%s\033[m]\n", usr)); - DEBUG(fprintf(stderr, "pwd: [\033[1m%s\033[m]\n", pwd)); + DEBUG(fprintf(stderr, "usr: [%s]\n", usr)); + DEBUG(fprintf(stderr, "pwd: [%s]\n", pwd)); if (asprintf(&upw, "%s:%s", usr, pwd) == -1) return -1; auth = _http_base64(upw); >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 18 14:20:15 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4B01537B41D for ; Tue, 18 Dec 2001 14:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBIMK1t80327; Tue, 18 Dec 2001 14:20:01 -0800 (PST) (envelope-from gnats) Received: from stash.attlabs.att.com (mpfg.attlabs.net [12.106.35.2]) by hub.freebsd.org (Postfix) with ESMTP id 0C3F137B416 for ; Tue, 18 Dec 2001 14:11:35 -0800 (PST) Received: (from fenner@localhost) by stash.attlabs.att.com (8.11.6/8.11.6) id fBIMB5q17474; Tue, 18 Dec 2001 14:11:05 -0800 (PST) (envelope-from fenner) Message-Id: <200112182211.fBIMB5q17474@stash.attlabs.att.com> Date: Tue, 18 Dec 2001 14:11:05 -0800 (PST) From: Bill Fenner Reply-To: Bill Fenner To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/32989: fetch cannot display verbose proxy errors Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32989 >Category: bin >Synopsis: fetch cannot display verbose proxy errors >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 18 14:20:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Bill Fenner >Release: FreeBSD 5.0-CURRENT i386 >Organization: AT&T Labs - Research >Environment: System: FreeBSD stash.attlabs.att.com 5.0-CURRENT FreeBSD 5.0-CURRENT #56: Thu Dec 13 13:30:23 PST 2001 root@stash.attlabs.att.com:/usr/obj/usr/src/sys/STASHNOV6 i386 >Description: no amount of additional "-v" flags will cause fetch to display the text of an error returned from an HTTP proxy. >How-To-Repeat: env HTTP_PROXY=something fetch -vvvvvvvvvvvvvvvvvvvvvvvvv ftp://ftp.freebsd.org/pub/FreeBSD/nosuchfile >Fix: Ressurect code from old fetch(1)'s http.c rev 1.5 label spewerror: and function html_display() >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 18 14:40: 6 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A965F37B419 for ; Tue, 18 Dec 2001 14:40:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBIMe0k82714; Tue, 18 Dec 2001 14:40:00 -0800 (PST) (envelope-from gnats) Received: from shumai.marcuscom.com (rdu57-28-046.nc.rr.com [66.57.28.46]) by hub.freebsd.org (Postfix) with ESMTP id 9354A37B405 for ; Tue, 18 Dec 2001 14:34:03 -0800 (PST) Received: (from marcus@localhost) by shumai.marcuscom.com (8.11.6/8.11.6) id fBIMYCH67243; Tue, 18 Dec 2001 17:34:12 -0500 (EST) (envelope-from marcus) Message-Id: <200112182234.fBIMYCH67243@shumai.marcuscom.com> Date: Tue, 18 Dec 2001 17:34:12 -0500 (EST) From: Joe Marcus Clarke Reply-To: Joe Marcus Clarke To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: conf/32990: -stable pam.conf does not work for GDM Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32990 >Category: conf >Synopsis: -stable pam.conf does not work for GDM >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 18 14:40:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Joe Marcus Clarke >Release: FreeBSD 4.4-STABLE i386 >Organization: MarcusCom, Inc, >Environment: System: FreeBSD shumai.marcuscom.com 4.4-STABLE FreeBSD 4.4-STABLE #0: Sun Dec 16 00:23:18 EST 2001 marcus@shumai.marcuscom.com:/usr/obj/usr/src/sys/SHUMAI i386 >Description: When logging in through GDM after cvsup'ing to the latest -stable, I get the following errors: dlerror: Cannot open "/usr/lib/pam_nologin.so" unable to resolve symbol: pam_sm_open_session >How-To-Repeat: cvsup to -stable, and try to login via GDM. >Fix: --- etc/pam.conf.orig Tue Dec 18 17:35:45 2001 +++ etc/pam.conf Tue Dec 18 17:35:57 2001 @@ -83,7 +83,6 @@ xdm password required pam_deny.so # GDM (GNOME Display Manager) -gdm auth required pam_nologin.so no_warn #gdm auth sufficient pam_kerberosIV.so no_warn try_first_pass #gdm auth sufficient pam_krb5.so no_warn try_first_pass #gdm auth sufficient pam_ssh.so no_warn try_first_pass @@ -94,7 +93,7 @@ #gdm session required pam_kerberosIV.so #gdm session required pam_krb5.so #gdm session required pam_ssh.so -gdm session required pam_unix.so +gdm session required pam_permit.so gdm password required pam_deny.so # Mail services >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 18 15: 0: 9 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5955137B417 for ; Tue, 18 Dec 2001 15:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBIN01384922; Tue, 18 Dec 2001 15:00:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CE43937B405 for ; Tue, 18 Dec 2001 14:50:24 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBIMoOh84026; Tue, 18 Dec 2001 14:50:24 -0800 (PST) (envelope-from nobody) Message-Id: <200112182250.fBIMoOh84026@freefall.freebsd.org> Date: Tue, 18 Dec 2001 14:50:24 -0800 (PST) From: Albert Kinderman To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/32991: snd_pcm.ko does not find sound card as of Dec. 15 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32991 >Category: misc >Synopsis: snd_pcm.ko does not find sound card as of Dec. 15 >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 Dec 18 15:00:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Albert Kinderman >Release: 4.4-Stable >Organization: >Environment: FreeBSD 4.4-STABLE Sat Dec 15 i386 >Description: I ran cvsup, make world, and make kernel on Dec. 15. The new kernel no longer finds my sound card. If I go back to my old kernel of Dec. 8, the sound card is found: pcm0: at port 0x534-0x537,0x388-0x38b,0x220-0x22f irq 5 drq 1,0 on isa0 >How-To-Repeat: Build a kernel as of Dec. 15 on a Dell Optiplex with built in Crystal Sound audio. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 18 16:10:20 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EA1B237B417 for ; Tue, 18 Dec 2001 16:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJ0A1699444; Tue, 18 Dec 2001 16:10:01 -0800 (PST) (envelope-from gnats) Received: from polaris.we.lc.ehu.es (polaris.we.lc.ehu.es [158.227.6.43]) by hub.freebsd.org (Postfix) with ESMTP id A2D3D37B417 for ; Tue, 18 Dec 2001 16:07:32 -0800 (PST) Received: from v-ger.we.lc.ehu.es (lxpx236.lx.ehu.es [158.227.26.136]) by polaris.we.lc.ehu.es (8.11.6/8.11.6) with ESMTP id fBJ07Tb29195 for ; Wed, 19 Dec 2001 01:07:29 +0100 (MET) Received: (from jose@localhost) by v-ger.we.lc.ehu.es (8.11.6/8.11.6) id fBJ07cE05862; Wed, 19 Dec 2001 01:07:38 +0100 (CET) (envelope-from jose) Message-Id: <200112190007.fBJ07cE05862@v-ger.we.lc.ehu.es> Date: Wed, 19 Dec 2001 01:07:38 +0100 (CET) From: "Jose M. Alcaide" Reply-To: "Jose M. Alcaide" To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: kern/32993: new em(4) driver breaks kernel build when only src-sys is present Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32993 >Category: kern >Synopsis: new em(4) driver breaks kernel build when only src-sys is present >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 18 16:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Jose M. Alcaide >Release: FreeBSD 4.4-STABLE i386 >Organization: Universidad del Pais Vasco - Dept. de Electricidad y Electronica >Environment: FreeBSD haddock.we.lc.ehu.es 4.4-RELEASE FreeBSD 4.4-RELEASE #2: Sat Oct 6 20:43:56 CEST 2001 toor@haddock.we.lc.ehu.es:/usr/obj/usr/src/sys/HADDOCK i386 >Description: The recently committed em(4) driver breaks kernel compilation when only the src-sys collection (AKA "kernel developer" distribution) is installed, since sys/dev/if_em.h includes stddef.h. >How-To-Repeat: On any system with only src-base and src-sys collections installed: # cd /usr/src # make buildkernel ... ===> em @ -> /usr/src/sys machine -> /usr/src/sys/i386/include perl @/kern/makeops.pl -h @/kern/device_if.m perl @/kern/makeops.pl -h @/kern/bus_if.m perl @/kern/makeops.pl -h @/pci/pci_if.m touch opt_bdg.h rm -f .depend mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -I- -I. -I@ -I@/../include -I/usr/obj/usr/src/i386/usr/include /usr/src/sys/modules/em/../../dev/em/if_em.c /usr/src/sys/modules/em/../../dev/em/if_em_fxhw.c /usr/src/sys/modules/em/../../dev/em/if_em_phy.c In file included from /usr/src/sys/modules/em/../../dev/em/if_em.c:39: @/dev/em/if_em.h:74: stddef.h: No such file or directory In file included from @/dev/em/if_em_osdep.h:92, from @/dev/em/if_em_fxhw.h:105, from /usr/src/sys/modules/em/../../dev/em/if_em_fxhw.c:42: @/dev/em/if_em.h:74: stddef.h: No such file or directory In file included from @/dev/em/if_em_osdep.h:92, from @/dev/em/if_em_fxhw.h:105, from /usr/src/sys/modules/em/../../dev/em/if_em_phy.c:42: @/dev/em/if_em.h:74: stddef.h: No such file or directory mkdep: compile failed *** Error code 1 Stop in /usr/src/sys/modules/em. >Fix: I don't know. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 18 16:40: 7 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AA6C837B405 for ; Tue, 18 Dec 2001 16:40:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJ0e5m02437; Tue, 18 Dec 2001 16:40:05 -0800 (PST) (envelope-from gnats) Date: Tue, 18 Dec 2001 16:40:05 -0800 (PST) Message-Id: <200112190040.fBJ0e5m02437@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Brooks Davis Subject: Re: kern/32993: new em(4) driver breaks kernel build when only src-sys is present Reply-To: Brooks Davis Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/32993; it has been noted by GNATS. From: Brooks Davis To: "Jose M. Alcaide" Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: kern/32993: new em(4) driver breaks kernel build when only src-sys is present Date: Tue, 18 Dec 2001 16:36:03 -0800 On Wed, Dec 19, 2001 at 01:07:38AM +0100, Jose M. Alcaide wrote: > > >Description: > > The recently committed em(4) driver breaks kernel compilation when only the > src-sys collection (AKA "kernel developer" distribution) is installed, since > sys/dev/if_em.h includes stddef.h. > > >Fix: > > I don't know. At least in current just removing the line from if_em.h allows the module to compile without warnings which would indicate it's unused so just removing it would fix your problem. -- Brooks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 18 17:30:15 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CA2F637B41A for ; Tue, 18 Dec 2001 17:30:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJ1U0q11683; Tue, 18 Dec 2001 17:30:00 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7F38537B405 for ; Tue, 18 Dec 2001 17:20:13 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJ1KDK09636; Tue, 18 Dec 2001 17:20:13 -0800 (PST) (envelope-from nobody) Message-Id: <200112190120.fBJ1KDK09636@freefall.freebsd.org> Date: Tue, 18 Dec 2001 17:20:13 -0800 (PST) From: Giovanni Picoli Tirloni To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/32995: Kernel panic (fatal trap 12): page fault while in kernel mode Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32995 >Category: kern >Synopsis: Kernel panic (fatal trap 12): page fault while in kernel mode >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 18 17:30:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Giovanni Picoli Tirloni >Release: 4.4-STABLE >Organization: BS2 Sistemas para Internet Ltda. >Environment: FreeBSD mink.ath.cx 4.4-STABLE FreeBSD 4.4-STABLE #1: Tue Dec 18 10:01:23 BRST 20001 root@mink.ath.cx:/usr/src/sys/compile/MINK i386 >Description: After updating to 4.4-STABLE of day Dec 18 I recompiled world and kernel. All won't fine until the reboot. For some reason when any application tries to use some network related kernel function (I guess) the kernel panics. It happens just after I run ppp(8) because I've ntpdate in ppp.linkup or even if I'm not connected but I open Opera 5.05, which tries to open the home page, the kernel panics. In general, if I do anything related after tun0 is up. That doesn't happen with lo0 or any other device. I don't have ethernet support compiled, by the way. So I think it's something really related to a modification someone did in the networking stack or in ppp(8) itself. But crashing even when tun0 isn't up get me annoyed. I compiled the kernel many many times with and without optimizations (-O and -O3), removed some options like USER_LDT, LINUX, EXT2FS, PPP_DEFLATE, RANDOM_IP, etc with no luck. My kernel config follows: machine i386 cpu I586_CPU ident MINK maxusers 48 options COMPAT_LINUX options INET options EXT2FS options FFS_ROOT options SOFTUPDATES options MSDOSFS options CD9660 options PROCFS options COMPAT_43 options UCONSOLE options SYSVSHM options SYSVMSG options SYSVSEM options P1003_1B options _KPOSIX_PRIORITY_SCHEDULING options KBD_INSTALL_CDEV options TCP_DROP_SYNFIN device isa device pci device fdc0 at isa? port IO_FD1 irq 6 drq 2 device fd0 at fdc0 drive 0 device ata0 at isa? port IO_WD1 irq 14 device ata1 at isa? port IO_WD2 irq 15 device ata device atadisk device atapicd device atapifd options ATA_STATIC_ID device atkbdc0 at isa? port IO_KBD device atkbd0 at atkbdc? irq 1 flags 0x1 device vga0 at isa? options VESA pseudo-device splash device sc0 at isa? flags 0x100 device npx0 at nexus? port IO_NPX irq 13 device sio0 at isa? port IO_COM1 flags 0x10 irq 4 device sio1 at isa? port IO_COM2 irq 3 pseudo-device loop pseudo-device tun pseudo-device pty pseudo-device vn pseudo-device ether pseudo-device tap pseudo-device snp pseudo-device bpf device pcm0 options IPFILTER options IPFILTER_LOG options IPFILTER_DEFAULT_BLOCK options PPP_DEFLATE options PPP_BSDCOMP options RANDOM_IP_ID options UFS_DIRHASH My system is a Pentium 200Mhz MMX, 48M EDO RAM, 4G+2G+800M HDDs, Modem USR 56k v90/x2 ISA, No ethernet. The same configurations stopped to work after the cvsup. >How-To-Repeat: Use a kernel (and world) from Tue Dec 18 2001 or so, get your tun0 iface up with ppp(8) and try any app that use that iface. I was unable to try with other iface types though. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 18 20:10:18 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EBD0F37B41B for ; Tue, 18 Dec 2001 20:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJ4A2P44359; Tue, 18 Dec 2001 20:10:02 -0800 (PST) (envelope-from gnats) Date: Tue, 18 Dec 2001 20:10:02 -0800 (PST) Message-Id: <200112190410.fBJ4A2P44359@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Crist J. Clark" Subject: Re: gnu/32954: makewhatis doesn't remove entries for nonexistent manpages by default Reply-To: "Crist J. Clark" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR gnu/32954; it has been noted by GNATS. From: "Crist J. Clark" To: parv_@yahoo.com Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: gnu/32954: makewhatis doesn't remove entries for nonexistent manpages by default Date: Tue, 18 Dec 2001 13:34:20 -0800 On Mon, Dec 17, 2001 at 08:16:42PM -0500, parv_@yahoo.com wrote: > >Description: > > makewhatis doesn't remove entries for nonexistent manpages by > default. i issued this command... > > # cd /usr/local/man > # makewhatis /usr/local/man > > in its manpage, there is no mention of the default behaviour. -v > option would only "issue more warnings"; -a option would append to > the database w/o checking if old entries are valid. > > and that's what puzzles me. i didn't specify the -a option, yet > just that was happening. i had to delete the existing whatis > database so that changes in /usr/local/man would reflect. > > > >How-To-Repeat: > > - create whatis database in an appropriate directory, say, /usr/local/man. > - move the whatis db to other name. > - change /usr/local/man's contents by (re)moving man/cat file(s). > - recreate whatis db and comapare w/ the old version. I can't reproduce this, and I from checking the code I really can't see how this could happen. Are you sure that you are really removing the manpage(s) completely from /usr/local/man (i.e. if the page has multiple links, you'd need to get all of them)? -- "It's always funny until someone gets hurt. Then it's hilarious." Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 18 22:20:12 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EBEA037B416 for ; Tue, 18 Dec 2001 22:20:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJ6K0r65043; Tue, 18 Dec 2001 22:20:00 -0800 (PST) (envelope-from gnats) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by hub.freebsd.org (Postfix) with ESMTP id D522137B416 for ; Tue, 18 Dec 2001 22:12:29 -0800 (PST) Received: (from uucp@localhost) by sax.sax.de (8.9.3/8.9.3) with UUCP id HAA05072 for FreeBSD-gnats-submit@freebsd.org; Wed, 19 Dec 2001 07:12:28 +0100 (CET) Received: (from mw@localhost) by theatre.sax.de (8.11.6/8.11.6) id fBJ6Aq646088; Wed, 19 Dec 2001 07:10:52 +0100 (CET) (envelope-from mw) Message-Id: <200112190610.fBJ6Aq646088@theatre.sax.de> Date: Wed, 19 Dec 2001 07:10:52 +0100 (CET) From: Martin Welk Reply-To: Martin Welk To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: i386/33000: ISDN connections appear non-working with -STABLE > 20011215 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 33000 >Category: i386 >Synopsis: ISDN connections appear non-working with -STABLE > 20011215 >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 18 22:20:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Martin Welk >Release: FreeBSD 4.4-STABLE i386 >Organization: Private UUCP/Usenet site. >Environment: System: FreeBSD theatre.sax.de 4.4-STABLE FreeBSD 4.4-STABLE #1: Tue Dec 18 17:23:41 CET 2001 root@theatre.sax.de:/usr/src/sys/compile/THEATRE i386 Sources tagges with RELENG_4 cvs tag cvsup'ped on 2001-12-15 and 2001-12-18 Extract from /var/run/dmesg.boot: Preloaded elf kernel "kernel" at 0xc0428000. netsmb_dev: loaded K6-family MTRR support enabled (2 registers) Using $PIR table, 6 entries at 0xc00fdde0 (...) isic0 at port 0xd80-0xd9f,0x980-0x99f,0x180-0x19f,0x580-0x59f irq 5 flags 0x3 on isa0 isic0: passive stack unit 0 isic0: Teles S0/16.3 (...) i4bisppp: 4 ISDN SyncPPP device(s) attached (VJ header compression) DUMMYNET initialized (011031) IP packet filtering initialized, divert enabled, rule-based forwarding enabled, default to accept, logging limited to 100 packets/entry by default i4b: ISDN call control device attached i4btrc: 2 ISDN trace device(s) attached i4bctl: ISDN system control port attached i4brbch: 2 raw B channel access device(s) attached >Description: ISDN dial-up network connections seem to hang immediately after dial-up when connecting to a site that gives us a dynamic IP address. Enabling debug logging on the isp[n] interface shows: lcp open(initial) phase establish lcp up(starting) lcp output lcp parse opts: auth-proto magic lcp/0 x11 [rej] lcp/0x13 [rej] send conf-rej lcp output lcp input(req-sent): lcp input(ack-rcvd): lcp parse opts: auth-proto magic lcp parse opt values: auth-proto [mine proto/0x0 != his pap] magic 0x35192043 send conf-nak lcp output lcp input(ack-rcvd): lcp parse opts: auth-proto magic lcp parse opt values: auth-proto magic 0x35192043 send conf-ack lcp output lcp tlu phase authenticate chap input chap output chap success phase network Although IPv6 is disabled, netstat output looks screwed up like this, but ONLY WHEN A CONNECTION IS OPEN (as soon as connection is closed, it looks normal again). mw@theatre.sax.de:/home/mw 56 $ netstat -arn Routing tables Internet: Destination Gateway Flags Refs Use Netif Expire default 0:0:0:0:0:0 USc 4 18 isp3 0.0.0.1 213.6.75.194 UH 0 0 isp3 127.0.0.1 127.0.0.1 UH 1 1183 lo0 160.45.24.21 0:0:0:0:0:0 UHW 1 4 isp3 193.28.3 link#1 UC 4 0 fxp0 193.28.3.1 0:4:ac:e3:cc:1c UHLW 8 5365 lo0 193.28.3.2 link#1 UHLW 4 1727871 fxp0 193.28.3.5 link#1 UHLW 1 1229 fxp0 193.28.3.255 ff:ff:ff:ff:ff:ff UHLWb 1 182 fxp0 193.175.26.34 0:0:0:0:0:0 UHW3 0 16 isp3 >How-To-Repeat: Open any dial-up connection using isdn4bsd and the isp[n] devices to see the wierd netstat output. Open any dial-up connection with dynamic addressing shows that it doesn't work. Open a dial-up connection with a static IP address for my site shows that it's working. >Fix: None yet :-( >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 18 22:40: 5 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 16EA737B405 for ; Tue, 18 Dec 2001 22:40:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJ6e3A67584; Tue, 18 Dec 2001 22:40:03 -0800 (PST) (envelope-from gnats) Date: Tue, 18 Dec 2001 22:40:03 -0800 (PST) Message-Id: <200112190640.fBJ6e3A67584@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: parv Subject: Re: gnu/32954: makewhatis doesn't remove entries for nonexistent manpages by default Reply-To: parv Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR gnu/32954; it has been noted by GNATS. From: parv To: cjclark@alum.mit.edu Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: gnu/32954: makewhatis doesn't remove entries for nonexistent manpages by default Date: Wed, 19 Dec 2001 01:33:59 -0500 in message <20011218133420.B507@gohan.cjclark.org>, wrote Crist J. Clark thusly... > > On Mon, Dec 17, 2001 at 08:16:42PM -0500, parv_@yahoo.com wrote: > > >Description: > > > > makewhatis doesn't remove entries for nonexistent manpages by > > default. i issued this command... > > > > # cd /usr/local/man > > # makewhatis /usr/local/man > > > > in its manpage, there is no mention of the default behaviour. -v > > option would only "issue more warnings"; -a option would append to > > the database w/o checking if old entries are valid. ... > > I can't reproduce this, and I from checking the code I really can't > see how this could happen. Are you sure that you are really removing > the manpage(s) completely from /usr/local/man (i.e. if the page has > multiple links, you'd need to get all of them)? hi crist, you came late to the party. this pr had already been closed. it was my own damn fault to confuse apropos listing w/ makewhatis functioning. please see the closing remarks. http://www.freebsd.org/cgi/query-pr.cgi?pr=32954 - parv -- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 0:30:11 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8FD2F37B41E for ; Wed, 19 Dec 2001 00:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJ8U1b88117; Wed, 19 Dec 2001 00:30:01 -0800 (PST) (envelope-from gnats) Date: Wed, 19 Dec 2001 00:30:01 -0800 (PST) Message-Id: <200112190830.fBJ8U1b88117@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: KT Sin Subject: Re: kern/32973: psm missing when acpi is loaded Reply-To: KT Sin Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/32973; it has been noted by GNATS. From: KT Sin To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: kern/32973: psm missing when acpi is loaded Date: Wed, 19 Dec 2001 16:22:16 +0800 oooppss....sorry. Please ignore the earlier patch. All that is needed is adding a new pnp id into the psmcpnp_ids table. ============================ cut here ============================= *** sys/isa/psm.c.orig Sat Oct 13 18:28:02 2001 --- sys/isa/psm.c Wed Dec 19 08:46:37 2001 *************** *** 2877,2882 **** --- 2877,2883 ---- static struct isa_pnp_id psmcpnp_ids[] = { { 0x130fd041, "PS/2 mouse port" }, /* PNP0F13 */ + { 0x030fd041, "PS/2 mouse port" }, /* PNP0F03 */ { 0x1303d041, "PS/2 port" }, /* PNP0313, XXX */ { 0x80374d24, "IBM PS/2 mouse port" }, /* IBM3780, ThinkPad */ { 0x81374d24, "IBM PS/2 mouse port" }, /* IBM3781, ThinkPad */ ============================ cut here ============================= begin 644 psm-patch M*BHJ('-YR`P>#`S,&9D,#0Q+"`B4%,O,B!M M;W5S92!P;W)T(B!]+`D)+RH@4$Y0,$8P,R`J+PH@(`E[(#!X,3,P,V0P-#$L M(")04R\R('!O Thank you very much for your problem report. > It has the internal identification `kern/32973'. > The individual assigned to look at your > report is: freebsd-bugs. > > You can access the state of your problem report at any time > via this link: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=32973 > > >Category: kern > >Responsible: freebsd-bugs > >Synopsis: psm missing when acpi is loaded > >Arrival-Date: Tue Dec 18 06:50:00 PST 2001 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 0:50:10 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6F82237B41B; Wed, 19 Dec 2001 00:49:59 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJ8nsq90708; Wed, 19 Dec 2001 00:49:54 -0800 (PST) (envelope-from ru) Date: Wed, 19 Dec 2001 00:49:54 -0800 (PST) From: Message-Id: <200112190849.fBJ8nsq90708@freefall.freebsd.org> To: setantae@submonkey.net, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org, ru@FreeBSD.org Subject: Re: bin/32397: df -l doesn't work Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: df -l doesn't work State-Changed-From-To: open->closed State-Changed-By: ru State-Changed-When: Wed Dec 19 00:48:24 PST 2001 State-Changed-Why: Fixed in df.c, rev. 1.34 (5.0-CURRENT) and rev. 1.23.2.5 (4.4-STABLE). Responsible-Changed-From-To: freebsd-bugs->ru Responsible-Changed-By: ru Responsible-Changed-When: Wed Dec 19 00:48:24 PST 2001 Responsible-Changed-Why: http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32397 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 0:57:18 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 401AA37B41A; Wed, 19 Dec 2001 00:57:17 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJ8vCZ91850; Wed, 19 Dec 2001 00:57:12 -0800 (PST) (envelope-from ru) Date: Wed, 19 Dec 2001 00:57:12 -0800 (PST) From: Message-Id: <200112190857.fBJ8vCZ91850@freefall.freebsd.org> To: ru@FreeBSD.org, freebsd-bugs@FreeBSD.org, sobomax@FreeBSD.org Subject: Re: conf/32990: -stable pam.conf does not work for GDM Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: -stable pam.conf does not work for GDM Responsible-Changed-From-To: freebsd-bugs->sobomax Responsible-Changed-By: ru Responsible-Changed-When: Wed Dec 19 00:56:43 PST 2001 Responsible-Changed-Why: Maxim MFC'ed this stuff without MFC'ing the necessary PAM modules. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32990 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 1:13:55 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8E3C137B417; Wed, 19 Dec 2001 01:13:54 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJ9DpR97517; Wed, 19 Dec 2001 01:13:51 -0800 (PST) (envelope-from ru) Date: Wed, 19 Dec 2001 01:13:51 -0800 (PST) From: Message-Id: <200112190913.fBJ9DpR97517@freefall.freebsd.org> To: ru@FreeBSD.org, freebsd-bugs@FreeBSD.org, fenner@FreeBSD.org Subject: Re: kern/31954: rwhod does not see itself via xl0 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: rwhod does not see itself via xl0 Responsible-Changed-From-To: freebsd-bugs->fenner Responsible-Changed-By: ru Responsible-Changed-When: Wed Dec 19 01:11:38 PST 2001 Responsible-Changed-Why: Bill asked for a feedback, and originator says patch worked OK. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31954 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 5:29:52 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8B4CE37B417; Wed, 19 Dec 2001 05:29:50 -0800 (PST) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJDSju51972; Wed, 19 Dec 2001 05:28:45 -0800 (PST) (envelope-from sheldonh) Date: Wed, 19 Dec 2001 05:28:45 -0800 (PST) From: Message-Id: <200112191328.fBJDSju51972@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, sheldonh@FreeBSD.org Subject: Re: kern/32973: psm missing when acpi is loaded Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: psm missing when acpi is loaded Responsible-Changed-From-To: freebsd-bugs->sheldonh Responsible-Changed-By: sheldonh Responsible-Changed-When: Wed Dec 19 05:28:23 PST 2001 Responsible-Changed-Why: I'll take this one. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32973 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 5:50:15 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2643137B417 for ; Wed, 19 Dec 2001 05:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJDo2k62146; Wed, 19 Dec 2001 05:50:02 -0800 (PST) (envelope-from gnats) Date: Wed, 19 Dec 2001 05:50:02 -0800 (PST) Message-Id: <200112191350.fBJDo2k62146@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: bin/32953: log-in-vain level should be setable in rc.conf Reply-To: Peter Pentchev Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/32953; it has been noted by GNATS. From: Peter Pentchev To: Ruslan Ermilov Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: bin/32953: log-in-vain level should be setable in rc.conf Date: Wed, 19 Dec 2001 15:46:39 +0200 On Tue, Dec 18, 2001 at 05:00:03AM -0800, Ruslan Ermilov wrote: > On Mon, Dec 17, 2001 at 05:40:02PM -0800, Crist J . Clark wrote: > > The following reply was made to PR bin/32953; it has been noted by GNATS. > > On Mon, Dec 17, 2001 at 04:28:07PM -0800, David O'Brien wrote: > > > > > >Description: > > > We allow the turning off and on of log-in-vain in rc.conf as seen in > > > rc.network: > > > > > > network_pass4() { > > > echo -n 'Additional TCP options:' > > > case ${log_in_vain} in > > > > > > Therefor we should also allow the log-in-vain level to be set in > > > rc.conf also. > > [snip] > > > > We should. How about this simple change which is back compaitible, but > > does not add more rc.conf knobs: > > > > Index: rc.network > > =================================================================== > > RCS file: /export/ncvs/src/etc/rc.network,v > > retrieving revision 1.119 > > diff -u -r1.119 rc.network > > --- rc.network 13 Dec 2001 04:21:18 -0000 1.119 > > +++ rc.network 18 Dec 2001 01:26:07 -0000 > > @@ -848,9 +848,12 @@ > > [Nn][Oo] | '') > > ;; > > *) > > - echo -n ' log_in_vain=YES' > > - sysctl net.inet.tcp.log_in_vain=1 >/dev/null > > - sysctl net.inet.udp.log_in_vain=1 >/dev/null > > + if ! expr "${log_in_vain}" : '[0-9]*' >/dev/null 2>&1; then > > + log_in_vain=1 > > + fi > > + echo -n " log_in_vain=${log_in_vain}" > > + sysctl net.inet.tcp.log_in_vain="${log_in_vain}" >/dev/null > > + sysctl net.inet.udp.log_in_vain="${log_in_vain}" >/dev/null > > ;; > > esac > > > I think you should add a case for [Yy][Ee][Ss], and treat the fallback > case as a numeric value, without expr(1)-checking it. There's nothing > wrong here as the only documented values were YES and NO, and people > who had it set to the other value (e.g. "YUP") will now have to fix it > to the right value. :-) Why would they have to fix it? This patch treats all non-numeric values as a default log level of 1; a "YUP" would be treated just the same as a "YES". I personally would prefer the expr regexp to be '[0-9]*$', though, because '[0-9]*' also catches things like '3foo', which is, strictly speaking, incorrect, although sysctl(8) silently trims at the first non-numeric character. G'luck, Peter -- What would this sentence be like if it weren't self-referential? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 5:50:27 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EB67137B41B for ; Wed, 19 Dec 2001 05:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJDo2Z62194; Wed, 19 Dec 2001 05:50:02 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C917337B417 for ; Wed, 19 Dec 2001 05:49:45 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJDnjb62094; Wed, 19 Dec 2001 05:49:45 -0800 (PST) (envelope-from nobody) Message-Id: <200112191349.fBJDnjb62094@freefall.freebsd.org> Date: Wed, 19 Dec 2001 05:49:45 -0800 (PST) From: Thorsten Greiner To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/33004: Patch for USB (uhci) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 33004 >Category: kern >Synopsis: Patch for USB (uhci) >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 Dec 19 05:50:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: Thorsten Greiner >Release: 4.4-STABLE >Organization: >Environment: FreeBSD tybalt 4.4-STABLE FreeBSD 4.4-STABLE #51: Wed Dec 19 10:57:03 CET 2001 thorsten@tybalt:/usr/src/sys/compile/TYBALT i386 >Description: Out of the box 4.4-STABLE will not activate the uhci usb controller on my ASUS L7300 laptop. This usb host controller is recognized as follows: uhci0: port 0x1c00-0x1c1f at device 7.2 on pci0 pci_cfgintr_linked: linked (63) to hard-routed irq 11 pci_cfgintr: 0:7 INTD routed to irq 11 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 The symptoms of the problem are timeouts during bus exploration: Dec 18 10:34:38 tybalt /kernel: uhub0: device problem, disabling port 1 >How-To-Repeat: Probably difficult unless you have the same hardware... >Fix: Apply the following patch to /usr/src/sys/pci/uhci_pci.c: --- uhci_pci.c_orig Wed Dec 20 10:56:47 2001 +++ uhci_pci.c Wed Dec 19 10:56:50 2001 @@ -182,6 +182,7 @@ uhci_softc_t *sc = device_get_softc(self); int rid; int err; + u_int32_t csr; rid = PCI_UHCI_BASE_REG; sc->io_res = bus_alloc_resource(self, SYS_RES_IOPORT, &rid, @@ -275,6 +276,11 @@ uhci_pci_detach(self); return ENXIO; } + + /* Enable the device. */ + csr = pci_read_config(self, PCI_COMMAND_STATUS_REG, 4); + pci_write_config(self, PCI_COMMAND_STATUS_REG, + csr | PCIM_CMD_BUSMASTEREN, 4); /* Set the PIRQD enable bit and switch off all the others. We don't * want legacy support to interfere with us >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 6: 3: 5 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from ssemail001a.crayfish.net (ssemail001.crayfish.net [202.83.148.1]) by hub.freebsd.org (Postfix) with ESMTP id 2369A37B405; Wed, 19 Dec 2001 06:01:19 -0800 (PST) Received: from yosy (M061055.ppp.dion.ne.jp [61.117.61.55]) by ssemail001a.crayfish.net (8.9.3/3.7W Crayfish POPbeforeSMTP'd) with SMTP id WAA05664; Wed, 19 Dec 2001 22:37:23 +0900 (JST) Message-ID: <002701c18896$99ce7180$62dbfea9@yosy> From: "=?iso-2022-jp?B?GyRCI0UhdSNDIV0jVRsoQg==?=" To: Subject: =?iso-2022-jp?B?GyRCJWEhPCVrJV4lLCU4JXM5WEZJJE4kKjRqJCQbKEI=?= Date: Wed, 19 Dec 2001 23:05:58 +0900 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0023_01C188E1.BBDC9860" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_0023_01C188E1.BBDC9860 Content-Type: text/plain; charset="iso-2022-jp" Content-Transfer-Encoding: 7bit $BFMA3$N%a!<%k$r:9$7>e$2$?$3$H!"$4MF&IJ$r$40FFb$7$^$9%a!<%k%^%,%8%s$rH/4)CW$7$F$*$j$^$9!#(B $B>&IJ>pJs$K6=L#$r$*;}$A$G$7$?$i!"@'Hs9XFI!JL5NA!K$r$*4j$$CW$7$^$9!#(B $BITI,MW$G$7$?$i!"$*!l9g$b$"$j$^$9!#(B $B>&IJ%8%c%s%k$O!"7r9/!&H~MF$,Cf?4$G$9$,!"B>$N%8%c%s%k$N>&IJ$b>R2p(B $B$7$F$$$^$9!#(B $B0J2<$O!"%a!<%k%^%,%8%s$N:G?7HG$G$9!#(B $B!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!!>&IJ>R2p!!!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a(B $B!Z7r9/![!!7r9/$rB%?J$9$k%U%!%C%7%g%s<'5$%0%C%:!!#M#O#M#A(B $B!!!!8*$3$j2r>C!!!&!!9xDK2r>C!!!&!!7l9TB%?J!!!&!!BND40];}(B $B!!!!!|%V%l%9%l%C%H!!!|%M%C%/%l%9!!!|%Y%k%H!!!|%$%s%=!<%k(B $B!!!!(Bhttp://www.ec-inter.com/moma/ $B!!!!!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!](B $B!Z%@%$%(%C%H![!!%5%W%j%a%s%H(B $B#B#O#W#S(B $B!!!!!X?)$Y$F$b?)$Y$F$bB@$i$J$$!Y!&!&!&13$G$7$g$&!)(B $B!!!!!X$$$$$(!"K\Ev$G$9!*!Y!&!&!&?);v$N8e!"OCBj$N(B(($B#B#O#W#S(B))$B$r#1B^0{$`$@(B $B!!!!$1!#"*"*"*!!!cHnK~!d$NMWAG$H$J$k@.J,$N#8#0!s$rD6HyN3;R$K$7$F%i%C%T%s(B $B!!!!%0$7$FBN30$KGS=P$7$F$7$^$&!"@$3&=i$N(B(($B%+%m%j!uBV$K$J$j$^$9$N$G!"$4CmJ8$O$*Aa$a$K!!!z!z(B $B!!!!(Bhttp://www.ec-inter.com/mk/gds/cap-001.html $B!!!!!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!](B $B!Z%@%$%(%C%H![!!%O%j%&%C%I!&%;%l%V%l%$%H!&%@%$%(%C%H(B $B!!!!!V=5Kv$N(B2$BF|4V$G(B3$B!A(B5$B%-%mAi$;$k!*!W$H%O%j%&%C%I$GOCBj$N!"(B100$B!s%J%A%e%i(B $B!!!!%k!&%@%$%(%C%H!&%8%e!<%9L#$b$$$$!*E7A3@.J,!*BNFb>t2=$7!"$=$7$F8:NL!*(B $B!!!!$3$N#2F|4V$NFCJL%8%e!<%9%@%$%(%C%H$,Hh$l$?FbB!$dBN$NFGAG$rGS=P$7$J$,(B $B!!!!$i(B($BBNFb>t2=(B)$B%(%M%k%.!<$r9b$a!";iKCG3>FB%?J$r%5%]!<%H$7$^$9!#(B $B!!!!(Bhttp://www.ec-inter.com/mk/gds/can-001.html $B!!!!!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!](B $B!Z@83h![!!6LMh$N%"%,%j%/%9>&IJ$KHf$YHtLvE*$KA}(B $B!!!!2C$$$?$7$^$7$?!#(B $B!!!!(Bhttp://www.ec-inter.com/mk/gds/cac-001.html $B!!!!!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!](B $B!Z?)IJ![!!L>8E20%3!<%A%sCO7\$b$bFy(B500g$BF~(B $B!!!!D94|;t0i$G5f6K$NL#!*!!L>8E20%3!<%A%sCO7\Fy9q;:=c7OoN&IwEZ5-(B $B!!!!$D$/$PK|Gn0JMhFsEY$KEO$jE7Mw$NIJ$H$7$FA*$P$l$?0q>kLC2[$N>oN&IwEZ5-!#KL3$(B $B!!!!F;;:$N6K>eBgG<8@$K=@$i$+$J$*L_$rF~$l$?@82[;R%?%$%W$N$_$:$_$:$7$$OB2[;R$G(B $B!!!!$9!#(B $B!!!!(Bhttp://www.ec-inter.com/mk/gds/cah-001.html $B!!!!!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!](B $B!Z7r9/![!!#A#S#C#A%W%m%]%j%9(B $B!!!!OCBj$N7r9/Jd=u?)IJ%W%m%]%j%9$O%V%i%8%k;:$r$*A&$a$7$^$9!#9bG;EY#4#8!s$GE7(B $B!!!!A3@.J,#1#0#0!s$N(BASCA$BM"F~$7$FBgJQ$*Gc$$F@$J2A3J$G$40FFb(B $B!!!!$$$?$7$^$9!#(B $B!!!!(Bhttp://www.ec-inter.com/mk/gds/cad-001.html $B!!!!!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!](B $B!ZH~MF![!!%+%W%;%kH~MF1U%^%O%m#P#E!]-6(B $B!!!!%^%O%m#P#E!]-6$O:G?7$NH~MFM}O@$K$h$C$FA*$P$l$?#7h8z2L$K$h$j=w@-$,5a$a$kA4$F$NH~MF8z2L$KBP1~$9$k%9!<%Q!<%(%C%;(B $B!!!!%s%9$G$9!#FC$KCf9bG/=w@-:GBg$NG:$_!HCP$_8=>]!I$r2r7h$9$k@Z$j;%$H$7$FCmL\(B $B!!!!$5$l$F$$$^$9!#%+%W%;%kF~$j$G$9$+$i9g@.J]B8NAEy40A4L5E:2C$b4r$7$$$G$9$M!#(B $B!!!!(Bhttp://www.ec-inter.com/mk/gds/cag-001.html $B!!!!!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!](B $B!Z#P#C![!!(BDynaBook Satellite 6000 SA113P/5$B!J%Y!<%9%b%G%k(BXP$B!K(B $B!!!!(BWinXP$BEk:\$N%N!<%H(BPC$B!J4k6H8~$1!K$,H/Gd$5$l$^$7$?!#(B $B!!!!4k6H8~$1$G$9$N$G!"NLHNE9Ey$G$OHNGd$5$l$F$$$^$;$s!#(B $B!!!!$b$A$m$s8D?M$G$N9XF~$b2DG=$G$9!#(B $B!!!!(Bhttp://www.ec-inter.com/mk/gds/caf-001.html $B!!!!!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!](B $B!Z%@%$%(%C%H![!!%/%$!<%s%-%c%s%Y%k%F%#!<(B $B!!!!"#7n4V(B20000$B8DHNGdW7b$N%9!<%Q!<%@%$%(%C%H%F%#!<$G$9!#?M5$$NHkL)$O(B $B!!!!B>$G$O!"%^%M$N=PMh$J$$G[9g$H0{$_0W$5!yC;4|4V%@%$%(%C%H7W2hCf$NJ}!y$=$N(B $B!!!!B(8z@-$rQIJ!#%"%H%T!!#B~:#!"$*;n$7%;%C%HFCJL2A3Jl(B $B!!!!FnJF%"%s%G%986;:HkAp!H%^%+!I!#@.J,$O6C0[E*$G!"CK@-$K$OE7A3$N%P%$%"%0%i$H(B $B!!!!8@$o$l!"@8?#NO8~>e$KMj$b$7$$F/$-$r$7!"%Q%o!<%"%C%WH472!*%^%+$rI!&@8M}IT=g!&99(B $B!!!!G/4|>c32!&Nd$(@-!&ITG%>IB>!K$K8z2LH/4x!*IWIX1_K~$NHkAp$H$7$F9%I>!#I{:nMQ(B $B!!!!0l@Z$J$7!*(B $B!!!!(Bhttp://www.ec-inter.com/mk/gds/cal-001.html $B!!!!!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!](B $B!Z7r9/![!!%9!<%Q!<%k%Y%k%9#5#6#0(B $B!!!!2q0wFCJL2A3J$GHNGdCf!*AwNA$bL5NA!*#T#V!";(;o$J$I$GOCBj$N%_%_%:9ZAG!*(B $B!!!!7*K\?50lO:Cx!VG>9<:I!&E|G"IB$r5_$&!W%W%l%<%s%H!*$b$"$j!#!!!!@83h=,47IBM=(B $B!!!!KI$K!*!*(B $B!!!!(Bhttp://www.ec-inter.com/mk/gds/caa-001.html $B!!!!!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!](B $B!ZH~MF![!!%"%H%T!<$dH)9S$l$G$*G:$_$N$"$J$?$X:G?7$N4AJ}%/%j!<%`$N$4>R2p(B $B!!!!%"%H%T!?>$J$I$,860x$GM+]5$JKhF|$r2a$4$5$l$F$O$*$j$^$;$s$+!)(B $B!!!!<+A3$JAGH)$KLa$90Y$KD9G/$N8&5f$r=E$M3+H/$5$l$?:#$^$G$KL5$$%/%j!<%`$G(B $B!!!!$9!#!!%"%H%T!<$NJ}$,$4;HMQ$5$l$k0J30$K!"2=>Q8e$N%1%"!"@v$$J*$N0Y$NtCc!*!!0{$`$@$1$GHnK~$HJXHk$r2r>C$G$-(B $B!!!!$^$9!*!!86NA$OE7A3%O!<%V#1#0#0!s$J$N$G6K$a$F0BA4$G$9!#(B $B!!!!(Bhttp://www.ec-inter.com/mk/gds/ca6-001.html $B!!!!!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!](B $B!Z7r9/![!!%U%k!<%D%O!<%V!V%N%K%8%e!<%9!W(B $B!!!!%]%j%M%7%"%s$+$i$NB#$jJ*!*!!%F%l%S!V@$3&$U$7$.H/8+!W$G>R2p$5$l$?1IM\(B $B!!!!AG$,#1#4#0e$b4^$^$l$F$$$kH~$H7r9/$NK|G=Lt!!(B $B!!!!(Bhttp://www.ec-inter.com/mk/gds/ca1-001.html $B!a!a!a!a!a!a!a!a!a!a!a!a!a!!EPO?!!!&!!2r=|!!!a!a!a!a!a!a!a!a!a!a!a!a!a!a(B $B!!(B $B!!(B $B!!(B http://www.ec-inter.com/mk/uef.html $B!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a(B $B!!!!!!!!!!!!!!!!!!!!!!!!#A#1#S#h#o#p(B $B!!!!!!!!!!!!!!!!!!!!!!!!El5~ET?7=I6h9bEDGO>l#4!]#1!]#4(B $B!!!!!!!!!!!!!!!!!!!!!!!!(Buser@ec-inter.com ------=_NextPart_000_0023_01C188E1.BBDC9860 Content-Type: text/html; charset="iso-2022-jp" Content-Transfer-Encoding: quoted-printable
    =1B$BFMA3$N%a!<%k$r:9$7>e$2$?$3$H!"$4MF=1B$BM-1= W$J>&IJ$r$40FFb$7$^$9%a!<%k%^%,%8%s$rH/4)CW$7$F$*$j$^$9!#=1B(B
    =1B$B>&= IJ>pJs$K6=3DL#$r$*;}$A$G$7$?$i!"@'Hs9XFI!JL5NA!K$r$*4j$$CW$7$^$9!#=1B(B=1B$BITI,MW$G$7$?$i!"$*=1B$B>!
     
    =1B$B9XFIEPO?!!!!!!=1B(Bhttp://www.ec-inter.com/mk/u= ef.html
     
    =1B$B%^%,%8%sG[?.$O!"=3D5#12s$G$9!#!!NW;~$KH/4)$9$k>l9g$b$"$j$^$9!#=1B= (B
    =1B$B>&IJ%8%c%s%k$O!"7r9/!&H~MF$,Cf?4$G$9$,!"B>$N%8%c%s%k$N>&IJ$b>R= 2p=1B(B
    =1B$B$7$F$$$^$9!#=1B(B
     
    =1B$B0J2<$O!"%a!<%k%^%,%8%s$N:G?7HG$G$9!#=1B(B
     

    =1B$B!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!!>&IJ>R2p!!!a!a!a!a!a!a!a!a!= a!a!a!a!a!a!a=1B(B
     

    =1B$B!Z7r9/![!!7r9/$rB%?J$9$k%U%!%C%7%g%s<'5$%0%C%:!!#M#O#M#A=1B= (B
     
    =1B$B!!!!8*$3$j2r>C!!!&!!9xDK2r>C!!!&!!7l9TB%?J!!!&!!BND40];}=1B(B=1B$B!!!!!|%V%l%9%l%C%H!!!|%M%C%/%l%9!!!|%Y%k%H!!!|%$%s%=3D!<%k=1B(B
     
    =1B$B!!!!=1B(Bhttp://www.ec-inter.com/moma/<= /DIV>
     
    =1B$B!!!!!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!= ]!]!]!]!]=1B(B
     
    =1B$B!Z%@%$%(%C%H![!!%5%W%j%a%s%H=1B(B =1B$B#B#O#W#S=1B(B
     
    =1B$B!!!!!X?)$Y$F$b?)$Y$F$bB@$i$J$$!Y!&!&!&13$G$7$g$&!)=1B(B
    =1B$= B!!!!!X$$$$$(!"K\Ev$G$9!*!Y!&!&!&?);v$N8e!"OCBj$N=1B(B((=1B$B#B#O#W#S=1B(= B))=1B$B$r#1B^0{$`$@=1B(B
    =1B$B!!!!$1!#"*"*"*!!!cHnK~!d$NMWAG$H$J$k@.J= ,$N#8#0!s$rD6HyN3;R$K$7$F%i%C%T%s=1B(B
    =1B$B!!!!%0$7$FBN30$KGS=3DP$7$F= $7$^$&!"@$3&=3Di$N=1B(B((=1B$B%+%m%j!=1B$= B!!!!%H!?#B#O#W#S=1B(B))=1B$B$,F|K\Cf$GBg%R%C%HCf!*!&!&!&AG:`$,E7A3@.J,$@= $+$i0B?4!*=1B(B
    =1B$B!!!!!!!z!z!!G/KvG/;O$OIJGv>uBV$K$J$j$^$9$N$G!"$4C= mJ8$O$*Aa$a$K!!!z!z=1B(B
     
    =1B$B!!!!=1B(Bhttp://www.ec-inter.= com/mk/gds/cap-001.html
     
    =1B$B!!!!!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!= ]!]!]!]!]=1B(B
     
    =1B$B!Z%@%$%(%C%H![!!%O%j%&%C%I!&%;%l%V%l%$%H!&%@%$%(%C%H=1B(B
    =
     
    =1B$B!!!!!V=3D5Kv$N=1B(B2=1B$BF|4V$G=1B(B3=1B$B!A=1B(B5=1B$B%-%mAi$;= $k!*!W$H%O%j%&%C%I$GOCBj$N!"=1B(B100=1B$B!s%J%A%e%i=1B(B
    =1B$B!!!!%k!&= %@%$%(%C%H!&%8%e!<%9L#$b$$$$!*E7A3@.J,!*BNFb>t2=3D$7!"$=3D$7$F8:NL!*=1B(B=
    =1B$B!!!!$3$N#2F|4V$NFCJL%8%e!<%9%@%$%(%C%H$,Hh$l$?FbB!$dBN$NFGAG$rGS= =3DP$7$J$,=1B(B
    =1B$B!!!!$i=1B(B(=1B$BBNFb>t2=3D=1B(B)=1B$B%(%M%k%.!<$= r9b$a!";iKCG3>FB%?J$r%5%]!<%H$7$^$9!#=1B(B
     
    =1B$B!!!!=1B(Bhttp://www.ec-inter.= com/mk/gds/can-001.html
     
    =1B$B!!!!!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!= ]!]!]!]!]=1B(B
     
    =1B$B!Z@83h![!!6L
     
    =1B$B!!!!6L=1B$B!!!!%5%s%W%kL5NAAwIU
     
    =1B$B!!!!=1B(Bhttp://www.ec-inter.= com/mk/gds/cam-001.html
     
    =1B$B!!!!!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!= ]!]!]!]!]=1B(B
     
    =1B$B!Z7r9/![!!9ZAG=3DhM}%"%,%j%/%96];eBN=1B(B-Z
     
    =1B$B!!!!9ZAG=3DhM}%"%,%j%/%96];eBN!]#Z!?#A#B#P#C=1B(B(Agaricus = Blazei=20 acticalCompound/
    =1B$B!!!!=1B(BABPC)=1B$B$OFH<+$NFC5v=3DP4j@=3DB$5;=3D= Q$K$h$j!"%"%,%j%/%9$N6];eBNItJ,$+$iM-8z@.J,=1B(B
    =1B$B!!!!$r9bG;EY$GCj= =3DP$9$k$3$H$K@.8y$$$?$7$^$7$?!#99$K9ZAG=3DhM}$9$k$3$H$K$h$j?MBN=1B(B
    = =1B$B!!!!$K5[<}2DG=3D$J?eMO@-$N&B=1B(B-=1B$B%0%k%+%sNL$,=3D>Mh$N%"%,%j%/%= 9>&IJ$KHf$YHtLvE*$KA}=1B(B
    =1B$B!!!!2C$$$?$7$^$7$?!#=1B(B
     
    =1B$B!!!!=1B(Bhttp://www.ec-inter.= com/mk/gds/cac-001.html
     
    =1B$B!!!!!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!= ]!]!]!]!]=1B(B
     
    =1B$B!Z?)IJ![!!L>8E20%3!<%A%sCO7\$b$bFy=1B(B500g=1B$BF~=1B(B
     
    =1B$B!!!!D94|;t0i$G5f6K$NL#!*!!L>8E20%3!<%A%sCO7\Fy9q;:=3Dc7O=1B$B!!!!$K$F!V0BA4!'0B?4!W@N$J$D$+$7$$CO7\K\Mh$N= L#$G$9!#=1B(B
     
    =1B$B!!!!=1B(Bhttp://www.ec-inter.= com/mk/gds/cae-001.html
     
    =1B$B!!!!!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!= ]!]!]!]!]=1B(B
     
    =1B$B!Z7r9/![!!%-%c%Y%DH/9Z%(%-%9!&%^%$%?%1#D!]%U%i%/%7%g%s4^M-!*CmL= \$NJ#9g7r9/?)IJ!&=1B(B
    =1B$B!!!!!!!!!!%(%N%C%/#D!*=1B(B
     
    =1B$B!!!!%(%N%C%/#D$O:#!":G$bCmL\$5$l$F$$$kJ#9g7r9/?)IJ$G$9!#=1B(B=1B$B!!!!%^%$%?%1#D!]%U%i%/%7%g%s!"%-%c%Y%DH/9Z%(%-%9!"%"%,%m%*%j%4E|!"= %S%?%_%s#C=1B(B
    =1B$B!!!!$J$I!"M-8z@.J,$r%P%i%s%9$h$/G[9g$7$??)IJ$G$9!= #=1B$B!!!!3h@-;@AG$r=1B$B!!!!$IB?5!G=3D= $rM-$7$F$^$9!#=1B(B
     
    =1B$B!!!!=1B(Bhttp://www.ec-inter.= com/mk/gds/cab-001.html
     
    =1B$B!!!!!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!= ]!]!]!]!]=1B(B
     
    =1B$B!Z2[;R![!!E7MwIJ$N>oN&IwEZ5-=1B(B
     
    =1B$B!!!!$D$/$PK|Gn0JMhFsEY$KEO$jE7Mw$NIJ$H$7$FA*$P$l$?0q>kLC2[$N>oN= &IwEZ5-!#KL3$=1B(B
    =1B$B!!!!F;;:$N6K>eBgG<8@$K=3D@$i$+$J$*L_$rF~$l$?@8= 2[;R%?%$%W$N$_$:$_$:$7$$OB2[;R$G=1B(B
    =1B$B!!!!$9!#=1B(B
     
    =1B$B!!!!=1B(Bhttp://www.ec-inter.= com/mk/gds/cah-001.html
     
    =1B$B!!!!!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!= ]!]!]!]!]=1B(B
     
    =1B$B!Z7r9/![!!#A#S#C#A%W%m%]%j%9=1B(B
     
    =1B$B!!!!OCBj$N7r9/Jd=3Du?)IJ%W%m%]%j%9$O%V%i%8%k;:$r$*A&$a$7$^$9!#9= bG;EY#4#8!s$GE7=1B(B
    =1B$B!!!!A3@.J,#1#0#0!s$N=1B(BASCA=1B$BM"F~$7$FBgJQ$*Gc$$F@$J2A3J$G$40FFb=1B(B
    =1B$B!!!!$$$?$7$^$9!#=1B= (B
     
    =1B$B!!!!=1B(Bhttp://www.ec-inter.= com/mk/gds/cad-001.html
     
    =1B$B!!!!!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!= ]!]!]!]!]=1B(B
     
    =1B$B!ZH~MF![!!%+%W%;%kH~MF1U%^%O%m#P#E!]-6=1B(B
     
    =1B$B!!!!%^%O%m#P#E!]-6$O:G?7$NH~MFM}O@$K$h$C$FA*$P$l$?#7=1B$B!!!!%;%s%9$NAj>h8z2L$K$h$j=3Dw@-$,5a$a$kA4$F$N= H~MF8z2L$KBP1~$9$k%9!<%Q!<%(%C%;=1B(B
    =1B$B!!!!%s%9$G$9!#FC$KCf9bG/=3D= w@-:GBg$NG:$_!HCP$_8=3D>]!I$r2r7h$9$k@Z$j;%$H$7$FCmL\=1B(B
    =1B$B!!!!$5= $l$F$$$^$9!#%+%W%;%kF~$j$G$9$+$i9g@.J]B8NAEy40A4L5E:2C$b4r$7$$$G$9$M!#=1B= (B
     
    =1B$B!!!!=1B(Bhttp://www.ec-inter.= com/mk/gds/cag-001.html
     
    =1B$B!!!!!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!= ]!]!]!]!]=1B(B
     
    =1B$B!Z#P#C![!!=1B(BDynaBook Satellite 6000 = SA113P/5=1B$B!J%Y!<%9%b%G%k=1B(BXP=1B$B!K=1B(B
     
    =1B$B!!!!=1B(BWinXP=1B$BEk:\$N%N!<%H=1B(BPC=1B$B!J4k6H8~$1!K$,H/Gd$5= $l$^$7$?!#=1B(B
    =1B$B!!!!4k6H8~$1$G$9$N$G!"NLHNE9Ey$G$OHNGd$5$l$F$$$^$= ;$s!#=1B(B
    =1B$B!!!!$b$A$m$s8D?M$G$N9XF~$b2DG=3D$G$9!#=1B(B
     
    =1B$B!!!!=1B(Bhttp://www.ec-inter.= com/mk/gds/caf-001.html
     
    =1B$B!!!!!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!= ]!]!]!]!]=1B(B
     
    =1B$B!Z%@%$%(%C%H![!!%/%$!<%s%-%c%s%Y%k%F%#!<=1B(B
     
    =1B$B!!!!"#7n4V=1B(B20000=1B$B8DHNGdW7b$N%9!<%Q!<%@%$%(%C%H%F= %#!<$G$9!#?M5$$NHkL)$O=1B(B
    =1B$B!!!!B>$G$O!"%^%M$N=3DPMh$J$$G[9g$H0{$= _0W$5!yC;4|4V%@%$%(%C%H7W2hCf$NJ}!y$=3D$N=1B(B
    =1B$B!!!!B(8z@-$r=1B$B!!!!$l$PJVIJ2DG=3D"#=1B(B
     
    =1B$B!!!!=1B(Bhttp://www.ec-inter.= com/mk/gds/cai-001.html
     
    =1B$B!!!!!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!= ]!]!]!]!]=1B(B
     
    =1B$B!Z7r9/![!!7r9/?)IJ!J%$%A%g%&MU%(%-%9!KAjGOH/855$$A$+$i!&6d0I#4#= 0=1B(B
     
    =1B$B!!!!F|K\%$%A%g%&%U%!!<%`$O@$3&$,CmL\$9$k7r9/?)IJ!J%$%A%g%&MU%(%= -%9!K$N86NA@8=1B(B
    =1B$B!!!!;:$+$i>&IJ@=3DB$!&HNGd$^$G0l4S$7$F9T$J$C$F= $$$k2q=1B$B!!!!$?$$J}$O$*;n$7$/$@$5$$!= #=1B(B
     
    =1B$B!!!!=1B(Bhttp://www.ec-inter.= com/mk/gds/ca7-001.html
     
    =1B$B!!!!!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!= ]!]!]!]!]=1B(B
     
    =1B$B!ZH~MF![!!#S#I#L#K4pAC2=3D>QIJ=1B(B
     
    =1B$B!!!!!X;W$$$d$j%1%"$GAGH)?<8F5[!Y$"$N%7%k%/$N2?$H$b8@$($J$$H)$6$= o$j$r@8$+$7$?=1B(B
    =1B$B!!!!4pAC2=3D>QIJ!#%"%H%T!=1B$B!!!!$O$*;n$7%;%C%H$+$i$I$= &$>!#B~:#!"$*;n$7%;%C%HFCJL2A3J
     
    =1B$B!!!!=1B(Bhttp://www.ec-inter.= com/mk/gds/cak-001.html
     
    =1B$B!!!!!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!= ]!]!]!]!]=1B(B
     
    =1B$B!Z@83h![!!E7A3$N%P%$%"%0%i!!!H%^%+%Q%o!l=1B(B
     
    =1B$B!!!!FnJF%"%s%G%986;:HkAp!H%^%+!I!#@.J,$O6C0[E*$G!"CK@-$K$OE7A3$= N%P%$%"%0%i$H=1B(B
    =1B$B!!!!8@$o$l!"@8?#NO8~>e$KMj$b$7$$F/$-$r$7!"%Q%o= !<%"%C%WH472!*%^%+$r=1B$B!!!!CKC#$,B3=3DP!*=3Dw@-$K$O?= M$K8@$($J$$FCM-$N%*%s%J$NG:$_!JIT46>I!&@8M}IT=3Dg!&99=1B(B
    =1B$B!!!!G/= 4|>c32!&Nd$(@-!&ITG%>IB>!K$K8z2LH/4x!*IWIX1_K~$NHkAp$H$7$F9%I>!#I{:nMQ=1B= (B
    =1B$B!!!!0l@Z$J$7!*=1B(B
     
    =1B$B!!!!=1B(Bhttp://www.ec-inter.= com/mk/gds/cal-001.html
     
    =1B$B!!!!!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!= ]!]!]!]!]=1B(B
     
    =1B$B!Z7r9/![!!%9!<%Q!<%k%Y%k%9#5#6#0=1B(B
     
    =1B$B!!!!2q0wFCJL2A3J$GHNGdCf!*AwNA$bL5NA!*#T#V!";(;o$J$I$GOCBj$N%_%= _%:9ZAG!*=1B(B
    =1B$B!!!!7*K\?50lO:Cx!VG>9<:I!&E|G"IB$r5_$&!W%W%l%<%s%H= !*$b$"$j!#!!!!@83h=3D,47IBM=3D=1B(B
    =1B$B!!!!KI$K!*!*=1B(B
     
    =1B$B!!!!=1B(Bhttp://www.ec-inter.= com/mk/gds/caa-001.html
     
    =1B$B!!!!!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!= ]!]!]!]!]=1B(B
     
    =1B$B!ZH~MF![!!%"%H%T!<$dH)9S$l$G$*G:$_$N$"$J$?$X:G?7$N4AJ}%/%j!<%`$= N$4>R2p=1B(B
     
    =1B$B!!!!%"%H%T!?>$J$I$,860x$GM+]5$JKhF|$r2a$4$5$l$F$O$*$j$^$;$= s$+!)=1B(B
    =1B$B!!!!<+A3$JAGH)$KLa$90Y$KD9G/$N8&5f$r=3DE$M3+H/$5$l$?:#= $^$G$KL5$$%/%j!<%`$G=1B(B
    =1B$B!!!!$9!#!!%"%H%T!<$NJ}$,$4;HMQ$5$l$k0J3= 0$K!"2=3D>Q8e$N%1%"!"@v$$J*$N0Y$N=1B$B!!!!9S$l!"$K$-$S$J$I?'!9= $JLL$G$4MxMQ$7$FD:$1$k;I7cJ*$N4^$^$l$J$$H)$K$d$5=1B(B
    =1B$B!!!!$7$$%/%= j!<%`$G$9!#=1B(B
     
    =1B$B!!!!=1B(Bhttp://www.ec-inter.= com/mk/gds/ca5-001.html
     
    =1B$B!!!!!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!= ]!]!]!]!]=1B(B
     
    =1B$B!Z%@%$%(%C%H![!!6/NO%@%$%(%C%H%F%#!
     
    =1B$B!!!!#1#0#0!sE7A3%O!<%V;HMQ$ND2Fb@v>tCc!*!!0{$`$@$1$GHnK~$HJXHk$= r2r>C$G$-=1B(B
    =1B$B!!!!$^$9!*!!86NA$OE7A3%O!<%V#1#0#0!s$J$N$G6K$a$F0B= A4$G$9!#=1B(B
     
    =1B$B!!!!=1B(Bhttp://www.ec-inter.= com/mk/gds/ca6-001.html
     
    =1B$B!!!!!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!= ]!]!]!]!]=1B(B
     
    =1B$B!Z7r9/![!!%U%k!<%D%O!<%V!V%N%K%8%e!<%9!W=1B(B
     
    =1B$B!!!!%]%j%M%7%"%s$+$i$NB#$jJ*!*!!%F%l%S!V@$3&$U$7$.H/8+!W$G>R2p$= 5$l$?1IM\=1B(B
    =1B$B!!!!AG$,#1#4#0e$b4^$^$l$F$$$kH~$H7r9/$NK|G=3D= Lt!!=1B(B
     
    =1B$B!!!!=1B(Bhttp://www.ec-inter.= com/mk/gds/ca1-001.html
     

    =1B$B!a!a!a!a!a!a!a!a!a!a!a!a!a!!EPO?!!!&!!2r=3D|!!!a!a!a!a!a!a!= a!a!a!a!a!a!a!a=1B(B
     
               &n= bsp; =1B$B!!=1B(B=20 =1B$B!!=1B(B   =1B$B!!=1B(B http://www.ec-inter.com/mk/u= ef.html
     
    =1B$B!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!= a!a!a!a!a=1B(B
     
    =1B$B!!!!!!!!!!!!!!!!!!!!!!!!#A#1#S#h#o#p=1B(B
    =1B$B!!!!!!!!!!!!!= !!!!!!!!!!!El5~ET?7=3DI6h9bEDGO>l#4!]#1!]#4=1B(B
    =1B$B!!!!!!!!!!!!!!!!= !!!!!!!!=1B(Buser@ec-inter.com
     
     
    ------=_NextPart_000_0023_01C188E1.BBDC9860-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 6:30:16 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0EB1B37B416 for ; Wed, 19 Dec 2001 06:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJEU1J73073; Wed, 19 Dec 2001 06:30:01 -0800 (PST) (envelope-from gnats) Date: Wed, 19 Dec 2001 06:30:01 -0800 (PST) Message-Id: <200112191430.fBJEU1J73073@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ruslan Ermilov Subject: Re: bin/32953: log-in-vain level should be setable in rc.conf Reply-To: Ruslan Ermilov Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/32953; it has been noted by GNATS. From: Ruslan Ermilov To: Peter Pentchev Cc: bug-followup@FreeBSD.org Subject: Re: bin/32953: log-in-vain level should be setable in rc.conf Date: Wed, 19 Dec 2001 16:22:07 +0200 On Wed, Dec 19, 2001 at 03:46:39PM +0200, Peter Pentchev wrote: > On Tue, Dec 18, 2001 at 05:00:03AM -0800, Ruslan Ermilov wrote: > > On Mon, Dec 17, 2001 at 05:40:02PM -0800, Crist J . Clark wrote: > > > The following reply was made to PR bin/32953; it has been noted by GNATS. > > > On Mon, Dec 17, 2001 at 04:28:07PM -0800, David O'Brien wrote: > > > > > > > >Description: > > > > We allow the turning off and on of log-in-vain in rc.conf as seen in > > > > rc.network: > > > > > > > > network_pass4() { > > > > echo -n 'Additional TCP options:' > > > > case ${log_in_vain} in > > > > > > > > Therefor we should also allow the log-in-vain level to be set in > > > > rc.conf also. > > > [snip] > > > > > > We should. How about this simple change which is back compaitible, but > > > does not add more rc.conf knobs: > > > > > > Index: rc.network > > > =================================================================== > > > RCS file: /export/ncvs/src/etc/rc.network,v > > > retrieving revision 1.119 > > > diff -u -r1.119 rc.network > > > --- rc.network 13 Dec 2001 04:21:18 -0000 1.119 > > > +++ rc.network 18 Dec 2001 01:26:07 -0000 > > > @@ -848,9 +848,12 @@ > > > [Nn][Oo] | '') > > > ;; > > > *) > > > - echo -n ' log_in_vain=YES' > > > - sysctl net.inet.tcp.log_in_vain=1 >/dev/null > > > - sysctl net.inet.udp.log_in_vain=1 >/dev/null > > > + if ! expr "${log_in_vain}" : '[0-9]*' >/dev/null 2>&1; then > > > + log_in_vain=1 > > > + fi > > > + echo -n " log_in_vain=${log_in_vain}" > > > + sysctl net.inet.tcp.log_in_vain="${log_in_vain}" >/dev/null > > > + sysctl net.inet.udp.log_in_vain="${log_in_vain}" >/dev/null > > > ;; > > > esac > > > > > I think you should add a case for [Yy][Ee][Ss], and treat the fallback > > case as a numeric value, without expr(1)-checking it. There's nothing > > wrong here as the only documented values were YES and NO, and people > > who had it set to the other value (e.g. "YUP") will now have to fix it > > to the right value. :-) > > Why would they have to fix it? This patch treats all non-numeric values > as a default log level of 1; a "YUP" would be treated just the same > as a "YES". > The only documented values are "YES" and "NO" (so far), and treating anything else as "YES" is not good, as one day we may add a new value, "MAYBE", that would mean something different from "YES". > I personally would prefer the expr regexp to be '[0-9]*$', though, > because '[0-9]*' also catches things like '3foo', which is, strictly > speaking, incorrect, although sysctl(8) silently trims at the first > non-numeric character. > Yeah, the regexp may stay (it enables the stricter checking), "YES" block should be added, and fallback block should say "invalid value". Cheers, -- Ruslan Ermilov Oracle Developer/DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 6:40:10 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9126737B419 for ; Wed, 19 Dec 2001 06:40:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJEe3907020; Wed, 19 Dec 2001 06:40:03 -0800 (PST) (envelope-from gnats) Date: Wed, 19 Dec 2001 06:40:03 -0800 (PST) Message-Id: <200112191440.fBJEe3907020@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Yar Tikhiy" Subject: Re: kern/31471: Specific IPFW's FWD rule crashes the kernel (panic fatal double fault) Reply-To: "Yar Tikhiy" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/31471; it has been noted by GNATS. From: "Yar Tikhiy" To: , Cc: Subject: Re: kern/31471: Specific IPFW's FWD rule crashes the kernel (panic fatal double fault) Date: Wed, 19 Dec 2001 17:34:51 +0300 Ivan, First of all, do you realize that IPFIREWALL and IPFILTER are alternative packet filter facilities? Second, would you mind following the FreeBSD Developers Handbook instructions on how to inspect kernel crashes with ``gdb'': http://www.freebsd.org/doc/en_US.ISO8859-1/books/developers-handbook/kerneld ebug.html and sending a post-mortem kernel stack trace? Without it, it's rather hard to guess a sequence of calls that leads to the particular crash. Thank you. --Yar To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 6:40:21 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B9BAA37B41A for ; Wed, 19 Dec 2001 06:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJEe1406964; Wed, 19 Dec 2001 06:40:01 -0800 (PST) (envelope-from gnats) Date: Wed, 19 Dec 2001 06:40:01 -0800 (PST) Message-Id: <200112191440.fBJEe1406964@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: bin/32953: log-in-vain level should be setable in rc.conf Reply-To: Peter Pentchev Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/32953; it has been noted by GNATS. From: Peter Pentchev To: Ruslan Ermilov Cc: bug-followup@FreeBSD.org Subject: Re: bin/32953: log-in-vain level should be setable in rc.conf Date: Wed, 19 Dec 2001 16:30:28 +0200 On Wed, Dec 19, 2001 at 04:22:07PM +0200, Ruslan Ermilov wrote: > On Wed, Dec 19, 2001 at 03:46:39PM +0200, Peter Pentchev wrote: > > On Tue, Dec 18, 2001 at 05:00:03AM -0800, Ruslan Ermilov wrote: > > > On Mon, Dec 17, 2001 at 05:40:02PM -0800, Crist J . Clark wrote: > > > > The following reply was made to PR bin/32953; it has been noted by GNATS. > > > > On Mon, Dec 17, 2001 at 04:28:07PM -0800, David O'Brien wrote: > > > > > > > > > >Description: > > > > > We allow the turning off and on of log-in-vain in rc.conf as seen in > > > > > rc.network: > > > > > > > > > > network_pass4() { > > > > > echo -n 'Additional TCP options:' > > > > > case ${log_in_vain} in > > > > > > > > > > Therefor we should also allow the log-in-vain level to be set in > > > > > rc.conf also. > > > > [snip] > > > > > > > > We should. How about this simple change which is back compaitible, but > > > > does not add more rc.conf knobs: > > > > > > > > Index: rc.network > > > > =================================================================== > > > > RCS file: /export/ncvs/src/etc/rc.network,v > > > > retrieving revision 1.119 > > > > diff -u -r1.119 rc.network > > > > --- rc.network 13 Dec 2001 04:21:18 -0000 1.119 > > > > +++ rc.network 18 Dec 2001 01:26:07 -0000 > > > > @@ -848,9 +848,12 @@ > > > > [Nn][Oo] | '') > > > > ;; > > > > *) > > > > - echo -n ' log_in_vain=YES' > > > > - sysctl net.inet.tcp.log_in_vain=1 >/dev/null > > > > - sysctl net.inet.udp.log_in_vain=1 >/dev/null > > > > + if ! expr "${log_in_vain}" : '[0-9]*' >/dev/null 2>&1; then > > > > + log_in_vain=1 > > > > + fi > > > > + echo -n " log_in_vain=${log_in_vain}" > > > > + sysctl net.inet.tcp.log_in_vain="${log_in_vain}" >/dev/null > > > > + sysctl net.inet.udp.log_in_vain="${log_in_vain}" >/dev/null > > > > ;; > > > > esac > > > > > > > I think you should add a case for [Yy][Ee][Ss], and treat the fallback > > > case as a numeric value, without expr(1)-checking it. There's nothing > > > wrong here as the only documented values were YES and NO, and people > > > who had it set to the other value (e.g. "YUP") will now have to fix it > > > to the right value. :-) > > > > Why would they have to fix it? This patch treats all non-numeric values > > as a default log level of 1; a "YUP" would be treated just the same > > as a "YES". > > > The only documented values are "YES" and "NO" (so far), and treating > anything else as "YES" is not good, as one day we may add a new value, > "MAYBE", that would mean something different from "YES". > > > I personally would prefer the expr regexp to be '[0-9]*$', though, > > because '[0-9]*' also catches things like '3foo', which is, strictly > > speaking, incorrect, although sysctl(8) silently trims at the first > > non-numeric character. > > > Yeah, the regexp may stay (it enables the stricter checking), > "YES" block should be added, and fallback block should say > "invalid value". Errr.. Maybe I'm not understanding you here. The whole point of this patch is to change the setting so that it is no longer a boolean. Are you proposing that it should stay boolean (thus making it impossible to address David O'Brien's PR without introducing a new variable), or simply that the case statement be separated into 'NO', 'YES', '^[0-9]*$' and a default that produces an error message? G'luck, Peter -- This inert sentence is my body, but my soul is alive, dancing in the sparks of your brain. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 7: 0:26 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 866AA37B405 for ; Wed, 19 Dec 2001 07:00:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJF03o97224; Wed, 19 Dec 2001 07:00:03 -0800 (PST) (envelope-from gnats) Date: Wed, 19 Dec 2001 07:00:03 -0800 (PST) Message-Id: <200112191500.fBJF03o97224@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ruslan Ermilov Subject: Re: bin/32953: log-in-vain level should be setable in rc.conf Reply-To: Ruslan Ermilov Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/32953; it has been noted by GNATS. From: Ruslan Ermilov To: Peter Pentchev Cc: bug-followup@FreeBSD.org Subject: Re: bin/32953: log-in-vain level should be setable in rc.conf Date: Wed, 19 Dec 2001 16:56:08 +0200 On Wed, Dec 19, 2001 at 04:30:28PM +0200, Peter Pentchev wrote: > On Wed, Dec 19, 2001 at 04:22:07PM +0200, Ruslan Ermilov wrote: > > On Wed, Dec 19, 2001 at 03:46:39PM +0200, Peter Pentchev wrote: > > > On Tue, Dec 18, 2001 at 05:00:03AM -0800, Ruslan Ermilov wrote: > > > > On Mon, Dec 17, 2001 at 05:40:02PM -0800, Crist J . Clark wrote: > > > > > The following reply was made to PR bin/32953; it has been noted by GNATS. > > > > > On Mon, Dec 17, 2001 at 04:28:07PM -0800, David O'Brien wrote: > > > > > > > > > > > >Description: > > > > > > We allow the turning off and on of log-in-vain in rc.conf as seen in > > > > > > rc.network: > > > > > > > > > > > > network_pass4() { > > > > > > echo -n 'Additional TCP options:' > > > > > > case ${log_in_vain} in > > > > > > > > > > > > Therefor we should also allow the log-in-vain level to be set in > > > > > > rc.conf also. > > > > > [snip] > > > > > > > > > > We should. How about this simple change which is back compaitible, but > > > > > does not add more rc.conf knobs: > > > > > > > > > > Index: rc.network > > > > > =================================================================== > > > > > RCS file: /export/ncvs/src/etc/rc.network,v > > > > > retrieving revision 1.119 > > > > > diff -u -r1.119 rc.network > > > > > --- rc.network 13 Dec 2001 04:21:18 -0000 1.119 > > > > > +++ rc.network 18 Dec 2001 01:26:07 -0000 > > > > > @@ -848,9 +848,12 @@ > > > > > [Nn][Oo] | '') > > > > > ;; > > > > > *) > > > > > - echo -n ' log_in_vain=YES' > > > > > - sysctl net.inet.tcp.log_in_vain=1 >/dev/null > > > > > - sysctl net.inet.udp.log_in_vain=1 >/dev/null > > > > > + if ! expr "${log_in_vain}" : '[0-9]*' >/dev/null 2>&1; then > > > > > + log_in_vain=1 > > > > > + fi > > > > > + echo -n " log_in_vain=${log_in_vain}" > > > > > + sysctl net.inet.tcp.log_in_vain="${log_in_vain}" >/dev/null > > > > > + sysctl net.inet.udp.log_in_vain="${log_in_vain}" >/dev/null > > > > > ;; > > > > > esac > > > > > > > > > I think you should add a case for [Yy][Ee][Ss], and treat the fallback > > > > case as a numeric value, without expr(1)-checking it. There's nothing > > > > wrong here as the only documented values were YES and NO, and people > > > > who had it set to the other value (e.g. "YUP") will now have to fix it > > > > to the right value. :-) > > > > > > Why would they have to fix it? This patch treats all non-numeric values > > > as a default log level of 1; a "YUP" would be treated just the same > > > as a "YES". > > > > > The only documented values are "YES" and "NO" (so far), and treating > > anything else as "YES" is not good, as one day we may add a new value, > > "MAYBE", that would mean something different from "YES". > > > > > I personally would prefer the expr regexp to be '[0-9]*$', though, > > > because '[0-9]*' also catches things like '3foo', which is, strictly > > > speaking, incorrect, although sysctl(8) silently trims at the first > > > non-numeric character. > > > > > Yeah, the regexp may stay (it enables the stricter checking), > > "YES" block should be added, and fallback block should say > > "invalid value". > > Errr.. Maybe I'm not understanding you here. The whole point of > this patch is to change the setting so that it is no longer a boolean. > Are you proposing that it should stay boolean (thus making it impossible > to address David O'Brien's PR without introducing a new variable), > or simply that the case statement be separated into 'NO', 'YES', '^[0-9]*$' > and a default that produces an error message? > No, I'm proposing a stricter value checking, i.e.: 1. [Yy][Ee][Ss] 2. [Nn][Oo] 3. [0-9]*$ Everything else should be considered an error in value, not "YES". Cheers, -- Ruslan Ermilov Oracle Developer/DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 7:40:10 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 902A037B419 for ; Wed, 19 Dec 2001 07:40:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJFe5606563; Wed, 19 Dec 2001 07:40:05 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0ABBA37B41A for ; Wed, 19 Dec 2001 07:39:11 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJFdBX06398; Wed, 19 Dec 2001 07:39:11 -0800 (PST) (envelope-from nobody) Message-Id: <200112191539.fBJFdBX06398@freefall.freebsd.org> Date: Wed, 19 Dec 2001 07:39:11 -0800 (PST) From: Matt To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/33007: umass device timeout after successive uses of device Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 33007 >Category: misc >Synopsis: umass device timeout after successive uses of device >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 Dec 19 07:40:05 PST 2001 >Closed-Date: >Last-Modified: >Originator: Matt >Release: 4.3 Release >Organization: >Environment: FreeBSD phoenix.ronin47.com 4.3-RELEASE FreeBSD 4.3-RELEASE #10: Thu Nov 29 22:55:15 EST 2001 ronin47@phoenix.ronin47.com:/usr/src/sys/compile/PHOENIX i386 >Description: I have a sandisk usb compact flash reader which 'mostly' works under this release of freebsd have yet to try it on 4.4 however after mounting/umounting and adding/removing compact flash to it about a half dozen or so times on the last placement of a compact flash card into the reader it causes the usb port the card reader is on to be disabled by the kernel due to umass device timeout failures have tried even using camcontrol eject da0 after each successive usage and still did not eleviate said issue >How-To-Repeat: use the compact flash device multiple times inserting/removing compact flash card >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 8:40: 5 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 901AB37B416 for ; Wed, 19 Dec 2001 08:40:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJGe3n17732; Wed, 19 Dec 2001 08:40:03 -0800 (PST) (envelope-from gnats) Date: Wed, 19 Dec 2001 08:40:03 -0800 (PST) Message-Id: <200112191640.fBJGe3n17732@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Garrett Wollman Subject: Re: bin/32953: log-in-vain level should be setable in rc.conf Reply-To: Garrett Wollman Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/32953; it has been noted by GNATS. From: Garrett Wollman To: Peter Pentchev Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: bin/32953: log-in-vain level should be setable in rc.conf Date: Wed, 19 Dec 2001 11:39:00 -0500 (EST) < said: > Why would they have to fix it? This patch treats all non-numeric values > as a default log level of 1; a "YUP" would be treated just the same > as a "YES". If I may ask a higher-level question: Should every potentially-useful sysctl(8) setting have a configuration variable in rc.conf? Is this not precisely what sysctl.conf is for? -GAWollman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 8:50:13 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D324737B41D for ; Wed, 19 Dec 2001 08:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJGo2Y19634; Wed, 19 Dec 2001 08:50:02 -0800 (PST) (envelope-from gnats) Date: Wed, 19 Dec 2001 08:50:02 -0800 (PST) Message-Id: <200112191650.fBJGo2Y19634@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: bin/32953: log-in-vain level should be setable in rc.conf Reply-To: Peter Pentchev Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/32953; it has been noted by GNATS. From: Peter Pentchev To: Garrett Wollman Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: bin/32953: log-in-vain level should be setable in rc.conf Date: Wed, 19 Dec 2001 18:41:09 +0200 On Wed, Dec 19, 2001 at 11:39:00AM -0500, Garrett Wollman wrote: > < said: > > > Why would they have to fix it? This patch treats all non-numeric values > > as a default log level of 1; a "YUP" would be treated just the same > > as a "YES". > > If I may ask a higher-level question: > > Should every potentially-useful sysctl(8) setting have a configuration > variable in rc.conf? Is this not precisely what sysctl.conf is for? I was about to ask the same question in a further follow-up :) I, too, think that this is sysctl.conf material, at least in -current. G'luck, Peter -- "yields falsehood, when appended to its quotation." yields falsehood, when appended to its quotation. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 9:20:14 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9E50437B41B for ; Wed, 19 Dec 2001 09:20:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJHK0k27134; Wed, 19 Dec 2001 09:20:00 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 39B1E37B41B for ; Wed, 19 Dec 2001 09:18:20 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJHIKb26752; Wed, 19 Dec 2001 09:18:20 -0800 (PST) (envelope-from nobody) Message-Id: <200112191718.fBJHIKb26752@freefall.freebsd.org> Date: Wed, 19 Dec 2001 09:18:20 -0800 (PST) From: Shell Hung To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/33010: [Maintainer] Upgrade available of devel/p5-Test-Simple Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 33010 >Category: misc >Synopsis: [Maintainer] Upgrade available of devel/p5-Test-Simple >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 Dec 19 09:20:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Shell Hung >Release: 4.4-RELEASE >Organization: shellhung.org >Environment: FreeBSD freebsd.linux-hall.com 4.4-RELEASE FreeBSD 4.4-RELEASE #0: Tue Sep 18 11:57:08 PDT 2001 murray@builder.FreeBSD.org:/usr/src/sys/compile/GENERIC i386 >Description: Upgrade available of devel/p5-Test-Simple, from 0.35 to 0.40 >How-To-Repeat: >Fix: Please download the diff file from : http://www.shellhung.org/FreeBSD/patches/p5-Test-Simple.diff Thanks. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 9:20:15 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B786237B41D for ; Wed, 19 Dec 2001 09:20:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJHK0m27145; Wed, 19 Dec 2001 09:20:00 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C613637B405 for ; Wed, 19 Dec 2001 09:18:57 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJHIve26882; Wed, 19 Dec 2001 09:18:57 -0800 (PST) (envelope-from nobody) Message-Id: <200112191718.fBJHIve26882@freefall.freebsd.org> Date: Wed, 19 Dec 2001 09:18:57 -0800 (PST) From: Shell Hung To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/33011: [Maintainer] Upgrade available of security/p5-Net-SSLeay Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 33011 >Category: misc >Synopsis: [Maintainer] Upgrade available of security/p5-Net-SSLeay >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 Dec 19 09:20:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Shell Hung >Release: 4.4-RELEASE >Organization: shellhung.org >Environment: FreeBSD freebsd.linux-hall.com 4.4-RELEASE FreeBSD 4.4-RELEASE #0: Tue Sep 18 11:57:08 PDT 2001 murray@builder.FreeBSD.org:/usr/src/sys/compile/GENERIC i386 >Description: Upgrade available of security/p5-Net-SSLeay, from 1.11 to 1.12 >How-To-Repeat: >Fix: Please download the diff file from : http://www.shellhung.org/FreeBSD/patches/p5-Net-SSLeay.diff Thanks. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 9:20:24 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0E39537B420 for ; Wed, 19 Dec 2001 09:20:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJHK0T27155; Wed, 19 Dec 2001 09:20:00 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8853037B41A for ; Wed, 19 Dec 2001 09:19:37 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJHJbj27018; Wed, 19 Dec 2001 09:19:37 -0800 (PST) (envelope-from nobody) Message-Id: <200112191719.fBJHJbj27018@freefall.freebsd.org> Date: Wed, 19 Dec 2001 09:19:37 -0800 (PST) From: Shell Hung To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/33012: [Maintainer] Upgrade available of math/p5-Date-Handler Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 33012 >Category: misc >Synopsis: [Maintainer] Upgrade available of math/p5-Date-Handler >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 Dec 19 09:20:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Shell Hung >Release: 4.4-RELEASE >Organization: shellhung.org >Environment: FreeBSD freebsd.linux-hall.com 4.4-RELEASE FreeBSD 4.4-RELEASE #0: Tue Sep 18 11:57:08 PDT 2001 murray@builder.FreeBSD.org:/usr/src/sys/compile/GENERIC i386 >Description: Upgrade available of math/p5-Date-Handler, from 1.11 to 1.12 >How-To-Repeat: >Fix: Please download the diff file from : http://www.shellhung.org/FreeBSD/patches/p5-Data-Handler.diff Thanks. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 10:10: 4 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0DBCF37B416; Wed, 19 Dec 2001 10:09:51 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJI3as33490; Wed, 19 Dec 2001 10:03:36 -0800 (PST) (envelope-from ijliao) Date: Wed, 19 Dec 2001 10:03:36 -0800 (PST) From: Message-Id: <200112191803.fBJI3as33490@freefall.freebsd.org> To: shell@shellhung.org, ijliao@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/33010: [Maintainer] Upgrade available of devel/p5-Test-Simple Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [Maintainer] Upgrade available of devel/p5-Test-Simple State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Wed Dec 19 10:03:07 PST 2001 State-Changed-Why: committed, thanks Responsible-Changed-From-To: freebsd-bugs->freebsd-ports Responsible-Changed-By: ijliao Responsible-Changed-When: Wed Dec 19 10:03:07 PST 2001 Responsible-Changed-Why: mis-filed http://www.FreeBSD.org/cgi/query-pr.cgi?pr=33010 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 10:10: 4 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8E99C37B417; Wed, 19 Dec 2001 10:09:51 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJI93k38043; Wed, 19 Dec 2001 10:09:03 -0800 (PST) (envelope-from ijliao) Date: Wed, 19 Dec 2001 10:09:03 -0800 (PST) From: Message-Id: <200112191809.fBJI93k38043@freefall.freebsd.org> To: shell@shellhung.org, ijliao@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/33012: [Maintainer] Upgrade available of math/p5-Date-Handler Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [Maintainer] Upgrade available of math/p5-Date-Handler State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Wed Dec 19 10:08:38 PST 2001 State-Changed-Why: committed, thanks Responsible-Changed-From-To: freebsd-bugs->freebsd-ports Responsible-Changed-By: ijliao Responsible-Changed-When: Wed Dec 19 10:08:38 PST 2001 Responsible-Changed-Why: mis-filed http://www.FreeBSD.org/cgi/query-pr.cgi?pr=33012 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 10:10:11 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DCFC937B41C; Wed, 19 Dec 2001 10:09:52 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJI6Dx37431; Wed, 19 Dec 2001 10:06:13 -0800 (PST) (envelope-from ijliao) Date: Wed, 19 Dec 2001 10:06:13 -0800 (PST) From: Message-Id: <200112191806.fBJI6Dx37431@freefall.freebsd.org> To: shell@shellhung.org, ijliao@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/33011: [Maintainer] Upgrade available of security/p5-Net-SSLeay Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [Maintainer] Upgrade available of security/p5-Net-SSLeay State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Wed Dec 19 10:05:43 PST 2001 State-Changed-Why: committed, thanks Responsible-Changed-From-To: freebsd-bugs->freebsd-ports Responsible-Changed-By: ijliao Responsible-Changed-When: Wed Dec 19 10:05:43 PST 2001 Responsible-Changed-Why: mis-filed http://www.FreeBSD.org/cgi/query-pr.cgi?pr=33011 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 10:10:32 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3418E37B41E for ; Wed, 19 Dec 2001 10:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJIA1p38359; Wed, 19 Dec 2001 10:10:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0C92337B416 for ; Wed, 19 Dec 2001 10:07:18 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJI7Ik37670; Wed, 19 Dec 2001 10:07:18 -0800 (PST) (envelope-from nobody) Message-Id: <200112191807.fBJI7Ik37670@freefall.freebsd.org> Date: Wed, 19 Dec 2001 10:07:18 -0800 (PST) From: John To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/33013: mixer does not have treble/bass for Soundblaster Live! 5.1 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 33013 >Category: misc >Synopsis: mixer does not have treble/bass for Soundblaster Live! 5.1 >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 Dec 19 10:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: John >Release: FreeBSD 4.4-STABLE >Organization: >Environment: FreeBSD daisy.hill.hom 4.4-STABLE FreeBSD 4.4-STABLE #0: Mon Dec 10 18:30:48 EST 2001 root@daisy.hill.hom:/usr/src/sys/compile/DAISY i386 >Description: mixer(8) does not contain the treble and bass settings. In my kernel config, I have "device pcm" set. $ dmesg pcm0: port 0xe000-0xe01f irq 11 at device 12.0 on pci0 $ mixer Mixer vol is currently set to 75:75 Mixer pcm is currently set to 15:15 Mixer speaker is currently set to 75:75 Mixer line is currently set to 75:75 Mixer mic is currently set to 0:0 Mixer cd is currently set to 75:75 Mixer rec is currently set to 0:0 Mixer line1 is currently set to 75:75 Mixer phin is currently set to 0:0 Mixer phout is currently set to 0:0 Mixer video is currently set to 75:75 Mixer monitor is currently set to 75:75 >How-To-Repeat: Install a Soundblaster Live! 5.1 card. Use mixer(8) to see if it supports the treble and bass options. >Fix: unknown >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 11:20:32 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0437237B41F for ; Wed, 19 Dec 2001 11:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJJK0w58422; Wed, 19 Dec 2001 11:20:00 -0800 (PST) (envelope-from gnats) Received: from arnold.neland.dk (0x3ef34d8c.albnxx2.adsl.tele.dk [62.243.77.140]) by hub.freebsd.org (Postfix) with ESMTP id 02F0437B417 for ; Wed, 19 Dec 2001 11:11:00 -0800 (PST) Received: (from root@localhost) by arnold.neland.dk (8.11.6/8.11.6) id fBJJCmC94979; Wed, 19 Dec 2001 20:12:48 +0100 (CET) (envelope-from root) Message-Id: <200112191912.fBJJCmC94979@arnold.neland.dk> Date: Wed, 19 Dec 2001 20:12:48 +0100 (CET) From: "leifn@neland.dk" Reply-To: "leifn@neland.dk" To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: kern/33014: installkernel without buildkernel gives confusing error Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 33014 >Category: kern >Synopsis: installkernel without buildkernel gives confusing error >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 Dec 19 11:20:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Leif Neland >Release: FreeBSD 5.0-CURRENT i386 >Organization: organized? Me? >Environment: System: FreeBSD arnold.neland.dk 5.0-CURRENT FreeBSD 5.0-CURRENT #2: Mon Dec 17 22:42:24 CET 2001 root@arnold.neland.dk:/usr/obj/usr/src/sys/ARNOLD i386 >Description: If I make installkernel without having done a buildkernel, I get this error: install date '+%Y%m%d' > /var/db/port.mkversion make: don't know how to make bsd.README. Stop *** Error code 2 This doesn't hint that I've forgotten to buildkernel first. >How-To-Repeat: >Fix: Don't do that :-) >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 13:30:10 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 58DAB37B419 for ; Wed, 19 Dec 2001 13:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJLU1183599; Wed, 19 Dec 2001 13:30:01 -0800 (PST) (envelope-from gnats) Received: from meta.lo-res.org (meta.lo-res.org [195.58.189.92]) by hub.freebsd.org (Postfix) with ESMTP id 2136937B416 for ; Wed, 19 Dec 2001 13:20:45 -0800 (PST) Received: (from aaron@localhost) by meta.lo-res.org (8.11.6/8.11.6) id fBJLKh644521; Wed, 19 Dec 2001 22:20:43 +0100 (CET) (envelope-from aaron) Message-Id: <200112192120.fBJLKh644521@meta.lo-res.org> Date: Wed, 19 Dec 2001 22:20:43 +0100 (CET) From: aaron Reply-To: aaron To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/33016: mount_smbfs Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 33016 >Category: bin >Synopsis: mount_smbfs >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 Dec 19 13:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: aaron >Release: FreeBSD 4.4-STABLE i386 >Organization: lo-res >Environment: System: FreeBSD meta.lo-res.org 4.4-STABLE FreeBSD 4.4-STABLE #2: Mon Oct 29 22:02:05 CET 2001 root@meta.lo-res.org:/usr/people/scratch/usr/people/src/sys/meta i386 >Description: mount_smbfs will not work with smbfs module unless smbfs module loads libmchain module. >How-To-Repeat: do the following: compile a -STABLE kernel without LIBMCHAIN and without NETSMB options. Include the LIBICONV option (this does not seem to compile as module, ok). Now mount_smbfs some filesystem. It will fail with error message: smbfs: vfsload(smbfs): Exec format error then kldload libmchain re-try mount_smbfs command... bingo everything works again. As a side note: If I compile options NETSMB, option LIBMCHAIN and option LIBICONV statically into the kernel then mount_smbfs will fail with: smbfs: vfsload(smbfs): File exists. Seems like the vfsload will try to load the module but if its already there statically - it does not detect this fact and gives up. I recon some detection code would be in place here. >Fix: see ideas on how to fix it above. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 13:40:12 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8863B37B41B for ; Wed, 19 Dec 2001 13:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJLe1384644; Wed, 19 Dec 2001 13:40:01 -0800 (PST) (envelope-from gnats) Received: from gateway.soffen.com (gateway.soffen.com [64.65.195.194]) by hub.freebsd.org (Postfix) with SMTP id 8506637B417 for ; Wed, 19 Dec 2001 13:34:27 -0800 (PST) Received: (qmail 45077 invoked from network); 19 Dec 2001 21:34:26 -0000 Received: from truffle0.soffen.com (64.65.195.196) by gateway.soffen.com with SMTP; 19 Dec 2001 21:34:26 -0000 Received: (qmail 7763 invoked by uid 0); 19 Dec 2001 21:34:24 -0000 Message-Id: <20011219213424.7762.qmail@truffle0.soffen.com> Date: 19 Dec 2001 21:34:24 -0000 From: matt@soffen.com Reply-To: matt@soffen.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: conf/33018: Patch for RC (add multiple SSHD configurations) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 33018 >Category: conf >Synopsis: Patch for RC (add multiple SSHD configurations) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 19 13:40:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Matthew Sofen & >Release: FreeBSD 4.2-RELEASE i386 >Organization: none >Environment: N/A >Description: This patch was written to allow a site to have multiple SSH Daemons on different ports with different config files. This patch includes modification to the /etc/defaults/rc.conf and /etc/rc to handle reading in multiple sshd configs. >How-To-Repeat: Attempt to run multiple ssh daemons on restarts >Fix: This patch will allow a user to create N different instances of SSHD. On startup RC will cycle through all the variables in the rc.conf file and run the daemons. To work around the problem explicitly call something like /usr/sbin/sshd -f /etc/ssh/sshd_config_2.conf >Release-Note: >Audit-Trail: >Unformatted: Matthew Soffen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 14:10: 5 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 08E7537B416 for ; Wed, 19 Dec 2001 14:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJMA1191163; Wed, 19 Dec 2001 14:10:01 -0800 (PST) (envelope-from gnats) Date: Wed, 19 Dec 2001 14:10:01 -0800 (PST) Message-Id: <200112192210.fBJMA1191163@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ceri Subject: Re: conf/33018: Patch for RC (add multiple SSHD configurations) Reply-To: Ceri Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR conf/33018; it has been noted by GNATS. From: Ceri To: matt@soffen.com Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: conf/33018: Patch for RC (add multiple SSHD configurations) Date: Wed, 19 Dec 2001 22:08:50 +0000 Matthew, I think you forgot to attach the patch ;) Ceri To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 14:50:11 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5696237B416 for ; Wed, 19 Dec 2001 14:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJMo2x95753; Wed, 19 Dec 2001 14:50:02 -0800 (PST) (envelope-from gnats) Date: Wed, 19 Dec 2001 14:50:02 -0800 (PST) Message-Id: <200112192250.fBJMo2x95753@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Albert Kinderman Subject: Re: misc/32991: snd_pcm.ko does not find sound card as of Dec. 15 Reply-To: Albert Kinderman Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR misc/32991; it has been noted by GNATS. From: Albert Kinderman To: freebsd-gnats-submit@FreeBSD.org, albert.kinderman@csun.edu Cc: Subject: Re: misc/32991: snd_pcm.ko does not find sound card as of Dec. 15 Date: Wed, 19 Dec 2001 14:49:11 -0800 Withdrawn: I believe that in a fit of rapid typing I made a generic kernel rather than my own (with sound support). I blush very easily, so if you can imagine a very red face, it is mine. Al -- Albert Kinderman California State University, Northridge Department of Systems and Operations Management To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 15: 9:54 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8145837B419; Wed, 19 Dec 2001 15:09:51 -0800 (PST) Received: (from billf@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBJN21297156; Wed, 19 Dec 2001 15:02:01 -0800 (PST) (envelope-from billf) Date: Wed, 19 Dec 2001 15:02:01 -0800 (PST) From: Message-Id: <200112192302.fBJN21297156@freefall.freebsd.org> To: albert.kinderman@csun.edu, billf@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/32991: snd_pcm.ko does not find sound card as of Dec. 15 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: snd_pcm.ko does not find sound card as of Dec. 15 State-Changed-From-To: open->closed State-Changed-By: billf State-Changed-When: Wed Dec 19 15:01:48 PST 2001 State-Changed-Why: pilot error. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32991 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 16:40:13 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7C96037B419 for ; Wed, 19 Dec 2001 16:40:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBK0e3u13188; Wed, 19 Dec 2001 16:40:03 -0800 (PST) (envelope-from gnats) Date: Wed, 19 Dec 2001 16:40:03 -0800 (PST) Message-Id: <200112200040.fBK0e3u13188@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ceri Subject: [matt@soffen.com: Re: conf/33018: Patch for RC (add multiple SSHD configurations)] Reply-To: Ceri Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR conf/33018; it has been noted by GNATS. From: Ceri To: freebsd-gnats-submit@freebsd.org Cc: Subject: [matt@soffen.com: Re: conf/33018: Patch for RC (add multiple SSHD configurations)] Date: Thu, 20 Dec 2001 00:35:54 +0000 --YZ5djTAD1cGYuMQK Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Adding to audit trail. Ceri --YZ5djTAD1cGYuMQK Content-Type: message/rfc822 Content-Disposition: inline Return-path: Envelope-to: setantae@localhost Delivery-date: Wed, 19 Dec 2001 23:50:04 +0000 Received: from localhost.private.submonkey.net. ([127.0.0.1] helo=localhost) by rhadamanth.private.submonkey.net with esmtp (Exim 3.33 #1) id 16GqTM-0002H1-00 for setantae@localhost; Wed, 19 Dec 2001 23:50:04 +0000 Delivered-To: setantae@eidosnet.co.uk Received: from mail.eidosnet.co.uk [195.40.67.19] by localhost with POP3 (fetchmail-5.8.17) for setantae@localhost (single-drop); Wed, 19 Dec 2001 23:50:04 +0000 (GMT) Received: (qmail 77202 invoked from network); 19 Dec 2001 23:40:03 -0000 Received: from jupiter.easily.co.uk ([213.239.5.5]) (envelope-sender ) by nectarine.mail.uk.easynet.net (qmail-ldap-1.03) with SMTP for ; 19 Dec 2001 23:40:03 -0000 Received: from gateway.soffen.com (gateway.soffen.com [64.65.195.194]) by jupiter.easily.co.uk (Postfix) with SMTP id 3DC901242 for ; Wed, 19 Dec 2001 23:39:05 +0000 (GMT) Received: (qmail 56031 invoked from network); 19 Dec 2001 23:39:56 -0000 Received: from callie.soffen.com (HELO callie) (64.65.195.183) by gateway.soffen.com with SMTP; 19 Dec 2001 23:39:56 -0000 Message-Id: <4.2.0.58.20011219183926.00a50c80@pop3.norton.antivirus> X-Sender: matt/mail.soffen.com@pop3.norton.antivirus X-Mailer: QUALCOMM Windows Eudora Pro Version 4.2.0.58 Date: Wed, 19 Dec 2001 18:39:45 -0500 To: Ceri From: Matthew Soffen Subject: Re: conf/33018: Patch for RC (add multiple SSHD configurations) In-Reply-To: <20011219220850.GA7690@rhadamanth> References: <20011219213424.7762.qmail@truffle0.soffen.com> <20011219213424.7762.qmail@truffle0.soffen.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed At 10:08 PM 12/19/2001 +0000, you wrote: >Matthew, I think you forgot to attach the patch ;) > >Ceri D'oh! That's what I get for sending it when I was in a rush. --- /etc/rc.orig Mon Nov 20 07:03:04 2000 +++ /etc/rc Wed Dec 19 16:07:12 2001 @@ -453,6 +453,20 @@ echo -n ' sshd'; ${sshd_program:-/usr/sbin/sshd} ${sshd_flags} fi + while + [ $sshd -lt $sshd_count ] + do + eval enab=\$sshd_enable_$sshd + case ${enab} in + [Yy][Ee][Ss]) + if [ -x ${sshd_program:-/usr/sbin/sshd} ]; then + echo -n ' sshd'$sshd; + ${sshd_program:-/usr/sbin/sshd} ${sshd_flags}_$sshd + fi + ;; + esac + sshd=`expr $sshd + 1` + done ;; esac --- /etc/defaults/rc.conf.orig Mon Nov 20 07:03:04 2000 +++ /etc/defaults/rc.conf Wed Dec 19 16:23:59 2001 @@ -149,9 +149,11 @@ pppoed_provider="*" # Provider and ppp(8) config file entry. pppoed_flags="-P /var/run/pppoed.pid" # Flags to pppoed (if enabled). pppoed_interface="fxp0" # The interface that pppoed runs on. +sshd_count=1 sshd_enable="NO" # Enable sshd -sshd_program="/usr/sbin/sshd" # path to sshd, if you want a different one. -sshd_flags="" # Additional flags for sshd. +sshd_enable_1="YES" # Enable sshd Conf 1 +sshd_program_1="/usr/sbin/sshd" # path to sshd, if you want a different one. +sshd_flags_1="" # Additional flags for sshd. ### Network Time Services options: ### timed_enable="NO" # Run the time daemon (or NO). --YZ5djTAD1cGYuMQK-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 17: 9:55 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0A3B537B419; Wed, 19 Dec 2001 17:09:52 -0800 (PST) Received: (from iedowse@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBK18CV19214; Wed, 19 Dec 2001 17:08:12 -0800 (PST) (envelope-from iedowse) Date: Wed, 19 Dec 2001 17:08:12 -0800 (PST) From: Message-Id: <200112200108.fBK18CV19214@freefall.freebsd.org> To: hans@huebner.org, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/27404: FreeBSD-4.3 crashes in VMware Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: FreeBSD-4.3 crashes in VMware State-Changed-From-To: feedback->closed State-Changed-By: iedowse State-Changed-When: Wed Dec 19 17:01:18 PST 2001 State-Changed-Why: Submitter says 4.4-RELEASE now works fine as a guest OS within VMware 3 for Windows. It is likely that the "pcn" driver was to blame for the original problem, and that issue has been resolved. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=27404 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 17:39:54 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0181037B405; Wed, 19 Dec 2001 17:39:52 -0800 (PST) Received: (from iedowse@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBK1VPh21840; Wed, 19 Dec 2001 17:31:25 -0800 (PST) (envelope-from iedowse) Date: Wed, 19 Dec 2001 17:31:25 -0800 (PST) From: Message-Id: <200112200131.fBK1VPh21840@freefall.freebsd.org> To: wkwu@ccbsd1.csie.nctu.edu.tw, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/25693: VGA driver on Current not found Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: VGA driver on Current not found State-Changed-From-To: feedback->closed State-Changed-By: iedowse State-Changed-When: Wed Dec 19 17:30:42 PST 2001 State-Changed-Why: Mail to submitter bounces. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=25693 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 17:39:55 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8102837B417; Wed, 19 Dec 2001 17:39:52 -0800 (PST) Received: (from iedowse@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBK1ZBp22365; Wed, 19 Dec 2001 17:35:11 -0800 (PST) (envelope-from iedowse) Date: Wed, 19 Dec 2001 17:35:11 -0800 (PST) From: Message-Id: <200112200135.fBK1ZBp22365@freefall.freebsd.org> To: peter.much@sercon.de, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/24365: delete alias from ipv6 p-t-p iface will crash kernel Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: delete alias from ipv6 p-t-p iface will crash kernel State-Changed-From-To: feedback->closed State-Changed-By: iedowse State-Changed-When: Wed Dec 19 17:34:24 PST 2001 State-Changed-Why: Submitter says that this problem no longer occurs in 4.4-RELEASE. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=24365 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 17:40:11 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4BB3937B417 for ; Wed, 19 Dec 2001 17:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBK1e2Y26394; Wed, 19 Dec 2001 17:40:02 -0800 (PST) (envelope-from gnats) Date: Wed, 19 Dec 2001 17:40:02 -0800 (PST) Message-Id: <200112200140.fBK1e2Y26394@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ian Dowse Subject: Re: misc/26035: System hangs when playing mp3 on PCI Maestro-1 (es1948f) soundcard (using (pcm(4)) Reply-To: Ian Dowse Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR misc/26035; it has been noted by GNATS. From: Ian Dowse To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: misc/26035: System hangs when playing mp3 on PCI Maestro-1 (es1948f) soundcard (using (pcm(4)) Date: Thu, 20 Dec 2001 01:33:31 +0000 Adding to the audit trail: In message <20011207143903.A1379@dolphin.ncc.kyivstar.net>, Vladimir Sotnikov w rites: > > Hello, > > I tried to use that card again with 4.4-S and got following results: > > On my old Compaq Deskpro 4000 - results are the same as I described in > my pr. > > On new p3-800/i815EP it works fine, no any problems. > > >-- > Vladimir Sotnikov > Kyivstar GSM > > GPG fpr: E00B 8D93 BE75 CC0A A241 083E E51E 41DB 532F 61A5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 17:49:57 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B365537B419; Wed, 19 Dec 2001 17:49:51 -0800 (PST) Received: (from iedowse@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBK1mFq27346; Wed, 19 Dec 2001 17:48:15 -0800 (PST) (envelope-from iedowse) Date: Wed, 19 Dec 2001 17:48:15 -0800 (PST) From: Message-Id: <200112200148.fBK1mFq27346@freefall.freebsd.org> To: andreas@klemm.gtn.com, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/7245: processes die with signal 6, if machine out of swap, no recovery Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: processes die with signal 6, if machine out of swap, no recovery State-Changed-From-To: feedback->closed State-Changed-By: iedowse State-Changed-When: Wed Dec 19 17:47:26 PST 2001 State-Changed-Why: Submitter says that this can be closed. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=7245 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 17:49:57 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B281737B41E; Wed, 19 Dec 2001 17:49:52 -0800 (PST) Received: (from iedowse@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBK1kit27143; Wed, 19 Dec 2001 17:46:44 -0800 (PST) (envelope-from iedowse) Date: Wed, 19 Dec 2001 17:46:44 -0800 (PST) From: Message-Id: <200112200146.fBK1kit27143@freefall.freebsd.org> To: neis@cdc.informatik.tu-darmstadt.de, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/18560: libm's log1p not working as designed on Intel architectures. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: libm's log1p not working as designed on Intel architectures. State-Changed-From-To: feedback->closed State-Changed-By: iedowse State-Changed-When: Wed Dec 19 17:40:37 PST 2001 State-Changed-Why: My interpretation of Bruce's reply below is that this should be closed :-) In message <20011204122432.S4382-100000@gamplex.bde.org>, Bruce Evans writes: >The low quality version assembler is not used, so the current >behaviour is at most an efficiency bug. > >Bruce http://www.FreeBSD.org/cgi/query-pr.cgi?pr=18560 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 17:59:53 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B759837B405; Wed, 19 Dec 2001 17:59:51 -0800 (PST) Received: (from iedowse@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBK1rR728098; Wed, 19 Dec 2001 17:53:27 -0800 (PST) (envelope-from iedowse) Date: Wed, 19 Dec 2001 17:53:27 -0800 (PST) From: Message-Id: <200112200153.fBK1rR728098@freefall.freebsd.org> To: sauber@netcom.com, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/18295: Audio is gone after hibernation Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Audio is gone after hibernation State-Changed-From-To: feedback->closed State-Changed-By: iedowse State-Changed-When: Wed Dec 19 17:52:58 PST 2001 State-Changed-Why: Submitter no longer has the PC in question. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=18295 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 17:59:54 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1E2D737B416; Wed, 19 Dec 2001 17:59:52 -0800 (PST) Received: (from iedowse@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBK1tVF28597; Wed, 19 Dec 2001 17:55:31 -0800 (PST) (envelope-from iedowse) Date: Wed, 19 Dec 2001 17:55:31 -0800 (PST) From: Message-Id: <200112200155.fBK1tVF28597@freefall.freebsd.org> To: opentrax@email.com, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/26378: All 4.X-Release and 4.3rc2 Panics Install from install diskettes on 486DX2 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: All 4.X-Release and 4.3rc2 Panics Install from install diskettes on 486DX2 State-Changed-From-To: feedback->closed State-Changed-By: iedowse State-Changed-When: Wed Dec 19 17:55:07 PST 2001 State-Changed-Why: Mail to submitter bounces. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=26378 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 18: 9:58 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F115C37B41B; Wed, 19 Dec 2001 18:09:51 -0800 (PST) Received: (from iedowse@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBK21it29484; Wed, 19 Dec 2001 18:01:44 -0800 (PST) (envelope-from iedowse) Date: Wed, 19 Dec 2001 18:01:44 -0800 (PST) From: Message-Id: <200112200201.fBK21it29484@freefall.freebsd.org> To: scottm@dgweb.com, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/18411: cpu utilization high when compiling options PPP_DEFLATE in the kernel Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: cpu utilization high when compiling options PPP_DEFLATE in the kernel State-Changed-From-To: feedback->closed State-Changed-By: iedowse State-Changed-When: Wed Dec 19 18:01:11 PST 2001 State-Changed-Why: Mail to submitter bounces. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=18411 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 18:10: 8 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 209A637B416 for ; Wed, 19 Dec 2001 18:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBK2A2633931; Wed, 19 Dec 2001 18:10:02 -0800 (PST) (envelope-from gnats) Date: Wed, 19 Dec 2001 18:10:02 -0800 (PST) Message-Id: <200112200210.fBK2A2633931@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: ian j hart Subject: Re: bin/32175: ssh-keygen -p core dumps Reply-To: ian j hart Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/32175; it has been noted by GNATS. From: ian j hart To: freebsd-gnats-submit@freebsd.org, anarcat@anarcat.dyndns.org Cc: Subject: Re: bin/32175: ssh-keygen -p core dumps Date: Thu, 20 Dec 2001 02:08:29 +0000 Printing the comment is the source of the crash. The error appears to be in /usr/src/crypto/openssh/authfile.c *** authfile.c.orig Thu Dec 20 01:17:00 2001 --- authfile.c Thu Dec 20 01:21:33 2001 *************** *** 556,562 **** lseek(fd, (off_t) 0, SEEK_SET); /* rewind */ if (pub == NULL) { /* closes fd */ ! return key_load_private_pem(fd, KEY_UNSPEC, passphrase, NULL); } else { /* it's a SSH v1 key if the public key part is readable */ key_free(pub); --- 556,562 ---- lseek(fd, (off_t) 0, SEEK_SET); /* rewind */ if (pub == NULL) { /* closes fd */ ! return key_load_private_pem(fd, KEY_UNSPEC, passphrase, commentp); } else { /* it's a SSH v1 key if the public key part is readable */ key_free(pub); commentp is the address of a pointer to a heap? allocated string (for the comment). key_load_private_pem will allocate memory and intialise commentp, if it gets a non-null value. As authfile.c is part of libssl someone who knows about this stuff should verify this fix. Because of this I present an alternative workaround. *** ssh-keygen.c.orig Thu Dec 20 01:16:52 2001 --- ssh-keygen.c Thu Dec 20 01:20:49 2001 *************** *** 456,462 **** void do_change_passphrase(struct passwd *pw) { ! char *comment; char *old_passphrase, *passphrase1, *passphrase2; struct stat st; Key *private; --- 456,462 ---- void do_change_passphrase(struct passwd *pw) { ! char *comment = NULL; char *old_passphrase, *passphrase1, *passphrase2; struct stat st; Key *private; This only affects ssh-keygen. The offending printf survives the null pointer, as does the xfree() later in the function. Call tree: ssh-keygen.c: 457:void do_change_passphrase(struct passwd *pw) 477:private = key_load_private(identity_file, old_passphrase , &comment); authfile.c: 541:Key *key_load_private(const char *filename, const char *passphrase, char **commentp) 559:return key_load_private_pem(fd, KEY_UNSPEC, passphrase, NULL); <--- error 435:Key *key_load_private_pem(int fd, int type, const char *passphrase, char **commentp) 478: if (prv != NULL && commentp) *commentp = xstrdup(name); I wasn't sure whether to quote the whole thing here. Perhaps someone could advise me on "style". -- ian j hart To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 18:30:16 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EC6C137B416 for ; Wed, 19 Dec 2001 18:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBK2U1937162; Wed, 19 Dec 2001 18:30:01 -0800 (PST) (envelope-from gnats) Date: Wed, 19 Dec 2001 18:30:01 -0800 (PST) Message-Id: <200112200230.fBK2U1937162@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Crist J. Clark" Subject: Re: bin/32953: log-in-vain level should be setable in rc.conf Reply-To: "Crist J. Clark" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/32953; it has been noted by GNATS. From: "Crist J. Clark" To: Ruslan Ermilov Cc: bug-followup@FreeBSD.ORG Subject: Re: bin/32953: log-in-vain level should be setable in rc.conf Date: Wed, 19 Dec 2001 12:13:14 -0500 On Tue, Dec 18, 2001 at 02:52:49PM +0200, Ruslan Ermilov wrote: > On Mon, Dec 17, 2001 at 05:40:02PM -0800, Crist J . Clark wrote: [snip] > > > > Index: rc.network > > =================================================================== > > RCS file: /export/ncvs/src/etc/rc.network,v > > retrieving revision 1.119 > > diff -u -r1.119 rc.network > > --- rc.network 13 Dec 2001 04:21:18 -0000 1.119 > > +++ rc.network 18 Dec 2001 01:26:07 -0000 > > @@ -366,7 +366,7 @@ > > case ${firewall_logging} in > > [Yy][Ee][Ss] | '') > > echo 'Firewall logging=YES' > > - sysctl net.inet.ip.fw.verbose=1 >/dev/null > > + sysctl net.inet.ip.fw.verbose="${firewall_verbose:-1}" >/dev/null > > ;; > > *) > > ;; > > Is this a stray change? fw_verbose is boolean, at least in my version > of ip_fw.c. Yeah, a localization. I have different verbosity levels in the firewall code here. I'll send that code along if you'd like to see it. ;) I thought I had edited that out of the patch... until I actually saw my post on -bugs. [snip] > I think you should add a case for [Yy][Ee][Ss], and treat the fallback > case as a numeric value, without expr(1)-checking it. There's nothing > wrong here as the only documented values were YES and NO, and people > who had it set to the other value (e.g. "YUP") will now have to fix it > to the right value. :-) So, I guess you're saying, "take out the safety net," Index: rc.network =================================================================== RCS file: /home/cjc/ncvs/src/etc/rc.network,v retrieving revision 1.119 diff -u -r1.119 rc.network --- rc.network 13 Dec 2001 04:21:18 -0000 1.119 +++ rc.network 19 Dec 2001 16:59:16 -0000 @@ -845,14 +845,16 @@ network_pass4() { echo -n 'Additional TCP options:' case ${log_in_vain} in + [Yy][Ee][Ss]) + log_in_vain=1;; [Nn][Oo] | '') - ;; - *) - echo -n ' log_in_vain=YES' - sysctl net.inet.tcp.log_in_vain=1 >/dev/null - sysctl net.inet.udp.log_in_vain=1 >/dev/null - ;; + log_in_vain=0;; esac + if [ ${log_in_vain} -ne 0 ]; then + echo -n " log_in_vain=${log_in_vain}" + sysctl net.inet.tcp.log_in_vain="${log_in_vain}" >/dev/null + sysctl net.inet.udp.log_in_vain="${log_in_vain}" >/dev/null + fi echo '.' network_pass4_done=YES Which will bitch like heck (but your computer won't blow up) if you don't give it a "YES," "NO," or an integer. -- "It's always funny until someone gets hurt. Then it's hilarious." Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 18:40: 5 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BB2B837B417 for ; Wed, 19 Dec 2001 18:40:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBK2e0x38109; Wed, 19 Dec 2001 18:40:00 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 33DEF37B417 for ; Wed, 19 Dec 2001 18:31:24 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBK2VOA37312; Wed, 19 Dec 2001 18:31:24 -0800 (PST) (envelope-from nobody) Message-Id: <200112200231.fBK2VOA37312@freefall.freebsd.org> Date: Wed, 19 Dec 2001 18:31:24 -0800 (PST) From: Tyler Spivey To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/33021: link "soundblaster awe64 configuration under freebsd 3.1" doesn't work on projects page Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 33021 >Category: misc >Synopsis: link "soundblaster awe64 configuration under freebsd 3.1" doesn't work on projects page >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: Wed Dec 19 18:40:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Tyler Spivey >Release: 4.4-r >Organization: none >Environment: FreeBSD h24-76-54-195.vf.shawcable.net 4.4-RELEASE FreeBSD 4.4-RELEASE #0: Sat Nov 24 12:42:04 GMT 2001 root@h24-76-54-195.vf.shawcable.net:/usr/src/sys/compile/FAST i386 >Description: the awe64 config under 31 link is broken. on the projects page. >How-To-Repeat: see desc. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 19 23: 3:39 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from mailout6.nyroc.rr.com (mailout6-1.nyroc.rr.com [24.92.226.177]) by hub.freebsd.org (Postfix) with ESMTP id 42CC237B405; Wed, 19 Dec 2001 23:03:37 -0800 (PST) Received: from twcny.rr.com (syr-24-24-29-69.twcny.rr.com [24.24.29.69]) by mailout6.nyroc.rr.com (8.11.6/Road Runner 1.12) with ESMTP id fBK73X825430; Thu, 20 Dec 2001 02:03:34 -0500 (EST) Message-ID: <3C218D44.6DB791A6@twcny.rr.com> Date: Thu, 20 Dec 2001 02:03:32 -0500 From: Tom Parquette X-Mailer: Mozilla 4.78 [en] (X11; U; Linux 2.4.2 i386) X-Accept-Language: en MIME-Version: 1.0 To: iedowse@freebsd.org Cc: freebsd-bugs@freebsd.org Subject: Re: misc/18336: 3C905B-COMBO cannot find 10base-2 LAN References: <200112022106.fB2L64Y44434@freefall.freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org iedowse@FreeBSD.org wrote: > Synopsis: 3C905B-COMBO cannot find 10base-2 LAN > > State-Changed-From-To: open->feedback > State-Changed-By: iedowse > State-Changed-When: Sun Dec 2 13:02:58 PST 2001 > State-Changed-Why: > > Does this still occur? I'm not sure if autonegotiation for 10base-2 > media is supposed to work on these cards, but adding the "media > 10base2/BNC" setting to the "ifconfig_xl0" line in /etc/rc.conf > should work around the issue. > > http://www.FreeBSD.org/cgi/query-pr.cgi?pr=18336 Sorry it took me so long to get back to you. This grew out of, IMHO, an interaction between the 3C905B and a 3C900 card I had in the same machine. When I took the 3C900 out of the box, the problem disappeared. While this was not a conclusive test, I put the 3C900 in another machine and the 3C900 worked. Once I took the 3C900 card out, the 3C905B would figure out, correctly, what media type it was connected to. With the 3C900 card in place even the media command would not get the 3C905B to recognize the 10base-2 connection. I no longer use both of these cards in the same machine. I "fixed" the problem by avoiding the problem. Sorry I can't be more help. Cheers... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 20 1:18:22 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F20D737B405; Thu, 20 Dec 2001 01:18:19 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBK9IFN06287; Thu, 20 Dec 2001 01:18:15 -0800 (PST) (envelope-from ru) Date: Thu, 20 Dec 2001 01:18:15 -0800 (PST) From: Message-Id: <200112200918.fBK9IFN06287@freefall.freebsd.org> To: ru@FreeBSD.org, freebsd-bugs@FreeBSD.org, peter@FreeBSD.org Subject: Re: bin/32299: nm coredumps on sendmail in -current Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: nm coredumps on sendmail in -current Responsible-Changed-From-To: freebsd-bugs->peter Responsible-Changed-By: ru Responsible-Changed-When: Thu Dec 20 01:17:36 PST 2001 Responsible-Changed-Why: So Peter knows "of the origins of this patch". http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32299 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 20 2: 4:10 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3DB5437B43A; Thu, 20 Dec 2001 02:03:51 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBKA3ir12010; Thu, 20 Dec 2001 02:03:44 -0800 (PST) (envelope-from ru) Date: Thu, 20 Dec 2001 02:03:44 -0800 (PST) From: Message-Id: <200112201003.fBKA3ir12010@freefall.freebsd.org> To: ru@FreeBSD.org, freebsd-bugs@FreeBSD.org, sheldonh@FreeBSD.org Subject: Re: bin/33016: mount_smbfs Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: mount_smbfs Responsible-Changed-From-To: freebsd-bugs->sheldonh Responsible-Changed-By: ru Responsible-Changed-When: Thu Dec 20 02:03:07 PST 2001 Responsible-Changed-Why: Sheldon's last commits may have fixed part of this PR. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=33016 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 20 3:40:11 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 98A0537B41A for ; Thu, 20 Dec 2001 03:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBKBe2W31731; Thu, 20 Dec 2001 03:40:02 -0800 (PST) (envelope-from gnats) Date: Thu, 20 Dec 2001 03:40:02 -0800 (PST) Message-Id: <200112201140.fBKBe2W31731@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: misc/33013: mixer does not have treble/bass for Soundblaster Live! 5.1 Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR misc/33013; it has been noted by GNATS. From: Sheldon Hearn To: John Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: misc/33013: mixer does not have treble/bass for Soundblaster Live! 5.1 Date: Thu, 20 Dec 2001 13:32:48 +0200 On Wed, 19 Dec 2001 10:07:18 PST, John wrote: > >Number: 33013 > >Category: misc > >Synopsis: mixer does not have treble/bass for Soundblaster Live! 5.1 Are you sure this card actually provides these controls? I noticed way back when I switched from the original SB2 to the first one that used the Vibra chip, that treble and bass weren't supported at all by the chip itself (no support in Windows, even). Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 20 4:40: 6 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 216F137B417 for ; Thu, 20 Dec 2001 04:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBKCe1w49294; Thu, 20 Dec 2001 04:40:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CD82E37B416 for ; Thu, 20 Dec 2001 04:30:33 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBKCUXj48026; Thu, 20 Dec 2001 04:30:33 -0800 (PST) (envelope-from nobody) Message-Id: <200112201230.fBKCUXj48026@freefall.freebsd.org> Date: Thu, 20 Dec 2001 04:30:33 -0800 (PST) From: Ari Suutari To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/33027: i4bing panics during boot Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 33027 >Category: kern >Synopsis: i4bing panics during boot >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Dec 20 04:40:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Ari Suutari >Release: 4.4-RELEASE >Organization: Syncron Tech Oy >Environment: FreeBSD espresso.syncrontech.com 4.4-RELEASE FreeBSD 4.4-RELEASE #5: Thu Dec 20 14:19:41 EET 2001 root@espresso.syncrontech.com:/usr/src/sys/compile/ESPRESSO i386 >Description: If i4bing device (netgraph support for isdn4bsd) is compiled in kernel it panics during boot. >How-To-Repeat: >Fix: The problem is apparently caused by importing an older version of i4b_ing.c into -stable. To fix, change NETGRAPH_INIT(ing, &typestruct) to NETGRAPH_INIT_ORDERED(ing, &typestruct, SI_SUB_DRIVERS, SI_ORDER_ANY) Works OK for me after this change (tested with mpd) >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 20 7:30:29 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C294137B432 for ; Thu, 20 Dec 2001 07:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBKFU1Y05281; Thu, 20 Dec 2001 07:30:01 -0800 (PST) (envelope-from gnats) Received: from softwareliberty.org (freebsd.sinica.edu.tw [140.109.13.51]) by hub.freebsd.org (Postfix) with ESMTP id 91BDA37B417 for ; Thu, 20 Dec 2001 07:22:42 -0800 (PST) Received: by softwareliberty.org (Postfix, from userid 1014) id 4781E7526; Thu, 20 Dec 2001 23:22:45 +0800 (CST) Message-Id: <20011220152245.4781E7526@softwareliberty.org> Date: Thu, 20 Dec 2001 23:22:45 +0800 (CST) From: Statue Reply-To: Statue To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: i386/33028: /usr/src/share/mklocale/zh_TW.Big5.src typo error Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 33028 >Category: i386 >Synopsis: /usr/src/share/mklocale/zh_TW.Big5.src typo error >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 Dec 20 07:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Statue >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD freebsd.sinica.edu.tw 4.4-STABLE FreeBSD 4.4-STABLE #0: Tue Oct 9 02:45:16 CST 2001 ycheng@freebsd.sinica.edu.tw:/usr/src/sys/compile/FREEBSD i386 >Description: >How-To-Repeat: >Fix: --- share/mklocale/zh_TW.Big5.src.orig Thu Dec 20 23:14:10 2001 +++ share/mklocale/zh_TW.Big5.src Thu Dec 20 23:14:18 2001 @@ -187,7 +187,7 @@ SPECIAL 0xc8a5 - 0x08cc /* various Japanese symbols */ -SPECIAL 0x08cd - 0xc8d3 +SPECIAL 0xc8cd - 0xc8d3 /* line drawing glyphs */ SPECIAL 0xf9dd - 0xf9ff >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 20 8:30:54 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4766B37B41B for ; Thu, 20 Dec 2001 08:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBKGU1h17609; Thu, 20 Dec 2001 08:30:01 -0800 (PST) (envelope-from gnats) Received: from softwareliberty.org (freebsd.sinica.edu.tw [140.109.13.51]) by hub.freebsd.org (Postfix) with ESMTP id A9A0337B405 for ; Thu, 20 Dec 2001 08:25:41 -0800 (PST) Received: by softwareliberty.org (Postfix, from userid 1014) id 86E3A7526; Fri, 21 Dec 2001 00:25:44 +0800 (CST) Message-Id: <20011220162544.86E3A7526@softwareliberty.org> Date: Fri, 21 Dec 2001 00:25:44 +0800 (CST) From: Statue Reply-To: Statue To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: i386/33031: /usr/src/share/mklocale/zh_TW.Big5.src typo error Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 33031 >Category: i386 >Synopsis: /usr/src/share/mklocale/zh_TW.Big5.src typo error >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 Dec 20 08:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Statue >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD freebsd.sinica.edu.tw 4.4-STABLE FreeBSD 4.4-STABLE #0: Tue Oct 9 02:45:16 CST 2001 ycheng@freebsd.sinica.edu.tw:/usr/src/sys/compile/FREEBSD i386 >Description: some typo error and please replace pr=33028 >How-To-Repeat: >Fix: --- share/mklocale/zh_TW.Big5.src.orig Thu Dec 20 23:14:10 2001 +++ share/mklocale/zh_TW.Big5.src Fri Dec 21 00:07:02 2001 @@ -62,6 +62,8 @@ PHONOGRAM 0xa374 - 0xa37e 0xa3a1 - 0xa3bb /* tone symbols */ PHONOGRAM 0xa3bd - 0xa3bf +/* control */ +CONTROL 0xa3c0 - 0xa3fe /* greek */ UPPER 0xa344 - 0xa35b @@ -120,48 +122,48 @@ IDEOGRAM 0xcd40 - 0xcd7e 0xcda1 - 0xcdfe IDEOGRAM 0xce40 - 0xce7e 0xcea1 - 0xcefe IDEOGRAM 0xcf40 - 0xcf7e 0xcfa1 - 0xcffe -IDEOGRAM 0xd040 - 0xd074 0xd0a1 - 0xd0fe -IDEOGRAM 0xd140 - 0xd174 0xd1a1 - 0xd1fe -IDEOGRAM 0xd240 - 0xd274 0xd2a1 - 0xd2fe -IDEOGRAM 0xd340 - 0xd374 0xd3a1 - 0xd3fe -IDEOGRAM 0xd440 - 0xd474 0xd4a1 - 0xd4fe -IDEOGRAM 0xd540 - 0xd574 0xd5a1 - 0xd5fe -IDEOGRAM 0xd640 - 0xd674 0xd6a1 - 0xd6fe -IDEOGRAM 0xd740 - 0xd774 0xd7a1 - 0xd7fe -IDEOGRAM 0xd840 - 0xd874 0xd8a1 - 0xd8fe -IDEOGRAM 0xd940 - 0xd974 0xd9a1 - 0xd9fe -IDEOGRAM 0xda40 - 0xda74 0xdaa1 - 0xdafe -IDEOGRAM 0xdb40 - 0xdb74 0xdba1 - 0xdbfe -IDEOGRAM 0xdc40 - 0xdc74 0xdca1 - 0xdcfe -IDEOGRAM 0xdd40 - 0xdd74 0xdda1 - 0xddfe -IDEOGRAM 0xde40 - 0xde74 0xdea1 - 0xdefe -IDEOGRAM 0xdf40 - 0xdf74 0xdfa1 - 0xdffe -IDEOGRAM 0xe040 - 0xe074 0xe0a1 - 0xe0fe -IDEOGRAM 0xe140 - 0xe174 0xe1a1 - 0xe1fe -IDEOGRAM 0xe240 - 0xe274 0xe2a1 - 0xe2fe -IDEOGRAM 0xe340 - 0xe374 0xe3a1 - 0xe3fe -IDEOGRAM 0xe440 - 0xe474 0xe4a1 - 0xe4fe -IDEOGRAM 0xe540 - 0xe574 0xe5a1 - 0xe5fe -IDEOGRAM 0xe640 - 0xe674 0xe6a1 - 0xe6fe -IDEOGRAM 0xe740 - 0xe774 0xe7a1 - 0xe7fe -IDEOGRAM 0xe840 - 0xe874 0xe8a1 - 0xe8fe -IDEOGRAM 0xe940 - 0xe974 0xe9a1 - 0xe9fe -IDEOGRAM 0xea40 - 0xea74 0xeaa1 - 0xeafe -IDEOGRAM 0xeb40 - 0xeb74 0xeba1 - 0xebfe -IDEOGRAM 0xec40 - 0xec74 0xeca1 - 0xecfe -IDEOGRAM 0xed40 - 0xed74 0xeda1 - 0xedfe -IDEOGRAM 0xee40 - 0xee74 0xeea1 - 0xeefe -IDEOGRAM 0xef40 - 0xef74 0xefa1 - 0xeffe -IDEOGRAM 0xf040 - 0xf074 0xf0a1 - 0xf0fe -IDEOGRAM 0xf140 - 0xf174 0xf1a1 - 0xf1fe -IDEOGRAM 0xf240 - 0xf274 0xf2a1 - 0xf2fe -IDEOGRAM 0xf340 - 0xf374 0xf3a1 - 0xf3fe -IDEOGRAM 0xf440 - 0xf474 0xf4a1 - 0xf4fe -IDEOGRAM 0xf540 - 0xf574 0xf5a1 - 0xf5fe -IDEOGRAM 0xf640 - 0xf674 0xf6a1 - 0xf6fe -IDEOGRAM 0xf740 - 0xf774 0xf7a1 - 0xf7fe -IDEOGRAM 0xf840 - 0xf874 0xf8a1 - 0xf8fe -IDEOGRAM 0xf940 - 0xf974 0xf9a1 - 0xf9dc +IDEOGRAM 0xd040 - 0xd07e 0xd0a1 - 0xd0fe +IDEOGRAM 0xd140 - 0xd17e 0xd1a1 - 0xd1fe +IDEOGRAM 0xd240 - 0xd27e 0xd2a1 - 0xd2fe +IDEOGRAM 0xd340 - 0xd37e 0xd3a1 - 0xd3fe +IDEOGRAM 0xd440 - 0xd47e 0xd4a1 - 0xd4fe +IDEOGRAM 0xd540 - 0xd57e 0xd5a1 - 0xd5fe +IDEOGRAM 0xd640 - 0xd67e 0xd6a1 - 0xd6fe +IDEOGRAM 0xd740 - 0xd77e 0xd7a1 - 0xd7fe +IDEOGRAM 0xd840 - 0xd87e 0xd8a1 - 0xd8fe +IDEOGRAM 0xd940 - 0xd97e 0xd9a1 - 0xd9fe +IDEOGRAM 0xda40 - 0xda7e 0xdaa1 - 0xdafe +IDEOGRAM 0xdb40 - 0xdb7e 0xdba1 - 0xdbfe +IDEOGRAM 0xdc40 - 0xdc7e 0xdca1 - 0xdcfe +IDEOGRAM 0xdd40 - 0xdd7e 0xdda1 - 0xddfe +IDEOGRAM 0xde40 - 0xde7e 0xdea1 - 0xdefe +IDEOGRAM 0xdf40 - 0xdf7e 0xdfa1 - 0xdffe +IDEOGRAM 0xe040 - 0xe07e 0xe0a1 - 0xe0fe +IDEOGRAM 0xe140 - 0xe17e 0xe1a1 - 0xe1fe +IDEOGRAM 0xe240 - 0xe27e 0xe2a1 - 0xe2fe +IDEOGRAM 0xe340 - 0xe37e 0xe3a1 - 0xe3fe +IDEOGRAM 0xe440 - 0xe47e 0xe4a1 - 0xe4fe +IDEOGRAM 0xe540 - 0xe57e 0xe5a1 - 0xe5fe +IDEOGRAM 0xe640 - 0xe67e 0xe6a1 - 0xe6fe +IDEOGRAM 0xe740 - 0xe77e 0xe7a1 - 0xe7fe +IDEOGRAM 0xe840 - 0xe87e 0xe8a1 - 0xe8fe +IDEOGRAM 0xe940 - 0xe97e 0xe9a1 - 0xe9fe +IDEOGRAM 0xea40 - 0xea7e 0xeaa1 - 0xeafe +IDEOGRAM 0xeb40 - 0xeb7e 0xeba1 - 0xebfe +IDEOGRAM 0xec40 - 0xec7e 0xeca1 - 0xecfe +IDEOGRAM 0xed40 - 0xed7e 0xeda1 - 0xedfe +IDEOGRAM 0xee40 - 0xee7e 0xeea1 - 0xeefe +IDEOGRAM 0xef40 - 0xef7e 0xefa1 - 0xeffe +IDEOGRAM 0xf040 - 0xf07e 0xf0a1 - 0xf0fe +IDEOGRAM 0xf140 - 0xf17e 0xf1a1 - 0xf1fe +IDEOGRAM 0xf240 - 0xf27e 0xf2a1 - 0xf2fe +IDEOGRAM 0xf340 - 0xf37e 0xf3a1 - 0xf3fe +IDEOGRAM 0xf440 - 0xf47e 0xf4a1 - 0xf4fe +IDEOGRAM 0xf540 - 0xf57e 0xf5a1 - 0xf5fe +IDEOGRAM 0xf640 - 0xf67e 0xf6a1 - 0xf6fe +IDEOGRAM 0xf740 - 0xf77e 0xf7a1 - 0xf7fe +IDEOGRAM 0xf840 - 0xf87e 0xf8a1 - 0xf8fe +IDEOGRAM 0xf940 - 0xf97e 0xf9a1 - 0xf9dc /* Eten external charset 0xc6a1 - 0xc8d3 */ @@ -184,10 +186,10 @@ SPECIAL 0xc77b - 0xc77e 0xc7a1 - 0xc7f2 /* ZIP code (in Japan) */ -SPECIAL 0xc8a5 - 0x08cc +SPECIAL 0xc8a5 - 0xc8cc /* various Japanese symbols */ -SPECIAL 0x08cd - 0xc8d3 +SPECIAL 0xc8cd - 0xc8d3 /* line drawing glyphs */ SPECIAL 0xf9dd - 0xf9ff >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 20 8:49:55 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6C22337B419; Thu, 20 Dec 2001 08:49:53 -0800 (PST) Received: (from clive@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBKGkOJ20419; Thu, 20 Dec 2001 08:46:24 -0800 (PST) (envelope-from clive) Date: Thu, 20 Dec 2001 08:46:24 -0800 (PST) From: Message-Id: <200112201646.fBKGkOJ20419@freefall.freebsd.org> To: clive@FreeBSD.org, freebsd-bugs@FreeBSD.org, ache@FreeBSD.org Subject: Re: i386/33031: /usr/src/share/mklocale/zh_TW.Big5.src typo error Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: /usr/src/share/mklocale/zh_TW.Big5.src typo error Responsible-Changed-From-To: freebsd-bugs->ache Responsible-Changed-By: clive Responsible-Changed-When: Thu Dec 20 08:45:26 PST 2001 Responsible-Changed-Why: I believe that src/share/mklocale/ is ache's realm. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=33031 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 20 8:50:15 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8D73937B41B for ; Thu, 20 Dec 2001 08:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBKGo2t21022; Thu, 20 Dec 2001 08:50:02 -0800 (PST) (envelope-from gnats) Date: Thu, 20 Dec 2001 08:50:02 -0800 (PST) Message-Id: <200112201650.fBKGo2t21022@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Stephen Spencer Subject: Re: bin/23912: underflow of cnt in vs_paint() by O_NUMBER_LENGTH when both leftright and number options in use Reply-To: Stephen Spencer Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/23912; it has been noted by GNATS. From: Stephen Spencer To: freebsd-gnats-submit@FreeBSD.org, gladiatr@boneyard.lawrence.ks.us Cc: Subject: Re: bin/23912: underflow of cnt in vs_paint() by O_NUMBER_LENGTH when both leftright and number options in use Date: Thu, 20 Dec 2001 10:46:51 -0600 Sorry if this is a repeat, but my previous follow-ups never made it into the PR: > Does this problem still occur? I haven't been able to reproduce it. The answer to this is that it does indeed still exist. Line 125 of contrib/nvi/vi/vs_relative.c is still doing the wrong thing. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 20 9: 9:56 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2CA5937B416; Thu, 20 Dec 2001 09:09:53 -0800 (PST) Received: (from orion@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBKH0i322285; Thu, 20 Dec 2001 09:00:44 -0800 (PST) (envelope-from orion) Date: Thu, 20 Dec 2001 09:00:44 -0800 (PST) From: Message-Id: <200112201700.fBKH0i322285@freefall.freebsd.org> To: stijn@win.tue.nl, orion@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/29769: Kernel configuration hangs on i815e with pcm Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Kernel configuration hangs on i815e with pcm State-Changed-From-To: open->closed State-Changed-By: orion State-Changed-When: Thu Dec 20 08:54:56 PST 2001 State-Changed-Why: The ich audio did not check the interrupt status register and so failed to detect and clear certain interrupts. Fixed in both -CURRENT and -STABLE. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=29769 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 20 9: 9:59 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 83F7237B417; Thu, 20 Dec 2001 09:09:53 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBKH4H422629; Thu, 20 Dec 2001 09:04:17 -0800 (PST) (envelope-from ijliao) Date: Thu, 20 Dec 2001 09:04:17 -0800 (PST) From: Message-Id: <200112201704.fBKH4H422629@freefall.freebsd.org> To: ijliao@FreeBSD.org, freebsd-bugs@FreeBSD.org, ache@FreeBSD.org Subject: Re: i386/33028: /usr/src/share/mklocale/zh_TW.Big5.src typo error Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: /usr/src/share/mklocale/zh_TW.Big5.src typo error Responsible-Changed-From-To: freebsd-bugs->ache Responsible-Changed-By: ijliao Responsible-Changed-When: Thu Dec 20 09:03:39 PST 2001 Responsible-Changed-Why: ache's realm http://www.FreeBSD.org/cgi/query-pr.cgi?pr=33028 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 20 9:10:26 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2CC3137B41C for ; Thu, 20 Dec 2001 09:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBKHA1026662; Thu, 20 Dec 2001 09:10:01 -0800 (PST) (envelope-from gnats) Received: from mail.disney.com (mail.disney.com [204.128.192.15]) by hub.freebsd.org (Postfix) with ESMTP id 4F34237B417 for ; Thu, 20 Dec 2001 09:09:00 -0800 (PST) Received: from Hermes10.corp.disney.com (hermes10.corp.disney.com [153.7.110.102]) by mail.disney.com (Switch-2.2.0/Switch-2.2.0) with ESMTP id fBKH7Mf26028 for ; Thu, 20 Dec 2001 09:07:22 -0800 (PST) Received: from [172.30.50.1] by hermes.corp.disney.com with ESMTP for FreeBSD-gnats-submit@freebsd.org; Thu, 20 Dec 2001 09:08:15 -0800 Received: from plio.fan.fa.disney.com (plio.fan.fa.disney.com [153.7.118.2]) by pecos.fa.disney.com (8.11.3/8.11.3) with ESMTP id fBKH8v328157 for ; Thu, 20 Dec 2001 09:08:58 -0800 (PST) Received: from localhost.fan.fa.disney.com (snoopy.fan.fa.disney.com [172.30.5.103]) by plio.fan.fa.disney.com (8.9.2/8.9.2) with ESMTP id JAA00704 for ; Thu, 20 Dec 2001 09:08:57 -0800 (PST) (envelope-from pirzyk@mailhost) Received: (from pirzyk@localhost) by localhost.fan.fa.disney.com (8.11.6/8.11.6) id fBKH8wd02506; Thu, 20 Dec 2001 09:08:58 -0800 (PST) (envelope-from pirzyk) Message-Id: <200112201708.fBKH8wd02506@localhost.fan.fa.disney.com> Date: Thu, 20 Dec 2001 09:08:58 -0800 (PST) From: "Pirzyk, Jim" Reply-To: "Pirzyk, Jim" To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: kern/33032: Support for Intel 443MX chipset (and ATI Rage Mobility P/M) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 33032 >Category: kern >Synopsis: Support for Intel 443MX chipset (and ATI Rage Mobility P/M) >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 20 09:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Jim Pirzyk >Release: FreeBSD 4.4-RELEASE i386 >Organization: >Environment: System: FreeBSD snoopy 4.4-RELEASE FreeBSD 4.4-RELEASE #23: Wed Dec 19 22:26:52 PST 2001 root@snoopy:/usr/src/sys/compile/SNOOPY_KERNEL i386 I am using a Fujitsu Lifebook Series B (B2175) and it has the Intel 443MX chipset in it. >Description: This chipset is not recognized by FreeBSD completely, partially because the chips do not identify themselves correctly. This is the case with the Power management chip (it identifies itself as a PCI to other bridge chip, not an SMB chip as does the PCI to ISA chip). >How-To-Repeat: Install 4.4 on the above type of system. >Fix: *** ./pci/intpm.c.orig Wed Dec 19 22:16:01 2001 --- ./pci/intpm.c Wed Dec 19 22:15:35 2001 *************** *** 62,67 **** --- 62,68 ---- } pci_ids[] = { { 0x71138086,"Intel 82371AB Power management controller"}, + { 0x719b8086,"Intel 82443MX Power management controller"}, { 0x00000000, NULL } }; static int intsmb_probe(device_t); *** ./pci/pcisupport.c.orig Mon Dec 17 14:40:39 2001 --- ./pci/pcisupport.c Wed Dec 19 22:16:17 2001 *************** *** 886,891 **** --- 886,893 ---- return ("Intel 82371SB PCI to ISA bridge"); case 0x71108086: return ("Intel 82371AB PCI to ISA bridge"); + case 0x71988086: + return ("Intel 82443MX PCI to ISA bridge"); case 0x24108086: return ("Intel 82801AA (ICH) PCI to LPC bridge"); case 0x24208086: *************** *** 1200,1205 **** --- 1202,1209 ---- return ("Intel 82439TX System controller (MTXC)"); case 0x71138086: return ("Intel 82371AB Power management controller"); + case 0x719b8086: + return ("Intel 82443MX Power management controller"); case 0x12378086: fixwsc_natoma(dev); return ("Intel 82440FX (Natoma) PCI and memory controller"); *************** *** 1512,1517 **** --- 1516,1523 ---- chip = "Mach64-GX"; break; case 0x4c4d: chip = "Mobility-1"; break; + case 0x4c52: + chip = "RageMobility-P/M"; break; case 0x475a: chip = "Mach64-GZ"; break; case 0x5245: *** ./pci/pci.c.orig Wed Dec 19 22:17:08 2001 --- ./pci/pci.c Thu Dec 20 09:04:46 2001 *************** *** 79,87 **** struct pci_quirk pci_quirks[] = { /* ! * The Intel 82371AB has a map register at offset 0x90. */ { 0x71138086, PCI_QUIRK_MAP_REG, 0x90, 0 }, { 0 } }; --- 79,88 ---- struct pci_quirk pci_quirks[] = { /* ! * The Intel 82371AB and 82443MX has a map register at offset 0x90. */ { 0x71138086, PCI_QUIRK_MAP_REG, 0x90, 0 }, + { 0x719b8086, PCI_QUIRK_MAP_REG, 0x90, 0 }, { 0 } }; *** ./i386/isa/pcibus.c.orig Mon Dec 17 22:39:03 2001 --- ./i386/isa/pcibus.c Mon Dec 17 22:41:46 2001 *************** *** 76,81 **** --- 76,84 ---- case 0x71928086: s = "Intel 82443BX host to PCI bridge (AGP disabled)"; break; + case 0x71948086: + s = "Intel 82443MX host to PCI bridge"; + break; case 0x71a08086: s = "Intel 82443GX host to PCI bridge"; break; *** ./i386/conf/LINT.orig Thu Dec 20 09:06:27 2001 --- ./i386/conf/LINT Thu Dec 20 09:07:05 2001 *************** *** 1992,1998 **** # Supported SMB interfaces: # iicsmb I2C to SMB bridge with any iicbus interface # bktr brooktree848 I2C hardware interface ! # intpm Intel PIIX4 Power Management Unit # alpm Acer Aladdin-IV/V/Pro2 Power Management Unit # ichsmb Intel ICH SMBus controller chips (82801AA, 82801AB, 82801BA) # --- 1992,1998 ---- # Supported SMB interfaces: # iicsmb I2C to SMB bridge with any iicbus interface # bktr brooktree848 I2C hardware interface ! # intpm Intel PIIX4 (82371AB, 82443MX) Power Management Unit # alpm Acer Aladdin-IV/V/Pro2 Power Management Unit # ichsmb Intel ICH SMBus controller chips (82801AA, 82801AB, 82801BA) # >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 20 9:29:57 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3C1A837B419; Thu, 20 Dec 2001 09:29:53 -0800 (PST) Received: (from pirzyk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBKHMDe28646; Thu, 20 Dec 2001 09:22:13 -0800 (PST) (envelope-from pirzyk) Date: Thu, 20 Dec 2001 09:22:13 -0800 (PST) From: Message-Id: <200112201722.fBKHMDe28646@freefall.freebsd.org> To: pirzyk@FreeBSD.org, freebsd-bugs@FreeBSD.org, pirzyk@FreeBSD.org Subject: Re: kern/33032: Support for Intel 443MX chipset (and ATI Rage Mobility P/M) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Support for Intel 443MX chipset (and ATI Rage Mobility P/M) Responsible-Changed-From-To: freebsd-bugs->pirzyk Responsible-Changed-By: pirzyk Responsible-Changed-When: Thu Dec 20 09:21:58 PST 2001 Responsible-Changed-Why: pick up my own PR http://www.FreeBSD.org/cgi/query-pr.cgi?pr=33032 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 20 11:49:55 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CA03937B405; Thu, 20 Dec 2001 11:49:53 -0800 (PST) Received: (from pdeuskar@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBKJhA754576; Thu, 20 Dec 2001 11:43:10 -0800 (PST) (envelope-from pdeuskar) Date: Thu, 20 Dec 2001 11:43:10 -0800 (PST) From: Message-Id: <200112201943.fBKJhA754576@freefall.freebsd.org> To: jose@we.lc.ehu.es, pdeuskar@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/32993: new em(4) driver breaks kernel build when only src-sys is present Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: new em(4) driver breaks kernel build when only src-sys is present State-Changed-From-To: open->closed State-Changed-By: pdeuskar State-Changed-When: Thu Dec 20 11:41:29 PST 2001 State-Changed-Why: Removed unused stddef.h file from if_em.h. This was causing problems with compilation when only src-sys was present on the system. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32993 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 20 12:49:56 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 80FEC37B405; Thu, 20 Dec 2001 12:49:53 -0800 (PST) Received: (from ache@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBKKnXk65701; Thu, 20 Dec 2001 12:49:33 -0800 (PST) (envelope-from ache) Date: Thu, 20 Dec 2001 12:49:33 -0800 (PST) From: Message-Id: <200112202049.fBKKnXk65701@freefall.freebsd.org> To: kao@wiuu.kiev.ua, ache@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/32450: Ukrainian ISO 8859-5 locale files Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Ukrainian ISO 8859-5 locale files State-Changed-From-To: open->analyzed State-Changed-By: ache State-Changed-When: Thu Dec 20 12:49:10 PST 2001 State-Changed-Why: Committed into -current http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32450 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 20 13:10:15 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3B9E937B405 for ; Thu, 20 Dec 2001 13:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBKLA2D71007; Thu, 20 Dec 2001 13:10:02 -0800 (PST) (envelope-from gnats) Date: Thu, 20 Dec 2001 13:10:02 -0800 (PST) Message-Id: <200112202110.fBKLA2D71007@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: ian j hart Subject: Re: bin/32175: ssh-keygen -p core dumps Reply-To: ian j hart Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/32175; it has been noted by GNATS. From: ian j hart To: freebsd-gnats-submit@freebsd.org, anarcat@anarcat.dyndns.org Cc: Subject: Re: bin/32175: ssh-keygen -p core dumps Date: Thu, 20 Dec 2001 21:02:13 +0000 s/libssl/libssh/ Must remember to sleep. -- ian j hart To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 20 16: 0: 8 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DC09C37B419 for ; Thu, 20 Dec 2001 16:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBL001W97472; Thu, 20 Dec 2001 16:00:01 -0800 (PST) (envelope-from gnats) Date: Thu, 20 Dec 2001 16:00:01 -0800 (PST) Message-Id: <200112210000.fBL001W97472@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: John Subject: Re: misc/33013: mixer does not have treble/bass for Soundblaster Live! 5.1 Reply-To: John Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR misc/33013; it has been noted by GNATS. From: John To: Sheldon Hearn Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: misc/33013: mixer does not have treble/bass for Soundblaster Live! 5.1 Date: Thu, 20 Dec 2001 18:44:53 -0500 On Thu, 20 Dec 2001 13:32:48 +0200 Sheldon Hearn wrote: > > > On Wed, 19 Dec 2001 10:07:18 PST, John wrote: > > > >Number: 33013 > > >Category: misc > > >Synopsis: mixer does not have treble/bass for Soundblaster Live! 5.1 > > Are you sure this card actually provides these controls? I noticed way > back when I switched from the original SB2 to the first one that used > the Vibra chip, that treble and bass weren't supported at all by the > chip itself (no support in Windows, even). > > Ciao, > Sheldon. In Windows, I can go into advanced sound options and increase/decrease both treble and bass using that sliding bar. - John To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 20 18: 2: 9 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from infoviaplus.net.ar (adv18.infoviaplus.net.ar [200.9.212.60]) by hub.freebsd.org (Postfix) with ESMTP id 0319A37B416; Thu, 20 Dec 2001 18:02:02 -0800 (PST) Received: from Windows ([200.63.137.113]) by infoviaplus.net.ar (Tid InfoMail Exchanger v2.20) with SMTP id #1008898760.080420001; Thu, 20 Dec 2001 22:39:20 -0300 From: rssa To: "Y ahora que.....????????????" Reply-To: proyarge@yahoo.com.ar X-Mailer: MultiMailer (3.1.0) Subject: y ahora que Mime-Version: 1.0 Content-Type: text/html Content-Transfer-Encoding: quoted-printable X-Infomail-Spawn: rssa@speedy.com.ar a 200 destinos X-Infomail-Id: 1008898761.1F6A01AC1E039F.58761 Message-Id: <20011221020202.0319A37B416@hub.freebsd.org> Date: Thu, 20 Dec 2001 18:02:02 -0800 (PST) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org ;EL PUEBLO TENDRA QUE VOLVER A= SALIR A LA CALLE

    AHORA COMIENZA EL REPARTO DE= LA TORTA

    SE FUE CAVALLO Y de la= RUA, AHORA EMPIEZA LA VERDADERA BATALLA ENTRE LOS UD. NO= VOTO.-
    AHORA ES EL MOMENTO EN QUE PUERTA NO SABE= DURANTE CUANTO TIEMPO GOBERNARA

    AHORA ES EL MOMENTO EN QUE= RUCKAUFT, DUHALDE, de la SOTA, RODRIGUEZ SAA, REUTEMAN Y DEMAS= CON LA COMPLACENCIA DE LOS CORRUPTOS Y CILENTELISTAS DIPUTADOS Y= SENADORES DEBEN DECIDIR CUANDO SE LLAMA A ELECCIONES: EN UN MES;= DOS MESES; SEIS MESES; UN AÑO O RECIEN EN EL= 2003???????????????
    Y EN TANTO EL PUEBLO QUE= HACE?????????
    MIRA, USADO Y ESPERA A VER= SI LE DEVALUAN EL PESO Y EN CONSECUENCIA LE DEVALUAN EL SALARIO= PORQUE YA ESTAN NEGOCIANDO LOS LEGISLADORES JUSITICIALISTAS CON= LA UNION INDUSTRIAL.-
    LA BOLSA SOLO HOY SUBE MAS DEL= 17 %.-
    CUAL ES EL FUTURO SI NO HAY
    UN PROYECTO DE PAIS

    MIENTRAS NO SE REUNA UNA= NUEVA CONVENCION CONSTITUYENTE CON DIRIGENTES NUEVOS A NIVEL= NACIONAL Y DE CADA PROVINCIA; MIENTRAS NO SE IMPLEMENTE UN= SISTEMA DE GOBIERNO PALAMENTARIO; MIENTRAS NO SE RECONFIGURE LA= DISTRIBUICION GEOPOLITICA CON MENOS DE PROVINCIAS; MIENTRAS NO= SE DISMINUYAN LA CANTIDAD DE MUNICIPIOS Y OTRAS MUCHAS= CUESTIONES MAS
    EL PUEBLO DEBERA NECESARIAMENTE SALIR A LAS PLAZAS CON SUS= CACEROLAS

    FUTURO ARGENTINO
    To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 20 21:40: 7 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 81D9937B41C; Thu, 20 Dec 2001 21:40:03 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBL5VuY54752; Thu, 20 Dec 2001 21:31:56 -0800 (PST) (envelope-from ijliao) Date: Thu, 20 Dec 2001 21:31:56 -0800 (PST) From: Message-Id: <200112210531.fBL5VuY54752@freefall.freebsd.org> To: ijliao@FreeBSD.org, freebsd-bugs@FreeBSD.org, sada@FreeBSD.org Subject: Re: ports/25466: netscape navigator 4.7 package installation problem Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: netscape navigator 4.7 package installation problem Responsible-Changed-From-To: freebsd-bugs->sada Responsible-Changed-By: ijliao Responsible-Changed-When: Thu Dec 20 21:31:46 PST 2001 Responsible-Changed-Why: over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=25466 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 21 0: 1:55 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from mgate12.so-net.ne.jp (mgate12.so-net.ne.jp [210.139.254.159]) by hub.freebsd.org (Postfix) with ESMTP id B93A737B405; Fri, 21 Dec 2001 00:01:47 -0800 (PST) Received: from mail.bd6.so-net.ne.jp (mspool18.so-net.ne.jp [210.139.248.18]) by mgate12.so-net.ne.jp (8.9.3/3.7W01120319) with ESMTP id RAA07007; Fri, 21 Dec 2001 17:01:42 +0900 (JST) Received: from fun03 (p293658.tokynt01.ap.so-net.ne.jp [218.41.54.88]) by mail.bd6.so-net.ne.jp with SMTP id fBL81fK21848; Fri, 21 Dec 2001 17:01:41 +0900 (JST) Message-Id: <200112210801.fBL81fK21848@mail.bd6.so-net.ne.jp> Reply-To: "#fun-club@docomo.ne.jp" <#fun-club@docomo.ne.jp> From: "#fun-club@docomo.ne.jp" <#fun-club@docomo.ne.jp> Subject: http://www.fun-club.net Date: Fri, 21 Dec 2001 15:53:09 +0900 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-2022-jp" Content-Transfer-Encoding: 7bit To: undisclosed-recipients:; Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Ы▒√Ё≈©┌еЬР░╤┌g 18█к√╒√·┌╗▓f┌Х Ы▒┐}┐j┐A∙K▄╘Ы╘▐a▓J▌Э∙с┌л│g┐G┐b┐`GAL│`∙о▒т░l█х│C│∙┐█┐┼┐█┐┼ │y▒█░╗300√╪│zЬР│y░╤'┌х┌э'┐G┐b┐`│z ▌й░^∙t┐O┐┴┐r┐A√Ё≈©┌е▌w▓Х▐Z▐┼┌ж▀}▒≈Ы╘ Ы┌▓╢█▀┴ь┐r┐f┐IЫ·▀╜█s▌Ш≤^▒╠█s▓├! │y▀ф┼ENO1┌л∙i▒╣┌╕│∙┐}┐j┐A┐b┐N│z √Ё≈©┌е┬Й⌠x▄╘┌дЫ╘ ┌╒Ы·┌╠┌ф┐A┐▀┐┬ ▐зЫvhttp://www.fun-club.net ▐a▓J┐t┐@┐⌠┐N┐┴┐u Ы▒│┴■╜▌к┐I│`┌Г┌╒Ы▒ Ы▓│yH│zЫ▓│y░╤│zЫ▒Ы▓Ы▒Ы▓Ы▒Ы▓Ы▒Ы▓Ы▒ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 21 0:10:16 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8FCF737B41D for ; Fri, 21 Dec 2001 00:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBL8A2w83702; Fri, 21 Dec 2001 00:10:02 -0800 (PST) (envelope-from gnats) Received: from mail.tecdigital.net (tecdigital.tol.itesm.mx [132.254.97.16]) by hub.freebsd.org (Postfix) with ESMTP id 255F437B419 for ; Fri, 21 Dec 2001 00:07:41 -0800 (PST) Received: from gandalf.localdomain (unknown [148.243.246.246]) by mail.tecdigital.net (Postfix) with ESMTP id 1AB641D7D for ; Fri, 21 Dec 2001 02:07:41 -0600 (CST) Received: by gandalf.localdomain (Postfix, from userid 1000) id E84F71A2B; Fri, 21 Dec 2001 02:07:38 -0600 (CST) Message-Id: <20011221080738.E84F71A2B@gandalf.localdomain> Date: Fri, 21 Dec 2001 02:07:38 -0600 (CST) From: Mario Doria Reply-To: Mario Doria To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: misc/33053: Add support for UDMA100 on SiS 730 Chipset Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 33053 >Category: misc >Synopsis: Add support for UDMA100 on SiS 730 Chipset >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Dec 21 00:10:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: Mario Doria >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD gandalf.localdomain 4.4-STABLE FreeBSD 4.4-STABLE #0: Mon Dec 17 12:30:56 CST 2001 madd@gandalf.localdomain:/usr/obj/usr/src/sys/GANDALF i386 >Description: My SiS 730S chipset is recognized as a SiS 5591, so I cannot get to work UDMA over 33MB. The chipset is capable of doing UDMA100, this was tested using Windoze 2000. Here's my pciconf -l output: chip0@pci0:0:0: class=0x060000 card=0x00000000 chip=0x07301039 rev=0x02 hdr=0x00 atapci0@pci0:0:1: class=0x010180 card=0x0a011019 chip=0x55131039 rev=0xd0 hdr=0x00 isab0@pci0:1:0: class=0x060100 card=0x00000000 chip=0x00081039 rev=0x00 hdr=0x00 ohci0@pci0:1:2: class=0x0c0310 card=0x70011039 chip=0x70011039 rev=0x07 hdr=0x00 ohci1@pci0:1:3: class=0x0c0310 card=0x70001039 chip=0x70011039 rev=0x07 hdr=0x00 pcib2@pci0:2:0: class=0x060400 card=0x00000000 chip=0x00011039 rev=0x00 hdr=0x01 rl0@pci0:9:0: class=0x020000 card=0x813910ec chip=0x813910ec rev=0x10 hdr=0x00 pcm0@pci0:11:0: class=0x040100 card=0x00000000 chip=0x60051013 rev=0x01 hdr=0x00 none0@pci1:0:0: class=0x030000 card=0x88081462 chip=0x002d10de rev=0x15 hdr=0x00 Here's relevant DMESG output: Copyright (c) 1992-2001 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 4.4-STABLE #0: Mon Dec 17 12:30:56 CST 2001 madd@gandalf.localdomain:/usr/obj/usr/src/sys/GANDALF Timecounter "i8254" frequency 1193182 Hz CPU: AMD Duron(tm) processor (952.16-MHz 686-class CPU) Origin = "AuthenticAMD" Id = 0x631 Stepping = 1 Features=0x183f9ff AMD Features=0xc0440000<,AMIE,DSP,3DNow!> real memory = 402587648 (393152K bytes) avail memory = 387833856 (378744K bytes) Preloaded elf kernel "kernel" at 0xc03ae000. netsmb_dev: loaded Pentium Pro MTRR support enabled md0: Malloc disk Using $PIR table, 6 entries at 0xc00fddf0 apm0: on motherboard apm: found APM BIOS v1.2, connected at v1.2 npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 atapci0: port 0x4000-0x400f at device 0.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 isab0: at device 1.0 on pci0 isa0: on isab0 ohci0: mem 0xd5011000-0xd5011fff irq 9 at device 1.2 on pci0 usb0: SMM does not respond, resetting usb0: on ohci0 ad0: 39093MB [79428/16/63] at ata0-master UDMA33 acd0: CDROM at ata1-master using PIO4 Mounting root from ufs:/dev/ad0s3a From the manufacturer (ECS Elitegroup): K7SEM SiS╝ 730S Chipset ...and two PCI Bus Master Ultra DMA (UDMA) ports that support up to four ATAPI (AT Attachment Packet Interface) devices. The PCI IDE also supports PIO Mode 3 and 4, UDMA33/66/100 IDE... >How-To-Repeat: Use this chipset. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 21 8:40: 6 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C7D3C37B417 for ; Fri, 21 Dec 2001 08:40:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBLGe0K01643; Fri, 21 Dec 2001 08:40:00 -0800 (PST) (envelope-from gnats) Received: from tensor.xs4all.nl (tensor.xs4all.nl [213.84.53.200]) by hub.freebsd.org (Postfix) with ESMTP id 033FB37B421 for ; Fri, 21 Dec 2001 08:36:47 -0800 (PST) Received: by tensor.xs4all.nl (Postfix, from userid 1000) id 7B0383E38; Fri, 21 Dec 2001 17:36:45 +0100 (CET) Message-Id: <20011221163645.7B0383E38@tensor.xs4all.nl> Date: Fri, 21 Dec 2001 17:36:45 +0100 (CET) From: Dimitry Andric Reply-To: Dimitry Andric To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: conf/33065: default nsmb.conf file contains old pathname Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 33065 >Category: conf >Synopsis: default nsmb.conf file contains old pathname >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 Dec 21 08:40:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Dimitry Andric >Release: FreeBSD 4.5-PRERELEASE i386 >Organization: n/a >Environment: System: FreeBSD tensor.xs4all.nl 4.5-PRERELEASE FreeBSD 4.5-PRERELEASE #0: Fri Dec 21 04:19:53 CET 2001 root@tensor.xs4all.nl:/usr/obj/usr/src/sys/TENSOR i386 >Description: It seems the smbfs port was imported into the core system at last. However, in the default /etc/nsmb.conf file, there's still mention of /usr/local/etc/nsmb.conf :) >How-To-Repeat: Update to 4.5-PRERELEASE less /etc/nsmb.conf >Fix: diff -ud etc/nsmb.conf.orig etc/nsmb.conf --- etc/nsmb.conf.orig Tue Dec 18 13:53:14 2001 +++ etc/nsmb.conf Fri Dec 21 17:31:42 2001 @@ -2,7 +2,7 @@ # # smbfs lookups configuration files in next order: # 1. ~/.nsmbrc -# 2. /usr/local/etc/nsmb.conf - if this file found it will +# 2. /etc/nsmb.conf - if this file found it will # override values with same keys from user files. # # >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 21 8:49:57 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 65F4237B405; Fri, 21 Dec 2001 08:49:55 -0800 (PST) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBLGm8102723; Fri, 21 Dec 2001 08:48:08 -0800 (PST) (envelope-from dwmalone) Date: Fri, 21 Dec 2001 08:48:08 -0800 (PST) From: Message-Id: <200112211648.fBLGm8102723@freefall.freebsd.org> To: dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org, sheldonh@FreeBSD.org Subject: Re: conf/33065: default nsmb.conf file contains old pathname Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: default nsmb.conf file contains old pathname Responsible-Changed-From-To: freebsd-bugs->sheldonh Responsible-Changed-By: dwmalone Responsible-Changed-When: Fri Dec 21 08:47:42 PST 2001 Responsible-Changed-Why: Sheldon imported the smb stuff. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=33065 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 21 9:10: 7 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 983B837B41C for ; Fri, 21 Dec 2001 09:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBLHA1Q08529; Fri, 21 Dec 2001 09:10:01 -0800 (PST) (envelope-from gnats) Received: from blackhelicopters.org (geburah.blackhelicopters.org [209.69.178.18]) by hub.freebsd.org (Postfix) with ESMTP id 46C1637B405 for ; Fri, 21 Dec 2001 09:08:44 -0800 (PST) Received: (from mwlucas@localhost) by blackhelicopters.org (8.11.6/8.11.6) id fBLH8eB98681; Fri, 21 Dec 2001 12:08:40 -0500 (EST) (envelope-from mwlucas) Message-Id: <200112211708.fBLH8eB98681@blackhelicopters.org> Date: Fri, 21 Dec 2001 12:08:40 -0500 (EST) From: Michael Lucas Reply-To: Michael Lucas To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/33066: sysinstall does not write to new disks as expected Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 33066 >Category: bin >Synopsis: sysinstall does not write to new disks as expected >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 Dec 21 09:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Michael Lucas >Release: FreeBSD 4.4-RELEASE i386 >Organization: FreeBSD >Environment: System: FreeBSD blackhelicopters.org 4.4-RELEASE FreeBSD 4.4-RELEASE #0: Tue Sep 18 11:57:08 PDT 2001 murray@builder.FreeBSD.org:/usr/src/sys/compile/GENERIC i386 >Description: sysinstall does not newfs & label new disks as you would expect. >How-To-Repeat: Install a new disk in an existing system. Fire up sysinstall, go to disk menu. At the partitioning screen, if you just hit "w" nothing happens. I would expect the disk to be labeled & newfs'd. If you check the "formatting options" on a partition, and then hit "w", it works as expected. >Fix: No clue. rwatson asked me to send in this PR, so here you go. :) >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 21 9:35:18 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id E3CE237B416; Fri, 21 Dec 2001 09:35:09 -0800 (PST) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id fBLHZ2d34784; Fri, 21 Dec 2001 19:35:02 +0200 (EET) (envelope-from ru) Date: Fri, 21 Dec 2001 19:35:02 +0200 From: Ruslan Ermilov To: dwmalone@FreeBSD.ORG Cc: freebsd-bugs@FreeBSD.ORG, sheldonh@FreeBSD.ORG Subject: Re: conf/33065: default nsmb.conf file contains old pathname Message-ID: <20011221193502.B33371@sunbay.com> References: <200112211648.fBLGm8102723@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200112211648.fBLGm8102723@freefall.freebsd.org> User-Agent: Mutt/1.3.23i Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Fri, Dec 21, 2001 at 08:48:08AM -0800, dwmalone@FreeBSD.ORG wrote: > Synopsis: default nsmb.conf file contains old pathname > > Responsible-Changed-From-To: freebsd-bugs->sheldonh > Responsible-Changed-By: dwmalone > Responsible-Changed-When: Fri Dec 21 08:47:42 PST 2001 > Responsible-Changed-Why: > Sheldon imported the smb stuff. > And already fixed this in a later revision. :-) Cheers, -- Ruslan Ermilov Oracle Developer/DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 21 9:41:24 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from axl.seasidesoftware.co.za (axl.seasidesoftware.co.za [196.31.7.201]) by hub.freebsd.org (Postfix) with ESMTP id 2AE2837B416; Fri, 21 Dec 2001 09:41:18 -0800 (PST) Received: from sheldonh (helo=axl.seasidesoftware.co.za) by axl.seasidesoftware.co.za with local-esmtp (Exim 3.33 #1) id 16HThP-000G7F-00; Fri, 21 Dec 2001 19:43:11 +0200 From: Sheldon Hearn To: Ruslan Ermilov Cc: dwmalone@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: conf/33065: default nsmb.conf file contains old pathname In-reply-to: Your message of "Fri, 21 Dec 2001 19:35:02 +0200." <20011221193502.B33371@sunbay.com> Date: Fri, 21 Dec 2001 19:43:11 +0200 Message-ID: <61952.1008956591@axl.seasidesoftware.co.za> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Fri, 21 Dec 2001 19:35:02 +0200, Ruslan Ermilov wrote: > > Responsible-Changed-From-To: freebsd-bugs->sheldonh > > Responsible-Changed-By: dwmalone > > Responsible-Changed-When: Fri Dec 21 08:47:42 PST 2001 > > Responsible-Changed-Why: > > Sheldon imported the smb stuff. > > > And already fixed this in a later revision. :-) I don't mind. I would much rather have helpful people like David assign me instantly closeable PR's than miss the ones I should be looking at. :) Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 21 10:20:15 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3228A37B419 for ; Fri, 21 Dec 2001 10:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBLIK1041140; Fri, 21 Dec 2001 10:20:01 -0800 (PST) (envelope-from gnats) Received: from tensor.xs4all.nl (tensor.xs4all.nl [213.84.53.200]) by hub.freebsd.org (Postfix) with ESMTP id 3F8F737B417 for ; Fri, 21 Dec 2001 10:11:26 -0800 (PST) Received: by tensor.xs4all.nl (Postfix, from userid 1000) id 4B57E3E38; Fri, 21 Dec 2001 19:11:24 +0100 (CET) Message-Id: <20011221181124.4B57E3E38@tensor.xs4all.nl> Date: Fri, 21 Dec 2001 19:11:24 +0100 (CET) From: Dimitry Andric Reply-To: Dimitry Andric To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/33068: /dev/nsmb* devices not created with make world Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 33068 >Category: bin >Synopsis: /dev/nsmb* devices not created with make world >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 Dec 21 10:20:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Dimitry Andric >Release: FreeBSD 4.5-PRERELEASE i386 >Organization: n/a >Environment: System: FreeBSD tensor.xs4all.nl 4.5-PRERELEASE FreeBSD 4.5-PRERELEASE #0: Fri Dec 21 04:19:53 CET 2001 root@tensor.xs4all.nl:/usr/obj/usr/src/sys/TENSOR i386 >Description: When smbfs was still a port, its Makefile created the required (at least on -STABLE, without devfs) /dev/nsmb0 device during the install phase. Now that smbfs has been imported into the base system, this doesn't seem to be the case anymore, leading to mount_smbfs etc failing. Also, MAKEDEV seems to be missing code to create these nsmb* devices. >How-To-Repeat: Uninstall any smbfs ports Update to 4.5-PRERELEASE Try "mount_smbfs //LUSER@WINBOX/C$ /mnt", you'll get: mount_smbfs: can't get handle to requester (no /dev/net/nsmb* device) Also note that "/dev/net/nsmb*" in the message could be bisleading, it should probably be "/dev/nsmb*", or even "/dev/"NSMB_NAME. >Fix: I'm not sure about this. The nsmb* devices can be created as part of installworld, or they can simply be added to the MAKEDEV script, as in the following patch. It also creates nsmb0 and nsmb1 as part of "MAKEDEV all", which seems reasonable to me. The devices are created with default owner/group (root/wheel) and permissions (0600), as the smbfs port has always done. Note that I'm just guessing that an nsmb1 device can exist or makes any sense. I haven't been able to find much documentation about that, except the source. ;) There seems to be no nsmb(4) man page available, alas. diff -ud etc/MAKEDEV.orig etc/MAKEDEV --- MAKEDEV.orig Tue Dec 18 05:18:23 2001 +++ MAKEDEV Fri Dec 21 18:54:32 2001 @@ -334,6 +334,7 @@ sh MAKEDEV i4btel0 i4btel1 i4bteld0 i4bteld1 # cdev, ISDN sh MAKEDEV i4brbch0 i4brbch1 # cdev, ISDN sh MAKEDEV agpgart # cdev, AGP + sh MAKEDEV nsmb0 nsmb1 # cdev, smbfs device ;; # a much restricted set of the above, to save precious i-nodes on the @@ -1799,6 +1800,11 @@ cfs*) unit=`expr $i : 'cfs\(.*\)'` mknod cfs$unit c 93 $unit root:operator + ;; + +nsmb*) + unit=`expr $i : 'nsmb\(.*\)'` + mknod nsmb$unit c 144 $unit ;; local) >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 21 11:50: 0 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0AE2037B417; Fri, 21 Dec 2001 11:49:56 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBLJjOH55179; Fri, 21 Dec 2001 11:45:24 -0800 (PST) (envelope-from ru) Date: Fri, 21 Dec 2001 11:45:24 -0800 (PST) From: Message-Id: <200112211945.fBLJjOH55179@freefall.freebsd.org> To: ru@FreeBSD.org, freebsd-bugs@FreeBSD.org, sheldonh@FreeBSD.org Subject: Re: bin/33068: /dev/nsmb* devices not created with make world Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: /dev/nsmb* devices not created with make world Responsible-Changed-From-To: freebsd-bugs->sheldonh Responsible-Changed-By: ru Responsible-Changed-When: Fri Dec 21 11:44:46 PST 2001 Responsible-Changed-Why: Sheldon, can we please fix this ASAP? http://www.FreeBSD.org/cgi/query-pr.cgi?pr=33068 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 21 14:10:13 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BDF1937B417 for ; Fri, 21 Dec 2001 14:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBLMA1J83912; Fri, 21 Dec 2001 14:10:01 -0800 (PST) (envelope-from gnats) Received: from tomts10-srv.bellnexxia.net (tomts10.bellnexxia.net [209.226.175.54]) by hub.freebsd.org (Postfix) with ESMTP id 14ECB37B419 for ; Fri, 21 Dec 2001 14:06:05 -0800 (PST) Received: from khan.anarcat.dyndns.org ([65.94.189.35]) by tomts10-srv.bellnexxia.net (InterMail vM.4.01.03.16 201-229-121-116-20010115) with ESMTP id <20011221220604.DGIA24174.tomts10-srv.bellnexxia.net@khan.anarcat.dyndns.org> for ; Fri, 21 Dec 2001 17:06:04 -0500 Received: from shall.anarcat.dyndns.org (shall.anarcat.dyndns.org [192.168.0.1]) by khan.anarcat.dyndns.org (Postfix) with ESMTP id 20FC6190B; Fri, 21 Dec 2001 17:06:00 -0500 (EST) Received: by shall.anarcat.dyndns.org (Postfix, from userid 1000) id 8DEB020ACD; Fri, 21 Dec 2001 17:05:58 -0500 (EST) Message-Id: <20011221220558.8DEB020ACD@shall.anarcat.dyndns.org> Date: Fri, 21 Dec 2001 17:05:58 -0500 (EST) From: The Anarcat Reply-To: The Anarcat To: FreeBSD-gnats-submit@freebsd.org Cc: anarcat@anarcat.dyndns.org X-Send-Pr-Version: 3.113 Subject: bin/33070: libdisk::Disk_Names() returns empty strings Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 33070 >Category: bin >Synopsis: libdisk::Disk_Names() returns empty strings >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Dec 21 14:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: The Anarcat >Release: FreeBSD 4.4-STABLE i386 >Organization: Nada, Inc. >Environment: System: FreeBSD shall.anarcat.dyndns.org 4.4-STABLE FreeBSD 4.4-STABLE #0: Fri Nov 16 12:57:38 EST 2001 anarcat@shall.anarcat.dyndns.org:/usr/obj/usr/src/sys/SHALL i386 >Description: Some recent MFC broke Disk_Names() on -stable: revision 1.50.2.13.2.1 date: 2001/09/18 15:16:21; author: murray; state: Exp; lines: +2 -2 MFS: Don't use kern.disks sysctl. Makefile (rev 1.27.2.5) disk.c (rev 1.50.2.14) The diff is: ndex: disk.c =================================================================== RCS file: /home/ncvs/src/lib/libdisk/disk.c,v retrieving revision 1.50.2.13 retrieving revision 1.50.2.13.2.1 diff -u -r1.50.2.13 -r1.50.2.13.2.1 --- disk.c 28 Aug 2001 03:45:47 -0000 1.50.2.13 +++ disk.c 18 Sep 2001 15:16:21 -0000 1.50.2.13.2.1 @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. * Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $FreeBSD: src/lib/libdisk/disk.c,v 1.50.2.13 2001/08/28 03:45:47 nyan Exp $ + * $FreeBSD: src/lib/libdisk/disk.c,v 1.50.2.13.2.1 2001/09/18 15:16:21 murray Exp $ * */ @@ -499,7 +499,7 @@ disks = malloc(sizeof *disks * (1 + MAX_NO_DISKS)); memset(disks,0,sizeof *disks * (1 + MAX_NO_DISKS)); -#ifndef PC98 +#if !defined(PC98) && !defined(KERN_DISKS_BROKEN) error = sysctlbyname("kern.disks", NULL, &listsize, NULL, 0); if (!error) { disklist = (char *)malloc(listsize); I do not understand why, but Disk_Names() returns a pointer to a list of NULL strings. This is weird. It definitly breaks libh's libdisk. >How-To-Repeat: #include extern "C" { #include #include } int main() { char** names = ::Disk_Names(); cerr << "n: " << names << endl; for (char **n = names; *n != NULL; n++) { cerr << "disk" << *n << endl; } return 1; } Simply returns with "n: 0x..." gdb also gives us the same sad stuff. >Fix: Back out the change. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 21 15:30:26 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 194E437B417 for ; Fri, 21 Dec 2001 15:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBLNU1i96687; Fri, 21 Dec 2001 15:30:01 -0800 (PST) (envelope-from gnats) Received: from astart2.astart.com (tcubed-gw.customer.nethere.net [216.188.53.211]) by hub.freebsd.org (Postfix) with ESMTP id 85A5037B417 for ; Fri, 21 Dec 2001 15:20:53 -0800 (PST) Received: from h110.private (h110.private [10.0.0.110]) by astart2.astart.com (8.11.6/8.11.6) with ESMTP id fBLNKqs08617 for ; Fri, 21 Dec 2001 15:20:53 -0800 (PST) (envelope-from papowell@astart.com) Received: (from papowell@localhost) by h110.private (8.11.3/8.11.3) id fBLNKqi73181; Fri, 21 Dec 2001 15:20:52 -0800 (PST) (envelope-from papowell) Message-Id: <200112212320.fBLNKqi73181@h110.private> Date: Fri, 21 Dec 2001 15:20:52 -0800 (PST) From: papowell@astart.com Reply-To: papowell@astart.com To: FreeBSD-gnats-submit@freebsd.org Cc: papowell@h110.private X-Send-Pr-Version: 3.113 Subject: kern/33074: USB printer support does not detect printers Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 33074 >Category: kern >Synopsis: USB printer support does not detect printers >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 Dec 21 15:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Patrick Powell >Release: FreeBSD 4.4-RELEASE i386 >Organization: LPRng.com >Environment: Tested on FreeBSD 4.4-RELEASE >Description: System: various, including ASUS A7V. Does not appear to be a motherboard/system issue. PRINTER: HP2200, HP Deskjet, Ricoh (i.e. - not a printer issue) Note: RedHat Linux does detection, as does MS 2000, so it does not appear to be defective combination >How-To-Repeat: 1. start GENERIC system. Plug and Play USB support is enabled. 2. kill usbd (killall usbd) 3. start usbd: usbd -v -d usbd: opened /dev/usb0 usbd: reading configuration file /etc/usbd.conf usbd: opened /dev/usb usbd: detach event at 1008976442.172197000, product 0x0217, Hewlett Packard: vndr=0x03f0 prdct=0x0217 rlse=0x0100 clss=0x0000 subclss=0x0000 prtcl=0x0000 usbd: Found action 'Printer' for product 0x0217, Hewlett Packard usbd: attach event at 1008976447.059681000, HP LaserJet 2200, HewLett Packard: vndr=0x03f0 prdct=0x0217 rlse=0x0100 clss=0x0000 subclss=0x0000 prtcl=0x0000 usbd: Found action 'Printer' for HP LaserJet 2200, HewLett Packard usbd: Executing '/usr/bin/uprinter ${DEVNAME}' usbd.conf has the following added: # The entry below starts moused when a mouse is plugged in. Moused # stops automatically (actually it bombs :) when the device disappears. # device "Printer" class 0x0000 attach "/usr/bin/uprinter ${DEVNAME}" Note: /usr/bin/uprinter is just: #!/bin/sh echo "$0" "$@" >/tmp/log printenv >>/tmp/log exit 0 and we get in /tmp/log: /usr/bin/uprinter ugen0 DEVNAME=ugen0 ----- Basically, it appears that the ulpt driver is either not being called during the probing, or it is not detecting the HP printer. This is, as they say, VERY odd. However, /dev/ugen0.1 is attached to the printer, and you can write data to it. I am totally baffled. >Fix: I sure would like to know... >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 21 18: 1:19 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5A11937B41A; Fri, 21 Dec 2001 18:01:17 -0800 (PST) Received: (from chern@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBM1wZL23404; Fri, 21 Dec 2001 17:58:35 -0800 (PST) (envelope-from chern) Date: Fri, 21 Dec 2001 17:58:35 -0800 (PST) From: Message-Id: <200112220158.fBM1wZL23404@freefall.freebsd.org> To: sdn@sprintlabs.com, chern@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/31224: XFree4.1 fails to run on Intel i810 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: XFree4.1 fails to run on Intel i810 State-Changed-From-To: open->closed State-Changed-By: chern State-Changed-When: Fri Dec 21 17:57:32 PST 2001 State-Changed-Why: Originator not responding, problem reported is documented w/ solution in Handbook/X/Configuration. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31224 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 21 18: 1:19 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E7AD437B405; Fri, 21 Dec 2001 18:01:16 -0800 (PST) Received: (from chern@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBM1uSV23063; Fri, 21 Dec 2001 17:56:28 -0800 (PST) (envelope-from chern) Date: Fri, 21 Dec 2001 17:56:28 -0800 (PST) From: Message-Id: <200112220156.fBM1uSV23063@freefall.freebsd.org> To: guidi@if.usp.br, chern@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/31512: Burncd faillure on Creative's CDRW Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Burncd faillure on Creative's CDRW State-Changed-From-To: analyzed->closed State-Changed-By: chern State-Changed-When: Fri Dec 21 17:56:06 PST 2001 State-Changed-Why: Originator is not responding, and is using an unsupported CD-RW drive. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31512 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 21 19:15:36 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from netcop.newsbastards.org (pop-mu-9-2-dialup-120.freesurf.ch [194.230.146.120]) by hub.freebsd.org (Postfix) with ESMTP id 8B1DE37B41F for ; Fri, 21 Dec 2001 19:14:27 -0800 (PST) Received: (from root@localhost) by dastardly.newsbastards.org (8.11.6/8.11.6) id fBM1OfD85379; Sat, 22 Dec 2001 02:24:41 +0100 (CET) (envelope-from bounce@dcf77-zeit.netscum.dyndns.dk) Date: Sat, 22 Dec 2001 02:24:41 +0100 (CET) Message-Id: <200112220124.fBM1OfD85379@dastardly.newsbastards.org> To: freebsd-bugs@freebsd.org Subject: changing MAKEOBJDIRPREFIX crashes buildworld with read-only src From: BOUWSMA Beery Organization: Men not wearing any pants that dont shave X-Hacked: via telnet to your port 25, what else? X-Internet-Access-Provided-By: TDC Suisse AG, Rumlang X-NetScum: Yes X-One-And-Only-Real-True-Fluffy: No Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org [replies sent directly to me may timeout and bounce, since I'm not online as often as I should be, but I'll check the list archives] This is 4.4-stable that I could have hosed but I think I fixed it I've got /usr/src mounted read-only, and I have a buildworld happening in /usr/obj, while I've decided to start building world somewhere else, like /usr/obj/4.4-STABLE When I do so, the `make depend' promptly fails. -------------------------------------------------------------- >>> Rebuilding the temporary build tree -------------------------------------------------------------- rm -rf /usr/obj/4.4-STABLE/usr/src/i386 mkdir -p /usr/obj/4.4-STABLE/usr/src/i386/usr/bin [...] ln -sf /usr/src/sys /usr/obj/4.4-STABLE/usr/src/i386 -------------------------------------------------------------- >>> stage 1: bootstrap tools -------------------------------------------------------------- cd /usr/src; MAKEOBJDIRPREFIX=/usr/obj/4.4-STABLE/usr/src/i386 DESTDIR=/usr/obj /4.4-STABLE/usr/src/i386 INSTALL="sh /usr/src/tools/install.sh" MACHINE_ARCH=i 386 TOOLS_PREFIX=/usr/obj/4.4-STABLE/usr/src/i386 PATH=/usr/obj/4.4-STABLE/usr /src/i386/usr/sbin:/usr/obj/4.4-STABLE/usr/src/i386/usr/bin:/usr/obj/4.4-STABLE/ usr/src/i386/usr/games:/sbin:/bin:/usr/sbin:/usr/bin make -f Makefile.inc1 -DBOO TSTRAPPING -DNOHTML -DNOINFO -DNOMAN -DNOPIC -DNOPROFILE -DNOSHARED bootstrap-t ools cd /usr/src/games/fortune/strfile; make obj; make depend; make all; make ins tall rm -f .depend mkdep -f .depend -a strfile.c /usr/bin/mkdep: cannot create _mkdep55632: read-only file system *** Error code 2 Stop in /usr/src/games/fortune/strfile. *** Error code 1 Stop in /usr/src. The buildworld in just /usr/obj runs fine with read-only /usr/src. Oh yeah, this just in -- a `buildkernel' attempt with the -stable src/Makefile.inc1 hacked to pull the kernel config from KERNCONFDIR also fails with a similar error: [...] ===> wi /usr/obj/4.4-STABLE/usr/src/sys/modules/wi created for /usr/src/sys/modules/wi ===> accf_data @ -> /usr/src/sys ln: @: Read-only file system *** Error code 1 Stop in /usr/src/sys/modules/accf_data. *** Error code 1 Stop in /usr/src/sys/modules. Guess I'll do it the normal way for now... thanks barry bouwsma To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 22 0:30:52 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CD99E37B41D for ; Sat, 22 Dec 2001 00:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBM8U1I80090; Sat, 22 Dec 2001 00:30:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F174337B405 for ; Sat, 22 Dec 2001 00:29:30 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBM8TUa80015; Sat, 22 Dec 2001 00:29:30 -0800 (PST) (envelope-from nobody) Message-Id: <200112220829.fBM8TUa80015@freefall.freebsd.org> Date: Sat, 22 Dec 2001 00:29:30 -0800 (PST) From: Ted Mittelstaedt To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/33083: New VT520 and 525 termcap and terminfo information needs to be added Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 33083 >Category: misc >Synopsis: New VT520 and 525 termcap and terminfo information needs to be added >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 22 00:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Ted Mittelstaedt >Release: FreeBSD 4.4 >Organization: >Environment: Not relevant >Description: The /etc/termcap database is missing information about the newest generation of Digital Equipment terminals (now manufactured by Boundless (http://www.boundless.com) the VT 520 and VT 525 series. Termcap and terminfo entries are available at ftp://gatekeeper.dec.com/pub/DEC/termcaps ready to be entered into the system. >How-To-Repeat: >Fix: add entries at ftp://gatekeeper.dec.com/pub/DEC/termcaps. The entries are here: # # vt520.tc (9/30/94) # # VT520/VT525 # # The VT520 is a monochrome text terminal capable of managing up to # four independent sessions in the terminal. It has multiple ANSI # emulations (VT520, VT420, VT320, VT220, VT100, VT PCTerm, SCO Console) # and ASCII emulations (WY160/60, PCTerm, 50/50+, 150/120, TVI 950, # 925 910+, ADDS A2). This termcap data is for the ANSI emulations only. # SCO Console emulation uses the "ansi" entry. Existing ASCII termcap # entries are used with the ASCII emulations. # # Terminal Set-Up is entered by pressing [F3], [Caps Lock]/[F3] or # [Alt]/[Print Screen] depending upon which keyboard and which # terminal mode is being used. If Set-Up has been disabled or # assigned to an unknown key, Set-Up may be entered by pressing # [F3] as the first key after power up, regardless of keyboard type. # d6|vt520|DEC VT520 :\ :am:mi:xn:xo:bs:pt:\ :co#80:li#24:kn#3:\ :ae=4\E(B:al=\E[L:as=2\E(0:cd=50\E[J:ce=3\E[K:\ :cl=50\E[;H\E[2J:cm=10\E[%i%d;%dH:cs=\E[%i%d;%dr:\ :dc=\E[P:dl=\E[M:ei=\E[4l:ho=\E[H:\ :if=/usr/lib/tabset/vt100:\ :im=\E[4h:\ :is=\E[1;24r\E[24;1H:\ :r3=\E[?67h\E[64;1"p:\ :i3=\E[?67h\E[64;1"p:\ :k0=\E[29~:\ :k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:\ :k5=\E[17~:k6=\E[18~:k7=\E[19~:k8=\E[20~:k9=\E[21~:\ :kb=\b:kd=\E[B:ke=\E>:kl=\E[D:\ :kr=\E[C:ks=\E=:ku=\E[A:nd=\E[C:\ :rc=\E8:rf=/usr/lib/tabset/vt100:\ :se=\E[m:so=\E[7m:\ :sr=\EM:ue=\E[m:up=\E[A:us=\E[4m:nl=\E[B:ko=do,nd,up: # df|vt520nam|vt520-nam|v520n|DEC VT520 with no automargins:\ :am@:tc=vt520: # # vt525only.tc (9/30/94) # # VT520/VT525 # # The VT520 is a monochrome text terminal capable of managing up to # four independent sessions in the terminal. It has multiple ANSI # emulations (VT520, VT420, VT320, VT220, VT100, VT PCTerm, SCO Console) # and ASCII emulations (WY160/60, PCTerm, 50/50+, 150/120, TVI 950, # 925 910+, ADDS A2). This termcap data is for the ANSI emulations only. # SCO Console emulation uses the "ansi" entry. Existing ASCII termcap # entries are used with the ASCII emulations. # # Terminal Set-Up is entered by pressing [F3], [Caps Lock]/[F3] or # [Alt]/[Print Screen] depending upon which keyboard and which # terminal mode is being used. If Set-Up has been disabled or # assigned to an unknown key, Set-Up may be entered by pressing # [F3] as the first key after power up, regardless of keyboard type. # d6|vt525|DEC VT525 :\ :am:mi:xn:xo:bs:pt:\ :co#80:li#24:kn#3:\ :ae=4\E(B:al=\E[L:as=2\E(0:cd=50\E[J:ce=3\E[K:\ :cl=50\E[;H\E[2J:cm=10\E[%i%d;%dH:cs=\E[%i%d;%dr:\ :dc=\E[P:dl=\E[M:ei=\E[4l:ho=\E[H:\ :if=/usr/lib/tabset/vt100:\ :im=\E[4h:\ :is=\E[1;24r\E[24;1H:\ :r3=\E[?67h\E[64;1"p:\ :i3=\E[?67h\E[64;1"p:\ :k0=\E[29~:\ :k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:\ :k5=\E[17~:k6=\E[18~:k7=\E[19~:k8=\E[20~:k9=\E[21~:\ :kb=\b:kd=\E[B:ke=\E>:kl=\E[D:\ :kr=\E[C:ks=\E=:ku=\E[A:nd=\E[C:\ :rc=\E8:rf=/usr/lib/tabset/vt100:\ :se=\E[m:so=\E[7m:\ :sr=\EM:ue=\E[m:up=\E[A:us=\E[4m:nl=\E[B:ko=do,nd,up: # df|vt525nam|vt525-nam|v525n|DEC VT525 with no automargins:\ :am@:tc=vt525: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 22 1:10:13 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8F8F937B417 for ; Sat, 22 Dec 2001 01:10:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBM9A0B86996; Sat, 22 Dec 2001 01:10:00 -0800 (PST) (envelope-from gnats) Received: from mail.tecdigital.net (tecdigital.tol.itesm.mx [132.254.97.16]) by hub.freebsd.org (Postfix) with ESMTP id 4AF3F37B41B for ; Sat, 22 Dec 2001 01:03:02 -0800 (PST) Received: by mail.tecdigital.net (Postfix, from userid 0) id 97DA31D71; Sat, 22 Dec 2001 03:02:46 -0600 (CST) Message-Id: <20011222090246.97DA31D71@mail.tecdigital.net> Date: Sat, 22 Dec 2001 03:02:46 -0600 (CST) From: Mario Doria Reply-To: Mario Doria To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: kern/33085: Samba's NMBD cannot find alias interface Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 33085 >Category: kern >Synopsis: Samba's NMBD cannot find alias interface >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Dec 22 01:10:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Mario Doria >Release: FreeBSD 4.5-PRERELEASE i386 >Organization: >Environment: System: FreeBSD sdf-1.tecdigital.net 4.5-PRERELEASE FreeBSD 4.5-PRERELEASE #0: Sat Dec 22 02:37:10 CST 2001 madd@sdf-1.tecdigital.net:/usr/obj/usr/src/sys/SDF-1 i386 >Description: With samba built from ports, version 2.2.2, NMBD dumps core when a client machine connects on an alias IP address. >How-To-Repeat: Create an alias interface ona machine (let's say original IP addy is 10.25.1.1) and the alias IP is 10.25.1.2. On this machine setup a wins server with samba. On another machine, using smbclient (or a windoze machine) try to connect to any share on the server system. The following error ocurrs: wins_srv_died(): WINS server 10.25.1.2 appears to be down. Connection to server failed This problem happens only after using sources CVSuped on the 15 of december 2001. Using sources from december 14 eliminates the problem. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 22 1:46: 2 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 699B637BB29 for ; Sat, 22 Dec 2001 01:41:14 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBM9e8O89701; Sat, 22 Dec 2001 01:40:08 -0800 (PST) (envelope-from gnats) Date: Sat, 22 Dec 2001 01:40:08 -0800 (PST) Message-Id: <200112220940.fBM9e8O89701@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Mario Doria" Subject: Re: kern/33085: Samba's NMBD cannot find alias interface Reply-To: "Mario Doria" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/33085; it has been noted by GNATS. From: "Mario Doria" To: , Cc: Subject: Re: kern/33085: Samba's NMBD cannot find alias interface Date: Sat, 22 Dec 2001 03:35:34 -0600 Here's some gdb output: Complete nmbd.core is at http://www.tecdigital.net/madd/nmbd.core sdf-1# gdb -e /usr/local/sbin/nmbd -c nmbd.core GNU gdb 4.18 Copyright 1998 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-unknown-freebsd". Core was generated by `nmbd'. Program terminated with signal 5, Trace/BPT trap. Reading symbols from /usr/lib/libpam.so.1...(no debugging symbols found)... done. Reading symbols from /usr/lib/libc.so.4...(no debugging symbols found)...done. Reading symbols from /usr/libexec/ld-elf.so.1...(no debugging symbols found)... done. #0 0x804b4ff in ?? () To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 22 1:50:14 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A297137B731 for ; Sat, 22 Dec 2001 01:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBM9o1H90633; Sat, 22 Dec 2001 01:50:01 -0800 (PST) (envelope-from gnats) Received: from mailout08.sul.t-online.com (mailout08.sul.t-online.com [194.25.134.20]) by hub.freebsd.org (Postfix) with ESMTP id EFE6137BCA5 for ; Sat, 22 Dec 2001 01:43:54 -0800 (PST) Received: from fwd05.sul.t-online.de by mailout08.sul.t-online.de with smtp id 16HigP-0001SA-01; Sat, 22 Dec 2001 10:43:09 +0100 Received: from theater.dyndns.org (320068889749-0001@[217.0.140.172]) by fmrl05.sul.t-online.com with esmtp id 16HigM-2B10q0C; Sat, 22 Dec 2001 10:43:06 +0100 Received: (from vs@localhost) by theater.dyndns.org (8.11.6/8.11.4) id fBM9h4a26798; Sat, 22 Dec 2001 10:43:04 +0100 (CET) (envelope-from vs) Message-Id: <200112220943.fBM9h4a26798@theater.dyndns.org> Date: Sat, 22 Dec 2001 10:43:04 +0100 (CET) From: Volker Stolz To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/33087: No automatic ipf setup for IPv6 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 33087 >Category: bin >Synopsis: No automatic ipf setup for IPv6 >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Dec 22 01:50:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Volker Stolz >Release: FreeBSD 4.4-STABLE i386 >Organization: Lehrstuhl fЭr Informatik II >Environment: System: FreeBSD erde.ikea.net 4.4-STABLE FreeBSD 4.4-STABLE #1: Sun Dec 16 11:48:31 CET 2001 root@monster.ikea.net:/usr/src/sys/compile/GATE i386 >Description: There is no mechanism in /etc/rc.network6 for automatically loading IPv6 ipf rules like there is for IPv4 in /etc/rc.network. This means adding your own ipf rules for IPv6 cannot be done as smoothly as for IPv4. >How-To-Repeat: Enable IPF, default to deny: You don't have any clean way of configuring rules for ipf -6 in /etc/rc.conf. >Fix: Replicate the ipf-setup from /etc/rc.network, and change some variable names, e.g. ipfilter_enable -> ipfilter6_enable etc. Be careful about checking whether ipmon or ipnat are already running. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 22 5:20:22 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D9B1837B417 for ; Sat, 22 Dec 2001 05:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBMDK1A54383; Sat, 22 Dec 2001 05:20:01 -0800 (PST) (envelope-from gnats) Received: from rumori.com (client62-2-193-38.hispeed.ch [62.2.193.38]) by hub.freebsd.org (Postfix) with ESMTP id B215637B416 for ; Sat, 22 Dec 2001 05:11:03 -0800 (PST) Received: (from ast@localhost) by rumori.com (8.11.6/8.11.6) id fBMDB0d18746; Sat, 22 Dec 2001 14:11:00 +0100 (MET) (envelope-from ast) Message-Id: <200112221311.fBMDB0d18746@rumori.com> Date: Sat, 22 Dec 2001 14:11:00 +0100 (MET) From: Adrian Steinmann Reply-To: Adrian Steinmann To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: i386/33089: GENERIC bloat causes 'make world' to break (overfull floppy) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 33089 >Category: i386 >Synopsis: GENERIC bloat causes 'make world' to break (overfull floppy) >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Dec 22 05:20:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Adrian Steinmann >Release: FreeBSD 4.4-STYX i386 >Organization: Webgroup Consulting, Switzerland >Environment: System: FreeBSD rumori.com 4.4-STYX FreeBSD 4.4-STYX #2: Fri Aug 31 13:23:17 MEST 2001 root@rumori.com:/usr/src/sys/compile/RUM i386 >Description: Mid-December, 2001 on stable@freebsd.org, we see this thread: Re: Waaaarg, we just blew out the kernel again.. Not the first time, probably not the last time either ;-) >How-To-Repeat: make release of -stable branch, it will fail because the GENERIC floppy overflows (Mid-December 2001). >Fix: As I mentioned in stable@freebsd.org on Tue, 18 Dec 2001 in Message-Id: <200112181133.MAA11130@marabu.marabu.ch> ... a brighter future is indeed to modularize more drivers ... As a stopgap, we can try to compress GENERIC better: Here we have a patch to replace the gzip compression with 'bzip -1' in src/release/Makefile. It has been tested: sysinstall went fine on a custom-burnt CD made from the .../R/cdrom/disc1/ tree. BTW, these are the savings on kern.flp with the bzip-only loader: $ df -ik /mnt Filesystem 1K-blocks Used Avail Capacity iused ifree %iused Mounted on /dev/fd0a 1407 1385 8 99% 5 25 17% /mnt $ ls -l /mnt total 1297 drwxr-xr-x 2 root wheel 512 Dec 22 02:10 boot -r-xr-xr-x 1 root wheel 1320875 Dec 22 02:10 kernel.bz2 I have also checked that the loader can indeed load kernel.bz2 images. Since this change is quite intrusive, a second independent test should be done before commiting. Also, there might be a better place to add the LOADER_BZIP2_SUPPORT=YES LOADER_NO_GZIP_SUPPORT=YES flags than straight into WORLD_FLAGS. One might even consider changing the default in the loader's Makefile. *** release/Makefile 2001/12/02 10:31:28 1.536.2.62 --- release/Makefile 2001/12/21 22:05:38 *************** *** 51,56 **** --- 51,59 ---- #WORLD_FLAGS=-j4 #KERNEL_FLAGS=-j4 + # standardize on bzip instead of gzip to fit more GENERIC onto floppy + WORLD_FLAGS+= LOADER_BZIP2_SUPPORT=YES LOADER_NO_GZIP_SUPPORT=YES + # If you are using a local CVS repository with components stored in # non-standard modules, override these on the make commandline or # in the environment. *************** *** 636,655 **** @gzip -9 ${RD}/mfsfd/stand/help/*.hlp sh -e ${.CURDIR}/scripts/doFS.sh -s mfsroot ${RD} ${MNT} \ ${MFSSIZE} ${RD}/mfsfd ${MFSINODE} ${MFSLABEL} ! @gzip -9vc mfsroot > mfsroot.gz .if ${MACHINE} == "pc98" @sh -e ${.CURDIR}/scripts/doFS.sh ${RD}/floppies/mfsroot.flp \ ! ${RD} ${MNT} ${SMALLBOOTSIZE} mfsroot.gz \ ${BOOTINODE} ${SMALLBOOTLABEL} @cd ${.CURDIR} && ${MAKE} doMFSKERN FSIMAGE=kern-small FDSIZE=SMALL @cd ${.CURDIR} && ${MAKE} doMFSKERN FSIMAGE=kern .else @sh -e ${.CURDIR}/scripts/doFS.sh ${RD}/floppies/mfsroot.flp \ ! ${RD} ${MNT} ${BOOTSIZE} mfsroot.gz ${BOOTINODE} ${BOOTLABEL} @cd ${.CURDIR} && ${MAKE} doMFSKERN FSIMAGE=kern @cd ${.CURDIR} && ${MAKE} doMFSKERN FSIMAGE=boot FDSIZE=BIG .endif ! @rm mfsroot mfsroot.gz mfsroot.size @echo "Regular and MFS boot floppies made." touch release.8 --- 639,658 ---- @gzip -9 ${RD}/mfsfd/stand/help/*.hlp sh -e ${.CURDIR}/scripts/doFS.sh -s mfsroot ${RD} ${MNT} \ ${MFSSIZE} ${RD}/mfsfd ${MFSINODE} ${MFSLABEL} ! @bzip2 -1vc mfsroot > mfsroot.bz2 .if ${MACHINE} == "pc98" @sh -e ${.CURDIR}/scripts/doFS.sh ${RD}/floppies/mfsroot.flp \ ! ${RD} ${MNT} ${SMALLBOOTSIZE} mfsroot.bz2 \ ${BOOTINODE} ${SMALLBOOTLABEL} @cd ${.CURDIR} && ${MAKE} doMFSKERN FSIMAGE=kern-small FDSIZE=SMALL @cd ${.CURDIR} && ${MAKE} doMFSKERN FSIMAGE=kern .else @sh -e ${.CURDIR}/scripts/doFS.sh ${RD}/floppies/mfsroot.flp \ ! ${RD} ${MNT} ${BOOTSIZE} mfsroot.bz2 ${BOOTINODE} ${BOOTLABEL} @cd ${.CURDIR} && ${MAKE} doMFSKERN FSIMAGE=kern @cd ${.CURDIR} && ${MAKE} doMFSKERN FSIMAGE=boot FDSIZE=BIG .endif ! @rm mfsroot mfsroot.bz2 mfsroot.size @echo "Regular and MFS boot floppies made." touch release.8 *************** *** 955,961 **** @./write_mfs_in_kernel ${RD}/image.${FSIMAGE}/kernel mfsroot @cp ${RD}/image.${FSIMAGE}/kernel ${RD}/kernels/MFSKERNEL.${FSIMAGE} .endif ! @gzip -9v ${RD}/image.${FSIMAGE}/kernel @rm -f ${RD}/floppies/${FSIMAGE}.flp .if defined(FDSIZE) && ${FDSIZE} == "BIG" sh -e ${.CURDIR}/scripts/doFS.sh ${RD}/floppies/${FSIMAGE}.flp \ --- 958,964 ---- @./write_mfs_in_kernel ${RD}/image.${FSIMAGE}/kernel mfsroot @cp ${RD}/image.${FSIMAGE}/kernel ${RD}/kernels/MFSKERNEL.${FSIMAGE} .endif ! @bzip2 -1v ${RD}/image.${FSIMAGE}/kernel @rm -f ${RD}/floppies/${FSIMAGE}.flp .if defined(FDSIZE) && ${FDSIZE} == "BIG" sh -e ${.CURDIR}/scripts/doFS.sh ${RD}/floppies/${FSIMAGE}.flp \ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 22 15:30:12 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F306437B419 for ; Sat, 22 Dec 2001 15:30:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBMNU0M97307; Sat, 22 Dec 2001 15:30:00 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4856B37B419 for ; Sat, 22 Dec 2001 15:22:48 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBMNMmk96863; Sat, 22 Dec 2001 15:22:48 -0800 (PST) (envelope-from nobody) Message-Id: <200112222322.fBMNMmk96863@freefall.freebsd.org> Date: Sat, 22 Dec 2001 15:22:48 -0800 (PST) From: Paul Halliday To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/33097: Crystal 4237b mixer problems Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 33097 >Category: i386 >Synopsis: Crystal 4237b mixer problems >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Dec 22 15:30:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Paul Halliday >Release: 4.4-STABLE >Organization: >Environment: FreeBSD useless.dell.box 4.4-STABLE FreeBSD 4.4-STABLE #19: Sat Dec 22 17:56:47 EST 2001 root@useless.dell.box:/usr/src/sys/compile/useless i386 >Description: The sound card (crystal 4237b) compiles fine and all necessary device nodes are created without error. However unable to adjust sound settings (volume, bass, balance, etc) via software. Worked fine under 4.3-STABLE. Currently compiled as: sbc0: at port 0x220-0x22f irq 5 drq 1 on isa0 pcm0: on sbc0 >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 22 17: 2:28 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from tomts9-srv.bellnexxia.net (tomts9.bellnexxia.net [209.226.175.53]) by hub.freebsd.org (Postfix) with ESMTP id E6A9037B416; Sat, 22 Dec 2001 17:02:16 -0800 (PST) Received: from khan.anarcat.dyndns.org ([65.94.189.35]) by tomts9-srv.bellnexxia.net (InterMail vM.4.01.03.16 201-229-121-116-20010115) with ESMTP id <20011223010215.PMYB3274.tomts9-srv.bellnexxia.net@khan.anarcat.dyndns.org>; Sat, 22 Dec 2001 20:02:15 -0500 Received: from shall.anarcat.dyndns.org (shall.anarcat.dyndns.org [192.168.0.1]) by khan.anarcat.dyndns.org (Postfix) with ESMTP id A0DDB1AB9; Sat, 22 Dec 2001 20:02:12 -0500 (EST) Received: by shall.anarcat.dyndns.org (Postfix, from userid 1000) id 7749020ACB; Sat, 22 Dec 2001 20:02:04 -0500 (EST) Date: Sat, 22 Dec 2001 20:02:03 -0500 From: The Anarcat To: gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: freebsd-gnats-submit@freebsd.org, arch@freebsd.org Subject: Re: bin/33070: libdisk::Disk_Names() returns empty strings Message-ID: <20011223010203.GF530@shall.anarcat.dyndns.org> References: <20011221220558.8DEB020ACD@shall.anarcat.dyndns.org> <200112212210.fBLMA1N83908@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200112212210.fBLMA1N83908@freefall.freebsd.org> User-Agent: Mutt/1.3.24i Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is because of a commit to libdisk which disables the use of kern.disks because it doesn't sort its output. The alternate method of getting the disk list is to stat devices and try to open them which fails if you're a regular user. Here is a proper fix that sort the output of kern.disks in Disk_Names() instead. Index: Makefile =================================================================== RCS file: /home/ncvs/src/lib/libdisk/Makefile,v retrieving revision 1.27.2.5 diff -u -r1.27.2.5 Makefile --- Makefile 18 Sep 2001 06:47:30 -0000 1.27.2.5 +++ Makefile 22 Dec 2001 23:58:22 -0000 @@ -6,7 +6,7 @@ INCS= libdisk.h -# Remove KERN_DISKS_BROKEN when kern.disks sysctl returns disks in sorted order -CFLAGS+= -Wall -DKERN_DISKS_BROKEN +CFLAGS+= -Wall .if ${MACHINE} == "pc98" CFLAGS+= -DPC98 .endif Index: disk.c =================================================================== RCS file: /home/ncvs/src/lib/libdisk/disk.c,v retrieving revision 1.50.2.14 diff -u -r1.50.2.14 disk.c --- disk.c 18 Sep 2001 06:47:30 -0000 1.50.2.14 +++ disk.c 23 Dec 2001 00:43:01 -0000 @@ -483,10 +483,18 @@ static char * device_list[] = {"aacd", "ad", "da", "afd", "fla", "idad", "mlxd", "amrd", "twed", "ar", "fd", 0}; #endif +int qstrcmp(const void* a, const void* b) { + + char *str1 = *(char**)a; + char *str2 = *(char**)b; + return strcmp(str1, str2); + +} + char ** Disk_Names() { - int i,j,k; + int i,j,disk_cnt; char disk[25]; char diskname[25]; struct stat st; @@ -506,14 +514,16 @@ error = sysctlbyname("kern.disks", disklist, &listsize, NULL, 0); if (error) return NULL; - k = 0; - for (dp = disks; ((*dp = strsep(&disklist, " ")) != NULL) && k < MAX_NO_DISKS; k++, dp++); - return disks; - } + disk_cnt = 0; + for (dp = disks; ((*dp = strsep(&disklist, " ")) != NULL) && + disk_cnt < MAX_NO_DISKS; disk_cnt++, dp++); + } else { warn("kern.disks sysctl not available"); #endif - k = 0; + disk_cnt = 0; for (j = 0; device_list[j]; j++) { + if(disk_cnt >= MAX_NO_DISKS) + break; for (i = 0; i < MAX_NO_DISKS; i++) { sprintf(diskname, "%s%d", device_list[j], i); sprintf(disk, _PATH_DEV"%s", diskname); @@ -529,12 +539,17 @@ continue; } close(fd); - disks[k++] = strdup(diskname); - if(k == MAX_NO_DISKS) - return disks; + disks[disk_cnt++] = strdup(diskname); + if(disk_cnt >= MAX_NO_DISKS) + break; } } - return disks; +#if !defined(PC98) && !defined(KERN_DISKS_BROKEN) + } +#endif + qsort(disks, disk_cnt, sizeof(char*), qstrcmp); + + return disks; } #ifdef PC98 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 22 17:10:36 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E54E837B420 for ; Sat, 22 Dec 2001 17:10:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBN1A3a29390; Sat, 22 Dec 2001 17:10:03 -0800 (PST) (envelope-from gnats) Date: Sat, 22 Dec 2001 17:10:03 -0800 (PST) Message-Id: <200112230110.fBN1A3a29390@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: The Anarcat Subject: Re: bin/33070: libdisk::Disk_Names() returns empty strings Reply-To: The Anarcat Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/33070; it has been noted by GNATS. From: The Anarcat To: gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: freebsd-gnats-submit@freebsd.org, arch@freebsd.org Subject: Re: bin/33070: libdisk::Disk_Names() returns empty strings Date: Sat, 22 Dec 2001 20:02:03 -0500 This is because of a commit to libdisk which disables the use of kern.disks because it doesn't sort its output. The alternate method of getting the disk list is to stat devices and try to open them which fails if you're a regular user. Here is a proper fix that sort the output of kern.disks in Disk_Names() instead. Index: Makefile =================================================================== RCS file: /home/ncvs/src/lib/libdisk/Makefile,v retrieving revision 1.27.2.5 diff -u -r1.27.2.5 Makefile --- Makefile 18 Sep 2001 06:47:30 -0000 1.27.2.5 +++ Makefile 22 Dec 2001 23:58:22 -0000 @@ -6,7 +6,7 @@ INCS= libdisk.h -# Remove KERN_DISKS_BROKEN when kern.disks sysctl returns disks in sorted order -CFLAGS+= -Wall -DKERN_DISKS_BROKEN +CFLAGS+= -Wall .if ${MACHINE} == "pc98" CFLAGS+= -DPC98 .endif Index: disk.c =================================================================== RCS file: /home/ncvs/src/lib/libdisk/disk.c,v retrieving revision 1.50.2.14 diff -u -r1.50.2.14 disk.c --- disk.c 18 Sep 2001 06:47:30 -0000 1.50.2.14 +++ disk.c 23 Dec 2001 00:43:01 -0000 @@ -483,10 +483,18 @@ static char * device_list[] = {"aacd", "ad", "da", "afd", "fla", "idad", "mlxd", "amrd", "twed", "ar", "fd", 0}; #endif +int qstrcmp(const void* a, const void* b) { + + char *str1 = *(char**)a; + char *str2 = *(char**)b; + return strcmp(str1, str2); + +} + char ** Disk_Names() { - int i,j,k; + int i,j,disk_cnt; char disk[25]; char diskname[25]; struct stat st; @@ -506,14 +514,16 @@ error = sysctlbyname("kern.disks", disklist, &listsize, NULL, 0); if (error) return NULL; - k = 0; - for (dp = disks; ((*dp = strsep(&disklist, " ")) != NULL) && k < MAX_NO_DISKS; k++, dp++); - return disks; - } + disk_cnt = 0; + for (dp = disks; ((*dp = strsep(&disklist, " ")) != NULL) && + disk_cnt < MAX_NO_DISKS; disk_cnt++, dp++); + } else { warn("kern.disks sysctl not available"); #endif - k = 0; + disk_cnt = 0; for (j = 0; device_list[j]; j++) { + if(disk_cnt >= MAX_NO_DISKS) + break; for (i = 0; i < MAX_NO_DISKS; i++) { sprintf(diskname, "%s%d", device_list[j], i); sprintf(disk, _PATH_DEV"%s", diskname); @@ -529,12 +539,17 @@ continue; } close(fd); - disks[k++] = strdup(diskname); - if(k == MAX_NO_DISKS) - return disks; + disks[disk_cnt++] = strdup(diskname); + if(disk_cnt >= MAX_NO_DISKS) + break; } } - return disks; +#if !defined(PC98) && !defined(KERN_DISKS_BROKEN) + } +#endif + qsort(disks, disk_cnt, sizeof(char*), qstrcmp); + + return disks; } #ifdef PC98 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 23 0: 0: 1 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7D00437B417; Sat, 22 Dec 2001 23:59:59 -0800 (PST) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBN7xaJ93165; Sat, 22 Dec 2001 23:59:36 -0800 (PST) (envelope-from mikeh) Date: Sat, 22 Dec 2001 23:59:36 -0800 (PST) From: Message-Id: <200112230759.fBN7xaJ93165@freefall.freebsd.org> To: mikeh@FreeBSD.org, freebsd-bugs@FreeBSD.org, sos@FreeBSD.org Subject: Re: bin/31826: /usr/sbin/burncd "msinfo" always returns "0" as first parameter Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: /usr/sbin/burncd "msinfo" always returns "0" as first parameter Responsible-Changed-From-To: freebsd-bugs->sos Responsible-Changed-By: mikeh Responsible-Changed-When: Sat Dec 22 23:58:34 PST 2001 Responsible-Changed-Why: sos is author of burncd http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31826 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message