From owner-freebsd-bugs Sun Jun 14 03:00:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA15416 for freebsd-bugs-outgoing; Sun, 14 Jun 1998 03:00:46 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA15360 for ; Sun, 14 Jun 1998 03:00:40 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA10109; Sun, 14 Jun 1998 03:00:02 -0700 (PDT) Received: from apollo.backplane.com (apollo.backplane.com [209.157.86.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA14618 for ; Sun, 14 Jun 1998 02:55:42 -0700 (PDT) (envelope-from dillon@backplane.com) Received: (dillon@localhost) by apollo.backplane.com (8.8.8/8.6.5) id CAA00381; Sun, 14 Jun 1998 02:55:34 -0700 (PDT) Message-Id: <199806140955.CAA00381@apollo.backplane.com> Date: Sun, 14 Jun 1998 02:55:34 -0700 (PDT) From: Matthew Dillon Reply-To: dillon@backplane.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: i386/6944: bug in i386/isa/icu_ipl.s - AST gets lost, causes extreme network slowdown when cpu-bound processes present, possibly other problems Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6944 >Category: i386 >Synopsis: icu_ipl.s does has a case commented as can't happen which happens >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Jun 14 03:00:01 PDT 1998 >Last-Modified: >Originator: Matthew Dillon >Organization: BEST Internet Communications >Release: FreeBSD 3.0-CURRENT i386 >Environment: FreeBSD-current, June 14 cvs update, PPro 200 w/ PCI 10/100BaseT and SCSI & IDE disks >Description: If FreeBSD is running cpu-bound processes and a network interrupt occurs, causing an swi_net to occur, if the network swi queues an AST (for example, if it wakes up nfsd), the AST will get lost and the nfsd will not get the cpu until the next clock interrupt. This can create severe NFS slowdowns as well as slowdowns to processes being woken up from the network (or even other interrupts). The problem is in icu_ipl.s. The situation: cmpl $SWI_AST,%ecx je splz_nextx /* "can't happen" */ Actually can happen. I'm not exactly sure how it happens, but the result is that that AST gets cleared from ipending without being run. The patch I include re-sets the bit in ipending and also sets the bit in the temporary CPL to prevent it from trying to dispatch it again in the routine. This fixes the problem completely on my machine... now I can run cpu bound programs and bring up xterms and nfsd is no longer effects by the cpu-bound processes. I am marking the bug critical & high priority because it's in the core interrupt code, but the bug does not cause a fatal condition to occur (it just slows down process wakeups massively in the face of a cpu-bound program). >How-To-Repeat: I noticed this trying to run an xterm on my diskless workstation while running crack in the background on my server. The xterm took 30 seconds to come up. Killing the cpu-bound crack and the xterm took 2 seconds to come up. >Fix: Notice! This patch fixes icu_ipl.s. apic_ipl.s might have the same problem. Index: icu_ipl.s =================================================================== RCS file: /src/FreeBSD-CVS/ncvs/src/sys/i386/isa/icu_ipl.s,v retrieving revision 1.3 diff -c -r1.3 icu_ipl.s *** icu_ipl.s 1997/09/02 19:40:13 1.3 --- icu_ipl.s 1998/05/31 09:36:16 *************** *** 107,119 **** ALIGN_TEXT splz_swi: cmpl $SWI_AST,%ecx ! je splz_next /* "can't happen" */ pushl %eax orl imasks(,%ecx,4),%eax movl %eax,_cpl call %edx popl %eax movl %eax,_cpl jmp splz_next /* --- 107,124 ---- ALIGN_TEXT splz_swi: cmpl $SWI_AST,%ecx ! je splz_nextx /* "can't happen" XXX can happen! */ pushl %eax orl imasks(,%ecx,4),%eax movl %eax,_cpl call %edx popl %eax movl %eax,_cpl + jmp splz_next + + splz_nextx: + orl $0x80000000,%eax + orl $0x80000000,_ipending jmp splz_next /* >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 Jun 14 04:40:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA28347 for freebsd-bugs-outgoing; Sun, 14 Jun 1998 04:40:41 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA28331 for ; Sun, 14 Jun 1998 04:40:39 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA11451; Sun, 14 Jun 1998 04:40:01 -0700 (PDT) Date: Sun, 14 Jun 1998 04:40:01 -0700 (PDT) Message-Id: <199806141140.EAA11451@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Bruce Evans Subject: Re: i386/6944: bug in i386/isa/icu_ipl.s - AST gets lost, causes extreme network slowdown when cpu-bound processes present, possibly other problems Reply-To: Bruce Evans Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/6944; it has been noted by GNATS. From: Bruce Evans To: dillon@backplane.com, FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: Re: i386/6944: bug in i386/isa/icu_ipl.s - AST gets lost, causes extreme network slowdown when cpu-bound processes present, possibly other problems Date: Sun, 14 Jun 1998 21:38:02 +1000 > The problem is in icu_ipl.s. The situation: > > cmpl $SWI_AST,%ecx > je splz_nextx /* "can't happen" */ > > Actually can happen. I'm not exactly sure how it happens, but the > result is that that AST gets cleared from ipending without being run. It "can't happen" because SWI_AST_MASK is "always" set in `cpl' until the kernel is about to return to user mode. Something must be clearing SWI_AST_MASK in `cpl' or in the cpl to be "restored". The typo spl(0) instead of spl0() would do this. Please look for whatever does it. This may be as simple as looking at the stack trace to see spl(0) and verifying that SWI_AST_MASK is set (you can't trust the latter since ddb doesn't mask interrupts). Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jun 14 07:09:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA08494 for freebsd-bugs-outgoing; Sun, 14 Jun 1998 07:09:53 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA08488; Sun, 14 Jun 1998 07:09:47 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA09481; Sun, 14 Jun 1998 07:09:08 -0700 (PDT) Date: Sun, 14 Jun 1998 07:09:08 -0700 (PDT) Message-Id: <199806141409.HAA09481@freefall.freebsd.org> To: issei@mikage.t-cnet.or.jp, wosch@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/6941 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: User cannot su to root even if his login group is wheel. State-Changed-From-To: open-closed State-Changed-By: wosch State-Changed-When: Sun Jun 14 07:08:34 PDT 1998 State-Changed-Why: Already fixed in 3.0-current: src/usr.bin/su/su.c rev 1.26 2.2-stable: src/usr.bin/su/su.c rev 1.14.2.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jun 14 08:50:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA17493 for freebsd-bugs-outgoing; Sun, 14 Jun 1998 08:50:42 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA17485 for ; Sun, 14 Jun 1998 08:50:41 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA09901; Sun, 14 Jun 1998 08:50:01 -0700 (PDT) Received: from bone.nectar.com (bone.nectar.com [204.27.67.93]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA17196 for ; Sun, 14 Jun 1998 08:48:40 -0700 (PDT) (envelope-from nectar@bone.nectar.com) Received: (from nectar@localhost) by bone.nectar.com (8.9.0/8.9.0) id KAA26715; Sun, 14 Jun 1998 10:48:09 -0500 (CDT) Message-Id: <199806141548.KAA26715@bone.nectar.com> Date: Sun, 14 Jun 1998 10:48:09 -0500 (CDT) From: n@nectar.com Reply-To: n@nectar.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: conf/6946: natd support in rc.network broken Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6946 >Category: conf >Synopsis: natd support in rc.network broken >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Jun 14 08:50:00 PDT 1998 >Last-Modified: >Originator: Jacques Vidrine >Organization: >Release: FreeBSD 3.0-CURRENT i386 >Environment: 3.0-CURRENT since 1998/04/12 >Description: The rc.network script contains an invalid test (starts with ``-a'') that causes an error when natd is enabled in rc.conf, and fails to actually start natd. This error was introduced by revision 1.22. It appears that the original submitter's ``Fix'' was correct, but that the committer munged the ``Fix'' a bit in an effort to bring the line length down. >How-To-Repeat: Enable natd in rc.conf, and then boot into multiuser mode. Watch for the ``[: syntax error'' message, and note that natd didn't get run. >Fix: --- /usr/src/etc/rc.network Mon May 18 23:36:31 1998 +++ /tmp/rc.network Sun Jun 14 10:47:02 1998 @@ -269,10 +269,9 @@ fi # Network Address Translation daemon - if [ "X${natd_enable}" = X"YES" -a "X${natd_interface}" != X"" ]; then - if [ -a "X${firewall_enable}" = X"YES" ]; then - echo -n ' natd'; natd ${natd_flags} -n ${natd_interface} - fi + if [ "X${natd_enable}" = X"YES" -a "X${natd_interface}" != X"" \ + -a "X${firewall_enable}" = X"YES" ]; then + echo -n ' natd'; natd ${natd_flags} -n ${natd_interface} fi echo '.' >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 Jun 14 09:04:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA19350 for freebsd-bugs-outgoing; Sun, 14 Jun 1998 09:04:44 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA19341; Sun, 14 Jun 1998 09:04:40 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA10602; Sun, 14 Jun 1998 09:04:00 -0700 (PDT) Date: Sun, 14 Jun 1998 09:04:00 -0700 (PDT) Message-Id: <199806141604.JAA10602@freefall.freebsd.org> To: archie@whistle.com, steve@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/6907 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: more(1) core dumps when a long filename is not found State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sun Jun 14 09:01:09 PDT 1998 State-Changed-Why: Patch committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jun 14 09:10:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA20347 for freebsd-bugs-outgoing; Sun, 14 Jun 1998 09:10:45 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA20339 for ; Sun, 14 Jun 1998 09:10:42 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA10855; Sun, 14 Jun 1998 09:10:01 -0700 (PDT) Received: from bone.nectar.com (bone.nectar.com [204.27.67.93]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA19206 for ; Sun, 14 Jun 1998 09:04:15 -0700 (PDT) (envelope-from nectar@bone.nectar.com) Received: (from nectar@localhost) by bone.nectar.com (8.9.0/8.9.0) id LAA26889; Sun, 14 Jun 1998 11:03:44 -0500 (CDT) Message-Id: <199806141603.LAA26889@bone.nectar.com> Date: Sun, 14 Jun 1998 11:03:44 -0500 (CDT) From: Jacques Vidrine Reply-To: nectar@NECTAR.COM To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: conf/6947: allow ip address for natd_interface in rc.conf/rc.network Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6947 >Category: conf >Synopsis: allow ip address for natd_interface in rc.conf/rc.network >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Jun 14 09:10:01 PDT 1998 >Last-Modified: >Originator: Jacques Vidrine >Organization: >Release: FreeBSD 3.0-CURRENT i386 >Environment: 3.0-CURRENT >Description: natd must be started with either ``-n [interface name]'' or ``-a [ip address]''. Both flags are used to tell natd which interface and IP address to use for aliasing. Currently, rc.network is hard-coded to use ``-n ${natd_interface}''. I propose changing the behavior such that if ${natd_interface} looks like an IP address, use ``-a ${natd_interface}'', otherwise use ``-n ${natd_interface}''. This will allow users who need the behavior of -a to use our config files to start natd. >How-To-Repeat: Attempt to find a way to start natd with the -a flag using our existing configuration scripts. >Fix: Note that this patch will only apply if the bug reported in conf/6946 has been applied first. If it has not, it is not hard to apply the patch by hand instead. --- rc.network.orig Sun Jun 14 10:48:21 1998 +++ rc.network Sun Jun 14 10:55:11 1998 @@ -269,10 +269,16 @@ fi # Network Address Translation daemon - if [ "X${natd_enable}" = X"YES" -a "X${natd_interface}" != X"" \ - -a "X${firewall_enable}" = X"YES" ]; then - echo -n ' natd'; natd ${natd_flags} -n ${natd_interface} - fi + if [ "X${natd_enable}" = X"YES" -a X"${natd_interface}" != X"" \ + -a X"${firewall_enable}" = X"YES" ]; then + if echo ${natd_interface} | \ + grep -q -E '^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+$'; then + natd_ifarg="-a ${natd_interface}" + else + natd_ifarg="-n ${natd_interface}" + fi + echo -n ' natd'; natd ${natd_flags} ${natd_ifarg} + fi echo '.' network_pass3_done=YES >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 Jun 14 09:13:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA20753 for freebsd-bugs-outgoing; Sun, 14 Jun 1998 09:13:05 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA20741; Sun, 14 Jun 1998 09:13:01 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA10905; Sun, 14 Jun 1998 09:12:21 -0700 (PDT) Date: Sun, 14 Jun 1998 09:12:21 -0700 (PDT) Message-Id: <199806141612.JAA10905@freefall.freebsd.org> To: moncrg@bt340707.res.ray.com, steve@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: misc/6913 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update share/mk/* to support cpp c++ files State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sun Jun 14 09:09:25 PDT 1998 State-Changed-Why: I committed a slightly modified version of your patch (mostly to avoid excessive diffs against -current which already had this functionality). Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jun 14 09:14:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA21032 for freebsd-bugs-outgoing; Sun, 14 Jun 1998 09:14:35 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA20983; Sun, 14 Jun 1998 09:14:26 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA10976; Sun, 14 Jun 1998 09:13:46 -0700 (PDT) Date: Sun, 14 Jun 1998 09:13:46 -0700 (PDT) Message-Id: <199806141613.JAA10976@freefall.freebsd.org> To: jes@hal-pc.org, steve@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: conf/6909 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: make tries to ln -sf shared libraries w/ minor numbers in libtermcap when BINFORMAT=elf State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sun Jun 14 09:13:12 PDT 1998 State-Changed-Why: Fixed by Peter in rev 1.23 of src/lib/libtermcap/Makefile. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jun 14 09:32:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA23132 for freebsd-bugs-outgoing; Sun, 14 Jun 1998 09:32:26 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA23113; Sun, 14 Jun 1998 09:32:15 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA11153; Sun, 14 Jun 1998 09:31:34 -0700 (PDT) Date: Sun, 14 Jun 1998 09:31:34 -0700 (PDT) Message-Id: <199806141631.JAA11153@freefall.freebsd.org> To: n@nectar.com, steve@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: conf/6946 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: natd support in rc.network broken State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sun Jun 14 09:28:23 PDT 1998 State-Changed-Why: Patch committed in rev 1.27 of src/etc/rc.network. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jun 14 11:00:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA05557 for freebsd-bugs-outgoing; Sun, 14 Jun 1998 11:00:42 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA05552 for ; Sun, 14 Jun 1998 11:00:41 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA11833; Sun, 14 Jun 1998 11:00:01 -0700 (PDT) Date: Sun, 14 Jun 1998 11:00:01 -0700 (PDT) Message-Id: <199806141800.LAA11833@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Matthew Dillon Subject: Re: i386/6944: bug in i386/isa/icu_ipl.s - AST gets lost, causes extreme network slowdown when cpu-bound processes present, possibly other problems Reply-To: Matthew Dillon Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/6944; it has been noted by GNATS. From: Matthew Dillon To: Bruce Evans Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: i386/6944: bug in i386/isa/icu_ipl.s - AST gets lost, causes extreme network slowdown when cpu-bound processes present, possibly other problems Date: Sun, 14 Jun 1998 10:54:42 -0700 (PDT) :> cmpl $SWI_AST,%ecx :> je splz_nextx /* "can't happen" */ :> :> Actually can happen. I'm not exactly sure how it happens, but the :> result is that that AST gets cleared from ipending without being run. : :It "can't happen" because SWI_AST_MASK is "always" set in `cpl' until :the kernel is about to return to user mode. Something must be clearing :SWI_AST_MASK in `cpl' or in the cpl to be "restored". The typo spl(0) :instead of spl0() would do this. Please look for whatever does it. :This may be as simple as looking at the stack trace to see spl(0) and :verifying that SWI_AST_MASK is set (you can't trust the latter since :ddb doesn't mask interrupts). : :Bruce Well, I spent 6 hours from 9p.m. to 3a.m. just find this :-) I'm going to leave the finding of the broken spl to someone else, but there ARE several places where $0 is loaded into the cpl in the assembly, and other places where the interrupt nesting count is manually reset to 1. I'm not sure it's necessary to 'reset' the cpl states, the standard interrupt context push/pop ought to do that inherently so if things are being left dangling there's definitely something wrong elsewhere in the code that these manual resets are 'covering up'. It could be anywhere. The spl0()/splz() stuff is a mess and should probably be removed entirely. The problem is extremely reproducable... just NFS mount / and /usr from a server to a workstation, run a for (;;); process on the server, and try to run xterm on the workstation and, poof. When I did this, vmstat showed the number of context switches never exceeded 100. Hmm... suspicious! Without ./x (the for (;;); process) running, the number of context switches went to 600+/sec for two seconds to load xterm via NFS. With ./x running the number of context switches was around 50/sec and running xterm on the client increased it to only 100/sec, and xterm took forever to load via nfs. With the fix and ./x running, xterm took only 2 seconds to load via NFS and was completely uneffected by the existance of the cpu-bound task. - I'd suggest changing the assembly to do a sanity check of the cpl rather then simply save/restore it around an SWI (or normal interrupt for that matter)... if the cpl isn't in the state it left it before the call to the handler, printf() a warning. I also noticed that the fast interrupt code doesn't save/restore the cpl around the call to the interrupt handler, but the 'normal' interrupt code does. I believe the code thinks this is ok because it's leaving the cpu CLI'd through the call, but I actually think the slow interrupt handler results in faster operation because the interrupt context doesn't get popped & repushed through a ring change if a nested interrupt occurs. I also submit that the fast interrupt code doesn't make the system any more responsive... the two critical time-sensitive interrupts are the ethernet rx and the serial rx and neither is able to keep up as it stands... our 100BaseTX boards almost universally get knocked back into store and forward mode due to rx overruns after the machine's been up for a while, and anyone with a digital camera can tell you that the serial interrupt sucks rocks in terms of being able to process exceptions at a high rate in unhandshaked mode without overrunning. Running a 'fast' interrupt with interrupts disabled isn't a hot idea when the 'fast' interrupt isn't the serial or network receive interrupt! But whatever the case, the core assembly shouldn't be gratuitiously clearing the AST from ipending if it doesn't intend to run the AST trap :-) -Matt Matthew Dillon Engineering, BEST Internet Communications, Inc. [always include a portion of the original email in any response!] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jun 14 12:10:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA14524 for freebsd-bugs-outgoing; Sun, 14 Jun 1998 12:10:44 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA14518 for ; Sun, 14 Jun 1998 12:10:42 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA12005; Sun, 14 Jun 1998 12:10:01 -0700 (PDT) Date: Sun, 14 Jun 1998 12:10:01 -0700 (PDT) Message-Id: <199806141910.MAA12005@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Bruce Evans Subject: Re: i386/6944: bug in i386/isa/icu_ipl.s - AST gets lost, causes extreme network slowdown when cpu-bound processes present, possibly other problems Reply-To: Bruce Evans Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/6944; it has been noted by GNATS. From: Bruce Evans To: bde@zeta.org.au, dillon@backplane.com Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: i386/6944: bug in i386/isa/icu_ipl.s - AST gets lost, causes extreme network slowdown when cpu-bound processes present, possibly other problems Date: Mon, 15 Jun 1998 05:01:45 +1000 > Well, I spent 6 hours from 9p.m. to 3a.m. just find this :-) I'm going > to leave the finding of the broken spl to someone else, but there ARE > several places where $0 is loaded into the cpl in the assembly, and Mainly SMP places in swtch.s and VM86 places in ipl.s. I can't see any relevant problems there (except it's hard to see anything because of the ifdefs). > other places where the interrupt nesting count is manually reset to 1. That should just be an optimization. incl/decl should work, but takes one more memory access. Unfortunately, this optimization tends to hide bugs. > The problem is extremely reproducable... just NFS mount / and /usr from > a server to a workstation, run a for (;;); process on the server, and > try to run xterm on the workstation and, poof. Not reproducible here. I'll try using VM86. > I also noticed that the fast interrupt code doesn't save/restore the cpl > around the call to the interrupt handler, but the 'normal' interrupt > code does. I believe the code thinks this is ok because it's leaving cpl has no effect on fast interrupt handlers. > the cpu CLI'd through the call, but I actually think the slow interrupt > handler results in faster operation because the interrupt context doesn't > get popped & repushed through a ring change if a nested interrupt occurs. No, slow interrupt handlers do a few more integer operations, and at least 2 more i/o operations which may each take as long as several hundred integer instructions. The slow pop-repush case only occurs when a fast interrupt handler wants to switch to a SWI handler. Nested interrupts can't occur while the fast interrupt handler is running. The nest level is only checked to avoid going too deep. > I also submit that the fast interrupt code doesn't make the system any > more responsive... the two critical time-sensitive interrupts are the They are no supposed to. They are supposed to make dumb hardware work at all. E.g., without fast interrupts, a 16450 at 115200 bps would lose about 30 fifos full of input whenever someone presses CapsLock, because the console driver disables tty interrupts while setting the LEDs, and setting the LEDS takes about 3 msec. A 16550 would lost only about 2 fifos full :-). > ethernet rx and the serial rx and neither is able to keep up as it > stands... our 100BaseTX boards almost universally get knocked back into > store and forward mode due to rx overruns after the machine's been up Fast interrupt handlers are not used by any network drivers. Network interrupts for CapsLock if SLIP is configured or PPP is active :-(. > for a while, and anyone with a digital camera can tell you that the > serial interrupt sucks rocks in terms of being able to process exceptions > at a high rate in unhandshaked mode without overrunning. Running a > 'fast' interrupt with interrupts disabled isn't a hot idea when the 'fast' > interrupt isn't the serial or network receive interrupt! That's one reason why fast interrupts are only used by serial drivers. When getting to the interrupt handler takes 5 usec (longer on old systems) it doesn't hurt at all to keep interrupts disabled another 5-10 usec to do all the i/o that a 16450 can do, and it doesn't hurt much to keep them disabled another 50 usec to do all the i/o that a 16550 can do. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jun 14 14:50:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA07150 for freebsd-bugs-outgoing; Sun, 14 Jun 1998 14:50:45 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA07143 for ; Sun, 14 Jun 1998 14:50:44 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA12657; Sun, 14 Jun 1998 14:50:02 -0700 (PDT) Date: Sun, 14 Jun 1998 14:50:02 -0700 (PDT) Message-Id: <199806142150.OAA12657@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Matthew Dillon Subject: Re: i386/6944: bug in i386/isa/icu_ipl.s - AST gets lost, causes extreme network slowdown when cpu-bound processes present, possibly other problems Reply-To: Matthew Dillon Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/6944; it has been noted by GNATS. From: Matthew Dillon To: Bruce Evans Cc: bde@zeta.org.au, FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: i386/6944: bug in i386/isa/icu_ipl.s - AST gets lost, causes extreme network slowdown when cpu-bound processes present, possibly other problems Date: Sun, 14 Jun 1998 14:41:35 -0700 (PDT) :> Well, I spent 6 hours from 9p.m. to 3a.m. just find this :-) I'm going :> to leave the finding of the broken spl to someone else, but there ARE :> several places where $0 is loaded into the cpl in the assembly, and : :Mainly SMP places in swtch.s and VM86 places in ipl.s. I can't see any :relevant problems there (except it's hard to see anything because of the :ifdefs). Yah, I checked that out... but the problem was still there after turning off VM86, and I've got SMP turned off. I also have APIC_IO turned off. :> The problem is extremely reproducable... just NFS mount / and /usr from :> a server to a workstation, run a for (;;); process on the server, and :> try to run xterm on the workstation and, poof. : :Not reproducible here. I'll try using VM86. Damn. I was hoping it would be easily reproduceable. I see the same effect on our 2.2.x production machines. The diskless workstation is a -current kernel talking to a -current server. nfsd -n 4 on the server, nfsiod -n 2 on the client. In one of my iterations I was dumping debugging printf()'s in the kernel, which showed that while the forever process ./x was running, the nfs socket wakeup WAS setting the AST in ipending along with want_resched, but that nfsd wasn't getting woken up until the next timer tick. If the machine was idle (no forever process), nfsd would get the cpu immediately. Also, another point of reference: If the forever process is running but with system call in a tight loop, like this: for (;;) write(1, buf, 0); Then the nfsd would get woken up instantly for each request. But if the forever process was running like this: for (;;) ; The nfsd would not get woken up until the next timer tick. -Matt : :Bruce Matthew Dillon Engineering, BEST Internet Communications, Inc. [always include a portion of the original email in any response!] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jun 14 19:10:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA18084 for freebsd-bugs-outgoing; Sun, 14 Jun 1998 19:10:45 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA18078 for ; Sun, 14 Jun 1998 19:10:44 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA17801; Sun, 14 Jun 1998 19:10:01 -0700 (PDT) Date: Sun, 14 Jun 1998 19:10:01 -0700 (PDT) Message-Id: <199806150210.TAA17801@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Matthew Dillon Subject: Re: i386/6944: bug in i386/isa/icu_ipl.s - AST gets lost, causes extreme network slowdown when cpu-bound processes present, possibly other problems Reply-To: Matthew Dillon Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/6944; it has been noted by GNATS. From: Matthew Dillon To: Bruce Evans Cc: bde@zeta.org.au, dillon@backplane.com, FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: i386/6944: bug in i386/isa/icu_ipl.s - AST gets lost, causes extreme network slowdown when cpu-bound processes present, possibly other problems Date: Sun, 14 Jun 1998 19:00:43 -0700 (PDT) Fubar. I can't reproduce the xterm example on BEST's machines (running 2.2.6). It's definitely reproduceable on my machine (3.0-current). I would like to track down what is causing the problem, so if anyone has any suggestions on where the cpl can be checked for illegal values, I'd appreciate it. I'll retest the VM86 removal to make sure that didn't fix the problem and I'll test the AUTOEOI configs as well. As far as I can tell, the only two places where the bug can possibly be are in the interface driver (pci/if_de.c) or the UDP/IP stack. -Matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jun 14 22:20:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA13479 for freebsd-bugs-outgoing; Sun, 14 Jun 1998 22:20:47 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA13471 for ; Sun, 14 Jun 1998 22:20:46 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA18517; Sun, 14 Jun 1998 22:20:01 -0700 (PDT) Received: from techyman.ml.org (rlynn.csrlink.net [206.228.95.43]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA13024 for ; Sun, 14 Jun 1998 22:17:09 -0700 (PDT) (envelope-from root@techyman.ml.org) Received: (from root@localhost) by techyman.ml.org (8.8.8/8.8.8) id BAA16715; Mon, 15 Jun 1998 01:17:06 -0400 (EDT) (envelope-from root) Message-Id: <199806150517.BAA16715@techyman.ml.org> Date: Mon, 15 Jun 1998 01:17:06 -0400 (EDT) From: Charlie Root Reply-To: root@techyman.ml.org To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: bin/6953: freeze on mount_msdos Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6953 >Category: bin >Synopsis: freeze on mount_msdos >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: Sun Jun 14 22:20:01 PDT 1998 >Last-Modified: >Originator: Charlie & >Organization: TeChYMaN's BSD Boxes >Release: FreeBSD 3.0-980520-SNAP i386 >Environment: ? if ya mean system configuration p100 16 MB ram 1.2 GB HD (wd0, FAT32) 601 MB HD (wd2, BSD) >Description: if you mount_msdos without the /dev/ before the device node, it freezes, and reboots. Annoying, yet passable >How-To-Repeat: mount_msdos wd0s1 /msdos thats what i did and it froze, and rebooted. >Fix: not known. >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 Jun 15 00:37:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA25550 for freebsd-bugs-outgoing; Mon, 15 Jun 1998 00:37:35 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from news.IAEhv.nl (root@news.IAEhv.nl [194.151.64.4]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA25535; Mon, 15 Jun 1998 00:37:27 -0700 (PDT) (envelope-from hans@news.IAEhv.nl) Received: from LOCAL (uucp@localhost) by news.IAEhv.nl (8.8.8/1.63) with IAEhv.nl; pid 24549 on Mon, 15 Jun 1998 07:37:27 GMT; id HAA24549 efrom: hans; eto: UNKNOWN Received: by truk.brandinnovators.com (8.8.7/BI96070101) for id JAA00299; Mon, 15 Jun 1998 09:30:13 +0200 (CEST) Message-Id: <199806150730.JAA00299@truk.brandinnovators.com> From: hans@brandinnovators.com (Hans Zuidam) Subject: Re: 2.2.5R lockup In-Reply-To: <19980613231525.53114@mi.uni-koeln.de> from Stefan Esser at "Jun 13, 98 11:15:25 pm" To: se@FreeBSD.ORG (Stefan Esser) Date: Mon, 15 Jun 1998 09:30:13 +0200 (CEST) Cc: freebsd-bugs@FreeBSD.ORG, se@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL32 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Stefan Esser wrote: > On 1998-06-09 12:40 +0200, Hans Zuidam wrote: > > Hi, > > Recently I upgraded my old and trustworthy 2.1.5R to 2.2.5R and > > replaced an NE2000/ISA clone by a PCI one and installed the if_ed_p > > part of if_ed in the kernel config. Now, with uncanning regularity > > Hmmmm ??? The PCI probe code in if_ed_p.c is automatically > compiled into the kernel, if both "pci0" and "ed0" have been > defined ... Is this what you meant ??? In the configuration file I have: controller pci0 ... device ed1 and below that: controller isa0 ... device ed0 at isa? port 0x300 net irq 5 vector edintr What I find strange is that `ed2' is reported as being found, while I specify ed1 as the device name. > Could you please provide me with a VERBOSE boot message log ? Something like this? ----------------------------------------------------------------------- Jun 15 09:17:38 truk reboot: rebooted by root Jun 15 09:17:39 truk syslogd: exiting on signal 15 Jun 15 09:18:17 truk /kernel: Copyright (c) 1992-1997 FreeBSD Inc. Jun 15 09:18:17 truk /kernel: Copyright (c) 1982, 1986, 1989, 1991, 1993 Jun 15 09:18:17 truk /kernel: The Regents of the University of California. All rights reserved. Jun 15 09:18:17 truk /kernel: Jun 15 09:18:17 truk /kernel: FreeBSD 2.2.5-RELEASE #0: Mon Jun 15 09:14:53 CEST 1998 Jun 15 09:18:17 truk /kernel: root@truk.brandinnovators.com:/usr/src/sys.orig/compile/TRUK.bdm Jun 15 09:18:18 truk /kernel: Calibrating clock(s) ... i586 clock: 179646509 Hz, i8254 clock: 1193305 Hz Jun 15 09:18:18 truk /kernel: CLK_USE_I8254_CALIBRATION not specified - using default frequency Jun 15 09:18:18 truk /kernel: CLK_USE_I586_CALIBRATION not specified - using old calibration method Jun 15 09:18:18 truk /kernel: CPU: Pentium Pro (179.63-MHz 686-class CPU) Jun 15 09:18:18 truk /kernel: Origin = "GenuineIntel" Id = 0x617 Stepping=7 Jun 15 09:18:18 truk /kernel: Features=0xf9ff,MTRR,PGE,MCA,CMOV> Jun 15 09:18:18 truk /kernel: real memory = 67108864 (65536K bytes) Jun 15 09:18:18 truk /kernel: Physical memory chunk(s): Jun 15 09:18:18 truk /kernel: 0x00001000 - 0x0009efff, 647168 bytes (158 pages) Jun 15 09:18:18 truk /kernel: 0x00267000 - 0x03ffdfff, 64581632 bytes (15767 pages) Jun 15 09:18:18 truk /kernel: avail memory = 62332928 (60872K bytes) Jun 15 09:18:18 truk /kernel: pcibus_setup(1): mode 1 addr port (0x0cf8) is 0x80000090 Jun 15 09:18:18 truk /kernel: pcibus_setup(1a): mode1res=0x80000000 (0x80000000) Jun 15 09:18:18 truk /kernel: pcibus_check: device 0 is there (id=12378086) Jun 15 09:18:18 truk /kernel: Probing for devices on PCI bus 0: Jun 15 09:18:18 truk /kernel: configuration mode 1 allows 32 devices. Jun 15 09:18:18 truk /kernel: chip0 rev 2 on pci0:0 Jun 15 09:18:18 truk /kernel: chip1 rev 1 on pci0:7:0 Jun 15 09:18:18 truk /kernel: I/O Recovery Timing: 8-bit 1 clocks, 16-bit 1 clocks Jun 15 09:18:18 truk /kernel: Extended BIOS: enabled Jun 15 09:18:19 truk /kernel: Lower BIOS: enabled Jun 15 09:18:19 truk /kernel: Coprocessor IRQ13: enabled Jun 15 09:18:19 truk /kernel: Mouse IRQ12: disabled Jun 15 09:18:19 truk /kernel: Interrupt Routing: A: IRQ11, B: IRQ9, C: disabled, D: disabled Jun 15 09:18:19 truk /kernel: MB0: disabled, MB1: Jun 15 09:18:19 truk /kernel: chip2 rev 0 on pci0:7:1 Jun 15 09:18:19 truk /kernel: mapreg[20] type=1 addr=0000ffa0 size=0010. Jun 15 09:18:19 truk /kernel: Primary IDE: disabled Jun 15 09:18:19 truk /kernel: Secondary IDE: disabled Jun 15 09:18:19 truk /kernel: ahc0 rev 0 int a irq 11 on pci0:11 Jun 15 09:18:19 truk /kernel: mapreg[10] type=1 addr=0000fc00 size=0100. Jun 15 09:18:19 truk /kernel: mapreg[14] type=0 addr=ffbef000 size=1000. Jun 15 09:18:19 truk /kernel: reg16: ioaddr=0xfc00 size=0x100 Jun 15 09:18:19 truk /kernel: ahc0: Reading SEEPROM...done. Jun 15 09:18:19 truk /kernel: low byte termination enabled, high byte termination enabled Jun 15 09:18:19 truk /kernel: ahc0: aic7870 Wide Channel, SCSI Id=7, 16 SCBs Jun 15 09:18:19 truk /kernel: ahc0: Resetting Channel A Jun 15 09:18:19 truk /kernel: ahc0: Downloading Sequencer Program...ahc0: 366 instructions downloaded Jun 15 09:18:19 truk /kernel: Done Jun 15 09:18:19 truk /kernel: ahc0: Probing channel A Jun 15 09:18:20 truk /kernel: ahc0 waiting for scsi devices to settle Jun 15 09:18:20 truk /kernel: ahc0: target 0 using 16Bit transfers Jun 15 09:18:20 truk /kernel: ahc0: target 0 synchronous at 10.0MHz, offset = 0x8 Jun 15 09:18:20 truk /kernel: (ahc0:0:0): "QUANTUM XP34550W LXQ1" type 0 fixed SCSI 2 Jun 15 09:18:20 truk /kernel: sd0(ahc0:0:0): Direct-Access 4341MB (8890760 512 byte sectors) Jun 15 09:18:20 truk /kernel: sd0(ahc0:0:0): with 5899 cyls, 10 heads, and an average 150 sectors/track Jun 15 09:18:20 truk /kernel: (ahc0:2:0): "WangDAT Model 3100 03.0" type 1 removable SCSI 2 Jun 15 09:18:20 truk /kernel: st0(ahc0:2:0): Sequential-Access density code 0x13, drive empty Jun 15 09:18:20 truk /kernel: ahc0:A:3: refuses WIDE negotiation. Using 8bit transfers Jun 15 09:18:20 truk /kernel: ahc0: target 3 synchronous at 4.0MHz, offset = 0xf Jun 15 09:18:20 truk /kernel: (ahc0:3:0): "TOSHIBA CD-ROM XM-3501TA 3384" type 5 removable SCSI 2 Jun 15 09:18:20 truk /kernel: cd0(ahc0:3:0): CD-ROM cd present [1295120 x 512 byte records] Jun 15 09:18:20 truk /kernel: vga0 rev 0 on pci0:15 Jun 15 09:18:20 truk /kernel: mapreg[10] type=0 addr=ff000000 size=800000. Jun 15 09:18:20 truk /kernel: ed2 rev 0 int a irq 9 on pci0:19 Jun 15 09:18:20 truk /kernel: mapreg[10] type=1 addr=0000ff80 size=0020. Jun 15 09:18:20 truk /kernel: ed2: address 48:54:e8:2a:46:ce, type NE2000 (16 bit) Jun 15 09:18:20 truk /kernel: bpf: ed2 attached Jun 15 09:18:20 truk /kernel: pci0: uses 8392704 bytes of memory from ff000000 upto ffbeffff. Jun 15 09:18:20 truk /kernel: pci0: uses 304 bytes of I/O space from fc00 upto ffaf. Jun 15 09:18:21 truk /kernel: Probing for devices on the ISA bus: Jun 15 09:18:21 truk /kernel: sc0: the current keyboard controller command byte 0065 Jun 15 09:18:21 truk /kernel: kbdio: DIAGNOSE status:0055 Jun 15 09:18:21 truk /kernel: kbdio: TEST_KBD_PORT status:0000 Jun 15 09:18:21 truk /kernel: kbdio: RESET_KBD return code:00fa Jun 15 09:18:21 truk /kernel: kbdio: RESET_KBD status:00aa Jun 15 09:18:21 truk /kernel: sc0 at 0x60-0x6f irq 1 on motherboard Jun 15 09:18:21 truk /kernel: sc0: BIOS video mode:3 Jun 15 09:18:21 truk /kernel: sc0: VGA registers upon power-up Jun 15 09:18:21 truk /kernel: 50 18 10 00 10 00 03 00 02 67 5f 4f 50 82 55 81 Jun 15 09:18:21 truk /kernel: bf 1f 00 4f 0d 0e 00 00 07 80 9c 8e 8f 28 1f 96 Jun 15 09:18:21 truk /kernel: b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c Jun 15 09:18:21 truk /kernel: 3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff Jun 15 09:18:21 truk /kernel: sc0: video mode:24 Jun 15 09:18:21 truk /kernel: sc0: VGA registers for mode:24 Jun 15 09:18:21 truk /kernel: 50 18 10 00 10 00 03 00 02 67 5f 4f 50 82 55 81 Jun 15 09:18:21 truk /kernel: bf 1f 00 4f 0d 0e 00 00 00 00 9c 8e 8f 28 1f 96 Jun 15 09:18:21 truk /kernel: b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c Jun 15 09:18:21 truk /kernel: 3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff Jun 15 09:18:21 truk /kernel: sc0: VGA color <16 virtual consoles, flags=0x0> Jun 15 09:18:21 truk /kernel: ed0 at 0x300-0x31f irq 5 on isa Jun 15 09:18:21 truk /kernel: ed0: address 00:40:95:50:28:b5, type NE2000 (16 bit) Jun 15 09:18:21 truk /kernel: bpf: ed0 attached Jun 15 09:18:22 truk /kernel: sio0 at 0x3f8-0x3ff irq 4 on isa Jun 15 09:18:22 truk /kernel: sio0: type 16550A Jun 15 09:18:22 truk /kernel: sio1 at 0x2f8-0x2ff irq 3 on isa Jun 15 09:18:22 truk /kernel: sio1: type 16550A Jun 15 09:18:22 truk /kernel: bdm0 at 0x378-0x37f on isa Jun 15 09:18:22 truk /kernel: psm0: current command byte:0065 Jun 15 09:18:22 truk /kernel: kbdio: TEST_AUX_PORT status:0000 Jun 15 09:18:22 truk /kernel: kbdio: RESET_AUX return code:00fa Jun 15 09:18:22 truk /kernel: kbdio: RESET_AUX status:00aa Jun 15 09:18:22 truk /kernel: kbdio: RESET_AUX ID:0000 Jun 15 09:18:22 truk /kernel: psm0: status after reset 00 02 64 Jun 15 09:18:22 truk /kernel: psm: status 1a 03 c8 (get_mouse_buttons) Jun 15 09:18:22 truk /kernel: psm0: status 00 02 64 Jun 15 09:18:22 truk /kernel: psm0 at 0x60-0x64 irq 12 on motherboard Jun 15 09:18:22 truk /kernel: psm0: device ID 0, 3 buttons Jun 15 09:18:22 truk /kernel: pca0 on motherboard Jun 15 09:18:22 truk /kernel: pca0: PC speaker audio driver Jun 15 09:18:22 truk /kernel: fdc0 at 0x3f0-0x3f7 irq 6 drq 2 on isa Jun 15 09:18:22 truk /kernel: fdc0: FIFO enabled, 8 bytes threshold Jun 15 09:18:22 truk /kernel: fd0: 1.44MB 3.5in Jun 15 09:18:22 truk /kernel: npx0 on motherboard Jun 15 09:18:22 truk /kernel: npx0: INT 16 interface Jun 15 09:18:22 truk /kernel: joy0 at 0x201 on isa Jun 15 09:18:22 truk /kernel: joy0: joystick Jun 15 09:18:23 truk /kernel: imasks: bio c0000840, tty c003123a, net c003123a Jun 15 09:18:23 truk /kernel: sd0s1: type 0xa5, start 63, end = 2040254, size 2040192 : OK Jun 15 09:18:23 truk /kernel: sd0s2: type 0xa5, start 2040255, end = 8883944, size 6843690 : OK Jun 15 09:18:23 truk /kernel: BIOS Geometries: Jun 15 09:18:23 truk /kernel: 0:0228fe3f 0..552=553 cylinders, 0..254=255 heads, 1..63=63 sectors Jun 15 09:18:23 truk /kernel: 0 accounted for Jun 15 09:18:23 truk /kernel: Device configuration finished. Jun 15 09:18:23 truk /kernel: Considering FFS root f/s. Jun 15 09:18:23 truk /kernel: configure() finished. Jun 15 09:18:23 truk /kernel: new masks: bio c0000840, tty c003123a, net c003123a Jun 15 09:18:23 truk /kernel: bpf: tun0 attached Jun 15 09:18:23 truk /kernel: bpf: tun1 attached Jun 15 09:18:23 truk /kernel: bpf: tun2 attached Jun 15 09:18:23 truk /kernel: bpf: tun3 attached Jun 15 09:18:23 truk /kernel: bpf: sl0 attached Jun 15 09:18:23 truk /kernel: bpf: sl1 attached Jun 15 09:18:23 truk /kernel: bpf: sl2 attached Jun 15 09:18:23 truk /kernel: bpf: sl3 attached Jun 15 09:18:23 truk /kernel: bpf: ppp0 attached Jun 15 09:18:23 truk /kernel: bpf: ppp1 attached Jun 15 09:18:23 truk /kernel: bpf: ppp2 attached Jun 15 09:18:23 truk /kernel: bpf: ppp3 attached Jun 15 09:18:24 truk /kernel: bpf: lo0 attached Jun 15 09:18:24 truk /kernel: IP packet filtering initialized, divert enabled, logging limited to 100 packets/entry Jun 15 09:18:24 truk /kernel: sd0s1: type 0xa5, start 63, end = 2040254, size 2040192 : OK Jun 15 09:18:24 truk /kernel: sd0s2: type 0xa5, start 2040255, end = 8883944, size 6843690 : OK Jun 15 09:18:26 truk lpd[140]: restarted Jun 15 09:18:32 truk login: ROOT LOGIN (root) ON ttyv0 ----------------------------------------------------------------------- > You may want to check for this yourself: "dmesg|grep irq" ... ahc0 rev 0 int a irq 11 on pci0:11 ed2 rev 0 int a irq 9 on pci0:19 sc0 at 0x60-0x6f irq 1 on motherboard ed0 at 0x300-0x31f irq 5 on isa sio0 at 0x3f8-0x3ff irq 4 on isa sio1 at 0x2f8-0x2ff irq 3 on isa psm0 at 0x60-0x64 irq 12 on motherboard fdc0 at 0x3f0-0x3f7 irq 6 drq 2 on isa Hans -- H. Zuidam E-Mail: hans@brandinnovators.com Brand Innovators B.V. P-Mail: P.O. Box 1377 de Pinckart 54 5602 BJ Eindhoven, The Netherlands 5674 CC Nuenen Tel. +31 40 2631134, Fax. +31 40 2831138 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 15 03:00:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA11980 for freebsd-bugs-outgoing; Mon, 15 Jun 1998 03:00:47 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA11975 for ; Mon, 15 Jun 1998 03:00:46 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA19541; Mon, 15 Jun 1998 03:00:01 -0700 (PDT) Date: Mon, 15 Jun 1998 03:00:01 -0700 (PDT) Message-Id: <199806151000.DAA19541@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Dmitrij Tejblum Subject: Re: bin/6953: freeze on mount_msdos Reply-To: Dmitrij Tejblum Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/6953; it has been noted by GNATS. From: Dmitrij Tejblum To: root@techyman.ml.org Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/6953: freeze on mount_msdos Date: Mon, 15 Jun 1998 13:52:36 +0400 Charlie Root wrote: > if you mount_msdos without the /dev/ before the device node, it > freezes, and reboots. Annoying, yet passable > > >How-To-Repeat: > > mount_msdos wd0s1 /msdos > thats what i did and it froze, and rebooted. Cannot reproduce. Could you please do one of following: - make sure you don't run X and sit at the console, and watch panic messages carefully; - make sure your system is able to dump core; check if after the reboot a core dump created and look at the backtrace; Also, what is your current directory when you do this mount? Not /msdos, by a chance? Dima To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 15 08:40:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA00228 for freebsd-bugs-outgoing; Mon, 15 Jun 1998 08:40:53 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA00179 for ; Mon, 15 Jun 1998 08:40:49 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA17995; Mon, 15 Jun 1998 08:40:01 -0700 (PDT) Received: from techyman.ml.org (rlynn.csrlink.net [206.228.95.43]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA00138 for ; Mon, 15 Jun 1998 08:40:40 -0700 (PDT) (envelope-from root@techyman.ml.org) Received: (from root@localhost) by techyman.ml.org (8.8.8/8.8.8) id LAA00336; Mon, 15 Jun 1998 11:40:20 -0400 (EDT) (envelope-from root) Message-Id: <199806151540.LAA00336@techyman.ml.org> Date: Mon, 15 Jun 1998 11:40:20 -0400 (EDT) From: Charlie Root Reply-To: root@techyman.ml.org To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: bin/6955: ARGH... again with mount_msdos... more detailed this time Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6955 >Category: bin >Synopsis: NASTY reboot on mount_msdos >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jun 15 08:40:01 PDT 1998 >Last-Modified: >Originator: Charlie & >Organization: TeChYMaN's BSD Boxes >Release: FreeBSD 3.0-980520-SNAP i386 >Environment: p100 16 MB ram 1.2 GB HD (FAT32) 601 MB HD (BSD) >Description: if your in the mount dir of where your going to mount a FAT32 file system and do it will give you thr following error: pcmintr: lockmintr: panic something syncing discs : Automatic reboot set for 15 seconds You come back after the reboot and all sorts of junk is messed on your drive. >How-To-Repeat: for a mount point of /msdos do this: cd /msdos mount_msdos wd0s1 /msdos At least it happened for me, dunno >Fix: Unknown >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 Jun 15 08:44:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA01575 for freebsd-bugs-outgoing; Mon, 15 Jun 1998 08:44:13 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from sumatra.americantv.com (sumatra.americantv.com [207.170.17.37]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA01466 for ; Mon, 15 Jun 1998 08:44:03 -0700 (PDT) (envelope-from jlemon@americantv.com) Received: from right.PCS (right.PCS [148.105.10.31]) by sumatra.americantv.com (8.8.5/8.8.5) with ESMTP id KAA22535; Mon, 15 Jun 1998 10:43:57 -0500 (CDT) Received: (from jlemon@localhost) by right.PCS (8.6.13/8.6.4) id KAA04001; Mon, 15 Jun 1998 10:43:24 -0500 Message-ID: <19980615104323.11642@right.PCS> Date: Mon, 15 Jun 1998 10:43:23 -0500 From: Jonathan Lemon To: Matthew Dillon Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: i386/6944: bug in i386/isa/icu_ipl.s - AST gets lost, causes extreme network slowdown when cpu-bound processes present, possibly other problems References: <199806150210.TAA17801@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.61.1 In-Reply-To: <199806150210.TAA17801@freefall.freebsd.org>; from Matthew Dillon on Jun 06, 1998 at 07:10:01PM -0700 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Jun 06, 1998 at 07:10:01PM -0700, Matthew Dillon wrote: > The following reply was made to PR i386/6944; it has been noted by GNATS. > > From: Matthew Dillon > To: Bruce Evans > Cc: bde@zeta.org.au, dillon@backplane.com, FreeBSD-gnats-submit@FreeBSD.ORG > Subject: Re: i386/6944: bug in i386/isa/icu_ipl.s - AST gets lost, causes extreme network slowdown when cpu-bound processes present, possibly other problems > Date: Sun, 14 Jun 1998 19:00:43 -0700 (PDT) > > Fubar. I can't reproduce the xterm example on BEST's machines (running > 2.2.6). It's definitely reproduceable on my machine (3.0-current). > > I would like to track down what is causing the problem, so if anyone has > any suggestions on where the cpl can be checked for illegal values, > I'd appreciate it. I'll retest the VM86 removal to make sure that didn't > fix the problem and I'll test the AUTOEOI configs as well. > > As far as I can tell, the only two places where the bug can possibly be > are in the interface driver (pci/if_de.c) or the UDP/IP stack. > I recently observed something similar with doscmd/VM886. When running a cpu-bound process (rc5, for example), the cpl is not being reset to 0 when the doscmd process exits. Breaking to ddb and single-stepping across the iret instruction in doreti will sometimes `reset' the cpl. I'm pretty sure that this isn't a problem with the VM86 code, as I've seen this problem before (cf: doreti_stop in ipl.s), but this also happens even when not attempting to run in vm86 mode. -- Jonathan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 15 10:00:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA15229 for freebsd-bugs-outgoing; Mon, 15 Jun 1998 10:00:50 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from apollo.backplane.com (apollo.backplane.com [209.157.86.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA15220 for ; Mon, 15 Jun 1998 10:00:46 -0700 (PDT) (envelope-from dillon@backplane.com) Received: (dillon@localhost) by apollo.backplane.com (8.8.8/8.6.5) id KAA19679; Mon, 15 Jun 1998 10:00:44 -0700 (PDT) Date: Mon, 15 Jun 1998 10:00:44 -0700 (PDT) From: Matthew Dillon Message-Id: <199806151700.KAA19679@apollo.backplane.com> To: Jonathan Lemon Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: i386/6944: bug in i386/isa/icu_ipl.s - AST gets lost, causes extreme network slowdown when cpu-bound processes present, possibly other problems Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org :> fix the problem and I'll test the AUTOEOI configs as well. :> :> As far as I can tell, the only two places where the bug can possibly be :> are in the interface driver (pci/if_de.c) or the UDP/IP stack. :> : :I recently observed something similar with doscmd/VM886. When running :a cpu-bound process (rc5, for example), the cpl is not being reset to 0 :when the doscmd process exits. Breaking to ddb and single-stepping :across the iret instruction in doreti will sometimes `reset' the cpl. : :I'm pretty sure that this isn't a problem with the VM86 code, as I've :seen this problem before (cf: doreti_stop in ipl.s), but this also happens :even when not attempting to run in vm86 mode. :-- :Jonathan Yah, and even though I can't reproduce the problem with my NFS/xterm test on BEST's 2.2.6 machine, I notice that the load on any of our shell machines will shoot up from 2 to 10 just due to the presence of a cpu-bound program. Even though it's priority is maxed out, it still has an adverse effect on the rest of the machine. Very odd. I'm going to shoehorn my 'fix' into the next BEST kernel to see if it makes a difference there. My best bet finding the problem is still with my home -current setup, though, since I can reproduce it there. -Matt Matthew Dillon Engineering, BEST Internet Communications, Inc. [always include a portion of the original email in any response!] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 15 10:20:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA18444 for freebsd-bugs-outgoing; Mon, 15 Jun 1998 10:20:56 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA18427 for ; Mon, 15 Jun 1998 10:20:50 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA18529; Mon, 15 Jun 1998 10:20:02 -0700 (PDT) Received: from cer.ntnu.edu.tw (clkao@cer.ntnu.edu.tw [140.122.119.9]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA17431 for ; Mon, 15 Jun 1998 10:15:11 -0700 (PDT) (envelope-from clkao@cer.ntnu.edu.tw) Received: (from clkao@localhost) by cer.ntnu.edu.tw (8.8.8/8.8.7) id BAA13956; Tue, 16 Jun 1998 01:15:28 +0800 (CST) (envelope-from clkao) Message-Id: <199806151715.BAA13956@cer.ntnu.edu.tw> Date: Tue, 16 Jun 1998 01:15:28 +0800 (CST) From: clkao@CirX.ORG Reply-To: clkao@cer.ntnu.edu.tw To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: misc/6956: panic: Going nowhere without my init when probing device Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6956 >Category: misc >Synopsis: panic: Going nowhere without my init when probing device >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jun 15 10:20:01 PDT 1998 >Last-Modified: >Originator: Chia-liang Kao >Organization: CirX >Release: FreeBSD 2.2.6-RELEASE i386 >Environment: >Description: I went install FreeBSD on my friend's pc, and right after the cdrom or floppy boots, entering the sysinstall, showing `Probing devices', it says: "panic: Going nowhere without my init" and force me reboot. The system detected amd0 and od0 at startup. I've searched the archive of the lists, this seemed to be an old bug but happending when writing partition info. I didn't find any document referring to the panic when the sysinstall just starts. >How-To-Repeat: >Fix: >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 Jun 15 11:14:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA28324 for freebsd-bugs-outgoing; Mon, 15 Jun 1998 11:14:49 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA28296 for ; Mon, 15 Jun 1998 11:14:44 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA18697 for freebsd-bugs; Mon, 15 Jun 1998 11:00:06 -0700 (PDT) Date: Mon, 15 Jun 1998 11:00:06 -0700 (PDT) Message-Id: <199806151800.LAA18697@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 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 ------------------------------------------------------------------------------- a [1995/01/11] i386/105 bde Distributed libm (msun) has non-standard o [1996/06/05] kern/1293 Fatal trap 12: page fault while in kernel s [1996/07/15] bin/1387 Group file errors cause absolute havoc [P o [1996/10/08] kern/1744 peter run queue or proc list smashed 4 times in f [1996/10/28] kern/1919 se access to files/directories fails, gives o [1996/12/20] bin/2258 wollman route add/delete [network] xxx.yyy.zzz.0 o [1997/01/03] conf/2367 gibbs Buslogic SCSI driver bad probe of 742A EI f [1997/02/11] kern/2717 Panic with daily script (find) o [1997/03/08] kern/2923 panic: vm_fault: fault on nofault entry, o [1997/05/01] i386/3462 yokota using a PS/2 mouse causes kernel trap in o [1997/05/24] kern/3674 peter NFS in 2.2 RELEASE hangs. o [1997/06/01] kern/3752 peter NFS dirs under -current still have proble o [1997/06/01] kern/3753 peter "make" hangs when building in an NFS dir o [1997/06/25] kern/3949 sos The WD controller probe can fail when it o [1997/07/03] kern/4021 peter Local mount of a local NFS exported direc o [1997/07/31] kern/4200 peter NFS: "vm_fault: fault on nofault entry" w o [1997/08/11] kern/4273 kernel page faults with heavy disk access o [1997/08/12] kern/4289 kernel panic: vm_fault: fault on nofault o [1997/08/18] kern/4332 gibbs System crash after SCSI DAT tape access. o [1997/08/18] bin/4333 gibbs Dump backup utility completely crashes th o [1997/08/20] kern/4345 Kernel panic is caused by passing file de o [1997/09/02] kern/4453 2.2.2 lockup on restart with ASUS-TX97 mo o [1997/10/01] kern/4673 Two panics, now crash dumps, always in re o [1997/10/25] kern/4849 2.2.5-RELEASE does not detect TI PCI-1130 o [1997/10/25] kern/4851 adaptec 2940U hangs system if scsi tape d o [1997/10/27] kern/4864 Boot Failure in FreeBSD 2.2.5 RELEASE, ma o [1997/10/28] misc/4876 SCSI hard disks die too often o [1997/11/07] kern/4968 No flow control setting seems to make the o [1997/11/09] kern/4995 atalk.diff.2.2 patch to 2.2.5-RELEASE bre o [1997/11/10] kern/4996 peter NFS crash, possibly related to file bigge o [1997/11/20] kern/5117 panic: biodone: buffer not busy o [1997/11/23] kern/5130 Kernel panic GPF imediatly on loading ker s [1997/11/24] bin/5139 portmap does not find interfaces correctl o [1997/11/25] bin/5148 peter mode of file and access on NFS mounted p f [1997/12/04] i386/5223 mount_msdos /dev/fd0.1440 /mnt and failur f [1997/12/21] kern/5355 Fix for NULLFS problems s [1998/01/15] i386/5493 [PATCH] aic6330.c: kernel freeze when I a o [1998/01/26] bin/5572 A major time step blows cron up, runs tho o [1998/01/28] kern/5592 ffs_inode_hash_lock can get permanently l o [1998/01/28] i386/5594 System not bootable when bad partition ty o [1998/02/03] kern/5641 running processes at the IDLE priority (i o [1998/02/10] kern/5702 problem with address network routing o [1998/02/10] kern/5703 CDROM Media Error triggers complete syste o [1998/02/10] kern/5709 Fatal trap 12: page fault in kernel mode o [1998/02/12] bin/5732 2.2.5 Won't install using partition creat o [1998/02/16] kern/5766 kernel panic(s) in 2.2-STABLE o [1998/02/22] bin/5817 brian ppp: 100% cpu time, funny terminal mode ( o [1998/02/25] kern/5846 Generic SCSI ioctl w/ big data transfer f o [1998/03/01] kern/5886 2.2-STABLE crashes when unmounting a busy o [1998/03/01] kern/5895 Kernal dumps caused by fork? o [1998/03/02] kern/5898 2.2-stable kernel panics pmap_relase: fre o [1998/03/13] kern/5994 Kernel Panics on FreeBSD-3.0 current SMP o [1998/03/14] kern/6006 cy driver panics machine when a user dial o [1998/03/22] kern/6102 panic: biodone: buffer not busy o [1998/03/23] bin/6121 peter gethostbyname(3) no longer returns NO_DAT o [1998/03/25] kern/6133 optical drive with 1024-byte (1k) sectors o [1998/03/27] kern/6147 syncronus ufs does not sync o [1998/03/29] bin/6168 tn3270 gets undefined symbol error on sta o [1998/04/05] i386/6219 wine causes system crash o [1998/04/11] kern/6274 panic: handle_workitem_freeblocks: block o [1998/04/19] kern/6349 Luigi's sound driver stall wihen it outpu o [1998/04/24] ports/6405 ports does not build; ignores local CFLAGS, CXX o [1998/04/30] kern/6465 File contents are zeroed after reboot f [1998/05/08] bin/6552 syslog stops working o [1998/05/13] bin/6627 TCP-based RPC denial-of-service attack s [1998/05/13] kern/6630 [PATCH] Fix for Cyrix I8254 bug s [1998/05/15] bin/6649 imp normal users can initiate gigantic ping f o [1998/05/19] kern/6689 kern_physio.c splits requests breaking cd o [1998/05/19] i386/6693 gibbs computer hang for timeout in scsi control f [1998/05/19] kern/6694 Network hangs, with "No buffers available o [1998/05/23] kern/6732 PCCARD kernel panic in sio driver s [1998/06/03] kern/6853 peter Having an inactive de0 in system leads to o [1998/06/06] misc/6873 FreeBSD 2.2.6 freezes o [1998/06/08] conf/6896 gibbs cannot boot installation diskette with AH o [1998/06/10] ports/6910 dburr new port : mkhybrid o [1998/06/11] kern/6914 FreeBSD 2.2.6-RELEASE and NFS is UNSTABLE o [1998/06/14] i386/6944 icu_ipl.s does has a case commented as ca 77 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1995/03/02] misc/229 bde acos() core dump a [1995/03/20] kern/260 davidg msync and munmap don't bother to update m s [1995/05/16] kern/425 arp entries not getting removed when inte f [1995/06/17] kern/527 dufault dump causes assertion in ncr.c o [1995/07/02] kern/579 bde sio: RS_IBUFSIZE at 256 bytes serial line s [1995/07/29] kern/638 Transmitted packets not passed to bpf in o [1995/10/18] bin/786 wpaul Problem with NIS and large group maps a [1996/02/17] bin/1030 cracauer /bin/sh does not pass environment variabl s [1996/03/06] kern/1067 panic: ufs_lock: recursive lock not expec o [1996/05/24] misc/1247 yokota Conflicting header files f [1996/05/26] kern/1256 ZNYX 314 mysterously looses packets o [1996/06/07] kern/1301 davidg DEC FDDI/PCI Adapter: halt code = 6 (DMA f [1996/06/12] bin/1315 des ls(1) s [1996/07/19] docs/1402 doc sh(1) manual f [1996/08/03] bin/1461 Incorrect address binding of Kerberized r o [1996/08/04] kern/1467 gibbs scsi_prevent causing tape problems on clo o [1996/08/18] kern/1512 dyson Use of madvise may may cause bad memory m f [1996/08/22] kern/1533 dyson Machine can be panicked by a userland pro o [1996/09/19] bin/1650 telnet encryption with char-mode and asci s [1996/09/21] kern/1661 ft driver hangs uninterruptably at "bavai o [1996/09/29] kern/1689 wollman TCP extensions throttles distant connecti o [1996/10/01] bin/1702 phk installing of tcl manpages fails from mak o [1996/10/04] kern/1723 gibbs kernel fault when doing scsi reprobe o [1996/10/04] kern/1724 gibbs HP colorado T4000S tape drive hangs syste o [1996/10/04] kern/1726 panic in kmem_malloc (dump available) o [1996/10/15] kern/1812 dyson vnodes are left in a locked state o [1996/10/15] kern/1814 cy driver gets deadlocked sometimes o [1996/10/20] kern/1848 breakpoints may be set in shared librarie f [1996/10/21] kern/1856 peter read-only nfs mount: panic leaf should be a [1996/10/22] ports/1866 wosch popclient flushes remote mailbox even wit s [1996/10/26] bin/1892 install(1) removes target file s [1996/11/08] gnu/1981 ypserv handles null key incorrectly o [1996/11/13] ports/2000 asami obsolete software in distfiles directory a [1996/11/13] bin/2001 vi confused about lines to display a [1996/11/14] kern/2014 sos Console keyboard lockup problem o [1996/11/18] kern/2053 peter de0 driver don't work at 100M for Compex s [1996/12/03] kern/2142 FP mask not saved for signal handlers s [1996/12/22] ports/2268 ports libc from linux emulator does not use /et o [1996/12/22] kern/2270 Hayes ESP serial card locks system as of a [1996/12/30] kern/2325 quota.user enlarged, no boot on 2.2-BETA o [1996/12/30] kern/2330 changing root device to sd0a - ncr0: abor o [1997/01/07] gnu/2394 tar will extract files even if -C command o [1997/01/08] kern/2425 amd driver does not reprobe devices. o [1997/01/09] bin/2430 mountd stops on loading if subnet mask is o [1997/01/09] i386/2431 tegge panic: get_pv_entry: cannot get a pv_entr o [1997/01/12] i386/2471 Sound: Reset failed - Can't reopen device o [1997/01/13] misc/2479 sos NEC CD-ROM NOT RECOGNIZED; MATROX MISTIQU o [1997/01/13] bin/2489 steve gnats mangles sections o [1997/01/16] kern/2507 Renaming DOS directories with "mv" causes o [1997/01/20] bin/2541 tegge cd (using /bin/sh) may leave you in the w o [1997/01/20] kern/2545 se < sd0(ncr0:6:0): COMMAND FAILED ==> Not a [1997/01/21] bin/2549 sos cdcontrol refuses to play audio CDs from o [1997/02/02] kern/2640 2.2-RELENG leaks memory (router/pppd serv s [1997/02/03] kern/2647 changing existing route to -static crashe o [1997/02/05] kern/2667 wollman bpfattach can hang the system o [1997/02/05] bin/2671 Run-away processes using all CPU time a [1997/02/06] kern/2675 lkmcioctl() is not consistent and careful o [1997/02/07] kern/2690 asami When Using ccd in a mirror mode, file cre o [1997/02/08] kern/2695 sio1 (16540 serial port) is not recognize o [1997/02/09] kern/2698 After rewind I cannot read a tape; blocks o [1997/02/12] kern/2719 added support for magneto-optical SCSI di o [1997/02/14] bin/2736 No boot block if no FreeBSD partitions on o [1997/02/15] kern/2742 panic: leaf should be empty o [1997/02/15] bin/2747 davidn cannot submit at jobs from within an at j o [1997/02/16] gnu/2749 peter cvs export using remote cvs fails - CVS/T o [1997/02/17] kern/2751 asami 2GB limitation on CCD device partitions s o [1997/02/18] bin/2762 Precedence mistake in libncurses o [1997/02/19] kern/2768 ktrace(1) -i dumps corrupted trace data o [1997/02/19] bin/2769 fsck needs several runs to clean up bad/d o [1997/02/19] kern/2770 panic: vm_fault: fault on nofault entry o [1997/02/19] kern/2771 panic: bad dir o [1997/02/19] kern/2773 peter bad dir panic o [1997/02/20] misc/2784 brian userland PPP rises load to 1.00 o [1997/02/20] bin/2785 wpaul callbootd uses an unitialized variable o [1997/02/20] gnu/2786 gcc version 2.7.2.1 C compiler slows down o [1997/02/21] misc/2793 libc_r make fscanf failure o [1997/02/22] kern/2800 DDS large data writing probrem o [1997/02/25] kern/2815 Custom Kernel crashes o [1997/03/01] kern/2840 mlock+minherit+fork+munlock causes panics o [1997/03/03] i386/2853 sos syscons beeps even if beeping screen is n o [1997/03/03] kern/2858 peter FreeBSD NFS client can't mount filesystem o [1997/03/04] kern/2873 the od0 devies does not handle a Maxoptix o [1997/03/07] bin/2915 the "-fstype ufs" option of "find" seems o [1997/03/08] kern/2919 vm_fault: fault on nofault entry, addr: f o [1997/03/11] bin/2948 can't dump 640MB optical disks o [1997/03/12] kern/2965 st0 hang/fail on reading 4mm DAT tape for o [1997/03/12] bin/2969 csh and/or builtin printf has problems wi o [1997/03/12] bin/2973 output of iostat is wrong. o [1997/03/15] kern/2991 RTF_LLINFO routes remain when interface i o [1997/03/18] kern/3021 panic after sync during reboot o [1997/03/21] kern/3054 ahasty OPL3 sound off by one note o [1997/03/21] bin/3055 umount -f does not work o [1997/03/28] i386/3130 yokota Dell Latitude keyboard lock up o [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 o [1997/04/05] ports/3205 jmz Mtools-3.0 attempts to flock() a disk par o [1997/04/06] kern/3216 panic: pmap_zero_page: CMAP busy o [1997/04/06] kern/3219 sppp or arnet gets looped after connectio o [1997/04/09] kern/3244 ipfw flush closes connections o [1997/04/10] bin/3246 mtree -c should escape whitespace and spe o [1997/04/15] bin/3305 Can't do encrypted rlogin into self o [1997/04/18] bin/3325 brian http request over ijppp hangs o [1997/04/18] kern/3327 using gdb may cause hanging processes. o [1997/04/19] bin/3355 se ncrcontrol fails when -DFAILSAFE in kerne o [1997/04/25] kern/3381 peter 2.2.x kernel panic on traversing and remo o [1997/04/25] kern/3384 telldir-seekdir can cause livelock o [1997/04/28] bin/3406 rich Fresh Internet Install - Permissions on f o [1997/05/01] gnu/3441 C++ exceptions don't work in shared libra o [1997/05/01] kern/3463 netstat -I packet count increase on sl0 w o [1997/05/03] bin/3478 pwd_mkdb and passwd o [1997/05/04] i386/3502 Merge of if_ix* and if_ie* broke EE/16 su o [1997/05/06] bin/3524 rlogin doesn't read $HOSTALIASES for non- o [1997/05/07] kern/3527 peter if_de.c doesn't recognize Kingston card p o [1997/05/09] kern/3564 using MPU401 driver pagefaults kernel o [1997/05/09] kern/3569 ex0 driver doesn't work with EtherExpress o [1997/05/11] misc/3578 defining CXXFLAGS in /etc/make.conf or en o [1997/05/12] kern/3579 peter de driver doesn't support newer SMC 9332 o [1997/05/12] kern/3581 intermittent trap 12 in lockstatus() o [1997/05/12] kern/3582 panic: bad dir (mangled entry) in 2.2-STA o [1997/05/13] conf/3591 parts in rc.local have no effects in rc.* s [1997/05/25] kern/3685 [PATCH] panic: fdesc attr o [1997/05/30] conf/3725 Cirrus Logic PCMCIA Controller Support o [1997/05/30] kern/3726 peter process hangs in 2.2-stable when working o [1997/05/30] kern/3727 SCSI II tape support broken o [1997/06/01] kern/3745 Use of ed0 with buff addr of C8000 causes o [1997/06/01] conf/3750 phk Potential improvements to rc.firewall o [1997/06/03] kern/3771 NFS hangs when writing to local FS re-mou o [1997/06/04] i386/3779 changing cursor to blinking block causes o [1997/06/07] conf/3807 mitsumi cd-rom fx800 (8x cd-rom) is not r o [1997/06/08] gnu/3810 cvs can't handle multiple multiple-path d o [1997/06/16] misc/3883 @+netgroup entries break +NIS-user entrie o [1997/06/18] kern/3899 df while unmounting floppy crashes 2.2.2 o [1997/06/19] kern/3909 joerg A patch supporting some new worm drivers o [1997/06/19] gnu/3910 sort(1) of 2.2.1R doesn't work in special o [1997/06/28] misc/3980 peter access via NFS fails during mount-operati o [1997/06/29] bin/3982 /usr/include/arpa/tftp.h has bug preventi o [1997/06/29] bin/3986 rdist seg faults when target machine is d o [1997/07/02] kern/4012 peter 2.2-RELEASE/Digital UNIX NFSv3 0 length f o [1997/07/02] misc/4013 boot floppy hangs if IDE ZIP Drive presen o [1997/07/04] kern/4032 gibbs During recovery from scsi errors, incorre s [1997/07/06] gnu/4042 gdb stackframe in static library shows no o [1997/07/07] ports/4050 jfitz mrtg: rateup dumps core with malloc_optio o [1997/07/12] bin/4078 sos Typed password to log in on console and i o [1997/07/17] kern/4115 peter SunOS NFS file has wrong owner if creator o [1997/07/26] bin/4176 restore gets confused when run over pipe o [1997/07/27] ports/4179 fenner lmbench-1.1 dumps core after asking for m o [1997/07/28] kern/4186 peter nfsiod, panic, page fault in kernel mode o [1997/07/30] kern/4194 peter kernel pci driver for Digital 21041 Ether o [1997/08/04] i386/4226 Floating point exception for double preci o [1997/08/06] kern/4240 kernel fails to recognise 2nd serial port o [1997/08/08] conf/4252 peter sendmail doesn't use smrsh by default o [1997/08/09] kern/4256 gibbs ahc driver: kernel goes to strange state o [1997/08/10] kern/4260 EOF handling in st(4) is broken o [1997/08/10] kern/4265 Panic in dsinit when multiple FreeBSD sli o [1997/08/10] kern/4270 ch driver does not use bounce buffers o [1997/08/11] bin/4276 Security problem with DNS resolution o [1997/08/12] kern/4284 le0 goes OACTIVE after some time o [1997/08/13] kern/4295 SL/IP difficulties between 2.2.1 & 2.2.2 o [1997/08/16] kern/4312 arp table gets messed up, syslog "gateway o [1997/08/17] kern/4327 peter NFS over TCP reconnect problem s [1997/08/19] kern/4338 New device driver (Cyclades Cyclom-Z) o [1997/08/21] bin/4353 fetch -m changes modified date o [1997/08/22] bin/4357 wosch bug in adduser script causes duplicate UI o [1997/08/23] bin/4366 bad144 crashes if checking over 2gb o [1997/08/25] docs/4381 mount -t msdos causes panic:vm_fault o [1997/08/25] kern/4382 CURRENT kernel has a "free vnode isn't" p o [1997/08/27] ports/4405 jfitz ascend-radius port is out-of-date o [1997/09/02] kern/4454 X drops characters/locks up keyboard when o [1997/09/03] bin/4460 lpd hangs exiting (IE in ps table) o [1997/09/06] bin/4476 fetch puzzled while getting files when ma o [1997/09/07] kern/4487 Kernel panic executing a directory o [1997/09/08] bin/4497 Reverse DNS fails for some CIDR *.IN-ADDR o [1997/09/09] kern/4505 Support for Gravis UltraSound PnP card o [1997/09/10] kern/4508 peter nfs3 data integrity problems o [1997/09/11] kern/4513 System lockup appears to be VM related. o [1997/09/14] i386/4533 Server with Cyclom-Y PCI card rebooted at o [1997/09/14] kern/4544 Linux emulator problems when MAXDSIZ is i a [1997/09/18] bin/4568 simple /bin/sh script produces wrong resu o [1997/09/19] bin/4582 integer overflow in 'sa -km' o [1997/09/19] bin/4585 termcap search fails too early o [1997/09/20] kern/4588 peter NFS access locks up o [1997/09/21] kern/4600 peter nfs lookups might give incorrect result o [1997/09/26] conf/4634 peter Sendmail Problem o [1997/09/27] bin/4638 telnet tries to resolve numerical IP addr o [1997/09/30] kern/4663 checkalias panic o [1997/10/01] kern/4666 dfr umount -f doesn't seem to work o [1997/10/01] bin/4672 rdist does not do hard links right when t o [1997/10/03] bin/4683 restore doesn't correctly handle "sparse" o [1997/10/05] docs/4691 no documentation for mk_cmds(1) o [1997/10/14] kern/4768 netatalk won't start with multicast error o [1997/10/15] kern/4772 ATAPI CD (bootable) causes kernel panic o [1997/10/16] ports/4773 torstenb Error in posting news items to INN server o [1997/10/16] kern/4774 trying to use IBCS2 shared libraries cras o [1997/10/16] kern/4782 Under certain conditions, several krsh's o [1997/10/18] bin/4795 glitch in /bin/sh cd command o [1997/10/18] ports/4798 jmz setuid-root Xserver problem o [1997/10/19] ports/4803 ports xgrabsc dies with "bus error" after selec o [1997/10/24] kern/4843 48 meg double fault moved to 64 meg in 2. o [1997/10/25] bin/4850 peter Named crashes with "rm_datum: DB_F_ACTIVE o [1997/10/26] kern/4859 SMP kernel panics with timeout table full o [1997/10/27] ports/4865 ports xdm doesn't set env variables o [1997/10/28] bin/4884 the version of amd in 2.2.5-RELEASE appea o [1997/10/31] bin/4907 Oct 33* Daylight Savings Time ends; clock o [1997/10/31] kern/4909 de ethernet driver is crazy on 100base o [1997/11/01] bin/4913 peter Large mail messages can cause mail.local o [1997/11/01] bin/4917 Bad parameters to ifconfig cause kernel p o [1997/11/03] kern/4927 kernel does not check any quota and permi o [1997/11/04] bin/4939 uuxqt unable to execute rnews program o [1997/11/05] kern/4945 continued failure to use the Adaptec 1460 o [1997/11/05] bin/4949 rpc.rquotad stat()s fs with quota file in o [1997/11/05] i386/4950 no multicast support for zp - 3c589 o [1997/11/09] kern/4990 peter NFS hangs under FastEthernet. 1024 Bytes o [1997/11/10] bin/4998 peter mail and more do not work well with being o [1997/11/10] misc/5001 During installation sc0 device is require o [1997/11/10] misc/5005 f2c is buggy and seriously outdated (agai o [1997/11/11] bin/5008 libc_r not working at static linking o [1997/11/15] conf/5062 login.access not evaluated correctly o [1997/11/18] bin/5084 wrong "term" for internal shell o [1997/11/18] kern/5085 System crash during mount command for CD o [1997/11/20] bin/5105 mount_cd9660 or mount -t cd9660 fails to o [1997/11/20] misc/5107 rebuilding of whatis database does not ca o [1997/11/22] gnu/5126 C++ compiler bug (assembly output) o [1997/11/23] i386/5128 Adaptec 2940U Timeouts with QUANTUM disk s [1997/12/02] bin/5189 rcmd(3) only allows one hardcoded connect s [1997/12/02] conf/5191 [PATCH] fsck during boot fails due to lac s [1997/12/03] misc/5207 Examples for /etc are not in /usr/share/e o [1997/12/06] kern/5244 F00F workaround dosn't always work on SMP o [1997/12/13] kern/5285 quotas do not work properly with setuid p s [1997/12/14] bin/5297 make incompatibility with System V style o [1997/12/19] misc/5343 booteasy problem o [1997/12/19] kern/5347 peter DEC (de0) ethernet card has no buffers af a [1997/12/21] docs/5358 doc USWC write posting must be turned off on o [1997/12/30] kern/5396 fdesc fs crashes system o [1997/12/31] i386/5401 peter de0 selects wrong media when reconnected o [1998/01/03] bin/5422 brian Userland PPP with aliasing enabled and mr f [1998/01/08] kern/5456 After writing more than 100MB to SCSI Exa s [1998/01/15] bin/5497 [PATCH] Rbootd cannot boot my hp9000s340 f [1998/01/15] misc/5499 when setting up the partition for free bs o [1998/01/15] bin/5500 "invalid hostname" is logged instead of I o [1998/01/16] kern/5513 luigi new PnP code is BAD (soundcards) s [1998/01/19] kern/5522 [PATCH] ip_input.c & ip_output.c problems o [1998/01/20] ports/5530 asami fetch (in make fetch stage) do not use pa o [1998/01/22] bin/5548 syslogd core dumps when signaled o [1998/01/22] misc/5552 RE: Linux append=reboot=bios parameter im o [1998/01/26] misc/5574 bootpd gets timezone incorrectly o [1998/01/27] kern/5587 session id gets dropped o [1998/01/29] kern/5598 Support for magneto-optic SCSI devices wi s [1998/01/30] bin/5604 setenv(3) function has memory leak, other o [1998/01/30] kern/5606 Kernel Panic running Linux Binary without o [1998/01/31] kern/5611 bind does not check sockaddr->sin_family o [1998/02/01] kern/5618 kernel memory leak in routetbl. o [1998/02/01] kern/5624 dumping to tape causes scsi bus reset o [1998/02/04] kern/5643 NCR 810/815 do not handle rewind correctl o [1998/02/05] bin/5661 /sbin/dump never finishes o [1998/02/06] bin/5669 rarpd is seriously broken o [1998/02/06] misc/5673 2.2-980204-SNAP installer runs out of dis o [1998/02/09] bin/5693 groff -mm or groff -mmm ??? o [1998/02/10] i386/5698 LPIP causes spurious reboots o [1998/02/11] misc/5722 Brazil can't decide on daylight savings o [1998/02/12] kern/5728 peter NFS hangs o [1998/02/12] kern/5731 peter executables wedge on "vmopar" when built o [1998/02/12] bin/5733 cp -r cannot copy un-writable directories o [1998/02/15] i386/5760 3.0-CURRENT freezes at mount root stage o o [1998/02/17] gnu/5767 man leaves partially formatted cat pages f [1998/02/17] ports/5770 asami PKG_NAME on ports japanese/expect is *NO o [1998/02/19] kern/5794 Kernel Panic o [1998/02/23] ports/5825 ports cd-write 1.4 fails to read tracks. o [1998/02/23] kern/5827 kernel panics in current (3.0) o [1998/02/24] kern/5839 vm_page_unwire: invalid wire count: 0 o [1998/02/25] docs/5842 description of -c and -o conn in mount_nf o [1998/02/25] bin/5845 in sh, set -- `getopt ...` always returns o [1998/02/25] ports/5850 me xemacs-20.3 contains bad send-pr o [1998/02/25] misc/5852 Page fault or error caused by writing to o [1998/02/25] bin/5854 host -l MX or NS core dumps o [1998/02/27] bin/5867 peter pppd or FreeBSD ? o [1998/02/28] kern/5877 sb_cc counts control data as well as data o [1998/03/01] kern/5890 peter NFS server Side say NFSERR_BAD_COOKIE (rm o [1998/03/01] kern/5896 FreeBSD host can't network-write to other o [1998/03/02] kern/5904 panic: newfs o [1998/03/06] ports/5933 ports emacsserver (19.34b) hostname in /tmp/ese o [1998/03/09] bin/5959 Cannot set up clocal gettys o [1998/03/09] ports/5960 ports Added printer device o [1998/03/09] bin/5961 dup2 wrapper in libc_r is incomplete o [1998/03/10] kern/5965 FreeBSD TCP/IP connectivity get buried by o [1998/03/10] kern/5969 non-root user can reboot/lock up system o [1998/03/10] ports/5970 ports psmisc ports uploaded to freebsd.org:/pub o [1998/03/10] kern/5974 -current VM oddities o [1998/03/11] kern/5975 can't boot freebsd: fatal trap12: page fa o [1998/03/11] kern/5979 julian sd.c doesn't validate all mode sense 4 va o [1998/03/12] kern/5991 panic: free vnode isn't o [1998/03/14] conf/6002 peter /etc/mail/sendmail.cf.addtions seems to l o [1998/03/14] bin/6004 cron in -CURRENT sometimes fails to proce o [1998/03/14] bin/6005 -CURRENT cron dies after short periods of o [1998/03/16] kern/6035 The system "sort-of" hangs when playing b o [1998/03/18] kern/6059 Packets from 1.1.1.1 can crash 2.2 server o [1998/03/19] kern/6066 lnc driver does not work correctly with A o [1998/03/19] bin/6071 2.2.6-980315-BETA up grade option problem o [1998/03/20] bin/6074 Incremental dumps are backing up unchange o [1998/03/21] bin/6087 sh doesn't work properly on certain confi o [1998/03/22] kern/6099 LPIP to slow machine causes hang o [1998/03/22] kern/6103 panic: ffs_valloc: dup alloc o [1998/03/23] kern/6116 In system with wd0, wd2, kernel cannot fi o [1998/03/28] bin/6162 kinit does not default to the current use o [1998/03/30] ports/6180 max youbin port has root-exploitable security o [1998/04/01] kern/6191 SCSI driver error o [1998/04/02] ports/6195 msmith wrong font path in vncserver o [1998/04/02] kern/6197 3com905 Seriously broken o [1998/04/03] kern/6201 bde 2.2.6 kernel can't find sio[12] on Iwill o [1998/04/03] kern/6203 kernel panics with "blkfree: freeing free o [1998/04/03] conf/6205 NFS/NIS freak out o [1998/04/04] kern/6212 Two bugs with MFS filesystems fixed, one o [1998/04/07] kern/6238 luigi Sound-driver patch for MAD16 (OPTi 928,92 o [1998/04/07] kern/6242 vnode disk driver too unstable in -STABLE o [1998/04/08] kern/6251 peter ktrace very broken when logging over NFS o [1998/04/08] kern/6252 ide cdrom hangs system when on same bus a o [1998/04/09] kern/6253 Atapi wait for command phase too short. o [1998/04/10] kern/6267 dyson panic: pmap_dispose_proc: upage already m o [1998/04/11] kern/6277 mouse operation weird in -current o [1998/04/13] ports/6288 se KDE port glitches o [1998/04/14] kern/6300 System locks up in SMP mode when accessin f [1998/04/15] misc/6310 des explicit cast needed in floatpoint.h for o [1998/04/16] bin/6317 with -8E flags telnet still goes to comma o [1998/04/17] kern/6336 peter NFSv3 should support files >2GB, but does o [1998/04/17] misc/6340 missing the terminfo, which causes librar o [1998/04/18] kern/6344 cy driver is outdated o [1998/04/19] kern/6351 DPT RAID controller stops working under h s [1998/04/19] bin/6353 How about upgrading from amd to am-utils? o [1998/04/20] i386/6368 Stallion Easyio 8 port not detected using o [1998/04/22] bin/6383 csh - when ctrl-d is pressed, file is chm o [1998/04/25] kern/6412 peter NFS sends packets from the wrong interfac o [1998/04/26] ports/6426 ports ports/graphics/jpeg doesn't build s [1998/04/28] docs/6444 doc Micron system hanging a [1998/04/30] kern/6471 jkh 2.2.6 install process causes kernel panic o [1998/04/30] misc/6472 jb [PATCH] _thread_flockfile() hangs process a [1998/05/01] kern/6481 se Patches for VIA Socket 7 chipsets o [1998/05/02] ports/6484 ports xemacs hangs o [1998/05/03] kern/6506 system will not soft reboot f [1998/05/05] kern/6525 Coral-Draw 5 CD crashes 2.2.6-STABLE a [1998/05/06] bin/6536 pppd doesn't restore drainwait for tty s [1998/05/06] bin/6539 [PATCH] bmake version of perl5 available o [1998/05/07] misc/6549 steve You dont always get notified when someone o [1998/05/08] bin/6557 /bin/sh is broken o [1998/05/10] kern/6574 ipfw crash with DIAGANOSTICS o [1998/05/10] bin/6577 /bin/sh environment variables not set in o [1998/05/10] i386/6578 Problem with tx driver on 100Mbps o [1998/05/11] kern/6587 SMP idle cpl breaks signal forwarding o [1998/05/11] kern/6589 system panick'd with May 4th kernel o [1998/05/11] ports/6591 ports KDE starts /usr/bin/kzip instead of /usr/ o [1998/05/12] kern/6603 ncr driver hangs under high load o [1998/05/12] bin/6609 gmp.h not installed o [1998/05/15] kern/6650 joerg Replugging PS/2 keyboard causes a panic o [1998/05/17] kern/6670 PANIC on boot with FreeBSD 3.0 (same comp o [1998/05/18] ports/6680 ghelmer submitted port of HINT benchmark s [1998/05/19] kern/6686 [STABLE] -stable does not support large I o [1998/05/20] kern/6706 mount_msdos+mount_null+mc=panic f [1998/05/21] kern/6710 Quiting PPP paniced my machine o [1998/05/21] ports/6715 jraynard ElectricFence fails to work on -current o [1998/05/25] kern/6751 audio cd play suddenly stops. o [1998/05/25] kern/6755 peter Tulip (if_de) driver buggy in -current o [1998/05/27] kern/6771 peter panic: Bad nfs svc reply s [1998/05/27] misc/6773 [PATCH] tempnam.c security problems s [1998/05/29] bin/6790 [PATCH] make(1) coredumps in debugging mo s [1998/05/30] bin/6799 [THREAD,SCSI] problem with open(2) in lib o [1998/06/01] ports/6821 ports wwwoffle-2.1 port (second posting) o [1998/06/01] misc/6824 peter Intel EtherExpress 100+, 2.2.6 NFS troubl s [1998/06/02] bin/6830 make(1) exhibits confusing and non-standa o [1998/06/03] ports/6850 ports New port: xteddy o [1998/06/03] ports/6851 ports apply DFN-CERT#34784 to CGIParse.c o [1998/06/03] kern/6852 -stable doesn't build s [1998/06/04] kern/6854 ahasty [PATCH] probing brooktree849 capture card o [1998/06/04] kern/6858 inetd in realloc(): warning: junk pointer o [1998/06/04] bin/6860 chgrp missing from /sbin o [1998/06/04] misc/6861 [PATCH] netboot error f [1998/06/05] kern/6865 OS crashes when exiting shell with suspen o [1998/06/05] ports/6870 ports new port, Kerberos V 1.0.5 o [1998/06/05] conf/6871 ${LIBDIR} not setted correctly when using o [1998/06/05] conf/6872 Wrong csu lib built when setting BINFORMA a [1998/06/06] i386/6881 Error in "make depend" on -STABLE after c o [1998/06/08] ports/6897 ports kde port doesn't compile w/o slight modif o [1998/06/09] ports/6902 ports xemacs package broken (motif dependency) o [1998/06/10] docs/6905 doc man description of mount_nfs abount -o co o [1998/06/10] kern/6908 kernel crash from user land o [1998/06/11] ports/6923 dburr New port, grail-0.4 web browser o [1998/06/11] ports/6924 ports New port, Hesiod 3.0.2 o [1998/06/12] ports/6929 ports fxtv-0.47 fails to build on AccelX server o [1998/06/12] ports/6930 ports socks5 port broken by /usr/lib/aout chang o [1998/06/14] conf/6947 allow ip address for natd_interface in rc o [1998/06/15] bin/6955 NASTY reboot on mount_msdos o [1998/06/15] misc/6956 panic: Going nowhere without my init when 389 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- s [1995/01/14] bin/115 systat iostat display doesn't scale high s [1995/05/13] bin/401 Add REMOTE_* variables s [1995/05/23] i386/440 want vidcontrol option to apply settings a [1995/05/27] gnu/450 scrappy tar --exclude -c doesn't work s [1995/06/15] bin/517 Bad group change with 'install' o [1995/07/09] misc/605 wpaul NIS: get*bynis routine problems s [1995/08/05] gnu/655 ld -r of shared objects worked in 1.1.5, s [1995/08/07] bin/658 ifconfig alias has to be separately given s [1995/09/26] kern/742 syslog errors accessing Mac hard disks [p s [1995/10/03] kern/765 umount -f can`t umount a NFS filesystem i s [1995/11/20] kern/831 one minor complaint about the kernel visu s [1995/11/27] bin/841 stale nfs mounts cannot be umounted o [1995/11/30] bin/854 dyson swapinfo shows incorrect information for o [1995/12/17] kern/900 dyson ext2fs triggers divide by zero trap in vn s [1996/01/21] bin/961 'more $file', incorrect CRLF compacting. s [1996/01/28] kern/975 getrusage returns negative deltas a [1996/01/30] bin/981 fenner clnt_broadcast() is not aware of aliases s [1996/02/07] bin/999 /usr/share/mk/sys.mk missing common $(RM) o [1996/02/25] i386/1042 bde Warning from sio driver reports wrong dev s [1996/03/20] kern/1090 iostat displays incorrect sps count s [1996/03/20] bin/1093 route's diagnostic is weird o [1996/04/06] kern/1119 dyson Mounted EXT2FS partition is not cleanly u o [1996/05/15] bin/1206 cracauer /bin/sh + emacs + ^G = ruined terminal s [1996/06/11] bin/1312 automounter hangs on boot s [1996/06/13] bin/1320 dump limits blocksize to 32K s [1996/06/18] i386/1331 [PATCH] changes and bug in ft driver s [1996/07/07] bin/1375 jraynard Extraneous warning from mv(1) [PATCH] o [1996/07/21] ports/1416 ports cflow(1) doesn't parse GNU C __attribute_ f [1996/07/24] misc/1428 ncurses doesn't always display ALTCHARSET a [1996/08/07] ports/1470 asami need more info in the ports structure s [1996/08/17] bin/1502 [PATCH] vmstat 'avm' field merges with pr o [1996/08/19] kern/1514 dyson mlock fails on readonly regions o [1996/08/20] kern/1516 dyson vm_fault.c contains dead code or too many o [1996/08/21] ports/1520 erich sudo dosn't recognise certain passwords a a [1996/09/04] bin/1565 Moving a file to it's link completely rem o [1996/09/06] bin/1577 peter mail -f foo does not look in current dire s [1996/09/08] bin/1589 [PATCH] ftp fails to flush output o [1996/09/14] gnu/1611 phk groff should use "system-wide" papersize a [1996/09/18] bin/1642 pkg_install Makefiles could be simplified s [1996/09/19] kern/1654 [PATCH] In procfs, vattr doesn't contain o [1996/09/23] i386/1671 joerg s2 map in pcvt isn't ISO 8859-1 and claim o [1996/09/29] docs/1691 doc ppp server doc submission o [1996/10/02] kern/1711 joerg kernel logging of signaled processes shou o [1996/10/04] kern/1725 visual config redraws bits of the screen s [1996/10/13] kern/1788 wollman netstat gives negative numbers for tcp by s [1996/10/13] misc/1791 syslimits.h does not allow overriding def o [1996/10/14] ports/1804 ports pkg_create hangs if the packing list has o [1996/10/20] bin/1849 gdb sets library breakpoints on the wrong o [1996/10/20] docs/1855 joerg Addition to LINT o [1996/10/23] bin/1872 automounter (amd) cannot ls directories w s [1996/10/24] bin/1881 file(1) misidentifies Sun3/m68k executabl s [1996/11/01] bin/1941 danny wtmp and monthly rotation s [1996/11/01] bin/1943 route(8) args s [1996/11/02] bin/1945 Out of date code/comments in dd o [1996/11/04] i386/1953 sos syscons savers have no default timeout s [1996/11/04] gnu/1961 [PATCH] uucp logging files are in /var/sp s [1996/11/06] bin/1970 csh limtail() bug s [1996/11/09] bin/1985 pkg_delete outputs confusing message when s [1996/11/16] bin/2036 cpio size wraparound s [1996/11/19] bin/2061 DEBUG_FLAGS in bsd.lib.mk is broken s [1996/11/22] bin/2090 clients may bind to FreeBSD ypserv refusi o [1996/11/25] misc/2105 jmg bsd.lib.mk has problems with STRIP and IN o [1996/11/26] i386/2108 sos [ATAPI] wcd driver may hang under certain o [1996/11/28] kern/2118 sos writing to virtual consoles fails to disp s [1996/11/28] bin/2119 [PATCH] mount lies to child about argv0, s [1996/12/02] bin/2137 vm statistics are bad o [1996/12/03] conf/2146 brian wrong /dev for COM2 during installation v o [1996/12/07] ports/2169 pst zephyr port disagrees with Kerberos causi o [1996/12/08] bin/2184 peter sendmail has lots of trouble with local d a [1996/12/10] ports/2190 asami need cross-reference to xpdf from X11 por s [1996/12/12] kern/2199 joerg [PATCH] Got a lots of "Target Busy" messa s [1996/12/14] kern/2214 File System gets corrupted when mounting s [1996/12/14] bin/2216 [PATCH] Ada specs not being compiled into s [1996/12/17] i386/2234 fbsdboot.exe does not turn off floppy dri o [1996/12/17] i386/2239 jmg some interrupts take too long (i.e. BT946 a [1996/12/21] bin/2265 guido su(1) does not call skeyaccess() o [1996/12/24] kern/2273 dufault support for POSIX.4 / POSIX.1a RT-schedul s [1996/12/26] bin/2291 [PATCH?] race condition in /etc/master.pa s [1996/12/27] kern/2298 Support for DSR/DCD swapping on serial po a [1996/12/27] misc/2302 markm new crypt() including SHS and an extendab o [1996/12/29] bin/2315 peter tail segfaults on NFS permission denied s [1996/12/30] kern/2327 [PATCH] `Green' saver for pcvt o [1997/01/06] bin/2387 [PATCH] virtual hosting patches for inetd o [1997/01/07] kern/2393 filesystems not unmounted following shutd o [1997/01/07] bin/2410 pppd(8): failing PAP doesn't force line d o [1997/01/10] bin/2442 davidn setusershell()/endusershell() missing o [1997/01/11] bin/2448 steve [MFC] semctl() not portable -- freebsd re o [1997/01/12] kern/2462 sos screen saver dosn't capture key strokes o [1997/01/14] kern/2492 AIMS Lab RadioTrack driver for FreeBSD 2. o [1997/01/15] bin/2499 des fetch ftp://bla bla doesn't bail in disk o [1997/01/16] i386/2514 jkh BootEasy binary is OLD in in FBSD install o [1997/01/17] bin/2518 /usr/bin/tar is out of date o [1997/01/21] bin/2547 fetch command fail to get file o [1997/01/21] bin/2556 Patch for calendar.c o [1997/01/26] misc/2596 dd refuses to respond to SIGkill o [1997/01/26] i386/2598 ep0 in EISA mode hangs if ep0-device (ISA o [1997/01/28] bin/2603 dufault Added POSIX.4/POSIX.1b constants in unist o [1997/01/28] bin/2604 dufault Added POSIX.4/POSIX.1b shm_open()/shm_unl o [1997/01/29] misc/2617 Utility submission - upsmon - UPS monitor o [1997/01/31] bin/2630 [PATCH] xargs does excessive and inconsis o [1997/02/02] gnu/2637 tar dumped core with -g option. a [1997/02/02] bin/2641 wpaul login_access.c doesn't work with NIS by d o [1997/02/04] bin/2660 When selecting BSD to boot from system ha o [1997/02/05] bin/2668 modification suggested for rarpd o [1997/02/05] bin/2672 Problem with telnetd o [1997/02/07] kern/2686 struct igmpmsg in s o [1997/02/10] bin/2703 jmg vipw doesn't allow you to edit master.pas o [1997/02/10] kern/2704 Occasional failure to detect wdc1 on boot o [1997/02/11] conf/2709 FBSD 2.1.6 X-Server installation setup ut o [1997/02/11] kern/2715 MSDOS-FS 1024/2048 byte/sector media supp o [1997/02/11] kern/2716 od.c/sd.c non 512 byte/sector support imp o [1997/02/13] i386/2729 "make tags" in sys/kern produces barely u o [1997/02/14] bin/2734 jkh pkg_* uses relative paths to executables o [1997/02/14] bin/2735 jkh Add signature support (both MD5 and PGP) o [1997/02/14] bin/2737 yppasswd fails to change password on a su o [1997/02/15] misc/2745 fenner PR querry web form doesn't sort correctly o [1997/02/23] kern/2806 new kernel tags script o [1997/02/26] conf/2822 ftp install specifying URL confusing o [1997/02/27] gnu/2827 after make world genclass is not installe o [1997/03/02] docs/2850 init(8) man page does not document secure o [1997/03/02] bin/2851 script(1) sets argv[0] of the started she o [1997/03/03] kern/2857 DE500 board exhibits capture effect o [1997/03/03] bin/2859 /usr/bin/quota seems to choke on long gro o [1997/03/03] kern/2865 peter NFS client hangs on umount, ls, df when N o [1997/03/05] kern/2886 fenner mbuf leak in multicast code o [1997/03/06] docs/2897 steve send-pr categories should be explained so o [1997/03/06] bin/2898 fenner arp -a -n buglet o [1997/03/09] i386/2924 sos syscons X keyboard gets stuck in capsmode o [1997/03/10] bin/2934 sh(1) has problems with $ENV o [1997/03/10] bin/2938 Add -b, -l, and -f options to du(1) o [1997/03/11] ports/2949 asami bsd.port.mk needs something like FETCH_EN o [1997/03/11] misc/2955 pkg_add failed on xemacs via sysintall f [1997/03/11] ports/2956 ports New Port: xgospel-1.10d in ftp.freebsd.or a [1997/03/13] bin/2977 After enabling moused and vidcontrol and o [1997/03/14] ports/2988 joerg vga font is not built o [1997/03/15] ports/2993 hoek qmail-port-take2-proff.tar.gz in incoming o [1997/03/17] ports/3012 obrien qmailanalog port in incoming o [1997/03/18] conf/3023 By default users have no write permission o [1997/03/18] misc/3024 make reinstall in /usr/src requires writa o [1997/03/22] kern/3061 route does not accept -genmask o [1997/03/31] gnu/3157 Patches to gas and gdb to support MMX ext o [1997/04/01] ports/3169 ports nn port broken o [1997/04/06] bin/3211 ctm uses mktemp()> o [1997/04/06] bin/3212 the pkg_* tools use mktemp() o [1997/04/07] bin/3221 rpc.rusersd : can't communicate with SunO o [1997/04/07] misc/3225 uucpd.c should normalize host names as lo o [1997/04/08] misc/3237 SCRIPTS addition to bsd.prog.mk o [1997/04/09] bin/3242 incorrect prototype for initgroups o [1997/04/10] bin/3251 xsysinfo stops refreshing and wastes CPU o [1997/04/10] kern/3253 scsiconf.c: make ZIP disks use optical dr s [1997/04/13] conf/3272 imp $@ is deprecated I believe, so use ${.TAR o [1997/04/14] kern/3281 errors when "rm -r"-ing in a mounted ext2 o [1997/04/14] kern/3282 ext2fs causes fs-unmount at shutdown/rebo o [1997/04/14] bin/3284 [PATCH] symorder(1): -t option doesn´t wo o [1997/04/14] bin/3286 [PATCH] missing error checking in mount_m o [1997/04/14] kern/3287 [PATCH] missing symbols in /usr/src/sys/i o [1997/04/15] kern/3299 /dev/console hangs o [1997/04/17] bin/3314 /etc/daily did not run on April 6, 1997 o [1997/04/17] ports/3318 ports New port: jigsaw (Java-based HTTP server) o [1997/04/18] ports/3322 markm setlocale problem in lang/perl5 o [1997/04/25] ports/3383 ports kaffe core dumps if LD_LIBRARY_PATH not s o [1997/04/25] bin/3386 kernel 'config' wrapper 'doconfig' ala Di o [1997/04/27] bin/3399 mv of symbolic link can move directory in o [1997/04/29] bin/3416 ibcs emulation problems o [1997/04/29] bin/3418 pkg_create doesn't always create gzip'ed o [1997/05/01] ports/3455 jmz mtools-3.6.tgz could have a better mtools o [1997/05/02] kern/3475 gdb(ptrace?) cause create/modify times on o [1997/05/05] i386/3504 [PATCH] New features (and manpage) for ne o [1997/05/05] bin/3506 [PATCH] more did not show iso-8859-n char o [1997/05/05] bin/3508 FreeBSD 2.2.1 do not view SCSI disk at sw o [1997/05/06] docs/3522 Man pages close(2) misses fcntl lock info o [1997/05/08] kern/3546 ktrace works even if no read permission o [1997/05/08] gnu/3552 the -L option of tar does not work proper o [1997/05/09] bin/3556 Bug with -i option in /usr/bin/lpr o [1997/05/09] bin/3558 make reinstall collapses on install-info s [1997/05/09] kern/3571 Mounted ext2 prevents umount of filesyste o [1997/05/11] conf/3577 eBones and OBJLINK=yes fails to build o [1997/05/12] kern/3584 cleanup TCP_REASS macro in tcp_input.c o [1997/05/13] conf/3590 doc FAQ gives bad reccomendation re: xdm o [1997/05/16] bin/3608 Telnet in linemode will break apart long o [1997/05/17] kern/3611 Internal CPU cache on CyrixiInstead DX2 d o [1997/05/18] gnu/3616 permissions of /usr/libexec/uucp/uuxqt no o [1997/05/20] bin/3638 /bin/w can't handle long /dev/{tty,cua}xx o [1997/05/20] bin/3639 ac doesn't know about FreeBSD's pty names o [1997/05/20] docs/3645 torstenb TCP_wrappers package doesn't mention wher s [1997/05/21] bin/3648 roberto [PATCH] find(1) extension for file flags o [1997/05/21] ports/3657 ports Port of NCSA HyperNews submitted as p5-hy s [1997/05/22] kern/3667 [PATCH] make vn LKM'able. s [1997/05/30] docs/3720 doc Addition for supported Hardware o [1997/05/31] ports/3729 scrappy pgsql dies when initiated o [1997/05/31] kern/3731 Addition of a PCI Bridge o [1997/06/01] kern/3739 pause key not disabled; weird stuff when o [1997/06/01] conf/3751 Improvements to /etc/rc{,.network,.pccard o [1997/06/02] bin/3762 dufault Bogus return values from rtprio(1) o [1997/06/02] docs/3764 systat(1) -vmstat description seems to be o [1997/06/04] bin/3778 ypbind -S domainname,server1,... does not o [1997/06/07] bin/3805 single process tftpd o [1997/06/09] bin/3826 KerberosIV sometimes hangs rcp o [1997/06/10] kern/3836 Cannot remove HUGE directory o [1997/06/10] bin/3837 dufault new feature for rtprio o [1997/06/12] kern/3853 netboot/ns8390.c breaks NS datasheet o [1997/06/13] bin/3859 Setting the $0 variable in perl dosnt do o [1997/06/14] bin/3866 rcs2log fails with eastern timezones o [1997/06/15] kern/3879 peter Can't export mounted ext2fs via NFS o [1997/06/16] conf/3886 peter install does not build sendmail host stat o [1997/06/17] ports/3892 itojun new port: www/webxref (cross-reference ge o [1997/06/18] kern/3901 Multicast for Intel 10/100 Ethernet Card o [1997/06/19] misc/3912 ctags(1) cannot trace some macro correctl o [1997/06/23] kern/3938 peter Problem about mmap() over NFS o [1997/06/24] kern/3944 if_le doesnt receive ether multicast pack o [1997/06/25] kern/3948 nonworking t/tcp server side a [1997/06/25] kern/3953 kern-config: options PANIC_REBOOT_WAIT_TI o [1997/06/26] bin/3957 Makefile dependency error in amd o [1997/06/26] ports/3958 obrien a2ps fails if used according to man o [1997/06/26] i386/3962 print disk internal cache size during pro o [1997/06/27] kern/3968 Hardware probes die on Peak SBCs. o [1997/06/29] ports/3983 fenner New port: psf toolkit o [1997/07/02] ports/4014 ports package/port installation obeys roots uma o [1997/07/07] kern/4051 pppd connect 'chat ...' broken s [1997/07/07] kern/4052 VJ compression drops packets with IP+TCP o [1997/07/08] misc/4063 2.2.2R Installation fails if Jaz drive sp o [1997/07/13] ports/4083 ache netscape wrapper doesn't hand off args co o [1997/07/18] bin/4116 davidn Kerberized login as .root fails to o [1997/07/19] bin/4120 Partition sysid prevents extended DOS par o [1997/07/20] ports/4127 ports netscape-3.01: get rid of bogus error mes o [1997/07/23] kern/4153 New tcp initial send sequence number code s [1997/07/23] bin/4154 wish /bin/sleep handled fractions of a se s [1997/07/24] bin/4157 [PATCH] netstat atalk output should print o [1997/07/24] bin/4163 ftp core dumps after hitting control-C s [1997/07/26] bin/4172 suggest reconnection option added to fetc s [1997/07/28] kern/4184 [PATCH] minor nits in sys/netatalk o [1997/07/31] conf/4201 jkh Installing only X-User does not install c s [1997/07/31] bin/4204 [PATCH] ac printed wrong report about tty o [1997/08/03] kern/4221 Kernel mode pppd doesen't update wtmp on o [1997/08/04] conf/4229 Ethernet interface unreachable on bootup o [1997/08/06] ports/4232 scrappy Boot-time start of postgressql postmaster o [1997/08/06] bin/4238 chpass only occasionally works in conjunc o [1997/08/07] kern/4243 file locking doesn't work for pipe o [1997/08/07] bin/4247 modification to /etc/security for FreeBSD o [1997/08/08] misc/4249 wpaul ypchsh doesn't care about changing a user a [1997/08/09] kern/4255 SMP kernel freezes on machines with >2 CP a [1997/08/09] kern/4257 itojun scsi RESERVATION CONFLICT support needed f [1997/08/10] ports/4264 ports mftp get a Segmentation fault o [1997/08/12] ports/4281 ports Compress pcl graphics files - this is an o [1997/08/12] misc/4285 SDL RISCom/N2 (ISA) a [1997/08/13] gnu/4290 ache man wrong viewed koi8-r manpages and neqn 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 ports Recommendation re. Ports Collection o [1997/08/22] ports/4356 erich sudo shouldn't block signals in tgetpass( o [1997/08/23] conf/4363 kernel build depend on make obj o [1997/08/26] ports/4391 ports New port: VPCE o [1997/08/26] misc/4395 if exists(secure) in /usr/src/Makefile is o [1997/08/28] ports/4412 ports New port: YaTeX (in print and japanese) o [1997/08/29] kern/4413 No way to unmount a floppy that goes bad o [1997/08/29] misc/4414 be.iso.kbd errors in mapping o [1997/08/29] bin/4419 man can display the same man page twice o [1997/08/29] bin/4420 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/04] misc/4468 dlopen is not available from static execu o [1997/09/07] bin/4484 peter sendmail is barfing o [1997/09/13] kern/4528 processes hang if the mount_portal proces a [1997/09/14] i386/4538 sos byteswapped ATAPI id strings o [1997/09/14] bin/4545 f77 will only call `cc', no com-line opti f [1997/09/15] i386/4547 asc.c and pcaudio.c should use selrecord o [1997/09/16] bin/4553 man fails to open manpage if ./man exists o [1997/09/16] misc/4556 make can't build executable from single F o [1997/09/17] ports/4565 torstenb News port: ircII-current (ircII-2.9a8/col o [1997/09/18] conf/4572 /etc/rc.network loads ipfirewall lkm rega o [1997/09/21] kern/4597 Patch to pass NPX status word in signal c o [1997/09/21] kern/4601 Contrib: userconfig patch to edit SCSI co o [1997/09/25] bin/4629 calendar doesn't print all dates sometime o [1997/09/28] misc/4646 Can't fixit with an NFS-mounted CD. o [1997/09/29] conf/4654 Need to do post-ifconfig commands o [1997/10/02] kern/4680 lkm version of vn.c o [1997/10/03] kern/4685 Some SCSI retry messages formatted differ o [1997/10/04] bin/4688 peter sys/utsname.h SYS_NMLN 32 too small o [1997/10/05] bin/4695 pstat error o [1997/10/05] bin/4696 ping hangs on certain unresolvable hosts o [1997/10/05] bin/4697 make doesn't handle dependencies with for o [1997/10/12] gnu/4748 cc -Wformat too sensitive a [1997/10/15] ports/4770 ports New port: Xitami HTTP Server o [1997/10/15] gnu/4771 diff to correct misleading total bytes in a [1997/10/19] ports/4808 andreas Broken password.c in backend/libpq for Fr o [1997/10/22] bin/4828 ypxfr makes false assumption about RPC ca o [1997/10/23] docs/4833 Manual page missing for pccardc o [1997/10/23] kern/4837 bad error return from rmdir() with msdos o [1997/10/23] ports/4839 ports New port - spin - Verification system for o [1997/10/24] kern/4845 Boot complains about disk slices in FAT p o [1997/10/24] kern/4847 pccard stuff fails after running Win95 wi o [1997/10/25] kern/4856 netatalk cannot register own host o [1997/11/01] bin/4915 peter NFS mounts to linux machine can hang syst o [1997/11/02] bin/4923 vi leaves the screen in standout mode o [1997/11/03] ports/4928 asami no 'update' target in /usr/ports/Makefile s [1997/11/04] ports/4937 mph A looks-nice audio level meter port is no o [1997/11/07] ports/4967 ports I have ported Carl DeClerck's mserver-0.2 o [1997/11/07] bin/4969 cdcontrol plays incorrect audio tracks in o [1997/11/07] ports/4974 dburr New port: YODL, Yet Oneother Document Lan o [1997/11/08] bin/4975 quotaon while server very busy causes loc o [1997/11/08] ports/4980 dburr NEW PORT: netscape3-us (Netscape Nav with o [1997/11/09] ports/4985 dburr NEW PORT: www/htmlpp htmlpp-3.9, a WWW au o [1997/11/09] kern/4992 SCSI disk scheduling disabled in 2.2.5 o [1997/11/10] kern/4997 DDB_UNATTENDED doesn't always work o [1997/11/10] misc/4999 Entering '?' at first boot prompt in inst o [1997/11/11] kern/5009 ibcs2 emulation o [1997/11/11] kern/5011 rndcontrol -s 8 causes kernel panic o [1997/11/11] docs/5016 make -j4 fails in share/doc/usd/13.viref o [1997/11/13] bin/5031 lpr does not remove original file if -s i o [1997/11/13] ports/5034 ports (tcsh) blocked write on named pipe sticks o [1997/11/14] kern/5038 FreeBSD can't read MS Joliet CDs. o [1997/11/14] gnu/5039 libdialog fails to resore terminal o [1997/11/14] kern/5040 Support for "SCSI-0" devices o [1997/11/14] ports/5045 ports freebsd.ftp.markers for xearth is out of o [1997/11/14] bin/5047 ipfw(8) IP address resolving problem if o o [1997/11/14] kern/5048 Calling shutdown(fd,1) multiple times wil o [1997/11/15] bin/5052 peter upgrade BIND o [1997/11/15] kern/5059 peter mountd, nfsd, etc. fail when lp0 defined o [1997/11/15] kern/5060 ahasty Kernel doesn't compile with mss o [1997/11/15] misc/5064 A dos2bsd conversion utility in C. o [1997/11/17] docs/5070 doc new FAQ entries o [1997/11/17] bin/5072 /usr/bin/fetch parses a URL incorrectly o [1997/11/17] bin/5073 'host -t mx' coredumps o [1997/11/18] misc/5081 sysinstall glitches o [1997/11/18] misc/5082 Permit upgrade of multi-disk system, or d o [1997/11/20] ports/5104 ports New port: sis-1.2pl1 o [1997/11/20] kern/5108 pmap_release panics with 'freeing held pa o [1997/11/20] bin/5109 patch to ftpd, new option to limit number o [1997/11/20] kern/5110 kernel crash & core in pmap_testbit durin a [1997/11/23] ports/5131 ports New math port: SuperLU o [1997/11/23] bin/5134 cdcontrol will eject a mounted CDROM s [1997/11/25] misc/5147 [PATCH] a shell script to help -CURRENT u o [1997/11/26] misc/5153 jkh release file checksums in wrong file o [1997/11/26] ports/5158 ports thot editor port doesn't install template 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 o [1997/12/03] ports/5200 ports new port-package for pgpmoose o [1997/12/03] ports/5201 ports new port-package for fidogate o [1997/12/03] ports/5202 ports new port-package for pathalias o [1997/12/03] conf/5213 ahasty My SB AWE64 isn't being recognized. f [1997/12/05] kern/5231 Mounted MS-DOS floppy disk writes unrelia o [1997/12/06] misc/5239 jkh ata + atapi & /stand/sysinstall & dos o [1997/12/06] ports/5240 ports Incorrect path in pkfonts (fix) o [1997/12/07] ports/5245 ports new port, bugsx game s [1997/12/08] bin/5253 ache [PATCH] catgets(3) and catclose(3) don't o [1997/12/09] bin/5263 sh bug (with example) s [1997/12/11] kern/5274 gibbs [PATCH] mt comp 0/1 does not work, with f s [1997/12/11] kern/5275 [PATCH] Added volume (barcode) support to o [1997/12/14] conf/5292 master.passwd -- /nonexistent vs. /sbin/n o [1997/12/14] bin/5293 brian DES dist (req'd by PPP) defaults to kerbe a [1997/12/14] ports/5295 ports New Math port: umfpack s [1997/12/14] bin/5296 slattach fails creating pidfile with ioct f [1997/12/15] ports/5302 ache webcopy port doesnt work? o [1997/12/15] ports/5309 ports New port: sls-1.00 [category misc] o [1997/12/15] ports/5312 ports New math port xwpl a [1997/12/19] docs/5346 doc Discrepancy between dump(8) man page and o [1997/12/22] kern/5362 peter mount incorrectly reports / as an NFS exp o [1997/12/26] ports/5380 ports wb uses ghostscript 4 o [1997/12/28] ports/5393 ports DOOMSRC port & package o [1997/12/30] ports/5397 ports upload of new port (fly) f [1997/12/30] i386/5398 silo overflows running o [1997/12/30] docs/5399 doc Missing detail of - or -- flags to sh(1) o [1997/12/31] bin/5400 brian lqr timeout in ijppp only works if you ha o [1998/01/02] bin/5410 pkg_info options s [1998/01/03] bin/5419 [PATCH] timed rejects valid networks with o [1998/01/08] kern/5429 Ethernet collision during file transfers s [1998/01/08] kern/5435 [PATCH] if_fe.c for old Gateway Communica s [1998/01/08] bin/5444 [PATCH] ypserv uses wrong dns lookup orde o [1998/01/08] ports/5446 se KDE port does not install using make in / s [1998/01/08] bin/5451 roberto [PATCH] halt/reboot does not execute /etc o [1998/01/08] ports/5463 ports No spell check in pico editor because /us o [1998/01/09] ports/5472 erich xmmix-1.2 prot won't compile - "SOUND_VER o [1998/01/10] ports/5475 ports abacus sentry o [1998/01/11] bin/5483 Login(1) clears utmp entry s [1998/01/15] docs/5487 doc Adding documentation for scsi(8) usage wi o [1998/01/15] kern/5502 nfsd process usage doesn't get accounted o [1998/01/15] ports/5504 ports New port sidplay (category audio) o [1998/01/15] kern/5508 SCSI Message sd0: COMMAND FAILED (4 28) @ o [1998/01/15] ports/5509 ports submit new port xruskb-1.5.1 s [1998/01/16] kern/5510 sos [PATCH] Incomplete ATAPI diagnostic at bo o [1998/01/18] kern/5517 Recursive NULLFS mount causes ufs_ihashge o [1998/01/19] misc/5525 bde gid and uid in struct pwd are ints, when s [1998/01/20] misc/5531 [SUBMISSION] new library function abs2rel s [1998/01/20] kern/5532 [PATCH] Dropped packet counts are inaccur o [1998/01/21] bin/5537 vi dumps core with dodgy exrc file o [1998/01/21] misc/5539 ftp problems with ftp.freebsd.org ? "Tran o [1998/01/21] bin/5541 ppp -alias (2.2.5-STABLE) has troubles wi o [1998/01/22] docs/5545 doc http://www.freebsd.org/handbook/handbook3 o [1998/01/22] bin/5549 Kernel Problem o [1998/01/23] bin/5557 brian /usr/sbin/ppp no longer works with SecurI o [1998/01/24] i386/5559 PC-Card joystick ports were not supported o [1998/01/25] ports/5566 ports New port: wmx-4 (category x11) o [1998/01/25] bin/5567 trying to mount a joliet filesystem cdrom o [1998/01/26] bin/5569 Problems with 'moused'. o [1998/01/26] ports/5570 ports new port, rise 0.3.3 o [1998/01/26] kern/5577 bde Unnecessary disk I/O and noatime ffs fixe a [1998/01/28] bin/5591 Trouble with LD_PRELOAD environment varia o [1998/01/28] bin/5596 killall's diagnostics bogus o [1998/01/29] kern/5599 pt(N) driver no longer working o [1998/01/30] ports/5607 ports NEW PORT: timidity-luigi [category audio] o [1998/01/30] ports/5608 jfitz Ports change-request: Afterstep I18N o [1998/01/31] bin/5609 lpd cannot send long files to HP's JetDir o [1998/02/02] ports/5626 ports 'ldap' port eats all available CPU time o [1998/02/02] kern/5627 Tertiary/Quaternary IDE Ctlrs: A few kern o [1998/02/03] ports/5633 ports Submission of new port in 'lang' category a [1998/02/03] ports/5638 ports mail/bulk_mailer port update o [1998/02/04] bin/5650 fetch(1) manpage out of date WRT FTP URLs o [1998/02/04] bin/5651 fenner fetch(1) doesn't CD properly on FTPs o [1998/02/04] ports/5653 ports New port of ICI language o [1998/02/05] misc/5659 2.2.5 Install doesn't copy kernel a [1998/02/05] ports/5660 ports New port type1inst o [1998/02/05] misc/5662 sysinstall generates short dev names for o [1998/02/06] bin/5666 ifconfig fails to add alias a [1998/02/06] ports/5667 ports I have ported the VICE 0.13.0 Commodore e o [1998/02/06] kern/5672 Crash from scsi aborted command 'Overlapp o [1998/02/07] ports/5675 ports New port in category devel: DOC++ o [1998/02/07] docs/5676 commenting in ftphosts is not documented o [1998/02/09] kern/5689 sysctl vm.vmmeter - bogus and unsupported o [1998/02/10] ports/5706 ports New port: ja-dvi2dvi-1.0 (japanese/dvi2dv o [1998/02/10] bin/5711 bin/cat code cleanup o [1998/02/10] bin/5712 /bin/chio code cleaup and option added o [1998/02/10] bin/5717 pw -D -g "" returns error o [1998/02/10] bin/5718 pkg_delete refuses to run as non-root o [1998/02/11] bin/5721 "more" coredumps when sent two signals o [1998/02/14] bin/5745 [PATCH] Add /usr/local/share/mk to defaul o [1998/02/14] bin/5746 bootparamd will not netboot sun 3 compute o [1998/02/14] bin/5747 ld.so error message o [1998/02/15] bin/5758 sys/resources.h doesn't include sys/time. o [1998/02/17] kern/5768 Shutdown aborts syncing, when sync isn't o [1998/02/17] ports/5771 ports New port: Stuttgart Neural Network Simula s [1998/02/17] misc/5772 peter nfsstat does not work o [1998/02/17] ports/5776 ports New compression port: lzo o [1998/02/18] i386/5779 BOUNCE_BUFFERS option in LINT needs modif o [1998/02/18] i386/5784 ibcs2 emulation not handling ioctl(..FION a [1998/02/18] misc/5786 definition of speed_t in termios.h is not o [1998/02/18] kern/5787 Failure of unmounting asyncronous file sy o [1998/02/19] ports/5788 ports pcemu harddisk-access fixes o [1998/02/19] kern/5789 wcd0 requires ATAPI_STATIC o [1998/02/19] kern/5795 Panic: "bremfree: removing a buffer when o [1998/02/20] kern/5800 incorporate -current pppd driver into -st o [1998/02/20] misc/5803 "tab" function from "ee" not compatible w o [1998/02/21] ports/5811 ports netatalk ioctl(SIOCADDMULTI) failure o [1998/02/21] misc/5813 strsignal() missing a [1998/02/22] ports/5814 ports New package XShodou o [1998/02/22] ports/5821 ports Port of Swish-E, a Web site indexer o [1998/02/25] gnu/5841 installmost or install (world) of tmac fa o [1998/02/25] bin/5847 Makeworld fails if CXXFLAGS is set. o [1998/02/25] docs/5848 [PATCH] Update web.mk to handle SGML file o [1998/02/25] docs/5851 Mention /etc/hosts.lpd et. al. in Handboo o [1998/02/25] misc/5855 /etc/services is out of date with IANA o [1998/02/26] bin/5857 non-functional lpr/lpr o [1998/02/26] ports/5859 ports xxgdb port doesn't recognize the -k optio o [1998/02/26] kern/5863 Kernel support for sorted SHUTDOWN & SHUT o [1998/02/27] ports/5868 jfitz MSQL isn't PREFIX clean and PLIST wrong o [1998/03/01] bin/5880 df -t does not support devfs o [1998/03/01] ports/5884 ports New port: icqjava-0.981a (net/icqjava) o [1998/03/01] ports/5885 ports New port: dc20ctrl-0.4 (graphics/dc20ctrl o [1998/03/02] bin/5901 new version of `fmt' f [1998/03/03] ports/5908 stb atalkd won't come up o [1998/03/03] bin/5912 kinit exits if no user name specified o [1998/03/04] ports/5920 andreas lyx's ``configure'' disables the use of m f [1998/03/05] bin/5925 brian ppp compiled to use des o [1998/03/06] kern/5931 dma errors in syslog with GUS-max o [1998/03/06] i386/5932 perfmon kernel code should check for non- o [1998/03/07] conf/5936 Add hostname to C shell prompt o [1998/03/08] bin/5944 cvs doesn't work correct. o [1998/03/08] ports/5946 ports New port biology/molmol o [1998/03/10] kern/5964 peter nfsd send interface selection seems broke o [1998/03/10] bin/5966 vi's spanish message catalog does not use o [1998/03/10] kern/5967 upg from 2.1.7.1/2.2.1 to 2.2.5-stable (a o [1998/03/10] ports/5972 ports x11/fvwm95 requiring gsm, and rplay is a o [1998/03/11] gnu/5982 no error exit code from tar on child fail o [1998/03/11] ports/5985 hoek new port submission (qmail MTA) o [1998/03/12] gnu/5992 cvs y2k o [1998/03/13] bin/5996 more(1) '-#' broken (obsolete) and h)elp o [1998/03/13] bin/6000 kadmin ank uses bad default expiration of o [1998/03/14] docs/6003 Two problems in atc(6) man page o [1998/03/15] bin/6015 indent(1) breaks source with backslash ne o [1998/03/15] ports/6017 ports new port: yacl o [1998/03/15] ports/6018 ports new port: ml-3.3 a [1998/03/15] ports/6020 ports new port: Xfstt-0.9.7 o [1998/03/15] ports/6027 max New Port: tgif2tex o [1998/03/15] ports/6028 ports Upgrade Ports: kinput2 o [1998/03/15] ports/6029 ports New Ports: jvim+onew o [1998/03/16] kern/6032 poor TCP performance using FDDI over long o [1998/03/16] docs/6036 doc New handbook section 10.4.3.4 - si driver o [1998/03/16] bin/6037 inconsistency between kbdcontrol(1) and s s [1998/03/18] ports/6053 kuriyama new port request: korean/hanIM o [1998/03/18] kern/6056 de driver support for DS 21143 incomplete o [1998/03/18] ports/6057 ports xperfmon++-1.40 package fails XtRealloc() o [1998/03/18] misc/6060 peter Sendmail executable, not doing MASQUERADE o [1998/03/18] bin/6064 Script to update files installed by /usr/ o [1998/03/19] i386/6067 boot.help pushes kernel list off screen o [1998/03/20] ports/6078 ports Documentation concerning logging suggests o [1998/03/21] ports/6085 ports New port: pavuk-0.8 o [1998/03/22] conf/6096 /sys/i386/conf/LINT: edit(???) sound_conf o [1998/03/22] i386/6098 FreeBSD only uses 16M of 48M on Compaq De o [1998/03/22] gnu/6107 gdb should support PRINTF_HAS_LONG_LONG o [1998/03/23] ports/6113 ports new port: rinfo-1.2 o [1998/03/23] i386/6115 msdosfs incorrect compute cluster or root o [1998/03/23] ports/6120 ports New port: xtetris-2.6 o [1998/03/25] gnu/6130 "dialog" command cuts off chars from menu f [1998/03/26] bin/6140 des Add '-H' and '-P' options to ls(1), fix m o [1998/03/27] bin/6144 telnet for 8-bit data path o [1998/03/27] ports/6151 ports New port: xrus-1.5.2 o [1998/03/28] ports/6153 ports New port: flick o [1998/03/28] ports/6155 ports new port: emulators/vice, Versatile Commo o [1998/03/28] bin/6156 Patches to make dump understand ENOSPC o [1998/03/28] bin/6161 2.2.6 kerberos servers are awfully visibl o [1998/03/29] ports/6170 ports another squid ports o [1998/03/29] ports/6171 ports New port: xtron-1.1a o [1998/03/29] misc/6172 markm Why is /ftp.freebsd.org/pub/FreeBSD/CTM/p o [1998/03/30] ports/6176 ports running architextSearch (excite) under li o [1998/03/30] ports/6181 ports New port: xoj-1.0 o [1998/03/31] bin/6183 quota hangups o [1998/03/31] kern/6184 No error if resulting file pos in lseek i o [1998/04/01] bin/6187 peter mounting nfs directories with -b can caus o [1998/04/01] bin/6188 screensaver permanently active when no bo o [1998/04/01] kern/6192 kernel patches for netatalk break FDDI su o [1998/04/01] ports/6194 ports New port: mirrormagic-1.3 o [1998/04/02] bin/6198 demangling C++ names breaks the Cygnus -f o [1998/04/03] bin/6200 flex can be upgraded o [1998/04/03] bin/6202 No way to detect removable media. o [1998/04/03] bin/6206 Enhancements to the shutdown program o [1998/04/03] ports/6207 ports new port request: korean/ftghostscript5 o [1998/04/04] kern/6213 peter NFS-mounted swap (via vnconfig) easily cr o [1998/04/04] bin/6214 ping sometimes cannot be killed with a Co o [1998/04/05] conf/6220 Too few ttyv devices in the -RELEASE syst o [1998/04/05] ports/6221 ports New port: mico s [1998/04/06] bin/6223 PST/DST bug in /bin/date o [1998/04/06] bin/6227 as doesn't handle this instruction o [1998/04/06] bin/6228 Syslogd not working according to manpage o [1998/04/06] ports/6230 ports gfont_mkgdf calls wrong interpreter o [1998/04/06] bin/6234 ypserv -d is broken o [1998/04/07] ports/6235 ports New port: scwm-icon o [1998/04/07] ports/6236 ports New port: scwm o [1998/04/07] kern/6247 Gravis UltraSound Classic no longer works o [1998/04/09] kern/6255 SI driver fix for Jet ISA memory size o [1998/04/09] kern/6256 SI driver - new T225 download code o [1998/04/10] ports/6262 ports New port of bulk_mailer 1.9 o [1998/04/10] i386/6269 Included is a patch to support AMD Write- o [1998/04/10] i386/6270 options.i386 update for AMD write-allocat o [1998/04/10] misc/6271 jkh Install program can no longer write out p o [1998/04/14] docs/6295 doc Reference to nonexistent file in Device D o [1998/04/14] kern/6296 IP_HDRINCL sockets force header fields to a [1998/04/14] kern/6299 vmstat -i does not show PnP device interr o [1998/04/15] ports/6305 ports New ports collection: ja-libslang o [1998/04/15] ports/6306 ports New ports collection: ja-slrn o [1998/04/15] docs/6307 doc sgmlfmt not `make -jN' ready s [1998/04/15] bin/6308 [PATCH] date(1) -v argument cannot vary s o [1998/04/15] ports/6311 ports New port: gsfonts o [1998/04/15] ports/6312 ports New port: ghostscript-3.33 s [1998/04/15] bin/6314 [PATCH] /usr/sbin/ac modification s [1998/04/16] ports/6315 kuriyama new port request: korean/htm o [1998/04/16] kern/6318 pppd does not update wtmp on hangup o [1998/04/16] misc/6320 Sometimes nohup isn't good enough. a [1998/04/16] ports/6321 ports can't run any version of PostgreSQL on 2. o [1998/04/17] ports/6331 ports New port: libshhopt-1.1.3 o [1998/04/17] bin/6332 bde /usr/include/time.h doesn't compile with o [1998/04/17] conf/6334 -DALLLANG should be moved from src/Makefi 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/04/19] ports/6355 ports New port o [1998/04/20] bin/6359 routed does sent router discovry solicita o [1998/04/20] ports/6361 ports New ports collection: GNU Pascal Compiler s [1998/04/20] bin/6371 [PATCH?] fetch(1) uses HTTP_PROXY for ftp o [1998/04/21] conf/6376 jkh can't reset /stand/sysinstall into initia o [1998/04/23] ports/6393 ports patch for multimedia-2.1.tar.gz f [1998/04/23] bin/6399 [PATCH] When using "-u" mount doesn't sta o [1998/04/23] bin/6401 user error while mounting causes panic o [1998/04/23] kern/6402 another machine can change my own permane o [1998/04/25] ports/6413 ports new ports for lynx2.8rel.3 (modified for o [1998/04/25] ports/6414 ports new ports for ja-color-lynx2.8rel.3 (modi o [1998/04/25] ports/6415 ports new ports for ja-lynx2.8.1dev.7 (modified o [1998/04/25] ports/6416 ports new ports for ja-color-lynx2.8.1dev.7 (mo o [1998/04/25] ports/6417 ports new ports for ja-libslang-1.0.3 (modified a [1998/04/27] kern/6432 IFF_NOARP does not affect ethernet interf o [1998/04/28] ports/6434 se [PATCH] mediatool in x11/kdelibs cause kw o [1998/04/28] ports/6445 ports New port for `fhist' o [1998/04/29] docs/6455 doc bootptab.5 uses both man macros and mdoc o [1998/04/29] misc/6457 BSD Bug List Page o [1998/04/29] ports/6460 ports New port: lang/kawk o [1998/04/30] kern/6464 tcpdump doesn't recognize tun0 when it's f [1998/04/30] bin/6470 brian aliasing & dial-on-demand creates unneces o [1998/05/01] ports/6473 ports New port: libshhmsg-1.3.3 o [1998/05/01] ports/6474 ports New port: libxalloc-1.0.2 o [1998/05/01] ports/6483 ports New port: affenspiel-1.0 o [1998/05/03] kern/6495 Need pci_unmap_mem and pci_unmap_port rou o [1998/05/03] ports/6504 ports New port of `C Interfaces and Implementat o [1998/05/03] kern/6505 panic: cannot mount root on sd1 o [1998/05/04] docs/6508 doc sgmlfmt does not expand relative URLs s [1998/05/04] bin/6509 [ALMOST PATCH] Allow dd to seek/skip to o o [1998/05/04] docs/6510 steve GNATS doesn't expand freebsd-doc s [1998/05/04] bin/6516 [Patch] Assorted errors in libedit s [1998/05/05] bin/6521 [MAYBE PATCH] "rmdir -p x/y/z/" fails s [1998/05/05] bin/6529 [ALMOST PATCH] potential timing problem w o [1998/05/06] ports/6533 ports Update: mew-1.92.4. o [1998/05/06] misc/6537 jkh New improved motd, take 2 o [1998/05/07] ports/6541 ports New port: math/dc o [1998/05/07] kern/6544 ahasty Only get one channel through sound card o [1998/05/07] ports/6546 ports 3line ansi prompt in tcsh: cursor disappe o [1998/05/09] conf/6559 jkh Upgrade processing clobber's ~root/{.cshr o [1998/05/09] i386/6560 yokota Console does not reset to primary screen o [1998/05/09] ports/6563 se minor problems with KDE ports o [1998/05/09] docs/6564 doc need more references in fetch(1) o [1998/05/09] ports/6565 ports new port o [1998/05/10] ports/6570 ports port of java CUP parser o [1998/05/11] ports/6588 ports Update ports: mew-1.92.4. o [1998/05/11] i386/6595 Old IP address persistent after change o [1998/05/11] ports/6598 ports new port for FreeBSD - asmodem o [1998/05/12] ports/6604 ports New port: web500gw, an HTTP - LDAP gatewa o [1998/05/12] ports/6606 ports package add of perl-5.00404 fails w/3.0 S o [1998/05/12] misc/6612 bsd.man.mk can't handle man pages with ": o [1998/05/12] ports/6613 ports ports/lang/perl5 fails to install by addi o [1998/05/13] ports/6622 ports IIJ-PPP current version o [1998/05/13] kern/6623 non-root user can crash system if disconn o [1998/05/13] conf/6624 davidn One class with nologin=/etc/nologin: reje o [1998/05/15] ports/6645 ports Updated port: mysql s [1998/05/15] docs/6647 doc ftpd: man page at variance with code (e.g o [1998/05/15] kern/6651 peter Possible NFS deadlock clue f [1998/05/16] bin/6653 The rc script sometimes produces errors w o [1998/05/16] ports/6657 ports new port for perl/Tk 800.004 s [1998/05/16] bin/6658 [PATCH] -stable getcwd(3) performs unnece o [1998/05/17] ports/6666 ports Update port: ja-netscape-4.05 s [1998/05/17] kern/6668 [PATCH] new driver: Virtual Ethernet driv s [1998/05/18] bin/6676 [PATCH] natd doesn't respond to signals w o [1998/05/18] docs/6681 doc docu. addition o [1998/05/19] ports/6684 ports New port: xzip-1.7 o [1998/05/19] ports/6687 ports New port, ktelnet v0.6 o [1998/05/19] ports/6688 ports New port: kbiff v0.6 o [1998/05/19] ports/6699 ports Generic NQS port (new) o [1998/05/19] ports/6700 ports New port: xworm-1.02 o [1998/05/20] kern/6702 luigi tsleep and new snd (pcm0) o [1998/05/20] ports/6704 ports New port: gtk-- o [1998/05/21] ports/6709 ports New port kmessage s [1998/05/21] conf/6711 [PATCH ?] I've seen that fortune before o [1998/05/21] ports/6718 ports New port: boa-0.92 o [1998/05/23] ports/6728 ports New port ktranslator o [1998/05/24] ports/6743 ports diff to upgrade tkrat to tkrat1.1 o [1998/05/24] docs/6745 doc man page for ftpd o [1998/05/25] ports/6748 ports New port: xmailbox-2.5 o [1998/05/25] misc/6752 jkh sysinstall w/o cd9660 fs loaded can't mou s [1998/05/25] kern/6758 mount_portal fails because kernal refuses a [1998/05/26] misc/6759 phk buggy code in libdisk.a's disk.c o [1998/05/26] kern/6760 can't compile kernel w/o networking s [1998/05/26] docs/6764 doc limits references to sysctl o [1998/05/26] ports/6765 ports p5-Mysql port out of date o [1998/05/26] kern/6769 peter panic: nfs rcvunlock o [1998/05/27] ports/6772 ports glbiff Port Has Missing Dependency o [1998/05/28] ports/6776 ports New port - xqf o [1998/05/28] ports/6777 ports New port - qstat s [1998/05/29] kern/6781 [PATCH] exabyte changer doesn't grok LUNs s [1998/05/29] bin/6785 place for all the default dump flags s [1998/05/29] bin/6787 race condition in pw command o [1998/05/29] ports/6789 ports new port : mailcrypt-3.4 o [1998/05/29] ports/6791 ports New Port, TinyMUX s [1998/05/29] i386/6792 eivind [PATCH][STABLE]Backported PnP support for o [1998/05/29] bin/6795 steve send-pr does not parse problem reports co o [1998/05/31] ports/6806 ports /usr/ports/graphics/killustrator doesn't o [1998/05/31] ports/6812 ports New port: GNU plotutils o [1998/05/31] ports/6813 ports patched audio module for vat port o [1998/05/31] ports/6814 ports vic patches for x11 grabber o [1998/06/01] ports/6815 ports ssh lookup ignores second IP address s [1998/06/01] kern/6819 [PATCH] pci_unmap_int (pci/pci.c) does no o [1998/06/01] kern/6820 cd9660_mount NULL pointer deref for no CD s [1998/06/02] bin/6832 [PATCH] Allows PINGing from any address o o [1998/06/02] bin/6835 brian ppp -background tries connect to non-acti o [1998/06/02] ports/6838 ports Enable lj4dith driver by default s [1998/06/02] kern/6843 sos [PATCH] to enable reading digital audio s f [1998/06/03] ports/6847 ports Zebra Port still doesn't compile o [1998/06/04] ports/6862 ports Cyrus upgraded to 1.5.10 o [1998/06/05] ports/6867 ports bpatch can't display character '%' o [1998/06/05] ports/6869 ports Egcs port update from version 19980508 to o [1998/06/06] kern/6874 accounting prevents transition to multi u o [1998/06/06] ports/6882 ports Perl5 in 3.0-980518-SNAP o [1998/06/08] ports/6893 ports update imlib port to version 1.4 o [1998/06/08] ports/6895 ports Status of lsof in 3.0-980518-SNAP o [1998/06/09] ports/6898 ports improper installation of a2ps-A4-4.9.8 in o [1998/06/09] ports/6899 dburr new port - please commit! o [1998/06/11] ports/6915 ports Apache-FP for apache v1.3.0 o [1998/06/11] ports/6917 hoek New port: qmail MTA o [1998/06/11] bin/6919 can not run multiple instances of /sbin/r o [1998/06/12] kern/6928 [PATCH] syscons: MOUSE_BUTTON_EVENT uses o [1998/06/12] ports/6934 dburr New port of ucspi-tcp 0.80 f [1998/06/12] ports/6935 ports Update to the w3c-httpd port o [1998/06/13] misc/6936 sysinstall: install from MS-DOS MO divece o [1998/06/13] bin/6937 rc.firewall can't be run from network - f o [1998/06/13] ports/6938 dburr Addition of V GUI to ports collection o [1998/06/13] bin/6939 restore does not set the correct uid on d o [1998/06/13] docs/6940 doc routed(8) manpage references htable(8), w o [1998/06/13] ports/6942 ports New port, mrouted-beta o [1998/06/14] ports/6945 ports Minor fixes to w3c-httpd o [1998/06/14] ports/6949 ports ports/mail/faces o [1998/06/14] ports/6950 ports new port, GNU textutils o [1998/06/14] ports/6951 ports ${PORTSDIR}/japanese/tcl80 update o [1998/06/14] ports/6952 ports ${PORTSDIR}/japanese/tk80 update o [1998/06/14] bin/6953 freeze on mount_msdos o [1998/06/15] ports/6954 ports New port: CJK 697 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 Jun 15 11:30:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA01353 for freebsd-bugs-outgoing; Mon, 15 Jun 1998 11:30:54 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA01342 for ; Mon, 15 Jun 1998 11:30:50 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA19392; Mon, 15 Jun 1998 11:30:01 -0700 (PDT) Date: Mon, 15 Jun 1998 11:30:01 -0700 (PDT) Message-Id: <199806151830.LAA19392@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Stefan Eggers Subject: Re: bin/5134: cdcontrol will eject a mounted CDROM Reply-To: Stefan Eggers Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/5134; it has been noted by GNATS. From: Stefan Eggers To: freebsd-gnats-submit@freebsd.org, obrien@NUXI.com Cc: seggers@semyam.dinoco.de Subject: Re: bin/5134: cdcontrol will eject a mounted CDROM Date: Mon, 15 Jun 1998 20:17:46 +0200 Quote from the report: Insert a CDROM into your SCSI cdrom drive. mount_cd9660 /dev/cd0a /cdrom /usr/sbin/cdcontrol eject Insert a different CDROM into your cdrom drive ## OPPS! forgot to umount it first umount /cdrom BANG! reboot. I did something similar. I had a CD mounted and at the same time xmcd was running waiting for an audio CD. The interesting part is that I have xmcd configured to unlock the tray and it did this though the CD was mounted. I opened it by accident, saw what I did and closed it again. Before the drive recognized that I inserted a CD (my 12x SCSI CD drive takes some time for this) I did an unmount on it and got a panic. To get a useful message for the problem report I did it again but this time I made sure that I had the console in front of me at the time of the panic instead of the X11 screen. Thus I read: panic: vref used where vget required Maybe someone has an idea what went wrong or even how to prevent this from happening. Stefan. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 15 12:11:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA08263 for freebsd-bugs-outgoing; Mon, 15 Jun 1998 12:11:03 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA08227 for ; Mon, 15 Jun 1998 12:10:51 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA20478; Mon, 15 Jun 1998 12:10:01 -0700 (PDT) Received: from red.juniper.net (red.juniper.net [208.197.169.254]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA06615 for ; Mon, 15 Jun 1998 12:01:36 -0700 (PDT) (envelope-from dkatz@juniper.net) Received: from cirrus.juniper.net (cirrus.juniper.net [208.197.169.207]) by red.juniper.net (8.8.5/8.8.5) with ESMTP id MAA10861 for ; Mon, 15 Jun 1998 12:01:04 -0700 (PDT) Received: (from dkatz@localhost) by cirrus.juniper.net (8.8.7/8.7.3) id MAA15303; Mon, 15 Jun 1998 12:02:23 -0700 (PDT) Message-Id: <199806151902.MAA15303@cirrus.juniper.net> Date: Mon, 15 Jun 1998 12:02:23 -0700 (PDT) From: Dave Katz Reply-To: dkatz@juniper.net To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: misc/6957: Can't configure NTP authentication Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6957 >Category: misc >Synopsis: Can't configure NTP authentication >Confidential: yes >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jun 15 12:10:01 PDT 1998 >Last-Modified: >Originator: Dave Katz >Organization: >Release: FreeBSD 2.2.5-STABLE i386 >Environment: >Description: There is no way to actually enable authentication within NTP without hand-editing /etc/ntp.conf. There is no way to create an NTP key file using the CLI. >How-To-Repeat: >Fix: Add the following to the DDL: authenticate; key type value ; and make the appropriate syntactic sugar happen in xntpd. >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 Jun 15 12:11:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA08284 for freebsd-bugs-outgoing; Mon, 15 Jun 1998 12:11:09 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA08237 for ; Mon, 15 Jun 1998 12:10:52 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA20511; Mon, 15 Jun 1998 12:10:03 -0700 (PDT) Received: from red.juniper.net (red.juniper.net [208.197.169.254]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA07137 for ; Mon, 15 Jun 1998 12:04:45 -0700 (PDT) (envelope-from dkatz@juniper.net) Received: from cirrus.juniper.net (cirrus.juniper.net [208.197.169.207]) by red.juniper.net (8.8.5/8.8.5) with ESMTP id MAA11024 for ; Mon, 15 Jun 1998 12:04:14 -0700 (PDT) Received: (from dkatz@localhost) by cirrus.juniper.net (8.8.7/8.7.3) id MAA15461; Mon, 15 Jun 1998 12:05:32 -0700 (PDT) Message-Id: <199806151905.MAA15461@cirrus.juniper.net> Date: Mon, 15 Jun 1998 12:05:32 -0700 (PDT) From: Dave Katz Reply-To: dkatz@juniper.net To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: misc/6958: NTP broadcast TTL default is bogus Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6958 >Category: misc >Synopsis: NTP broadcast TTL default is bogus >Confidential: yes >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jun 15 12:10:02 PDT 1998 >Last-Modified: >Originator: Dave Katz >Organization: >Release: FreeBSD 2.2.5-STABLE i386 >Environment: >Description: The TTL on NTP broadcasts defaults to 127. This assumes that directed broadcast is enabled, among other things. The default should be 1. >How-To-Repeat: >Fix: Small hack in xntpd. >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 Jun 15 12:50:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA14413 for freebsd-bugs-outgoing; Mon, 15 Jun 1998 12:50:53 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA14404 for ; Mon, 15 Jun 1998 12:50:50 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA21071; Mon, 15 Jun 1998 12:50:02 -0700 (PDT) Received: from red.juniper.net (red.juniper.net [208.197.169.254]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA14060 for ; Mon, 15 Jun 1998 12:48:51 -0700 (PDT) (envelope-from dkatz@juniper.net) Received: from cirrus.juniper.net (cirrus.juniper.net [208.197.169.207]) by red.juniper.net (8.8.5/8.8.5) with ESMTP id MAA12561 for ; Mon, 15 Jun 1998 12:48:22 -0700 (PDT) Received: (from dkatz@localhost) by cirrus.juniper.net (8.8.7/8.7.3) id MAA15823; Mon, 15 Jun 1998 12:49:41 -0700 (PDT) Message-Id: <199806151949.MAA15823@cirrus.juniper.net> Date: Mon, 15 Jun 1998 12:49:41 -0700 (PDT) From: Dave Katz Reply-To: dkatz@juniper.net To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: misc/6959: Shouldn't allow destructive remote modification of NTP config Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6959 >Category: misc >Synopsis: Shouldn't allow destructive remote modification of NTP config >Confidential: yes >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jun 15 12:50:01 PDT 1998 >Last-Modified: >Originator: Dave Katz >Organization: >Release: FreeBSD 2.2.5-STABLE i386 >Environment: >Description: We shouldn't ever allow mode 6 or 7 commands to modify the NTP config; this should be done via the CLI only, as it is Yet Another Security Hole and the changes will be lost anyhow when xntpd restarts. >How-To-Repeat: >Fix: Don't allow request-key or control-key to be configured (remove from the DDL). Ensure that destructive request and control packets are not allowed if the local key is zero (I don't believe this is true for control packets; xntpdc won't send a packet with a nonzero key, but I think xntpd will accept them). >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 Jun 15 15:30:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA11657 for freebsd-bugs-outgoing; Mon, 15 Jun 1998 15:30:22 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA11432; Mon, 15 Jun 1998 15:29:56 -0700 (PDT) (envelope-from dt@FreeBSD.org) From: Dmitrij Tejblum Received: (from dt@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA21575; Mon, 15 Jun 1998 15:29:06 -0700 (PDT) Date: Mon, 15 Jun 1998 15:29:06 -0700 (PDT) Message-Id: <199806152229.PAA21575@freefall.freebsd.org> To: root@techyman.ml.org, dt@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/6953 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: freeze on mount_msdos State-Changed-From-To: open-closed State-Changed-By: dt State-Changed-When: Tue Jun 16 00:26:38 MEST 1998 State-Changed-Why: Apparently duplicate of PR kern/1067. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 15 15:35:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA12893 for freebsd-bugs-outgoing; Mon, 15 Jun 1998 15:35:30 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA12755; Mon, 15 Jun 1998 15:34:41 -0700 (PDT) (envelope-from dt@FreeBSD.org) From: Dmitrij Tejblum Received: (from dt@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA21651; Mon, 15 Jun 1998 15:33:52 -0700 (PDT) Date: Mon, 15 Jun 1998 15:33:52 -0700 (PDT) Message-Id: <199806152233.PAA21651@freefall.freebsd.org> To: root@techyman.ml.org, dt@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/6955 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: NASTY reboot on mount_msdos State-Changed-From-To: open-closed State-Changed-By: dt State-Changed-When: Tue Jun 16 00:30:05 MEST 1998 State-Changed-Why: Duplicate of PR kern/1067. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 15 17:28:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA27287 for freebsd-bugs-outgoing; Mon, 15 Jun 1998 17:28:28 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from titus.stade.co.uk (root@stade.demon.co.uk [158.152.29.164]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA27280 for ; Mon, 15 Jun 1998 17:28:20 -0700 (PDT) (envelope-from aw1@titus.stade.co.uk) Received: (from aw1@localhost) by titus.stade.co.uk (8.8.8/8.8.3) id BAA18566; Tue, 16 Jun 1998 01:27:48 +0100 (BST) Message-ID: <19980616012748.D16444@stade.co.uk> Date: Tue, 16 Jun 1998 01:27:48 +0100 From: Adrian Wontroba To: freebsd-bugs@FreeBSD.ORG Subject: Re: bin/5134: cdcontrol will eject a mounted CDROM Reply-To: aw1@stade.co.uk Mail-Followup-To: freebsd-bugs@freebsd.org References: <199806151830.LAA19392@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <199806151830.LAA19392@freefall.freebsd.org>; from Stefan Eggers on Mon, Jun 15, 1998 at 11:30:01AM -0700 Organization: Stade Computers Ltd, UK X-Phone: +(44) 121 681 6677 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Jun 15, 1998 at 11:30:01AM -0700, Stefan Eggers wrote: > panic: vref used where vget required Hmm. I get the same panic if I leave a CDROM mounted in what I increasingly suspect is a dying drive. Sooner of later the system crashes this way. How is the kernel supposed to handle a transfer error on a CDROM drive? I chickened out, and copied the whole of the ports distfiles collection to disc, and have yet to replace the drive. -- Adrian Wontroba, Stade Computers Limited. phone: (+44) 121 681 6677 Mail info@accu.org for information about the Association of C and C++ Users or see To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 15 22:11:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA12074 for freebsd-bugs-outgoing; Mon, 15 Jun 1998 22:11:21 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA12031 for ; Mon, 15 Jun 1998 22:10:56 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA22977; Mon, 15 Jun 1998 22:10:02 -0700 (PDT) Received: from david.siemens.de (david.siemens.de [192.35.17.14]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA11065 for ; Mon, 15 Jun 1998 22:06:31 -0700 (PDT) (envelope-from andre.albsmeier@mchp.siemens.de) Received: from salomon.mchp.siemens.de (salomon.siemens.de [139.23.33.13]) by david.siemens.de (8.9.0/8.9.0) with ESMTP id HAA23979 for ; Tue, 16 Jun 1998 07:05:40 +0200 (MET DST) Received: from curry.mchp.siemens.de (daemon@curry.mchp.siemens.de [146.180.31.23]) by salomon.mchp.siemens.de (8.8.8/8.8.5) with ESMTP id HAA03759 for ; Tue, 16 Jun 1998 07:06:14 +0200 (MDT) Received: (from daemon@localhost) by curry.mchp.siemens.de (8.8.8/8.8.8) id HAA04375 for ; Tue, 16 Jun 1998 07:06:14 +0200 (CEST) Message-Id: <199806160506.HAA16211@internal> Date: Tue, 16 Jun 1998 07:06:11 +0200 (CEST) From: Andre Albsmeier To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: kern/6962: phk's msgbuf changes are here for -stable Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6962 >Category: kern >Synopsis: phk's msgbuf changes are here for -stable >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Jun 15 22:10:01 PDT 1998 >Last-Modified: >Originator: Andre Albsmeier >Organization: >Release: FreeBSD 2.2.6-STABLE i386 >Environment: FreeBSD -stable >Description: Poul-Henning Kamp has been so kind and made the size of the dmesg buffer a kernel option for -current. I have looked at the code and made a patch for -stable. It's now working here on 12 machines for about 3 weeks whitout problems. It would be nice if someone committed this to -stable. I have attached the patch below, if some other things are needed, tell me. >How-To-Repeat: >Fix: begin 644 dmesg-patch M*BHJ("]U2`R M,"`Q,CHU.3HR,2`Q.3DX"BTM+2`O=7-R+W-R8R]S8FEN+V1M97-G+V1M97-G M+F,)5V5D($IU;B`Q,"`Q-SHQ-CHQ,R`Q.3DX"BHJ*BHJ*BHJ*BHJ*BHJ*@HJ M*BH@-#4L-C(@*BHJ*@H@(`DB)$ED.B!D;65S9RYC+'8@,2XT+C(N,2`Q.3DW M+S`X+S(V(#$S.C`Y.C`V(&IK:"!%>'`@)"(["B`@(V5N9&EF("\J(&YO="!L M:6YT("HO"B`@"BT@(VEN8VQU9&4@/'-Y7,O;7-G8G5F+F@^"B`@"B`@(VEN8VQU9&4@/&5R"@Q+"`B:W9M7W)E860Z("5S(BP@:W9M7V=E=&5R M"`^/2!C=7(N;7-G7W-I>F4I"B`@"0EC=7(N;7-G7V)U9G@@/2`P.PHK M(`EK=FU?8VQO2!S=&%R="!A M="!T:&4@;VQD97-T(&1A=&$N"B`@"2`J+PHA(`EP(#T@8W5R+FUS9U]B=69C M("L@8W5R+FUS9U]B=69X.PHA(`EE<"`]("AC=7(N;7-G7V)U9G@@/3T@,"`_ M(&-U2!S=&%R="!A="!T:&4@;VQD M97-T(&1A=&$N"B`@"2`J+PHA(`EP(#T@8G`@*R!C=7(N;7-G7V)U9G@["B$@ M"65P(#T@*&-U"`]/2`P(#\@8G`@*R!C=7(N;7-G7W-I>F4@ M.B!P*3L*("`);F5W;"`]('-K:7`@/2`P.PH@(`ED;R!["B$@"0EI9B`H<"`] M/2!B<"`K(&-U7-L;V<@F4@;V8@=&AE(&ME'1E7-?879A:6Q; M<&%?:6YD>%TI('L*("`)"7!H>7-M96T@+3T@871O<"AP:'ES7V%V86EL6W!A M7VEN9'A=("T@<&AY7-?879A:6Q;<&%?:6YD>"TM M72`](#`["BTM+2`Q,S`T+#$S,3`@+2TM+0H@(`D@*B!C86QC=6QA=&EO;BP@ M971C+BDN"B`@"2`J+PH@(`EW:&EL92`H<&AYPH@(`D)<&AY7-?879A:6Q;<&%?:6YD>%T@+2!P:'ES7V%V86EL6W!A7VEN9'@@ M+2`Q72D["B`@"0EP:'ES7V%V86EL6W!A7VEN9'@M+5T@/2`P.PH@(`D)<&AY M7-?879A:6Q;<&%? M:6YD>%TI.PH@(`H@(`DO*B!47-?879A:6Q;<&%?:6YD>%T@+3T@7-?879A M:6Q;<&%?:6YD>%T["B`@"B`@"2\J(&YO=R!R=6YN:6YG(&]N(&YE=R!P86=E M('1A8FQE7,O:3,X-B]I,S@V+W!M87`N8RY/4DD)36]N($IU;"`@-R`Q.3HR-SHR M-B`Q.3DW"BTM+2`O=7-R+W-R8R]S>7,O:3,X-B]I,S@V+W!M87`N8PE7960@ M36%Y(#(P(#$S.C$T.C$S(#$Y.3@**BHJ*BHJ*BHJ*BHJ*BHJ"BHJ*B`W,RPW M."`J*BHJ"BTM+2`W,RPX,"`M+2TM"B`@(V1E9FEN92!034%07TQ/0TL@,0H@ M("-D969I;F4@4$U!4%]05DQ)4U0@,0H@(`HK("-I;F-L=61E(")O<'1?;7-G M8G5F+F@B"BL@"B`@(VEN8VQU9&4@/'-Y7,OPH@(`D);"`](&UB<"T^;7-G7V)U9G@@+2!M8G`M/FUS9U]B=69R M.PH@(`D):68@*&P@/"`P*0HA(`D)"6P@/2!-4T=?0E-)6D4@+2!M8G`M/FUS M9U]B=69R.PH@(`D);"`](&UI;BAL+"!U:6\M/G5I;U]R97-I9"D["B`@"0EI M9B`H;"`]/2`P*0H@(`D)"6)R96%K.PHA(`D)97)R;W(@/2!U:6]M;W9E*"AC M861D"`M(&UB<"T^ M;7-G7V)U9G(["B`@"0EI9B`H;"`\(#`I"B$@"0D);"`](&UB<"T^;7-G7W-I M>F4@+2!M8G`M/FUS9U]B=69R.PH@(`D);"`](&UI;BAL+"!U:6\M/G5I;U]R M97-I9"D["B`@"0EI9B`H;"`]/2`P*0H@(`D)"6)R96%K.PHA(`D)97)R;W(@ M/2!U:6]M;W9E*"AC861D"`M(&US9V)U9G`M/FUS9U]B=69R.PH@(`D)"AS*3L*("`)"6EF("AL(#P@,"D*(2`)"0EL("L](&US9V)U9G`M/FUS9U]S M:7IE.PH@(`D)*BAI;G0@*BED871A(#T@;#L*("`)"6)R96%K.PH@(`HJ*BH@ M+W5S7,O:V5R;B]S=6)R7W!R9BYC M"5=E9"!*=6X@,3`@,37-T;2YH/@HK("-I;F-L=61E M(#QS>7,O:V5R;F5L+F@^"B`@(VEN8VQU9&4@/'-Y2YH/@HJ M*BHJ*BHJ*BHJ*BHJ*BH**BHJ(#PH@(`D);6)P(#T@;7-G8G5F<#L*(2`)"6EF M("AM8G`M/FUS9U]M86=I8R`A/2!-4T=?34%'24,@?'P*(2`)"2`@("!M8G`M M/FUS9U]B=69X(#X]($U31U]"4TE:12!\?`HA(`D)("`@(&UB<"T^;7-G7V)U M9G(@/CT@35-'7T)325I%*2!["B$@"0D)8GIEPH@(`D);6)P(#T@;7-G8G5F<#L*(2`)"6UB<"T^;7-G7W!T MF4I"B`@"0D);6)P+3YM"`](#`["B`@ M"0DO*B!)9B!T:&4@8G5F9F5R(&ES(&9U;&PL(&ME97`@=&AE(&UOF5?="!S M:7IE*0HK('L**R`)8VAAPHK(`D)9&)? M<')I;G1F*")M"P@;7-G8G5F<"T^;7-G7W!T7,O;7-G8G5F+F@N3U))"4UO M;B!!<'(@,C<@,3@Z,S`Z-#`@,3DY.`HM+2T@+W5S#`V,S`V,0H@(`EU;G-I M9VYE9"!I;G0);7-G7VUA9VEC.PH@(`EU;G-I9VYE9"!I;G0);7-G7V)U9G@[ M"0DO*B!W'1E'1EPHA("-D969I;F4)35-'7TU! M1TE#"3!X,#8S,#8R"B`@"75NF4@;V8@8G5F9F5R(&%R96$@ M*B\*("`)=6YS:6=N960@:6YT"6US9U]B=69X.PD)+RH@=W)I=&4@<&]I;G1E M'1E'1EF5?="!S:7IE M*2D["BL@"BL@(VEF("%D969I;F5D*$U31T)51E]325I%*0HK("-D969I;F4) M35-'0E5&7U-)6D4).#$Y,@HK("-E;F1I9@HK(`H@("-E;F1I9@H@(`H@("-E M;F1I9@HJ*BH@+W5S7-L;V=D+F,N M3U))"4UO;B!!<'(@,C<@,3@Z,S`Z,SD@,3DY.`HM+2T@+W5S7-L;V=D+F,)5V5D($UA>2`R,"`Q,SHP-3HU,B`Q M.3DX"BHJ*BHJ*BHJ*BHJ*BHJ*@HJ*BH@.#$L.#<@*BHJ*@H@("-I;F-L=61E M(#QS>7,O7,O=V%I="YH/@H@("-I;F-L M=61E(#QS>7,O#L*("`)"E<;B(L(&YF9',L(')E861F9',I.PH@(`D):68@*')E861F9',@ M)B!K;&]G;2D@>PHA(`D)"6D@/2!R96%D*&9K;&]G+"!L:6YE+"!-05A,24Y% M("T@,2D["B`@"0D):68@*&D@/B`P*2!["B`@"0D)"6QI;F5;:5T@/2`G7#`G 8.PH@(`D)"0EPAudit-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 Jun 15 23:30:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA00664 for freebsd-bugs-outgoing; Mon, 15 Jun 1998 23:30:54 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA00652 for ; Mon, 15 Jun 1998 23:30:53 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA23148; Mon, 15 Jun 1998 23:30:01 -0700 (PDT) Received: from mortis.futuresouth.com (mortis.futuresouth.com [209.45.228.14]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA29357 for ; Mon, 15 Jun 1998 23:22:42 -0700 (PDT) (envelope-from fullermd@mortis.futuresouth.com) Received: (from fullermd@localhost) by mortis.futuresouth.com (8.8.8/8.8.5) id BAA04865; Tue, 16 Jun 1998 01:22:41 -0500 (CDT) Message-Id: <199806160622.BAA04865@mortis.futuresouth.com> Date: Tue, 16 Jun 1998 01:22:41 -0500 (CDT) From: fullermd@mortis.futuresouth.com Reply-To: fullermd@futuresouth.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: bin/6963: msgs -p can give misleading errors Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6963 >Category: bin >Synopsis: msgs -p can give misleading errors >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jun 15 23:30:00 PDT 1998 >Last-Modified: >Originator: Matthew Fuller >Organization: >Release: FreeBSD 2.2.6-STABLE i386 >Environment: This is again rev. 1.9 of msgs.c, but I don't think there's that much difference betweeen it and 1.8.2.1. >Description: msgs -p (and maybe other flags, too) gives misleading error messages, especially on a new install, where /var/msgs/bounds doesn't exist. I moved my bounds file out of the way to create this before and after on a quick 'n' dirty hack, which is probably the 23rd best way to do it, but it works: {~/work/freebsd-hacks} mortis:{325} %msgs -p msgs: /var/msgs/bounds: Permission denied {~/work/freebsd-hacks} mortis:{326} %./msgs -p /var/msgs/bounds: No such file or directory >How-To-Repeat: Have no /var/msgs/bounds file and run msgs -p >Fix: --- msgs.c.orig Tue Jun 16 00:46:04 1998 +++ msgs.c Tue Jun 16 01:12:42 1998 @@ -169,6 +169,7 @@ int rcback = 0; /* amount to back off of rcfirst */ int firstmsg = 0, nextmsg = 0, lastmsg = 0; int blast = 0; + struct stat buf; /* stat to check access of bounds */ FILE *bounds; #ifdef UNBUFFERED @@ -244,6 +245,11 @@ * determine current message bounds */ snprintf(fname, sizeof(fname), "%s/%s", _PATH_MSGS, BOUNDS); + if (stat(fname, &buf) < 0) + { + perror(fname); + exit(1); + } bounds = fopen(fname, "r"); if (bounds != NULL) { >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 Jun 16 00:11:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA07660 for freebsd-bugs-outgoing; Tue, 16 Jun 1998 00:11:09 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA07595 for ; Tue, 16 Jun 1998 00:10:57 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA23290; Tue, 16 Jun 1998 00:10:01 -0700 (PDT) Date: Tue, 16 Jun 1998 00:10:01 -0700 (PDT) Message-Id: <199806160710.AAA23290@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Ruslan Ermilov Subject: Re: kern/6344: cy driver is outdated Reply-To: Ruslan Ermilov Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/6344; it has been noted by GNATS. From: Ruslan Ermilov To: gades@tdd.lt, freebsd-gnats-submit@freebsd.org, Ruslan Ermilov Cc: Subject: Re: kern/6344: cy driver is outdated Date: Tue, 16 Jun 1998 10:07:36 +0300 Hi! Do you still have the Cyclom-Y adapter? ISA or PCI? Which revision? Which SM (SM8/16 or SM8/16 II)? Can you try the driver from Cyclades ftp://ftp.cyclades.com/pub/cyclades/cyclom-y/freebsd/2.2.5/cyy225.tar.gz and report whether you have any problems with it (silo overflows, etc)? Thanks, -- Ruslan Ermilov System Administrator ru@ucb.crimea.ua United Commercial Bank +380-652-247647 Simferopol, Crimea 2426679 ICQ Network, UIN To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jun 16 03:01:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA07384 for freebsd-bugs-outgoing; Tue, 16 Jun 1998 03:01:10 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA07351 for ; Tue, 16 Jun 1998 03:00:56 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA24908; Tue, 16 Jun 1998 03:00:02 -0700 (PDT) Received: from insanus.matematik.su.se (root@insanus.matematik.su.se [130.237.198.12]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA06520 for ; Tue, 16 Jun 1998 02:56:15 -0700 (PDT) (envelope-from tege@matematik.su.se) Received: from tiger.matematik.su.se (root@tiger.matematik.su.se [130.237.198.18]) by insanus.matematik.su.se (8.8.8/8.6.9) with ESMTP id LAA05962 for ; Tue, 16 Jun 1998 11:56:09 +0200 (MET DST) Received: from tiger.matematik.su.se (tege@localhost [127.0.0.1]) by tiger.matematik.su.se (8.8.8/8.6.9) with ESMTP id LAA00326 for ; Tue, 16 Jun 1998 11:56:08 +0200 Message-Id: <199806160956.LAA00326@tiger.matematik.su.se> Date: Tue, 16 Jun 1998 11:56:08 +0200 From: Torbjorn Granlund To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: kern/6964: Problems with cam-980520 code in FreeBSD-stable Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6964 >Category: kern >Synopsis: Problems with cam-980520 code in FreeBSD-stable >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Jun 16 03:00:01 PDT 1998 >Last-Modified: >Originator: Torbjorn Granlund >Organization: TMG Datakonsult >Release: FreeBSD-stable i386 >Environment: motherboard: ASUS P2B-S cpu: Intel Pentium II 400MHz memory: 64MB PC66 SDRAM w/o ECC (1x64MB Hyundai) disk: 9.1GB U2W Seagate Cheetah9LP scsiid=0 disk: 9.1GB U2W Seagate Cheetah9LP scsiid=1 disk: 2.16GB Ultra IBM DCAS scsiid=6 scsi: AIC7890 on motherboard scsi: NCR810 (ASUS SC200) video: S3 Trio64 network: Intel Etherexpress Pro 100B, 10.0.100.9 The NCR controller is scanned by the BIOS before the 7890 controller, and with previous versions of FreeBSD, it is used for booting. I used FreeBSD-stable updated a few hours before I sent out this PR. (Yes, I should perhaps have used FreeBSD-stable from 980520.) >Description: There are two problems. 1) The root device is not located. That might have to do with problems with the NCR controller (see screen dump from boot below). But note that the drive is found, so talking to the NCR is clearly possible. 2) The negotiated speed for the U2W disks isn't as great as I had expected. 6.600MB/s should be 80MB/s. When probing for the devices using the BIOS, the drives are identified as 80MB/s capable. (There are no SE devices on the bus, just LVD devices.) Here is what is written on the screen. There were several more COMMAND FAILED lines before the ones visible here, but their exact contents is unknown since they scrolled off the top of the screen. . . . (probe17:ncr0:0:1:0): COMMAND FAILED (6 ff) @f07ea200 (probe16:ncr0:0:1:0): COMMAND FAILED (6 ff) @f07ea800 (probe15:ncr0:0:0:0): COMMAND FAILED (6 ff) @f07eae00 changing root device to da0s1a da0 at ahc0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI2 device da0: Serial Number [omitted] da0: 6.600MS/s transfers , 16bit), Tagged Queueing Enabled [see remark below] da0: 8683MB (17783240 512 byte sectors: 64H 32S/T 8683C) da1 at ahc0 bus 0 target 1 lun 0 da1: Fixed Direct Access SCSI2 device da1: Serial Number [omitted] da1: 6.600MS/s transfers , 16bit), Tagged Queueing Enabled [see remark below] da1: 8683MB (17783240 512 byte sectors: 64H 32S/T 8683C) panic: cannot mount root synching disks... done da2 at ncr0 bus 0 target 6 lun 0 da2: Fixed Direct Access SCSI2 device da2: Serial Number [omitted] da2: 2063MB (4226725 512 byte sectors: 255H 63S/T 263C) Automatic reboot in 15 seconds [etc] [Remark: This line looks strange. Perhaps I missed a few characters, but I know the comma had spaces on both sides which looked strange. I have now modified the system and cannot retry this easily.] At this point, I tried moving the IBM disk to the Adaptec controller, renumbering the disks so that the IBM disk got scsiid 0, and the other disks got scsiid 1 and 2. Now the system boots properly into single-user mode. But the negotiated speeds are not correct, but they did change somewhat. Note that the Adaptec doesn't want to talk in 10MB/s with the IBM disk. da0 at ahc0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI2 device da0: Serial Number [omitted] da0: 8.64MS/s transfers (8.64MHz, offset 15), Tagged Queueing Enabled da0: 2063MB (4226725 512 byte sectors: 255H 63S/T 263C) da1 at ahc0 bus 0 target 1 lun 0 da1: Fixed Direct Access SCSI2 device da1: Serial Number [omitted] da1: 16.128MS/s transfers (8.64MHz, offset 15, 16bit), Tagged Queueing Enabled da1: 8683MB (17783240 512 byte sectors: 64H 32S/T 8683C) da2 at ncr0 bus 0 target 2 lun 0 da2: Fixed Direct Access SCSI2 device da2: Serial Number [omitted] da2: 16.128MS/s transfers (8.64MHz, offset 15, 16bit), Tagged Queueing Enabled da2: 8683MB (17783240 512 byte sectors: 64H 32S/T 8683C) The kernel config file is a cleaned-up GENERIC form the CAM distribution; I deleted everything that isn't needed. >How-To-Repeat: Build an identical system and try to boot it into single-user mode... >Fix: Eagerly waiting for one. :-) >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 Jun 16 04:40:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA21778 for freebsd-bugs-outgoing; Tue, 16 Jun 1998 04:40:59 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA21768 for ; Tue, 16 Jun 1998 04:40:55 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA25371; Tue, 16 Jun 1998 04:40:01 -0700 (PDT) Received: from house.key.net.au (andrew@house.key.net.au [203.35.4.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA20739 for ; Tue, 16 Jun 1998 04:34:02 -0700 (PDT) (envelope-from andrew@house.key.net.au) Received: (from andrew@localhost) by house.key.net.au (8.8.8/8.8.8) id VAA24318; Tue, 16 Jun 1998 21:34:32 +1000 (EST) (envelope-from andrew) Message-Id: <199806161134.VAA24318@house.key.net.au> Date: Tue, 16 Jun 1998 21:34:32 +1000 (EST) From: andrew@ugh.net.au Reply-To: andrew@ugh.net.au To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: gnu/6965: grep -a dosn't work Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6965 >Category: gnu >Synopsis: grep -a dosn't work >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 Jun 16 04:40:01 PDT 1998 >Last-Modified: >Originator: Andrew >Organization: UgH! >Release: FreeBSD 2.2.6-STABLE i386 >Environment: 2.2.6-STABLE #0: Mon May 25 >Description: grep -a -R mt * flashed my terminal, even though it shouldn't have searched binary files. I had a look at the source to grep to see how it determined which files were binary and it seemed fine so I dont offer a solution...just a complaint :-) Hopefully someone out there will no how to fix it. I guess I'll just have to avoid binary files prefaced by 32 prinatble characters :-) >How-To-Repeat: >Fix: >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 Jun 16 05:06:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA24385 for freebsd-bugs-outgoing; Tue, 16 Jun 1998 05:06:05 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from oslo.geco-prakla.slb.com (geos01.oslo.geco-prakla.slb.com [134.32.44.131]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA24326; Tue, 16 Jun 1998 05:06:00 -0700 (PDT) (envelope-from smoergrd@oslo.geco-prakla.slb.com) Received: from sunw131.oslo.Geco-Prakla.slb.com (sunw131 [134.32.45.97]) by oslo.geco-prakla.slb.com (8.8.8/8.6.9) with SMTP id NAA09663 ; Tue, 16 Jun 1998 13:52:59 +0200 (MET DST) Received: by sunw131.oslo.Geco-Prakla.slb.com (SMI-8.6/SMI-SVR4) id NAA01032; Tue, 16 Jun 1998 13:52:58 +0200 To: Bruce Evans Cc: phk@critter.freebsd.dk, rivers@dignus.com, asami@FreeBSD.ORG, danny@panda.hilink.com.au, freebsd-bugs@FreeBSD.ORG, zach@gaffaneys.com Subject: Re: bin/6653 References: <199806130530.PAA14214@godzilla.zeta.org.au> Organization: Schlumberger Geco-Prakla From: smoergrd@oslo.geco-prakla.slb.com (Dag-Erling Coidan Smørgrav) Date: 16 Jun 1998 13:52:57 +0200 In-Reply-To: Bruce Evans's message of Sat, 13 Jun 1998 15:30:58 +1000 Message-ID: Lines: 10 X-Mailer: Gnus v5.3/Emacs 19.34 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Bruce Evans writes: > - `rm -rf *' may fail if there are filenames beginning with "-". > - `rm -rf *' and `rm -rf /var/run/*' both fail if there are filenames > beginning with ".". This may be a feature. cd /var/run rm -rf -- * .??* -- Dag-Erling Smørgrav - smoergrd@oslo.geco-prakla.slb.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jun 16 05:11:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA25154 for freebsd-bugs-outgoing; Tue, 16 Jun 1998 05:11:42 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from panda.hilink.com.au (panda.hilink.com.au [203.8.15.25]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA25145; Tue, 16 Jun 1998 05:11:38 -0700 (PDT) (envelope-from danny@panda.hilink.com.au) Received: (from danny@localhost) by panda.hilink.com.au (8.8.5/8.8.5) id WAA03098; Tue, 16 Jun 1998 22:11:01 +1000 (EST) Date: Tue, 16 Jun 1998 22:11:00 +1000 (EST) From: "Daniel O'Callaghan" To: Dag-Erling Coidan Smørgrav cc: Bruce Evans , phk@critter.freebsd.dk, rivers@dignus.com, asami@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG, zach@gaffaneys.com Subject: Re: bin/6653 In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from QUOTED-PRINTABLE to 8bit by hub.freebsd.org id FAA25148 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 16 Jun 1998, Dag-Erling Coidan Smørgrav wrote: > Bruce Evans writes: > > - `rm -rf *' may fail if there are filenames beginning with "-". > > - `rm -rf *' and `rm -rf /var/run/*' both fail if there are filenames > > beginning with ".". This may be a feature. > > cd /var/run > rm -rf -- * .??* I think what Bruce was getting at was that /var/run/.sudo and the like may be a solution to the problem of "to nuke or not to nuke" in /var/run at boot time. Danny To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jun 16 05:20:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA26264 for freebsd-bugs-outgoing; Tue, 16 Jun 1998 05:20:55 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA26259 for ; Tue, 16 Jun 1998 05:20:54 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA25806; Tue, 16 Jun 1998 05:20:01 -0700 (PDT) Date: Tue, 16 Jun 1998 05:20:01 -0700 (PDT) Message-Id: <199806161220.FAA25806@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Ruslan Ermilov Subject: Re: gnu/6965: grep -a dosn't work Reply-To: Ruslan Ermilov Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR gnu/6965; it has been noted by GNATS. From: Ruslan Ermilov To: andrew@ugh.net.au, FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: Re: gnu/6965: grep -a dosn't work Date: Tue, 16 Jun 1998 15:10:37 +0300 On Tue, Jun 16, 1998 at 09:34:32PM +1000, andrew@ugh.net.au wrote: > > grep -a -R mt * flashed my terminal, even though it shouldn't have searched > binary files. I had a look at the source to grep to see how it determined which > files were binary and it seemed fine so I dont offer a solution...just a > complaint :-) Hopefully someone out there will no how to fix it. I guess I'll > just have to avoid binary files prefaced by 32 prinatble characters :-) > I was unable to reproduce this on my -stable system: # file `grep -a -l -R Id /usr/bin` /usr/bin/cvsbug: Bourne shell script text /usr/bin/zgrep: Bourne shell script text /usr/bin/zegrep: Bourne shell script text /usr/bin/zfgrep: Bourne shell script text /usr/bin/apropos: Bourne shell script text /usr/bin/whatis: Bourne shell script text /usr/bin/makewhatis: perl commands text /usr/bin/catman: perl commands text /usr/bin/rcsfreeze: Bourne shell script text /usr/bin/send-pr: Bourne shell script text /usr/bin/sendbug: Bourne shell script text /usr/bin/cpp: Bourne shell script text /usr/bin/groups: Bourne shell script text /usr/bin/whoami: Bourne shell script text /usr/bin/keyinfo: setuid a /usr/bin/suidperl script text /usr/bin/killall: perl commands text /usr/bin/mkdep: Bourne shell script text /usr/bin/pagesize: Bourne shell script text /usr/bin/whereis: perl commands text /usr/bin/which: perl commands text /usr/bin/lp: Bourne shell script text /usr/bin/ibcs2: Bourne shell script text /usr/bin/joy: Bourne shell script text /usr/bin/linux: Bourne shell script text /usr/bin/qcam: Bourne shell script text /usr/bin/c89: Bourne shell script text -- Ruslan Ermilov System Administrator ru@ucb.crimea.ua United Commercial Bank +380-652-247647 Simferopol, Crimea 2426679 ICQ Network, UIN To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jun 16 06:02:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA01874 for freebsd-bugs-outgoing; Tue, 16 Jun 1998 06:02:28 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA01866; Tue, 16 Jun 1998 06:02:19 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA26483; Tue, 16 Jun 1998 06:01:25 -0700 (PDT) Date: Tue, 16 Jun 1998 06:01:25 -0700 (PDT) Message-Id: <199806161301.GAA26483@freefall.freebsd.org> To: gene@nttlabs.com, bde@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/5846 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Generic SCSI ioctl w/ big data transfer fails with "physio split the request" diagnostics. State-Changed-From-To: open-closed State-Changed-By: bde State-Changed-When: Tue Jun 16 14:59:17 MEST 1998 State-Changed-Why: Believed to be fixed in rev.1.26 of kern_physio.c. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jun 16 06:06:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA02825 for freebsd-bugs-outgoing; Tue, 16 Jun 1998 06:06:26 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA02683; Tue, 16 Jun 1998 06:06:09 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA26631; Tue, 16 Jun 1998 06:05:12 -0700 (PDT) Date: Tue, 16 Jun 1998 06:05:12 -0700 (PDT) Message-Id: <199806161305.GAA26631@freefall.freebsd.org> To: rickl@ic.net, bde@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/5599 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: pt(N) driver no longer working State-Changed-From-To: open-closed State-Changed-By: bde State-Changed-When: Tue Jun 16 15:03:02 MEST 1998 State-Changed-Why: Superseded by kern/5846. Believed to be fixed in rev.1.26 of kern_physio.c. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jun 16 06:09:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA03379 for freebsd-bugs-outgoing; Tue, 16 Jun 1998 06:09:30 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA03359; Tue, 16 Jun 1998 06:09:21 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA26864; Tue, 16 Jun 1998 06:08:27 -0700 (PDT) Date: Tue, 16 Jun 1998 06:08:27 -0700 (PDT) Message-Id: <199806161308.GAA26864@freefall.freebsd.org> To: stevedav@netcom.com, bde@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: i386/4315 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: sio0 and sio1 serial ports fail to probe State-Changed-From-To: closed-open State-Changed-By: bde State-Changed-When: Tue Jun 16 15:06:34 MEST 1998 State-Changed-Why: Was closed prematurely. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jun 16 06:10:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA03773 for freebsd-bugs-outgoing; Tue, 16 Jun 1998 06:10:57 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA03767 for ; Tue, 16 Jun 1998 06:10:55 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA27049; Tue, 16 Jun 1998 06:10:01 -0700 (PDT) Date: Tue, 16 Jun 1998 06:10:01 -0700 (PDT) Message-Id: <199806161310.GAA27049@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Andrew Subject: Re: gnu/6965: grep -a dosn't work Reply-To: Andrew Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR gnu/6965; it has been noted by GNATS. From: Andrew To: Ruslan Ermilov Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: gnu/6965: grep -a dosn't work Date: Tue, 16 Jun 1998 23:00:50 +1000 ># file `grep -a -l -R Id /usr/bin` >/usr/bin/cvsbug: Bourne shell script text >/usr/bin/c89: Bourne shell script text Hey, I get usr/bin/file: Argument list too long. :-) Reducing the list of files I'm grepping does produce this: work/irc/ircii-EPIC4pre1.201/script/events: Composer 669 Module sound data but thats a bug in file as it is ircii script and defintley text. Using: file `grep -a -l -R e bind8` | egrep -v "text|PostScript" I get: bind8/work/src/lib/libbind.a: current ar archive random library and I would guess thats the file doing the nasty work. If anyone wants a copy I can put it up for FTP or just go grab the bind8 port :-) Andrew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jun 16 06:11:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA03962 for freebsd-bugs-outgoing; Tue, 16 Jun 1998 06:11:56 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA03933; Tue, 16 Jun 1998 06:11:47 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA27069; Tue, 16 Jun 1998 06:10:53 -0700 (PDT) Date: Tue, 16 Jun 1998 06:10:53 -0700 (PDT) Message-Id: <199806161310.GAA27069@freefall.freebsd.org> To: stevedav@netcom.com, bde@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: i386/4315 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: sio0 and sio1 serial ports fail to probe State-Changed-From-To: open-closed State-Changed-By: bde State-Changed-When: Tue Jun 16 15:09:36 MEST 1998 State-Changed-Why: Superseded by kern/6201. Believed to be fixed on 1998/06/16. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jun 16 08:09:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA21205 for freebsd-bugs-outgoing; Tue, 16 Jun 1998 08:09:37 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA21163; Tue, 16 Jun 1998 08:09:29 -0700 (PDT) (envelope-from pst@FreeBSD.org) From: Paul Traina Received: (from pst@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA25258; Tue, 16 Jun 1998 08:08:35 -0700 (PDT) Date: Tue, 16 Jun 1998 08:08:35 -0700 (PDT) Message-Id: <199806161508.IAA25258@freefall.freebsd.org> To: dkatz@juniper.net, pst@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: misc/6957 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Can't configure NTP authentication State-Changed-From-To: open-closed State-Changed-By: pst State-Changed-When: Tue Jun 16 17:08:16 MEST 1998 State-Changed-Why: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jun 16 08:09:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA21278 for freebsd-bugs-outgoing; Tue, 16 Jun 1998 08:09:49 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA21255; Tue, 16 Jun 1998 08:09:45 -0700 (PDT) (envelope-from pst@FreeBSD.org) From: Paul Traina Received: (from pst@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA25323; Tue, 16 Jun 1998 08:08:51 -0700 (PDT) Date: Tue, 16 Jun 1998 08:08:51 -0700 (PDT) Message-Id: <199806161508.IAA25323@freefall.freebsd.org> To: dkatz@juniper.net, pst@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: misc/6958 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: NTP broadcast TTL default is bogus State-Changed-From-To: open-closed State-Changed-By: pst State-Changed-When: Tue Jun 16 17:08:40 MEST 1998 State-Changed-Why: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jun 16 08:10:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA21487 for freebsd-bugs-outgoing; Tue, 16 Jun 1998 08:10:09 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA21475; Tue, 16 Jun 1998 08:10:06 -0700 (PDT) (envelope-from pst@FreeBSD.org) From: Paul Traina Received: (from pst@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA25389; Tue, 16 Jun 1998 08:09:11 -0700 (PDT) Date: Tue, 16 Jun 1998 08:09:11 -0700 (PDT) Message-Id: <199806161509.IAA25389@freefall.freebsd.org> To: dkatz@juniper.net, pst@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: misc/6959 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Shouldn't allow destructive remote modification of NTP config State-Changed-From-To: open-closed State-Changed-By: pst State-Changed-When: Tue Jun 16 17:08:57 MEST 1998 State-Changed-Why: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jun 16 08:40:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA27833 for freebsd-bugs-outgoing; Tue, 16 Jun 1998 08:40:58 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA27825 for ; Tue, 16 Jun 1998 08:40:56 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA25838; Tue, 16 Jun 1998 08:40:01 -0700 (PDT) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA27618; Tue, 16 Jun 1998 08:39:54 -0700 (PDT) (envelope-from nobody) Message-Id: <199806161539.IAA27618@hub.freebsd.org> Date: Tue, 16 Jun 1998 08:39:54 -0700 (PDT) From: jose@we.lc.ehu.es To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: kern/6966: AHC driver fails to read SEEPROM on Iwill PIILS mb (AIC7880 embedded) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6966 >Category: kern >Synopsis: AHC driver fails to read SEEPROM on Iwill PIILS mb (AIC7880 embedded) >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 Jun 16 08:40:01 PDT 1998 >Last-Modified: >Originator: Jose M. Alcaide >Organization: Univ. del Pais Vasco - Dept. Electronica >Release: 2.2.6-STABLE (980612) >Environment: FreeBSD defiant.we.lc.ehu.es 2.2.6-STABLE FreeBSD 2.2.6-STABLE #0: Fri Jun 12 14:10:09 CEST 1998 jose@defiant.we.lc.ehu.es:/usr/src/sys/compile/DEFIANT i386 >Description: When the AHC driver tries to read the serial EEPROM at startup, the operation fails with a "checksum error". The system is based on an Iwill PIILS mb, which has the AIC7880 controller onboard. The source of the problem is in sys/pci/aic7870.c: the SEEPROM type (93c46, c56, c66) is determined from the controller chip type. The Adaptec 2940UW uses the AIC7880 and the 93c46 SEEPROM. However, this is not the case for the Iwill PIILS mb (and perhaps other motherboards with embedded SCSI). The PIILS uses a 93c56 SEEPROM, so that AHC fails when trying to read a 93c46. I have assigned a "serious" severity to this problem because the AHC driver uses the BIOS defaults when it cannot read the SEEPROM, and it just works. However, some features (i.e. Ultra speed) are disabled. >How-To-Repeat: boot -v on any Iwill PIILS-based system. >Fix: Modify sys/pci/aic7870.c for not associating the SEEPROM type to the controller chip type. Instead, if the read of a 93c46 fails, then it should try to read a 93c56 or 93c66. I have patched aic7870.c, forcing a 93c56 SEEPROM type and it works fine. However, this is not a general solution; it's only a workaround for my system. >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 Jun 16 15:39:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA10174 for freebsd-bugs-outgoing; Tue, 16 Jun 1998 15:39:43 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from mserv.itpa.lt (mserv.itpa.lt [193.219.53.20]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA10115 for ; Tue, 16 Jun 1998 15:39:17 -0700 (PDT) (envelope-from gedas@mserv.itpa.lt) Received: from localhost (gedas@localhost) by mserv.itpa.lt (8.8.8/8.8.8) with SMTP id AAA16440; Wed, 17 Jun 1998 00:38:00 +0200 (CEST) (envelope-from gedas@mserv.itpa.lt) Date: Wed, 17 Jun 1998 00:37:59 +0200 (CEST) From: Gediminas Vilutis To: Ruslan Ermilov cc: freebsd-bugs@FreeBSD.ORG Subject: Re: kern/6344: cy driver is outdated In-Reply-To: <199806160710.AAA23290@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, On Tue, 16 Jun 1998, Ruslan Ermilov wrote: > The following reply was made to PR kern/6344; it has been noted by GNATS. > > From: Ruslan Ermilov > To: gades@tdd.lt, freebsd-gnats-submit@freebsd.org, > Ruslan Ermilov > Cc: Subject: Re: kern/6344: cy driver is outdated > Date: Tue, 16 Jun 1998 10:07:36 +0300 > > Hi! > > Do you still have the Cyclom-Y adapter? > ISA or PCI? Which revision? Which SM (SM8/16 or SM8/16 II)? > > Can you try the driver from Cyclades > > ftp://ftp.cyclades.com/pub/cyclades/cyclom-y/freebsd/2.2.5/cyy225.tar.gz > > and report whether you have any problems with it (silo overflows, etc)? It is ISA version (rev. 6.02, not sure - checked it months ago) with SM16 II module. Driver from Cyclades works ok. Haven't tried it under heavy load, though. -- Gediminas Vilutis To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jun 16 15:51:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA12063 for freebsd-bugs-outgoing; Tue, 16 Jun 1998 15:51:00 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA12056 for ; Tue, 16 Jun 1998 15:50:58 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA28221; Tue, 16 Jun 1998 15:50:01 -0700 (PDT) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA12027; Tue, 16 Jun 1998 15:50:41 -0700 (PDT) (envelope-from nobody) Message-Id: <199806162250.PAA12027@hub.freebsd.org> Date: Tue, 16 Jun 1998 15:50:41 -0700 (PDT) From: vrmaniac@forfree.at To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: misc/6968: Problem installing Xfree86 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6968 >Category: misc >Synopsis: Problem installing Xfree86 >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: support >Submitter-Id: current-users >Arrival-Date: Tue Jun 16 15:50:01 PDT 1998 >Last-Modified: >Originator: Josh D. >Organization: CSW >Release: Current Release >Environment: FreeBSD vrmaniac.dyn.ml.org 2.1.7.1-Release Rep #0: Wed Mar 19 09:48:14 1998 jkh@thingy.cdrom.com:/usr/src/compile/ generic i386 >Description: After Pre-Installation setup, and after the Main Binary's of FreeBSD are installed, It comes up with can not retreive a curtin Xfree86 file, and when i tried it again it does the same thing..... >How-To-Repeat: Run sysinstall, Custom installation, mark Xuser, choose base installation for xwindows, and continue on thu installation... >Fix: >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 Jun 17 05:21:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA09853 for freebsd-bugs-outgoing; Wed, 17 Jun 1998 05:21:03 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA09845 for ; Wed, 17 Jun 1998 05:21:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA01320; Wed, 17 Jun 1998 05:20:01 -0700 (PDT) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA08598; Wed, 17 Jun 1998 05:15:46 -0700 (PDT) (envelope-from nobody) Message-Id: <199806171215.FAA08598@hub.freebsd.org> Date: Wed, 17 Jun 1998 05:15:46 -0700 (PDT) From: steveg@comtrol.com To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: i386/6975: cvsup with current - gperf error undefined symbol ___error 6/17/98 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6975 >Category: i386 >Synopsis: cvsup with current - gperf error undefined symbol ___error 6/17/98 >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jun 17 05:20:00 PDT 1998 >Last-Modified: >Originator: steve gericke >Organization: Comtrol >Release: current >Environment: FreeBSD steveg1.comtrol.com 3.0-CURRENT ... Mon Jun 15 16:06:24 CDT 1996 >Description: make world errors off when compiling gperf >How-To-Repeat: cvsup - get src-all from current cd /usr/src make world >Fix: >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 Jun 17 06:11:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA18817 for freebsd-bugs-outgoing; Wed, 17 Jun 1998 06:11:11 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA18799 for ; Wed, 17 Jun 1998 06:11:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA01626; Wed, 17 Jun 1998 06:10:01 -0700 (PDT) Date: Wed, 17 Jun 1998 06:10:01 -0700 (PDT) Message-Id: <199806171310.GAA01626@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Joseph Koshy Subject: Re: misc/1791: syslimits.h does not allow overriding default value of ARG_MAX Reply-To: Joseph Koshy Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/1791; it has been noted by GNATS. From: Joseph Koshy To: freebsd-gnats-submit@freebsd.org, tegge Cc: bde, jkoshy Subject: Re: misc/1791: syslimits.h does not allow overriding default value of ARG_MAX Date: Wed, 17 Jun 1998 06:07:31 -0700 (PDT) `xargs' and `ps' have been changed to remove compile time dependencies on the value of ARG_MAX. The PR is being kept open because, as BDE points out, the right fix is to remove ARG_MAX, CHILD_MAX, OPEN_MAX etc from the header files completely. Koshy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 17 06:40:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA24261 for freebsd-bugs-outgoing; Wed, 17 Jun 1998 06:40:34 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from exchange03.buysafe.com ([206.156.134.5]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA24245; Wed, 17 Jun 1998 06:40:26 -0700 (PDT) (envelope-from mondo@buysafe.com) From: mondo@buysafe.com Message-Id: <199806171340.GAA24245@hub.freebsd.org> Received: from mail.buysafe.com (ARD2.ns.buysafe.com [206.156.128.61]) by exchange03.buysafe.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.1960.3) id MTGB6R4C; Wed, 17 Jun 1998 09:26:57 -0400 To: freebsd-bugs@FreeBSD.ORG CC: freebsd-questions@FreeBSD.ORG Date: Wed, 17 Jun 98 09:42:02 -0400 Subject: Hey Golf Enthusiast! X-Mailer: WM - mail.buysafe.com Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Our research has selected your website as one of the great golf related sites on the Web! Receive 5% of the ALL of BuySafe.com sales generated through your website. . .at NO COST to you! All you have to do is put a clickable BuySafe.com advertisement on your website BuySafe.com is one of the largest Internet retailers in the world, running over 20 unique stores, five of which are focused upon sports and fitness. Our golf site is one of the most highly recognized in the industry. This presents a tremendous opportunity for you to generate significant revenue through BuySafe. To sign up, simply visit http://partners.buysafe.com and follow our four easy steps. If you have any question feel free to contact me at: Armando Pinzon Mondo@buysafe.com Ph: 954 561-5595 ext. 1701 BuySafe.com: Director of Online Marketing Fx: 954 561-9233 Browse our exceptional online stores at: www.buysafe.com P.S. As a BuySafe.com partner you receive a 5% discount on all your own purchases made through your website. If you would like to be removed from future e-mailings please hit reply and type "remove" into the subject heading. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 18 07:21:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA10314 for freebsd-bugs-outgoing; Thu, 18 Jun 1998 07:21:15 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA10299 for ; Thu, 18 Jun 1998 07:21:11 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA09828; Thu, 18 Jun 1998 07:20:01 -0700 (PDT) Received: from tim.xenologics.com (tim.xenologics.com [194.77.5.24]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA10276 for ; Thu, 18 Jun 1998 07:21:02 -0700 (PDT) (envelope-from seggers@semyam.dinoco.de) Received: (from uucp@localhost) by tim.xenologics.com (8.8.5/8.8.8) with UUCP id QAA14954 for FreeBSD-gnats-submit@freebsd.org; Thu, 18 Jun 1998 16:18:33 +0200 (MET DST) Received: (from seggers@localhost) by semyam.dinoco.de (8.8.8/8.8.8) id LAA02713; Thu, 18 Jun 1998 11:54:08 +0200 (CEST) (envelope-from seggers) Message-Id: <199806180954.LAA02713@semyam.dinoco.de> Date: Thu, 18 Jun 1998 11:54:08 +0200 (CEST) From: Stefan Eggers Reply-To: seggers@semyam.dinoco.de To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: seggers@semyam.dinoco.de X-Send-Pr-Version: 3.2 Subject: kern/6981: CD unmount w/o CD in drive can cause panic Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6981 >Category: kern >Synopsis: CD unmount w/o CD in drive can cause panic >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: Thu Jun 18 07:20:01 PDT 1998 >Last-Modified: >Originator: Stefan Eggers >Organization: none >Release: FreeBSD 2.2.6-STABLE i386 >Environment: My 2.2-current machine. It has a SCSI CD-ROM drive attached to an AMM-1570 host adapter (AIC-6360, utilizes aic driver). The OS was cvsuped at about May 29th, 1998. >Description: Under certain circumstances removing a mounted CD-ROM from its drive can cause an unmount attempt w/o propperly reinserting it to fail with a panic. See below. GDB is free software and you are welcome to 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. GDB 4.16 (i386-unknown-freebsd), Copyright 1996 Free Software Foundation, Inc... IdlePTD 1bd000 current pcb at 1a3f70 panic: vref used where vget required #0 boot (howto=256) at ../../kern/kern_shutdown.c:266 266 dumppcb.pcb_cr3 = rcr3(); (kgdb) bt #0 boot (howto=256) at ../../kern/kern_shutdown.c:266 #1 0xf0110d92 in panic (fmt=0xf012db96 "vref used where vget required") at ../../kern/kern_shutdown.c:400 #2 0xf012dbca in vref (vp=0xf0602100) at ../../kern/vfs_subr.c:833 #3 0xf0102290 in iso_iget (xp=0xefbffd60, ino=49152, relocated=1, ipp=0xefbffcec, isodir=0xf05cd74c) at ../../isofs/cd9660/cd9660_node.c:247 #4 0xf01042f9 in cd9660_root (mp=0xf05d2000, vpp=0xefbffe14) at ../../isofs/cd9660/cd9660_vfsops.c:559 #5 0xf012c8f8 in lookup (ndp=0xefbffeac) at ../../kern/vfs_lookup.c:482 #6 0xf012c30b in namei (ndp=0xefbffeac) at ../../kern/vfs_lookup.c:156 #7 0xf01304bc in stat (p=0xf05d8400, uap=0xefbfff94, retval=0xefbfff84) at ../../kern/vfs_syscalls.c:1290 #8 0xf017b1a7 in syscall (frame={tf_es = 39, tf_ds = 39, tf_edi = 2, tf_esi = -272640596, tf_ebp = -272639460, tf_isp = -272629788, tf_ebx = -272640596, tf_edx = -272639572, tf_ecx = -272640595, tf_eax = 188, tf_trapno = 7, tf_err = 7, tf_eip = 89093, tf_cs = 31, tf_eflags = 646, tf_esp = -272640648, tf_ss = 39}) at ../../i386/i386/trap.c:920 #9 0x15c05 in ?? () #10 0x12d3 in ?? () #11 0x107e in ?? () (kgdb) q I will keep around the crash dump for some time in case someone wants more details. And anyway, I can easily reproduce it on my system and as I am the only user it won't cause any trouble to me. So just ask. >How-To-Repeat: 1) Mount a CD-ROM but do not do any access on it. 2) Start some program like xmcd (with tray locking disabled) which causes the tray to get unlocked. 3) Open the tray. 4) I closed it at this point but made sure the next step was performed before the drive realized it had a CD-ROM in it. For repeating I think it is good enough to leave the tray open. 5) Try to unmount the CD-ROM. >Fix: Not known. I think doing a lock on the right vnode will do the trick when done in the mount function of the CD9660 file system but am not able to fully understand it, yet. Then it will be legal to do a VREF(9) on it at the place it panics at present. To repeat what I wrote in a reply to a somewhat related problem report (bin/5134): I did some investigation and an experiment. The panic only shows up when I do not access the CD's directory. If I do an "ls" before eject with unmount everything is fine. So I took a look at the locking operations the cd9660 file system does on inodes and vnodes as my thought was that the accesses to some directory or file will probably lock the node and thus then the VREF() is legal. W/o the lookup the node is as unlocked as when it was created. Trying a VREF() on it will cause the panic. I didn't understand it, yet (only looked at it for a few minutes) but it seems as if the name lookup in cd9660_lookup.c locks them on its way down but does not unlock them. That would explain why a simple "ls" on the CD-ROM prevented the panic. It was locked by the lookup already. >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 Jun 18 07:31:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA12043 for freebsd-bugs-outgoing; Thu, 18 Jun 1998 07:31:11 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA12036 for ; Thu, 18 Jun 1998 07:31:10 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA09898; Thu, 18 Jun 1998 07:30:01 -0700 (PDT) Date: Thu, 18 Jun 1998 07:30:01 -0700 (PDT) Message-Id: <199806181430.HAA09898@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Stefan Eggers Subject: Re: bin/5134: cdcontrol will eject a mounted CDROM Reply-To: Stefan Eggers Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/5134; it has been noted by GNATS. From: Stefan Eggers To: freebsd-gnats-submit@freebsd.org, obrien@NUXI.com Cc: seggers@semyam.dinoco.de Subject: Re: bin/5134: cdcontrol will eject a mounted CDROM Date: Thu, 18 Jun 1998 11:53:25 +0200 As it is kern and not bin and the subject is too misleading I think a separate problem report is a good idea. I file one after finishing this reply. The problem of ejecting a mounted CD-ROM with cdcontrol is still one I think. Even w/o a panic it can cause enough trouble. So this PR still has a reason to live on. > I did something similar. I had a CD mounted and at the same time xmcd > was running waiting for an audio CD. > > The interesting part is that I have xmcd configured to unlock the tray > and it did this though the CD was mounted. I opened it by accident, > saw what I did and closed it again. > > Before the drive recognized that I inserted a CD (my 12x SCSI CD drive > takes some time for this) I did an unmount on it and got a panic. I did some investigation and an experiment. The panic only shows up when I do not access the CD's directory. If I do an "ls" before eject with unmount everything is fine. So I took a look at the locking operations the cd9660 file system does on inodes and vnodes as my thought was that the accesses to some directory or file will probably lock the node and thus then the VREF() is legal. W/o the lookup the node is as unlocked as when it was created. Trying a VREF() on it will cause the panic. I didn't understand it, yet (only looked at it for a few minutes) but it seems as if the name lookup in cd9660_lookup.c locks them on its way down but does not unlock them. That would explain why a simple "ls" on the CD-ROM prevented the panic. It was locked by the lookup already. Stefan. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 18 10:51:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA15062 for freebsd-bugs-outgoing; Thu, 18 Jun 1998 10:51:17 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA15045 for ; Thu, 18 Jun 1998 10:51:12 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA13243; Thu, 18 Jun 1998 10:50:02 -0700 (PDT) Date: Thu, 18 Jun 1998 10:50:02 -0700 (PDT) Message-Id: <199806181750.KAA13243@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Kevin Day Subject: Re: bin/4917: Bad parameters to ifconfig cause kernel panic Reply-To: Kevin Day Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/4917; it has been noted by GNATS. From: Kevin Day To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: bin/4917: Bad parameters to ifconfig cause kernel panic Date: Thu, 18 Jun 1998 12:48:33 -0500 (CDT) This can be closed, it no longer happens under 2.2.6 or -current. (I still can't explain how it happened on 2.2.1) Kevin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 18 13:17:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA05466 for freebsd-bugs-outgoing; Thu, 18 Jun 1998 13:17:15 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from tim.xenologics.com (tim.xenologics.com [194.77.5.24]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA05457 for ; Thu, 18 Jun 1998 13:17:08 -0700 (PDT) (envelope-from seggers@semyam.dinoco.de) Received: (from uucp@localhost) by tim.xenologics.com (8.8.5/8.8.8) with UUCP id WAA26180; Thu, 18 Jun 1998 22:15:10 +0200 (MET DST) Received: from localhost (localhost [127.0.0.1]) by semyam.dinoco.de (8.8.8/8.8.8) with ESMTP id WAA28312; Thu, 18 Jun 1998 22:12:18 +0200 (CEST) (envelope-from seggers@semyam.dinoco.de) Message-Id: <199806182012.WAA28312@semyam.dinoco.de> To: aw1@stade.co.uk cc: freebsd-bugs@FreeBSD.ORG, seggers@semyam.dinoco.de Subject: Re: bin/5134: cdcontrol will eject a mounted CDROM In-reply-to: Your message of "Tue, 16 Jun 1998 01:27:48 BST." <19980616012748.D16444@stade.co.uk> Date: Thu, 18 Jun 1998 22:12:17 +0200 From: Stefan Eggers Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > panic: vref used where vget required > > Hmm. I get the same panic if I leave a CDROM mounted in what > I increasingly suspect is a dying drive. Sooner of later the system > crashes this way. Do the crashes only occur when the CD is mounted but were never accessed since? Or does it even occur if you used it after mounting? If they occur in both cases then there is probably some other problem or for some reason my machine acted different. > How is the kernel supposed to handle a transfer error on a CDROM drive? As any other file system. Report the problem in a reasonable way and doing the necessary cleanup before returning. A panic definitely is not a good idea. The one happening is particularly bad as it even is not related to some read/transfer error reporting. It surely was planned not to do that. ;-) At present it seems to have trouble with the case of read errors in the stat operation as I found out from the crash dump. Doing a stat on the CD w/o it being accessible leads to a panic if nobody else has accessed the drive before it seems. My suggested fix is surely not the right one to do but if my theory is right it at least stops the panics until someone with enough experience finds out who forgot to do a VGET(9). Stefan. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 18 15:11:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA24808 for freebsd-bugs-outgoing; Thu, 18 Jun 1998 15:11:14 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA24803 for ; Thu, 18 Jun 1998 15:11:13 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA13856; Thu, 18 Jun 1998 15:10:01 -0700 (PDT) Date: Thu, 18 Jun 1998 15:10:01 -0700 (PDT) Message-Id: <199806182210.PAA13856@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Stefan Esser Subject: Re: kern/6964: Problems with cam-980520 code in FreeBSD-stable Reply-To: Stefan Esser Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/6964; it has been noted by GNATS. From: Stefan Esser To: Torbjorn Granlund , FreeBSD-gnats-submit@freebsd.org Cc: Stefan Esser Subject: Re: kern/6964: Problems with cam-980520 code in FreeBSD-stable Date: Fri, 19 Jun 1998 00:04:30 +0200 On 1998-06-16 11:56 +0200, Torbjorn Granlund wrote: > > motherboard: ASUS P2B-S > cpu: Intel Pentium II 400MHz > memory: 64MB PC66 SDRAM w/o ECC (1x64MB Hyundai) > disk: 9.1GB U2W Seagate Cheetah9LP scsiid=0 > disk: 9.1GB U2W Seagate Cheetah9LP scsiid=1 > disk: 2.16GB Ultra IBM DCAS scsiid=6 > scsi: AIC7890 on motherboard > scsi: NCR810 (ASUS SC200) > video: S3 Trio64 > network: Intel Etherexpress Pro 100B, 10.0.100.9 > > The NCR controller is scanned by the BIOS before the 7890 controller, and > with previous versions of FreeBSD, it is used for booting. Your probe messages indicate, that now a drive that is connected to the Adaptec is attached as da0 and will become the root device (unless you specified a different root device in your kernel config file). > There are two problems. > > 1) The root device is not located. That might have to do with problems with > the NCR controller (see screen dump from boot below). But note that the > drive is found, so talking to the NCR is clearly possible. Its found only *after* the kernel tried to mount da0a as the root partition ... > (probe17:ncr0:0:1:0): COMMAND FAILED (6 ff) @f07ea200 > (probe16:ncr0:0:1:0): COMMAND FAILED (6 ff) @f07ea800 > (probe15:ncr0:0:0:0): COMMAND FAILED (6 ff) @f07eae00 There should have been more specific error messages before these lines. The error code "6" indicates a SCSI bus reset occured. But there is not enough information available to understand what's causing this ... > changing root device to da0s1a > da0 at ahc0 bus 0 target 0 lun 0 > da0: Fixed Direct Access SCSI2 device > da0: Serial Number [omitted] > da0: 6.600MS/s transfers , 16bit), Tagged Queueing Enabled [see remark below] > da0: 8683MB (17783240 512 byte sectors: 64H 32S/T 8683C) > da1 at ahc0 bus 0 target 1 lun 0 > da1: Fixed Direct Access SCSI2 device > da1: Serial Number [omitted] > da1: 6.600MS/s transfers , 16bit), Tagged Queueing Enabled [see remark below] > da1: 8683MB (17783240 512 byte sectors: 64H 32S/T 8683C) > panic: cannot mount root > synching disks... done > da2 at ncr0 bus 0 target 6 lun 0 > da2: Fixed Direct Access SCSI2 device > da2: Serial Number [omitted] > da2: 2063MB (4226725 512 byte sectors: 255H 63S/T 263C) Seems that probing the SCSI bus connected to the NCR chip took a very long time and only found the one drive on it after the kernel tried to mount the root partition. > Automatic reboot in 15 seconds [etc] I do not understand why the probe order changed between pre-CAM and CAM. My test system got -current with unmodified CAM and a slightly modified CAM version of the NCR driver. I've got a 810 and a 875 card in that system, and there is no change in probe order or resulting drive numbers between pre-CAM and CAM kernels. Did you change anything else (i.e. did the system ever run with the old SCSI code) ? Regards, STefan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 18 18:51:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA25627 for freebsd-bugs-outgoing; Thu, 18 Jun 1998 18:51:15 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA25620 for ; Thu, 18 Jun 1998 18:51:14 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA15721; Thu, 18 Jun 1998 18:50:01 -0700 (PDT) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA24409; Thu, 18 Jun 1998 18:43:41 -0700 (PDT) (envelope-from nobody) Message-Id: <199806190143.SAA24409@hub.freebsd.org> Date: Thu, 18 Jun 1998 18:43:41 -0700 (PDT) From: iansmith@viaccess.net To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: misc/6984: Error Can't Mount root Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6984 >Category: misc >Synopsis: Error Can't Mount root >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: support >Submitter-Id: current-users >Arrival-Date: Thu Jun 18 18:50:01 PDT 1998 >Last-Modified: >Originator: Ian >Organization: >Release: 2.2.6-RELEASE >Environment: >Description: After installing freebsd i reboot my computer every things goes good but at the end of the boot proccess i get the error can't mount root restarting in 15 sec >How-To-Repeat: >Fix: >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 Jun 18 18:57:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA26369 for freebsd-bugs-outgoing; Thu, 18 Jun 1998 18:57:26 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from sarah.viaccess.net (root@sarah.viaccess.net [207.227.222.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA26361 for ; Thu, 18 Jun 1998 18:57:21 -0700 (PDT) (envelope-from iansmith@viaccess.net) Received: from iansmith (36.p1.Tnt01.STT.VIaccess.Net [207.227.84.36]) by sarah.viaccess.net (8.8.8/ACK-1.1f) with SMTP id VAA09079 for ; Thu, 18 Jun 1998 21:57:20 -0400 (AST) Message-ID: <000101bd9b3f$46ce1dc0$2454e3cf@iansmith> From: "Ian Smith" To: Subject: Attempts to boot from /dev/wd2s2a cause panic Date: Thu, 18 Jun 1998 22:01:08 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3110.1 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org when i boot freebsd i get the error Attempts to boot from /dev/wd2s2a cause panic then the system restarts is there a fix for this please reply. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 18 19:01:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA26811 for freebsd-bugs-outgoing; Thu, 18 Jun 1998 19:01:14 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA26806 for ; Thu, 18 Jun 1998 19:01:13 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA15742; Thu, 18 Jun 1998 19:00:00 -0700 (PDT) Date: Thu, 18 Jun 1998 19:00:00 -0700 (PDT) Message-Id: <199806190200.TAA15742@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: "Ian Smith" Subject: Re: kern/6116: In system with wd0, wd2, kernel cannot find root on wd2 Reply-To: "Ian Smith" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/6116; it has been noted by GNATS. From: "Ian Smith" To: , Cc: Subject: Re: kern/6116: In system with wd0, wd2, kernel cannot find root on wd2 Date: Thu, 18 Jun 1998 22:01:58 -0700 i have the same problem were can i get a fix please reply To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 18 19:35:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA02193 for freebsd-bugs-outgoing; Thu, 18 Jun 1998 19:35:50 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from mail.atipa.com (altrox.atipa.com [208.128.22.34]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id TAA02182 for ; Thu, 18 Jun 1998 19:35:47 -0700 (PDT) (envelope-from freebsd@atipa.com) Received: (qmail 25050 invoked by uid 1017); 19 Jun 1998 01:32:51 -0000 Date: Thu, 18 Jun 1998 19:32:51 -0600 (MDT) From: Atipa To: Ian Smith cc: freebsd-bugs@FreeBSD.ORG Subject: Re: Attempts to boot from /dev/wd2s2a cause panic In-Reply-To: <000101bd9b3f$46ce1dc0$2454e3cf@iansmith> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org loot at the release notes for 2.2.6. This is not a bug; it is a change in the way the partitions are defined and identified. Kevin On Thu, 18 Jun 1998, Ian Smith wrote: > when i boot freebsd i get the error > Attempts to boot from /dev/wd2s2a cause panic then the system restarts is > there a fix for this please reply. > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-bugs" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 18 19:37:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA02563 for freebsd-bugs-outgoing; Thu, 18 Jun 1998 19:37:18 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from titus.stade.co.uk (root@stade.demon.co.uk [158.152.29.164]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA02540 for ; Thu, 18 Jun 1998 19:37:06 -0700 (PDT) (envelope-from aw1@titus.stade.co.uk) Received: (from aw1@localhost) by titus.stade.co.uk (8.8.8/8.8.3) id DAA29517; Fri, 19 Jun 1998 03:00:51 +0100 (BST) Message-ID: <19980619030051.D27607@stade.co.uk> Date: Fri, 19 Jun 1998 03:00:51 +0100 From: Adrian Wontroba To: Stefan Eggers Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: bin/5134: cdcontrol will eject a mounted CDROM Reply-To: aw1@stade.co.uk Mail-Followup-To: Stefan Eggers , freebsd-bugs@FreeBSD.ORG References: <19980616012748.D16444@stade.co.uk> <199806182012.WAA28312@semyam.dinoco.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <199806182012.WAA28312@semyam.dinoco.de>; from Stefan Eggers on Thu, Jun 18, 1998 at 10:12:17PM +0200 Organization: Stade Computers Ltd, UK X-Phone: +(44) 121 681 6677 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Jun 18, 1998 at 10:12:17PM +0200, Stefan Eggers wrote: > > > panic: vref used where vget required > Do the crashes only occur when the CD is mounted but were never > accessed since? Or does it even occur if you used it after mounting? > If they occur in both cases then there is probably some other problem > or for some reason my machine acted different. I _think_ I've seen both scenarios, but it was a couple of weeks ago and I've stopped using the cd drive until I've dealt with what I'm also fairly sure that the drive has a hardware problem - here are uniq -c counts for cd related error messages: 3 /kernel: cd0(ahc0:4:0): HARDWARE FAILURE asc:9,2 Focus servo failure 1 /kernel: cd0(ahc0:4:0): MEDIUM ERROR info:0x10 asc:2,0 No seek complete 1 /kernel: cd0(ahc0:4:0): MEDIUM ERROR info:0x22307 asc:2,0 No seek complete 1 /kernel: cd0(ahc0:4:0): MEDIUM ERROR info:0x22308 asc:2,0 No seek complete 9 /kernel: cd0(ahc0:4:0): MEDIUM ERROR info:0x98 asc:2,0 No seek complete > > How is the kernel supposed to handle a transfer error on a CDROM drive? > As any other file system. Report the problem in a reasonable way and > doing the necessary cleanup before returning. A panic definitely is > not a good idea. The one happening is particularly bad as it even is > not related to some read/transfer error reporting. It surely was > planned not to do that. ;-) I'll go along with that statement. -- Adrian Wontroba, Stade Computers Limited. phone: (+44) 121 681 6677 Mail info@accu.org for information about the Association of C and C++ Users or see To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 18 22:41:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA29543 for freebsd-bugs-outgoing; Thu, 18 Jun 1998 22:41:16 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA29535 for ; Thu, 18 Jun 1998 22:41:15 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA16250; Thu, 18 Jun 1998 22:40:01 -0700 (PDT) Received: from aldan.ziplink.net (mi@kot.ne.mediaone.net [24.128.29.55]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA29390 for ; Thu, 18 Jun 1998 22:39:47 -0700 (PDT) (envelope-from mi@rtfm.ziplink.net) Received: from rtfm.ziplink.net (rtfm [199.232.255.52]) by aldan.ziplink.net (8.8.8/8.8.7) with ESMTP id FAA00824 for ; Fri, 19 Jun 1998 05:39:44 GMT (envelope-from mi@rtfm.ziplink.net) Received: (from mi@localhost) by rtfm.ziplink.net (8.8.8/8.8.5) id BAA18761; Fri, 19 Jun 1998 01:39:43 -0400 (EDT) Message-Id: <199806190539.BAA18761@rtfm.ziplink.net> Date: Fri, 19 Jun 1998 01:39:43 -0400 (EDT) From: Mikhail Teterin Reply-To: mi@aldan.algebra.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: bin/6988: swapon succeeds on bogus partitions Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6988 >Category: bin >Synopsis: swapon succeeds on bogus partitions >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Jun 18 22:40:00 PDT 1998 >Last-Modified: >Originator: Mikhail Teterin >Organization: >Release: FreeBSD 3.0-CURRENT i386 >Environment: >Description: mi@rtfm:pk/pcscreen/public (1088) pstat -s Device 1K-blocks Used Avail Capacity Type /dev/sd0s1b 32768 9572 23068 29% Interleaved /dev/sd1s1b 65536 9420 55988 14% Interleaved /dev/sd7s1b 32768 9128 23512 28% Interleaved /dev/sd8s1b 32767 9232 23407 28% Interleaved /dev/sd7b 32768 128 32512 0% Interleaved /dev/sd8b 32767 212 32427 1% Interleaved Total 228607 37692 190915 16% There is no sd7b or sd8b -- they are sd7s1b and sd8s1b respectively. Yet, swapon allowed me to add one after another, and they seem to now be used for paging! Without ``swapon -u'' I can not even stop this non-sence without reboot, which is what I'm going to do as soon as I finish typing this. I think, the machine can panic any time now... >How-To-Repeat: See description >Fix: Watch those partitions... >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 Jun 19 01:37:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA21650 for freebsd-bugs-outgoing; Fri, 19 Jun 1998 01:37:00 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: (from jkoshy@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA21632; Fri, 19 Jun 1998 01:36:56 -0700 (PDT) (envelope-from jkoshy) Date: Fri, 19 Jun 1998 01:36:56 -0700 (PDT) From: Joseph Koshy Message-Id: <199806190836.BAA21632@hub.freebsd.org> To: m-braithwaite@sjca.edu, jkoshy, freebsd-bugs Subject: Re: docs/2850 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: init(8) man page does not document securelevel properly State-Changed-From-To: open-closed State-Changed-By: jkoshy State-Changed-When: Fri Jun 19 01:36:22 PDT 1998 State-Changed-Why: Fixed in rev 1.11 of "init.8". To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 19 02:11:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA26039 for freebsd-bugs-outgoing; Fri, 19 Jun 1998 02:11:24 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA26028 for ; Fri, 19 Jun 1998 02:11:19 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA16898; Fri, 19 Jun 1998 02:10:01 -0700 (PDT) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA24826; Fri, 19 Jun 1998 02:02:56 -0700 (PDT) (envelope-from nobody) Message-Id: <199806190902.CAA24826@hub.freebsd.org> Date: Fri, 19 Jun 1998 02:02:56 -0700 (PDT) From: iansmith@viaccess.net To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: i386/6990: I can't start X Windows Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6990 >Category: i386 >Synopsis: I can't start X Windows >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: support >Submitter-Id: current-users >Arrival-Date: Fri Jun 19 02:10:01 PDT 1998 >Last-Modified: >Originator: Ian Smith >Organization: >Release: 2.2.6-RELEASE >Environment: >Description: I can't start X windows i don't know how please help am new to FreeBSD Do any one know how to solve the problem "Cannot mount root" when i try to get in to the root of the system I have Linux installed on my second hard drive. >How-To-Repeat: >Fix: >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 Jun 19 03:41:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA11468 for freebsd-bugs-outgoing; Fri, 19 Jun 1998 03:41:21 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA11434 for ; Fri, 19 Jun 1998 03:41:17 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA19076; Fri, 19 Jun 1998 03:40:02 -0700 (PDT) Received: from inr-delphi.fzk.de (inr-delphi.fzk.de [141.52.12.230]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA11397 for ; Fri, 19 Jun 1998 03:40:47 -0700 (PDT) (envelope-from pc@inr-delphi.fzk.de) Received: (from pc@localhost) by inr-delphi.fzk.de (8.8.8/8.8.7) id MAA15386; Fri, 19 Jun 1998 12:40:13 +0200 (CEST) (envelope-from pc) Message-Id: <199806191040.MAA15386@inr-delphi.fzk.de> Date: Fri, 19 Jun 1998 12:40:13 +0200 (CEST) From: Peter Cornelius Reply-To: Peter Cornelius To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: kern/6991: Kernel build: don't know how to make ../../cfs/cfs_namecache.c Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6991 >Category: kern >Synopsis: Kernel build: don't know how to make ../../cfs/cfs_namecache.c >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jun 19 03:40:01 PDT 1998 >Last-Modified: >Originator: Peter Cornelius >Organization: Arbeitskreis Kultur und Kommunikation, Universitaet Karlsruhe >Release: FreeBSD 2.2.6-STABLE i386 (RELENG_2_2) >Environment: Main board is an Iwill (http://www.iwill.com.tw/) P54TS w/ P133, AIC7850 and 96 MB RAM. petra:~# uname -a > uname.kernel.980408 FreeBSD petra.cornelius.org 2.2.5-RELEASE FreeBSD 2.2.5-RELEASE #0: Sun Mar 29 2 3:56:20 CEST 1998 root@petra.cornelius.org:/usr/src/sys/compile/PETRA i386 but also with 2.2.6-STABLE kernel. I am up to date with RELENG_2_2 src until last night (June 18th, 18.30 UTC) and have the last world made roughly a fortnight ago. (Here, LUIS is the kernel config file, empty lines deleted:) petra:/usr/src/sys/i386/conf# grep -v ^\# LUIS machine "i386" ident LUIS maxusers 16 options CHILD_MAX=128 options OPEN_MAX=128 options FAILSAFE options INCLUDE_CONFIG_FILE # Include this file in kernel config kernel root on wd0 ^L cpu "I486_CPU" options GPL_MATH_EMULATE #Support for x87 emulation via ^L options "COMPAT_43" options USER_LDT #allow user-level control of i386 ldt options SYSVSHM options SYSVSEM options SYSVMSG options "MD5" ^L options DDB options DDB_UNATTENDED options KTRACE #kernel tracing options UCONSOLE options USERCONFIG #boot -c editor options VISUAL_USERCONFIG #visual boot -c editor ^L options INET #Internet communications protocols pseudo-device ether #Generic Ethernet pseudo-device loop #Network loopback device pseudo-device bpfilter 4 #Berkeley packet filter options MROUTING # Multicast routing options IPDIVERT #divert sockets options TCPDEBUG ^L options FFS #Fast filesystem options NFS #Network File System options "CD9660" #ISO 9660 filesystem options MSDOSFS #MS DOS filesystem options PROCFS #Process filesystem options NSWAPDEV=20 options QUOTA #enable disk quotas options "CD9660_ROOTDELAY=20" ^L controller scbus0 #base SCSI code device sd0 #SCSI disks device st0 #SCSI tapes device cd0 #SCSI CD-ROMs options SCSIDEBUG options SCSI_REPORT_GEOMETRY ^L pseudo-device pty 16 #Pseudo ttys - can go as high as 256 pseudo-device vcfs 4 #coda minicache <-> venus comm. pseudo-device speaker #Play IBM BASIC-style noises out your speaker pseudo-device log #Kernel syslog interface (/dev/klog) pseudo-device gzip #Exec gzipped a.out's pseudo-device vn #Vnode driver (turns a file into a device) pseudo-device snp 3 #Snoop device - to look at pty/vty/etc.. pseudo-device ccd 4 #Concatenated disk driver ^L controller isa0 options "AUTO_EOI_1" options "AUTO_EOI_2" options BOUNCE_BUFFERS options "TUNE_1542" controller pnp0 device vt0 at isa? port "IO_KBD" tty irq 1 vector pcrint options XSERVER # support for running an X server. options FAT_CURSOR # start with block cursor options PCVT_FREEBSD=220 # This one I added - pc. options MAXCONS=16 # number of virtual consoles options SLOW_VGA # do byte-wide i/o's to TS and GDC regs options SC_HISTORY_SIZE=200 # number of history buffer lines device npx0 at isa? port "IO_NPX" iosiz 0x0 flags 0x0 irq 13 vector npxintr controller aha0 at isa? port "IO_AHA0" bio irq ? drq 5 vector ahaintr controller wdc0 at isa? port "IO_WD1" bio irq 14 vector wdintr disk wd0 at wdc0 drive 0 disk wd1 at wdc0 drive 1 controller wdc1 at isa? port "IO_WD2" disable bio irq 15 vector wdintr disk wd2 at wdc1 drive 0 disk wd3 at wdc1 drive 1 controller fdc0 at isa? port "IO_FD1" bio irq 6 drq 2 vector fdintr options FDC_DEBUG options FDC_PRINT_BOGUS_CHIPTYPE disk fd0 at fdc0 drive 0 disk fd1 at fdc0 drive 1 tape ft0 at fdc0 drive 2 device lpt0 at isa? port? tty irq 7 vector lptintr device lpt1 at isa? port "IO_LPT3" disable tty irq 5 vector lptintr device psm0 at isa? port "IO_KBD" conflicts tty irq 12 vector psmintr #for some laptops device sio0 at isa? port "IO_COM1" tty irq 4 vector siointr device sio1 at isa? port "IO_COM2" tty irq 3 vector siointr device sio2 at isa? port "IO_COM3" disable tty irq 2 vector siointr device sio3 at isa? port "IO_COM4" disable tty irq 8 vector siointr #DDB, if available. device ed0 at isa? port 0x280 net irq 5 iomem 0xc0000 vector edintr controller snd0 device sb0 at isa? port 0x220 irq 5 drq 1 vector sbintr device sbxvi0 at isa? drq 5 device sbmidi0 at isa? port 0x330 device opl0 at isa? port 0x388 device pca0 at isa? port IO_TIMER1 tty options AHC_TAGENABLE options BOOTP # Use BOOTP to obtain IP address/hostname options BOOTP_NFSROOT # NFS mount root filesystem using BOOTP info options "BOOTP_NFSV3" # Use NFS v3 to NFS mount root options NO_LKM options "CLK_USE_I8254_CALIBRATION" options COMPAT_LINUX options DEBUG options "IBCS2" options "SCSI_2_DEF" options SCSI_DELAY=15 # (was 8) Be pessimistic about Joe SCSI device >Description: I'm trying to build a kernel for another machine (i486 hp vectra, btw), but this is the farthest I got: petra:/usr/src/sys/i386/conf# /usr/sbin/config LUIS Removing old directory ../../compile/LUIS: Done. remapped irq 2 to irq 9, please update your config file Kernel build directory is ../../compile/LUIS petra:/usr/src/sys/i386/conf# cd ../../compile/LUIS/ petra:/usr/src/sys/compile/LUIS# make all 2>&1 | tee ~/LUIS.log echo "gcc2_compiled." >symbols.exclude echo "___gnu_compiled_c" >>symbols.exclude grep -v '^#' ../../i386/i386/symbols.raw | sed 's/^ //' | sort -u > symbols.sort cc -c -O -Wreturn-type -Wcomment -Wredundant-decls -Wimplicit -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -nostdinc -I- -I. -I../.. -I../../../include -DSCSI_2_DEF -DDEBUG -DBOOTP_NFSV3 -DBOOTP_NFSROOT -DBOOTP -DTUNE_1542 -DNSWAPDEV=20 -DMSDOSFS -DNFS -DFFS -DIPDIVERT -DINET -DMD5 -DCOMPAT_43 -DFAILSAFE -DKERNEL -DMAXUSERS=16 -UKERNEL ../../i386/i386/genassym.c cc -O -Wreturn-type -Wcomment -Wredundant-decls -Wimplicit -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -nostdinc -I- -I. -I../.. -I../../../include -DSCSI_2_DEF -DDEBUG -DBOOTP_NFSV3 -DBOOTP_NFSROOT -DBOOTP -DTUNE_1542 -DNSWAPDEV=20 -DMSDOSFS -DNFS -DFFS -DIPDIVERT -DINET -DMD5 -DCOMPAT_43 -DFAILSAFE -DKERNEL -DMAXUSERS=16 genassym.o -o genassym ./genassym >assym.s cc -c -x assembler-with-cpp -DLOCORE -nostdinc -I- -I. -I../.. -I../../../include -DSCSI_2_DEF -DDEBUG -DBOOTP_NFSV3 -DBOOTP_NFSROOT -DBOOTP -DTUNE_1542 -DNSWAPDEV=20 -DMSDOSFS -DNFS -DFFS -DIPDIVERT -DINET -DMD5 -DCOMPAT_43 -DFAILSAFE -DKERNEL ../../i386/i386/locore.s sh ../../kern/vnode_if.sh ../../kern/vnode_if.src cc -O -Wreturn-type -Wcomment -Wredundant-decls -Wimplicit -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -nostdinc -I- -I. -I../.. -I../../../include -DSCSI_2_DEF -DDEBUG -DBOOTP_NFSV3 -DBOOTP_NFSROOT -DBOOTP -DTUNE_1542 -DNSWAPDEV=20 -DMSDOSFS -DNFS -DFFS -DIPDIVERT -DINET -DMD5 -DCOMPAT_43 -DFAILSAFE -DKERNEL -c vnode_if.c make: don't know how to make ../../cfs/cfs_namecache.c. Stop >How-To-Repeat: Build that kernel. >Fix: No idea. >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 Jun 19 03:41:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA11469 for freebsd-bugs-outgoing; Fri, 19 Jun 1998 03:41:21 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA11440 for ; Fri, 19 Jun 1998 03:41:18 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA19085; Fri, 19 Jun 1998 03:40:02 -0700 (PDT) Received: from inr-delphi.fzk.de (inr-delphi.fzk.de [141.52.12.230]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA11391 for ; Fri, 19 Jun 1998 03:40:40 -0700 (PDT) (envelope-from pc@inr-delphi.fzk.de) Received: (from pc@localhost) by inr-delphi.fzk.de (8.8.8/8.8.7) id MAA15389; Fri, 19 Jun 1998 12:40:16 +0200 (CEST) (envelope-from pc) Message-Id: <199806191040.MAA15389@inr-delphi.fzk.de> Date: Fri, 19 Jun 1998 12:40:16 +0200 (CEST) From: Peter Cornelius Reply-To: Peter Cornelius To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: misc/6992: 'cc: Internal compiler error: program as got fatal signal 11' when making world Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6992 >Category: misc >Synopsis: 'cc: Internal compiler error: program as got fatal signal 11' when making 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 Jun 19 03:40:02 PDT 1998 >Last-Modified: >Originator: Peter Cornelius >Organization: Arbeitskreis Kultur und Kommunikation, Universitaet Karlsruhe >Release: FreeBSD 2.2.6-STABLE i386 (RELENG_2_2) >Environment: This is going to be large. Please excuse. Main board is an Iwill (http://www.iwill.com.tw/) P54TS w/ P133, AIC7850 and 96 MB RAM. petra:~# uname -a > uname.kernel.980408 FreeBSD petra.cornelius.org 2.2.5-RELEASE FreeBSD 2.2.5-RELEASE #0: Sun Mar 29 2 3:56:20 CEST 1998 root@petra.cornelius.org:/usr/src/sys/compile/PETRA i386 but also with 2.2.6-STABLE kernel. I am up to date with RELENG_2_2 src until last night (June 18th, 18.30 UTC) and have the last world made roughly a fortnight ago. >From the running kernel during the last experiments here's a dmesg.boot: Copyright (c) 1992-1997 FreeBSD Inc. Copyright (c) 1982, 1986, 1989, 1991, 1993 The Regents of the University of California. All rights reserved. FreeBSD 2.2.5-RELEASE #0: Sun Mar 29 23:56:20 CEST 1998 root@petra.cornelius.org:/usr/src/sys/compile/PETRA Calibrating clock(s) ... i586 clock: 132633191 Hz, i8254 clock: 1193199 Hz CPU: Pentium (132.63-MHz 586-class CPU) Origin = "GenuineIntel" Id = 0x52b Stepping=11 Features=0x1bf real memory = 100663296 (98304K bytes) Physical memory chunk(s): 0x00001000 - 0x0009efff, 647168 bytes (158 pages) 0x002a0000 - 0x05ffdfff, 97902592 bytes (23902 pages) avail memory = 94388224 (92176K bytes) pcibus_setup(1): mode 1 addr port (0x0cf8) is 0x8000005c pcibus_setup(1a): mode1res=0x80000000 (0x80000000) pcibus_check: device 0 is there (id=122d8086) Probing for devices on PCI bus 0: configuration mode 1 allows 32 devices. chip0 rev 2 on pci0:0 CPU Inactivity timer: clocks Peer Concurrency: enabled CPU-to-PCI Write Bursting: enabled PCI Streaming: enabled Bus Concurrency: enabled Cache: 256K pipelined-burst secondary; L1 enabled DRAM: no memory hole, 66 MHz refresh Read burst timing: x-2-2-2/x-3-3-3 Write burst timing: x-2-2-2 RAS-CAS delay: 3 clocks chip1 rev 2 on pci0:7:0 I/O Recovery Timing: 8-bit 1 clocks, 16-bit 1 clocks Extended BIOS: enabled Lower BIOS: disabled Coprocessor IRQ13: enabled Mouse IRQ12: disabled Interrupt Routing: A: IRQ15, B: IRQ11, C: IRQ12, D: disabled MB0: disabled, MB1: disabled chip2 rev 2 on pci0:7:1 mapreg[20] type=1 addr=00003000 size=0010. Primary IDE: disabled Secondary IDE: disabled vga0 rev 0 int a irq 15 on pci0:17 mapreg[10] type=0 addr=f0000000 size=800000. ahc0 rev 0 int a irq 11 on pci0:18 mapreg[10] type=1 addr=00006000 size=0100. mapreg[14] type=0 addr=f0800000 size=1000. reg20: virtual=0xf55ee000 physical=0xf0800000 size=0x1000 ahc0: Using left over BIOS settings ahc0: aic7850 Single Channel, SCSI Id=7, 3 SCBs ahc0: Resetting Channel A ahc0: Downloading Sequencer Program...ahc0: 366 instructions downloaded Done ahc0: Probing channel A ahc0 waiting for scsi devices to settle ahc0: target 0 synchronous at 10.0MHz, offset = 0xf ahc0: target 0 Tagged Queuing Device (ahc0:0:0): "IBM DCAS-34330 S65A" type 0 fixed SCSI 2 sd0(ahc0:0:0): Direct-Access 4134MB (8467200 512 byte sectors) sd0(ahc0:0:0): with 8205 cyls, 6 heads, and an average 171 sectors/track ahc0: target 5 synchronous at 4.0MHz, offset = 0xf (ahc0:5:0): "TOSHIBA CD-ROM XM-5401TA 3115" type 5 removable SCSI 2 cd0(ahc0:5:0): CD-ROM can't get the size ncr0 rev 1 int a irq 12 on pci0:19 mapreg[10] type=1 addr=00006100 size=0100. mapreg[14] type=0 addr=f0801000 size=0100. reg20: virtual=0xf55ef000 physical=0xf0801000 size=0x100 ncr0: minsync=25, maxsync=206, maxoffs=8, 16 dwords burst, normal dma fifo ncr0: single-ended, open drain IRQ driver ncr0: restart (scsi reset). ncr0 scanning for targets 0..6 (V2 pl24 96/12/14) ncr0 waiting for scsi devices to settle (ncr0:5:0): phase change 2-3 10@00036a58 resid=4. new ccb @f0a93800. (ncr0:5:0): "OLIVETTI CP30100-105mb 1F1E" type 0 fixed SCSI 1 sd1(ncr0:5:0): Direct-Access sd1(ncr0:5:0): 3.3 MB/s (300 ns, offset 8) 100MB (206076 512 byte sectors) sd1(ncr0:5:0): with 1321 cyls, 4 heads, and an average 39 sectors/track pci0: uses 8392960 bytes of memory from f0000000 upto f08010ff. pci0: uses 528 bytes of I/O space from 3000 upto 61ff. Probing for devices on the ISA bus: sc0: the current keyboard controller command byte 0047 kbdio: DIAGNOSE status:0055 kbdio: TEST_KBD_PORT status:0000 kbdio: RESET_KBD return code:00fa kbdio: RESET_KBD status:00aa sc0 at 0x60-0x6f irq 1 on motherboard sc0: BIOS video mode:3 sc0: VGA registers upon power-up 50 18 10 00 10 00 03 00 02 67 5f 4f 50 82 55 81 bf 1f 00 4f 0e 0f 00 00 07 80 9c 8e 8f 28 1f 96 b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c 3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff sc0: video mode:24 sc0: VGA registers for mode:24 50 18 10 00 10 00 03 00 02 67 5f 4f 50 82 55 81 bf 1f 00 4f 0d 0e 00 00 00 00 9c 8e 8f 28 1f 96 b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c 3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff sc0: VGA color <16 virtual consoles, flags=0x0> ed0 at 0x240-0x25f irq 10 maddr 0xd2000 msize 8192 on isa ed0: address 00:00:c0:8a:94:cd, type SMC8416C/SMC8416BT (16 bit) bpf: ed0 attached lpt0 at 0x378-0x37f irq 7 on isa oldirq 0 lpt0: Interrupt-driven port lp0: TCP/IP capable interface bpf: lp0 attached irq 7 lpt1: disabled, not probed. sio0 at 0x3f8-0x3ff irq 4 on isa sio0: type 16550A sio1 at 0x2f8-0x2ff irq 3 on isa sio1: type 16550A sio2 at 0x3e8-0x3ef irq 9 on isa sio2: type 16450 sio3: disabled, not probed. pca0 on motherboard pca0: PC speaker audio driver fdc0 at 0x3f0-0x3f7 irq 6 drq 2 on isa fdc0: NEC 72065B fdc0: FIFO enabled, 8 bytes threshold fd0: 1.44MB 3.5in fd1: 1.2MB 5.25in ft0: IOMega tape npx0 on motherboard npx0: INT 16 interface sb0 at 0x220 irq 5 drq 1 on isa sb0: sbxvi0 at 0x0 drq 5 on isa sbxvi0: sbmidi0 at 0x330 on isa opl0 at 0x388 on isa opl0: joy0 at 0x201 on isa joy0: joystick imasks: bio c0001840, tty c003069a, net c003069a sctarg0(noadapter::): Processor Target BIOS Geometries: 0:03fe3f20 0..1022=1023 cylinders, 0..63=64 heads, 1..32=32 sectors 0 accounted for Device configuration finished. Considering FFS root f/s. configure() finished. new masks: bio c0001840, tty c003069a, net c003069a bpf: tun0 attached bpf: tun1 attached bpf: sl0 attached bpf: sl1 attached bpf: ppp0 attached bpf: ppp1 attached bpf: lo0 attached ccd0-3: Concatenated disk drivers sd0s1: type 0x6, start 32, end = 1023999, size 1023968 : OK sd0s2: type 0xa5, start 1024000, end = 1843199, size 819200 : OK sd0s3: type 0xa5, start 1843200, end = 8466431, size 6623232 : OK (in a newer kernel, the scsi target has been removed but the ncr's new ccb stays in there, but that's off topic here) Similar probs also occur with a newer kernel (from config file): petra:/usr/src/sys/i386/conf# grep -v ^\# PETRA.980531 machine "i386" ident PETRA maxusers 32 options CHILD_MAX=128 options OPEN_MAX=128 options FAILSAFE options INCLUDE_CONFIG_FILE # Include this file in kernel config kernel root on sd0 cpu "I586_CPU" # aka Pentium(tm) options "CPU_FASTER_5X86_FPU" #via new math emulator options "COMPAT_43" options USER_LDT #allow user-level control of i386 ldt options SYSVSHM options SYSVSEM options SYSVMSG options "MD5" options DDB options DDB_UNATTENDED options KTRACE #kernel tracing options PERFMON options UCONSOLE options USERCONFIG #boot -c editor options VISUAL_USERCONFIG #visual boot -c editor options INET #Internet communications protocols pseudo-device ether #Generic Ethernet pseudo-device loop #Network loopback device pseudo-device sl 2 #Serial Line IP pseudo-device ppp 2 #Point-to-point protocol pseudo-device bpfilter 4 #Berkeley packet filter pseudo-device tun 2 #Tunnel driver(user process ppp) options MROUTING # Multicast routing # dropped packets options IPDIVERT #divert sockets options TCPDEBUG options FFS #Fast filesystem options NFS #Network File System options "CD9660" #ISO 9660 filesystem options MSDOSFS #MS DOS File System options PROCFS #Process filesystem options NSWAPDEV=20 options QUOTA #enable disk quotas options "CD9660_ROOTDELAY=20" controller scbus0 #base SCSI code device sd0 #SCSI disks device st0 #SCSI tapes device cd0 #SCSI CD-ROMs device pt0 at scbus? # SCSI processor type options SCSIDEBUG options SCSI_REPORT_GEOMETRY pseudo-device pty 32 #Pseudo ttys - can go as high as 256 pseudo-device speaker #Play IBM BASIC-style noises out your speaker pseudo-device log #Kernel syslog interface (/dev/klog) pseudo-device gzip #Exec gzipped a.out's pseudo-device vn #Vnode driver (turns a file into a device) pseudo-device snp 3 #Snoop device - to look at pty/vty/etc.. pseudo-device ccd 4 #Concatenated disk driver controller isa0 options "AUTO_EOI_1" options "AUTO_EOI_2" options BOUNCE_BUFFERS options XSERVER # support for running an X server. options FAT_CURSOR # start with block cursor device sc0 at isa? port "IO_KBD" tty irq 1 vector scintr options MAXCONS=16 # number of virtual consoles options SLOW_VGA # do byte-wide i/o's to TS and GDC regs device npx0 at isa? port "IO_NPX" iosiz 0x0 flags 0x0 irq 13 vector npxintr controller fdc0 at isa? port "IO_FD1" bio irq 6 drq 2 vector fdintr options FDC_DEBUG options FDC_PRINT_BOGUS_CHIPTYPE disk fd0 at fdc0 drive 0 disk fd1 at fdc0 drive 1 tape ft0 at fdc0 drive 2 device lpt0 at isa? port? tty irq 7 vector lptintr device lpt1 at isa? port "IO_LPT3" disable tty irq 5 vector lptintr device sio0 at isa? port "IO_COM1" tty irq 4 vector siointr device sio1 at isa? port "IO_COM2" tty irq 3 vector siointr device sio2 at isa? port "IO_COM3" tty irq 2 vector siointr device sio3 at isa? port "IO_COM4" disable tty irq 8 vector siointr #DDB, if available. device ed0 at isa? port 0x240 net irq 10 iomem 0xd2000 vector edintr controller snd0 device sb0 at isa? port 0x220 irq 5 drq 1 vector sbintr device sbxvi0 at isa? drq 5 device sbmidi0 at isa? port 0x330 device opl0 at isa? port 0x388 device pca0 at isa? port IO_TIMER1 tty device joy0 at isa? port "IO_GAME" options AHC_TAGENABLE options AHC_ALLOW_MEMIO controller pci0 controller ahc0 controller ncr0 options "CLK_USE_I8254_CALIBRATION" options "CLK_USE_I586_CALIBRATION" options COMPAT_LINUX options DEBUG options "IBCS2" options "SCSI_2_DEF" options SCSI_DELAY=16 # (was 8) Be pessimistic about Joe SCSI device options SCSI_NCR_DEBUG options SCSI_NCR_DFLT_TAGS=4 options SCSI_NCR_MAX_SYNC=10000 options SCSI_NCR_MAX_WIDE=1 options SCSI_NCR_MYADDR=7 >Description: make world fails after roughly an hour or so (I can send the whole log file, but I preferred to cut it down a little since this is quite large already): petra:/usr/src# make world 2>&1 | tee ~/makeworld.log ; date >> ~/makeworld.log -------------------------------------------------------------- make world started on Thu Jun 18 20:54:26 CEST 1998 -------------------------------------------------------------- cd /usr/src && make buildworld -------------------------------------------------------------- Cleaning up the temporary build tree -------------------------------------------------------------- ( *** a LOT of output *** ) cc -fpic -DPIC -DLIBC_RCS -DSYSLIBC_RCS -D__DBINTERFACE_PRIVATE -DPOSIX_MISTAKE -I/usr/src/lib/libc/../libc/locale -DYP -I/usr/obj/usr/src/tmp/usr/include -I/usr/src/lib/libc/i386 -c /usr/src/lib/libc/../libc/i386/gen/fabs.S -o fabs.so fatal process exception: page fault, fault VA = 0x8179fee cc: Internal compiler error: program as got fatal signal 11 *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. Thu 18 Jun 21:30:02 CEST 1998 However, the computer runs for days with little load and also prints rather large documents (pix, faxes, ps files) running Net's Crap under X the same time with no obvious problem. So I *think* it's not a memory problem, although under the second kernel, the error is slightly different suggesting a complaint to the g++ or gcc developers group. But I suspect that it not really might be a problem of make world or gcc but a symptom for something else. I do experience some very unspecific errors with the second, newer kernel, that I hoped to be fixed with a source update, but now it seems to have broken my world 8-S. There were sudden deaths of X (with sig 6) and also deadlocks (freezeing) of the whole machine, but I can't tell for now since I have no evidence (other than the frozen computer). I also tried to build a kernel for another machine (486) to see whether the frozen box still responds to the ethernet, but I had no success so far, either. That was in order to see if there's a relation to prs 6873 and 6914. >How-To-Repeat: Make the world. >Fix: I, unfortunately, have no idea. >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 Jun 19 03:47:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA12891 for freebsd-bugs-outgoing; Fri, 19 Jun 1998 03:47:19 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from inr-delphi.fzk.de (inr-delphi.fzk.de [141.52.12.230]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA12880; Fri, 19 Jun 1998 03:47:13 -0700 (PDT) (envelope-from pc@inr-delphi.fzk.de) Received: (from pc@localhost) by inr-delphi.fzk.de (8.8.8/8.8.7) id MAA17247; Fri, 19 Jun 1998 12:47:15 +0200 (CEST) (envelope-from pc) Message-ID: <19980619124714.28974@inr.fzk.de> Date: Fri, 19 Jun 1998 12:47:14 +0200 From: Peter Cornelius To: FreeBSD-gnats-submit@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/6991: Kernel build: don't know how to make ../../cfs/cfs_namecache.c Reply-To: Peter Cornelius References: <199806191040.MAA15386@inr-delphi.fzk.de> <199806191040.DAA19072@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.88 In-Reply-To: <199806191040.DAA19072@freefall.freebsd.org>; from FreeBSD-gnats-submit@FreeBSD.ORG on Fri, Jun 19, 1998 at 03:40:02AM -0700 X-Useless-Header: Wat mutt, dat mutt! Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Please also have a look at my prs kern/6991, misc/6992, ports/6993. They might be related. Thanks for your attention, Peter. --- Peter Cornelius To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 19 03:51:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA14069 for freebsd-bugs-outgoing; Fri, 19 Jun 1998 03:51:33 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA14035 for ; Fri, 19 Jun 1998 03:51:18 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA19138; Fri, 19 Jun 1998 03:50:01 -0700 (PDT) Date: Fri, 19 Jun 1998 03:50:01 -0700 (PDT) Message-Id: <199806191050.DAA19138@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Peter Cornelius Subject: Re: misc/6992: 'cc: Internal compiler error: program as got fatal signal 11' when making world Reply-To: Peter Cornelius Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/6992; it has been noted by GNATS. From: Peter Cornelius To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: Re: misc/6992: 'cc: Internal compiler error: program as got fatal signal 11' when making world Date: Fri, 19 Jun 1998 12:48:29 +0200 Please also have a look at my prs kern/6991, misc/6992, ports/6993. They might be related. Thanks for your attention, Peter. --- Peter Cornelius To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 19 03:51:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA14087 for freebsd-bugs-outgoing; Fri, 19 Jun 1998 03:51:38 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA14033 for ; Fri, 19 Jun 1998 03:51:17 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA19130; Fri, 19 Jun 1998 03:50:01 -0700 (PDT) Date: Fri, 19 Jun 1998 03:50:01 -0700 (PDT) Message-Id: <199806191050.DAA19130@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Peter Cornelius Subject: Re: kern/6991: Kernel build: don't know how to make ../../cfs/cfs_namecache.c Reply-To: Peter Cornelius Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/6991; it has been noted by GNATS. From: Peter Cornelius To: FreeBSD-gnats-submit@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Cc: Subject: Re: kern/6991: Kernel build: don't know how to make ../../cfs/cfs_namecache.c Date: Fri, 19 Jun 1998 12:47:14 +0200 Please also have a look at my prs kern/6991, misc/6992, ports/6993. They might be related. Thanks for your attention, Peter. --- Peter Cornelius To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 19 04:41:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA22241 for freebsd-bugs-outgoing; Fri, 19 Jun 1998 04:41:40 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA22194 for ; Fri, 19 Jun 1998 04:41:19 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA19259; Fri, 19 Jun 1998 04:40:02 -0700 (PDT) Received: from mail.euroweb.hu (mail.euroweb.hu [193.226.220.4]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA21532 for ; Fri, 19 Jun 1998 04:36:55 -0700 (PDT) (envelope-from hu006co@mail.euroweb.hu) Received: (from hu006co@localhost) by mail.euroweb.hu (8.8.5/8.8.5) id NAA24753 for freebsd.org!FreeBSD-gnats-submit; Fri, 19 Jun 1998 13:34:12 +0200 (MET DST) Received: (from zgabor@localhost) by CoDe.hu (8.8.8/8.8.8) id LAA00678; Fri, 19 Jun 1998 11:14:36 +0200 (CEST) (envelope-from zgabor) Message-Id: <199806190914.LAA00678@CoDe.hu> Date: Fri, 19 Jun 1998 11:14:36 +0200 (CEST) From: zgabor@zg.CoDe.hu Reply-To: zgabor@zg.CoDe.hu To: freebsd.org!FreeBSD-gnats-submit@zg.CoDe.hu X-Send-Pr-Version: 3.2 Subject: bin/6994: netstat -s + IPX/Appletalk Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6994 >Category: bin >Synopsis: The netstat(1) -s generates wrong output with IPX and Appletalk >Confidential: yes >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jun 19 04:40:01 PDT 1998 >Last-Modified: >Originator: Zahemszky Gabor >Organization: CoDe Ltd. >Release: FreeBSD 2.2.6-RELEASE i386 >Environment: A 2.2.6 with in-kernel IPX and ATALK >Description: The netstat(1) manual says: -s: Show per-protocol statistics. If this option is repeated, counters with a value of zero are supressed. But the ipx/atalk version is buggy: $ netstat -s -s .... ipx: generate the whole output, doesn't matter the 0 values spx: generate the whole output, doesn't matter the 0 values .... $ netstat -s .... ddp: doesn't generate statistics with zero values (as it need netstat -s -s) .... >How-To-Repeat: Generate a kernel with option IPX and option ATALK, and type: netstat -s -s, and netstat -s >Fix: In ipx.c and atalk.c, change the definitionS(!) of the ANY macro from: /* atalk.c: */ #define ANY(x,y,z) \ ((x) ? printf("\t%d %s%s%s\n",x,y,plural(x),z) : 0) /* ipx.c: */ #define ANY(x,y,z) (printf("\t%u %s%s%s\n",x,y,plural(x),z)) to the next: #define ANY(x,y,z) \ if ( (x) || ( sflag <= 1 ) ) printf("\t%u %s%s%s\n",x,y,plural(x),z) By the way, in inet.c, the statistic-printing routines use the corresponding p, p2, and the absolutely unnecessary p3 (it isn't used in inet.c) macro, and in the format string, there is: %ld. In ipx.c, the ANY macro uses %u, and in atalk.c, %d. I don't know the current implementation, but %u (maybe %lu) looks better to me. And maybe it would be better, to use the same printing macros (defined in only one place, eg. netstat.h) in all of the supported protocols statistic-printing routines. >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 Jun 19 04:41:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA22243 for freebsd-bugs-outgoing; Fri, 19 Jun 1998 04:41:40 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA22203 for ; Fri, 19 Jun 1998 04:41:25 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA19268; Fri, 19 Jun 1998 04:40:03 -0700 (PDT) Received: from sliphost37.uni-trier.de (root@sliphost37.uni-trier.de [136.199.240.37]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA21571 for ; Fri, 19 Jun 1998 04:37:42 -0700 (PDT) (envelope-from blank@sliphost37.uni-trier.de) Received: (from blank@localhost) by sliphost37.uni-trier.de (8.8.8/8.8.8) id KAA01446; Fri, 19 Jun 1998 10:12:56 +0200 (CEST) (envelope-from blank) Message-Id: <199806190812.KAA01446@sliphost37.uni-trier.de> Date: Fri, 19 Jun 1998 10:12:56 +0200 (CEST) From: blank@fox.uni-trier.de (Sascha Blank) Reply-To: blank@fox.uni-trier.de (Sascha Blank) To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: bin/6995: Minor flaw in fdformat Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6995 >Category: bin >Synopsis: Minor flaw in fdformat >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jun 19 04:40:03 PDT 1998 >Last-Modified: >Originator: Sascha Blank >Organization: >Release: FreeBSD 2.2.6-STABLE i386 >Environment: A very recent FreeBSD 2.2-STABLE system. As the file /usr/src/usr.sbin/fdformat/fdformat.c has no RCS identifier, I use the file size and md5 sum instead. % ls -l /usr/src/usr.sbin/fdformat/fdformat.c -rw-r--r-- 1 blank blank 8709 17 Jun 10:26 fdformat.c % md5 /usr/src/usr.sbin/fdformat/fdformat.c MD5 (fdformat.c) = 8046542311740db36fad2401e6a76bcc >Description: fdformat prints a line of hyphens that it turns into status characters one by one to show how far the formatting process has already proceeded. It always prints exactly 40 hyphens assuming that the disk to be formatted will have 80 tracks. But this assumption is wrong if you format a disk using a higher capacity like 1720k (which goes by 82 tracks). In this case 41 status characters will be printed over the 40 hyphens printed at the beginning. >How-To-Repeat: Format a disk using the 1720k option of fdformat and watch the output, when the last tracks are formatted. >Fix: The calculation how many status characters are needed is already correct, so we use the same algorithm to calculate how many hyphens should be printed at the beginning. This flaw is likely to be present in 3.0-CURRENT as well. *** fdformat.c.ctm Wed Jun 17 10:26:24 1998 --- fdformat.c Wed Jun 17 10:30:10 1998 *************** *** 299,306 **** * Formatting. */ if(!quiet) { - printf("Processing ----------------------------------------\r"); printf("Processing "); fflush(stdout); } --- 299,311 ---- * Formatting. */ if(!quiet) { printf("Processing "); + for (track = 0; track < fdt.tracks * fdt.heads; track++) { + if (!((track + 1) % tracks_per_dot)) { + putchar('-'); + } + } + printf("\rProcessing "); fflush(stdout); } >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 Jun 19 05:51:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA03889 for freebsd-bugs-outgoing; Fri, 19 Jun 1998 05:51:23 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from ns0.fast.net.uk (ns0.fast.net.uk [194.207.104.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA03851; Fri, 19 Jun 1998 05:51:09 -0700 (PDT) (envelope-from andy@tridentgroup.co.uk) Received: from ntserver2.tridentgroup.co.uk (ntserver2.fast.net.uk [194.207.120.115] (may be forged)) by ns0.fast.net.uk (8.8.8/8.8.7) with ESMTP id NAA20889; Fri, 19 Jun 1998 13:49:47 +0100 (BST) Received: by NTSERVER2 with Internet Mail Service (5.0.1457.3) id ; Fri, 19 Jun 1998 13:46:41 +0100 Message-ID: <41AF9163AA46D0118D7F004095245CC707DE4F@NTSERVER2> From: Andrew Aitchison To: "'questions@freebsd.org'" Cc: "'freebsd-bugs@freebsd.org'" Subject: Millennium compliance Date: Fri, 19 Jun 1998 13:46:39 +0100 X-Priority: 3 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.0.1457.3) Content-Type: text/plain Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi I have a couple of questions regarding Millennium compliance: Firstly, does FreeBSD interrogate the RTC chip directly for the time/date information or the system BIOS instead? This is important because virtually all machines currently shipped, even those with Millennium compliance statements or stickers still fail one important aspect of the date change. This aspect is the live rollover. I have tested many systems, including virtually every large manufacturer's PC and they all fail to change the century byte on the RTC chip until the machine is power cycled. In most cases the BIOS infers 00 as 2000 and so reports correct rollover, however the century byte still does not get updated until a power cycle has happened. Some manufacturers get over this by supplying a TSR fix that intercepts RTC calls and supplies the correct date however these fixes will not work with operating systems such as FreeBSD, Windows NT and so on, they only work with Windows 95, 98, 3.11 and DOS. Although we are not related to Computer Experts, their site www.computerexperts.co.uk has the tester freely downloadable and this will demonstrate the problem even with so called millennium compliant computers. The second question I have is what will happen to FreeBSD if the computer BIOS is not millennium compliant when the century changes? Thanks for taking the time to read this, and I hope you can help. I have spent quite some time trying to understand the whole millennium compliance issue and as we run a non-stop Internet service it is of quite some concern to me. Andy Aitchison. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 19 06:01:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA07047 for freebsd-bugs-outgoing; Fri, 19 Jun 1998 06:01:46 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA06975 for ; Fri, 19 Jun 1998 06:01:19 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA19489; Fri, 19 Jun 1998 06:00:02 -0700 (PDT) Received: from news.IAEhv.nl (root@news.IAEhv.nl [194.151.64.4]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA03931 for ; Fri, 19 Jun 1998 05:51:31 -0700 (PDT) (envelope-from hans@news.IAEhv.nl) Received: from LOCAL (uucp@localhost) by news.IAEhv.nl (8.8.8/1.63) with IAEhv.nl; pid 3125 on Fri, 19 Jun 1998 12:51:26 GMT; id MAA03125 efrom: hans; eto: FreeBSD-gnats-submit@freebsd.org Received: by truk.brandinnovators.com (8.8.7/BI96070101) for id OAA01614; Fri, 19 Jun 1998 14:35:16 +0200 (CEST) Message-Id: <199806191235.OAA01614@truk.brandinnovators.com> Date: Fri, 19 Jun 1998 14:35:16 +0200 (CEST) From: hans@brandinnovators.com Reply-To: hans@brandinnovators.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: i386/6996: Occasional complete lockup of 2.2.5R Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6996 >Category: i386 >Synopsis: Occasional complete lockup of 2.2.5R >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: support >Submitter-Id: current-users >Arrival-Date: Fri Jun 19 06:00:02 PDT 1998 >Last-Modified: >Originator: Hans Zuidam >Organization: Brand Innovators B.V. >Release: FreeBSD 2.2.5-RELEASE i386 >Environment: FreeBSD truk.brandinnovators.com 2.2.5-RELEASE FreeBSD 2.2.5-RELEASE #0: Thu Jun 18 14:19:41 CEST 1998 root@truk.brandinnovators.com:/usr/src/sys.orig/compile/TRUK.bdm i386 Copyright (c) 1992-1997 FreeBSD Inc. Copyright (c) 1982, 1986, 1989, 1991, 1993 The Regents of the University of California. All rights reserved. FreeBSD 2.2.5-RELEASE #0: Thu Jun 18 14:19:41 CEST 1998 root@truk.brandinnovators.com:/usr/src/sys.orig/compile/TRUK.bdm CPU: Pentium Pro (179.63-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x617 Stepping=7 Features=0xf9ff,MTRR,PGE,MCA,CMOV> real memory = 67108864 (65536K bytes) avail memory = 62332928 (60872K bytes) Probing for devices on PCI bus 0: chip0 rev 2 on pci0:0 chip1 rev 1 on pci0:7:0 chip2 rev 0 on pci0:7:1 ahc0 rev 0 int a irq 11 on pci0:11 ahc0: aic7870 Wide Channel, SCSI Id=7, 16 SCBs ahc0 waiting for scsi devices to settle (ahc0:0:0): "QUANTUM XP34550W LXQ1" type 0 fixed SCSI 2 sd0(ahc0:0:0): Direct-Access 4341MB (8890760 512 byte sectors) (ahc0:2:0): "WangDAT Model 3100 03.0" type 1 removable SCSI 2 st0(ahc0:2:0): Sequential-Access density code 0x13, drive empty ahc0:A:3: refuses WIDE negotiation. Using 8bit transfers (ahc0:3:0): "TOSHIBA CD-ROM XM-3501TA 3384" type 5 removable SCSI 2 cd0(ahc0:3:0): CD-ROM cd present [1246808 x 512 byte records] vga0 rev 0 on pci0:15 ed2 rev 0 int a irq 9 on pci0:19 ed2: address 48:54:e8:2a:46:ce, type NE2000 (16 bit) Probing for devices on the ISA bus: sc0 at 0x60-0x6f irq 1 on motherboard sc0: VGA color <16 virtual consoles, flags=0x0> ed0 at 0x300-0x31f irq 5 on isa ed0: address 00:40:95:50:28:b5, type NE2000 (16 bit) sio0 at 0x3f8-0x3ff irq 4 on isa sio0: type 16550A sio1 at 0x2f8-0x2ff irq 3 on isa sio1: type 16550A bdm0 at 0x378-0x37f on isa psm0 at 0x60-0x64 irq 12 on motherboard psm0: device ID 0 pca0 on motherboard pca0: PC speaker audio driver fdc0 at 0x3f0-0x3f7 irq 6 drq 2 on isa fdc0: FIFO enabled, 8 bytes threshold fd0: 1.44MB 3.5in npx0 on motherboard npx0: INT 16 interface joy0 at 0x201 on isa joy0: joystick IP packet filtering initialized, divert enabled, logging limited to 100 packets/entry WARNING: / was not properly dismounted. >Description: Since replacing an NE2000 ISA clone by an NE2000 PCI (Legato, with a Winbond chip) clone the system locks up when using X. The mouse freezes and it is not possible to switch to another virtual terminal, nor is it possible to telnet to the machine or to enter the kernel debugger. As far as I can tell there are no interrupt or I/O conflicts. In the configuration file I have: #-- Machine machine "i386" cpu "I386_CPU" cpu "I486_CPU" cpu "I586_CPU" cpu "I686_CPU" ident TRUK #-- Maxima maxusers 16 options "CHILD_MAX=128" options "OPEN_MAX=128" #-- Options options USERCONFIG options VISUAL_USERCONFIG options BOUNCE_BUFFERS options "AUTO_EOI_1" options "AUTO_EOI_2" options INCLUDE_CONFIG_FILE options PERFMON #-- Debugging options KTRACE options DDB options DDB_UNATTENDED #-- Compatibility options "COMPAT_43" options COMPAT_LINUX options USER_LDT #-- SysV options SYSVSHM options SYSVSEM options SYSVMSG #-- Networking options INET options TCPDEBUG options IPFIREWALL options IPFIREWALL_VERBOSE options "IPFIREWALL_VERBOSE_LIMIT=100" options IPDIVERT #-- Filesystems options FFS options NFS options MSDOSFS options "CD9660" options PROCFS #-- Kernel config kernel root on sd0 dumps on sd0 #-- Bus: PCI controller pci0 controller ahc0 controller scbus0 options "SCSI_DELAY=8" device sd0 device sd1 device st0 device cd0 device ed1 #-- Bus: ISA controller isa0 controller fdc0 at isa? port "IO_FD1" bio irq 6 drq 2 vector fdintr disk fd0 at fdc0 drive 0 device sc0 at isa? port "IO_KBD" tty irq 1 vector scintr options "UCONSOLE" options "XSERVER" device npx0 at isa? port "IO_NPX" iosiz 0x0 flags 0x0 irq 13 vector npxintr device sio0 at isa? port "IO_COM1" tty irq 4 vector siointr device sio1 at isa? port "IO_COM2" tty irq 3 vector siointr device bdm0 at isa? port "IO_LPT1" tty device joy0 at isa? port "IO_GAME" device psm0 at isa? port "IO_KBD" conflicts tty irq 12 vector psmintr device ed0 at isa? port 0x300 net irq 5 vector edintr device pca0 at isa? port IO_TIMER1 tty #-- Pseudo pseudo-device log pseudo-device loop pseudo-device ether pseudo-device sl 4 pseudo-device ppp 4 pseudo-device tun 4 pseudo-device bpfilter 4 pseudo-device pty 32 pseudo-device snp 4 pseudo-device vn pseudo-device speaker pseudo-device gzip >How-To-Repeat: No idea. >Fix: No idea either. >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 Jun 19 06:01:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA07061 for freebsd-bugs-outgoing; Fri, 19 Jun 1998 06:01:51 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA06984 for ; Fri, 19 Jun 1998 06:01:21 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA19500; Fri, 19 Jun 1998 06:00:03 -0700 (PDT) Date: Fri, 19 Jun 1998 06:00:03 -0700 (PDT) Message-Id: <199806191300.GAA19500@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Christoph Kukulies Subject: Re: misc/6992: 'cc: Internal compiler error: program as got fatal signal 11' when making world Reply-To: Christoph Kukulies Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/6992; it has been noted by GNATS. From: Christoph Kukulies To: Peter Cornelius Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: misc/6992: 'cc: Internal compiler error: program as got fatal signal 11' when making world Date: Fri, 19 Jun 1998 14:54:55 +0200 On Fri, Jun 19, 1998 at 12:40:16PM +0200, Peter Cornelius wrote: > > >Number: 6992 > >Category: misc > >Synopsis: 'cc: Internal compiler error: program as got fatal signal 11' when making 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 Jun 19 03:40:02 PDT 1998 > >Last-Modified: > >Originator: Peter Cornelius > >Organization: > Arbeitskreis Kultur und Kommunikation, Universitaet Karlsruhe > >Release: FreeBSD 2.2.6-STABLE i386 (RELENG_2_2) > >Environment: > > This is going to be large. Please excuse. > > Main board is an Iwill (http://www.iwill.com.tw/) P54TS w/ P133, AIC7850 > and 96 MB RAM. > > petra:~# uname -a > uname.kernel.980408 > FreeBSD petra.cornelius.org 2.2.5-RELEASE FreeBSD 2.2.5-RELEASE #0: Sun Mar 29 2 > 3:56:20 CEST 1998 root@petra.cornelius.org:/usr/src/sys/compile/PETRA i386 > > but also with 2.2.6-STABLE kernel. I am up to date with RELENG_2_2 src until > last night (June 18th, 18.30 UTC) and have the last world made roughly > a fortnight ago. [...] > petra:/usr/src# make world 2>&1 | tee ~/makeworld.log ; date >> ~/makeworld.log > -------------------------------------------------------------- > make world started on Thu Jun 18 20:54:26 CEST 1998 > -------------------------------------------------------------- > cd /usr/src && make buildworld > > -------------------------------------------------------------- > Cleaning up the temporary build tree > -------------------------------------------------------------- > > ( *** a LOT of output *** ) > > cc -fpic -DPIC -DLIBC_RCS -DSYSLIBC_RCS -D__DBINTERFACE_PRIVATE -DPOSIX_MISTAKE -I/usr/src/lib/libc/../libc/locale -DYP -I/usr/obj/usr/src/tmp/usr/include -I/usr/src/lib/libc/i386 -c /usr/src/lib/libc/../libc/i386/gen/fabs.S -o fabs.so > fatal process exception: page fault, fault VA = 0x8179fee > cc: Internal compiler error: program as got fatal signal 11 > *** Error code 1 > > Stop. > *** Error code 1 > > Stop. > *** Error code 1 > > Stop. > *** Error code 1 > > Stop. > Thu 18 Jun 21:30:02 CEST 1998 > > However, the computer runs for days with little load and also prints rather > large documents (pix, faxes, ps files) running Net's Crap under X the same > time with no obvious problem. So I *think* it's not a memory problem, > although under the second kernel, the error is slightly different suggesting > a complaint to the g++ or gcc developers group. But I suspect that it > not really might be a problem of make world or gcc but a symptom for > something else. > > I do experience some very unspecific errors with the second, newer kernel, > that I hoped to be fixed with a source update, but now it seems > to have broken my world 8-S. There were sudden deaths of X (with sig 6) > and also deadlocks (freezeing) of the whole machine, but I can't tell for > now since I have no evidence (other than the frozen computer). I also > tried to build a kernel for another machine (486) to see whether the frozen > box still responds to the ethernet, but I had no success so far, either. > That was in order to see if there's a relation to prs 6873 and 6914. Just FYI - your problem may be different - I once had a hell of a time getting a system to get through a make world although it ran continously with light load for days w/o problems. It was a newly bought system and I brought it back to the local computer store where I bought it. I proved them that it was memory that was causing the world build process to fail. I connected a similar system to the disks and ran make world fine in a couple of hours. Then we connected the same disk(s) back to the faulty system and the problems where there again. The vendor finally swapped all (64MB that were) memory and it worked. It's hard to convince a computer dealer that hist hardware is faulty when he says "look here, NT runs just fine on it". make world is a hardware burn in process which hardware vendors should make to their duty :-) > > > >How-To-Repeat: > > Make the world. > > > >Fix: > I, unfortunately, have no idea. > > > >Audit-Trail: > >Unformatted: > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-bugs" in the body of the message -- Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 19 07:56:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA25686 for freebsd-bugs-outgoing; Fri, 19 Jun 1998 07:56:14 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA25258; Fri, 19 Jun 1998 07:54:19 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA17098; Fri, 19 Jun 1998 07:53:02 -0700 (PDT) Date: Fri, 19 Jun 1998 07:53:02 -0700 (PDT) Message-Id: <199806191453.HAA17098@freefall.freebsd.org> To: pc@inr.fzk.de, jkh@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: misc/6992 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: 'cc: Internal compiler error: program as got fatal signal 11' when making world State-Changed-From-To: open-closed State-Changed-By: jkh State-Changed-When: Fri Jun 19 16:52:09 MEST 1998 State-Changed-Why: This is indicative of a hardware failure, not an OS problem. Verify that your cache is good, your ram speed settings and voltages are correct, etc. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 19 07:57:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA25965 for freebsd-bugs-outgoing; Fri, 19 Jun 1998 07:57:32 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA25022; Fri, 19 Jun 1998 07:53:19 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA17033; Fri, 19 Jun 1998 07:52:02 -0700 (PDT) Date: Fri, 19 Jun 1998 07:52:02 -0700 (PDT) Message-Id: <199806191452.HAA17033@freefall.freebsd.org> To: pc@inr.fzk.de, jkh@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/6991 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Kernel build: don't know how to make ../../cfs/cfs_namecache.c State-Changed-From-To: open-closed State-Changed-By: jkh State-Changed-When: Fri Jun 19 16:51:10 MEST 1998 State-Changed-Why: Remove vcfs - it is not a standard component and requires manual installation of CODA. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 19 08:03:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA27406 for freebsd-bugs-outgoing; Fri, 19 Jun 1998 08:03:51 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA27293; Fri, 19 Jun 1998 08:03:16 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA17286; Fri, 19 Jun 1998 08:01:59 -0700 (PDT) Date: Fri, 19 Jun 1998 08:01:59 -0700 (PDT) Message-Id: <199806191501.IAA17286@freefall.freebsd.org> To: toasty@dragondata.com, jkh@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/4917 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Bad parameters to ifconfig cause kernel panic State-Changed-From-To: open-closed State-Changed-By: jkh State-Changed-When: Fri Jun 19 17:01:40 MEST 1998 State-Changed-Why: originator indicates that it can now be closed To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 19 08:16:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA00390 for freebsd-bugs-outgoing; Fri, 19 Jun 1998 08:16:36 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA00238; Fri, 19 Jun 1998 08:16:08 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA17530; Fri, 19 Jun 1998 08:14:50 -0700 (PDT) Date: Fri, 19 Jun 1998 08:14:50 -0700 (PDT) Message-Id: <199806191514.IAA17530@freefall.freebsd.org> To: iansmith@viaccess.net, jkh@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: i386/6990 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: I can't start X Windows State-Changed-From-To: open-closed State-Changed-By: jkh State-Changed-When: Fri Jun 19 17:14:03 MEST 1998 State-Changed-Why: This appears to be two bug reports, neither of which providesz sufficient info To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 19 09:12:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA11033 for freebsd-bugs-outgoing; Fri, 19 Jun 1998 09:12:19 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA10917 for ; Fri, 19 Jun 1998 09:11:25 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA17761; Fri, 19 Jun 1998 09:10:01 -0700 (PDT) Received: from ve7tcp.ampr.org (ve7tcp.ampr.org [198.161.92.132]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA09627 for ; Fri, 19 Jun 1998 09:04:04 -0700 (PDT) (envelope-from lyndon@ve7tcp.ampr.org) Received: (from lyndon@localhost) by ve7tcp.ampr.org (8.9.0/8.9.0) id KAA27837; Fri, 19 Jun 1998 10:03:58 -0600 (MDT) Message-Id: <199806191603.KAA27837@ve7tcp.ampr.org> Date: Fri, 19 Jun 1998 10:03:58 -0600 (MDT) From: Lyndon Nerenberg Reply-To: lyndon@ve7tcp.ampr.org To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: bin/6997: vnconfig "open" error message confusing Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6997 >Category: bin >Synopsis: vnconfig "open" error message confusing >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Jun 19 09:10:01 PDT 1998 >Last-Modified: >Originator: Lyndon Nerenberg >Organization: >Release: FreeBSD 3.0-CURRENT i386 >Environment: >Description: If vnconfig can't open the device file, the error isn't too helpful. It doesn't tall you which file the open failed on. >How-To-Repeat: vnconfig -e /dev/vn0c /u1/SWAP swap where /dev/vn0c doesn't exist. >Fix: The following patch replaces "open" with the failed pathname in the call to warn(). *** vnconfig.c.ORIG Fri Jun 19 09:56:40 1998 --- vnconfig.c Fri Jun 19 09:57:26 1998 *************** *** 226,232 **** rdev = rawdevice(dev); f = fopen(rdev, "rw"); if (f == NULL) { ! warn("open"); return(1); } vnio.vn_file = file; --- 226,232 ---- rdev = rawdevice(dev); f = fopen(rdev, "rw"); if (f == NULL) { ! warn(dev); return(1); } vnio.vn_file = file; >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 Jun 19 10:27:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA26247 for freebsd-bugs-outgoing; Fri, 19 Jun 1998 10:27:50 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.15.68.22]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA26080; Fri, 19 Jun 1998 10:27:07 -0700 (PDT) (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id DAA29339; Sat, 20 Jun 1998 03:26:57 +1000 Date: Sat, 20 Jun 1998 03:26:57 +1000 From: Bruce Evans Message-Id: <199806191726.DAA29339@godzilla.zeta.org.au> To: andy@tridentgroup.co.uk, questions@FreeBSD.ORG Subject: Re: Millennium compliance Cc: freebsd-bugs@FreeBSD.ORG Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >I have a couple of questions regarding Millennium compliance: > >Firstly, does FreeBSD interrogate the RTC chip directly for the >time/date information or the system BIOS instead? This is important It reads the RTC, ignores the century register, and converts year 00 to 2000. Except when configured with the non-default option USE_RTC_CENTURY, it believes the century register and converts (year 00, century 19) to year 1900. >The second question I have is what will happen to FreeBSD if the >computer BIOS is not millennium compliant when the century changes? FreeBSD doesn't change the century register unless it is configured with option USE_RTC_CENTURY, so the century register won't change while FreeBSD is running unless the hardware changes it. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 19 17:51:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA11991 for freebsd-bugs-outgoing; Fri, 19 Jun 1998 17:51:24 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA11975 for ; Fri, 19 Jun 1998 17:51:22 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA19689; Fri, 19 Jun 1998 17:50:02 -0700 (PDT) Received: from plus8.com (www.plus8.com [209.216.137.66]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA11114 for ; Fri, 19 Jun 1998 17:46:04 -0700 (PDT) (envelope-from mcdade@plus8.com) Received: (from mcdade@localhost) by plus8.com (8.8.7/8.7.3) id UAA12319; Fri, 19 Jun 1998 20:41:25 -0400 (EDT) Message-Id: <199806200041.UAA12319@plus8.com> Date: Fri, 19 Jun 1998 20:41:25 -0400 (EDT) From: Bryan McDade Reply-To: mcdade@plus8.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: i386/7003: Problem with 3com ethernet 3c509a adaptor Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7003 >Category: i386 >Synopsis: Problem with 3com ethernet 3c509a adaptor >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jun 19 17:50:01 PDT 1998 >Last-Modified: >Originator: Bryan McDade >Organization: >Release: FreeBSD 2.2.5-RELEASE i386 >Environment: >Description: When using the 3com etherlink III rev.A card there is problems with the drive and it is not detected properly. The card was found as device ie1 interface and did not function properly. >How-To-Repeat: Install card to unit. Card does work fine in win95 box. >Fix: Install the same card but the REV. B version. There is markings on the 3com card wiether it is a 3c509 or a 3c509b. Notice in documentation should but changed to assure users don't try and use the rev. a version. >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 Jun 20 15:42:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA19669 for freebsd-bugs-outgoing; Sat, 20 Jun 1998 15:42:41 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA19533; Sat, 20 Jun 1998 15:41:55 -0700 (PDT) (envelope-from dt@FreeBSD.org) From: Dmitrij Tejblum Received: (from dt@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA23809; Sat, 20 Jun 1998 15:40:28 -0700 (PDT) Date: Sat, 20 Jun 1998 15:40:28 -0700 (PDT) Message-Id: <199806202240.PAA23809@freefall.freebsd.org> To: ahd@kew.com, dt@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/6116 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: In system with wd0, wd2, kernel cannot find root on wd2 State-Changed-From-To: open-closed State-Changed-By: dt State-Changed-When: Sun Jun 21 00:37:46 MEST 1998 State-Changed-Why: You have to boot -current with 1:wd(2,a)kernel. You may put this string into /boot.config. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message