From owner-freebsd-bugs Sun Dec 29 01:50:05 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id BAA21673 for bugs-outgoing; Sun, 29 Dec 1996 01:50:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id BAA21667; Sun, 29 Dec 1996 01:50:03 -0800 (PST) Resent-Date: Sun, 29 Dec 1996 01:50:03 -0800 (PST) Resent-Message-Id: <199612290950.BAA21667@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, hhui@arcfour.com Received: from disperse.arcfour.com (disperse.arcfour.com [207.176.50.17]) by freefall.freebsd.org (8.8.4/8.8.4) with ESMTP id BAA21516 for ; Sun, 29 Dec 1996 01:41:15 -0800 (PST) Received: (from hhui@localhost) by disperse.arcfour.com (ArcFour-8.8.3) id EAA15097; ; Sun, 29 Dec 1996 04:41:33 -0500 (EST) Message-Id: <199612290941.EAA15097@disperse.arcfour.com> Date: Sun, 29 Dec 1996 04:41:33 -0500 (EST) From: Hui-Hui Hu Reply-To: hhui@arcfour.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/2315: tail segfaults on NFS permission denied Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2315 >Category: bin >Synopsis: tail segfaults on NFS permission denied >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Dec 29 01:50:02 PST 1996 >Last-Modified: >Originator: Hui-Hui Hu >Organization: Arc Four >Release: FreeBSD 2.2-ALPHA i386 >Environment: NFS client mounting partition with "nosuid" option >Description: on an NFS client mounting a partition with the nosuid option, tail(1), if run as root, segfaults with the following kernel log messages: Dec 28 10:41:38 watermark /kernel: vnode_pager_getpages: I/O read error Dec 28 10:41:38 watermark /kernel: vm_fault: pager input (probably hardware) error, PID 15308 failure Dec 28 10:41:38 watermark /kernel: pid 15308 (tail), uid 0: exited on signal 11 shouldn't it be more robust than this? >How-To-Repeat: client# mount -t nfs -o nosuid server:/foo /foo client# tail /foo/filename Segmentation fault >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-bugs Sun Dec 29 02:06:15 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id CAA22009 for bugs-outgoing; Sun, 29 Dec 1996 02:06:15 -0800 (PST) Received: from mexico.brainstorm.eu.org (root@mexico.brainstorm.fr [193.56.58.253]) by freefall.freebsd.org (8.8.4/8.8.4) with ESMTP id CAA22004 for ; Sun, 29 Dec 1996 02:06:09 -0800 (PST) Received: from brasil.brainstorm.eu.org (brasil.brainstorm.fr [193.56.58.33]) by mexico.brainstorm.eu.org (8.7.5/8.7.3) with ESMTP id LAA06254 for ; Sun, 29 Dec 1996 11:06:05 +0100 Received: (from uucp@localhost) by brasil.brainstorm.eu.org (8.6.12/8.6.12) with UUCP id LAA17853 for freebsd-bugs@freefall.freebsd.org; Sun, 29 Dec 1996 11:05:45 +0100 Received: (from roberto@localhost) by keltia.freenix.fr (8.8.4/keltia-uucp-2.9) id KAA01624; Sun, 29 Dec 1996 10:48:30 +0100 (CET) Message-ID: Date: Sun, 29 Dec 1996 10:48:30 +0100 From: roberto@keltia.freenix.fr (Ollivier Robert) To: freebsd-bugs@freefall.freebsd.org Subject: Re: bin/2307 References: <199612281822.KAA20072@freefall.freebsd.org> X-Mailer: Mutt 0.55.04 Mime-Version: 1.0 X-Operating-System: FreeBSD 3.0-CURRENT ctm#2837 In-Reply-To: <199612281822.KAA20072@freefall.freebsd.org>; from Jordan K. Hubbard on Dec 28, 1996 10:22:06 -0800 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk According to Jordan K. Hubbard: > Synopsis: Signals are ignored (esp. ^Q) and output is mangled > > Responsible-Changed-From-To: freebsd-bugs->jkh > Responsible-Changed-By: jkh > Responsible-Changed-When: Sat Dec 28 10:21:48 PST 1996 > Responsible-Changed-Why: > My bug - I probably broke it in the first place. :) Backing out the following patch is indeed the solution... Why did you change the mode anyway ? :-) revision 1.8.2.2 date: 1996/12/17 15:20:20; author: jkh; state: Exp; lines: +1 -1 Don't use CBREAK, use RAW. --- watch.c Sun Dec 29 10:44:37 1996 +++ /usr/src/usr.sbin/watch/watch.c Thu Dec 19 20:29:56 1996 @@ -96,7 +96,7 @@ ioctl(std_in, TIOCGETC, &tco); sgn = sgo; tc = tco; - sgn.sg_flags |= CBREAK; + sgn.sg_flags |= RAW; sgn.sg_flags &= ~ECHO; ospeed = sgo.sg_ospeed; tc.t_intrc = 17; /* ^Q */ -- Ollivier ROBERT -=- The daemon is FREE! -=- roberto@keltia.freenix.fr FreeBSD keltia.freenix.fr 3.0-CURRENT #33: Sat Dec 21 12:57:17 CET 1996 From owner-freebsd-bugs Sun Dec 29 04:40:03 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id EAA28998 for bugs-outgoing; Sun, 29 Dec 1996 04:40:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id EAA28992; Sun, 29 Dec 1996 04:40:01 -0800 (PST) Resent-Date: Sun, 29 Dec 1996 04:40:01 -0800 (PST) Resent-Message-Id: <199612291240.EAA28992@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, sanpei@yy.cs.keio.ac.jp Received: from chizuru.yy.cs.keio.ac.jp (chizuru.yy.cs.keio.ac.jp [131.113.47.2]) by freefall.freebsd.org (8.8.4/8.8.4) with SMTP id EAA28860 for ; Sun, 29 Dec 1996 04:35:31 -0800 (PST) Received: from lala.yy.cs.keio.ac.jp ([203.140.35.15]) by chizuru.yy.cs.keio.ac.jp (8.6.12+2.5W/3.1W-2.8compat) with ESMTP id VAA17377 for ; Sun, 29 Dec 1996 21:35:26 +0900 Received: (from sanpei@localhost) by lala.yy.cs.keio.ac.jp (8.8.4/3.5Wbeta) id VAA05672; Sun, 29 Dec 1996 21:35:18 +0900 (JST) Message-Id: <199612291235.VAA05672@lala.yy.cs.keio.ac.jp> Date: Sun, 29 Dec 1996 21:35:18 +0900 (JST) From: sanpei@yy.cs.keio.ac.jp Reply-To: sanpei@yy.cs.keio.ac.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: misc/2316: /stand/sysinstall doesn't create /home direcotry Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2316 >Category: misc >Synopsis: /stand/sysinstall doesn't create /home direcotry >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Dec 29 04:40:01 PST 1996 >Last-Modified: >Originator: MIHIRA Yoshiro >Organization: Keio Univ. Japan >Release: FreeBSD 2.2-BETA_A i386 >Environment: 2.2-BETA_A installation floppy and /stand/sysinstall MD5 (boot.flp) = 684b4d5be8e0721e67bcab47fec6fbe0 >Description: In 2.2-961014-SNAP or older, installation program(/stand/sysinstall), used */usr/sbin/adduser* command to add new user. (sorry I'm not tested 2.2-ALPHA) In 2.2-BETA, new code use to add new user. (Yes, at first time, I'm suprised!) If /home direcotry was not created at add new user phase, [old adduser program] 1. create /usr/home directory 2. symlink /home to /usr/home 3. create user home directory like /usr/home/sanpei :-) 4. copy skeleton dot files ( .cshrc etc.) BUT [New add-user program] 1. does not create /home or /usr/home directory. I think [old adduser program] style is better than new one. Please fix this problem. Thank you. >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-bugs Sun Dec 29 06:44:20 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id GAA01678 for bugs-outgoing; Sun, 29 Dec 1996 06:44:20 -0800 (PST) Received: (from jkh@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id GAA01654; Sun, 29 Dec 1996 06:44:02 -0800 (PST) Date: Sun, 29 Dec 1996 06:44:02 -0800 (PST) From: "Jordan K. Hubbard" Message-Id: <199612291444.GAA01654@freefall.freebsd.org> To: jkh, freebsd-bugs, joerg Subject: Re: misc/2316 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: /stand/sysinstall doesn't create /home direcotry Responsible-Changed-From-To: freebsd-bugs->joerg Responsible-Changed-By: jkh Responsible-Changed-When: Sun Dec 29 06:43:19 PST 1996 Responsible-Changed-Why: Heh heh, I think we'll give this one to Joerg since he wrote this code in sysinstall and "sponsored" pw. :-) From owner-freebsd-bugs Sun Dec 29 12:00:04 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id MAA09934 for bugs-outgoing; Sun, 29 Dec 1996 12:00:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id MAA09910; Sun, 29 Dec 1996 12:00:02 -0800 (PST) Resent-Date: Sun, 29 Dec 1996 12:00:02 -0800 (PST) Resent-Message-Id: <199612292000.MAA09910@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, vince@venus.GAIANET.NET Received: from venus.GAIANET.NET (vince@venus.GAIANET.NET [206.171.98.27]) by freefall.freebsd.org (8.8.4/8.8.4) with ESMTP id LAA09853 for ; Sun, 29 Dec 1996 11:59:05 -0800 (PST) Received: (from vince@localhost) by venus.GAIANET.NET (8.8.3/8.8.3) id MAA17397; Sun, 29 Dec 1996 12:03:07 -0800 (PST) Message-Id: <199612292003.MAA17397@venus.GAIANET.NET> Date: Sun, 29 Dec 1996 12:03:07 -0800 (PST) From: Vincent Poy Reply-To: vince@venus.GAIANET.NET To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/2318: /usr/libexec/rlogind doesn't work after tcp wrappers installed Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2318 >Category: bin >Synopsis: /usr/libexec/rlogind doesn't work after tcp wrappers installed >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Dec 29 12:00:01 PST 1996 >Last-Modified: >Originator: Vincent Poy >Organization: GaiaNet Corporation - Beverly Hills, California 90210 USA >Release: FreeBSD 2.1.6R/3.0-CURRENT i386 >Environment: Any machine running tcp wrappers port. >Description: /usr/libexec/rlogind doesn't work after tcp wrappers installed. >How-To-Repeat: In /etc/inetd.conf with tcp wrapper installed. login stream tcp nowait root /usr/local/libexec/tcpd /usr/libexec/rlogind trying rlogin will generate the following from mail.MCESTATE.COM to earth.GAIANET.NET: vince@mail [11:57am][~] >> rlogin earth.gaianet.net rlogin: warning, using standard rlogin: Dec 29 11:57:33 earth rlogind[5528]: Can't get peer name of remote host: Socket is not connected Dec 29 11:57:33 earth rlogind[5528]: Can't get peer name of remote host: Socket is not connected remote host doesn't support Kerberos. >Fix: No idea. >Audit-Trail: >Unformatted: From owner-freebsd-bugs Sun Dec 29 14:50:04 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id OAA15698 for bugs-outgoing; Sun, 29 Dec 1996 14:50:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id OAA15687; Sun, 29 Dec 1996 14:50:02 -0800 (PST) Resent-Date: Sun, 29 Dec 1996 14:50:02 -0800 (PST) Resent-Message-Id: <199612292250.OAA15687@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, jmrueda@diatel.upm.es Received: from vec.ccupm.upm.es (vec.ccupm.upm.es [138.100.1.2]) by freefall.freebsd.org (8.8.4/8.8.4) with SMTP id OAA15335 for ; Sun, 29 Dec 1996 14:42:50 -0800 (PST) Received: from ozono.asin.es by vec.ccupm.upm.es (IBM VM SMTP V2R3) with TCP; Sun, 29 Dec 96 23:42:21 INV Received: (from javier@localhost) by ozono.asin.es (8.8.2/8.8.2) id XAA01090; Sun, 29 Dec 1996 23:41:31 +0100 (MET) Message-Id: <199612292241.XAA01090@ozono.asin.es> Date: Sun, 29 Dec 1996 23:41:31 +0100 (MET) From: jmrueda@diatel.upm.es Reply-To: jmrueda@diatel.upm.es To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/2319: Using Genius GS-4500 scanner causes page fault panic Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2319 >Category: kern >Synopsis: Using Genius GS-4500 scanner causes page fault panic >Confidential: yes >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Dec 29 14:50:01 PST 1996 >Last-Modified: >Originator: Javier Martmn Rueda >Organization: >Release: FreeBSD 2.2-ALPHA i386 >Environment: >Description: Apparently, someone changed the gsc driver to allocate one big buffer at device attach time, instead of allocating and freeing buffers as necessary. But he or she forgot to remove the line that invalidated the buffer when the device is closed. Therefore, after using the device for the first time, the buffer was incorrectly invalidated and that caused a page fault on the second, and subsequent uses. >How-To-Repeat: sgsc -r 400 -h 800 cat < /dev/gsc0p > /tmp/file WARNING: that will make the system panic. >Fix: This simple patch fixes this: *** gsc.c.orig Wed Jun 12 07:03:37 1996 --- gsc.c Sun Dec 29 22:39:05 1996 *************** *** 635,641 **** outb(scu->ctrl, scu->ctrl_byte & ~GSC_POWER_ON); - scu->sbuf.base = NULL; scu->sbuf.size = INVALID; scu->sbuf.poi = INVALID; --- 635,640 ---- >Audit-Trail: >Unformatted: From owner-freebsd-bugs Sun Dec 29 15:40:05 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id PAA17790 for bugs-outgoing; Sun, 29 Dec 1996 15:40:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id PAA17781; Sun, 29 Dec 1996 15:40:02 -0800 (PST) Resent-Date: Sun, 29 Dec 1996 15:40:02 -0800 (PST) Resent-Message-Id: <199612292340.PAA17781@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, Received:(from nobody@localhost) by.freefall.freebsd.org.id.PAA17599;Sun; (8.8.4/8.8.4);, 29 Dec 1996 15:34:14.-0800 (PST) Message-Id: <199612292334.PAA17599@freefall.freebsd.org> Date: Sun, 29 Dec 1996 15:34:14 -0800 (PST) From: nfung@typhoon.co.jp To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: bin/2320: Trouble with using arrow keys to navigate in vi (FreeBSD 2.2-BETA) Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2320 >Category: bin >Synopsis: Trouble with using arrow keys to navigate in vi (FreeBSD 2.2-BETA) >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Dec 29 15:40:01 PST 1996 >Last-Modified: >Originator: Nelson Fung >Organization: Typhoon Inc. >Release: FreeBSD 2.2BETA >Environment: FreeBSD xxx.typhoon.co.jp 2.2-BETA_A FreeBSD 2.2-BETA_A #0: Fri Dec 27 19:07:26 JST 1996 nfung@xxx.typhoon.co.jp:/usr/src/sys/compile/FTT i386 >Description: Can't use arrow keys to move up/down in vi. Vi keeps inserting Bs or As when the up (or down) arrow keys are used. >How-To-Repeat: Vi a text file. >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-bugs Sun Dec 29 15:50:04 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id PAA18523 for bugs-outgoing; Sun, 29 Dec 1996 15:50:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id PAA18516; Sun, 29 Dec 1996 15:50:02 -0800 (PST) Resent-Date: Sun, 29 Dec 1996 15:50:02 -0800 (PST) Resent-Message-Id: <199612292350.PAA18516@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, jin@iss-p1.lbl.gov Received: from iss-p1.lbl.gov (iss-p1.lbl.gov [131.243.2.47]) by freefall.freebsd.org (8.8.4/8.8.4) with ESMTP id PAA18093 for ; Sun, 29 Dec 1996 15:46:30 -0800 (PST) Received: (from jin@localhost) by iss-p1.lbl.gov (8.8.2/8.8.2) id PAA00502; Sun, 29 Dec 1996 15:46:28 -0800 (PST) Message-Id: <199612292346.PAA00502@iss-p1.lbl.gov> Date: Sun, 29 Dec 1996 15:46:28 -0800 (PST) From: "Jin Guojun[ITG]" Reply-To: jin@iss-p1.lbl.gov To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: misc/2321: installation panic before going to past-install menu Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2321 >Category: misc >Synopsis: installation panic before going to past-install menu >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Dec 29 15:50:01 PST 1996 >Last-Modified: >Originator: Jin Guojun[ITG] >Organization: >Release: FreeBSD 2.2-BETA i386 >Environment: ASUS P/I-P55TVP4/200MHz + 3Com 3C509B ethernet card + NCR SCSI with -c option "irq ep0 15" >Description: -----------------Information Dialog----------------- Saving any boot -c changes to new kernel ... panic: Going nowhere without my init! syncing disks... This Environment works with 2.1.x-RELEASE and 2.2-Alpha, but failed on 2.2-BETA. >How-To-Repeat: Using above hardware + using -c option "irq ep0 15" >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-bugs Sun Dec 29 16:00:06 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id QAA19563 for bugs-outgoing; Sun, 29 Dec 1996 16:00:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id QAA19555; Sun, 29 Dec 1996 16:00:03 -0800 (PST) Resent-Date: Sun, 29 Dec 1996 16:00:03 -0800 (PST) Resent-Message-Id: <199612300000.QAA19555@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, bad@uhf.wireless.net Received: from uhf.wdc.net (uhf.wdc.net [198.147.74.44]) by freefall.freebsd.org (8.8.4/8.8.4) with ESMTP id PAA18904 for ; Sun, 29 Dec 1996 15:53:26 -0800 (PST) Received: (from bad@localhost) by uhf.wdc.net (8.8.4/8.6.12) id SAA00745; Sun, 29 Dec 1996 18:55:34 -0500 (EST) Message-Id: <199612292355.SAA00745@uhf.wdc.net> Date: Sun, 29 Dec 1996 18:55:34 -0500 (EST) From: bad@uhf.wireless.net Reply-To: bad@uhf.wireless.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: misc/2322: missing #include in 2.2-beta:/usr/include/net/if.h Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2322 >Category: misc >Synopsis: Missing include statement in /usr/include/net/if.h >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Dec 29 16:00:01 PST 1996 >Last-Modified: >Originator: Bernie Doehner >Organization: Buaas Corporation >Release: FreeBSD 2.2-BETA_A i386 >Environment: 486/120 running FreeBSD 2.2-BETA. >Description: In /usr/include/net/if.h (in 2.2-BETA) there is a missing #include . Note: In 2.2-9600501-SNAP contains the #include but it's gone in 2.2-beta. >How-To-Repeat: Compile any program that #includes /usr/include/net/if.h and does not include first. >Fix: add #include to at the very beginning (Ie. before ifndef _TIME_) >Audit-Trail: >Unformatted: From owner-freebsd-bugs Sun Dec 29 16:56:14 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id QAA22645 for bugs-outgoing; Sun, 29 Dec 1996 16:56:14 -0800 (PST) Received: (from jkh@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id QAA22625; Sun, 29 Dec 1996 16:56:04 -0800 (PST) Date: Sun, 29 Dec 1996 16:56:04 -0800 (PST) From: "Jordan K. Hubbard" Message-Id: <199612300056.QAA22625@freefall.freebsd.org> To: jkh, freebsd-bugs, bde Subject: Re: misc/2322 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Missing include statement in /usr/include/net/if.h Responsible-Changed-From-To: freebsd-bugs->bde Responsible-Changed-By: jkh Responsible-Changed-When: Sun Dec 29 16:54:47 PST 1996 Responsible-Changed-Why: This is Bruce's, and I'll let him justify his revision 1.35 change. :) From owner-freebsd-bugs Sun Dec 29 17:00:04 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id RAA22784 for bugs-outgoing; Sun, 29 Dec 1996 17:00:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id RAA22764; Sun, 29 Dec 1996 17:00:02 -0800 (PST) Date: Sun, 29 Dec 1996 17:00:02 -0800 (PST) Message-Id: <199612300100.RAA22764@freefall.freebsd.org> To: freebsd-bugs Cc: From: "Jordan K. Hubbard" Subject: Re: misc/2321: installation panic before going to past-install menu Reply-To: "Jordan K. Hubbard" Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR misc/2321; it has been noted by GNATS. From: "Jordan K. Hubbard" To: jin@iss-p1.lbl.gov Cc: FreeBSD-gnats-submit@freebsd.org, erich@freebsd.org Subject: Re: misc/2321: installation panic before going to past-install menu Date: Sun, 29 Dec 1996 16:54:25 -0800 > ASUS P/I-P55TVP4/200MHz + 3Com 3C509B ethernet card + NCR SCSI > with -c option "irq ep0 15" > > >Description: > > -----------------Information Dialog----------------- > Saving any boot -c changes to new kernel ... panic: Going nowhere with out my init! Ouch! Looks like it's dying somewhere in the code which copies userconfig changes from the boot kernel to the installed kernel. This may prove "interesting" to debug (I'll try your exact set of -c changes for now) so I may end up just adding an option for turning this behavior off (on by default) if I can't fix it. Needless to say, this doesn't happen on any of my test machines (I have to tweak ed0 on most of my test boxes, in fac) and may be difficult to reproduce. Also strange that no one else has reported this! Hmmmm. Jordan From owner-freebsd-bugs Sun Dec 29 18:11:50 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id SAA25272 for bugs-outgoing; Sun, 29 Dec 1996 18:11:50 -0800 (PST) Received: from time.cdrom.com (time.cdrom.com [204.216.27.226]) by freefall.freebsd.org (8.8.4/8.8.4) with ESMTP id SAA25263 for ; Sun, 29 Dec 1996 18:11:47 -0800 (PST) Received: from freefall.freebsd.org (jkh-sl0-o.cdrom.com [204.216.27.193]) by time.cdrom.com (8.8.4/8.6.9) with ESMTP id SAA28127; Sun, 29 Dec 1996 18:11:45 -0800 (PST) Received: (from jmb@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id SAA25259; Sun, 29 Dec 1996 18:11:44 -0800 (PST) From: "Jonathan M. Bresler" Message-Id: <199612300211.SAA25259@freefall.freebsd.org> Subject: Re: misc/2321: installation panic before going to past-install menu To: jkh@time.cdrom.com Date: Sun, 29 Dec 1996 18:11:44 -0800 (PST) Cc: freebsd-bugs@time.cdrom.com In-Reply-To: <199612300100.RAA22764@freefall.freebsd.org> from "Jordan K. Hubbard" at Dec 29, 96 05:00:02 pm X-Mailer: ELM [version 2.4 PL24] Content-Type: text Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Jordan K. Hubbard wrote: > > The following reply was made to PR misc/2321; it has been noted by GNATS. > > From: "Jordan K. Hubbard" > To: jin@iss-p1.lbl.gov > Cc: FreeBSD-gnats-submit@freebsd.org, erich@freebsd.org > Subject: Re: misc/2321: installation panic before going to past-install menu > Date: Sun, 29 Dec 1996 16:54:25 -0800 > > > ASUS P/I-P55TVP4/200MHz + 3Com 3C509B ethernet card + NCR SCSI > > with -c option "irq ep0 15" > > > > >Description: > > > > -----------------Information Dialog----------------- > > Saving any boot -c changes to new kernel ... panic: Going nowhere with > out my init! > > Ouch! Looks like it's dying somewhere in the code which copies > userconfig changes from the boot kernel to the installed kernel. > > This may prove "interesting" to debug (I'll try your exact set of -c > changes for now) so I may end up just adding an option for turning > this behavior off (on by default) if I can't fix it. Needless to say, > this doesn't happen on any of my test machines (I have to tweak ed0 on > most of my test boxes, in fac) and may be difficult to reproduce. > > Also strange that no one else has reported this! Hmmmm. i ran into this problem this morning. tried to install a couple different distributions (binaries and kernel sources, X-developer, minimal) the machine is a dell 486-50, smc ultra (8216?), adaptec 1542CP (plug-n-pray disabled) used -cv at boot to remove all devices that are not needed. moved ed0 to irq 3, i/o 0x300, mem 0xd4000 (removed sio1--due to interrupt confict, same with mse0) this problem is new to 2.2-beta i can do further testing tomorrow. while getting the distribution splits, the install would return to the menu for selecting an ftp site. bizarre. i was using wcarchive.cdrom.com. hitting , results in a dialog about "reuse network settings?". hitting again, results in the install continuing. my old memory seems to associate the problme with the doc distribution....but i couldn't say for sure. jmb From owner-freebsd-bugs Sun Dec 29 19:20:06 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id TAA28583 for bugs-outgoing; Sun, 29 Dec 1996 19:20:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id TAA28577; Sun, 29 Dec 1996 19:20:04 -0800 (PST) Resent-Date: Sun, 29 Dec 1996 19:20:04 -0800 (PST) Resent-Message-Id: <199612300320.TAA28577@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, sanpei@yy.cs.keio.ac.jp Received: from chizuru.yy.cs.keio.ac.jp (chizuru.yy.cs.keio.ac.jp [131.113.47.2]) by freefall.freebsd.org (8.8.4/8.8.4) with SMTP id TAA28269 for ; Sun, 29 Dec 1996 19:11:44 -0800 (PST) Received: from lala.yy.cs.keio.ac.jp ([203.140.35.20]) by chizuru.yy.cs.keio.ac.jp (8.6.12+2.5W/3.1W-2.8compat) with ESMTP id MAA17812 for ; Mon, 30 Dec 1996 12:11:41 +0900 Received: (from sanpei@localhost) by lala.yy.cs.keio.ac.jp (8.8.4/3.5Wbeta) id MAA05645; Mon, 30 Dec 1996 12:11:40 +0900 (JST) Message-Id: <199612300311.MAA05645@lala.yy.cs.keio.ac.jp> Date: Mon, 30 Dec 1996 12:11:40 +0900 (JST) From: sanpei@yy.cs.keio.ac.jp Reply-To: sanpei@yy.cs.keio.ac.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: misc/2323: FreeBSD.FAQ file in ftp.freebsd.org is lost symbolic-links. Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2323 >Category: misc >Synopsis: FreeBSD.FAQ file in ftp.freebsd.org is lost symbolic-links. >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Dec 29 19:20:01 PST 1996 >Last-Modified: >Originator: MIHIRA Yoshiro >Organization: Keio Univ. >Release: FreeBSD 2.2-BETA_A i386 >Environment: ftp://ftp.freebsd.org/pub/FreeBSD/ >Description: In ftp://ftp.freebsd.org/pub/FreeBSD/: FreeBSD.FAQ file is sym-link to docs/freebsd-faq.ascii file. But there is not docs/freebsd-faq.ascii. Only docs/FAQ.latin1 file is there. Please re-symbolic-link to correct file. Thank you. Yoshiro MIHIRA >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-bugs Sun Dec 29 19:24:34 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id TAA28718 for bugs-outgoing; Sun, 29 Dec 1996 19:24:34 -0800 (PST) Received: from time.cdrom.com (time.cdrom.com [204.216.27.226]) by freefall.freebsd.org (8.8.4/8.8.4) with ESMTP id TAA28713 for ; Sun, 29 Dec 1996 19:24:31 -0800 (PST) Received: from george.lbl.gov (george-2.lbl.gov [131.243.2.12]) by time.cdrom.com (8.8.4/8.6.9) with SMTP id TAA26991; Sun, 29 Dec 1996 19:23:34 -0800 (PST) Received: (jin@localhost) by george.lbl.gov (8.6.10/8.6.5) id TAA06753; Sun, 29 Dec 1996 19:23:28 -0800 Date: Sun, 29 Dec 1996 19:23:28 -0800 From: "Jin Guojun[ITG]" Message-Id: <199612300323.TAA06753@george.lbl.gov> To: jkh@time.cdrom.com, jmb@freefall.freebsd.org Subject: Re: misc/2321: installation panic before going to past-install menu Cc: freebsd-bugs@time.cdrom.com Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk } } > The following reply was made to PR misc/2321; it has been noted by GNATS. } > } > From: "Jordan K. Hubbard" } > To: jin@iss-p1.lbl.gov } > Cc: FreeBSD-gnats-submit@freebsd.org, erich@freebsd.org } > Subject: Re: misc/2321: installation panic before going to past-install menu } > Date: Sun, 29 Dec 1996 16:54:25 -0800 } > } > > ASUS P/I-P55TVP4/200MHz + 3Com 3C509B ethernet card + NCR SCSI } > > with -c option "irq ep0 15" } > > } > > >Description: } > > } > > -----------------Information Dialog----------------- } > > Saving any boot -c changes to new kernel ... panic: Going nowhere with } > out my init! } > } > Ouch! Looks like it's dying somewhere in the code which copies } > userconfig changes from the boot kernel to the installed kernel. } > } > This may prove "interesting" to debug (I'll try your exact set of -c } > changes for now) so I may end up just adding an option for turning } > this behavior off (on by default) if I can't fix it. Needless to say, } > this doesn't happen on any of my test machines (I have to tweak ed0 on } > most of my test boxes, in fac) and may be difficult to reproduce. } > } > Also strange that no one else has reported this! Hmmmm. } } i ran into this problem this morning. } tried to install a couple different distributions } (binaries and kernel sources, X-developer, minimal) } } the machine is a dell 486-50, smc ultra (8216?), adaptec } 1542CP (plug-n-pray disabled) } } used -cv at boot to remove all devices that are not needed. } moved ed0 to irq 3, i/o 0x300, mem 0xd4000 } (removed sio1--due to interrupt confict, same with mse0) } } this problem is new to 2.2-beta } i can do further testing tomorrow. } } while getting the distribution splits, the install would } return to the menu for selecting an ftp site. bizarre. } i was using wcarchive.cdrom.com. hitting , results } in a dialog about "reuse network settings?". hitting } again, results in the install continuing. } } my old memory seems to associate the problme with the doc } distribution....but i couldn't say for sure. } jmb I believe that this problem may do nothing with ed or ep interface. It seems to relate to the that motherboard. I had many different machines with same hardware environment except the motherboards. The same environment with Tyan P6 MB, Inter PT-2000, Inter endeavor-II are successfully installed with 2.2-BATE. I also have four different ASUS motherboards, I will try the other ASUS motherboards soon to see if the problem is related to ASUS motherboards. -Jin From owner-freebsd-bugs Sun Dec 29 23:46:11 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id XAA05366 for bugs-outgoing; Sun, 29 Dec 1996 23:46:11 -0800 (PST) Received: from offensive.communica.com.au (offensive-eth1.adl.communica.com.au [192.82.222.18]) by freefall.freebsd.org (8.8.4/8.8.4) with ESMTP id XAA05337 for ; Sun, 29 Dec 1996 23:45:28 -0800 (PST) Received: from communica.com.au (frenzy.communica.com.au [192.82.222.65]) by offensive.communica.com.au (8.7.6/8.7.3) with SMTP id SAA24923 for ; Mon, 30 Dec 1996 18:14:27 +1030 (CST) Received: by communica.com.au (4.1/SMI-4.1) id AA05225; Mon, 30 Dec 96 18:12:28 CDT From: brawley@communica.com.au (Ivan Brawley) Message-Id: <9612300742.AA05225@communica.com.au> Subject: LKMs and character special devices To: freebsd-bugs@freebsd.org Date: Mon, 30 Dec 1996 18:12:28 +1030 (CST) X-Mailer: ELM [version 2.4 PL21] Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 8bit Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk After spending quite some time (too much time) on trying to port a package to FreeBSD 2.2, I noticed something. In the file /usr/src/sys/kern/kern_lkm.c where it does some of the initializing of the LKMs, noticed that there is code to add a block special device through a LKM, but not a character special device. Case statement begins at line 688 (or there abouts) in function _lkm_dev(). Theres just a break in the case statment for the case of LM_DT_CHAR. Meaning, for someone to write a LKM that adds a character special device to the system, must add the entery into the cdevsw list themselves. The next querk I found was in /usr/include/sys/lkm.h. The MOD_DEV macro seems to be wrong in defining _module (rather, it tryes to define name ## _module, then when you try to use the DISPATCH macro, the compiler errs with "_module symbol not found". The problem I have noticed is in versions 960501-SNAP, 960801-SNAP and the October snap, and the 2.2 BETA release. Thanks. Ivan Brawley. From owner-freebsd-bugs Mon Dec 30 00:20:05 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id AAA06575 for bugs-outgoing; Mon, 30 Dec 1996 00:20:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id AAA06567; Mon, 30 Dec 1996 00:20:02 -0800 (PST) Resent-Date: Mon, 30 Dec 1996 00:20:02 -0800 (PST) Resent-Message-Id: <199612300820.AAA06567@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, moke@fools.ecpnet.com Received: from fools.ecpnet.com (moke@fools.ecpnet.com [204.246.64.101]) by freefall.freebsd.org (8.8.4/8.8.4) with ESMTP id AAA06481 for ; Mon, 30 Dec 1996 00:19:02 -0800 (PST) Received: (from moke@localhost) by fools.ecpnet.com (8.8.4/8.8.4) id CAA00361; Mon, 30 Dec 1996 02:16:57 -0600 (CST) Message-Id: <199612300816.CAA00361@fools.ecpnet.com> Date: Mon, 30 Dec 1996 02:16:57 -0600 (CST) From: Jimbo Bahooli Reply-To: moke@fools.ecpnet.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/2324: /usr/sbin/watch page faults machine Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2324 >Category: kern >Synopsis: watch when ran and given at device prompt, page faults machine >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 30 00:20:01 PST 1996 >Last-Modified: >Originator: Jimbo Bahooli >Organization: >Release: FreeBSD 2.2-RELEASE i386 >Environment: >Description: >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: Environment: FreeBSD 2.2-RELEASE cvsup'd and made world after 2.2-BETA release. Description: /usr/sbin/watch when ran asks for device to snoop. Hitting return at this prompt causes the machine to page fault and reboot. How-To-Repeat: Run /usr/sbin/watch as root then hit return at the device prompt. This should then page fault and reboot your system. Fix: workaround: pass device on command line. From owner-freebsd-bugs Mon Dec 30 03:50:03 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id DAA21524 for bugs-outgoing; Mon, 30 Dec 1996 03:50:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id DAA21518; Mon, 30 Dec 1996 03:50:02 -0800 (PST) Resent-Date: Mon, 30 Dec 1996 03:50:02 -0800 (PST) Resent-Message-Id: <199612301150.DAA21518@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, Andre.Albsmeier@mchp.siemens.de Received: from david.siemens.de (david.siemens.de [146.254.1.1]) by freefall.freebsd.org (8.8.4/8.8.4) with ESMTP id DAA21367 for ; Mon, 30 Dec 1996 03:45:22 -0800 (PST) Received: from salomon.mchp.siemens.de (salomon.mchp.siemens.de [139.23.33.13]) by david.siemens.de (8.8.3/8.8.0) with ESMTP id MAA05346 for ; Mon, 30 Dec 1996 12:41:22 +0100 (MET) Received: from curry.mchp.siemens.de (smtpd@curry.zfe.siemens.de [146.180.31.23]) by salomon.mchp.siemens.de (8.8.2/8.8.0) with ESMTP id MAA06240 for ; Mon, 30 Dec 1996 12:45:07 +0100 (MET) Received: (from smtpd@localhost) by curry.mchp.siemens.de (8.8.4/8.8.4) id MAA09087 for ; Mon, 30 Dec 1996 12:45:06 +0100 (MET) Received: from server.us.tld(192.168.16.33) via SMTP by curry.top.tld, id smtpdAAAa09085; Mon Dec 30 11:45:00 1996 Received: (from andre@localhost) by server.us.tld (8.8.4/8.8.4) id MAA19639; Mon, 30 Dec 1996 12:44:59 +0100 (MET) Message-Id: <199612301144.MAA19639@server.us.tld> Date: Mon, 30 Dec 1996 12:44:59 +0100 (MET) From: Andre Albsmeier Reply-To: Andre.Albsmeier@mchp.siemens.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/2325: quota.user enlarged, no boot on 2.2-BETA Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2325 >Category: kern >Synopsis: quota.user enlarged, no boot on 2.2-BETA >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 30 03:50:01 PST 1996 >Last-Modified: >Originator: Andre Albsmeier >Organization: >Release: FreeBSD 2.2-RELEASE i386 >Environment: Copyright (c) 1992-1996 FreeBSD Inc. Copyright (c) 1982, 1986, 1989, 1991, 1993 The Regents of the University of California. All rights reserved. FreeBSD 2.2-RELEASE #1: Thu Dec 19 12:04:51 MET 1996 root@server.us.tld:/server/adm/FreeBSD/src/sys/src-2.2/sys/compile/SERVER Calibrating clock(s) relative to mc146818A clock ... i586 clock: 166109935 Hz, i8254 clock: 1193320 Hz CPU: Pentium (166.09-MHz 586-class CPU) Origin = "GenuineIntel" Id = 0x52c Stepping=12 Features=0x1bf real memory = 33554432 (32768K bytes) avail memory = 31072256 (30344K bytes) Probing for devices on PCI bus 0: chip0 rev 1 on pci0:0 chip1 rev 0 on pci0:7:0 chip2 rev 0 on pci0:7:1 ahc0 rev 0 int a irq 9 on pci0:9 ahc0: aic7880 Single Channel, SCSI Id=7, 16 SCBs ahc0: target 0 Tagged Queuing Device (ahc0:0:0): "Quantum XP34300 81HB" type 0 fixed SCSI 2 sd0(ahc0:0:0): Direct-Access 4101MB (8399520 512 byte sectors) sd0(ahc0:0:0): with 3907 cyls, 20 heads, and an average 107 sectors/track ahc0: target 1 Tagged Queuing Device (ahc0:1:0): "Quantum XP34300 81HB" type 0 fixed SCSI 2 sd1(ahc0:1:0): Direct-Access 4101MB (8399520 512 byte sectors) sd1(ahc0:1:0): with 3907 cyls, 20 heads, and an average 107 sectors/track ahc0: target 2 Tagged Queuing Device (ahc0:2:0): "Quantum XP34300 81HB" type 0 fixed SCSI 2 sd2(ahc0:2:0): Direct-Access 4101MB (8399520 512 byte sectors) sd2(ahc0:2:0): with 3907 cyls, 20 heads, and an average 107 sectors/track (ahc0:3:0): "HP HP35480A 1109" type 1 removable SCSI 2 st3(ahc0:3:0): Sequential-Access density code 0x13, variable blocks, write-enabled (ahc0:4:0): "DEC DLT2700 830A" type 1 removable SCSI 2 st4(ahc0:4:0): Sequential-Access density code 0x19, drive empty (ahc0:4:1): "DEC TZ Media Changer 830A" type 8 removable SCSI 2 ch4(ahc0:4:1): Medium-Changer 7 slot(s) 1 drive(s) 1 arm(s) 0 i/e-slot(s) (ahc0:5:0): "NEC CD-ROM DRIVE:502 2.0r" type 5 removable SCSI 2 cd5(ahc0:5:0): CD-ROM can't get the size (ahc0:6:0): "TOSHIBA CD-ROM XM-3701TA 3205" type 5 removable SCSI 2 cd6(ahc0:6:0): CD-ROM can't get the size ahc1 rev 0 int a irq 10 on pci0:10 ahc1: aic7880 Single Channel, SCSI Id=7, 16 SCBs (ahc1:0:0): "IMPRIMIS 94601-15 4202" type 0 fixed SCSI 1 sd8(ahc1:0:0): Direct-Access 992MB (2031705 512 byte sectors) sd8(ahc1:0:0): with 1931 cyls, 15 heads, and an average 70 sectors/track (ahc1:1:0): "IMPRIMIS 94601-15 4202" type 0 fixed SCSI 1 sd9(ahc1:1:0): Direct-Access 992MB (2031705 512 byte sectors) sd9(ahc1:1:0): with 1931 cyls, 15 heads, and an average 70 sectors/track ahc1: target 2 Tagged Queuing Device (ahc1:2:0): "SEAGATE ST41650 6414" type 0 fixed SCSI 2 sd10(ahc1:2:0): Direct-Access 1350MB (2766300 512 byte sectors) sd10(ahc1:2:0): with 2107 cyls, 15 heads, and an average 87 sectors/track ahc1: target 3 Tagged Queuing Device (ahc1:3:0): "SEAGATE ST42400N 0116" type 0 fixed SCSI 2 sd11(ahc1:3:0): Direct-Access 2030MB (4159462 512 byte sectors) sd11(ahc1:3:0): with 2626 cyls, 19 heads, and an average 83 sectors/track ahc1: target 5 Tagged Queuing Device (ahc1:5:0): "SEAGATE ST15230N 0298" type 0 fixed SCSI 2 sd13(ahc1:5:0): Direct-Access 4095MB (8386733 512 byte sectors) sd13(ahc1:5:0): with 3992 cyls, 19 heads, and an average 110 sectors/track ahc1: target 6 Tagged Queuing Device (ahc1:6:0): "SEAGATE ST15230N 0298" type 0 fixed SCSI 2 sd14(ahc1:6:0): Direct-Access 4095MB (8386733 512 byte sectors) sd14(ahc1:6:0): with 3992 cyls, 19 heads, and an average 110 sectors/track de0 rev 17 int a irq 11 on pci0:11 de0: 21041 [10Mb/s] pass 1.1 de0: address 00:00:c0:4c:5b:d3 de1 rev 17 int a irq 12 on pci0:12 de1: 21041 [10Mb/s] pass 1.1 de1: address 00:00:c0:28:05:df Probing for devices on the ISA bus: sc0 at 0x60-0x6f irq 1 on motherboard sc0: VGA color <9 virtual consoles, flags=0x0> ed0 not found at 0x240 lpt0 not found at 0xffffffff sio0 at 0x3f8-0x3ff irq 4 on isa sio0: type 16550A sio1 at 0x2f8-0x2ff irq 3 on isa sio1: type 16550A pca0 on motherboard pca0: PC speaker audio driver wdc0 at 0x1f0-0x1f7 irq 14 flags 0x80ff80ff on isa wdc0: unit 0 (wd0): , 32-bit, multi-block-16 wd0: 244MB (499950 sectors), 1010 cyls, 9 heads, 55 S/T, 512 B/S fdc0 at 0x3f0-0x3f7 irq 6 drq 2 on isa fdc0: NEC 72065B fd0: 1.44MB 3.5in 1 3C5x9 board(s) on ISA found at 0x260 ep0 at 0x260-0x26f irq 7 on isa ep0: aui/utp/bnc[*BNC*] address 00:a0:24:5b:e5:05 npx0 on motherboard npx0: INT 16 interface ccd0-1: Concatenated disk drivers de0: enabling BNC port de1: enabling BNC port >Description: I am running 2 Quantum Atlas 4GB Harddrives concatenated together to a big 8GB virtual disk. I have enabled userquotas on this drive and used edquota to configure it. This seems to work for a few days when suddenly booting stops at the line "Checking quotas". You see the drive's LEDs flickering for a while and then the machine seems to stop. However, pressing CTRL-C works, and the normal boot procedure continues. When looking in the root directory of the affected filesystems we find that the quota file has grown extremly: -rw-r----- 1 root operator 4294967264 Dec 2 09:30 quota.user It does not appear to occupy the space really. >How-To-Repeat: Don't know. If you want me to do some tests, tell me. >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-bugs Mon Dec 30 05:28:19 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id FAA25232 for bugs-outgoing; Mon, 30 Dec 1996 05:28:19 -0800 (PST) Received: from laura.ihnet.it (laura.ihnet.it [195.32.26.2]) by freefall.freebsd.org (8.8.4/8.8.4) with SMTP id FAA25227 for ; Mon, 30 Dec 1996 05:28:15 -0800 (PST) Received: from claudia.ihnet.it by laura.ihnet.it; (5.65v3.2/1.1.8.2/25Jun96-0549PM) id AA03259; Mon, 30 Dec 1996 14:28:10 +0100 Received: from inumator95 (ihterm05.ihnet.it [195.32.26.133]) by claudia.ihnet.it (8.6.12/8.6.9) with ESMTP id OAA20941 for ; Mon, 30 Dec 1996 14:28:03 +0100 Message-Id: <199612301328.OAA20941@claudia.ihnet.it> From: "Glauco Rovere" To: Date: Mon, 30 Dec 1996 14:32:23 +0100 X-Msmail-Priority: Normal X-Priority: 3 X-Mailer: Microsoft Internet Mail 4.70.1157 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hi I'm new to Unix and I'm just trying some OS, I'm preferring for the moment FreeBSD to Linux becouse it seem to be more stable, more "standard" and less confused. I've installed FreeBSD in a "old" 486,but I have this problem: I can't see well my CD-ROM drive, my configuration is a AMD486 40Mhz, old mainboard (16 bit) and a CL 6426 built on the motherboard, only one IDE controller, one IBM HD of 250 MB as master and a HITACHI atapi CDROM as slave. Normally i Can't see the CD-ROM, in fact for the installation I had to use the CD-ROM from my other pc, a Goldstar 8x atapi and all went OK. The problem is that I can't see my CD also on Linux (neither the Goldstar), BUT if i disable from bios the first hard disk, setting none and none into the two HD, THEN i can find the Hitachi CD-ROM... Obviously after installation I Can't boot the HD, so i Have to set the right parameters into the BIOS... Any suggestions? One tip: The probe find something strange: it sees only a part of the name of the CD something like H@T@C@I and then says ATAPI: not ATAPI protocol. If I disable from bios my HD then it see well HITACHI 7730 ATAPI CDROM. o=============================o || Glauco Rovere - Technical Manager || SIDIN http://www.sidin.it || Via Canova 25 - 10126 Torino || Tel: +39-11-6633863 || Fax: +39-11-3100493 o From owner-freebsd-bugs Mon Dec 30 06:30:03 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id GAA27881 for bugs-outgoing; Mon, 30 Dec 1996 06:30:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id GAA27875; Mon, 30 Dec 1996 06:30:02 -0800 (PST) Resent-Date: Mon, 30 Dec 1996 06:30:02 -0800 (PST) Resent-Message-Id: <199612301430.GAA27875@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, Received:(from nobody@localhost) by.freefall.freebsd.org.id.GAA27622;Mon; (8.8.4/8.8.4);, 30 Dec 1996 06:24:57.-0800 (PST) Message-Id: <199612301424.GAA27622@freefall.freebsd.org> Date: Mon, 30 Dec 1996 06:24:57 -0800 (PST) From: joseph@os.nctu.edu.tw To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: kern/2326: System panic when installing FreeBSD Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2326 >Category: kern >Synopsis: System panic when installing FreeBSD >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 30 06:30:01 PST 1996 >Last-Modified: >Originator: joseph >Organization: National Chiao-Tong University >Release: 2.1.6 and 2.2-BETA >Environment: >Description: When installing FreeBSD, my system got panic and the error occures when doing the step Saving any boot -c changes to new kernel and the error message for 2.1.6 and 2.2-BETA are different. The error message showed by 2.1.6 is: Fatal signal 11 caught! I'm dead.... The error message showd by 2.2-BETA is: panic: Going no where without my init My machine is Pentium 133, I have one AHA-3940 SCSI adaptor(PCI), Intel Express Pro 100B Fast Ethernet card (PCI) and a NE2000 compatible ISA card. I have one IDE disk -- Quantum sirocco1700a. one SCSI disk -- Seagate .... And I want to install FreeBSD on the IDE disk. >How-To-Repeat: Before installing FreeBSD, connect the Seagate SCSI disk on the Channel B of AHA-3940 and let the Channel A empty then the problem occures >Fix: Change the cabling of Seagate SCSI disk from Channel B to Channel A of AHA-3940 will slove this problem. >Audit-Trail: >Unformatted: From owner-freebsd-bugs Mon Dec 30 07:00:05 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id HAA29976 for bugs-outgoing; Mon, 30 Dec 1996 07:00:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id HAA29969; Mon, 30 Dec 1996 07:00:03 -0800 (PST) Resent-Date: Mon, 30 Dec 1996 07:00:03 -0800 (PST) Resent-Message-Id: <199612301500.HAA29969@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, brianc@netrover.com (Brian Campbell) Received: from irz301.inf.tu-dresden.de (irz301.inf.tu-dresden.de [141.76.1.11]) by freefall.freebsd.org (8.8.4/8.8.4) with SMTP id GAA28874 for ; Mon, 30 Dec 1996 06:51:12 -0800 (PST) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by irz301.inf.tu-dresden.de (8.6.12/8.6.12-s1) with ESMTP id PAA17343 for ; Mon, 30 Dec 1996 15:51:03 +0100 Received: (from uucp@localhost) by sax.sax.de (8.6.12/8.6.12-s1) with UUCP id PAA05152 for FreeBSD-gnats-submit@freebsd.org; Mon, 30 Dec 1996 15:51:02 +0100 Received: (from j@localhost) by uriah.heep.sax.de (8.8.4/8.6.9) id VAA19038; Sat, 28 Dec 1996 21:16:54 +0100 (MET) Message-Id: <199612282016.VAA19038@uriah.heep.sax.de> Date: Sat, 28 Dec 1996 21:16:54 +0100 (MET) From: brianc@netrover.com (Brian Campbell) Reply-To: brianc@netrover.com (Brian Campbell) To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/2327: `Green' saver for pcvt Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2327 >Category: kern >Synopsis: `Green' saver for pcvt >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Dec 30 07:00:02 PST 1996 >Last-Modified: >Originator: Brian Campbell >Organization: >Release: FreeBSD 3.0-CURRENT i386 >Environment: pcvt misses a "green" saver >Description: Submission of a screensaver mode that enables power-save mode. (In case anybody wonders: Brian has sent this to Jordan, who has sent it to Joerg, who decided to send-pr it. :) >How-To-Repeat: >Fix: --- sys/i386/isa/pcvt/pcvt_sup.c Tue Sep 10 04:27:14 1996 +++ sys.new/i386/isa/pcvt/pcvt_sup.c Wed Oct 9 21:39:53 1996 @@ -1974,6 +1974,30 @@ } } +#if PCVT_GREENSAVER +#define TSIDX IO_VGA+0x04 /* timing sequencer idx */ +#define TSREG IO_VGA+0x05 /* timing sequencer data */ + +static void +green_saver(int blank) +{ + const crtc_addr = addr_6845; + u_char val; + if (blank) { + outb(TSIDX, 0x01); val = inb(TSREG); + outb(TSIDX, 0x01); outb(TSREG, val | 0x20); + outb(crtc_addr, 0x17); val = inb(crtc_addr + 1); + outb(crtc_addr + 1, val & ~0x80); + } + else { + outb(TSIDX, 0x01); val = inb(TSREG); + outb(TSIDX, 0x01); outb(TSREG, val & 0xDF); + outb(crtc_addr, 0x17); val = inb(crtc_addr + 1); + outb(crtc_addr + 1, val | 0x80); + } +} +#endif + /*---------------------------------------------------------------------------* * we were timed out *---------------------------------------------------------------------------*/ @@ -2053,6 +2077,9 @@ #endif /* PCVT_PRETTYSCRNS */ sw_cursor(0); /* cursor off on mda/cga */ +#if PCVT_GREENSAVER + green_saver(1); +#endif } splx(x); } @@ -2096,6 +2123,9 @@ #if PCVT_PRETTYSCRNS vgapaletteio(7 /* LIGHTGRAY */, &vsp->palette[7], 1); #endif /* PCVT_PRETTYSCRNS */ +#if PCVT_GREENSAVER + green_saver(0); +#endif } scrnsv_active = 0; >Audit-Trail: >Unformatted: From owner-freebsd-bugs Mon Dec 30 07:52:40 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id HAA03307 for bugs-outgoing; Mon, 30 Dec 1996 07:52:40 -0800 (PST) Received: from irz301.inf.tu-dresden.de (irz301.inf.tu-dresden.de [141.76.1.11]) by freefall.freebsd.org (8.8.4/8.8.4) with SMTP id HAA03300 for ; Mon, 30 Dec 1996 07:52:37 -0800 (PST) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by irz301.inf.tu-dresden.de (8.6.12/8.6.12-s1) with ESMTP id QAA21656; Mon, 30 Dec 1996 16:51:17 +0100 Received: (from uucp@localhost) by sax.sax.de (8.6.12/8.6.12-s1) with UUCP id QAA06131; Mon, 30 Dec 1996 16:51:12 +0100 Received: (from j@localhost) by uriah.heep.sax.de (8.8.4/8.6.9) id QAA04285; Mon, 30 Dec 1996 16:47:45 +0100 (MET) From: J Wunsch Message-Id: <199612301547.QAA04285@uriah.heep.sax.de> Subject: Re: bin/2303: cdcontrol can read to many toc entries if track numbers are large To: gurney_j@resnet.uoregon.edu Date: Mon, 30 Dec 1996 16:47:45 +0100 (MET) Cc: freebsd-bugs@freebsd.org Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: from John-Mark Gurney at "Dec 28, 96 02:56:59 pm" X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E X-Mailer: ELM [version 2.4ME+ PL17 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk As John-Mark Gurney wrote: > > I leave it to others to see whether your patch is ok or not. However, > > this CD does IMHO violate the specs. There must be no more than 99 > > tracks on a CD. So better complain at their producer. :-) > > but there aren't more than 99 tracks... there are exactly 99 toc > entries... and the track numbering happens to go above 99... attached is Eeeek. What a horrible abuse. > results from "echo info | cdcontrol > brk" to give you a list of the > tracks to see that there aren't more than 99... I wonder why they didn't get the idea to name one of their tracks `170'. :-)) -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-bugs Mon Dec 30 08:00:03 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id IAA03503 for bugs-outgoing; Mon, 30 Dec 1996 08:00:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id IAA03495; Mon, 30 Dec 1996 08:00:02 -0800 (PST) Date: Mon, 30 Dec 1996 08:00:02 -0800 (PST) Message-Id: <199612301600.IAA03495@freefall.freebsd.org> To: freebsd-bugs Cc: From: J Wunsch Subject: Re: bin/2315: tail segfaults on NFS permission denied Reply-To: J Wunsch Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR bin/2315; it has been noted by GNATS. From: J Wunsch To: hhui@arcfour.com Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: bin/2315: tail segfaults on NFS permission denied Date: Mon, 30 Dec 1996 16:50:53 +0100 (MET) As Hui-Hui Hu wrote: > client# mount -t nfs -o nosuid server:/foo /foo > client# tail /foo/filename > Segmentation fault What's up with your environment? uriah # mount localhost:/tmp /mnt uriah # umount /mnt uriah # mount -o nosuid localhost:/tmp /mnt uriah # tail /mnt/makefile SYSTEM := $(shell uname -s) all: echo $(SYSTEM) uriah # umount /mnt > /kernel: vnode_pager_getpages: I/O read error > /kernel: vm_fault: pager input (probably hardware) error, PID 15308 failure > /kernel: pid 15308 (tail), uid 0: exited on signal 11 That seems to be the culprit. Is your filesystem the `tail' came from also NFS? -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-bugs Mon Dec 30 08:03:21 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id IAA03567 for bugs-outgoing; Mon, 30 Dec 1996 08:03:21 -0800 (PST) Received: from time.cdrom.com (time.cdrom.com [204.216.27.226]) by freefall.freebsd.org (8.8.4/8.8.4) with ESMTP id IAA03562 for ; Mon, 30 Dec 1996 08:03:19 -0800 (PST) Received: from george.lbl.gov (george-2.lbl.gov [131.243.2.12]) by time.cdrom.com (8.8.4/8.6.9) with SMTP id IAA15153; Mon, 30 Dec 1996 08:03:04 -0800 (PST) Received: (jin@localhost) by george.lbl.gov (8.6.10/8.6.5) id IAA13198; Mon, 30 Dec 1996 08:02:54 -0800 Date: Mon, 30 Dec 1996 08:02:54 -0800 From: "Jin Guojun[ITG]" Message-Id: <199612301602.IAA13198@george.lbl.gov> To: jkh@time.cdrom.com, jmb@freefall.freebsd.org Subject: Re: misc/2321: installation panic before going to past-install menu Cc: freebsd-bugs@time.cdrom.com Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > I believe that this problem may do nothing with ed or ep interface. > It seems to relate to the that motherboard. > > I had many different machines with same hardware environment except the > motherboards. The same environment with Tyan P6 MB, Inter PT-2000, > Inter endeavor-II are successfully installed with 2.2-BATE. > I also have four different ASUS motherboards, I will try the other ASUS > motherboards soon to see if the problem is related to ASUS motherboards. I successfully installed 2.2-BATE on other ASUS motherboards. So, it sounds like that the problem is only on the ASUS P/I-P55TVP4 motherboard. I may do some further test. -Jin From owner-freebsd-bugs Mon Dec 30 09:43:59 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id JAA07083 for bugs-outgoing; Mon, 30 Dec 1996 09:43:59 -0800 (PST) Received: from X2296 (ppp1569.on.sympatico.ca [206.172.249.33]) by freefall.freebsd.org (8.8.4/8.8.4) with ESMTP id JAA07077; Mon, 30 Dec 1996 09:43:51 -0800 (PST) Received: (from tim@localhost) by X2296 (8.7.6/8.7.3) id MAA01317; Mon, 30 Dec 1996 12:42:52 -0500 (EST) Date: Mon, 30 Dec 1996 12:42:52 -0500 (EST) From: Tim Vanderhoek Message-Id: <199612301742.MAA01317@X2296> Subject: ports/2328 Reply-To: ac199@freenet.hamilton.on.ca To: undisclosed-recipients:; Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Bah! fetch works fine, just make sure you remove the `plor.tgz' part from the MASTER_SITES line... From owner-freebsd-bugs Mon Dec 30 10:00:04 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id KAA07798 for bugs-outgoing; Mon, 30 Dec 1996 10:00:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id KAA07786; Mon, 30 Dec 1996 10:00:02 -0800 (PST) Date: Mon, 30 Dec 1996 10:00:02 -0800 (PST) Message-Id: <199612301800.KAA07786@freefall.freebsd.org> To: freebsd-bugs Cc: From: "Michael Newlyn Blake" Subject: kern/1982: Additional information... Reply-To: "Michael Newlyn Blake" Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR kern/1982; it has been noted by GNATS. From: "Michael Newlyn Blake" To: freebsd-gnats-submit@freebsd.org, fenner@parc.xerox.com Cc: mblake@frogtown.com Subject: kern/1982: Additional information... Date: 30 Dec 96 09:45:20 +0000 I have also had this problem with the PPP connection on my -stable box. When the ppp connection (ppp0 if it helps) drops, it cannot always be brought back up. I will always manage to dial up and reconnect, but I sometimes get the "cant allocate llinfo" message when trying to make use of the connection. When this happend, no traffic will pass. (The connection seems up, pppstat reports no errors, but every attempt to use the connection gives the error...) Exact error messages are: Dec 27 18:09:25 fozzy pppd[7113]: ioctl(SIOCAIFADDR): Address already exists Dec 27 18:09:25 fozzy /kernel: arpresolve: can't allocate llinfo for 204.188.115.1 This is the only ppp connection on this system. It's ppp interface is ppp0, the ethernet is ed0. Let me know if you need any additional information. Thanks. ------------------------ Michael Newlyn Blake mblake@frogtown.com From owner-freebsd-bugs Mon Dec 30 10:00:07 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id KAA07808 for bugs-outgoing; Mon, 30 Dec 1996 10:00:07 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id KAA07795; Mon, 30 Dec 1996 10:00:04 -0800 (PST) Date: Mon, 30 Dec 1996 10:00:04 -0800 (PST) Message-Id: <199612301800.KAA07795@freefall.freebsd.org> To: freebsd-bugs Cc: From: J Wunsch Subject: Re: bin/2320: Trouble with using arrow keys to navigate in vi (FreeBSD 2.2-BETA) Reply-To: J Wunsch Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR bin/2320; it has been noted by GNATS. From: J Wunsch To: nfung@typhoon.co.jp Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: bin/2320: Trouble with using arrow keys to navigate in vi (FreeBSD 2.2-BETA) Date: Mon, 30 Dec 1996 16:54:29 +0100 (MET) As nfung@typhoon.co.jp wrote: > Can't use arrow keys to move up/down in vi. Vi keeps inserting Bs or As > when the up (or down) arrow keys are used. I've only seen this for two reasons: . your TERM variable is wrong (e.g. your .login or .cshrc foolishly clobbers TERM to cons25, even if you are running an xterm), or . over the network. I think the latter problem is a known one, something with the (n?)curses library. -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-bugs Mon Dec 30 11:21:52 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id LAA12340 for bugs-outgoing; Mon, 30 Dec 1996 11:21:52 -0800 (PST) Received: from irz301.inf.tu-dresden.de (irz301.inf.tu-dresden.de [141.76.1.11]) by freefall.freebsd.org (8.8.4/8.8.4) with SMTP id LAA12333; Mon, 30 Dec 1996 11:21:44 -0800 (PST) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by irz301.inf.tu-dresden.de (8.6.12/8.6.12-s1) with ESMTP id UAA06950; Mon, 30 Dec 1996 20:21:13 +0100 Received: (from uucp@localhost) by sax.sax.de (8.6.12/8.6.12-s1) with UUCP id UAA12462; Mon, 30 Dec 1996 20:21:12 +0100 Received: (from j@localhost) by uriah.heep.sax.de (8.8.4/8.6.9) id TAA09820; Mon, 30 Dec 1996 19:54:58 +0100 (MET) From: J Wunsch Message-Id: <199612301854.TAA09820@uriah.heep.sax.de> Subject: Re: misc/2316 To: jkh@freefall.freebsd.org (Jordan K. Hubbard) Date: Mon, 30 Dec 1996 19:54:58 +0100 (MET) Cc: freebsd-bugs@freefall.freebsd.org Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: <199612291444.GAA01654@freefall.freebsd.org> from "Jordan K. Hubbard" at "Dec 29, 96 06:44:02 am" X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E X-Mailer: ELM [version 2.4ME+ PL17 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk As Jordan K. Hubbard wrote: > Synopsis: /stand/sysinstall doesn't create /home direcotry > > Responsible-Changed-From-To: freebsd-bugs->joerg > Heh heh, I think we'll give this one to Joerg since he wrote this > code in sysinstall and "sponsored" pw. :-) No problem, i've already thought a little about it anyway, and David also approached me with the question whether pw(8) should do this or not. -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-bugs Mon Dec 30 11:30:04 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id LAA12865 for bugs-outgoing; Mon, 30 Dec 1996 11:30:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id LAA12858; Mon, 30 Dec 1996 11:30:02 -0800 (PST) Date: Mon, 30 Dec 1996 11:30:02 -0800 (PST) Message-Id: <199612301930.LAA12858@freefall.freebsd.org> To: freebsd-bugs Cc: From: J Wunsch Subject: Re: misc/2321: installation panic before going to past-install menu Reply-To: J Wunsch Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR misc/2321; it has been noted by GNATS. From: J Wunsch To: jkh@time.cdrom.com Cc: freebsd-gnats-submit@freebsd.org Subject: Re: misc/2321: installation panic before going to past-install menu Date: Mon, 30 Dec 1996 19:56:15 +0100 (MET) As Jordan K. Hubbard wrote: > > -----------------Information Dialog----------------- > > Saving any boot -c changes to new kernel ... panic: Going nowhere with > out my init! > > Ouch! Looks like it's dying somewhere in the code which copies > userconfig changes from the boot kernel to the installed kernel. > Also strange that no one else has reported this! Hmmmm. PR # 2326 seems to be a dup for this problem. -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-bugs Mon Dec 30 12:22:09 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id MAA16146 for bugs-outgoing; Mon, 30 Dec 1996 12:22:09 -0800 (PST) Received: from time.cdrom.com (time.cdrom.com [204.216.27.226]) by freefall.freebsd.org (8.8.4/8.8.4) with ESMTP id MAA16141 for ; Mon, 30 Dec 1996 12:22:07 -0800 (PST) Received: from time.cdrom.com (localhost [127.0.0.1]) by time.cdrom.com (8.8.4/8.6.9) with ESMTP id MAA15738; Mon, 30 Dec 1996 12:22:04 -0800 (PST) To: "Jin Guojun[ITG]" cc: jmb@freefall.freebsd.org, freebsd-bugs@time.cdrom.com Subject: Re: misc/2321: installation panic before going to past-install menu In-reply-to: Your message of "Mon, 30 Dec 1996 08:02:54 PST." <199612301602.IAA13198@george.lbl.gov> Date: Mon, 30 Dec 1996 12:22:03 -0800 Message-ID: <15735.851977323@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > I successfully installed 2.2-BATE on other ASUS motherboards. So, it sounds > like that the problem is only on the ASUS P/I-P55TVP4 motherboard. > I may do some further test. Well, I just saw this come across today also, so perhaps the problem is more complex than that: When installing FreeBSD, my system got panic and the error occures when doing the step Saving any boot -c changes to new kernel and the error message for 2.1.6 and 2.2-BETA are different. The error message showed by 2.1.6 is: Fatal signal 11 caught! I'm dead.... The error message showd by 2.2-BETA is: panic: Going no where without my init My machine is Pentium 133, I have one AHA-3940 SCSI adaptor(PCI), Intel Express Pro 100B Fast Ethernet card (PCI) and a NE2000 compatible ISA card. I have one IDE disk -- Quantum sirocco1700a. one SCSI disk -- Seagate .... And I want to install FreeBSD on the IDE disk. >How-To-Repeat: Before installing FreeBSD, connect the Seagate SCSI disk on the Channel B of AHA-3940 and let the Channel A empty then the problem occures >Fix: Change the cabling of Seagate SCSI disk from Channel B to Channel A of AHA-3940 will slove this problem. >Audit-Trail: >Unformatted: From owner-freebsd-bugs Mon Dec 30 12:45:06 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id MAA17489 for bugs-outgoing; Mon, 30 Dec 1996 12:45:06 -0800 (PST) Received: (from joerg@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id MAA17442; Mon, 30 Dec 1996 12:44:42 -0800 (PST) Date: Mon, 30 Dec 1996 12:44:42 -0800 (PST) From: Joerg Wunsch Message-Id: <199612302044.MAA17442@freefall.freebsd.org> To: jmrueda@diatel.upm.es, joerg, freebsd-bugs Subject: Re: kern/2319 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Using Genius GS-4500 scanner causes page fault panic State-Changed-From-To: open-closed State-Changed-By: joerg State-Changed-When: Mon Dec 30 21:42:57 MET 1996 State-Changed-Why: Suggested fix applied in rev 1.23 of gsc.c, ¡muchas gracias! From owner-freebsd-bugs Mon Dec 30 12:46:13 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id MAA17590 for bugs-outgoing; Mon, 30 Dec 1996 12:46:13 -0800 (PST) Received: from time.cdrom.com (time.cdrom.com [204.216.27.226]) by freefall.freebsd.org (8.8.4/8.8.4) with ESMTP id MAA17583 for ; Mon, 30 Dec 1996 12:46:10 -0800 (PST) Received: from freefall.freebsd.org (jkh-sl0-o.cdrom.com [204.216.27.193]) by time.cdrom.com (8.8.4/8.6.9) with ESMTP id MAA16008; Mon, 30 Dec 1996 12:46:08 -0800 (PST) Received: (from jmb@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id MAA17578; Mon, 30 Dec 1996 12:46:06 -0800 (PST) From: "Jonathan M. Bresler" Message-Id: <199612302046.MAA17578@freefall.freebsd.org> Subject: Re: misc/2321: installation panic before going to past-install menu To: jkh@time.cdrom.com (Jordan K. Hubbard) Date: Mon, 30 Dec 1996 12:46:06 -0800 (PST) Cc: jin@george.lbl.gov, freebsd-bugs@time.cdrom.com In-Reply-To: <15735.851977323@time.cdrom.com> from "Jordan K. Hubbard" at Dec 30, 96 12:22:03 pm X-Mailer: ELM [version 2.4 PL24] Content-Type: text Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk as far as i can tell the common elements are "boot -c" and a scsi bus. Jin Guojun Jordan jmb boot -c ep0 irq 15 ?? ed0 irq 3 i/o 300 mem d4000 scsi ncr aha3940 aha1542CP jmb From owner-freebsd-bugs Mon Dec 30 12:56:13 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id MAA18509 for bugs-outgoing; Mon, 30 Dec 1996 12:56:13 -0800 (PST) Received: from time.cdrom.com (time.cdrom.com [204.216.27.226]) by freefall.freebsd.org (8.8.4/8.8.4) with ESMTP id MAA18495 for ; Mon, 30 Dec 1996 12:56:10 -0800 (PST) Received: from time.cdrom.com (localhost [127.0.0.1]) by time.cdrom.com (8.8.4/8.6.9) with ESMTP id MAA16115; Mon, 30 Dec 1996 12:56:08 -0800 (PST) To: "Jonathan M. Bresler" cc: jin@george.lbl.gov, freebsd-bugs@time.cdrom.com Subject: Re: misc/2321: installation panic before going to past-install menu In-reply-to: Your message of "Mon, 30 Dec 1996 12:46:06 PST." <199612302046.MAA17578@freefall.freebsd.org> Date: Mon, 30 Dec 1996 12:56:08 -0800 Message-ID: <16112.851979368@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk All my test systems are SCSI, and I've changed many many settings on them without this happening. :-( Ah well, something is clearly wrong, just to now find out what. Jordan > as far as i can tell the common elements are "boot -c" and a scsi bus. > > Jin Guojun Jordan jmb > boot -c ep0 irq 15 ?? ed0 irq 3 i/o 300 mem d4000 > scsi ncr aha3940 aha1542CP > > jmb From owner-freebsd-bugs Mon Dec 30 13:30:06 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id NAA21829 for bugs-outgoing; Mon, 30 Dec 1996 13:30:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id NAA21813; Mon, 30 Dec 1996 13:30:03 -0800 (PST) Date: Mon, 30 Dec 1996 13:30:03 -0800 (PST) Message-Id: <199612302130.NAA21813@freefall.freebsd.org> To: freebsd-bugs Cc: From: Mike Pritchard Subject: Re: kern/2325: quota.user enlarged, no boot on 2.2-BETA Reply-To: Mike Pritchard Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR kern/2325; it has been noted by GNATS. From: Mike Pritchard To: Andre.Albsmeier@mchp.siemens.de Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: kern/2325: quota.user enlarged, no boot on 2.2-BETA Date: Mon, 30 Dec 1996 13:20:47 -0800 (PST) Andre Albsmeier wrote: > > > >Number: 2325 > >Category: kern > >Synopsis: quota.user enlarged, no boot on 2.2-BETA > >Description: > > I am running 2 Quantum Atlas 4GB Harddrives concatenated together to > a big 8GB virtual disk. I have enabled userquotas on this drive and used > edquota to configure it. This seems to work for a few days when suddenly > booting stops at the line "Checking quotas". You see the drive's LEDs > flickering for a while and then the machine seems to stop. However, > pressing CTRL-C works, and the normal boot procedure continues. > When looking in the root directory of the affected filesystems we find > that the quota file has grown extremly: > > -rw-r----- 1 root operator 4294967264 Dec 2 09:30 quota.user > > It does not appear to occupy the space really. > > >How-To-Repeat: > > Don't know. If you want me to do some tests, tell me. Check your file systems for files owned by a negative uid. Quotacheck should probably ignore uids < 0. -- Mike Pritchard mpp@FreeBSD.org "Go that way. Really fast. If something gets in your way, turn" From owner-freebsd-bugs Mon Dec 30 13:30:07 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id NAA21831 for bugs-outgoing; Mon, 30 Dec 1996 13:30:07 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id NAA21822; Mon, 30 Dec 1996 13:30:05 -0800 (PST) Date: Mon, 30 Dec 1996 13:30:05 -0800 (PST) Message-Id: <199612302130.NAA21822@freefall.freebsd.org> To: freebsd-bugs Cc: From: Mike Pritchard Subject: Re: kern/2325: quota.user enlarged, no boot on 2.2-BETA Reply-To: Mike Pritchard Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR kern/2325; it has been noted by GNATS. From: Mike Pritchard To: Andre.Albsmeier@mchp.siemens.de Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: kern/2325: quota.user enlarged, no boot on 2.2-BETA Date: Mon, 30 Dec 1996 13:27:32 -0800 (PST) Andre Albsmeier wrote: > > > >Number: 2325 > >Category: kern > >Synopsis: quota.user enlarged, no boot on 2.2-BETA > >Description: > > I am running 2 Quantum Atlas 4GB Harddrives concatenated together to > a big 8GB virtual disk. I have enabled userquotas on this drive and used > edquota to configure it. This seems to work for a few days when suddenly > booting stops at the line "Checking quotas". You see the drive's LEDs > flickering for a while and then the machine seems to stop. However, > pressing CTRL-C works, and the normal boot procedure continues. > When looking in the root directory of the affected filesystems we find > that the quota file has grown extremly: > > -rw-r----- 1 root operator 4294967264 Dec 2 09:30 quota.user > > It does not appear to occupy the space really. > > >How-To-Repeat: > > Don't know. If you want me to do some tests, tell me. I just remembered - try running quotacheck with the -v option. It will report any unknown uids/gids in the file system. Very large uids/gids (and probably negative uids) will cause quotacheck to run for a long time since it doesn't handle large gaps in uids very well. -- Mike Pritchard mpp@FreeBSD.org "Go that way. Really fast. If something gets in your way, turn" From owner-freebsd-bugs Mon Dec 30 14:03:47 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id OAA23977 for bugs-outgoing; Mon, 30 Dec 1996 14:03:47 -0800 (PST) Received: from time.cdrom.com (time.cdrom.com [204.216.27.226]) by freefall.freebsd.org (8.8.4/8.8.4) with ESMTP id OAA23972 for ; Mon, 30 Dec 1996 14:03:45 -0800 (PST) Received: from george.lbl.gov (george-2.lbl.gov [131.243.2.12]) by time.cdrom.com (8.8.4/8.6.9) with SMTP id OAA23529; Mon, 30 Dec 1996 14:03:30 -0800 (PST) Received: (jin@localhost) by george.lbl.gov (8.6.10/8.6.5) id OAA19898; Mon, 30 Dec 1996 14:03:18 -0800 Date: Mon, 30 Dec 1996 14:03:18 -0800 From: "Jin Guojun[ITG]" Message-Id: <199612302203.OAA19898@george.lbl.gov> To: jkh@time.cdrom.com, jmb@freefall.freebsd.org Subject: Re: misc/2321: installation panic before going to past-install menu Cc: freebsd-bugs@time.cdrom.com Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk } All my test systems are SCSI, and I've changed many many settings on } them without this happening. :-( } } Ah well, something is clearly wrong, just to now find out what. } } Jordan } } > as far as i can tell the common elements are "boot -c" and a scsi bus. } > } > Jin Guojun Jordan jmb } > boot -c ep0 irq 15 ?? ed0 irq 3 i/o 300 mem d4000 } > scsi ncr aha3940 aha1542CP I will try to take scsi interface out and do the install again. I may not be able to do this before the New Year since that ASUS board is far away from me. I have tried many combinations of SCSI cards, motherboards (except that ASUS) with 3C509B ethernet cards to install 2.2-BATE, however, they are not panic. I will send message out once the further test is done. -Jin From owner-freebsd-bugs Mon Dec 30 14:20:04 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id OAA24747 for bugs-outgoing; Mon, 30 Dec 1996 14:20:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id OAA24722; Mon, 30 Dec 1996 14:20:02 -0800 (PST) Resent-Date: Mon, 30 Dec 1996 14:20:02 -0800 (PST) Resent-Message-Id: <199612302220.OAA24722@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, alm@woops.slewsys.org Received: from woops.slewsys.org (woops.slewsys.org [140.174.112.3]) by freefall.freebsd.org (8.8.4/8.8.4) with ESMTP id OAA24324 for ; Mon, 30 Dec 1996 14:11:44 -0800 (PST) Received: (from alm@localhost) by woops.slewsys.org (8.8.4/8.8.4) id OAA00462; Mon, 30 Dec 1996 14:11:05 -0800 (PST) Message-Id: <199612302211.OAA00462@woops.slewsys.org> Date: Mon, 30 Dec 1996 14:11:05 -0800 (PST) From: "Andrew L. Moore" Reply-To: alm@woops.slewsys.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/2330: changing root device to sd0a - ncr0: aborting job ... Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2330 >Category: kern >Synopsis: changing root device to sd0a - ncr0: aborting job ... >Confidential: yes >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 30 14:20:01 PST 1996 >Last-Modified: >Originator: Andrew L. Moore >Organization: >Release: FreeBSD 2.2-BETA_A i386 >Environment: 200 MHz Pentium Pro (Intel MB w/ Award (?) BIOS) avail memory = 30285824 (29576K bytes) Probing for devices on PCI bus 0: chip0 rev 2 on pci0:2:0 chip1 rev 2 on pci0:2:1 vga0 rev 0 int a irq 11 on pci0:10 ncr0 rev 2 int a irq 10 on pci0:14 ncr0 waiting for scsi devices to settle (ncr0:0:0): "QUANTUM FIREBALL1080S 1Q09" type 0 fixed SCSI 2 sd0(ncr0:0:0): Direct-Access sd0(ncr0:0:0): 10.0 MB/s (100 ns, offset 8) 1042MB (2134305 512 byte sectors) (ncr0:1:0): "QUANTUM EMPIRE_1080S 1100" type 0 fixed SCSI 2 sd1(ncr0:1:0): Direct-Access sd1(ncr0:1:0): 10.0 MB/s (100 ns, offset 8) 1029MB (2109376 512 byte sectors) (ncr0:3:0): "IBM DORS-32160 S82C" type 0 fixed SCSI 2 sd2(ncr0:3:0): Direct-Access sd2(ncr0:3:0): 10.0 MB/s (100 ns, offset 8) 2063MB (4226725 512 byte sectors) (ncr0:6:0): "NEC CD-ROM DRIVE:222 3.0i" type 5 removable SCSI 2 cd0(ncr0:6:0): CD-ROM cd0(ncr0:6:0): asynchronous. can't get the size chip2 rev 4 on pci0:20 chip3 rev 4 on pci0:25 >Description: When boot switches to root device, the system seems to hang for about 30 seconds before printing to following error, then recovers without further apparent problems. * changing root device to sd0a * ncr0: aborting job ... * ncr0:6: ERROR (90:0) (8-0-0) (0/13) @ (a54:50000000). * script cmd = 740a8f00 * reg: de 00 00 13 47 00 0f 0f 35 08 83 00 90 00 0f 02. * ncr0: restart (fatal error). * sd0(ncr0:0:0): COMMAND FAILED (9 ff) @f1399a00. * sd0(ncr0:0:0): 10.0 MB/s (100 ns, offset 8) * sd1(ncr0:1:0): 10.0 MB/s (100 ns, offset 8) >How-To-Repeat: boot with NCR wide SCSI controller + Quantum SCSI disk >Fix: Use FreeBSD 2.1 (the error first appeared after upgrading to 2.2 BETA) Use a non-Quantum disk with NCR controllers? Ignore the error? >Audit-Trail: >Unformatted: From owner-freebsd-bugs Mon Dec 30 16:00:04 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id QAA29576 for bugs-outgoing; Mon, 30 Dec 1996 16:00:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id QAA29570; Mon, 30 Dec 1996 16:00:02 -0800 (PST) Resent-Date: Mon, 30 Dec 1996 16:00:02 -0800 (PST) Resent-Message-Id: <199612310000.QAA29570@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, Helbig@MX.BA-Stuttgart.De Received: from terminator.informatik.ba-stuttgart.de (terminator.informatik.ba-stuttgart.de [141.31.1.21]) by freefall.freebsd.org (8.8.4/8.8.4) with ESMTP id PAA29067 for ; Mon, 30 Dec 1996 15:52:01 -0800 (PST) Received: from helbig.informatik.ba-stuttgart.de (helbig.informatik.ba-stuttgart.de [141.31.166.22]) by terminator.informatik.ba-stuttgart.de (8.7.6/8.7.3) with ESMTP id XAA27612 for ; Mon, 30 Dec 1996 23:51:26 +0100 Received: (from wh@localhost) by helbig.informatik.ba-stuttgart.de (8.8.4/8.8.4) id AAA00671; Tue, 31 Dec 1996 00:51:57 +0100 (MET) Message-Id: <199612302351.AAA00671@helbig.informatik.ba-stuttgart.de> Date: Tue, 31 Dec 1996 00:51:57 +0100 (MET) From: Helbig@MX.BA-Stuttgart.De Reply-To: Helbig@MX.BA-Stuttgart.De To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/2331: strange output of sh's pwd on symlinked directories Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2331 >Category: bin >Synopsis: strange output of sh's pwd on symlinked directories >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 30 16:00:01 PST 1996 >Last-Modified: >Originator: Wolfgang Helbig >Organization: >Release: FreeBSD 3.0-CURRENT i386 >Environment: >Description: The shell builtin prints wrong names if you cd .. up crossing a symlinked directory. >How-To-Repeat: Assuming standard configuration, i. e. /home is a symbolic link to /usr/home: $ cd /home $ pwd /home $ cd .. $ pwd / ^ $ /bin/pwd /usr ^^^^ If you do an ls here, you get the contents of /usr and not of / as is shown by pwd. The first time I did this, I thought I've overridden / by /usr. >Fix: when in doubt, use /bin/pwd. >Audit-Trail: >Unformatted: From owner-freebsd-bugs Mon Dec 30 16:14:51 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id QAA01088 for bugs-outgoing; Mon, 30 Dec 1996 16:14:51 -0800 (PST) Received: from hydrogen.nike.efn.org (resnet.uoregon.edu [128.223.170.28]) by freefall.freebsd.org (8.8.4/8.8.4) with ESMTP id QAA01074 for ; Mon, 30 Dec 1996 16:14:45 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by hydrogen.nike.efn.org (8.8.4/8.8.4) with SMTP id QAA21422; Mon, 30 Dec 1996 16:14:34 -0800 (PST) Date: Mon, 30 Dec 1996 16:14:33 -0800 (PST) From: John-Mark Gurney X-Sender: jmg@hydrogen Reply-To: John-Mark Gurney To: Joerg Wunsch cc: freebsd-bugs@freebsd.org Subject: Re: bin/2303: cdcontrol can read to many toc entries if track numbers are large In-Reply-To: <199612301547.QAA04285@uriah.heep.sax.de> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Mon, 30 Dec 1996, J Wunsch wrote: > As John-Mark Gurney wrote: > > > > I leave it to others to see whether your patch is ok or not. However, > > > this CD does IMHO violate the specs. There must be no more than 99 > > > tracks on a CD. So better complain at their producer. :-) > > > > but there aren't more than 99 tracks... there are exactly 99 toc > > entries... and the track numbering happens to go above 99... attached is > > Eeeek. What a horrible abuse. [write a message, the with some new testing the following comes out:] gak!!! I found the real problem.... it's the cdrom drive... the drive that I use to play audio cd's is CHINON CD-ROM CDS-535 Q20... I just tried to read that same cd on a PLEXTOR CD-ROM DM-XX28 3.08... and it reports that correct number of tracks (1-99)... [and some more testing:] ahhhh.... it turns out that the chinion reports packed BCD numbers... I thought it was funny that two cd's both with 99 tracks would report 153... but if you convert 153 to hex you get 0x99... i.e. 99 tracks... hmm.. looks like I'll finally go and see if I can get a fireware upgrade for my two chinon drives... [now thinking about the problem:] hmm... should a fix like this go into the driver? i.e. an option that will convert bcd -> binary, and back for interaction with the drive... then enable it with a quirks entry? so would the above be the proper fix? as far as I can think it should be... of course I don't know the scsi code that well.. but if it is... I will see what I can do about adding the option... > > results from "echo info | cdcontrol > brk" to give you a list of the > > tracks to see that there aren't more than 99... > > I wonder why they didn't get the idea to name one of their tracks > `170'. :-)) well.. the above explains this :)... ttyl... John-Mark gurney_j@efn.org http://resnet.uoregon.edu/~gurney_j/ Modem/FAX: (541) 683-6954 (FreeBSD Box) Live in Peace, destroy Micro$oft, support free software, run FreeBSD (unix) From owner-freebsd-bugs Mon Dec 30 16:31:08 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id QAA02421 for bugs-outgoing; Mon, 30 Dec 1996 16:31:08 -0800 (PST) Received: (from steve@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id QAA02402; Mon, 30 Dec 1996 16:30:57 -0800 (PST) Date: Mon, 30 Dec 1996 16:30:57 -0800 (PST) From: Steve Price Message-Id: <199612310030.QAA02402@freefall.freebsd.org> To: steve, freebsd-bugs, steve Subject: Re: bin/2331 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: strange output of sh's pwd on symlinked directories Responsible-Changed-From-To: freebsd-bugs->steve Responsible-Changed-By: steve Responsible-Changed-When: Mon Dec 30 16:29:58 PST 1996 Responsible-Changed-Why: I got this one. After all I am probably the one that broke it. :( From owner-freebsd-bugs Mon Dec 30 17:16:40 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id RAA04361 for bugs-outgoing; Mon, 30 Dec 1996 17:16:40 -0800 (PST) Received: from bullfrog.ecpnet.com (raistlin@bullfrog.ecpnet.com [204.246.64.212]) by freefall.freebsd.org (8.8.4/8.8.4) with ESMTP id RAA04345; Mon, 30 Dec 1996 17:16:33 -0800 (PST) Received: from localhost (raistlin@localhost) by bullfrog.ecpnet.com (8.8.4/8.8.4) with SMTP id TAA00381; Mon, 30 Dec 1996 19:16:53 -0600 (CST) Date: Mon, 30 Dec 1996 19:16:53 -0600 (CST) From: raistlin To: Mike Pritchard cc: freebsd-bugs@freefall.freebsd.org Subject: Re: kern/2325: quota.user enlarged, no boot on 2.2-BETA In-Reply-To: <199612302130.NAA21813@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Mon, 30 Dec 1996, Mike Pritchard wrote: > The following reply was made to PR kern/2325; it has been noted by GNATS. > > From: Mike Pritchard > To: Andre.Albsmeier@mchp.siemens.de > Cc: FreeBSD-gnats-submit@freebsd.org > Subject: Re: kern/2325: quota.user enlarged, no boot on 2.2-BETA > Date: Mon, 30 Dec 1996 13:20:47 -0800 (PST) > > Andre Albsmeier wrote: > > > > > > >Number: 2325 > > >Category: kern > > >Synopsis: quota.user enlarged, no boot on 2.2-BETA > > >Description: > > > > I am running 2 Quantum Atlas 4GB Harddrives concatenated together to > > a big 8GB virtual disk. I have enabled userquotas on this drive and used > > edquota to configure it. This seems to work for a few days when suddenly > > booting stops at the line "Checking quotas". You see the drive's LEDs > > flickering for a while and then the machine seems to stop. However, > > pressing CTRL-C works, and the normal boot procedure continues. > > When looking in the root directory of the affected filesystems we find > > that the quota file has grown extremly: > > > > -rw-r----- 1 root operator 4294967264 Dec 2 09:30 quota.user > > > > It does not appear to occupy the space really. > > > > >How-To-Repeat: > > > > Don't know. If you want me to do some tests, tell me. This problem has also happened on my machines, and because of the large file I deleted the file and turned off the quota and started over with no problems.. I am running 2.2 also. From owner-freebsd-bugs Mon Dec 30 17:49:11 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id RAA05820 for bugs-outgoing; Mon, 30 Dec 1996 17:49:11 -0800 (PST) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.8.4/8.8.4) with ESMTP id RAA05814; Mon, 30 Dec 1996 17:49:04 -0800 (PST) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.3/8.6.9) id KAA14147; Tue, 31 Dec 1996 10:52:03 +1100 Date: Tue, 31 Dec 1996 10:52:03 +1100 From: Bruce Evans Message-Id: <199612302352.KAA14147@godzilla.zeta.org.au> To: freebsd-bugs@freefall.freebsd.org, mpp@freefall.freebsd.org Subject: Re: kern/2325: quota.user enlarged, no boot on 2.2-BETA Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > > -rw-r----- 1 root operator 4294967264 Dec 2 09:30 quota.user > > > > It does not appear to occupy the space really. > > > > >How-To-Repeat: > > > > Don't know. If you want me to do some tests, tell me. > > Check your file systems for files owned by a negative uid. > Quotacheck should probably ignore uids < 0. I just checked this (I'm not familiar with the quota code). quota.user seems to be a sparse file with one entry for each uid. There is no such thing as a negative uid, since uids have type `unsigned long'. The maximum uid of 0xffffffff should work because FreeBSD should support files larger than 4GB. However, there are or were many overflow bugs for files larger than 2GB. ufs_quota.c has two obvious ones that are relevant here: auio.uio_offset = (off_t)(id * sizeof (struct dqblk)); auio.uio_offset = (off_t)(dq->dq_id * sizeof (struct dqblk)); Here the id is unsigned long and the struct has size 64, so these calculations overflow when the id is >= 2^26 (67108864). The sparse file would need to be at least 256GB instead of a measly 4GB to correctly support id 0xffffffff. The overflow probably causes id 2^26 to be an alias for id 0. There is probably no problem except for the time that it takes to initialize the 4GB or 256GB file. You are unlikely to have any aliases for 0 or -2 (really 0xfffffffe). Bruce From owner-freebsd-bugs Mon Dec 30 18:26:30 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id SAA06882 for bugs-outgoing; Mon, 30 Dec 1996 18:26:30 -0800 (PST) Received: from ac1.acecom.com.my (ac1.acecom.com.my [202.185.117.2]) by freefall.freebsd.org (8.8.4/8.8.4) with SMTP id SAA06869 for ; Mon, 30 Dec 1996 18:26:19 -0800 (PST) Received: from lancom.acecom.com.my ([202.185.117.20]) by ac1.acecom.com.my (8.6.12/8.6.12) with ESMTP id KAA10085 for ; Tue, 31 Dec 1996 10:30:20 GMT Message-Id: <199612311030.KAA10085@ac1.acecom.com.my> From: "roslan" To: Subject: Mail Problem Date: Tue, 31 Dec 1996 10:25:11 +0800 X-MSMail-Priority: Normal X-Priority: 3 X-Mailer: Microsoft Internet Mail 4.70.1155 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk We encounter problem such as all the previous mail keep on coming-in in only one of the user mailbox. We have 'popper' running on our FreeBSD and it is configured as our DNS server and also as e-mail server. The mail is very fast accumulating in the mailbox. We afraid it will bring-down the server. We use Pegasus as our POP client. Is there any solution for this? From owner-freebsd-bugs Mon Dec 30 18:32:29 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id SAA07260 for bugs-outgoing; Mon, 30 Dec 1996 18:32:29 -0800 (PST) Received: from ac1.acecom.com.my (ac1.acecom.com.my [202.185.117.2]) by freefall.freebsd.org (8.8.4/8.8.4) with SMTP id SAA07247 for ; Mon, 30 Dec 1996 18:32:22 -0800 (PST) From: roslan@acecom.com.my Received: from lancom.acecom.com.my ([202.185.117.20]) by ac1.acecom.com.my (8.6.12/8.6.12) with SMTP id KAA10096 for ; Tue, 31 Dec 1996 10:36:23 GMT Message-Id: <199612311036.KAA10096@ac1.acecom.com.my> Comments: Authenticated sender is To: bugs@freebsd.org Date: Tue, 31 Dec 1996 10:31:27 +0000 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: e-mail problem Priority: normal X-mailer: Pegasus Mail for Win32 (v2.42a) Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hi there, We have one big problem (to us!) that in one of our user mailbox all previous mails and delivery confirmations keep on dumping-in-but only for that particular user! 'Popper' is running on our DNS and mail FreeBSD server. We use Pegasus Mail(32 bit) installed on Win95 at all our stations. Although we delete everything, the same mails still dumping-in as I'm typing this mail for you. Is there any workaround to this problem? From owner-freebsd-bugs Mon Dec 30 20:20:03 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id UAA13810 for bugs-outgoing; Mon, 30 Dec 1996 20:20:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id UAA13794; Mon, 30 Dec 1996 20:20:01 -0800 (PST) Date: Mon, 30 Dec 1996 20:20:01 -0800 (PST) Message-Id: <199612310420.UAA13794@freefall.freebsd.org> To: freebsd-bugs Cc: From: Nelson Fung Subject: Re: bin/2320: Trouble with using arrow keys to navigate in vi (FreeBSD 2.2-BETA) Reply-To: Nelson Fung Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR bin/2320; it has been noted by GNATS. From: Nelson Fung To: Joerg Wunsch Cc: freebsd-gnats-submit@FreeBSD.org, Steve Price Subject: Re: bin/2320: Trouble with using arrow keys to navigate in vi (FreeBSD 2.2-BETA) Date: Tue, 31 Dec 1996 13:12:12 +0900 (JST) On Mon, 30 Dec 1996, J Wunsch wrote: > As nfung@typhoon.co.jp wrote: > > > Can't use arrow keys to move up/down in vi. Vi keeps inserting Bs or As > > when the up (or down) arrow keys are used. > > I've only seen this for two reasons: > > . your TERM variable is wrong (e.g. your .login or .cshrc foolishly > clobbers TERM to cons25, even if you are running an xterm), or No, I've checked to ensure TERM was set correctly. > > . over the network. I think the latter problem is a known one, something > with the (n?)curses library. > Yeah! Console works fine but rsh-ing, telnet-ing into the machine (whether it's Xterm or a vt100) over the network has problems. Is this (n?)curses thing being fixed before the release? Many Thanks for your help and Happy New Year! Nelson From owner-freebsd-bugs Mon Dec 30 21:30:04 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id VAA15953 for bugs-outgoing; Mon, 30 Dec 1996 21:30:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id VAA15947; Mon, 30 Dec 1996 21:30:02 -0800 (PST) Resent-Date: Mon, 30 Dec 1996 21:30:02 -0800 (PST) Resent-Message-Id: <199612310530.VAA15947@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, smpatel@xi.omniscient.com Received: from xi.omniscient.com (root@cust55.max1.seattle.aa.net [205.199.141.55]) by freefall.freebsd.org (8.8.4/8.8.4) with ESMTP id VAA15836 for ; Mon, 30 Dec 1996 21:27:41 -0800 (PST) Received: (from smpatel@localhost) by xi.omniscient.com (8.7.5/8.6.12) id VAA00348; Mon, 30 Dec 1996 21:27:27 -0800 (PST) Message-Id: <199612310527.VAA00348@xi.omniscient.com> Date: Mon, 30 Dec 1996 21:27:27 -0800 (PST) From: Sujal Patel Reply-To: smpatel@xi.omniscient.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/2333: psm0 panics if no mouse attached. Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2333 >Category: kern >Synopsis: psm0 panics if no mouse attached. >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 30 21:30:01 PST 1996 >Last-Modified: >Originator: Sujal Patel >Organization: Sujal >Release: FreeBSD 2.2-CURRENT i386 >Environment: FreeBSD 2.2 Beta / Current >Description: Access to /dev/psm0 causes a page fault, if there is no mouse attached. >How-To-Repeat: Disconnect Mouse cat /dev/psm0 >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-bugs Mon Dec 30 21:31:51 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id VAA16033 for bugs-outgoing; Mon, 30 Dec 1996 21:31:51 -0800 (PST) Received: from mexico.brainstorm.eu.org (root@mexico.brainstorm.fr [193.56.58.253]) by freefall.freebsd.org (8.8.4/8.8.4) with ESMTP id VAA15998 for ; Mon, 30 Dec 1996 21:31:45 -0800 (PST) Received: from brasil.brainstorm.eu.org (brasil.brainstorm.fr [193.56.58.33]) by mexico.brainstorm.eu.org (8.7.5/8.7.3) with ESMTP id GAA09389; Tue, 31 Dec 1996 06:31:37 +0100 Received: (from uucp@localhost) by brasil.brainstorm.eu.org (8.6.12/8.6.12) with UUCP id GAA32092; Tue, 31 Dec 1996 06:31:17 +0100 Received: (from roberto@localhost) by keltia.freenix.fr (8.8.4/keltia-uucp-2.9) id BAA04835; Tue, 31 Dec 1996 01:44:40 +0100 (CET) Message-ID: Date: Tue, 31 Dec 1996 01:44:40 +0100 From: roberto@keltia.freenix.fr (Ollivier Robert) To: Helbig@MX.BA-Stuttgart.De Cc: freebsd-bugs@FreeBSD.ORG (FreeBSD Bugs' list) Subject: Re: bin/2331: strange output of sh's pwd on symlinked directories References: <199612302351.AAA00671@helbig.informatik.ba-stuttgart.de> X-Mailer: Mutt 0.55.04 Mime-Version: 1.0 X-Operating-System: FreeBSD 3.0-CURRENT ctm#2837 In-Reply-To: <199612302351.AAA00671@helbig.informatik.ba-stuttgart.de>; from Helbig@MX.BA-Stuttgart.De on Dec 31, 1996 00:51:57 +0100 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk According to Helbig@MX.BA-Stuttgart.De: > >Synopsis: strange output of sh's pwd on symlinked directories > >Description: > The shell builtin prints wrong names if you cd .. up crossing a > symlinked directory. It is not really a bug, jsust use a modern shell :-) Zsh, tcsh and probably bash are able to "ignore" symlinks on "..". tcsh: set symlinks=ignore zsh: setopt CHASE_LINKS (default is ignore symbolic links) -- Ollivier ROBERT -=- The daemon is FREE! -=- roberto@keltia.freenix.fr FreeBSD keltia.freenix.fr 3.0-CURRENT #33: Sat Dec 21 12:57:17 CET 1996 From owner-freebsd-bugs Mon Dec 30 22:08:33 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id WAA17166 for bugs-outgoing; Mon, 30 Dec 1996 22:08:33 -0800 (PST) Received: from time.cdrom.com (time.cdrom.com [204.216.27.226]) by freefall.freebsd.org (8.8.4/8.8.4) with ESMTP id WAA17161 for ; Mon, 30 Dec 1996 22:08:31 -0800 (PST) Received: from time.cdrom.com (localhost [127.0.0.1]) by time.cdrom.com (8.8.4/8.6.9) with ESMTP id WAA13695; Mon, 30 Dec 1996 22:07:57 -0800 (PST) To: "roslan" cc: bugs@freebsd.org Subject: Re: Mail Problem In-reply-to: Your message of "Tue, 31 Dec 1996 10:25:11 +0800." <199612311030.KAA10085@ac1.acecom.com.my> Date: Mon, 30 Dec 1996 22:07:57 -0800 Message-ID: <13691.852012477@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > We encounter problem such as all the previous mail keep on coming-in in > only one of the user mailbox. We have 'popper' running on our FreeBSD and > it is configured as our DNS server and also as e-mail server. The mail is > very fast accumulating in the mailbox. We afraid it will bring-down the > server. We use Pegasus as our POP client. > > Is there any solution for this? This is your user's fault. He has the "keep email on server" (or some such wording) option checked in his Pegasus configuration. Popper is only behaving as instructed, and I suppose another hack you guys could do would be to make popper always truncate the mailbox. Jordan From owner-freebsd-bugs Mon Dec 30 22:37:53 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id WAA18043 for bugs-outgoing; Mon, 30 Dec 1996 22:37:53 -0800 (PST) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.8.4/8.8.4) with ESMTP id WAA18037 for ; Mon, 30 Dec 1996 22:37:42 -0800 (PST) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.3/8.6.9) id RAA26286; Tue, 31 Dec 1996 17:31:04 +1100 Date: Tue, 31 Dec 1996 17:31:04 +1100 From: Bruce Evans Message-Id: <199612310631.RAA26286@godzilla.zeta.org.au> To: Helbig@MX.BA-Stuttgart.De, roberto@keltia.freenix.fr Subject: Re: bin/2331: strange output of sh's pwd on symlinked directories Cc: freebsd-bugs@FreeBSD.org Sender: owner-bugs@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk >According to Helbig@MX.BA-Stuttgart.De: >> >Synopsis: strange output of sh's pwd on symlinked directories >> >Description: >> The shell builtin prints wrong names if you cd .. up crossing a >> symlinked directory. > >It is not really a bug, jsust use a modern shell :-) It is really a bug. sh's pwd used to be equivalent to /bin/pwd. Now it is broken after `cd symlink; cd ..'. Bruce From owner-freebsd-bugs Tue Dec 31 01:30:04 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id BAA21774 for bugs-outgoing; Tue, 31 Dec 1996 01:30:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id BAA21764; Tue, 31 Dec 1996 01:30:02 -0800 (PST) Date: Tue, 31 Dec 1996 01:30:02 -0800 (PST) Message-Id: <199612310930.BAA21764@freefall.freebsd.org> To: freebsd-bugs Cc: From: J Wunsch Subject: Re: bin/2320: Trouble with using arrow keys to navigate in vi (FreeBSD 2.2-BETA) Reply-To: J Wunsch Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR bin/2320; it has been noted by GNATS. From: J Wunsch To: nfung@typhoon.co.jp (Nelson Fung) Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: bin/2320: Trouble with using arrow keys to navigate in vi (FreeBSD 2.2-BETA) Date: Tue, 31 Dec 1996 10:17:32 +0100 (MET) As Nelson Fung wrote: > Yeah! Console works fine but rsh-ing, telnet-ing into the machine > (whether it's Xterm or a vt100) over the network has problems. > > Is this (n?)curses thing being fixed before the release? It turns out to be a vi problem about the default timeout value... Try :set escapetime=10 There's a discussion in the FreeBSD mailing lists right now, i'd expect that we bump that value from 1 to 10 before the release. -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-bugs Tue Dec 31 01:51:08 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id BAA22403 for bugs-outgoing; Tue, 31 Dec 1996 01:51:08 -0800 (PST) Received: from irz301.inf.tu-dresden.de (irz301.inf.tu-dresden.de [141.76.1.11]) by freefall.freebsd.org (8.8.4/8.8.4) with SMTP id BAA22396 for ; Tue, 31 Dec 1996 01:51:03 -0800 (PST) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by irz301.inf.tu-dresden.de (8.6.12/8.6.12-s1) with ESMTP id KAA09050; Tue, 31 Dec 1996 10:51:01 +0100 Received: (from uucp@localhost) by sax.sax.de (8.6.12/8.6.12-s1) with UUCP id KAA26306; Tue, 31 Dec 1996 10:51:00 +0100 Received: (from j@localhost) by uriah.heep.sax.de (8.8.4/8.6.9) id KAA23702; Tue, 31 Dec 1996 10:30:45 +0100 (MET) From: J Wunsch Message-Id: <199612310930.KAA23702@uriah.heep.sax.de> Subject: Re: bin/2331: strange output of sh's pwd on symlinked directories To: bde@zeta.org.au (Bruce Evans) Date: Tue, 31 Dec 1996 10:30:45 +0100 (MET) Cc: Helbig@MX.BA-Stuttgart.De, roberto@keltia.freenix.fr, freebsd-bugs@FreeBSD.org Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: <199612310631.RAA26286@godzilla.zeta.org.au> from Bruce Evans at "Dec 31, 96 05:31:04 pm" X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E X-Mailer: ELM [version 2.4ME+ PL17 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-bugs@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk As Bruce Evans wrote: > >It is not really a bug, jsust use a modern shell :-) > > It is really a bug. sh's pwd used to be equivalent to /bin/pwd. Now > it is broken after `cd symlink; cd ..'. That's not a bug. That's ksh compatible now, whether you like it or not. :-} Since ksh is Posix, it cannot be a bug, by definition. :-P I always hated this ksh braindeadness where you gotta explicitly call /bin/pwd if you want the ``canonical pathname''. However, since Posix has sanctioned all bugfeatures of Mr. Korn, we have to live with this situation anyway. Our /bin/sh used to be one of the last remaining shells where the output of the builtin pwd was still similar to /bin/pwd (no surprise, since it did call /bin/pwd!). All the other remaining shells on our platform didn't do it: j@uriah 381% sh $ pwd /usr/src/sys $ j@uriah 382% ksh $ pwd /sys $ j@uriah 383% zsh uriah% pwd /sys uriah% j@uriah 384% bash bash$ pwd /sys bash$ exit (My /bin/sh still seems to be the old version. Mmmmaybe.) Speaking about shells, there used to be a pointer to a BSD version of the genuine ksh which i eventually lost. Can somebody point me again to it? -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-bugs Tue Dec 31 03:02:47 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id DAA24141 for bugs-outgoing; Tue, 31 Dec 1996 03:02:47 -0800 (PST) Received: from mexico.brainstorm.eu.org (root@mexico.brainstorm.fr [193.56.58.253]) by freefall.freebsd.org (8.8.4/8.8.4) with ESMTP id DAA24136 for ; Tue, 31 Dec 1996 03:02:43 -0800 (PST) Received: from brasil.brainstorm.eu.org (brasil.brainstorm.fr [193.56.58.33]) by mexico.brainstorm.eu.org (8.7.5/8.7.3) with ESMTP id MAA09900 for ; Tue, 31 Dec 1996 12:02:36 +0100 Received: (from uucp@localhost) by brasil.brainstorm.eu.org (8.6.12/8.6.12) with UUCP id MAA09483 for freebsd-bugs@FreeBSD.org; Tue, 31 Dec 1996 12:02:26 +0100 Received: (from roberto@localhost) by keltia.freenix.fr (8.8.4/keltia-uucp-2.9) id KAA05868; Tue, 31 Dec 1996 10:54:14 +0100 (CET) Message-ID: Date: Tue, 31 Dec 1996 10:54:14 +0100 From: roberto@keltia.freenix.fr (Ollivier Robert) To: freebsd-bugs@FreeBSD.org Subject: Re: bin/2331: strange output of sh's pwd on symlinked directories References: <199612310631.RAA26286@godzilla.zeta.org.au> X-Mailer: Mutt 0.55.15 Mime-Version: 1.0 X-Operating-System: FreeBSD 3.0-CURRENT ctm#2837 In-Reply-To: <199612310631.RAA26286@godzilla.zeta.org.au>; from Bruce Evans on Dec 31, 1996 17:31:04 +1100 Sender: owner-bugs@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk According to Bruce Evans: > It is really a bug. sh's pwd used to be equivalent to /bin/pwd. Now > it is broken after `cd symlink; cd ..'. OK, I misunderstood. The bug report still stands :-) -- Ollivier ROBERT -=- The daemon is FREE! -=- roberto@keltia.freenix.fr FreeBSD keltia.freenix.fr 3.0-CURRENT #33: Sat Dec 21 12:57:17 CET 1996 From owner-freebsd-bugs Tue Dec 31 03:40:03 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id DAA24961 for bugs-outgoing; Tue, 31 Dec 1996 03:40:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id DAA24955; Tue, 31 Dec 1996 03:40:02 -0800 (PST) Resent-Date: Tue, 31 Dec 1996 03:40:02 -0800 (PST) Resent-Message-Id: <199612311140.DAA24955@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, Received:(from nobody@localhost) by.freefall.freebsd.org.id.DAA24686;Tue; (8.8.4/8.8.4);, 31 Dec 1996 03:33:50.-0800 (PST) Message-Id: <199612311133.DAA24686@freefall.freebsd.org> Date: Tue, 31 Dec 1996 03:33:50 -0800 (PST) From: ob@partner.de To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: kern/2334: it doesn't recognise 3Com 5x9 PCMCIA Card in Toshiba Notebook T2400CT Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2334 >Category: kern >Synopsis: it doesn't recognise 3Com 5x9 PCMCIA Card in Toshiba Notebook T2400CT >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Class: support >Submitter-Id: current-users >Arrival-Date: Tue Dec 31 03:40:01 PST 1996 >Last-Modified: >Originator: Oliver Breuninger >Organization: Breuninger Software >Release: 2.1.0 >Environment: freebsd.my.domain 2.1.0-RELEASE FreeBSD 2.1.0-RELEASE #0: Thu Nov 16 10:47:14 1995 jkh@westhill.cdrom.com:/usr/src/sys/compile/GENERIC i386 >Description: The 3Com PCMCIA Ethernet-Card 3C589-B, device zp0 isn't available, dozends of configurations are probed, with irq, mem and i/o. >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-bugs Tue Dec 31 03:51:38 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id DAA25244 for bugs-outgoing; Tue, 31 Dec 1996 03:51:38 -0800 (PST) Received: from isbalham.ist.co.uk (isbalham.ist.co.uk [192.31.26.1]) by freefall.freebsd.org (8.8.4/8.8.4) with ESMTP id DAA25239 for ; Tue, 31 Dec 1996 03:51:35 -0800 (PST) Received: from gid.co.uk (uucp@localhost) by isbalham.ist.co.uk (8.8.4/8.8.4) with UUCP id LAA26008; Tue, 31 Dec 1996 11:33:08 GMT Date: Tue, 31 Dec 1996 11:17:43 GMT Received: from [194.32.164.2] by seagoon.gid.co.uk; Tue, 31 Dec 1996 11:17:43 GMT X-Sender: rb@194.32.164.1 Message-Id: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" To: freebsd-bugs@FreeBSD.org From: rb@gid.co.uk (Bob Bishop) Subject: Re: bin/2331: strange output of sh's pwd on symlinked directories Cc: Helbig@MX.BA-Stuttgart.De, roberto@keltia.freenix.fr, joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch), bde@zeta.org.au (Bruce Evans) Sender: owner-bugs@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk At 10:30 am 31/12/96, J Wunsch wrote: >As Bruce Evans wrote: > >> >It is not really a bug, jsust use a modern shell :-) >> >> It is really a bug. sh's pwd used to be equivalent to /bin/pwd. Now >> it is broken after `cd symlink; cd ..'. > >That's not a bug. That's ksh compatible now, whether you like it or >not. :-} Since ksh is Posix, it cannot be a bug, by definition. :-P > >I always hated this ksh braindeadness where you gotta explicitly call >/bin/pwd if you want the ``canonical pathname''. However, since Posix >has sanctioned all bugfeatures of Mr. Korn, we have to live with this >situation anyway. Eh? Why does /bin/sh have to take this nonsense on board? > Our /bin/sh used to be one of the last remaining >shells where the output of the builtin pwd was still similar to >/bin/pwd (no surprise, since it did call /bin/pwd!). It's for reasons like this that no-one in their right mind uses anything except /bin/sh to execute scripts (POSIX notwithstanding). Heaven knows how many scripts in the world will break if this insanity is perpetuated. I think that having pwd != /bin/pwd for /bin/sh is a *very bad idea*. -- Bob Bishop (0118) 977 4017 international code +44 118 rb@gid.co.uk fax (0118) 989 4254 between 0800 and 1800 UK From owner-freebsd-bugs Tue Dec 31 04:46:28 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id EAA27132 for bugs-outgoing; Tue, 31 Dec 1996 04:46:28 -0800 (PST) Received: from irz301.inf.tu-dresden.de (irz301.inf.tu-dresden.de [141.76.1.11]) by freefall.freebsd.org (8.8.4/8.8.4) with SMTP id EAA27113 for ; Tue, 31 Dec 1996 04:46:25 -0800 (PST) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by irz301.inf.tu-dresden.de (8.6.12/8.6.12-s1) with ESMTP id NAA21339; Tue, 31 Dec 1996 13:46:23 +0100 Received: (from uucp@localhost) by sax.sax.de (8.6.12/8.6.12-s1) with UUCP id NAA29773; Tue, 31 Dec 1996 13:46:22 +0100 Received: (from j@localhost) by uriah.heep.sax.de (8.8.4/8.6.9) id NAA24801; Tue, 31 Dec 1996 13:28:41 +0100 (MET) From: J Wunsch Message-Id: <199612311228.NAA24801@uriah.heep.sax.de> Subject: Re: bin/2331: strange output of sh's pwd on symlinked directories To: rb@gid.co.uk (Bob Bishop) Date: Tue, 31 Dec 1996 13:28:40 +0100 (MET) Cc: freebsd-bugs@FreeBSD.org (FreeBSD bugs list) Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: from Bob Bishop at "Dec 31, 96 11:17:43 am" X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E X-Mailer: ELM [version 2.4ME+ PL17 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-bugs@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk As Bob Bishop wrote: > > Our /bin/sh used to be one of the last remaining > >shells where the output of the builtin pwd was still similar to > >/bin/pwd (no surprise, since it did call /bin/pwd!). > > It's for reasons like this that no-one in their right mind uses anything > except /bin/sh to execute scripts (POSIX notwithstanding). Heaven knows how > many scripts in the world will break if this insanity is perpetuated. I > think that having pwd != /bin/pwd for /bin/sh is a *very bad idea*. You gotta live with it anyway: Posix doesn't know the concept of multiple shells. Our /bin/sh is aiming to become Posix-compliant, so your scripts should cope with this. You will never know what kind of shell your script actually hits. Remember, most Linux sites have bash as their /bin/sh. I agree that we should not _push_ divergency from traditional behaviour, but we can _tolerate_ it if it's still in the line of Posix. If scripts break by this, we have to change them. I'm not fully sure why sh's pwd is now different from /bin/pwd. If the only reason for this is that we're now using getcwd(3) instead of exec'ing pwd(1), i'm all for keeping it. The overhead of a fork/exec was terrible. Of course, the bug where `cd ..' didn't work correctly needs to be fixed, too. -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-bugs Tue Dec 31 05:40:03 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id FAA28698 for bugs-outgoing; Tue, 31 Dec 1996 05:40:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id FAA28688; Tue, 31 Dec 1996 05:40:02 -0800 (PST) Resent-Date: Tue, 31 Dec 1996 05:40:02 -0800 (PST) Resent-Message-Id: <199612311340.FAA28688@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, andersl@saaf.se Received: from taygeta.electrum.kth.se (taygeta.electrum.kth.se [130.237.14.212]) by freefall.freebsd.org (8.8.4/8.8.4) with ESMTP id FAA28615 for ; Tue, 31 Dec 1996 05:37:41 -0800 (PST) Received: (from andersl@localhost) by taygeta.electrum.kth.se (8.8.3/8.7.3) id OAA00483; Wed, 31 Dec 1997 14:25:06 +0100 (MET) Message-Id: <199712311325.OAA00483@taygeta.electrum.kth.se> Date: Wed, 31 Dec 1997 14:25:06 +0100 (MET) From: andersl@saaf.se Reply-To: andersl@saaf.se To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/2335: LC_CTYPE ignored by more Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2335 >Category: bin >Synopsis: LC_CTYPE ignored by more >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 31 05:40:01 PST 1996 >Last-Modified: >Originator: Anders Lindquist >Organization: SAAF >Release: FreeBSD 2.1.5-STABLE i386 >Environment: shell tcsh. >Description: more does not show 8-bit characters. >How-To-Repeat: taygeta: {20} cat > foo Next line some common swedish charaters öäå ÖÄÅ end. taygeta: {21} cat foo Next line some common swedish charaters öäå ÖÄÅ end. taygeta: {22} more foo Next line some common swedish charaters ^v^d^e ^V^D^E end. taygeta: {23} setenv LC_CTYPE iso_8859_1 taygeta: {24} more foo Next line some common swedish charaters ^v^d^e ^V^D^E end. >Fix: more in binary form from BSDI works correctly, when the source code from BSDI is compiled on FreeBSD the problem reapears. This points to a problem in some library. >Audit-Trail: >Unformatted: From owner-freebsd-bugs Tue Dec 31 08:50:05 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id IAA06487 for bugs-outgoing; Tue, 31 Dec 1996 08:50:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id IAA06481; Tue, 31 Dec 1996 08:50:03 -0800 (PST) Resent-Date: Tue, 31 Dec 1996 08:50:03 -0800 (PST) Resent-Message-Id: <199612311650.IAA06481@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, Received:(from nobody@localhost) by.freefall.freebsd.org.id.IAA06246;Tue; (8.8.4/8.8.4);, 31 Dec 1996 08:44:55.-0800 (PST) Message-Id: <199612311644.IAA06246@freefall.freebsd.org> Date: Tue, 31 Dec 1996 08:44:55 -0800 (PST) From: 346rbkk@cmich.edu To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: misc/2337: Can't use a deleted DOS logical drive, can't boot (with Promise EIDE Max disk controller) Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2337 >Category: misc >Synopsis: Can't use a deleted DOS logical drive, can't boot (with Promise EIDE Max disk controller) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 31 08:50:01 PST 1996 >Last-Modified: >Originator: Sing-Cheong Ong >Organization: Central Michigan University >Release: 2.1.6 >Environment: >Description: First I tried to install Free BSD on my 486, without success, it did't even boot up. I guess it has been the Promise EIDE Max disk controller, which I need for a 1.2 gb drive. The computer is a Laser 486SX/2 made by VTECH. It came with 2 mb ram, upgraded to 12 mb. It had a 102 mb Seagate hdd, upgraded to Western Digital 1.2 gb hdd. The processor is an Intel 486/DX4 75mhz over drive. When I turned on the computer, it just stuck with the floppy drive light on and no response. That is after it checks through the BIOS and IRQ for the controller. Then I tried to install Free BSD into a logical drive deleted from the DOS extended partition on my new Pentium 133 mhz. But Free BSD can't make use of it. Linux lists all the DOS logical drives, and when one or more is deleted, it allows the creation of a partition for Linux, whereas Free BSD does not list logical drives in the extended DOS partition, so when a DOS logical drive is deleted, the extended DOS partition is still of the same size. (I partition large drives into small, around 250 mb logical drives, under DOS, so that the alocation units would be smaller, 4k instead of 16k or even 32k, and wasting huge overhangs. I installed Linux in a deleted DOS logical drive on the 486 mentioned above, with no problem whatsoever, with that same Promise EIDE Max controller. My new one also has Linux running and X windows also just like the old one.) I guess what this amounts to is that Free BSD can't be installed in a DOS logical drive in the DOS extended partition, but Linux can. Am I right? If this is the case, one of the improvements Free BSD can make is to make this possible, as Linux does. I am confident that this second attempt will work if I back everything up and repartition the drive, or get another drive. But it will be nice if the way I have tried works also. Thank you for your attetion. Happy holidays! Sing-Cheong Ong >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-bugs Tue Dec 31 10:50:05 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id KAA13395 for bugs-outgoing; Tue, 31 Dec 1996 10:50:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id KAA13389; Tue, 31 Dec 1996 10:50:03 -0800 (PST) Date: Tue, 31 Dec 1996 10:50:03 -0800 (PST) Message-Id: <199612311850.KAA13389@freefall.freebsd.org> To: freebsd-bugs Cc: From: "Eric L. Hernes" Subject: Re: misc/2321: installation panic before going to past-install menu Reply-To: "Eric L. Hernes" Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR misc/2321; it has been noted by GNATS. From: "Eric L. Hernes" To: "Jordan K. Hubbard" Cc: jin@iss-p1.lbl.gov, FreeBSD-gnats-submit@freebsd.org, erich@freebsd.org Subject: Re: misc/2321: installation panic before going to past-install menu Date: Tue, 31 Dec 1996 12:39:16 -0600 "Jordan K. Hubbard" writes: >> ASUS P/I-P55TVP4/200MHz + 3Com 3C509B ethernet card + NCR SCSI >> with -c option "irq ep0 15" >> >> >Description: >> >> -----------------Information Dialog----------------- >> Saving any boot -c changes to new kernel ... panic: Going nowhere with >out my init! > >Ouch! Looks like it's dying somewhere in the code which copies >userconfig changes from the boot kernel to the installed kernel. > >This may prove "interesting" to debug (I'll try your exact set of -c >changes for now) so I may end up just adding an option for turning >this behavior off (on by default) if I can't fix it. Needless to say, >this doesn't happen on any of my test machines (I have to tweak ed0 on >most of my test boxes, in fac) and may be difficult to reproduce. > Oh no, they're comming out of the woodwork :( I've got NCR and a 509 in my test box, but it's set to irq 10, the high ones usually get nabbed by the pci bus. I seen where the machine wouldn't boot, or the 509 wouldn't work for sour owl shit, but it shouldn't kill sysinstall. The irq is stored as a bitmask of the n'th bit for irq n, so irq 15 is (1<<15) (maybe +/- 1) This could be a sign error or just too few bits in the datatype... I don't think I've ever stuck an ISA card at 15, I'll look on thursday... >Also strange that no one else has reported this! Hmmmm. I don't think anything changed between Oct and now that would cause these problems... > > Jordan happy new year! eric. From owner-freebsd-bugs Tue Dec 31 11:30:05 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id LAA15733 for bugs-outgoing; Tue, 31 Dec 1996 11:30:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id LAA15718; Tue, 31 Dec 1996 11:30:02 -0800 (PST) Date: Tue, 31 Dec 1996 11:30:02 -0800 (PST) Message-Id: <199612311930.LAA15718@freefall.freebsd.org> To: freebsd-bugs Cc: From: George Simunovich Subject: Re: kern/2270: Hayes ESP serial card locks system as of 12/01 ke Reply-To: George Simunovich Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR kern/2270; it has been noted by GNATS. From: George Simunovich To: Bruce Evans Cc: freebsd-gnats-submit@freebsd.org Subject: Re: kern/2270: Hayes ESP serial card locks system as of 12/01 ke Date: Tue, 31 Dec 1996 11:58:07 -0700 (MST) Ok, here is new "development". I recompiled a kernel, without any changes to the code, and included the kernel debugger, "DDB". I then booted the new kernel with the switches "-sd". I think I'll show you what I did... db>break siostop db>c #cat > /dev/cuaa2 ^D db>c db>c db>c # It doesn't lock up. I can do this over and over again without any problems. Unfortunatly, going back into the debugger and deleteing the breakpoint at siostop and trying the cat again, it completely locks up again. I'm very confused. On 28-Dec-96 Bruce Evans wrote: >Look at the magic outb for the ESP case near line 902. This sets the >FIFO_RCV_RST and FIFO_XMT_RST bits in combination with the FIFO_DMA_MODE >bit. I don't know what this does (I don't have any documentation about >the ESP). The author of the ESP changes said that the DMA bit doesn't >have anything to do with DMA. Apparently the reset bits aren't for reset >either. While looking through the ESP information I found at ftp.hayes.com I found this: Operating in UART Compatibility Mode at 115,200 or 230,400 Bit/s ------------------------------------------------------------ To operate in UART Compatibility Mode at 115,200 or 230,400 bit/s, follow these steps: Step 1: Determine if any of the COM1 through COM4 ports is an ESP Communications Accelerator Version 2.0 port. This can be done by searching through the valid M aster/Slave I/O addresses as follows: * Read the Base I/O address and look for the signature 0F3h. If the value is found, issue the Get Self Test Results (01h) command and mask off all bits except for bits 4, 5, and 6 (the hardware type bits). The first version of the COM-bic chip will have a value of 010. * Issue the Get Compatibility Mode DIP Switch (02h) command. Bits 0 and 1 to identify the COM designation. Step 2: Repeat the above steps for all master I/O addresses and any slaves that are associated with a found master. Step 3: Do the 'normal' 16550 initialization. Step 4: Enable the FIFOs at the UART FIFO Control Register, FCR, bit 0. Note: Due to a problem with the receive trigger level enable in UART mode the DM A mode select bit (bit 3) should also be set when enabling the FIFO's. Step 5: Scale the UART trigger levels using the Set Mode (10h) command CMD2, bit 7. You can significantly reduce the number of interrupts by scaling the trigger levels to 1, 64, 256, and 512 bytes. While issuing the Set Mode command, CMD2 b it 1 should be set to ensure that the Compatibility Mode UART FIFOs are enabled. Step 6: Issue the Set Flow Control Type (08h) command for the type of flow contr ol desired. Step 7: Issue the Set Rx Flow Control (0Ah) command to set the flow control leve ls. Step 8: For Hardware Flow Control, set the appropriate bits (0 and 1) in the UAR T Modem Control Register (MCR) to turn on RTS and DTR. Step 9: Set the bit/s rate. If 230,400 bit/s is desired, set the bit/s to 115,20 0 and issue the Set UART Clock ESI Prescaler (23h) command with a value of 01. Step 10: The interrupt service routine should probably be altered to take advant age of transmit and receive buffers that are 1KB each. Note: For software flow control, there are two ESI commands available that flow on and off the local transmitter. The note for Step 4 is interresting and explains setting the DMA bit for the magic outb??? Back to my random changes to sio.c.... George ------------------------------------ George Simunovich From owner-freebsd-bugs Tue Dec 31 11:30:08 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id LAA15748 for bugs-outgoing; Tue, 31 Dec 1996 11:30:08 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id LAA15732; Tue, 31 Dec 1996 11:30:05 -0800 (PST) Resent-Date: Tue, 31 Dec 1996 11:30:05 -0800 (PST) Resent-Message-Id: <199612311930.LAA15732@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, deobrien@ucdavis.edu Received: from guilder.ucdavis.edu (root@guilder.ucdavis.edu [128.120.8.181]) by freefall.freebsd.org (8.8.4/8.8.4) with ESMTP id LAA15559; Tue, 31 Dec 1996 11:28:00 -0800 (PST) Received: from dragon.nuxi.com by guilder.ucdavis.edu (8.8.3/UCD3.8.1) id LAA24617; Tue, 31 Dec 1996 11:27:56 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.8.4/8.7.3) id LAA04185; Tue, 31 Dec 1996 11:27:54 -0800 (PST) Message-Id: <199612311927.LAA04185@dragon.nuxi.com> Date: Tue, 31 Dec 1996 11:27:54 -0800 (PST) From: obrien@freebsd.org Reply-To: deobrien@ucdavis.edu To: FreeBSD-gnats-submit@freebsd.org Cc: obrien@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/2338: /usr/share/sgml/* files missing in 2.2-BETA Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2338 >Category: bin >Synopsis: /usr/share/sgml/* files missing in 2.2-BETA >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 31 11:30:03 PST 1996 >Last-Modified: >Originator: David O'Brien >Organization: >Release: FreeBSD 2.2-BETA_A i386 >Environment: Custom install of 2.2-BETA >Description: My /usr/share/sgml is unpopulated. I found this out when trying to general the HTML version of manual for the mutt port. This generates fine on Thud. sgmlfmt tells me that /usr/share/sgml/FreeBSD/linuxdoc.dcl is missing. I installed the bin, manpages, dict, doc, proflibs, compat21, kernel src, and most of XFree86 bits. Did I not install the write dists??? Using "cat *.?? | tar tvfz - | grep sgml" it seems this should have been part of the basic bin dist, since the directory is at least in the tarball. >How-To-Repeat: "cat *.?? | tar tvfz - | grep sgml" >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-bugs Tue Dec 31 12:00:03 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id MAA18412 for bugs-outgoing; Tue, 31 Dec 1996 12:00:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id MAA18384; Tue, 31 Dec 1996 12:00:01 -0800 (PST) Date: Tue, 31 Dec 1996 12:00:01 -0800 (PST) Message-Id: <199612312000.MAA18384@freefall.freebsd.org> To: freebsd-bugs Cc: From: "Jin Guojun[ITG]" Subject: Re: misc/2321: installation panic before going to past-install menu Reply-To: "Jin Guojun[ITG]" Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR misc/2321; it has been noted by GNATS. From: "Jin Guojun[ITG]" To: erich@lodgenet.com, jkh@time.cdrom.com Cc: FreeBSD-gnats-submit@freebsd.org, erich@freebsd.org Subject: Re: misc/2321: installation panic before going to past-install menu Date: Tue, 31 Dec 1996 11:52:49 -0800 > Oh no, they're comming out of the woodwork :( I've got NCR and a 509 > in my test box, but it's set to irq 10, the high ones usually get > nabbed by the pci bus. I seen where the machine wouldn't boot, or > the 509 wouldn't work for sour owl shit, but it shouldn't kill > sysinstall. The irq is stored as a bitmask of the n'th bit for > irq n, so irq 15 is (1<<15) (maybe +/- 1) This could be a sign error > or just too few bits in the datatype... I don't think I've ever stuck > an ISA card at 15, I'll look on thursday... There is a problem (I think in the NCR bios) which causes NCR controller to use irq 10 as default. That is why you cannot use irq 10 for 3C509 with NCR SCSI controller. irq 15 is used for the secondary IDE controller. Most people will not use the secondary IDE controller. This give you one more irq if you used all PCI slots. Disable the secondary IDE controller from BIOS or not, you always can use irq 15 as long as there is no device connected to the secondary IDE bus. This is not a problem. :-) Happy New Year! -Jin From owner-freebsd-bugs Tue Dec 31 13:00:04 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id NAA21133 for bugs-outgoing; Tue, 31 Dec 1996 13:00:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id NAA21113; Tue, 31 Dec 1996 13:00:01 -0800 (PST) Date: Tue, 31 Dec 1996 13:00:01 -0800 (PST) Message-Id: <199612312100.NAA21113@freefall.freebsd.org> To: freebsd-bugs Cc: From: "Jordan K. Hubbard" Subject: Re: misc/2337: Can't use a deleted DOS logical drive, can't boot (with Promise EIDE Max disk controller) Reply-To: "Jordan K. Hubbard" Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR misc/2337; it has been noted by GNATS. From: "Jordan K. Hubbard" To: 346rbkk@cmich.edu Cc: freebsd-gnats-submit@freebsd.org Subject: Re: misc/2337: Can't use a deleted DOS logical drive, can't boot (with Promise EIDE Max disk controller) Date: Tue, 31 Dec 1996 12:58:21 -0800 > amounts to is that Free BSD can't be installed in a DOS logical drive > in the DOS extended partition, but Linux can. Am I right? If this is > the case, one of the improvements Free BSD can make is to make this Correct. Jordan From owner-freebsd-bugs Tue Dec 31 13:01:02 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id NAA21178 for bugs-outgoing; Tue, 31 Dec 1996 13:01:02 -0800 (PST) Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id MAA21021; Tue, 31 Dec 1996 12:58:52 -0800 (PST) Date: Tue, 31 Dec 1996 12:58:52 -0800 (PST) From: "Jordan K. Hubbard" Message-Id: <199612312058.MAA21021@freefall.freebsd.org> To: 346rbkk@cmich.edu, jkh, freebsd-bugs Subject: Re: misc/2337 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Can't use a deleted DOS logical drive, can't boot (with Promise EIDE Max disk controller) State-Changed-From-To: open-closed State-Changed-By: jkh State-Changed-When: Tue Dec 31 12:58:29 PST 1996 State-Changed-Why: FreeBSD does not support installing into a DOS extended partition and probably never will, sorry! :( From owner-freebsd-bugs Tue Dec 31 15:20:07 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id PAA29718 for bugs-outgoing; Tue, 31 Dec 1996 15:20:07 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id PAA29694; Tue, 31 Dec 1996 15:20:03 -0800 (PST) Resent-Date: Tue, 31 Dec 1996 15:20:03 -0800 (PST) Resent-Message-Id: <199612312320.PAA29694@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, gbuchanan@sympatico.ca Received: from localhost (ppp1754.on.sympatico.ca [206.172.228.26]) by freefall.freebsd.org (8.8.4/8.8.4) with SMTP id PAA29505 for ; Tue, 31 Dec 1996 15:10:40 -0800 (PST) Received: (from gardner@localhost) by localhost (8.6.12/8.6.12) id SAA01006; Tue, 31 Dec 1996 18:10:02 -0500 Message-Id: <199612312310.SAA01006@localhost> Date: Tue, 31 Dec 1996 18:10:02 -0500 From: gbuchanan@sympatico.ca Reply-To: gbuchanan@sympatico.ca To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/2339: ex/vi/nex/nvi incorrect handling of -- arg Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2339 >Category: bin >Synopsis: ex/vi/nex/nvi incorrect handling of -- arg >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 31 15:20:02 PST 1996 >Last-Modified: >Originator: Gardner Buchanan >Organization: >Release: FreeBSD 2.1-STABLE i386 >Environment: Seen in 2.1-RELEASE, 2.1.6-RELEASE >Description: nvi and friends do something weird when asked to edit a file whose name begins with a plus (+). This is as a result of some broken code which nominally handles compatibility with the original vi's handling of +options. >How-To-Repeat: Do this: vi -- +x You will be editing a file called "-cx". Certainly not what you would expect. Doing: vi +x Does something unexpected too, but in the spirit of getopt(3), the -- should protect me from that, and it doesn't. >Fix: Apply this patch to /usr/src/usr.bin/vi/common/main.c ------------------------------------------------------------------------ *** main.c.old Tue Dec 31 17:50:52 1996 --- main.c Tue Dec 31 17:58:49 1996 *************** *** 677,687 **** * Translate old style arguments into something getopt will like. * Make sure it's not text space memory, because ex changes the * strings. * Change "+" into "-c$". * Change "+" into "-c". * Change "-" into "-s" */ ! while (*++argv) if (argv[0][0] == '+') { if (argv[0][1] == '\0') { MALLOC_NOMSG(NULL, argv[0], char *, 4); --- 677,693 ---- * Translate old style arguments into something getopt will like. * Make sure it's not text space memory, because ex changes the * strings. + * Leave anything after "--" alone. (Like getopt(3)) * Change "+" into "-c$". * Change "+" into "-c". * Change "-" into "-s" */ ! while (*++argv) { ! if (argv[0][0] == '-' && ! argv[0][1] == '-' && ! argv[0][2] == '\0') ! break; ! if (argv[0][0] == '+') { if (argv[0][1] == '\0') { MALLOC_NOMSG(NULL, argv[0], char *, 4); *************** *** 704,709 **** --- 710,716 ---- err(1, NULL); (void)strcpy(argv[0], "-s"); } + } } static void ------------------------------------------------------------------------ Have fun. ============================================ Gardner Buchanan Ottawa, ON >Audit-Trail: >Unformatted: From owner-freebsd-bugs Tue Dec 31 17:56:18 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id RAA07137 for bugs-outgoing; Tue, 31 Dec 1996 17:56:18 -0800 (PST) Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id RAA07116; Tue, 31 Dec 1996 17:56:12 -0800 (PST) Date: Tue, 31 Dec 1996 17:56:12 -0800 (PST) From: "Jordan K. Hubbard" Message-Id: <199701010156.RAA07116@freefall.freebsd.org> To: deobrien@ucdavis.edu, jkh, freebsd-bugs Subject: Re: bin/2338 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: /usr/share/sgml/* files missing in 2.2-BETA State-Changed-From-To: open-closed State-Changed-By: jkh State-Changed-When: Tue Dec 31 17:56:04 PST 1996 State-Changed-Why: Fixed. From owner-freebsd-bugs Tue Dec 31 23:50:04 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id XAA17564 for bugs-outgoing; Tue, 31 Dec 1996 23:50:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id XAA17549; Tue, 31 Dec 1996 23:50:02 -0800 (PST) Resent-Date: Tue, 31 Dec 1996 23:50:02 -0800 (PST) Resent-Message-Id: <199701010750.XAA17549@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, Received:(from nobody@localhost) by.freefall.freebsd.org.id.XAA17356;Tue; (8.8.4/8.8.4);, 31 Dec 1996 23:40:37.-0800 (PST) Message-Id: <199701010740.XAA17356@freefall.freebsd.org> Date: Tue, 31 Dec 1996 23:40:37 -0800 (PST) From: andrew@ugh.net.au To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: docs/2341: install.txt contains refs to 2.1 Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2341 >Category: docs >Synopsis: install.txt contains refs to 2.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 31 23:50:01 PST 1996 >Last-Modified: >Originator: Andretevenson >Organization: >Release: 2.2-BETA >Environment: FreeBSD sally.ugh.net.au 2.2-BETA_A FreeBSD 2.2-BETA_A #0: Tue Dec 24 03:41:49 1996 jkh@time.cdrom.com:/usr/src/sys/compile/GENERIC i386 >Description: install.txt in 2.2-BETA still mentions 2.1-RELEASE when it apparently should say 2.2-RELEASE. >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-bugs Tue Dec 31 23:50:05 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id XAA17576 for bugs-outgoing; Tue, 31 Dec 1996 23:50:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id XAA17561; Tue, 31 Dec 1996 23:50:03 -0800 (PST) Resent-Date: Tue, 31 Dec 1996 23:50:03 -0800 (PST) Resent-Message-Id: <199701010750.XAA17561@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, Received:(from nobody@localhost) by.freefall.freebsd.org.id.XAA17493;Tue; (8.8.4/8.8.4);, 31 Dec 1996 23:48:10.-0800 (PST) Message-Id: <199701010748.XAA17493@freefall.freebsd.org> Date: Tue, 31 Dec 1996 23:48:10 -0800 (PST) From: andrew@ugh.net.au To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: conf/2342: ppp in installer uses wrong device Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2342 >Category: conf >Synopsis: ppp in installer uses wrong device >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 31 23:50:02 PST 1996 >Last-Modified: >Originator: Andrew Stevenson >Organization: >Release: 2.2-BETA >Environment: FreeBSD sally.ugh.net.au 2.2-BETA_A FreeBSD 2.2-BETA_A #0: Tue Dec 24 03:41:49 1996 jkh@time.cdrom.com:/usr/src/sys/compile/GENERIC i386 >Description: Even if you choose PPP on sio2 (or whatever) in sysinstall you still have to say set device /dev/cuaa2 in ppp. The default is always /dev/cuaa0. New users wont know why their modems dont respond. >How-To-Repeat: Do a PPP install on a port other than sio0. >Fix: >Audit-Trail: >Unformatted: