From owner-freebsd-bugs Sun Aug 2 04:20:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA02098 for freebsd-bugs-outgoing; Sun, 2 Aug 1998 04:20:12 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA02032 for ; Sun, 2 Aug 1998 04:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA26283; Sun, 2 Aug 1998 04:20:01 -0700 (PDT) Received: from tim.xenologics.com (tim.xenologics.com [194.77.5.24]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA01809 for ; Sun, 2 Aug 1998 04:18:17 -0700 (PDT) (envelope-from seggers@semyam.dinoco.de) Received: (from uucp@localhost) by tim.xenologics.com (8.8.5/8.8.8) with UUCP id NAA27738 for FreeBSD-gnats-submit@freebsd.org; Sun, 2 Aug 1998 13:14:20 +0200 (MET DST) Received: (from seggers@localhost) by semyam.dinoco.de (8.8.8/8.8.8) id NAA02076; Sun, 2 Aug 1998 13:12:18 +0200 (CEST) (envelope-from seggers) Message-Id: <199808021112.NAA02076@semyam.dinoco.de> Date: Sun, 2 Aug 1998 13:12:18 +0200 (CEST) From: Stefan Eggers Reply-To: seggers@semyam.dinoco.de To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: seggers@semyam.dinoco.de X-Send-Pr-Version: 3.2 Subject: bin/7469: ppp uses freed memory on quit from prompt Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7469 >Category: bin >Synopsis: ppp uses freed memory on quit from prompt >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Aug 2 04:20:00 PDT 1998 >Last-Modified: >Originator: Stefan Eggers >Organization: none >Release: FreeBSD 3.0-CURRENT i386 >Environment: -current system cvsup'ed on Friday, PPP source updated to the most current from a few minutes ago to see if the bug is fixed there. >Description: I start ppp with "ppp xnc" where xnc is the label I gave my provider's entry in /etc/ppp/ppp.conf. Not doing anything else at the prompt I quit it. Core dump. This is with /etc/malloc.conf set to AJ. A very useful setting I turned on just a few minutes ago. ;-) >How-To-Repeat: Set /etc/malloc.conf to AJ (which means make a soft link named /etc/malloc.conf pointing to AJ; see malloc(3)) and then try the above mentioned sequence with ppp. >Fix: I looked around for a cause and after some reading of the source I found out that on a "quit" command the promptlist entry which is associated with the command line gets unregistered and deallocated. This causes the promptlist in log.c to change. The problem is that the loop you see below gets from one entry on the list to the next. When it gets to the one for the command line the call to descriptor_Read() will process the "quit" command. This in turn will deallocate the entry p is pointing to. Now trying to get to the next entry is an illegal operation which just works because no other function overwrote the already free memory. The most general solution would be to restart the whole loop after calling descriptor_Read(), i.e. do a "p = log_PromptList(); continue;" at that point. This will prevent similar problems with other callbacks which might changewith promptlist. I didn't fix it this way because I don't know what implica- tions this might have on other parts of the program. Thus I fixed it this way which works for me: Index: server.c =================================================================== RCS file: /usr2/FreeBSD/CVSROOT/src/usr.sbin/ppp/server.c,v retrieving revision 1.22 diff -u -r1.22 server.c --- server.c 1998/06/27 14:18:10 1.22 +++ server.c 1998/08/02 10:52:18 @@ -95,7 +95,7 @@ struct sockaddr *sa = (struct sockaddr *)hisaddr; struct sockaddr_in *in = (struct sockaddr_in *)hisaddr; int ssize = ADDRSZ, wfd; - struct prompt *p; + struct prompt *p, *pnxt; if (s->fd >= 0 && FD_ISSET(s->fd, fdset)) { wfd = accept(s->fd, sa, &ssize); @@ -152,9 +152,12 @@ } } - for (p = log_PromptList(); p; p = p->next) + for (p = log_PromptList(); p; p = pnxt) + { + pnxt = p->next; if (descriptor_IsSet(&p->desc, fdset)) descriptor_Read(&p->desc, bundle, fdset); + } } static int >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Aug 2 14:40:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA22345 for freebsd-bugs-outgoing; Sun, 2 Aug 1998 14:40:05 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA22331 for ; Sun, 2 Aug 1998 14:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA08700; Sun, 2 Aug 1998 14:40:01 -0700 (PDT) Received: from Octopussy.MI.Uni-Koeln.DE (Octopussy.MI.Uni-Koeln.DE [134.95.166.20]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA21966 for ; Sun, 2 Aug 1998 14:32:36 -0700 (PDT) (envelope-from se@dialup124.zpr.uni-koeln.de) Received: from dialup124.zpr.Uni-Koeln.DE (dialup124.zpr.Uni-Koeln.DE [134.95.219.124]) by Octopussy.MI.Uni-Koeln.DE (8.8.8/8.8.8) with ESMTP id XAA09779 for ; Sun, 2 Aug 1998 23:32:20 +0200 (MET DST) Received: (from se@localhost) by dialup124.zpr.Uni-Koeln.DE (8.8.8/8.6.9) id XAA01039; Sun, 2 Aug 1998 23:24:20 +0200 (CEST) Message-Id: <199808022124.XAA01039@dialup124.zpr.Uni-Koeln.DE> Date: Sun, 2 Aug 1998 23:24:20 +0200 (CEST) From: Stefan Esser Reply-To: se@dialup124.zpr.uni-koeln.de To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: kern/7474: soft-updates: fsck doesn't fix link count Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7474 >Category: kern >Synopsis: soft-updates: fsck doesn't fix link count >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Aug 2 14:40:01 PDT 1998 >Last-Modified: >Originator: Stefan Esser >Organization: >Release: FreeBSD 3.0-CURRENT i386 >Environment: 3.0-current with CAM + Soft-Updates >Description: [The fix to this problem is most probably to be applied to fsck, not the kernel, but since this PR is about a file system problem, I consider "kern" to be the best category ...] Since I'm using an experimental NCR driver with CAM patches, I have suffered from some instabilities (the system freezes). This is to be expected, giving the experimental state of the driver sources, but I observed several times, that a file that had just been modified or moved, ***came out with a link count 1 too high*** after fsck finished its job. The last hang occured during a "make install" in the kernel build directory, and I cound that the old kernel had already been renamed, but the new one had to be re-connected (its directory entry did not make it to disk in time, but all its blocks had already been written to safe storage ...) I deleted the contents of lost+found, but no disk blocks were freed. A later reboot to single-user and fsck offered to re-connect the kernel (and kvm_kernel.db) again (with a link count of 1). I do not remember the actual circumstances of the first occurence of this link-count bug, but I had performed two "fsck" in sequence, and the second one complained about a link count of 2 (should be 1), even though the previous one seemed to have cleaned up the file system. >How-To-Repeat: Interrupt disk operations on a system with soft-updates enabled while a file is (e.g.) copied from one file-system to another. Check the results of fsck. Look at the link count of the file that has been re-connected (assuming that there actually was a file to reconnect ;-) >Fix: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Aug 2 22:00:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA26068 for freebsd-bugs-outgoing; Sun, 2 Aug 1998 22:00:07 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA26032 for ; Sun, 2 Aug 1998 22:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA17676; Sun, 2 Aug 1998 22:00:01 -0700 (PDT) Received: from ns.altadena.net (ns.altadena.net [206.126.144.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA25943 for ; Sun, 2 Aug 1998 21:58:55 -0700 (PDT) (envelope-from pete@ns.altadena.net) Received: (from pete@localhost) by ns.altadena.net (8.9.1/8.8.6) id VAA02596; Sun, 2 Aug 1998 21:58:31 -0700 (PDT) Message-Id: <199808030458.VAA02596@ns.altadena.net> Date: Sun, 2 Aug 1998 21:58:31 -0700 (PDT) From: pete@altadena.net Reply-To: pete@altadena.net To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: bin/7475: IPFW problem Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7475 >Category: bin >Synopsis: IPFW fails to load a file on boot >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Aug 2 22:00:00 PDT 1998 >Last-Modified: >Originator: Pete Carah >Organization: Altadena Internet >Release: FreeBSD 2.2.7-STABLE i386 >Environment: Multiple interfaces, using IPFW for policy >Description: Using a filename as argument to firewall_type in rc.conf, results in a boot failure because ipfw will not accept a -q option if a filename is given. I have worked around this by replacing the last line in rc.firewall with ipfw ${firewall_type} How-To-Repeat: See Description >Fix: The first time I ran into this I did a minor rewrite to ipfw so it would parse arguments correctly; it currently uses getopt improperly. Then I did a make world and lost my fixes :-( The removal of -q from that last command line, and redirect of stdin from /dev/null at least works around the problem, though it isn't a real fix. >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Aug 2 23:35:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA05737 for freebsd-bugs-outgoing; Sun, 2 Aug 1998 23:35:39 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA05718; Sun, 2 Aug 1998 23:35:25 -0700 (PDT) (envelope-from nectar@FreeBSD.org) From: Jacques Vidrine Received: (from nectar@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA20191; Sun, 2 Aug 1998 23:35:25 -0700 (PDT) Date: Sun, 2 Aug 1998 23:35:25 -0700 (PDT) Message-Id: <199808030635.XAA20191@freefall.freebsd.org> To: brandon@cold.org, nectar@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/3386 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: kernel 'config' wrapper 'doconfig' ala Digital Unix's doconfig State-Changed-From-To: open-closed State-Changed-By: nectar State-Changed-When: Sun Aug 2 23:34:59 PDT 1998 State-Changed-Why: Committed as ports/sysutils/doconfig. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Aug 3 01:31:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA18848 for freebsd-bugs-outgoing; Mon, 3 Aug 1998 01:31:36 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from mail.jet.es (jet.es [194.179.100.15]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA18830; Mon, 3 Aug 1998 01:31:30 -0700 (PDT) (envelope-from info@rsmeurope.com) From: info@rsmeurope.com Received: from saleswise-srv.jet.es (info659.jet.es [194.224.182.149]) by mail.jet.es (8.8.8/8.8.5) with SMTP id IAA02656; Mon, 3 Aug 1998 08:16:41 -0100 (GMT) Date: Mon, 3 Aug 1998 08:16:41 -0100 (GMT) To: Subject: Last minute holidays!! Message-Id: Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org As someone who has previously shown an interest in holidays on Spain's Costa del Sol we thought you might like to visit our latest WEB site relating to rental accommodation on the Costa del Sol, the Canaries and other areas of touristic interest, including the USA. We still have space available for August, so it is not too late! Best regards, Reservations Centre, http://www.rsmeurope.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Aug 3 02:21:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA24636 for freebsd-bugs-outgoing; Mon, 3 Aug 1998 02:21:18 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA24627; Mon, 3 Aug 1998 02:21:11 -0700 (PDT) (envelope-from yokota@FreeBSD.org) From: Kazutaka YOKOTA Received: (from yokota@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA25055; Mon, 3 Aug 1998 02:21:10 -0700 (PDT) Date: Mon, 3 Aug 1998 02:21:10 -0700 (PDT) Message-Id: <199808030921.CAA25055@freefall.freebsd.org> To: kh@mogami-wire.co.jp, yokota@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/6037 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: inconsistency between kbdcontrol(1) and syscons device driver. State-Changed-From-To: open-closed State-Changed-By: yokota State-Changed-When: Mon Aug 3 02:20:46 PDT 1998 State-Changed-Why: Fixed in syscons.c 1.268 and kbdcontrol.c 1.15. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Aug 3 02:22:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA24874 for freebsd-bugs-outgoing; Mon, 3 Aug 1998 02:22:10 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA24826; Mon, 3 Aug 1998 02:22:05 -0700 (PDT) (envelope-from yokota@FreeBSD.org) From: Kazutaka YOKOTA Received: (from yokota@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA25144; Mon, 3 Aug 1998 02:22:04 -0700 (PDT) Date: Mon, 3 Aug 1998 02:22:04 -0700 (PDT) Message-Id: <199808030922.CAA25144@freefall.freebsd.org> To: dmorrisn@u.washington.edu, yokota@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/6188 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: screensaver permanently active when no bounds checking for blanktime in sysinstall State-Changed-From-To: open-closed State-Changed-By: yokota State-Changed-When: Mon Aug 3 02:21:16 PDT 1998 State-Changed-Why: Fixed in syscons.c 1.269 rather than in vidcontrol as suggested in the PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Aug 3 02:23:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA25371 for freebsd-bugs-outgoing; Mon, 3 Aug 1998 02:23:53 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA25306; Mon, 3 Aug 1998 02:23:38 -0700 (PDT) (envelope-from yokota@FreeBSD.org) From: Kazutaka YOKOTA Received: (from yokota@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA25235; Mon, 3 Aug 1998 02:23:37 -0700 (PDT) Date: Mon, 3 Aug 1998 02:23:37 -0700 (PDT) Message-Id: <199808030923.CAA25235@freefall.freebsd.org> To: ekarkkai@hit.fi, yokota@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/2977 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: After enabling moused and vidcontrol and useing mouse screen goes randomly blank for a moment State-Changed-From-To: analyzed-closed State-Changed-By: yokota State-Changed-When: Mon Aug 3 02:22:15 PDT 1998 State-Changed-Why: The PR originator reported that 2.2.7 doesn't have the problem. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Aug 3 02:35:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA26674 for freebsd-bugs-outgoing; Mon, 3 Aug 1998 02:35:17 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA26607; Mon, 3 Aug 1998 02:34:42 -0700 (PDT) (envelope-from yokota@FreeBSD.org) From: Kazutaka YOKOTA Received: (from yokota@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA25951; Mon, 3 Aug 1998 02:34:41 -0700 (PDT) Date: Mon, 3 Aug 1998 02:34:41 -0700 (PDT) Message-Id: <199808030934.CAA25951@freefall.freebsd.org> To: yokota@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG, yokota@FreeBSD.ORG Subject: Re: kern/7234 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: keyboard problems during login immediately after boot Responsible-Changed-From-To: freebsd-bugs->yokota Responsible-Changed-By: yokota Responsible-Changed-When: Mon Aug 3 02:34:07 PDT 1998 Responsible-Changed-Why: I will be tracking this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Aug 3 04:40:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA10839 for freebsd-bugs-outgoing; Mon, 3 Aug 1998 04:40:06 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA10793 for ; Mon, 3 Aug 1998 04:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA00659; Mon, 3 Aug 1998 04:40:01 -0700 (PDT) Received: from mail.tower.net.au (orion.tower.net.au [203.22.233.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA10420 for ; Mon, 3 Aug 1998 04:36:57 -0700 (PDT) (envelope-from lemonpie@tower.net.au) Received: from mail.tower.net.au ([203.15.138.201]) by mail.tower.net.au with smtp id m0z3IuX-000SohC (Smail-3.2 1996-Jul-4 #2); Mon, 3 Aug 1998 19:36:17 +0800 (WST) Message-Id: Date: Mon, 3 Aug 1998 19:36:17 +0800 (WST) From: lemonpie@tower.net.au Apparently-To: Subject: conf/7481: FreeBSD 2.2.6-RELEASE sysinstall segfaults on ftp install failure Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7481 >Category: conf >Synopsis: FreeBSD 2.2.6-RELEASE sysinstall segfaults on ftp install failure >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Aug 3 04:40:00 PDT 1998 >Last-Modified: >Originator: Anthony Di Pietro >Organization: >Release: FreeBSD 3.0-CURRENT i386 >Environment: Multiple platforms. Both a 486 DX2 66 and a Pentium II 266 (overclocked to 300). I doubt hardware is relevant. >Description: The /stand/sysinstall on the FreeBSD 2.2.6-RELEASE boot floppy contains a serious bug. When the user attempts an ftp install, but the install fails becuase some files were missing and/or corrupt, and the user then tries to cancel installation of those distributions and continue to the post-install configuration, sysinstall catches a segv and dies. >How-To-Repeat: Set up an FTP server on a LAN with an incomplete mirror of 2.2.6-RELEASE. Attempt an FTP installation from another machine on the LAN. Be sure to select at least one incomplete or corrupt distribution. The commit will fail, and, without telling you what went wrong, or what's going on, will dump you back to the "Select an FTP Site" menu to try to get the distribution elsewhere (presumably). If you now try to "Cancel" and complete the installation without the faulty distributions, sysinstall catches a segv and dies. >Fix: I don't know how to fix sysinstall, since I'm unfamiliar with it. Just don't use FTP install. >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Aug 3 07:20:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA00746 for freebsd-bugs-outgoing; Mon, 3 Aug 1998 07:20:07 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA00684 for ; Mon, 3 Aug 1998 07:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA17971; Mon, 3 Aug 1998 07:20:01 -0700 (PDT) Received: from tim.xenologics.com (tim.xenologics.com [194.77.5.24]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA29320 for ; Mon, 3 Aug 1998 07:13:36 -0700 (PDT) (envelope-from seggers@semyam.dinoco.de) Received: (from uucp@localhost) by tim.xenologics.com (8.8.5/8.8.8) with UUCP id QAA08238 for FreeBSD-gnats-submit@freebsd.org; Mon, 3 Aug 1998 16:08:17 +0200 (MET DST) Received: (from seggers@localhost) by semyam.dinoco.de (8.8.8/8.8.8) id LAA08621; Mon, 3 Aug 1998 11:49:58 +0200 (CEST) (envelope-from seggers) Message-Id: <199808030949.LAA08621@semyam.dinoco.de> Date: Mon, 3 Aug 1998 11:49:58 +0200 (CEST) From: Stefan Eggers Reply-To: seggers@semyam.dinoco.de To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: seggers@semyam.dinoco.de X-Send-Pr-Version: 3.2 Subject: kern/7482: nonsense-code in kern_subr.c Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7482 >Category: kern >Synopsis: nonsense-code in kern_subr.c >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Aug 3 07:20:00 PDT 1998 >Last-Modified: >Originator: Stefan Eggers >Organization: none >Release: FreeBSD 3.0-CURRENT i386 >Environment: -current cvsup'ed last Friday. >Description: Look at the code from kern/kern_subr.c below. It sets cnt to the value of tcnt when they differ. If they don't differ this is a noop. This can be simplified like you see in the patch. Makes this code easier to read. >How-To-Repeat: N/A >Fix: --- kern_subr.c.ORIG Sun Jul 19 11:37:57 1998 +++ kern_subr.c Mon Aug 3 11:46:09 1998 @@ -224,9 +224,7 @@ break; tcnt = npagesmoved * PAGE_SIZE; - if (tcnt != cnt) { - cnt = tcnt; - } + cnt = tcnt; if (error) break; >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Aug 3 09:50:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA23200 for freebsd-bugs-outgoing; Mon, 3 Aug 1998 09:50:23 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA23132 for ; Mon, 3 Aug 1998 09:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA00669; Mon, 3 Aug 1998 09:50:01 -0700 (PDT) Received: from Octopussy.MI.Uni-Koeln.DE (Octopussy.MI.Uni-Koeln.DE [134.95.166.20]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA22693 for ; Mon, 3 Aug 1998 09:46:41 -0700 (PDT) (envelope-from se@dialup124.zpr.uni-koeln.de) Received: from dialup124.zpr.Uni-Koeln.DE (dialup124.zpr.Uni-Koeln.DE [134.95.219.124]) by Octopussy.MI.Uni-Koeln.DE (8.8.8/8.8.8) with ESMTP id SAA06894 for ; Mon, 3 Aug 1998 18:46:24 +0200 (MET DST) Received: (from se@localhost) by dialup124.zpr.Uni-Koeln.DE (8.8.8/8.6.9) id XAA01233; Sun, 2 Aug 1998 23:48:55 +0200 (CEST) Message-Id: <199808022148.XAA01233@dialup124.zpr.Uni-Koeln.DE> Date: Sun, 2 Aug 1998 23:48:55 +0200 (CEST) From: Stefan Esser Reply-To: se@dialup124.zpr.uni-koeln.de To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: bin/7483: missing new-line characters in messages Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7483 >Category: bin >Synopsis: missing new-line characters in messages >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Aug 3 09:50:00 PDT 1998 >Last-Modified: >Originator: Stefan Esser >Organization: >Release: FreeBSD 3.0-CURRENT i386 >Environment: 3.0-current with soft-update aware FSCK >Description: There seem to be two messages that were added with soft-updates support, which need a final "\n". I only observed one line of mangled output, but I think there is another one which suffers from the same problem, and thus I provide a patch that covers both. >How-To-Repeat: >Fix: Index: /usr/src/sbin/fsck/pass5.c =================================================================== RCS file: /usr/cvs/src/sbin/fsck/pass5.c,v retrieving revision 1.12 diff -u -2 -r1.12 pass5.c --- pass5.c 1998/06/28 19:23:02 1.12 +++ pass5.c 1998/07/03 17:20:23 @@ -325,5 +325,5 @@ if (cg_inosused(cg)[i] & (1 << k)) continue; - pwarn("ALLOCATED INODE %d MARKED FREE", + pwarn("ALLOCATED INODE %d MARKED FREE\n", c * fs->fs_ipg + i * 8 + k); } @@ -338,5 +338,5 @@ if (cg_blksfree(newcg)[i] & (1 << k)) continue; - pwarn("ALLOCATED FRAG %d MARKED FREE", + pwarn("ALLOCATED FRAG %d MARKED FREE\n", c * fs->fs_fpg + i * 8 + k); } >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Aug 3 11:17:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA10611 for freebsd-bugs-outgoing; Mon, 3 Aug 1998 11:17:32 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA10596 for ; Mon, 3 Aug 1998 11:17:29 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA04221 for freebsd-bugs; Mon, 3 Aug 1998 11:00:01 -0700 (PDT) Date: Mon, 3 Aug 1998 11:00:01 -0700 (PDT) Message-Id: <199808031800.LAA04221@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list Subject: Current problem reports Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Current FreeBSD problem reports The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. Bugs can be in one of several states: o - open A problem report has been submitted, no sanity checking performed. a - analyzed The report has been examined by a team member and evaluated. f - feedback The problem has been solved, and the originator has been given a patch or a fix has been committed. The PR remains in this state pending a response from the originator. s - suspended The problem is not being worked on. This is a prime candidate for somebody who is looking for a project to do. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested. Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- a [1995/01/11] i386/105 bde Distributed libm (msun) has non-standard o [1996/06/05] kern/1293 Fatal trap 12: page fault while in kernel s [1996/07/15] bin/1387 Group file errors cause absolute havoc [P o [1996/10/08] kern/1744 peter run queue or proc list smashed 4 times in f [1996/10/28] kern/1919 se access to files/directories fails, gives o [1996/12/20] bin/2258 wollman route add/delete [network] xxx.yyy.zzz.0 o [1997/01/03] conf/2367 gibbs Buslogic SCSI driver bad probe of 742A EI f [1997/02/11] kern/2717 Panic with daily script (find) o [1997/03/08] kern/2923 panic: vm_fault: fault on nofault entry, o [1997/05/01] i386/3462 yokota using a PS/2 mouse causes kernel trap in o [1997/05/24] kern/3674 peter NFS in 2.2 RELEASE hangs. o [1997/06/01] kern/3752 peter NFS dirs under -current still have proble o [1997/06/01] kern/3753 peter "make" hangs when building in an NFS dir o [1997/06/25] kern/3949 sos The WD controller probe can fail when it o [1997/07/03] kern/4021 peter Local mount of a local NFS exported direc o [1997/07/31] kern/4200 peter NFS: "vm_fault: fault on nofault entry" w o [1997/08/11] kern/4273 kernel page faults with heavy disk access o [1997/08/12] kern/4289 kernel panic: vm_fault: fault on nofault o [1997/08/18] kern/4332 gibbs System crash after SCSI DAT tape access. o [1997/08/18] bin/4333 gibbs Dump backup utility completely crashes th o [1997/08/20] kern/4345 Kernel panic is caused by passing file de o [1997/09/02] kern/4453 2.2.2 lockup on restart with ASUS-TX97 mo o [1997/10/01] kern/4673 Two panics, now crash dumps, always in re o [1997/10/25] kern/4849 2.2.5-RELEASE does not detect TI PCI-1130 o [1997/10/25] kern/4851 adaptec 2940U hangs system if scsi tape d o [1997/10/27] kern/4864 Boot Failure in FreeBSD 2.2.5 RELEASE, ma o [1997/10/28] misc/4876 SCSI hard disks die too often o [1997/11/07] kern/4968 No flow control setting seems to make the o [1997/11/10] kern/4996 peter NFS crash, possibly related to file bigge o [1997/11/20] kern/5117 panic: biodone: buffer not busy o [1997/11/23] kern/5130 Kernel panic GPF imediatly on loading ker s [1997/11/24] bin/5139 portmap does not find interfaces correctl o [1997/11/25] bin/5148 peter mode of file and access on NFS mounted p f [1997/12/04] i386/5223 mount_msdos /dev/fd0.1440 /mnt and failur f [1997/12/21] kern/5355 Fix for NULLFS problems s [1998/01/15] i386/5493 [PATCH] aic6330.c: kernel freeze when I a o [1998/01/26] bin/5572 A major time step blows cron up, runs tho o [1998/01/28] kern/5592 ffs_inode_hash_lock can get permanently l o [1998/01/28] i386/5594 System not bootable when bad partition ty o [1998/02/03] kern/5641 running processes at the IDLE priority (i o [1998/02/10] kern/5702 problem with address network routing o [1998/02/10] kern/5703 CDROM Media Error triggers complete syste o [1998/02/10] kern/5709 Fatal trap 12: page fault in kernel mode o [1998/02/12] bin/5732 2.2.5 Won't install using partition creat o [1998/03/01] kern/5886 2.2-STABLE crashes when unmounting a busy o [1998/03/01] kern/5895 Kernal dumps caused by fork? o [1998/03/02] kern/5898 2.2-stable kernel panics pmap_relase: fre o [1998/03/13] kern/5994 Kernel Panics on FreeBSD-3.0 current SMP o [1998/03/14] kern/6006 cy driver panics machine when a user dial o [1998/03/22] kern/6102 panic: biodone: buffer not busy o [1998/03/23] bin/6121 peter gethostbyname(3) no longer returns NO_DAT o [1998/03/25] kern/6133 optical drive with 1024-byte (1k) sectors o [1998/03/27] kern/6147 syncronus ufs does not sync o [1998/03/29] bin/6168 tn3270 gets undefined symbol error on sta o [1998/04/05] i386/6219 wine causes system crash o [1998/04/11] kern/6274 panic: handle_workitem_freeblocks: block o [1998/04/19] kern/6349 luigi Luigi's sound driver stall wihen it outpu o [1998/04/30] kern/6465 File contents are zeroed after reboot f [1998/05/08] bin/6552 syslog stops working o [1998/05/13] bin/6627 TCP-based RPC denial-of-service attack s [1998/05/13] kern/6630 [PATCH] Fix for Cyrix I8254 bug s [1998/05/15] bin/6649 imp normal users can initiate gigantic ping f o [1998/05/19] kern/6689 kern_physio.c splits requests breaking cd o [1998/05/19] i386/6693 gibbs computer hang for timeout in scsi control f [1998/05/19] kern/6694 Network hangs, with "No buffers available o [1998/05/23] kern/6732 PCCARD kernel panic in sio driver s [1998/06/03] kern/6853 peter Having an inactive de0 in system leads to o [1998/06/06] misc/6873 FreeBSD 2.2.6 freezes o [1998/06/08] conf/6896 gibbs cannot boot installation diskette with AH o [1998/06/11] kern/6914 FreeBSD 2.2.6-RELEASE and NFS is UNSTABLE o [1998/06/14] i386/6944 icu_ipl.s does has a case commented as ca o [1998/06/16] kern/6964 Problems with cam-980520 code in FreeBSD- o [1998/06/16] ports/6969 jfitz cyrus won't compile o [1998/06/22] kern/7024 gibbs SCSI problem with FreeBSD 2.2.6-RELEASE a o [1998/06/23] kern/7028 Panic in vinvalbuf when appending/looking o [1998/06/24] kern/7042 No buffer space available a [1998/07/12] kern/7264 gibbs Buslogic BT 950 scsi card not detected o [1998/07/13] kern/7272 mountpoint on NFS server can be removed b o [1998/07/15] kern/7288 /kernel: panic: ffs_alloccg: map corrupte o [1998/07/19] ports/7318 jkh pkg_add ignores missing dependencies o [1998/07/21] bin/7358 [PATCH] Security patches for locatedb etc o [1998/07/21] i386/7361 AHA-2940UW, Micron Millenia, ahc. Driver o [1998/07/26] ports/7400 max ports: ja-canna can't start o [1998/07/26] ports/7401 ports port japanese/handbook can't be installed o [1998/07/27] kern/7418 File corruption occurs when shared+ro mma o [1998/07/27] kern/7422 FreeBSD-current VM systems do not properl 86 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1995/03/02] misc/229 bde acos() core dump a [1995/03/20] kern/260 davidg msync and munmap don't bother to update m s [1995/05/16] kern/425 arp entries not getting removed when inte f [1995/06/17] kern/527 dufault dump causes assertion in ncr.c o [1995/07/02] kern/579 bde sio: RS_IBUFSIZE at 256 bytes serial line s [1995/07/29] kern/638 Transmitted packets not passed to bpf in o [1995/10/18] bin/786 wpaul Problem with NIS and large group maps a [1996/02/17] bin/1030 cracauer /bin/sh does not pass environment variabl s [1996/03/06] kern/1067 panic: ufs_lock: recursive lock not expec o [1996/05/24] misc/1247 yokota Conflicting header files f [1996/05/26] kern/1256 ZNYX 314 mysterously looses packets o [1996/06/07] kern/1301 davidg DEC FDDI/PCI Adapter: halt code = 6 (DMA f [1996/08/03] bin/1461 Incorrect address binding of Kerberized r o [1996/08/04] kern/1467 gibbs scsi_prevent causing tape problems on clo o [1996/08/18] kern/1512 dg Use of madvise may may cause bad memory m f [1996/08/22] kern/1533 dyson Machine can be panicked by a userland pro o [1996/09/19] bin/1650 telnet encryption with char-mode and asci s [1996/09/21] kern/1661 ft driver hangs uninterruptably at "bavai o [1996/09/29] kern/1689 wollman TCP extensions throttles distant connecti o [1996/10/01] bin/1702 phk installing of tcl manpages fails from mak o [1996/10/04] kern/1723 gibbs kernel fault when doing scsi reprobe o [1996/10/04] kern/1724 gibbs HP colorado T4000S tape drive hangs syste o [1996/10/04] kern/1726 panic in kmem_malloc (dump available) o [1996/10/15] kern/1812 dg vnodes are left in a locked state o [1996/10/15] kern/1814 cy driver gets deadlocked sometimes o [1996/10/20] kern/1848 breakpoints may be set in shared librarie f [1996/10/21] kern/1856 peter read-only nfs mount: panic leaf should be a [1996/10/22] ports/1866 wosch popclient flushes remote mailbox even wit s [1996/10/26] bin/1892 install(1) removes target file s [1996/11/08] gnu/1981 ypserv handles null key incorrectly o [1996/11/13] ports/2000 asami obsolete software in distfiles directory a [1996/11/13] bin/2001 vi confused about lines to display a [1996/11/14] kern/2014 sos Console keyboard lockup problem o [1996/11/18] kern/2053 peter de0 driver don't work at 100M for Compex s [1996/12/03] kern/2142 FP mask not saved for signal handlers s [1996/12/22] ports/2268 erich libc from linux emulator does not use /et o [1996/12/22] kern/2270 Hayes ESP serial card locks system as of a [1996/12/30] kern/2325 quota.user enlarged, no boot on 2.2-BETA o [1996/12/30] kern/2330 changing root device to sd0a - ncr0: abor o [1997/01/08] kern/2425 amd driver does not reprobe devices. o [1997/01/09] bin/2430 mountd stops on loading if subnet mask is o [1997/01/09] i386/2431 tegge panic: get_pv_entry: cannot get a pv_entr o [1997/01/12] i386/2471 Sound: Reset failed - Can't reopen device o [1997/01/13] misc/2479 sos NEC CD-ROM NOT RECOGNIZED; MATROX MISTIQU o [1997/01/13] bin/2489 steve gnats mangles sections o [1997/01/16] kern/2507 Renaming DOS directories with "mv" causes o [1997/01/20] bin/2541 tegge cd (using /bin/sh) may leave you in the w o [1997/01/20] kern/2545 se < sd0(ncr0:6:0): COMMAND FAILED ==> Not a [1997/01/21] bin/2549 sos cdcontrol refuses to play audio CDs from o [1997/02/02] kern/2640 2.2-RELENG leaks memory (router/pppd serv s [1997/02/03] kern/2647 changing existing route to -static crashe o [1997/02/05] kern/2667 wollman bpfattach can hang the system o [1997/02/05] bin/2671 Run-away processes using all CPU time a [1997/02/06] kern/2675 lkmcioctl() is not consistent and careful o [1997/02/07] kern/2690 asami When Using ccd in a mirror mode, file cre o [1997/02/08] kern/2695 sio1 (16540 serial port) is not recognize o [1997/02/09] kern/2698 After rewind I cannot read a tape; blocks o [1997/02/12] kern/2719 added support for magneto-optical SCSI di o [1997/02/14] bin/2736 No boot block if no FreeBSD partitions on o [1997/02/15] kern/2742 panic: leaf should be empty o [1997/02/15] bin/2747 davidn cannot submit at jobs from within an at j o [1997/02/16] gnu/2749 peter cvs export using remote cvs fails - CVS/T o [1997/02/17] kern/2751 asami 2GB limitation on CCD device partitions s o [1997/02/19] kern/2768 ktrace(1) -i dumps corrupted trace data o [1997/02/19] bin/2769 fsck needs several runs to clean up bad/d o [1997/02/19] kern/2770 panic: vm_fault: fault on nofault entry o [1997/02/19] kern/2771 panic: bad dir o [1997/02/19] kern/2773 peter bad dir panic o [1997/02/20] bin/2785 wpaul callbootd uses an unitialized variable o [1997/02/20] gnu/2786 gcc version 2.7.2.1 C compiler slows down o [1997/02/21] misc/2793 libc_r make fscanf failure o [1997/02/22] kern/2800 DDS large data writing probrem o [1997/02/25] kern/2815 Custom Kernel crashes o [1997/03/01] kern/2840 mlock+minherit+fork+munlock causes panics o [1997/03/03] kern/2858 peter FreeBSD NFS client can't mount filesystem o [1997/03/04] kern/2873 the od0 devies does not handle a Maxoptix o [1997/03/08] kern/2919 vm_fault: fault on nofault entry, addr: f o [1997/03/11] bin/2948 can't dump 640MB optical disks o [1997/03/12] kern/2965 st0 hang/fail on reading 4mm DAT tape for o [1997/03/12] bin/2973 output of iostat is wrong. o [1997/03/15] kern/2991 RTF_LLINFO routes remain when interface i o [1997/03/18] kern/3021 panic after sync during reboot o [1997/03/21] kern/3054 ahasty OPL3 sound off by one note o [1997/03/21] bin/3055 umount -f does not work o [1997/04/01] bin/3170 vi freaks and dump core if user doesn't e o [1997/04/05] kern/3201 peter de0 not re-enabled after hub down o [1997/04/05] ports/3205 jmz Mtools-3.0 attempts to flock() a disk par o [1997/04/06] kern/3216 panic: pmap_zero_page: CMAP busy o [1997/04/06] kern/3219 sppp or arnet gets looped after connectio o [1997/04/09] kern/3244 ipfw flush closes connections o [1997/04/10] bin/3246 mtree -c should escape whitespace and spe o [1997/04/15] bin/3305 Can't do encrypted rlogin into self o [1997/04/18] kern/3327 using gdb may cause hanging processes. o [1997/04/19] bin/3355 se ncrcontrol fails when -DFAILSAFE in kerne o [1997/04/25] kern/3381 peter 2.2.x kernel panic on traversing and remo o [1997/04/25] kern/3384 telldir-seekdir can cause livelock o [1997/04/28] bin/3406 rich Fresh Internet Install - Permissions on f o [1997/05/01] gnu/3441 C++ exceptions don't work in shared libra o [1997/05/01] kern/3463 netstat -I packet count increase on sl0 w o [1997/05/03] bin/3478 pwd_mkdb and passwd o [1997/05/04] i386/3502 Merge of if_ix* and if_ie* broke EE/16 su o [1997/05/06] bin/3524 rlogin doesn't read $HOSTALIASES for non- o [1997/05/07] kern/3527 peter if_de.c doesn't recognize Kingston card p o [1997/05/09] kern/3564 using MPU401 driver pagefaults kernel o [1997/05/09] kern/3569 ex0 driver doesn't work with EtherExpress o [1997/05/11] misc/3578 defining CXXFLAGS in /etc/make.conf or en o [1997/05/12] kern/3579 peter de driver doesn't support newer SMC 9332 o [1997/05/12] kern/3581 intermittent trap 12 in lockstatus() o [1997/05/12] kern/3582 panic: bad dir (mangled entry) in 2.2-STA o [1997/05/13] conf/3591 parts in rc.local have no effects in rc.* s [1997/05/25] kern/3685 [PATCH] panic: fdesc attr o [1997/05/30] conf/3725 Cirrus Logic PCMCIA Controller Support o [1997/05/30] kern/3726 peter process hangs in 2.2-stable when working o [1997/05/30] kern/3727 SCSI II tape support broken o [1997/06/01] conf/3750 phk Potential improvements to rc.firewall o [1997/06/03] kern/3771 NFS hangs when writing to local FS re-mou o [1997/06/04] i386/3779 changing cursor to blinking block causes o [1997/06/07] conf/3807 mitsumi cd-rom fx800 (8x cd-rom) is not r o [1997/06/08] gnu/3810 cvs can't handle multiple multiple-path d o [1997/06/16] misc/3883 @+netgroup entries break +NIS-user entrie o [1997/06/18] kern/3899 df while unmounting floppy crashes 2.2.2 o [1997/06/19] kern/3909 joerg A patch supporting some new worm drivers o [1997/06/19] gnu/3910 sort(1) of 2.2.1R doesn't work in special o [1997/06/28] misc/3980 peter access via NFS fails during mount-operati o [1997/06/29] bin/3986 rdist seg faults when target machine is d o [1997/07/02] kern/4012 peter 2.2-RELEASE/Digital UNIX NFSv3 0 length f o [1997/07/02] misc/4013 boot floppy hangs if IDE ZIP Drive presen o [1997/07/04] kern/4032 gibbs During recovery from scsi errors, incorre s [1997/07/06] gnu/4042 gdb stackframe in static library shows no o [1997/07/07] ports/4050 jfitz mrtg: rateup dumps core with malloc_optio o [1997/07/12] bin/4078 sos Typed password to log in on console and i o [1997/07/17] kern/4115 peter SunOS NFS file has wrong owner if creator o [1997/07/26] bin/4176 restore gets confused when run over pipe o [1997/07/27] ports/4179 fenner lmbench-1.1 dumps core after asking for m o [1997/07/28] kern/4186 peter nfsiod, panic, page fault in kernel mode o [1997/07/30] kern/4194 peter kernel pci driver for Digital 21041 Ether o [1997/08/04] i386/4226 Floating point exception for double preci o [1997/08/06] kern/4240 kernel fails to recognise 2nd serial port o [1997/08/08] conf/4252 peter sendmail doesn't use smrsh by default o [1997/08/09] kern/4256 gibbs ahc driver: kernel goes to strange state o [1997/08/10] kern/4260 EOF handling in st(4) is broken o [1997/08/10] kern/4265 Panic in dsinit when multiple FreeBSD sli o [1997/08/10] kern/4270 ch driver does not use bounce buffers o [1997/08/12] kern/4284 le0 goes OACTIVE after some time o [1997/08/13] kern/4295 SL/IP difficulties between 2.2.1 & 2.2.2 o [1997/08/16] kern/4312 arp table gets messed up, syslog "gateway o [1997/08/17] kern/4327 peter NFS over TCP reconnect problem s [1997/08/19] kern/4338 New device driver (Cyclades Cyclom-Z) o [1997/08/21] bin/4353 fetch -m changes modified date o [1997/08/22] bin/4357 wosch bug in adduser script causes duplicate UI o [1997/08/23] bin/4366 bad144 crashes if checking over 2gb o [1997/08/25] kern/4381 mount -t msdos causes panic:vm_fault o [1997/08/25] kern/4382 CURRENT kernel has a "free vnode isn't" p o [1997/08/27] ports/4405 jfitz ascend-radius port is out-of-date o [1997/09/02] kern/4454 X drops characters/locks up keyboard when o [1997/09/03] bin/4460 lpd hangs exiting (IE in ps table) o [1997/09/07] kern/4487 Kernel panic executing a directory o [1997/09/08] bin/4497 Reverse DNS fails for some CIDR *.IN-ADDR o [1997/09/09] kern/4505 Support for Gravis UltraSound PnP card o [1997/09/10] kern/4508 peter nfs3 data integrity problems o [1997/09/11] kern/4513 System lockup appears to be VM related. o [1997/09/14] i386/4533 Server with Cyclom-Y PCI card rebooted at o [1997/09/14] kern/4544 Linux emulator problems when MAXDSIZ is i a [1997/09/18] bin/4568 simple /bin/sh script produces wrong resu o [1997/09/19] bin/4582 integer overflow in 'sa -km' o [1997/09/19] bin/4585 termcap search fails too early o [1997/09/20] kern/4588 peter NFS access locks up o [1997/09/21] kern/4600 peter nfs lookups might give incorrect result o [1997/09/26] conf/4634 peter Sendmail Problem o [1997/09/27] bin/4638 telnet tries to resolve numerical IP addr o [1997/09/30] kern/4663 checkalias panic o [1997/10/01] kern/4666 dfr umount -f doesn't seem to work o [1997/10/01] bin/4672 rdist does not do hard links right when t o [1997/10/03] bin/4683 restore doesn't correctly handle "sparse" o [1997/10/05] docs/4691 no documentation for mk_cmds(1) o [1997/10/15] kern/4772 ATAPI CD (bootable) causes kernel panic o [1997/10/16] ports/4773 torstenb Error in posting news items to INN server o [1997/10/16] kern/4774 trying to use IBCS2 shared libraries cras o [1997/10/16] kern/4782 Under certain conditions, several krsh's o [1997/10/18] bin/4795 glitch in /bin/sh cd command o [1997/10/18] ports/4798 jmz setuid-root Xserver problem o [1997/10/24] kern/4843 48 meg double fault moved to 64 meg in 2. o [1997/10/25] bin/4850 peter Named crashes with "rm_datum: DB_F_ACTIVE o [1997/10/26] kern/4859 SMP kernel panics with timeout table full o [1997/10/28] bin/4884 the version of amd in 2.2.5-RELEASE appea o [1997/10/31] bin/4907 Oct 33* Daylight Savings Time ends; clock o [1997/10/31] kern/4909 de ethernet driver is crazy on 100base o [1997/11/01] bin/4913 peter Large mail messages can cause mail.local o [1997/11/03] kern/4927 kernel does not check any quota and permi o [1997/11/04] bin/4939 uuxqt unable to execute rnews program o [1997/11/05] kern/4945 continued failure to use the Adaptec 1460 o [1997/11/05] bin/4949 rpc.rquotad stat()s fs with quota file in o [1997/11/09] kern/4990 peter NFS hangs under FastEthernet. 1024 Bytes o [1997/11/10] bin/4998 peter mail and more do not work well with being o [1997/11/10] misc/5001 During installation sc0 device is require o [1997/11/10] misc/5005 f2c is buggy and seriously outdated (agai o [1997/11/11] bin/5008 libc_r not working at static linking o [1997/11/15] conf/5062 login.access not evaluated correctly o [1997/11/18] bin/5084 wrong "term" for internal shell o [1997/11/18] kern/5085 System crash during mount command for CD o [1997/11/20] bin/5105 mount_cd9660 or mount -t cd9660 fails to o [1997/11/20] misc/5107 rebuilding of whatis database does not ca o [1997/11/22] gnu/5126 C++ compiler bug (assembly output) o [1997/11/23] i386/5128 Adaptec 2940U Timeouts with QUANTUM disk s [1997/12/02] bin/5189 rcmd(3) only allows one hardcoded connect s [1997/12/02] conf/5191 [PATCH] fsck during boot fails due to lac s [1997/12/03] misc/5207 Examples for /etc are not in /usr/share/e o [1997/12/06] kern/5244 F00F workaround dosn't always work on SMP o [1997/12/13] kern/5285 quotas do not work properly with setuid p s [1997/12/14] bin/5297 make incompatibility with System V style o [1997/12/19] misc/5343 booteasy problem o [1997/12/19] kern/5347 peter DEC (de0) ethernet card has no buffers af a [1997/12/21] docs/5358 doc USWC write posting must be turned off on o [1997/12/30] kern/5396 fdesc fs crashes system o [1997/12/31] i386/5401 peter de0 selects wrong media when reconnected f [1998/01/08] kern/5456 After writing more than 100MB to SCSI Exa f [1998/01/15] misc/5499 when setting up the partition for free bs o [1998/01/15] bin/5500 "invalid hostname" is logged instead of I o [1998/01/16] kern/5513 luigi new PnP code is BAD (soundcards) s [1998/01/19] kern/5522 [PATCH] ip_input.c & ip_output.c problems o [1998/01/20] ports/5530 asami fetch (in make fetch stage) do not use pa o [1998/01/22] bin/5548 syslogd core dumps when signaled o [1998/01/22] misc/5552 RE: Linux append=reboot=bios parameter im o [1998/01/26] misc/5574 bootpd gets timezone incorrectly o [1998/01/27] kern/5587 session id gets dropped o [1998/01/29] kern/5598 Support for magneto-optic SCSI devices wi s [1998/01/30] bin/5604 setenv(3) function has memory leak, other o [1998/01/30] kern/5606 Kernel Panic running Linux Binary without o [1998/01/31] kern/5611 bind does not check sockaddr->sin_family o [1998/02/01] kern/5618 kernel memory leak in routetbl. o [1998/02/01] kern/5624 dumping to tape causes scsi bus reset o [1998/02/04] kern/5643 NCR 810/815 do not handle rewind correctl o [1998/02/05] bin/5661 /sbin/dump never finishes o [1998/02/06] misc/5673 2.2-980204-SNAP installer runs out of dis o [1998/02/09] bin/5693 groff -mm or groff -mmm ??? o [1998/02/10] i386/5698 LPIP causes spurious reboots o [1998/02/11] misc/5722 Brazil can't decide on daylight savings o [1998/02/12] kern/5728 peter NFS hangs o [1998/02/12] kern/5731 peter executables wedge on "vmopar" when built o [1998/02/12] bin/5733 cp -r cannot copy un-writable directories o [1998/02/15] i386/5760 3.0-CURRENT freezes at mount root stage o o [1998/02/17] gnu/5767 man leaves partially formatted cat pages o [1998/02/19] kern/5794 Kernel Panic o [1998/02/23] kern/5827 kernel panics in current (3.0) o [1998/02/24] kern/5839 vm_page_unwire: invalid wire count: 0 o [1998/02/25] bin/5845 in sh, set -- `getopt ...` always returns o [1998/02/25] ports/5850 me xemacs-20.3 contains bad send-pr o [1998/02/25] misc/5852 Page fault or error caused by writing to o [1998/02/25] bin/5854 host -l MX or NS core dumps o [1998/02/27] bin/5867 peter pppd or FreeBSD ? o [1998/02/28] kern/5877 sb_cc counts control data as well as data o [1998/03/01] kern/5890 peter NFS server Side say NFSERR_BAD_COOKIE (rm o [1998/03/01] kern/5896 FreeBSD host can't network-write to other o [1998/03/02] kern/5904 panic: newfs o [1998/03/06] ports/5933 ports emacsserver (19.34b) hostname in /tmp/ese o [1998/03/09] bin/5959 Cannot set up clocal gettys o [1998/03/09] bin/5961 dup2 wrapper in libc_r is incomplete o [1998/03/10] kern/5965 FreeBSD TCP/IP connectivity get buried by o [1998/03/10] kern/5969 non-root user can reboot/lock up system o [1998/03/10] ports/5970 ports psmisc ports uploaded to freebsd.org:/pub o [1998/03/11] kern/5975 can't boot freebsd: fatal trap12: page fa o [1998/03/11] kern/5979 julian sd.c doesn't validate all mode sense 4 va o [1998/03/12] kern/5991 panic: free vnode isn't o [1998/03/14] conf/6002 peter /etc/mail/sendmail.cf.addtions seems to l o [1998/03/14] bin/6004 cron in -CURRENT sometimes fails to proce o [1998/03/14] bin/6005 -CURRENT cron dies after short periods of o [1998/03/16] kern/6035 The system "sort-of" hangs when playing b o [1998/03/19] kern/6066 lnc driver does not work correctly with A o [1998/03/19] bin/6071 2.2.6-980315-BETA up grade option problem o [1998/03/20] bin/6074 Incremental dumps are backing up unchange o [1998/03/21] bin/6087 sh doesn't work properly on certain confi o [1998/03/22] kern/6099 LPIP to slow machine causes hang o [1998/03/22] kern/6103 panic: ffs_valloc: dup alloc o [1998/03/28] bin/6162 kinit does not default to the current use o [1998/03/30] ports/6180 max youbin port has root-exploitable security o [1998/04/02] kern/6197 3com905 Seriously broken o [1998/04/03] kern/6203 kernel panics with "blkfree: freeing free o [1998/04/03] conf/6205 NFS/NIS freak out o [1998/04/04] kern/6212 Two bugs with MFS filesystems fixed, one o [1998/04/07] kern/6238 luigi Sound-driver patch for MAD16 (OPTi 928,92 o [1998/04/07] kern/6242 vnode disk driver too unstable in -STABLE o [1998/04/08] kern/6251 peter ktrace very broken when logging over NFS o [1998/04/08] kern/6252 ide cdrom hangs system when on same bus a o [1998/04/09] kern/6253 Atapi wait for command phase too short. o [1998/04/10] kern/6267 dg panic: pmap_dispose_proc: upage already m o [1998/04/11] kern/6277 mouse operation weird in -current o [1998/04/13] ports/6288 se KDE port glitches o [1998/04/14] kern/6300 System locks up in SMP mode when accessin f [1998/04/15] misc/6310 des explicit cast needed in floatpoint.h for o [1998/04/16] bin/6317 with -8E flags telnet still goes to comma o [1998/04/17] kern/6336 peter NFSv3 should support files >2GB, but does o [1998/04/17] misc/6340 missing the terminfo, which causes librar o [1998/04/18] kern/6344 cy driver is outdated o [1998/04/19] kern/6351 DPT RAID controller stops working under h s [1998/04/19] bin/6353 How about upgrading from amd to am-utils? o [1998/04/20] i386/6368 Stallion Easyio 8 port not detected using o [1998/04/22] bin/6383 csh - when ctrl-d is pressed, file is chm o [1998/04/25] kern/6412 peter NFS sends packets from the wrong interfac o [1998/04/30] misc/6472 jb [PATCH] _thread_flockfile() hangs process a [1998/05/01] kern/6481 se Patches for VIA Socket 7 chipsets o [1998/05/03] kern/6506 system will not soft reboot f [1998/05/05] kern/6525 Coral-Draw 5 CD crashes 2.2.6-STABLE a [1998/05/06] bin/6536 pppd doesn't restore drainwait for tty f [1998/05/06] bin/6539 markm [PATCH] bmake version of perl5 available o [1998/05/07] misc/6549 steve You dont always get notified when someone o [1998/05/08] bin/6557 /bin/sh is broken o [1998/05/10] kern/6574 ipfw crash with DIAGANOSTICS o [1998/05/10] bin/6577 /bin/sh environment variables not set in o [1998/05/11] kern/6587 SMP idle cpl breaks signal forwarding o [1998/05/11] kern/6589 system panick'd with May 4th kernel o [1998/05/11] ports/6591 se KDE starts /usr/bin/kzip instead of /usr/ o [1998/05/12] kern/6603 ncr driver hangs under high load o [1998/05/12] bin/6609 gmp.h not installed o [1998/05/15] kern/6650 joerg Replugging PS/2 keyboard causes a panic o [1998/05/17] kern/6670 PANIC on boot with FreeBSD 3.0 (same comp s [1998/05/19] kern/6686 [STABLE] -stable does not support large I o [1998/05/20] kern/6706 mount_msdos+mount_null+mc=panic f [1998/05/21] kern/6710 Quiting PPP paniced my machine o [1998/05/21] ports/6715 jraynard ElectricFence fails to work on -current o [1998/05/25] kern/6751 audio cd play suddenly stops. o [1998/05/25] kern/6755 peter Tulip (if_de) driver buggy in -current o [1998/05/27] kern/6771 peter panic: Bad nfs svc reply s [1998/05/27] misc/6773 [PATCH] tempnam.c security problems s [1998/05/29] bin/6790 [PATCH] make(1) coredumps in debugging mo s [1998/05/30] bin/6799 [THREAD,SCSI] problem with open(2) in lib o [1998/06/01] ports/6821 ports wwwoffle-2.1 port (second posting) o [1998/06/01] misc/6824 peter Intel EtherExpress 100+, 2.2.6 NFS troubl s [1998/06/02] bin/6830 make(1) exhibits confusing and non-standa o [1998/06/03] ports/6851 ports apply DFN-CERT#34784 to CGIParse.c s [1998/06/04] kern/6854 ahasty [PATCH] probing brooktree849 capture card s [1998/06/04] kern/6858 inetd in realloc(): warning: junk pointer o [1998/06/04] bin/6860 chgrp missing from /sbin o [1998/06/04] misc/6861 [PATCH] netboot error o [1998/06/05] kern/6865 OS crashes when exiting shell with suspen o [1998/06/05] conf/6872 Wrong csu lib built when setting BINFORMA o [1998/06/09] ports/6902 me xemacs package broken (motif dependency) o [1998/06/10] kern/6908 kernel crash from user land o [1998/06/12] ports/6929 ports fxtv-0.47 fails to build on AccelX server o [1998/06/12] ports/6930 imp socks5 port broken by /usr/lib/aout chang o [1998/06/15] misc/6956 panic: Going nowhere without my init when o [1998/06/18] ports/6986 ports LaTeX vs. teTeX ; xdvi, xdvik vs. teTeX o [1998/06/19] bin/6994 The netstat(1) -s generates wrong output f [1998/06/19] i386/6996 Occasional complete lockup of 2.2.5R o [1998/06/19] i386/7003 Problem with 3com ethernet 3c509a adaptor s [1998/06/22] bin/7019 [security] pwd.db almost always contains o [1998/06/22] ports/7026 markm corrections to the perl5 port s [1998/06/23] bin/7033 Same process notified multiple times o [1998/06/24] kern/7038 shimon Kernel panic caused by DPT driver (Got a s [1998/06/24] bin/7043 the fstat command doesn't know ISOFS, MSD s [1998/06/24] conf/7054 [PATCH] bad default value of ${fs} for ty o [1998/06/24] i386/7057 3Com 3C509 locks up, or has >1000ms rtt u s [1998/06/24] bin/7059 sh dumps core on this script o [1998/06/24] ports/7061 ache fspclient's grab command fails (and remov o [1998/06/29] ports/7118 ports ifmail 2.13 port has tty lock files in wr f [1998/07/01] kern/7141 Kernel freezes, gdb, high memory load o [1998/07/05] ports/7167 ache elm cannot pgp for more than one recipien s [1998/07/05] kern/7169 cannot use accton on a append-only file o [1998/07/05] kern/7178 sos IDE Western Digital hard disk detection e o [1998/07/06] ports/7182 asami www/netscape4-navigator cant fetch fortif s [1998/07/06] misc/7190 "Invalid partition table" after new insta o [1998/07/08] ports/7208 torstenb INN port w/TCL enabled doesn't install TC o [1998/07/10] i386/7235 3Com 3C905 ethernet card cannot be probed s [1998/07/10] kern/7237 NCR SCSI driver ch0 troubles o [1998/07/11] kern/7245 processes die with signal 6, if machine o o [1998/07/12] i386/7263 FBSD-2.2.6 installation hangs after findi o [1998/07/12] i386/7266 yokota PSM detection failure with Linksys consol o [1998/07/14] kern/7281 Multicast kludge does not work correctly o [1998/07/16] kern/7299 USER_LDT hangs Linux-emulated Netscape o [1998/07/17] bin/7309 jb pthread_attr_setscope() missing o [1998/07/18] i386/7311 "Probing devices" hangs computer with err o [1998/07/20] ports/7330 gpalmer ucd-snmp produces too much log file when o [1998/07/21] conf/7354 source distribution selection bug when in o [1998/07/21] ports/7356 ports update pnmtopng port f [1998/07/22] kern/7367 panic: malloc: wrong bucket o [1998/07/22] bin/7370 ftp client fails to connect o [1998/07/23] kern/7378 3c905B (PCI) revision not detected proper o [1998/07/23] ports/7382 ports Pine4 does not co-exist with older instal o [1998/07/23] ports/7383 torstenb socks5 + ssh + redirection not working o [1998/07/23] ports/7384 /usr/lib/libncurses.so.3.1 is old o [1998/07/24] i386/7390 jkh Core dump during 2.2.6 -> 2.2.7 upgrade. f [1998/07/26] bin/7402 Games primes and factor don't understand o [1998/07/26] kern/7405 in pmap_changebit, pmap_pte_quick() retur s [1998/07/27] kern/7410 [PATCH] driver for arlan-655 f [1998/07/27] kern/7415 VMIO bug for FS with sub-page-size blocks s [1998/07/27] i386/7420 [PATCH] Maximum socket buffer size (SB_MA o [1998/07/28] kern/7424 Machine crashes do not occur very often, o [1998/07/30] bin/7446 jdp Dlopen succeed in particular cases, but i o [1998/07/31] bin/7458 'boot bug' in syslogd o [1998/08/01] ports/7463 ports Perl scripts in automake port require per o [1998/08/02] ports/7472 ports apache12 doesn't build on -current o [1998/08/02] ports/7473 ports apache12 port sets permissions incorrectl o [1998/08/02] kern/7474 soft-updates: fsck doesn't fix link count o [1998/08/02] bin/7475 IPFW fails to load a file on boot o [1998/08/03] conf/7481 FreeBSD 2.2.6-RELEASE sysinstall segfault 394 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- s [1995/01/14] bin/115 systat iostat display doesn't scale high s [1995/05/13] bin/401 Add REMOTE_* variables s [1995/05/23] i386/440 want vidcontrol option to apply settings a [1995/05/27] gnu/450 scrappy tar --exclude -c doesn't work s [1995/06/15] bin/517 Bad group change with 'install' o [1995/07/09] misc/605 wpaul NIS: get*bynis routine problems s [1995/08/05] gnu/655 ld -r of shared objects worked in 1.1.5, s [1995/08/07] bin/658 ifconfig alias has to be separately given s [1995/09/26] kern/742 syslog errors accessing Mac hard disks [p s [1995/10/03] kern/765 umount -f can`t umount a NFS filesystem i s [1995/11/20] kern/831 one minor complaint about the kernel visu s [1995/11/27] bin/841 stale nfs mounts cannot be umounted o [1995/11/30] bin/854 dg swapinfo shows incorrect information for o [1995/12/17] kern/900 dg ext2fs triggers divide by zero trap in vn o [1996/01/21] bin/961 hoek 'more $file', incorrect CRLF compacting. s [1996/01/28] kern/975 getrusage returns negative deltas a [1996/01/30] bin/981 fenner clnt_broadcast() is not aware of aliases s [1996/02/07] bin/999 /usr/share/mk/sys.mk missing common $(RM) s [1996/03/20] kern/1090 iostat displays incorrect sps count s [1996/03/20] bin/1093 route's diagnostic is weird o [1996/04/06] kern/1119 dg Mounted EXT2FS partition is not cleanly u o [1996/05/15] bin/1206 cracauer /bin/sh + emacs + ^G = ruined terminal s [1996/06/11] bin/1312 automounter hangs on boot s [1996/06/13] bin/1320 dump limits blocksize to 32K s [1996/06/18] i386/1331 [PATCH] changes and bug in ft driver s [1996/07/07] bin/1375 jraynard Extraneous warning from mv(1) [PATCH] o [1996/07/24] misc/1428 ncurses doesn't always display ALTCHARSET a [1996/08/07] ports/1470 asami need more info in the ports structure s [1996/08/17] bin/1502 [PATCH] vmstat 'avm' field merges with pr o [1996/08/19] kern/1514 dg mlock fails on readonly regions o [1996/08/20] kern/1516 dg vm_fault.c contains dead code or too many o [1996/08/21] ports/1520 erich sudo dosn't recognise certain passwords a a [1996/09/04] bin/1565 Moving a file to it's link completely rem o [1996/09/06] bin/1577 peter mail -f foo does not look in current dire s [1996/09/08] bin/1589 [PATCH] ftp fails to flush output o [1996/09/14] gnu/1611 phk groff should use "system-wide" papersize s [1996/09/19] kern/1654 [PATCH] In procfs, vattr doesn't contain o [1996/09/23] i386/1671 joerg s2 map in pcvt isn't ISO 8859-1 and claim o [1996/09/29] docs/1691 doc ppp server doc submission s [1996/10/13] kern/1788 wollman netstat gives negative numbers for tcp by s [1996/10/13] misc/1791 syslimits.h does not allow overriding def o [1996/10/14] ports/1804 jkh pkg_create hangs if the packing list has o [1996/10/20] bin/1849 gdb sets library breakpoints on the wrong o [1996/10/20] docs/1855 joerg Addition to LINT o [1996/10/23] bin/1872 automounter (amd) cannot ls directories w s [1996/10/24] bin/1881 file(1) misidentifies Sun3/m68k executabl s [1996/11/01] bin/1941 danny wtmp and monthly rotation s [1996/11/01] bin/1943 route(8) args s [1996/11/02] bin/1945 Out of date code/comments in dd o [1996/11/04] i386/1953 sos syscons savers have no default timeout s [1996/11/04] gnu/1961 [PATCH] uucp logging files are in /var/sp s [1996/11/06] bin/1970 csh limtail() bug s [1996/11/16] bin/2036 cpio size wraparound s [1996/11/19] bin/2061 DEBUG_FLAGS in bsd.lib.mk is broken s [1996/11/22] bin/2090 clients may bind to FreeBSD ypserv refusi o [1996/11/25] misc/2105 jmg bsd.lib.mk has problems with STRIP and IN o [1996/11/26] i386/2108 sos [ATAPI] wcd driver may hang under certain o [1996/11/28] kern/2118 sos writing to virtual consoles fails to disp s [1996/11/28] bin/2119 [PATCH] mount lies to child about argv0, s [1996/12/02] bin/2137 vm statistics are bad o [1996/12/07] ports/2169 pst zephyr port disagrees with Kerberos causi o [1996/12/08] bin/2184 peter sendmail has lots of trouble with local d a [1996/12/10] ports/2190 asami need cross-reference to xpdf from X11 por s [1996/12/12] kern/2199 joerg [PATCH] Got a lots of "Target Busy" messa s [1996/12/14] kern/2214 File System gets corrupted when mounting s [1996/12/14] bin/2216 [PATCH] Ada specs not being compiled into s [1996/12/17] i386/2234 fbsdboot.exe does not turn off floppy dri o [1996/12/17] i386/2239 jmg some interrupts take too long (i.e. BT946 a [1996/12/21] bin/2265 guido su(1) does not call skeyaccess() o [1996/12/24] kern/2273 dufault support for POSIX.4 / POSIX.1a RT-schedul s [1996/12/26] bin/2291 [PATCH?] race condition in /etc/master.pa s [1996/12/27] kern/2298 Support for DSR/DCD swapping on serial po a [1996/12/27] misc/2302 markm new crypt() including SHS and an extendab o [1996/12/29] bin/2315 peter tail segfaults on NFS permission denied s [1996/12/30] kern/2327 [PATCH] `Green' saver for pcvt o [1997/01/06] bin/2387 [PATCH] virtual hosting patches for inetd o [1997/01/07] kern/2393 filesystems not unmounted following shutd o [1997/01/07] bin/2410 pppd(8): failing PAP doesn't force line d o [1997/01/10] bin/2442 davidn setusershell()/endusershell() missing o [1997/01/11] bin/2448 steve [MFC] semctl() not portable -- freebsd re o [1997/01/12] kern/2462 sos screen saver dosn't capture key strokes o [1997/01/14] kern/2492 AIMS Lab RadioTrack driver for FreeBSD 2. o [1997/01/15] bin/2499 des fetch ftp://bla bla doesn't bail in disk o [1997/01/16] i386/2514 jkh BootEasy binary is OLD in in FBSD install o [1997/01/17] bin/2518 /usr/bin/tar is out of date o [1997/01/21] bin/2556 Patch for calendar.c o [1997/01/26] misc/2596 dd refuses to respond to SIGkill o [1997/01/26] i386/2598 ep0 in EISA mode hangs if ep0-device (ISA o [1997/01/28] bin/2603 dufault Added POSIX.4/POSIX.1b constants in unist o [1997/01/28] bin/2604 dufault Added POSIX.4/POSIX.1b shm_open()/shm_unl o [1997/01/29] misc/2617 Utility submission - upsmon - UPS monitor o [1997/01/31] bin/2630 [PATCH] xargs does excessive and inconsis o [1997/02/02] gnu/2637 tar dumped core with -g option. a [1997/02/02] bin/2641 wpaul login_access.c doesn't work with NIS by d o [1997/02/04] bin/2660 When selecting BSD to boot from system ha o [1997/02/05] bin/2668 modification suggested for rarpd o [1997/02/05] bin/2672 Problem with telnetd o [1997/02/10] bin/2703 jmg vipw doesn't allow you to edit master.pas o [1997/02/10] kern/2704 Occasional failure to detect wdc1 on boot o [1997/02/11] conf/2709 FBSD 2.1.6 X-Server installation setup ut o [1997/02/11] kern/2715 MSDOS-FS 1024/2048 byte/sector media supp o [1997/02/11] kern/2716 od.c/sd.c non 512 byte/sector support imp o [1997/02/13] i386/2729 "make tags" in sys/kern produces barely u o [1997/02/14] bin/2734 jkh pkg_* uses relative paths to executables o [1997/02/14] bin/2735 jkh Add signature support (both MD5 and PGP) o [1997/02/14] bin/2737 yppasswd fails to change password on a su o [1997/02/15] misc/2745 fenner PR querry web form doesn't sort correctly o [1997/02/23] kern/2806 new kernel tags script o [1997/02/26] conf/2822 ftp install specifying URL confusing o [1997/02/27] gnu/2827 after make world genclass is not installe o [1997/03/02] bin/2851 script(1) sets argv[0] of the started she o [1997/03/03] kern/2857 DE500 board exhibits capture effect o [1997/03/03] bin/2859 /usr/bin/quota seems to choke on long gro o [1997/03/03] kern/2865 peter NFS client hangs on umount, ls, df when N o [1997/03/05] kern/2886 fenner mbuf leak in multicast code o [1997/03/06] docs/2897 steve send-pr categories should be explained so o [1997/03/06] bin/2898 fenner arp -a -n buglet o [1997/03/09] i386/2924 sos syscons X keyboard gets stuck in capsmode o [1997/03/10] bin/2934 sh(1) has problems with $ENV o [1997/03/10] bin/2938 Add -b, -l, and -f options to du(1) o [1997/03/11] ports/2949 asami bsd.port.mk needs something like FETCH_EN o [1997/03/14] ports/2988 joerg vga font is not built o [1997/03/17] ports/3012 obrien qmailanalog port in incoming o [1997/03/18] misc/3024 make reinstall in /usr/src requires writa o [1997/03/22] kern/3061 route does not accept -genmask o [1997/03/31] gnu/3157 Patches to gas and gdb to support MMX ext o [1997/04/07] bin/3221 rpc.rusersd : can't communicate with SunO o [1997/04/07] misc/3225 uucpd.c should normalize host names as lo o [1997/04/08] misc/3237 SCRIPTS addition to bsd.prog.mk o [1997/04/09] bin/3242 incorrect prototype for initgroups o [1997/04/10] bin/3251 xsysinfo stops refreshing and wastes CPU o [1997/04/10] kern/3253 scsiconf.c: make ZIP disks use optical dr s [1997/04/13] conf/3272 imp $@ is deprecated I believe, so use ${.TAR o [1997/04/14] kern/3281 errors when "rm -r"-ing in a mounted ext2 o [1997/04/14] kern/3282 ext2fs causes fs-unmount at shutdown/rebo o [1997/04/14] bin/3284 [PATCH] symorder(1): -t option doesnŽt wo o [1997/04/14] bin/3286 [PATCH] missing error checking in mount_m o [1997/04/14] kern/3287 [PATCH] missing symbols in /usr/src/sys/i o [1997/04/15] kern/3299 /dev/console hangs o [1997/04/17] bin/3314 /etc/daily did not run on April 6, 1997 o [1997/04/17] ports/3318 ports New port: jigsaw (Java-based HTTP server) o [1997/04/18] ports/3322 markm setlocale problem in lang/perl5 o [1997/04/25] ports/3383 ports kaffe core dumps if LD_LIBRARY_PATH not s o [1997/04/27] bin/3399 mv of symbolic link can move directory in o [1997/04/29] bin/3416 ibcs emulation problems o [1997/04/29] bin/3418 pkg_create doesn't always create gzip'ed o [1997/05/01] ports/3455 jmz mtools-3.6.tgz could have a better mtools o [1997/05/02] kern/3475 gdb(ptrace?) cause create/modify times on o [1997/05/05] i386/3504 [PATCH] New features (and manpage) for ne o [1997/05/05] bin/3506 [PATCH] more did not show iso-8859-n char o [1997/05/05] bin/3508 FreeBSD 2.2.1 do not view SCSI disk at sw o [1997/05/06] docs/3522 Man pages close(2) misses fcntl lock info o [1997/05/08] kern/3546 ktrace works even if no read permission o [1997/05/08] gnu/3552 the -L option of tar does not work proper o [1997/05/09] bin/3556 Bug with -i option in /usr/bin/lpr o [1997/05/09] bin/3558 make reinstall collapses on install-info s [1997/05/09] kern/3571 Mounted ext2 prevents umount of filesyste o [1997/05/11] conf/3577 eBones and OBJLINK=yes fails to build o [1997/05/12] kern/3584 cleanup TCP_REASS macro in tcp_input.c o [1997/05/13] conf/3590 doc FAQ gives bad reccomendation re: xdm o [1997/05/16] bin/3608 Telnet in linemode will break apart long o [1997/05/17] kern/3611 Internal CPU cache on CyrixiInstead DX2 d o [1997/05/18] gnu/3616 permissions of /usr/libexec/uucp/uuxqt no o [1997/05/20] bin/3638 /bin/w can't handle long /dev/{tty,cua}xx o [1997/05/20] docs/3645 torstenb TCP_wrappers package doesn't mention wher s [1997/05/21] bin/3648 roberto [PATCH] find(1) extension for file flags o [1997/05/21] ports/3657 dburr Port of NCSA HyperNews submitted as p5-hy s [1997/05/22] kern/3667 [PATCH] make vn LKM'able. s [1997/05/30] docs/3720 doc Addition for supported Hardware o [1997/05/31] ports/3729 scrappy pgsql dies when initiated o [1997/06/01] conf/3751 Improvements to /etc/rc{,.network,.pccard o [1997/06/02] bin/3762 dufault Bogus return values from rtprio(1) o [1997/06/04] bin/3778 ypbind -S domainname,server1,... does not o [1997/06/07] bin/3805 single process tftpd o [1997/06/09] bin/3826 KerberosIV sometimes hangs rcp o [1997/06/10] kern/3836 Cannot remove HUGE directory o [1997/06/10] bin/3837 dufault new feature for rtprio o [1997/06/12] kern/3853 netboot/ns8390.c breaks NS datasheet o [1997/06/13] bin/3859 Setting the $0 variable in perl dosnt do o [1997/06/14] bin/3866 rcs2log fails with eastern timezones o [1997/06/15] kern/3879 peter Can't export mounted ext2fs via NFS o [1997/06/16] conf/3886 peter install does not build sendmail host stat o [1997/06/17] ports/3892 itojun new port: www/webxref (cross-reference ge o [1997/06/18] kern/3901 Multicast for Intel 10/100 Ethernet Card o [1997/06/19] misc/3912 ctags(1) cannot trace some macro correctl o [1997/06/23] kern/3938 peter Problem about mmap() over NFS o [1997/06/24] kern/3944 if_le doesnt receive ether multicast pack o [1997/06/25] kern/3948 nonworking t/tcp server side a [1997/06/25] kern/3953 kern-config: options PANIC_REBOOT_WAIT_TI o [1997/06/26] bin/3957 Makefile dependency error in amd o [1997/06/26] ports/3958 obrien a2ps fails if used according to man o [1997/06/26] i386/3962 print disk internal cache size during pro o [1997/06/27] kern/3968 Hardware probes die on Peak SBCs. o [1997/06/29] ports/3983 fenner New port: psf toolkit o [1997/07/02] ports/4014 jkh package/port installation obeys roots uma o [1997/07/07] kern/4051 pppd connect 'chat ...' broken s [1997/07/07] kern/4052 VJ compression drops packets with IP+TCP o [1997/07/08] misc/4063 2.2.2R Installation fails if Jaz drive sp o [1997/07/13] ports/4083 ache netscape wrapper doesn't hand off args co o [1997/07/18] bin/4116 davidn Kerberized login as .root fails to o [1997/07/19] bin/4120 Partition sysid prevents extended DOS par f [1997/07/20] ports/4127 ports netscape-3.01: get rid of bogus error mes o [1997/07/23] kern/4153 New tcp initial send sequence number code s [1997/07/23] bin/4154 wish /bin/sleep handled fractions of a se s [1997/07/24] bin/4157 [PATCH] netstat atalk output should print o [1997/07/24] bin/4163 ftp core dumps after hitting control-C s [1997/07/26] bin/4172 suggest reconnection option added to fetc s [1997/07/28] kern/4184 [PATCH] minor nits in sys/netatalk s [1997/07/31] bin/4204 [PATCH] ac printed wrong report about tty o [1997/08/03] kern/4221 Kernel mode pppd doesen't update wtmp on o [1997/08/04] conf/4229 Ethernet interface unreachable on bootup o [1997/08/06] ports/4232 scrappy Boot-time start of postgressql postmaster o [1997/08/06] bin/4238 chpass only occasionally works in conjunc o [1997/08/07] kern/4243 file locking doesn't work for pipe o [1997/08/07] bin/4247 modification to /etc/security for FreeBSD o [1997/08/08] misc/4249 wpaul ypchsh doesn't care about changing a user a [1997/08/09] kern/4255 SMP kernel freezes on machines with >2 CP a [1997/08/09] kern/4257 itojun scsi RESERVATION CONFLICT support needed o [1997/08/10] ports/4264 ports mftp get a Segmentation fault o [1997/08/12] misc/4285 SDL RISCom/N2 (ISA) a [1997/08/13] gnu/4290 ache man wrong viewed koi8-r manpages and neqn o [1997/08/13] kern/4297 dufault SIGEV_NONE and SIGEV_SIGNAL go in signal. o [1997/08/13] i386/4300 msmith The initial timeout on open("/dev/lpt0".. o [1997/08/14] ports/4304 asami Recommendation re. Ports Collection o [1997/08/22] ports/4356 erich sudo shouldn't block signals in tgetpass( o [1997/08/23] conf/4363 kernel build depend on make obj o [1997/08/26] ports/4391 ports New port: VPCE o [1997/08/26] misc/4395 if exists(secure) in /usr/src/Makefile is o [1997/08/28] ports/4412 ports New port: YaTeX (in print and japanese) o [1997/08/29] kern/4413 No way to unmount a floppy that goes bad o [1997/08/29] misc/4414 be.iso.kbd errors in mapping o [1997/08/29] bin/4419 man can display the same man page twice o [1997/08/29] bin/4420 find -exedir doesn't chdir for first entr o [1997/09/03] bin/4459 bde No prototype for moncontrol(3) and monsta o [1997/09/04] misc/4468 dlopen is not available from static execu o [1997/09/07] bin/4484 peter sendmail is barfing o [1997/09/13] kern/4528 processes hang if the mount_portal proces a [1997/09/14] i386/4538 sos byteswapped ATAPI id strings o [1997/09/14] bin/4545 f77 will only call `cc', no com-line opti f [1997/09/15] i386/4547 asc.c and pcaudio.c should use selrecord o [1997/09/16] bin/4553 man fails to open manpage if ./man exists o [1997/09/16] misc/4556 make can't build executable from single F o [1997/09/17] ports/4565 torstenb News port: ircII-current (ircII-2.9a8/col o [1997/09/18] conf/4572 /etc/rc.network loads ipfirewall lkm rega o [1997/09/21] kern/4597 Patch to pass NPX status word in signal c o [1997/09/21] kern/4601 Contrib: userconfig patch to edit SCSI co o [1997/09/25] bin/4629 calendar doesn't print all dates sometime o [1997/09/28] misc/4646 Can't fixit with an NFS-mounted CD. o [1997/09/29] conf/4654 Need to do post-ifconfig commands o [1997/10/02] kern/4680 lkm version of vn.c o [1997/10/03] kern/4685 Some SCSI retry messages formatted differ o [1997/10/04] bin/4688 peter sys/utsname.h SYS_NMLN 32 too small o [1997/10/05] bin/4695 pstat error o [1997/10/05] bin/4696 ping hangs on certain unresolvable hosts o [1997/10/05] bin/4697 make doesn't handle dependencies with for o [1997/10/12] gnu/4748 cc -Wformat too sensitive a [1997/10/15] ports/4770 ports New port: Xitami HTTP Server o [1997/10/15] gnu/4771 diff to correct misleading total bytes in a [1997/10/19] ports/4808 andreas Broken password.c in backend/libpq for Fr o [1997/10/22] bin/4828 ypxfr makes false assumption about RPC ca o [1997/10/23] docs/4833 Manual page missing for pccardc o [1997/10/23] kern/4837 bad error return from rmdir() with msdos a [1997/10/23] ports/4839 ports New port - spin - Verification system for o [1997/10/24] kern/4845 Boot complains about disk slices in FAT p o [1997/10/24] kern/4847 pccard stuff fails after running Win95 wi o [1997/11/01] bin/4915 peter NFS mounts to linux machine can hang syst o [1997/11/02] bin/4923 vi leaves the screen in standout mode o [1997/11/03] ports/4928 asami no 'update' target in /usr/ports/Makefile s [1997/11/04] ports/4937 mph A looks-nice audio level meter port is no o [1997/11/07] ports/4967 ports I have ported Carl DeClerck's mserver-0.2 o [1997/11/07] bin/4969 cdcontrol plays incorrect audio tracks in o [1997/11/08] bin/4975 quotaon while server very busy causes loc o [1997/11/09] kern/4992 SCSI disk scheduling disabled in 2.2.5 o [1997/11/10] kern/4997 DDB_UNATTENDED doesn't always work o [1997/11/10] misc/4999 Entering '?' at first boot prompt in inst o [1997/11/11] kern/5009 ibcs2 emulation o [1997/11/11] kern/5011 rndcontrol -s 8 causes kernel panic o [1997/11/11] docs/5016 make -j4 fails in share/doc/usd/13.viref o [1997/11/13] bin/5031 lpr does not remove original file if -s i o [1997/11/13] ports/5034 ache (tcsh) blocked write on named pipe sticks o [1997/11/14] kern/5038 FreeBSD can't read MS Joliet CDs. o [1997/11/14] gnu/5039 libdialog fails to resore terminal o [1997/11/14] kern/5040 Support for "SCSI-0" devices f [1997/11/14] ports/5045 ports freebsd.ftp.markers for xearth is out of o [1997/11/14] bin/5047 ipfw(8) IP address resolving problem if o o [1997/11/14] kern/5048 Calling shutdown(fd,1) multiple times wil o [1997/11/15] bin/5052 peter upgrade BIND o [1997/11/15] kern/5059 peter mountd, nfsd, etc. fail when lp0 defined o [1997/11/15] kern/5060 ahasty Kernel doesn't compile with mss o [1997/11/15] misc/5064 A dos2bsd conversion utility in C. o [1997/11/17] docs/5070 doc new FAQ entries o [1997/11/17] bin/5072 /usr/bin/fetch parses a URL incorrectly o [1997/11/17] bin/5073 'host -t mx' coredumps o [1997/11/18] misc/5081 sysinstall glitches o [1997/11/18] misc/5082 Permit upgrade of multi-disk system, or d o [1997/11/20] kern/5108 pmap_release panics with 'freeing held pa o [1997/11/20] bin/5109 patch to ftpd, new option to limit number o [1997/11/20] kern/5110 kernel crash & core in pmap_testbit durin a [1997/11/23] ports/5131 ports New math port: SuperLU o [1997/11/23] bin/5134 cdcontrol will eject a mounted CDROM s [1997/11/25] misc/5147 [PATCH] a shell script to help -CURRENT u o [1997/11/26] misc/5153 jkh release file checksums in wrong file o [1997/11/26] ports/5158 ports thot editor port doesn't install template s [1997/11/28] bin/5173 [PATCH] restore ought to deal with root s s [1997/11/30] i386/5182 bde [PATCH] A patch support high speed serial o [1997/12/03] ports/5200 ports new port-package for pgpmoose o [1997/12/03] ports/5201 ports new port-package for fidogate o [1997/12/03] ports/5202 ports new port-package for pathalias o [1997/12/03] conf/5213 ahasty My SB AWE64 isn't being recognized. f [1997/12/05] kern/5231 Mounted MS-DOS floppy disk writes unrelia o [1997/12/06] misc/5239 jkh ata + atapi & /stand/sysinstall & dos o [1997/12/06] ports/5240 ports Incorrect path in pkfonts (fix) o [1997/12/07] ports/5245 ports new port, bugsx game o [1997/12/09] bin/5263 sh bug (with example) s [1997/12/11] kern/5274 gibbs [PATCH] mt comp 0/1 does not work, with f s [1997/12/11] kern/5275 [PATCH] Added volume (barcode) support to o [1997/12/14] conf/5292 master.passwd -- /nonexistent vs. /sbin/n s [1997/12/14] bin/5296 slattach fails creating pidfile with ioct f [1997/12/15] ports/5302 ache webcopy port doesnt work? o [1997/12/15] ports/5312 ports New math port xwpl o [1997/12/22] kern/5362 peter mount incorrectly reports / as an NFS exp o [1997/12/28] ports/5393 ports DOOMSRC port & package o [1997/12/30] ports/5397 ports upload of new port (fly) f [1997/12/30] i386/5398 silo overflows running o [1998/01/02] bin/5410 pkg_info options s [1998/01/03] bin/5419 [PATCH] timed rejects valid networks with o [1998/01/08] kern/5429 Ethernet collision during file transfers s [1998/01/08] kern/5435 [PATCH] if_fe.c for old Gateway Communica s [1998/01/08] bin/5444 [PATCH] ypserv uses wrong dns lookup orde o [1998/01/08] ports/5446 se KDE port does not install using make in / s [1998/01/08] bin/5451 roberto [PATCH] halt/reboot does not execute /etc o [1998/01/09] ports/5472 erich xmmix-1.2 prot won't compile - "SOUND_VER o [1998/01/10] ports/5475 ports abacus sentry o [1998/01/11] bin/5483 Login(1) clears utmp entry s [1998/01/15] docs/5487 doc Adding documentation for scsi(8) usage wi o [1998/01/15] kern/5502 nfsd process usage doesn't get accounted o [1998/01/15] kern/5508 SCSI Message sd0: COMMAND FAILED (4 28) @ o [1998/01/15] ports/5509 ports submit new port xruskb-1.5.1 s [1998/01/16] kern/5510 sos [PATCH] Incomplete ATAPI diagnostic at bo o [1998/01/18] kern/5517 Recursive NULLFS mount causes ufs_ihashge o [1998/01/19] misc/5525 bde gid and uid in struct pwd are ints, when s [1998/01/20] misc/5531 [SUBMISSION] new library function abs2rel s [1998/01/20] kern/5532 [PATCH] Dropped packet counts are inaccur o [1998/01/21] bin/5537 vi dumps core with dodgy exrc file o [1998/01/21] misc/5539 ftp problems with ftp.freebsd.org ? "Tran o [1998/01/21] bin/5541 ppp -alias (2.2.5-STABLE) has troubles wi o [1998/01/22] docs/5545 doc http://www.freebsd.org/handbook/handbook3 o [1998/01/22] bin/5549 Kernel Problem o [1998/01/24] i386/5559 PC-Card joystick ports were not supported o [1998/01/25] bin/5567 trying to mount a joliet filesystem cdrom o [1998/01/26] bin/5569 Problems with 'moused'. o [1998/01/26] ports/5570 ports new port, rise 0.3.3 o [1998/01/26] kern/5577 bde Unnecessary disk I/O and noatime ffs fixe a [1998/01/28] bin/5591 Trouble with LD_PRELOAD environment varia o [1998/01/28] bin/5596 killall's diagnostics bogus o [1998/01/30] ports/5608 jfitz Ports change-request: Afterstep I18N o [1998/01/31] bin/5609 lpd cannot send long files to HP's JetDir o [1998/02/02] ports/5626 ports 'ldap' port eats all available CPU time o [1998/02/02] kern/5627 Tertiary/Quaternary IDE Ctlrs: A few kern a [1998/02/03] ports/5638 ports mail/bulk_mailer port update o [1998/02/04] bin/5650 fetch(1) manpage out of date WRT FTP URLs o [1998/02/04] bin/5651 fenner fetch(1) doesn't CD properly on FTPs o [1998/02/04] ports/5653 ports New port of ICI language a [1998/02/05] ports/5660 ports New port type1inst o [1998/02/05] misc/5662 sysinstall generates short dev names for o [1998/02/06] bin/5666 ifconfig fails to add alias o [1998/02/06] kern/5672 Crash from scsi aborted command 'Overlapp o [1998/02/07] ports/5675 ports New port in category devel: DOC++ o [1998/02/09] kern/5689 sysctl vm.vmmeter - bogus and unsupported o [1998/02/10] ports/5706 ports New port: ja-dvi2dvi-1.0 (japanese/dvi2dv o [1998/02/10] bin/5711 bin/cat code cleanup o [1998/02/10] bin/5712 /bin/chio code cleaup and option added o [1998/02/10] bin/5717 pw -D -g "" returns error o [1998/02/10] bin/5718 pkg_delete refuses to run as non-root o [1998/02/14] bin/5745 [PATCH] Add /usr/local/share/mk to defaul o [1998/02/14] bin/5746 bootparamd will not netboot sun 3 compute o [1998/02/14] bin/5747 ld.so error message o [1998/02/15] bin/5758 sys/resources.h doesn't include sys/time. o [1998/02/17] kern/5768 Shutdown aborts syncing, when sync isn't o [1998/02/17] ports/5771 ports New port: Stuttgart Neural Network Simula s [1998/02/17] misc/5772 peter nfsstat does not work o [1998/02/17] ports/5776 ports New compression port: lzo o [1998/02/18] i386/5779 BOUNCE_BUFFERS option in LINT needs modif o [1998/02/18] i386/5784 ibcs2 emulation not handling ioctl(..FION a [1998/02/18] misc/5786 definition of speed_t in termios.h is not o [1998/02/19] ports/5788 joerg pcemu harddisk-access fixes o [1998/02/19] kern/5789 wcd0 requires ATAPI_STATIC o [1998/02/19] kern/5795 Panic: "bremfree: removing a buffer when o [1998/02/20] kern/5800 incorporate -current pppd driver into -st o [1998/02/20] misc/5803 "tab" function from "ee" not compatible w o [1998/02/21] misc/5813 strsignal() missing a [1998/02/22] ports/5814 ports New package XShodou o [1998/02/22] ports/5821 ports Port of Swish-E, a Web site indexer o [1998/02/25] gnu/5841 installmost or install (world) of tmac fa o [1998/02/25] bin/5847 Makeworld fails if CXXFLAGS is set. o [1998/02/25] docs/5848 [PATCH] Update web.mk to handle SGML file o [1998/02/25] misc/5855 /etc/services is out of date with IANA o [1998/02/26] bin/5857 non-functional lpr/lpr o [1998/02/26] ports/5859 ports xxgdb port doesn't recognize the -k optio o [1998/02/26] kern/5863 Kernel support for sorted SHUTDOWN & SHUT o [1998/02/27] ports/5868 jfitz MSQL isn't PREFIX clean and PLIST wrong o [1998/03/01] bin/5880 df -t does not support devfs o [1998/03/01] ports/5884 dburr New port: icqjava-0.981a (net/icqjava) o [1998/03/01] ports/5885 ports New port: dc20ctrl-0.4 (graphics/dc20ctrl o [1998/03/02] bin/5901 new version of `fmt' o [1998/03/03] bin/5912 kinit exits if no user name specified o [1998/03/06] kern/5931 dma errors in syslog with GUS-max o [1998/03/06] i386/5932 perfmon kernel code should check for non- o [1998/03/07] conf/5936 Add hostname to C shell prompt o [1998/03/08] bin/5944 cvs doesn't work correct. o [1998/03/08] ports/5946 ports New port biology/molmol o [1998/03/10] kern/5964 peter nfsd send interface selection seems broke o [1998/03/10] bin/5966 vi's spanish message catalog does not use o [1998/03/10] kern/5967 upg from 2.1.7.1/2.2.1 to 2.2.5-stable (a o [1998/03/10] ports/5972 andreas x11/fvwm95 requiring gsm, and rplay is a o [1998/03/11] gnu/5982 no error exit code from tar on child fail o [1998/03/12] gnu/5992 cvs y2k o [1998/03/13] bin/6000 kadmin ank uses bad default expiration of o [1998/03/15] bin/6015 indent(1) breaks source with backslash ne o [1998/03/15] ports/6017 ports new port: yacl o [1998/03/15] ports/6018 ports new port: ml-3.3 a [1998/03/15] ports/6020 ports new port: Xfstt-0.9.7 o [1998/03/15] ports/6027 max New Port: tgif2tex o [1998/03/16] kern/6032 poor TCP performance using FDDI over long o [1998/03/16] docs/6036 doc New handbook section 10.4.3.4 - si driver s [1998/03/18] ports/6053 kuriyama new port request: korean/hanIM o [1998/03/18] kern/6056 de driver support for DS 21143 incomplete o [1998/03/18] ports/6057 ports xperfmon++-1.40 package fails XtRealloc() o [1998/03/18] misc/6060 peter Sendmail executable, not doing MASQUERADE o [1998/03/18] bin/6064 Script to update files installed by /usr/ o [1998/03/19] i386/6067 boot.help pushes kernel list off screen o [1998/03/21] ports/6085 ports New port: pavuk-0.8 o [1998/03/22] conf/6096 /sys/i386/conf/LINT: edit(???) sound_conf o [1998/03/22] i386/6098 FreeBSD only uses 16M of 48M on Compaq De o [1998/03/22] gnu/6107 gdb should support PRINTF_HAS_LONG_LONG o [1998/03/23] ports/6113 ports new port: rinfo-1.2 o [1998/03/23] ports/6120 ports New port: xtetris-2.6 o [1998/03/27] bin/6144 telnet for 8-bit data path o [1998/03/27] ports/6151 ports New port: xrus-1.5.2 o [1998/03/28] ports/6153 ports New port: flick o [1998/03/28] bin/6156 Patches to make dump understand ENOSPC o [1998/03/28] bin/6161 2.2.6 kerberos servers are awfully visibl o [1998/03/29] ports/6170 ports another squid ports o [1998/03/29] ports/6171 ports New port: xtron-1.1a o [1998/03/29] misc/6172 markm Why is /ftp.freebsd.org/pub/FreeBSD/CTM/p o [1998/03/30] bin/6176 running architextSearch (excite) under li o [1998/03/30] ports/6181 dburr New port: xoj-1.0 o [1998/03/31] bin/6183 quota hangups o [1998/03/31] kern/6184 No error if resulting file pos in lseek i o [1998/04/01] bin/6187 peter mounting nfs directories with -b can caus o [1998/04/01] ports/6194 ports New port: mirrormagic-1.3 o [1998/04/02] bin/6198 demangling C++ names breaks the Cygnus -f o [1998/04/03] bin/6200 flex can be upgraded o [1998/04/03] bin/6202 No way to detect removable media. o [1998/04/03] bin/6206 Enhancements to the shutdown program o [1998/04/04] kern/6213 peter NFS-mounted swap (via vnconfig) easily cr o [1998/04/04] bin/6214 ping sometimes cannot be killed with a Co o [1998/04/05] conf/6220 Too few ttyv devices in the -RELEASE syst s [1998/04/06] bin/6223 PST/DST bug in /bin/date o [1998/04/06] bin/6227 as doesn't handle this instruction o [1998/04/06] bin/6228 Syslogd not working according to manpage o [1998/04/06] ports/6230 ports gfont_mkgdf calls wrong interpreter o [1998/04/06] bin/6234 ypserv -d is broken o [1998/04/07] ports/6235 ports New port: scwm-icon o [1998/04/07] ports/6236 ports New port: scwm o [1998/04/07] kern/6247 Gravis UltraSound Classic no longer works o [1998/04/09] kern/6255 SI driver fix for Jet ISA memory size o [1998/04/09] kern/6256 SI driver - new T225 download code o [1998/04/10] ports/6262 ports New port of bulk_mailer 1.9 o [1998/04/10] i386/6269 Included is a patch to support AMD Write- o [1998/04/10] i386/6270 options.i386 update for AMD write-allocat o [1998/04/14] docs/6295 doc Reference to nonexistent file in Device D o [1998/04/14] kern/6296 IP_HDRINCL sockets force header fields to a [1998/04/14] kern/6299 vmstat -i does not show PnP device interr o [1998/04/15] docs/6307 doc sgmlfmt not `make -jN' ready s [1998/04/15] bin/6308 [PATCH] date(1) -v argument cannot vary s o [1998/04/15] ports/6311 ports New port: gsfonts o [1998/04/15] ports/6312 ports New port: ghostscript-3.33 s [1998/04/15] bin/6314 [PATCH] /usr/sbin/ac modification s [1998/04/16] ports/6315 kuriyama new port request: korean/htm o [1998/04/16] kern/6318 pppd does not update wtmp on hangup o [1998/04/16] misc/6320 Sometimes nohup isn't good enough. a [1998/04/16] ports/6321 andreas can't run any version of PostgreSQL on 2. o [1998/04/17] ports/6331 ports New port: libshhopt-1.1.3 o [1998/04/17] bin/6332 bde /usr/include/time.h doesn't compile with o [1998/04/17] conf/6334 -DALLLANG should be moved from src/Makefi o [1998/04/17] gnu/6338 Gnu tar not working properly with the -G o [1998/04/18] conf/6346 Kernel version strings need to relate to a [1998/04/19] ports/6355 ports New port o [1998/04/20] bin/6359 routed does sent router discovry solicita o [1998/04/20] ports/6361 ports New ports collection: GNU Pascal Compiler s [1998/04/20] bin/6371 [PATCH?] fetch(1) uses HTTP_PROXY for ftp o [1998/04/23] ports/6393 ports patch for multimedia-2.1.tar.gz f [1998/04/23] bin/6399 [PATCH] When using "-u" mount doesn't sta o [1998/04/23] bin/6401 user error while mounting causes panic o [1998/04/23] kern/6402 another machine can change my own permane o [1998/04/24] ports/6405 ports vrweb port does not build; ignores local a [1998/04/25] ports/6413 ports new ports for lynx2.8rel.3 (modified for a [1998/04/25] ports/6414 ports new ports for ja-color-lynx2.8rel.3 (modi a [1998/04/25] ports/6415 ports new ports for ja-lynx2.8.1dev.7 (modified a [1998/04/25] ports/6416 ports new ports for ja-color-lynx2.8.1dev.7 (mo a [1998/04/27] kern/6432 IFF_NOARP does not affect ethernet interf o [1998/04/28] ports/6434 se [PATCH] mediatool in x11/kdelibs cause kw o [1998/04/28] ports/6445 ports New port for `fhist' o [1998/04/29] docs/6455 doc bootptab.5 uses both man macros and mdoc o [1998/04/30] kern/6464 tcpdump doesn't recognize tun0 when it's o [1998/05/01] ports/6473 ports New port: libshhmsg-1.3.3 o [1998/05/01] ports/6474 ports New port: libxalloc-1.0.2 o [1998/05/03] kern/6495 Need pci_unmap_mem and pci_unmap_port rou o [1998/05/03] ports/6504 ports New port of `C Interfaces and Implementat o [1998/05/03] kern/6505 panic: cannot mount root on sd1 o [1998/05/04] docs/6508 doc sgmlfmt does not expand relative URLs s [1998/05/04] bin/6509 [ALMOST PATCH] Allow dd to seek/skip to o o [1998/05/04] docs/6510 steve GNATS doesn't expand freebsd-doc s [1998/05/05] bin/6521 [MAYBE PATCH] "rmdir -p x/y/z/" fails s [1998/05/05] bin/6529 [ALMOST PATCH] potential timing problem w o [1998/05/07] ports/6541 ports New port: math/dc o [1998/05/07] kern/6544 ahasty Only get one channel through sound card o [1998/05/07] ports/6546 ache 3line ansi prompt in tcsh: cursor disappe o [1998/05/09] conf/6559 jkh Upgrade processing clobber's ~root/{.cshr o [1998/05/09] ports/6563 se minor problems with KDE ports o [1998/05/09] docs/6564 doc need more references in fetch(1) o [1998/05/09] ports/6565 ports new port o [1998/05/10] ports/6570 ports port of java CUP parser o [1998/05/11] i386/6595 Old IP address persistent after change o [1998/05/11] ports/6598 ports new port for FreeBSD - asmodem o [1998/05/12] ports/6606 ports package add of perl-5.00404 fails w/3.0 S o [1998/05/12] misc/6612 bsd.man.mk can't handle man pages with ": o [1998/05/12] ports/6613 ports ports/lang/perl5 fails to install by addi o [1998/05/13] ports/6622 obrien IIJ-PPP current version o [1998/05/13] kern/6623 non-root user can crash system if disconn o [1998/05/13] conf/6624 davidn One class with nologin=/etc/nologin: reje o [1998/05/15] ports/6645 ports Updated port: mysql o [1998/05/15] kern/6651 peter Possible NFS deadlock clue f [1998/05/16] bin/6653 The rc script sometimes produces errors w o [1998/05/16] ports/6657 ports new port for perl/Tk 800.004 s [1998/05/16] bin/6658 [PATCH] -stable getcwd(3) performs unnece s [1998/05/17] kern/6668 [PATCH] new driver: Virtual Ethernet driv s [1998/05/18] bin/6676 [PATCH] natd doesn't respond to signals w o [1998/05/18] docs/6681 doc docu. addition o [1998/05/19] ports/6687 ports New port, ktelnet v0.6 o [1998/05/19] ports/6688 ports New port: kbiff v0.6 o [1998/05/19] ports/6699 ports Generic NQS port (new) o [1998/05/20] kern/6702 luigi tsleep and new snd (pcm0) o [1998/05/20] ports/6704 ports New port: gtk-- o [1998/05/21] ports/6709 ports New port kmessage s [1998/05/21] conf/6711 [PATCH ?] I've seen that fortune before o [1998/05/23] ports/6728 ports New port ktranslator o [1998/05/24] docs/6745 doc man page for ftpd o [1998/05/25] misc/6752 jkh sysinstall w/o cd9660 fs loaded can't mou s [1998/05/25] kern/6758 mount_portal fails because kernal refuses a [1998/05/26] misc/6759 phk buggy code in libdisk.a's disk.c o [1998/05/26] kern/6760 can't compile kernel w/o networking s [1998/05/26] docs/6764 doc limits references to sysctl o [1998/05/26] kern/6769 peter panic: nfs rcvunlock o [1998/05/28] ports/6776 ports New port - xqf o [1998/05/28] ports/6777 ports New port - qstat s [1998/05/29] kern/6781 [PATCH] exabyte changer doesn't grok LUNs s [1998/05/29] bin/6785 place for all the default dump flags a [1998/05/29] ports/6791 ports New Port, TinyMUX s [1998/05/29] i386/6792 eivind [PATCH][STABLE]Backported PnP support for o [1998/05/29] bin/6795 steve send-pr does not parse problem reports co o [1998/05/31] ports/6806 ports /usr/ports/graphics/killustrator doesn't f [1998/05/31] ports/6813 fenner patched audio module for vat port o [1998/06/01] ports/6815 torstenb ssh lookup ignores second IP address s [1998/06/01] kern/6819 [PATCH] pci_unmap_int (pci/pci.c) does no o [1998/06/01] kern/6820 cd9660_mount NULL pointer deref for no CD s [1998/06/02] bin/6832 imp [PATCH] Allows PINGing from any address o o [1998/06/02] ports/6838 ports Enable lj4dith driver by default s [1998/06/02] kern/6843 sos [PATCH] to enable reading digital audio s o [1998/06/04] ports/6862 jfitz Cyrus upgraded to 1.5.10 o [1998/06/06] kern/6874 accounting prevents transition to multi u o [1998/06/06] ports/6882 markm Perl5 in 3.0-980518-SNAP o [1998/06/11] ports/6915 ports Apache-FP for apache v1.3.0 o [1998/06/11] bin/6919 can not run multiple instances of /sbin/r o [1998/06/13] misc/6936 sysinstall: install from MS-DOS MO divece o [1998/06/13] bin/6937 [PATCH] rc.firewall can't be run from net o [1998/06/13] bin/6939 restore does not set the correct uid on d o [1998/06/13] ports/6942 ports New port, mrouted-beta o [1998/06/14] ports/6943 ports new ports submitted o [1998/06/15] ports/6954 vanilla New port: CJK o [1998/06/16] gnu/6965 grep -a dosn't work o [1998/06/16] ports/6970 ports mule and family build faulure o [1998/06/18] kern/6981 CD unmount w/o CD in drive can cause pani o [1998/06/18] ports/6987 dima make package for ssh-1.2.25 now fails. s [1998/06/19] bin/6995 [patch] Minor flaw in fdformat s [1998/06/19] bin/6997 [patch] vnconfig "open" error message con o [1998/06/19] conf/6999 Mismatch in rc.conf "accounting" keyword o [1998/06/20] ports/7004 jmz sysutils/cdrecord depends on mkisofs, is a [1998/06/20] ports/7005 dburr Submitting RealAudio Player 3.0 as a new o [1998/06/20] ports/7006 itojun hylafax port improved s [1998/06/21] kern/7014 [PATCH][STABLE] Add support for SiS 5591 o [1998/06/22] bin/7021 asami Size estimation patches to pkg_* o [1998/06/22] bin/7022 asami changes to bsd.port.mk to accompany PR bi o [1998/06/22] bin/7023 asami bsd.port.(%|subdir.).mk patches for size o [1998/06/23] kern/7029 gibbs cdrecord and aic7880 troubles f [1998/06/23] i386/7031 Our RocketPort port does not support DEVF o [1998/06/24] misc/7039 jb sigwait doesn't init the return value. s [1998/06/24] kern/7044 [PATCH] WaveLAN (2.4G, ISA, full-length b s [1998/06/24] i386/7052 amd_map_program and NIS problem s [1998/06/24] bin/7055 steve [mfc] multiple syslog-forwarding will for o [1998/06/24] ports/7062 torstenb pidentd partialy broken in current s [1998/06/24] bin/7063 mount fails if $PWD does not exist o [1998/06/25] docs/7065 wosch FreeBSD webpages -> applications, port br s [1998/06/25] bin/7068 /usr/bin/perl: library path addition o [1998/06/25] ports/7074 ports [New Ports] Xtt0.6 a TrueType X servers s [1998/06/26] bin/7081 [patch] lpr stuff doesn't deal with RM an s [1998/06/26] kern/7085 [patch] maybe_resched() priority check co o [1998/06/27] ports/7086 ports Port: ja-p5-jcode.pl o [1998/06/28] ports/7094 ports New port of xbomber game s [1998/06/28] kern/7095 [stable] Gravis MAX in 2.2.6 suffers from s [1998/06/28] i386/7100 integrate pcvt configuration into the /et s [1998/06/28] bin/7101 /sbin/ipfw unexpected variant treatment o s [1998/06/29] bin/7117 flex -I option is broken o [1998/06/30] ports/7128 ports New port: Raster3D-2.4f o [1998/06/30] ports/7133 markm upgrade SSLeay to 0.9.0b s [1998/06/30] gnu/7135 [PATCH] It's not easy to build a cvs bina s [1998/07/01] bin/7136 kerberized telnetd doesn't use gettytab % o [1998/07/01] ports/7140 ports new port: htdig s [1998/07/02] kern/7144 WaveLAN interface moves packets to uper l s [1998/07/02] kern/7146 The PCCARD doesnt recognize cards in top o [1998/07/02] ports/7150 ports `elftoaout': new port s [1998/07/04] i386/7159 ahasty [PATCH] Unknown option OVERRIDE_CARD (bt8 o [1998/07/04] ports/7163 ports new port: p5-Set-IntSpan o [1998/07/04] ports/7164 ports new port: p5-News-Newsrc s [1998/07/05] kern/7177 ahasty [PATCH] Support for "Video Highway Xtreme s [1998/07/06] bin/7184 /usr/games/robots fails to write high sco f [1998/07/07] i386/7201 (cpu == CPU_686) in pmap.c shoud also app s [1998/07/07] bin/7203 [PATCH] fetch -o - file:/path/name doesn' s [1998/07/08] kern/7210 [PATCH] od(4) bug fixes and enhancements, s [1998/07/08] misc/7215 des [MFC] 'man' program auth MANPATH needs he o [1998/07/08] ports/7220 ports devel/crossm68k-devel port addition (gcc- f [1998/07/09] bin/7228 des [MFC] at(1) does not accept long month na f [1998/07/09] misc/7229 /usr/include/pcap*.h isn't C++ safe. s [1998/07/10] misc/7232 Suggestion for FreeBSD installation dialo o [1998/07/10] kern/7234 yokota keyboard problems during login immediatel f [1998/07/10] misc/7239 ping(8) and traceroute(8) may report erra f [1998/07/10] bin/7241 tcpdump does not work with parallel line s [1998/07/11] bin/7253 des [PATCH] Make top(1) ignore itself o [1998/07/11] bin/7254 release: multiple versions of write_mfs_i o [1998/07/12] kern/7259 -current: GENERIC and SMP-GENERIC out of o [1998/07/12] ports/7261 ports problem of wget-1.5.2 o [1998/07/12] bin/7265 A warning flag is added to ln(1). o [1998/07/13] ports/7268 asami MASTER_SITE_OVERRIDE works more better o [1998/07/13] ports/7275 torstenb Symlink for one ssh man-page is wrong o [1998/07/14] kern/7282 some old and rarely used drivers have app o [1998/07/14] ports/7283 ache tcsh / LC_CTYPE - obscure problem. o [1998/07/15] bin/7287 Incorrect domain name for MAP_UPDATE in m o [1998/07/15] docs/7289 doc ppp.8: RECEIVING INCOMING PPP CONNECTIONS o [1998/07/15] bin/7294 lpr -r file fails to remove file because o [1998/07/15] ports/7295 ports Starting programs with bash port causes p o [1998/07/15] bin/7296 hoek Long-standing bug in 'more' wrt CRLF. I o [1998/07/16] bin/7298 Improvements to ln(1). o [1998/07/17] docs/7306 doc There is no manpage for timegm o [1998/07/17] misc/7310 Chinese locale data (zh_CN.EUC encoding) o [1998/07/18] ports/7314 ports ncurses port doesn't support TERM=xterm-c a [1998/07/19] bin/7324 wosch Suggestions for minor modifications to ad o [1998/07/19] bin/7325 /bin/sh redirection does not match man pa o [1998/07/20] ports/7329 ports New port: vje-trial o [1998/07/20] ports/7333 ports Update ports: ja-Weblint97-0.12 by means o [1998/07/20] ports/7334 ports www/communicator-4.5 o [1998/07/20] bin/7337 Creating a partition "before" the boot pa o [1998/07/20] ports/7344 ports New port: wmavgload-0.6.1 o [1998/07/21] ports/7347 ports Upgraded port: mysql-3.21.33 o [1998/07/21] conf/7348 Default answer 'NO' in network configurat f [1998/07/21] ports/7350 ports netpbm port refuses to build on CURRENT o [1998/07/21] bin/7352 libc generates spurious warnings when use o [1998/07/21] conf/7355 The checkboxes are not always properly up o [1998/07/21] docs/7359 doc amd documentation problems o [1998/07/21] ports/7363 ports port upgrade: korean/nh2ps a [1998/07/22] ports/7365 ports new port request: korean/pgp.language o [1998/07/22] conf/7366 /tmp/.X* not removed by /etc/rc if clear_ o [1998/07/23] ports/7375 dburr New port request: audio/xsplay s [1998/07/23] kern/7377 we have a new digiboard driver supporting o [1998/07/23] ports/7379 obrien super's command link feature doesn't work o [1998/07/24] misc/7391 jkh 2.2.7-RELEASE: src/CHECKSUM.MD5 and des/C o [1998/07/24] ports/7394 jfitz INDEX has bad description for p5-Mysql-mo o [1998/07/27] ports/7408 asami packages-2.2.7/INDEX is wrong o [1998/07/27] ports/7409 ports New port: CaribbeanStud-1.0 o [1998/07/27] ports/7412 ports port of 4va to be included in /usr/ports/ o [1998/07/27] ports/7416 ports New port: g2 (graphics/g2) s [1998/07/27] bin/7417 ls -W option unimplemented a [1998/07/27] bin/7419 [PATCH] cleanup for ISO o [1998/07/27] ports/7421 ports update p5-PGP-Sign to 0.09 s [1998/07/29] i386/7426 Bugs in macro definitions of pthreads. o [1998/07/29] ports/7428 ports new port of WindowMaker-data o [1998/07/29] ports/7430 se kvt terminal emulator does not update /va o [1998/07/29] ports/7432 ports Blackbox upgrade 0.34.4 --> 0.35.0 s [1998/07/29] misc/7435 [PATCH(HACK)] PR 6387 solution didn't han o [1998/07/29] ports/7438 ports new port: net/ntop o [1998/07/29] ports/7439 ports Present a FreeBSD port for xamp-0.8-7 o [1998/07/30] ports/7445 ports New port: cgiwrap-3.6.1 o [1998/07/30] ports/7448 ports New port: cgiwrap-3.6.1 o [1998/07/30] ports/7451 ports `sc' port f [1998/07/30] bin/7453 libdialog: small change to DITEM_RECREATE o [1998/07/30] bin/7454 jkh make dependencies more visible in sysinst o [1998/07/30] misc/7455 jkh trailing spaces on mountpoint hangs sysin o [1998/07/31] docs/7456 doc dialog(3) man page outdated o [1998/07/31] ports/7460 ports new port of jafm - not Just Another File o [1998/07/31] ports/7461 ports port upgrade: korean/hanterm-xf86 o [1998/08/01] ports/7462 ports port upgrade: korean/pine o [1998/08/01] ports/7464 dburr New port: WMakerconf o [1998/08/01] ports/7465 ports updated port - xlogmaster-1.4.1 o [1998/08/01] bin/7466 new adventure magic o [1998/08/01] misc/7467 directory error with hangman man page o [1998/08/01] ports/7468 ports Error building modula-3 on dual-processor o [1998/08/02] ports/7476 ports Update port: games/KnightCap o [1998/08/02] ports/7477 ports New port: ezfm-0.1 o [1998/08/03] ports/7479 ports GNU diction and style ported o [1998/08/03] ports/7480 ports New Port afbackup-3.0.4 o [1998/08/03] kern/7482 nonsense-code in kern_subr.c o [1998/08/03] bin/7483 missing new-line characters in messages 712 problems total. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 02:21:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA22414 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 02:21:44 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA22404; Tue, 4 Aug 1998 02:21:30 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA28898; Tue, 4 Aug 1998 02:21:30 -0700 (PDT) Date: Tue, 4 Aug 1998 02:21:30 -0700 (PDT) Message-Id: <199808040921.CAA28898@freefall.freebsd.org> To: seggers@semyam.dinoco.de, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7482 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: nonsense-code in kern_subr.c State-Changed-From-To: open-closed State-Changed-By: phk State-Changed-When: Tue Aug 4 02:21:14 PDT 1998 State-Changed-Why: fixed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 02:22:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA22453 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 02:22:00 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA22432; Tue, 4 Aug 1998 02:21:48 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA28967; Tue, 4 Aug 1998 02:21:47 -0700 (PDT) Date: Tue, 4 Aug 1998 02:21:47 -0700 (PDT) Message-Id: <199808040921.CAA28967@freefall.freebsd.org> To: se@dialup124.zpr.uni-koeln.de, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/7483 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: missing new-line characters in messages State-Changed-From-To: open-closed State-Changed-By: phk State-Changed-When: Tue Aug 4 02:21:36 PDT 1998 State-Changed-Why: fixed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 02:24:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA22737 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 02:24:00 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA22687; Tue, 4 Aug 1998 02:23:38 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA29062; Tue, 4 Aug 1998 02:23:36 -0700 (PDT) Date: Tue, 4 Aug 1998 02:23:36 -0700 (PDT) Message-Id: <199808040923.CAA29062@freefall.freebsd.org> To: phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG, julian@FreeBSD.ORG Subject: Re: kern/7474 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: soft-updates: fsck doesn't fix link count Responsible-Changed-From-To: freebsd-bugs->julian Responsible-Changed-By: phk Responsible-Changed-When: Tue Aug 4 02:23:04 PDT 1998 Responsible-Changed-Why: over to julian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 02:28:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA23718 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 02:28:54 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA23667; Tue, 4 Aug 1998 02:28:15 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA29248; Tue, 4 Aug 1998 02:28:14 -0700 (PDT) Date: Tue, 4 Aug 1998 02:28:14 -0700 (PDT) Message-Id: <199808040928.CAA29248@freefall.freebsd.org> To: lyndon@orthanc.ab.ca, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/7466 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new adventure magic State-Changed-From-To: open-feedback State-Changed-By: phk State-Changed-When: Tue Aug 4 02:24:54 PDT 1998 State-Changed-Why: Please submit the file in uuencoded format, the gnats software just loves files with '>' in them. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 02:31:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA24167 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 02:31:54 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA24090; Tue, 4 Aug 1998 02:31:10 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA29435; Tue, 4 Aug 1998 02:31:08 -0700 (PDT) Date: Tue, 4 Aug 1998 02:31:08 -0700 (PDT) Message-Id: <199808040931.CAA29435@freefall.freebsd.org> To: belkovic@albert.osu.cz, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/7458 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Old Synopsis: 'boot bug' in syslogd New Synopsis: [STABLE][PATCH]'boot bug' in syslogd State-Changed-From-To: open-suspended State-Changed-By: phk State-Changed-When: Tue Aug 4 02:30:28 PDT 1998 State-Changed-Why: -stable problem To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 02:33:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA24376 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 02:33:36 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA24334; Tue, 4 Aug 1998 02:33:08 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA29595; Tue, 4 Aug 1998 02:33:05 -0700 (PDT) Date: Tue, 4 Aug 1998 02:33:05 -0700 (PDT) Message-Id: <199808040933.CAA29595@freefall.freebsd.org> To: lemonpie@tower.net.au, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: conf/7481 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: FreeBSD 2.2.6-RELEASE sysinstall segfaults on ftp install failure State-Changed-From-To: open-closed State-Changed-By: phk State-Changed-When: Tue Aug 4 02:32:44 PDT 1998 State-Changed-Why: please try 2.2.7, I think we have fixed this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 02:38:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA24907 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 02:38:58 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA24901; Tue, 4 Aug 1998 02:38:50 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA29761; Tue, 4 Aug 1998 02:38:49 -0700 (PDT) Date: Tue, 4 Aug 1998 02:38:49 -0700 (PDT) Message-Id: <199808040938.CAA29761@freefall.freebsd.org> To: pete@altadena.net, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/7475 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Old Synopsis: IPFW fails to load a file on boot New Synopsis: IPFW -q conflicts with filename arg State-Changed-From-To: open-suspended State-Changed-By: phk State-Changed-When: Tue Aug 4 02:38:06 PDT 1998 State-Changed-Why: awaiting committer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 02:42:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA25214 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 02:42:01 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA25179; Tue, 4 Aug 1998 02:41:40 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA29946; Tue, 4 Aug 1998 02:41:39 -0700 (PDT) Date: Tue, 4 Aug 1998 02:41:39 -0700 (PDT) Message-Id: <199808040941.CAA29946@freefall.freebsd.org> To: bwalter@itachi.swcp.com, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: misc/7467 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: directory error with hangman man page State-Changed-From-To: open-closed State-Changed-By: phk State-Changed-When: Tue Aug 4 02:41:29 PDT 1998 State-Changed-Why: fixed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 03:03:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA26446 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 03:03:55 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA26439; Tue, 4 Aug 1998 03:03:38 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA00528; Tue, 4 Aug 1998 03:03:38 -0700 (PDT) Date: Tue, 4 Aug 1998 03:03:38 -0700 (PDT) Message-Id: <199808041003.DAA00528@freefall.freebsd.org> To: xaa@stack.nl, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/5073 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: 'host -t mx' coredumps State-Changed-From-To: open-closed State-Changed-By: phk State-Changed-When: Tue Aug 4 03:02:17 PDT 1998 State-Changed-Why: As part of our PR auditing campaign, this PR has been closed. Hopefully we will see this fix in one of the next revisions of bind. Sorry about the late reaction to this PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 03:07:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA26776 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 03:07:09 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA26743; Tue, 4 Aug 1998 03:06:58 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA00656; Tue, 4 Aug 1998 03:06:57 -0700 (PDT) Date: Tue, 4 Aug 1998 03:06:57 -0700 (PDT) Message-Id: <199808041006.DAA00656@freefall.freebsd.org> To: justin@ad-v.com, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/5854 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: host -l MX or NS core dumps State-Changed-From-To: open-closed State-Changed-By: phk State-Changed-When: Tue Aug 4 03:05:39 PDT 1998 State-Changed-Why: As part of our PR auditing campaign, this PR has been closed due to its age and lack of activity on the PR. The host program is part of the BIND software, and is maintained by Paul Vixie et al. I belive they consider the "host" program obsolete and advise people to use "dig" instead. Sorry about the late reaction to this PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 03:08:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA26939 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 03:08:07 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA26855; Tue, 4 Aug 1998 03:07:50 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA00735; Tue, 4 Aug 1998 03:07:49 -0700 (PDT) Date: Tue, 4 Aug 1998 03:07:49 -0700 (PDT) Message-Id: <199808041007.DAA00735@freefall.freebsd.org> To: phk@FreeBSD.ORG, ahasty@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/6544 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Only get one channel through sound card Responsible-Changed-From-To: ahasty->freebsd-bugs Responsible-Changed-By: phk Responsible-Changed-When: Tue Aug 4 03:07:35 PDT 1998 Responsible-Changed-Why: ->bugs To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 03:08:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA26987 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 03:08:27 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA26979; Tue, 4 Aug 1998 03:08:19 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA00806; Tue, 4 Aug 1998 03:08:18 -0700 (PDT) Date: Tue, 4 Aug 1998 03:08:18 -0700 (PDT) Message-Id: <199808041008.DAA00806@freefall.freebsd.org> To: phk@FreeBSD.ORG, ahasty@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/6854 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] probing brooktree849 capture card Responsible-Changed-From-To: ahasty->freebsd-bugs Responsible-Changed-By: phk Responsible-Changed-When: Tue Aug 4 03:08:00 PDT 1998 Responsible-Changed-Why: ->bugs To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 03:09:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA27065 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 03:09:04 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA27021; Tue, 4 Aug 1998 03:08:46 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA00878; Tue, 4 Aug 1998 03:08:45 -0700 (PDT) Date: Tue, 4 Aug 1998 03:08:45 -0700 (PDT) Message-Id: <199808041008.DAA00878@freefall.freebsd.org> To: phk@FreeBSD.ORG, ahasty@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: i386/7159 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] Unknown option OVERRIDE_CARD (bt848 driver) Responsible-Changed-From-To: ahasty->freebsd-bugs Responsible-Changed-By: phk Responsible-Changed-When: Tue Aug 4 03:08:29 PDT 1998 Responsible-Changed-Why: ->bugs To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 03:09:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA27124 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 03:09:26 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA27085; Tue, 4 Aug 1998 03:09:11 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA00948; Tue, 4 Aug 1998 03:09:10 -0700 (PDT) Date: Tue, 4 Aug 1998 03:09:10 -0700 (PDT) Message-Id: <199808041009.DAA00948@freefall.freebsd.org> To: phk@FreeBSD.ORG, ahasty@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7177 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] Support for "Video Highway Xtreme" tv-tuner card with SECAM tuner (bt848 driver) Responsible-Changed-From-To: ahasty->freebsd-bugs Responsible-Changed-By: phk Responsible-Changed-When: Tue Aug 4 03:08:51 PDT 1998 Responsible-Changed-Why: ->bugs To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 03:09:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA27176 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 03:09:51 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA27152; Tue, 4 Aug 1998 03:09:38 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA01020; Tue, 4 Aug 1998 03:09:37 -0700 (PDT) Date: Tue, 4 Aug 1998 03:09:37 -0700 (PDT) Message-Id: <199808041009.DAA01020@freefall.freebsd.org> To: phk@FreeBSD.ORG, ahasty@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/3054 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: OPL3 sound off by one note Responsible-Changed-From-To: ahasty->freebsd-bugs Responsible-Changed-By: phk Responsible-Changed-When: Tue Aug 4 03:09:19 PDT 1998 Responsible-Changed-Why: ->bugs To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 03:10:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA27337 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 03:10:16 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA27243 for ; Tue, 4 Aug 1998 03:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA01116; Tue, 4 Aug 1998 03:10:00 -0700 (PDT) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA26808; Tue, 4 Aug 1998 03:07:27 -0700 (PDT) (envelope-from nobody) Message-Id: <199808041007.DAA26808@hub.freebsd.org> Date: Tue, 4 Aug 1998 03:07:27 -0700 (PDT) From: lhecking@nmrc.ucc.ie To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: gnu/7488: Typos in catman/makewhatis perl scripts Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7488 >Category: gnu >Synopsis: Typos in catman/makewhatis perl scripts >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Aug 4 03:10:00 PDT 1998 >Last-Modified: >Originator: Lars Hecking >Organization: National Microelectronics Research Centre >Release: none (files in question from -current) >Environment: Architecture independent (perl scripts) >Description: 1) Typo in help for makewhatis.perl 2) Typo (?) in chmod invocation in catman.perl. Potentially harmful. >How-To-Repeat: vi +35 catman.perl vi +179 makewhatis.perl ;) >Fix: Ad1) --- makewhatis.perl Tue Aug 4 10:46:20 1998 +++ makewhatis.perl.new Tue Aug 4 10:59:42 1998 @@ -32,7 +32,7 @@ sub usage { warn <Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 03:10:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA27351 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 03:10:18 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA27195; Tue, 4 Aug 1998 03:09:56 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA01089; Tue, 4 Aug 1998 03:09:54 -0700 (PDT) Date: Tue, 4 Aug 1998 03:09:54 -0700 (PDT) Message-Id: <199808041009.DAA01089@freefall.freebsd.org> To: phk@FreeBSD.ORG, ahasty@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: conf/5213 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: My SB AWE64 isn't being recognized. Responsible-Changed-From-To: ahasty->freebsd-bugs Responsible-Changed-By: phk Responsible-Changed-When: Tue Aug 4 03:09:43 PDT 1998 Responsible-Changed-Why: ->bugs To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 03:10:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA27460 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 03:10:41 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA27416; Tue, 4 Aug 1998 03:10:26 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA01176; Tue, 4 Aug 1998 03:10:24 -0700 (PDT) Date: Tue, 4 Aug 1998 03:10:24 -0700 (PDT) Message-Id: <199808041010.DAA01176@freefall.freebsd.org> To: phk@FreeBSD.ORG, ahasty@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/5060 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Kernel doesn't compile with mss Responsible-Changed-From-To: ahasty->freebsd-bugs Responsible-Changed-By: phk Responsible-Changed-When: Tue Aug 4 03:10:04 PDT 1998 Responsible-Changed-Why: ->bugs To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 03:40:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA01542 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 03:40:15 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA01450 for ; Tue, 4 Aug 1998 03:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA01948; Tue, 4 Aug 1998 03:40:01 -0700 (PDT) Received: from gw-nl1.philips.com (gw-nl1.philips.com [192.68.44.33]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA00562 for ; Tue, 4 Aug 1998 03:30:25 -0700 (PDT) (envelope-from Jos.Backus@nl.origin-it.com) Received: from smtprelay-nl1.philips.com (localhost.philips.com [127.0.0.1]) by gw-nl1.philips.com with ESMTP id MAA14964 for ; Tue, 4 Aug 1998 12:30:07 +0200 (MEST) (envelope-from Jos.Backus@nl.origin-it.com) Received: from hal.mpn.cp.philips.com (hal.mpn.cp.philips.com [130.139.64.195]) by smtprelay-nl1.philips.com (8.8.5/8.6.10-1.2.2m-970826) with SMTP id MAA14430 for ; Tue, 4 Aug 1998 12:30:06 +0200 (MET DST) Received: (qmail 8429 invoked by uid 666); 4 Aug 1998 10:28:09 -0000 Message-Id: <19980804102809.8428.qmail@hal.mpn.cp.philips.com> Date: 4 Aug 1998 10:28:09 -0000 From: Jos.Backus@nl.origin-it.com Reply-To: Jos.Backus@nl.origin-it.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: bin/7489: rtprio gives misleading error message when execvp fails Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7489 >Category: bin >Synopsis: rtprio gives misleading error message when execvp fails >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Aug 4 03:40:01 PDT 1998 >Last-Modified: >Originator: Jos Backus >Organization: Origin B.V. >Release: FreeBSD 3.0-CURRENT i386 >Environment: Both -stable and -current >Description: If rtprio can't find the command you want it to run (e.g. because it is not in the current PATH), it will output its own name instead of the command in the resulting error message. >How-To-Repeat: # export PATH=/usr/sbin # rtprio 5 ls rtprio: rtprio: No such file or directory # >Fix: Trivial: point err() to the correct argv element: --- rtprio.c.orig Tue May 19 22:52:31 1998 +++ rtprio.c Tue Aug 4 12:21:13 1998 @@ -121,7 +121,7 @@ if (proc == 0) { execvp(argv[2], &argv[2]); - err(1, "%s", argv[0]); + err(1, "%s", argv[2]); } } exit (1); >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 05:10:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA13595 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 05:10:33 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA13590; Tue, 4 Aug 1998 05:10:19 -0700 (PDT) (envelope-from thepish@FreeBSD.org) From: Peter Hawkins Received: (from thepish@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA15840; Tue, 4 Aug 1998 05:10:18 -0700 (PDT) Date: Tue, 4 Aug 1998 05:10:18 -0700 (PDT) Message-Id: <199808041210.FAA15840@freefall.freebsd.org> To: lhecking@nmrc.ucc.ie, thepish@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: gnu/7488 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Typos in catman/makewhatis perl scripts State-Changed-From-To: open-closed State-Changed-By: thepish State-Changed-When: Tue Aug 4 05:09:21 PDT 1998 State-Changed-Why: patches applied. Thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 05:33:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA16767 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 05:33:00 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA16737; Tue, 4 Aug 1998 05:32:47 -0700 (PDT) (envelope-from thepish@FreeBSD.org) From: Peter Hawkins Received: (from thepish@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA16656; Tue, 4 Aug 1998 05:32:45 -0700 (PDT) Date: Tue, 4 Aug 1998 05:32:45 -0700 (PDT) Message-Id: <199808041232.FAA16656@freefall.freebsd.org> To: Jos.Backus@nl.origin-it.com, thepish@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/7489 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: rtprio gives misleading error message when execvp fails State-Changed-From-To: open-closed State-Changed-By: thepish State-Changed-When: Tue Aug 4 05:32:13 PDT 1998 State-Changed-Why: Patch applied, Thankyou. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 06:40:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA26828 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 06:40:06 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA26766 for ; Tue, 4 Aug 1998 06:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA22906; Tue, 4 Aug 1998 06:40:00 -0700 (PDT) Received: from eniac.fsz.bme.hu (eniac.fsz.bme.hu [152.66.76.8]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA26593 for ; Tue, 4 Aug 1998 06:38:46 -0700 (PDT) (envelope-from pink@eniac.fsz.bme.hu) Received: (from root@localhost) by eniac.fsz.bme.hu (8.8.8/8.8.4) id PAA05643; Tue, 4 Aug 1998 15:38:31 +0200 (CEST) Message-Id: <199808041338.PAA05643@eniac.fsz.bme.hu> Date: Tue, 4 Aug 1998 15:38:31 +0200 (CEST) From: Szabolcs Szigeti (PinkPanther) Reply-To: pink@eniac.fsz.bme.hu To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: conf/7491: /etc/login.conf not preserved during update Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7491 >Category: conf >Synopsis: /etc/login.conf not preserved during update >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Aug 4 06:40:00 PDT 1998 >Last-Modified: >Originator: Szabolcs Szigeti (PinkPanther) >Organization: Technical University of Budapest >Release: FreeBSD 2.2.7-RELEASE i386 >Environment: System running 2.2.5-RELEASE updated to 2.2.7-RELEASE >Description: During update to 2.2.7-RELEASE the file /etc/login.conf is overwritten with the new version. >How-To-Repeat: Update to 2.2.7-RELEASE using the "update" procedure on the boot floppy >Fix: Copy the saved login.conf (from /usr/tmp/etc) to /etc >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 06:49:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA27927 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 06:49:29 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.15.68.22]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA27854; Tue, 4 Aug 1998 06:49:14 -0700 (PDT) (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id XAA04916; Tue, 4 Aug 1998 23:49:03 +1000 Date: Tue, 4 Aug 1998 23:49:03 +1000 From: Bruce Evans Message-Id: <199808041349.XAA04916@godzilla.zeta.org.au> To: freebsd-bugs@FreeBSD.ORG, Jos.Backus@nl.origin-it.com, thepish@FreeBSD.ORG Subject: Re: bin/7489 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Synopsis: rtprio gives misleading error message when execvp fails > >State-Changed-From-To: open-closed >State-Changed-By: thepish >State-Changed-When: Tue Aug 4 05:32:13 PDT 1998 >State-Changed-Why: >Patch applied, Thankyou. It seems to have been applied only to 2.2. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 06:57:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA29949 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 06:57:03 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA29917; Tue, 4 Aug 1998 06:56:54 -0700 (PDT) (envelope-from thepish@FreeBSD.org) From: Peter Hawkins Received: (from thepish@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA25109; Tue, 4 Aug 1998 06:56:53 -0700 (PDT) Date: Tue, 4 Aug 1998 06:56:53 -0700 (PDT) Message-Id: <199808041356.GAA25109@freefall.freebsd.org> To: pete@altadena.net, thepish@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/7475 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: IPFW -q conflicts with filename arg State-Changed-From-To: suspended-closed State-Changed-By: thepish State-Changed-When: Tue Aug 4 06:55:54 PDT 1998 State-Changed-Why: Fixed by providing support for -q with file input in RELENG To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 07:35:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA08622 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 07:35:25 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from dana.clari.net.au (dana.clari.net.au [203.27.85.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA08586 for ; Tue, 4 Aug 1998 07:34:49 -0700 (PDT) (envelope-from thepish@freebsd.org) Received: from localhost (thepish@localhost) by dana.clari.net.au (8.8.8/8.8.7) with SMTP id AAA29475; Wed, 5 Aug 1998 00:34:24 +1000 (EST) (envelope-from thepish@freebsd.org) X-Authentication-Warning: dana.clari.net.au: thepish owned process doing -bs Date: Wed, 5 Aug 1998 00:34:24 +1000 (EST) From: Peter Hawkins X-Sender: thepish@dana.clari.net.au To: Bruce Evans cc: freebsd-bugs@FreeBSD.ORG, Jos.Backus@nl.origin-it.com Subject: Re: bin/7489 In-Reply-To: <199808041349.XAA04916@godzilla.zeta.org.au> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >It seems to have been applied only to 2.2. Oops - thanks for that. Applied in current too. Hilink Internet Peter Hawkins 381 Swan St Richmond, Vic, Australia Ph: +61-3-9421 2006 Fax: +61-3-9421 2007 http://www.hilink.com.au Peter@hilink.com.au FreeBSD Project: thepish@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 10:20:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA15218 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 10:20:15 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA15084 for ; Tue, 4 Aug 1998 10:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA05681; Tue, 4 Aug 1998 10:20:01 -0700 (PDT) Received: from Jaky.m6.ntu.edu.tw (Jaky.m6.ntu.edu.tw [140.112.247.130]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA12442 for ; Tue, 4 Aug 1998 10:10:04 -0700 (PDT) (envelope-from davidyu@Jaky.m6.ntu.edu.tw) Received: (from root@localhost) by Jaky.m6.ntu.edu.tw (8.8.8/8.8.5) id BAA19945; Wed, 5 Aug 1998 01:13:35 +0800 (CST) Message-Id: <199808041713.BAA19945@Jaky.m6.ntu.edu.tw> Date: Wed, 5 Aug 1998 01:13:35 +0800 (CST) From: davidyu@snoopy.csie.ntu.edu.tw Reply-To: davidyu@snoopy.csie.ntu.edu.tw To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: bin/7492: Patch for 8-bit clean talk(1) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7492 >Category: bin >Synopsis: Patch for 8-bit clean talk(1) >Confidential: yes >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Aug 4 10:20:01 PDT 1998 >Last-Modified: >Originator: David Yu >Organization: NTU CSIE >Release: FreeBSD 2.2.7-STABLE i386 >Environment: FreeBSD Jaky.m6.ntu.edu.tw 2.2.7-STABLE FreeBSD 2.2.7-STABLE #0: Sat Jul 25 07:1 6:41 CST 1998 root@Jaky.m6.ntu.edu.tw:/usr/src/sys/compile/DESKTOP i386 >Description: The current version of talk(1) isn't 8bit clean, so that it's very inconvienent for CJK users. we hope you could commit the following patch in both -current and -stable. thanks. >How-To-Repeat: >Fix: --- display.c.orig Wed Aug 5 01:02:34 1998 +++ display.c Wed Aug 5 01:03:07 1998 @@ -146,13 +146,7 @@ text++; continue; } - if (!isprint((unsigned char)*text) && *text != '\t') { - waddch(win->x_win, '^'); - getyx(win->x_win, win->x_line, win->x_col); - cch = (*text & 63) + 64; - waddch(win->x_win, cch); - } else - waddch(win->x_win, (unsigned char)*text); + waddch(win->x_win, (unsigned char)*text); getyx(win->x_win, win->x_line, win->x_col); text++; } >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 10:30:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA17966 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 10:30:42 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA17338; Tue, 4 Aug 1998 10:28:18 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA08154; Tue, 4 Aug 1998 10:28:16 -0700 (PDT) Date: Tue, 4 Aug 1998 10:28:16 -0700 (PDT) Message-Id: <199808041728.KAA08154@freefall.freebsd.org> To: lhecking@nmrc.ucc.ie, bde@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: gnu/7488 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Typos in catman/makewhatis perl scripts State-Changed-From-To: closed-open State-Changed-By: bde State-Changed-When: Tue Aug 4 10:27:59 PDT 1998 State-Changed-Why: Patches not applied to -current. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 11:31:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA01678 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 11:31:58 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from dt053nd2.san.rr.com (dt053nd2.san.rr.com [204.210.34.210]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA01612; Tue, 4 Aug 1998 11:31:36 -0700 (PDT) (envelope-from Studded@dal.net) Received: from dal.net (Studded@localhost [127.0.0.1]) by dt053nd2.san.rr.com (8.8.8/8.8.8) with ESMTP id LAA05099; Tue, 4 Aug 1998 11:31:21 -0700 (PDT) (envelope-from Studded@dal.net) Message-ID: <35C75379.BEC46648@dal.net> Date: Tue, 04 Aug 1998 11:31:21 -0700 From: Studded Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.05 [en] (X11; I; FreeBSD 2.2.6-STABLE-0507 i386) MIME-Version: 1.0 To: Poul-Henning Kamp CC: justin@ad-v.com, freebsd-bugs@FreeBSD.ORG, FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/5854 References: <199808041006.DAA00656@freefall.freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Poul-Henning Kamp wrote: > > Synopsis: host -l MX or NS core dumps > > State-Changed-From-To: open-closed > State-Changed-By: phk > State-Changed-When: Tue Aug 4 03:05:39 PDT 1998 > State-Changed-Why: > As part of our PR auditing campaign, this PR has been closed due to its > age and lack of activity on the PR. I still object to this whole line of thought. How can you be sure that the error is not caused by our hacking BIND into freebsd? There are so many modifications that are made to the resolver for example that passing this off to the BIND people is not a legitimate strategy without even a cursory examination. "We don't want to deal with this PR so we're making it go away" isn't a good model IMO. > The host program is part of the BIND software, and is maintained by > Paul Vixie et al. I belive they consider the "host" program obsolete > and advise people to use "dig" instead. No, it's nslookup that is obsolete. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 11:40:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA02833 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 11:40:06 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA02824 for ; Tue, 4 Aug 1998 11:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA10767; Tue, 4 Aug 1998 11:40:01 -0700 (PDT) Date: Tue, 4 Aug 1998 11:40:01 -0700 (PDT) Message-Id: <199808041840.LAA10767@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Studded Subject: Re: bin/5854 Reply-To: Studded Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/5854; it has been noted by GNATS. From: Studded To: Poul-Henning Kamp Cc: justin@ad-v.com, freebsd-bugs@FreeBSD.ORG, FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/5854 Date: Tue, 04 Aug 1998 11:31:21 -0700 Poul-Henning Kamp wrote: > > Synopsis: host -l MX or NS core dumps > > State-Changed-From-To: open-closed > State-Changed-By: phk > State-Changed-When: Tue Aug 4 03:05:39 PDT 1998 > State-Changed-Why: > As part of our PR auditing campaign, this PR has been closed due to its > age and lack of activity on the PR. I still object to this whole line of thought. How can you be sure that the error is not caused by our hacking BIND into freebsd? There are so many modifications that are made to the resolver for example that passing this off to the BIND people is not a legitimate strategy without even a cursory examination. "We don't want to deal with this PR so we're making it go away" isn't a good model IMO. > The host program is part of the BIND software, and is maintained by > Paul Vixie et al. I belive they consider the "host" program obsolete > and advise people to use "dig" instead. No, it's nslookup that is obsolete. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 12:00:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA05736 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 12:00:20 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from critter.freebsd.dk (critter.freebsd.dk [195.8.133.1] (may be forged)) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA05620 for ; Tue, 4 Aug 1998 11:59:58 -0700 (PDT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.8.7/8.8.5) with ESMTP id UAA00657; Tue, 4 Aug 1998 20:55:37 +0200 (CEST) To: Studded cc: freebsd-bugs@FreeBSD.ORG Subject: Re: bin/5854 In-reply-to: Your message of "Tue, 04 Aug 1998 11:31:21 PDT." <35C75379.BEC46648@dal.net> Date: Tue, 04 Aug 1998 20:55:36 +0200 Message-ID: <655.902256936@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > I still object to this whole line of thought. Good! Bravo! That's the spirit we want to see! I take this to mean that you will be closing one PR the proper way, including test & documentation, every day from now on ? Right ? Otherwise: shut up. -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." "ttyv0" -- What UNIX calls a $20K state-of-the-art, 3D, hi-res color terminal To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 12:19:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA08623 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 12:19:48 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA08591; Tue, 4 Aug 1998 12:19:07 -0700 (PDT) (envelope-from ache@FreeBSD.org) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA12182; Tue, 4 Aug 1998 12:19:04 -0700 (PDT) Date: Tue, 4 Aug 1998 12:19:04 -0700 (PDT) Message-Id: <199808041919.MAA12182@freefall.freebsd.org> To: davidyu@snoopy.csie.ntu.edu.tw, ache@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/7492 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Patch for 8-bit clean talk(1) State-Changed-From-To: open-closed State-Changed-By: ache State-Changed-When: Tue Aug 4 12:16:29 PDT 1998 State-Changed-Why: Talk *is* 8bit clean but not 16bit clean. More efforts need to make it 16bit clean. Hack you sent is not make it 16bit clean in anycase. Wide char support must be fully activated instead. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 12:47:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA13232 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 12:47:21 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from elvis.vnet.net (elvis.vnet.net [166.82.1.5]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA13216 for ; Tue, 4 Aug 1998 12:47:10 -0700 (PDT) (envelope-from rivers@dignus.com) Received: from dignus.com (ponds.vnet.net [166.82.177.48]) by elvis.vnet.net (8.8.8/8.8.4) with ESMTP id PAA20292 for ; Tue, 4 Aug 1998 15:46:57 -0400 (EDT) Received: from lakes.dignus.com (lakes [10.0.0.3]) by dignus.com (8.8.8/8.8.5) with ESMTP id QAA02896 for ; Tue, 4 Aug 1998 16:19:44 -0400 (EDT) Received: (from rivers@localhost) by lakes.dignus.com (8.8.8/8.6.9) id PAA16337 for freebsd-bugs@freebsd.org; Tue, 4 Aug 1998 15:51:02 -0400 (EDT) Date: Tue, 4 Aug 1998 15:51:02 -0400 (EDT) From: Thomas David Rivers Message-Id: <199808041951.PAA16337@lakes.dignus.com> To: freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7367 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Brett Glass writes: > > Here's some more info on the spontaneous crashes we're seeing under 2.2.7. > They seem to happen during times of heavy CPU and memory loads; the crash > this morning occurred when we were doing a backup of the entire disk. We do > our daily backups by piping the output of dump through gzip -9 and then > through FTP to a hard disk on another machine. Just before our OS upgrade > we did several such backups for safety; none of them caused a crash. > > The reboots leave the file system a bit inconsistent. > > At one point, with a kernel that was built slightly differently, we got > error messages saying "malloc(): recursive call" (or something similar). > Once, we saw a panic screen that described a virtual memory error; it > flashed just before the reboot. > > Has anyone else seen these? I'm concerned that there might be a VM problem > in 2.2.7. (We can't see any signs of flaky hardware.) > > --Brett > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-hackers" in the body of the message > Yes - I've seen it (along with someone else.) I saw it with the upgrade from 2.2.5 to 2.2.6. [Did you see it at 2.2.6?] I've already sent a PR for this; it's kern/7367. I've taken the liberty of adding this reply to that PR entry... You may want to look at that entry for other comments/descriptions. - Dave Rivers - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 13:32:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA21800 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 13:32:33 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from lariat.lariat.org ([206.100.185.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA21786; Tue, 4 Aug 1998 13:32:27 -0700 (PDT) (envelope-from brett@lariat.org) Received: (from brett@localhost) by lariat.lariat.org (8.8.8/8.8.6) id OAA06669; Tue, 4 Aug 1998 14:32:04 -0600 (MDT) Message-Id: <199808042032.OAA06669@lariat.lariat.org> X-Sender: brett@mail.lariat.org X-Mailer: QUALCOMM Windows Eudora Pro Version 4.0.1 Date: Tue, 04 Aug 1998 14:31:39 -0600 To: Thomas David Rivers , hackers@FreeBSD.ORG, bugs@FreeBSD.ORG From: Brett Glass Subject: Re: More on the crashes In-Reply-To: <199808041950.PAA16333@lakes.dignus.com> References: <199808041603.KAA02474@lariat.lariat.org> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At 03:50 PM 8/4/98 -0400, Thomas David Rivers wrote: > Yes - I've seen it (along with someone else.) I saw it with the >upgrade from 2.2.5 to 2.2.6. [Did you see it at 2.2.6?] None of our machines are running 2.2.6. But the problem is easily reproducible under 2.2.7. All I have to do is try to do a backup in the manner described. Of course, that's a pretty nasty way to have it fail, as it means that our backup mechanism is shot. And you might remember that this was an upgrade due to a security breach.... We need the backups in case someone breaks in again. > I've already sent a PR for this; it's kern/7367. > > I've taken the liberty of adding this reply to that PR entry... You >may want to look at that entry for other comments/descriptions. Sounds good. Please let me know if there's something I can do to help track down the cause. I need a 2.2.7.x that's reliable! --Brett To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 15:40:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA09614 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 15:40:16 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA09572 for ; Tue, 4 Aug 1998 15:40:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA19152; Tue, 4 Aug 1998 15:40:01 -0700 (PDT) Received: from roma.coe.ufrj.br (roma.coe.ufrj.br [146.164.53.65]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA09161 for ; Tue, 4 Aug 1998 15:37:20 -0700 (PDT) (envelope-from jonny@jonny.eng.br) Received: (from jonny@localhost) by roma.coe.ufrj.br (8.8.8/8.8.8) id TAA11224; Tue, 4 Aug 1998 19:37:07 -0300 (EST) (envelope-from jonny) Message-Id: <199808042237.TAA11224@roma.coe.ufrj.br> Date: Tue, 4 Aug 1998 19:37:07 -0300 (EST) From: Joao Carlos Mendes Luis Reply-To: jonny@jonny.eng.br To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: bin/7493: sysinstall messing with rc.conf Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7493 >Category: bin >Synopsis: sysinstall changes router configuration in rc.conf >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Aug 4 15:40:00 PDT 1998 >Last-Modified: >Originator: Joao Carlos Mendes Luis >Organization: COPPE/UFRJ >Release: FreeBSD 2.2.7-STABLE i386 >Environment: /stand/sysintall from FreeBSD 2.2-SNAP from Jun, 23. Seems to be present at 2.2.7 also. System has gone several make world's, but /stand is untouched. >Description: krakatoa::root [501] dir /etc/rc.conf* -rw-r--r-- 1 root wheel 8054 4 Ago 19:26 /etc/rc.conf -rw-r--r-- 1 root wheel 8054 4 Ago 19:26 /etc/rc.conf.previous Execute /stand/sysinstall. No need to do anything. Just enter and get out immediately. krakatoa::root [503] dir /etc/rc.conf* -rw-r--r-- 1 root wheel 8053 4 Ago 19:30 /etc/rc.conf -rw-r--r-- 1 root wheel 8054 4 Ago 19:30 /etc/rc.conf.previous And the diffs are: krakatoa::root [505] diff -u /etc/rc.conf* --- /etc/rc.conf Tue Aug 4 19:30:02 1998 +++ /etc/rc.conf.previous Tue Aug 4 19:30:02 1998 @@ -97,7 +97,7 @@ defaultrouter="146.164.26.1" # Set to default gateway (or NO). static_routes="" # Set to static route list (or leave empty). gateway_enable="YES" # Set to YES if this host will be a gateway. -router_enable="NO" # Set to YES to enable a routing daemon. +router_enable="YES" # Set to YES to enable a routing daemon. router="routed" # Name of routing daemon to use if enabled. router_flags="" # Flags for routing daemon. mrouted_enable="NO" # Do multicast routing (see /etc/mrouted.conf). >How-To-Repeat: See above. >Fix: Don't know. Previous versions did not have this bug. Maybe some search in the CVS logs may help. Probably deserves a note in ERRATA.TXT from 2.2.7-RELEASE. >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 16:09:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA12925 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 16:09:55 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from awfulhak.org (awfulhak.force9.co.uk [195.166.136.63]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA12920 for ; Tue, 4 Aug 1998 16:09:52 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from gate.lan.awfulhak.org (brian@localhost [127.0.0.1]) by awfulhak.org (8.8.8/8.8.8) with ESMTP id XAA25144; Tue, 4 Aug 1998 23:39:51 +0100 (BST) (envelope-from brian@gate.lan.awfulhak.org) Message-Id: <199808042239.XAA25144@awfulhak.org> X-Mailer: exmh version 2.0.2 2/24/98 To: Murray Baker cc: freebsd-bugs@FreeBSD.ORG Subject: Re: Problems & feedback In-reply-to: Your message of "Mon, 13 Jul 1998 14:24:51 +1000." <3.0.1.32.19980713142451.009668b0@mail.bigpond.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 04 Aug 1998 23:39:51 +0100 From: Brian Somers Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > 1/ Length of PPP CHAT dial string. > > There is some length limitation on the CHAT dial string in > PPP, maybe 200 chars? This is a bit too short for me to set > up the string I want. I need, minimum, an extra 30 or so > chars. Suggest increase length by say 100 or 200 to allow > margins and provision for future. [.....] The max line length is 512 bytes in -current. > Cheers, Murray. -- Brian , , Don't _EVER_ lose your sense of humour.... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 16:14:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA13492 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 16:14:16 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA13459; Tue, 4 Aug 1998 16:14:03 -0700 (PDT) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA20346; Tue, 4 Aug 1998 16:14:02 -0700 (PDT) Date: Tue, 4 Aug 1998 16:14:02 -0700 (PDT) Message-Id: <199808042314.QAA20346@freefall.freebsd.org> To: krok@gmx.net, brian@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7377 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: we have a new digiboard driver supporting PC/Xem adapters. State-Changed-From-To: suspended-feedback State-Changed-By: brian State-Changed-When: Tue Aug 4 16:10:53 PDT 1998 State-Changed-Why: The PC/Xem is now supported by some code submitted by "IBS / Andre Oppermann" . (the code was submitted before this PR was opened - sorry, I just hadn't yet committed it). Would you be able to test this new driver (dgm) ? Thanks, and sorry for the duplicated effort - this is partly my fault. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 18:16:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA05975 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 18:16:14 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from allegro.lemis.com (allegro.lemis.com [192.109.197.134]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA05969 for ; Tue, 4 Aug 1998 18:16:08 -0700 (PDT) (envelope-from grog@freebie.lemis.com) Received: from freebie.lemis.com (freebie.lemis.com [192.109.197.137]) by allegro.lemis.com (8.9.1/8.9.0) with ESMTP id KAA19190; Wed, 5 Aug 1998 10:45:54 +0930 (CST) Received: (from grog@localhost) by freebie.lemis.com (8.9.1/8.9.0) id KAA03702; Wed, 5 Aug 1998 10:45:53 +0930 (CST) Message-ID: <19980805104552.Q25942@freebie.lemis.com> Date: Wed, 5 Aug 1998 10:45:52 +0930 From: Greg Lehey To: Poul-Henning Kamp , Studded Cc: freebsd-bugs@FreeBSD.ORG Subject: Closing PRs because of age (was: bin/5854) References: <35C75379.BEC46648@dal.net> <655.902256936@critter.freebsd.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <655.902256936@critter.freebsd.dk>; from Poul-Henning Kamp on Tue, Aug 04, 1998 at 08:55:36PM +0200 WWW-Home-Page: http://www.lemis.com/~grog Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-41-739-7062 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tuesday, 4 August 1998 at 20:55:36 +0200, Poul-Henning Kamp wrote: > >> I still object to this whole line of thought. > > Good! Bravo! That's the spirit we want to see! > > I take this to mean that you will be closing one PR the proper way, > including test & documentation, every day from now on ? > > Right ? > > Otherwise: shut up. I don't believe that time heals *all* things. If there's a problem, the lack of a fixer doesn't mean it's not a problem any more. That makes two problems, not 0. Even if problems aren't fixed, it makes sense to document them ("Doctor, it hurts when I do ". "Don't do that, then"). I don't think that closing unfixed PRs serves any useful and honest purpose. Greg -- See complete headers for address and phone numbers finger grog@lemis.com for PGP public key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 20:46:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA29715 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 20:46:20 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA29550; Tue, 4 Aug 1998 20:45:54 -0700 (PDT) (envelope-from thepish@FreeBSD.org) From: Peter Hawkins Received: (from thepish@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA28132; Tue, 4 Aug 1998 20:45:52 -0700 (PDT) Date: Tue, 4 Aug 1998 20:45:52 -0700 (PDT) Message-Id: <199808050345.UAA28132@freefall.freebsd.org> To: lhecking@nmrc.ucc.ie, thepish@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: gnu/7488 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Typos in catman/makewhatis perl scripts State-Changed-From-To: open-closed State-Changed-By: thepish State-Changed-When: Tue Aug 4 20:45:08 PDT 1998 State-Changed-Why: merge from stable to current. Thanks to bde for the reminder To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 22:42:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA14949 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 22:42:50 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from ccvp.com ([207.66.28.145]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA14856 for ; Tue, 4 Aug 1998 22:42:26 -0700 (PDT) (envelope-from robert@usamd.com) Received: from usamd.com ([207.66.33.213]) by ccvp.com (8.8.3/8.8.3) with ESMTP id XAA13782 for ; Tue, 4 Aug 1998 23:42:43 -0600 (MDT) Message-ID: <35C8450B.E416A9A1@usamd.com> Date: Wed, 05 Aug 1998 05:42:03 -0600 From: Robert X-Mailer: Mozilla 4.05 [en] (WinNT; I) MIME-Version: 1.0 To: freebsd-bugs@FreeBSD.ORG Subject: WatchGuard vs CISCO Pix? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Need to recommend firewall to government facility need to know pros and cons. WatchGuard vs CISCO Pix. Thanks R -- Download our price list at ftp://207.66.33.212/pub/readme/ Visit our web site at http://www.usamd.com Robert Clark USA Microdynamics PO Box 13569 Albuquerque, NM 87192-3569 Phone 505 275-0188 Fax 505 275-8708 sales@usamd.com info@usamd.com support@usamd.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 4 23:10:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA19335 for freebsd-bugs-outgoing; Tue, 4 Aug 1998 23:10:09 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA19261 for ; Tue, 4 Aug 1998 23:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA01343; Tue, 4 Aug 1998 23:10:01 -0700 (PDT) Received: from tim.xenologics.com (tim.xenologics.com [194.77.5.24]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA18767 for ; Tue, 4 Aug 1998 23:06:07 -0700 (PDT) (envelope-from seggers@semyam.dinoco.de) Received: (from uucp@localhost) by tim.xenologics.com (8.8.5/8.8.8) with UUCP id IAA10003 for FreeBSD-gnats-submit@freebsd.org; Wed, 5 Aug 1998 08:02:45 +0200 (MET DST) Received: (from seggers@localhost) by semyam.dinoco.de (8.8.8/8.8.8) id IAA01780; Wed, 5 Aug 1998 08:01:39 +0200 (CEST) (envelope-from seggers) Message-Id: <199808050601.IAA01780@semyam.dinoco.de> Date: Wed, 5 Aug 1998 08:01:39 +0200 (CEST) From: Stefan Eggers Reply-To: seggers@semyam.dinoco.de To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: seggers@semyam.dinoco.de X-Send-Pr-Version: 3.2 Subject: kern/7496: not so good coding in subr_rlist.c Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7496 >Category: kern >Synopsis: not so good coding in subr_rlist.c >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Aug 4 23:10:01 PDT 1998 >Last-Modified: >Originator: Stefan Eggers >Organization: none >Release: FreeBSD 3.0-CURRENT i386 >Environment: N/A >Description: While reading the source I noticed that in rlist_free in the file kern/subr_rlist.c a pointer gets intialized before the list the pointed to node is on was locked. This would lead to serious trouble if rlist_free could sleep or if some other functions get added which manipulate the list. This fortunately seems not to happen, yet but is a potential source of problems I think. Even if not one can argue that someone trying to learn from this source should get a cleaner version. >How-To-Repeat: N/A >Fix: --- subr_rlist.c.ORIG Tue Jul 14 12:47:28 1998 +++ subr_rlist.c Wed Aug 5 07:47:30 1998 @@ -118,7 +118,7 @@ u_int start, end; { struct rlist **rlp = &rlh->rlh_list; - struct rlist *prev_rlp = NULL, *cur_rlp = *rlp, *next_rlp = NULL; + struct rlist *prev_rlp = NULL, *cur_rlp, *next_rlp = NULL; int s; s = splhigh(); @@ -133,6 +133,7 @@ * Traverse the list looking for an entry after the one we want * to insert. */ + cur_rlp = *rlp; while (cur_rlp != NULL) { if (start < cur_rlp->rl_start) break; >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 5 02:52:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA17790 for freebsd-bugs-outgoing; Wed, 5 Aug 1998 02:52:50 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from esmeralda.xaa.iae.nl (esmeralda.xaa.iae.nl [194.151.75.9]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA17775; Wed, 5 Aug 1998 02:52:25 -0700 (PDT) (envelope-from freebsd@xaa.iae.nl) Received: from ariel.xaa.iae.nl (ariel.xaa.iae.nl [194.151.75.10]) by esmeralda.xaa.iae.nl (8.8.8/8.8.7) with ESMTP id LAA10490; Wed, 5 Aug 1998 11:51:59 +0200 (MET DST) (envelope-from freebsd@xaa.iae.nl) Received: by ariel.xaa.iae.nl (VMailer, from userid 1008) id EE09E4562; Wed, 5 Aug 1998 11:51:58 +0200 (CEST) Message-ID: <19980805115158.A538@xaa.iae.nl> Date: Wed, 5 Aug 1998 11:51:58 +0200 From: Mark Huizer To: Studded , Poul-Henning Kamp Cc: justin@ad-v.com, freebsd-bugs@FreeBSD.ORG, FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/5854 References: <199808041006.DAA00656@freefall.freebsd.org> <35C75379.BEC46648@dal.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <35C75379.BEC46648@dal.net>; from Studded on Tue, Aug 04, 1998 at 11:31:21AM -0700 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > Synopsis: host -l MX or NS core dumps > > > > State-Changed-From-To: open-closed > > State-Changed-By: phk > > State-Changed-When: Tue Aug 4 03:05:39 PDT 1998 > > State-Changed-Why: > > As part of our PR auditing campaign, this PR has been closed due to its > > age and lack of activity on the PR. > > I still object to this whole line of thought. How can you be sure that > the error is not caused by our hacking BIND into freebsd? There are so > many modifications that are made to the resolver for example that > passing this off to the BIND people is not a legitimate strategy without > even a cursory examination. "We don't want to deal with this PR so we're > making it go away" isn't a good model IMO. I agree. We don't have it as a port-like model so we can adjust stuff ourselves... Hmm... ok, I'll see if I can have a look at it and fix it, when I pr'ed it I wasn;t in the mood for that, but we'll see. -- Nice testing in little China... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 5 03:00:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA18913 for freebsd-bugs-outgoing; Wed, 5 Aug 1998 03:00:19 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA18875 for ; Wed, 5 Aug 1998 03:00:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA11736; Wed, 5 Aug 1998 03:00:01 -0700 (PDT) Date: Wed, 5 Aug 1998 03:00:01 -0700 (PDT) Message-Id: <199808051000.DAA11736@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Mark Huizer Subject: Re: bin/5854 Reply-To: Mark Huizer Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/5854; it has been noted by GNATS. From: Mark Huizer To: Studded , Poul-Henning Kamp Cc: justin@ad-v.com, freebsd-bugs@FreeBSD.ORG, FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/5854 Date: Wed, 5 Aug 1998 11:51:58 +0200 > > Synopsis: host -l MX or NS core dumps > > > > State-Changed-From-To: open-closed > > State-Changed-By: phk > > State-Changed-When: Tue Aug 4 03:05:39 PDT 1998 > > State-Changed-Why: > > As part of our PR auditing campaign, this PR has been closed due to its > > age and lack of activity on the PR. > > I still object to this whole line of thought. How can you be sure that > the error is not caused by our hacking BIND into freebsd? There are so > many modifications that are made to the resolver for example that > passing this off to the BIND people is not a legitimate strategy without > even a cursory examination. "We don't want to deal with this PR so we're > making it go away" isn't a good model IMO. I agree. We don't have it as a port-like model so we can adjust stuff ourselves... Hmm... ok, I'll see if I can have a look at it and fix it, when I pr'ed it I wasn;t in the mood for that, but we'll see. -- Nice testing in little China... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 5 05:30:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA06380 for freebsd-bugs-outgoing; Wed, 5 Aug 1998 05:30:04 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA06375 for ; Wed, 5 Aug 1998 05:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA15625; Wed, 5 Aug 1998 05:30:01 -0700 (PDT) Date: Wed, 5 Aug 1998 05:30:01 -0700 (PDT) Message-Id: <199808051230.FAA15625@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Stefan Eggers Subject: Re: kern/7496: not so good coding in subr_rlist.c Reply-To: Stefan Eggers Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/7496; it has been noted by GNATS. From: Stefan Eggers To: freebsd-gnats-submit@freebsd.org, seggers@semyam.dinoco.de Cc: Subject: Re: kern/7496: not so good coding in subr_rlist.c Date: Wed, 05 Aug 1998 14:23:32 +0200 Thinking more about the possible implications I came to conclude this can cause loss of memory and swap space in certain cases. Maybe I'm wrong but if not it's a nasty bug. :-( Let's suppose a process X has the lock at present and two other processes named A and B want to free a range but have to wait till the resource list is unlocked. The process A wants to free 1-2, process B frees 3-4 and the resource lists contains 7-9, 22-55, ... after process X is finished with it. At some point in time hopefully process X will release the lock and wake up the other processes waiting for it. One of the processes (lets choose A for now) is the lucky one and can complete its operation. The resource list after- ward is 1-2, 7-9, 22-55, ... So far, so good. Now process B gets its turn and sees 7-9 as first entry to the list and due to the pointer to the previous node being NULL concludes wrongly that this the first enty and adds its new node in a way that looses the reference to the entry for 1-2 which process A entered a little bit ago. We lost track of memory and part of the managed resource. Stefan. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 5 06:20:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA12330 for freebsd-bugs-outgoing; Wed, 5 Aug 1998 06:20:07 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA12274 for ; Wed, 5 Aug 1998 06:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA16819; Wed, 5 Aug 1998 06:20:01 -0700 (PDT) Received: from tpost2.netspace.or.jp (tpost2.netspace.or.jp [202.246.248.20]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA11612 for ; Wed, 5 Aug 1998 06:13:18 -0700 (PDT) (envelope-from mastake@tpost2.netspace.or.jp) Received: from localhost (vctkp031.vc-net.or.jp [202.215.21.31]) by tpost2.netspace.or.jp (8.8.8+2.7Wbeta7/3.6Wbeta798011918) with ESMTP id WAA27838 for ; Wed, 5 Aug 1998 22:13:02 +0900 (JST) Received: (from mastake@localhost) by localhost (8.8.7/3.6Wbeta7) id WAA04596; Wed, 5 Aug 1998 22:10:55 +0900 (JST) Message-Id: <199808051310.WAA04596@localhost> Date: Wed, 5 Aug 1998 22:10:55 +0900 (JST) From: mastake@tpost2.netspace.or.jp Reply-To: mastake@tpost2.netspace.or.jp To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: conf/7497: jp.106.kbd patch Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7497 >Category: conf >Synopsis: Keymaps of jp.106.kbd & jp.106x.kbd is incorrect >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Aug 5 06:20:01 PDT 1998 >Last-Modified: >Originator: Mas.TAKEMURA >Organization: Suginami-ku Tokyo, Japan. >Release: FreeBSD-current i386 >Environment: jp.106 Keyboard >Description: >How-To-Repeat: >Fix: /usr/share/syscons/keymaps/jp.106.kbd ----- Cut Here ----- --- jp.106.kbd.orig Wed Aug 5 21:42:45 1998 +++ jp.106.kbd Sat Aug 1 21:57:58 1998 @@ -17,7 +17,7 @@ 012 '-' '=' nop nop '-' '=' nop nop O 013 '^' '~' rs rs '^' '~' rs rs O 014 bs bs del del bs bs del del O - 015 ht bs nop nop ht bs nop nop O + 015 ht btab nop nop ht btab nop nop O 016 'q' 'Q' dc1 dc1 'q' 'Q' dc1 dc1 C 017 'w' 'W' etb etb 'w' 'W' etb etb C 018 'e' 'E' enq enq 'e' 'E' enq enq C @@ -78,7 +78,7 @@ 073 fkey51 '9' '9' '9' '9' '9' '9' '9' N 074 fkey52 '-' '-' '-' '-' '-' '-' '-' N 075 fkey53 '4' '4' '4' '4' '4' '4' '4' N - 076 nop '5' '5' '5' '5' '5' '5' '5' N + 076 fkey54 '5' '5' '5' '5' '5' '5' '5' N 077 fkey55 '6' '6' '6' '6' '6' '6' '6' N 078 fkey56 '+' '+' '+' '+' '+' '+' '+' N 079 fkey57 '1' '1' '1' '1' '1' '1' '1' N @@ -105,9 +105,12 @@ 100 fkey58 fkey58 fkey58 fkey58 fkey58 fkey58 fkey58 fkey58 O 101 fkey59 fkey59 fkey59 fkey59 fkey59 fkey59 fkey59 fkey59 O 102 fkey60 fkey60 fkey60 fkey60 fkey60 fkey60 fkey60 fkey60 O - 103 fkey54 fkey54 fkey54 fkey54 fkey54 fkey54 boot fkey54 O + 103 fkey61 fkey61 fkey61 fkey61 fkey61 fkey61 boot fkey61 O 104 slock slock slock slock slock slock slock slock O - 115 '\' '_' fs ns '\' '_' fs ns O - 121 ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' O - 123 ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' O + 105 fkey62 fkey62 fkey62 fkey62 fkey62 fkey62 fkey62 fkey62 O + 106 fkey63 fkey63 fkey63 fkey63 fkey63 fkey63 fkey63 fkey63 O + 107 fkey64 fkey64 fkey64 fkey64 fkey64 fkey64 fkey64 fkey64 O + 115 '\' '_' fs us '\' '_' fs us O + 121 ' ' ' ' nul ' ' ' ' ' ' susp ' ' O + 123 ' ' ' ' nul ' ' ' ' ' ' susp ' ' O 125 '\' '|' fs fs '\' '|' fs fs O ----- Cut Here ----- /usr/share/syscons/keymaps/jp.106x.kbd ----- Cut Here ----- --- jp.106x.kbd.orig Wed Aug 5 21:42:45 1998 +++ jp.106x.kbd Sat Aug 1 21:59:21 1998 @@ -18,7 +18,7 @@ 012 '-' '=' nop nop '-' '=' nop nop O 013 '^' '~' rs rs '^' '~' rs rs O 014 bs bs del del bs bs del del O - 015 ht bs nop nop ht bs nop nop O + 015 ht btab nop nop ht btab nop nop O 016 'q' 'Q' dc1 dc1 'q' 'Q' dc1 dc1 C 017 'w' 'W' etb etb 'w' 'W' etb etb C 018 'e' 'E' enq enq 'e' 'E' enq enq C @@ -79,7 +79,7 @@ 073 fkey51 '9' '9' '9' '9' '9' '9' '9' N 074 fkey52 '-' '-' '-' '-' '-' '-' '-' N 075 fkey53 '4' '4' '4' '4' '4' '4' '4' N - 076 nop '5' '5' '5' '5' '5' '5' '5' N + 076 fkey54 '5' '5' '5' '5' '5' '5' '5' N 077 fkey55 '6' '6' '6' '6' '6' '6' '6' N 078 fkey56 '+' '+' '+' '+' '+' '+' '+' N 079 fkey57 '1' '1' '1' '1' '1' '1' '1' N @@ -106,9 +106,12 @@ 100 fkey58 fkey58 fkey58 fkey58 fkey58 fkey58 fkey58 fkey58 O 101 fkey59 fkey59 fkey59 fkey59 fkey59 fkey59 fkey59 fkey59 O 102 fkey60 fkey60 fkey60 fkey60 fkey60 fkey60 fkey60 fkey60 O - 103 fkey54 fkey54 fkey54 fkey54 fkey54 fkey54 boot fkey54 O + 103 fkey61 fkey61 fkey61 fkey61 fkey61 fkey61 boot fkey61 O 104 slock slock slock slock slock slock slock slock O - 115 '\' '_' fs ns '\' '_' fs ns O - 121 ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' O - 123 ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' O + 105 fkey62 fkey62 fkey62 fkey62 fkey62 fkey62 fkey62 fkey62 O + 106 fkey63 fkey63 fkey63 fkey63 fkey63 fkey63 fkey63 fkey63 O + 107 fkey64 fkey64 fkey64 fkey64 fkey64 fkey64 fkey64 fkey64 O + 115 '\' '_' fs us '\' '_' fs us O + 121 ' ' ' ' nul ' ' ' ' ' ' susp ' ' O + 123 ' ' ' ' nul ' ' ' ' ' ' susp ' ' O 125 '\' '|' fs fs '\' '|' fs fs O ----- Cut Here ----- >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 5 07:07:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA20495 for freebsd-bugs-outgoing; Wed, 5 Aug 1998 07:07:37 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA20464; Wed, 5 Aug 1998 07:07:25 -0700 (PDT) (envelope-from dg@FreeBSD.org) From: David Greenman Received: (from dg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA22523; Wed, 5 Aug 1998 07:07:23 -0700 (PDT) Date: Wed, 5 Aug 1998 07:07:23 -0700 (PDT) Message-Id: <199808051407.HAA22523@freefall.freebsd.org> To: seggers@semyam.dinoco.de, dg@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7496 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: not so good coding in subr_rlist.c State-Changed-From-To: open-closed State-Changed-By: dg State-Changed-When: Wed Aug 5 07:06:56 PDT 1998 State-Changed-Why: I agree that there appears to be a real bug there. I've committed your fix. Thanks for the bug report! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 5 07:10:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA21116 for freebsd-bugs-outgoing; Wed, 5 Aug 1998 07:10:05 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA21081 for ; Wed, 5 Aug 1998 07:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA22634; Wed, 5 Aug 1998 07:10:00 -0700 (PDT) Received: from tpost2.netspace.or.jp (tpost2.netspace.or.jp [202.246.248.20]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA19956 for ; Wed, 5 Aug 1998 07:05:58 -0700 (PDT) (envelope-from mastake@tpost2.netspace.or.jp) Received: from localhost (vctkp073.vc-net.or.jp [202.215.21.73]) by tpost2.netspace.or.jp (8.8.8+2.7Wbeta7/3.6Wbeta798011918) with ESMTP id XAA29254 for ; Wed, 5 Aug 1998 23:05:42 +0900 (JST) Received: (from mastake@localhost) by localhost (8.8.7/3.6Wbeta7) id XAA00432; Wed, 5 Aug 1998 23:03:38 +0900 (JST) Message-Id: <199808051403.XAA00432@localhost> Date: Wed, 5 Aug 1998 23:03:38 +0900 (JST) From: mastake@tpost2.netspace.or.jp Reply-To: mastake@tpost2.netspace.or.jp To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: conf/7498: jp.106.kbd patch [New Version] Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7498 >Category: conf >Synopsis: Keymaps of jp.106.kbd & jp.106x.kbd is incorrect >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Aug 5 07:10:00 PDT 1998 >Last-Modified: >Originator: Mas.TAKEMURA >Organization: Suginami-ku Tokyo, Japan. >Release: FreeBSD-current i386 >Environment: jp.106 Keyboard >Description: !! Please dispose of patch in last mail, and apply patch in this mail. !! >How-To-Repeat: >Fix: /usr/share/syscons/keymaps/jp.106.kbd ----- Cut Here ----- --- jp.106.kbd.orig Wed Aug 5 21:42:45 1998 +++ jp.106.kbd Wed Aug 5 22:45:28 1998 @@ -17,7 +17,7 @@ 012 '-' '=' nop nop '-' '=' nop nop O 013 '^' '~' rs rs '^' '~' rs rs O 014 bs bs del del bs bs del del O - 015 ht bs nop nop ht bs nop nop O + 015 ht btab nop nop ht btab nop nop O 016 'q' 'Q' dc1 dc1 'q' 'Q' dc1 dc1 C 017 'w' 'W' etb etb 'w' 'W' etb etb C 018 'e' 'E' enq enq 'e' 'E' enq enq C @@ -78,7 +78,7 @@ 073 fkey51 '9' '9' '9' '9' '9' '9' '9' N 074 fkey52 '-' '-' '-' '-' '-' '-' '-' N 075 fkey53 '4' '4' '4' '4' '4' '4' '4' N - 076 nop '5' '5' '5' '5' '5' '5' '5' N + 076 fkey54 '5' '5' '5' '5' '5' '5' '5' N 077 fkey55 '6' '6' '6' '6' '6' '6' '6' N 078 fkey56 '+' '+' '+' '+' '+' '+' '+' N 079 fkey57 '1' '1' '1' '1' '1' '1' '1' N @@ -105,9 +105,12 @@ 100 fkey58 fkey58 fkey58 fkey58 fkey58 fkey58 fkey58 fkey58 O 101 fkey59 fkey59 fkey59 fkey59 fkey59 fkey59 fkey59 fkey59 O 102 fkey60 fkey60 fkey60 fkey60 fkey60 fkey60 fkey60 fkey60 O - 103 fkey54 fkey54 fkey54 fkey54 fkey54 fkey54 boot fkey54 O + 103 fkey61 fkey61 fkey61 fkey61 fkey61 fkey61 boot fkey61 O 104 slock slock slock slock slock slock slock slock O + 105 fkey62 fkey62 fkey62 fkey62 fkey62 fkey62 fkey62 fkey62 O + 106 fkey63 fkey63 fkey63 fkey63 fkey63 fkey63 fkey63 fkey63 O + 107 fkey64 fkey64 fkey64 fkey64 fkey64 fkey64 fkey64 fkey64 O 115 '\' '_' fs ns '\' '_' fs ns O - 121 ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' O - 123 ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' O + 121 ' ' ' ' nul ' ' ' ' ' ' susp ' ' O + 123 ' ' ' ' nul ' ' ' ' ' ' susp ' ' O 125 '\' '|' fs fs '\' '|' fs fs O ----- Cut Here ----- /usr/share/syscons/keymaps/jp.106x.kbd ----- Cut Here ----- --- jp.106x.kbd.orig Wed Aug 5 21:42:45 1998 +++ jp.106x.kbd Wed Aug 5 22:45:41 1998 @@ -18,7 +18,7 @@ 012 '-' '=' nop nop '-' '=' nop nop O 013 '^' '~' rs rs '^' '~' rs rs O 014 bs bs del del bs bs del del O - 015 ht bs nop nop ht bs nop nop O + 015 ht btab nop nop ht btab nop nop O 016 'q' 'Q' dc1 dc1 'q' 'Q' dc1 dc1 C 017 'w' 'W' etb etb 'w' 'W' etb etb C 018 'e' 'E' enq enq 'e' 'E' enq enq C @@ -79,7 +79,7 @@ 073 fkey51 '9' '9' '9' '9' '9' '9' '9' N 074 fkey52 '-' '-' '-' '-' '-' '-' '-' N 075 fkey53 '4' '4' '4' '4' '4' '4' '4' N - 076 nop '5' '5' '5' '5' '5' '5' '5' N + 076 fkey54 '5' '5' '5' '5' '5' '5' '5' N 077 fkey55 '6' '6' '6' '6' '6' '6' '6' N 078 fkey56 '+' '+' '+' '+' '+' '+' '+' N 079 fkey57 '1' '1' '1' '1' '1' '1' '1' N @@ -106,9 +106,12 @@ 100 fkey58 fkey58 fkey58 fkey58 fkey58 fkey58 fkey58 fkey58 O 101 fkey59 fkey59 fkey59 fkey59 fkey59 fkey59 fkey59 fkey59 O 102 fkey60 fkey60 fkey60 fkey60 fkey60 fkey60 fkey60 fkey60 O - 103 fkey54 fkey54 fkey54 fkey54 fkey54 fkey54 boot fkey54 O + 103 fkey61 fkey61 fkey61 fkey61 fkey61 fkey61 boot fkey61 O 104 slock slock slock slock slock slock slock slock O + 105 fkey62 fkey62 fkey62 fkey62 fkey62 fkey62 fkey62 fkey62 O + 106 fkey63 fkey63 fkey63 fkey63 fkey63 fkey63 fkey63 fkey63 O + 107 fkey64 fkey64 fkey64 fkey64 fkey64 fkey64 fkey64 fkey64 O 115 '\' '_' fs ns '\' '_' fs ns O - 121 ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' O - 123 ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' O + 121 ' ' ' ' nul ' ' ' ' ' ' susp ' ' O + 123 ' ' ' ' nul ' ' ' ' ' ' susp ' ' O 125 '\' '|' fs fs '\' '|' fs fs O ----- Cut Here ----- >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 5 08:00:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA27558 for freebsd-bugs-outgoing; Wed, 5 Aug 1998 08:00:06 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA27491 for ; Wed, 5 Aug 1998 08:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA24143; Wed, 5 Aug 1998 08:00:00 -0700 (PDT) Received: from rmstar.campus.luth.se (rmstar.campus.luth.se [130.240.197.32]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA27339 for ; Wed, 5 Aug 1998 07:59:04 -0700 (PDT) (envelope-from murduth@rmstar.campus.luth.se) Received: (from root@localhost) by rmstar.campus.luth.se (8.8.8/8.8.8) id QAA08055; Wed, 5 Aug 1998 16:58:42 +0200 (CEST) (envelope-from murduth) Message-Id: <199808051458.QAA08055@rmstar.campus.luth.se> Date: Wed, 5 Aug 1998 16:58:42 +0200 (CEST) From: murduthludd.luth.se@ludd.luth.se Reply-To: murduth@ludd.luth.se To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: kern/7499: ufs/vfs panic. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7499 >Category: kern >Synopsis: Panic in ffs_blkfree() >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Aug 5 08:00:00 PDT 1998 >Last-Modified: >Originator: Joakim Henriksson >Organization: University of Lulea >Release: FreeBSD 3.0-CURRENT i386 >Environment: Current as of July 28. >Description: I was working remote and the machine had a panic. (kgdb) bt #0 0xf0118e9b in boot () #1 0xf0119187 in panic () #2 0xf01be27b in ffs_blkfree () #3 0xf01c06db in ffs_truncate () #4 0xf01cb516 in ufs_inactive () #5 0xf01d0e7d in ufs_vnoperate () #6 0xf013bbc6 in vput () #7 0xf013eff9 in unlink () #8 0xf01f2673 in syscall () >How-To-Repeat: No idea unfortunately. >Fix: Unknown, crasdump exists if someone would like too look at it, or help with getting useful info. >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 5 08:02:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA27962 for freebsd-bugs-outgoing; Wed, 5 Aug 1998 08:02:21 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from Sun.Farlep.Net (Sun.Farlep.Net [195.145.102.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA27955 for ; Wed, 5 Aug 1998 08:02:17 -0700 (PDT) (envelope-from alexv@Sun.Farlep.Net) Received: (from alexv@localhost) by Sun.Farlep.Net (8.9.0/8.9.0/Farlep-Mail-2.0) id SAA14265 for freebsd-bugs@freebsd.org; Wed, 5 Aug 1998 18:01:48 +0300 (EEST) From: "Alexey V.Vinogradov" Message-Id: <199808051501.SAA14265@Sun.Farlep.Net> Subject: about strange problem with crypt style To: freebsd-bugs@FreeBSD.ORG Date: Wed, 5 Aug 1998 18:01:48 +0300 (EEST) Organization: Farlep-Internet X-NCC-RegID: net.farlep X-NIC-HDL: ... X-Phone: +380(0482)210706 X-Fax: +380(0482)429111 X-Mailer: ELM [version 2.4 PL24] MIME-Version: 1.0 Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: 8bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello! I have strange problem. In file master.passwd I have crypt style password : user:$1$....etc string very big, 15-20 letters. After few days, change password for user update master.passwd with another style crypt password: user:nNshjffjkfm( string 13 letters):... What is problem? How this affects at security my system? What i must do , to solve that problem and remain old style crypt password? Regards, and waiting for reply, --- Farlep-Internet. Alexey V.Vinogradov System Administator. e-mail: alexv@farlep.net phone: +(380)-482-210706 AVV5-RIPE To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 5 08:30:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA02746 for freebsd-bugs-outgoing; Wed, 5 Aug 1998 08:30:18 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA02668 for ; Wed, 5 Aug 1998 08:30:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA25014; Wed, 5 Aug 1998 08:30:01 -0700 (PDT) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA00861; Wed, 5 Aug 1998 08:23:20 -0700 (PDT) (envelope-from nobody) Message-Id: <199808051523.IAA00861@hub.freebsd.org> Date: Wed, 5 Aug 1998 08:23:20 -0700 (PDT) From: tinguely@plains.NoDak.edu To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: bin/7500: rshd fails on apps that can have input Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7500 >Category: bin >Synopsis: rshd fails on apps that can have input >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Aug 5 08:30:01 PDT 1998 >Last-Modified: >Originator: Mark Tinguely >Organization: North Dakota State University >Release: 2.2.7-RELEASE only >Environment: FreeBSD hookie 2.2.7-RELEASE FreeBSD 2.2.7-RELEASE #0: Mon Jul 27 10:03:08 CDT 1998 root@hookie:/home/tinguely/2.2.7-RELEASE/sys/compile/dec i386 >Description: rsh commands to 2.2.7-RELEASE machines that can handle more input will terminate immediately >How-To-Repeat: rsh 2.2.7HOST /etc/rmt rsh 2.2.7HOST /bin/cat rsh 2.2.7HOST /bin/sh rsh 2.2.7HOST dd ... basically any remote shell that can accept more input. >Fix: the socket filenumber is being lost because it is defined a local*** rshd.c.orig Wed Aug 5 10:15:51 1998 variable to the if statement. below is a patch file: *** rshd.c.orig Wed Aug 5 10:15:51 1998 --- rshd.c Wed Aug 5 10:13:17 1998 *************** *** 304,310 **** (void) alarm(0); if (port != 0) { int lport = IPPORT_RESERVED - 1; ! int s = rresvport(&lport); if (s < 0) { syslog(LOG_ERR, "can't get stderr port: %m"); exit(1); --- 304,310 ---- (void) alarm(0); if (port != 0) { int lport = IPPORT_RESERVED - 1; ! s = rresvport(&lport); if (s < 0) { syslog(LOG_ERR, "can't get stderr port: %m"); exit(1); >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 5 09:50:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA16105 for freebsd-bugs-outgoing; Wed, 5 Aug 1998 09:50:09 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA16050 for ; Wed, 5 Aug 1998 09:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA27529; Wed, 5 Aug 1998 09:50:01 -0700 (PDT) Date: Wed, 5 Aug 1998 09:50:01 -0700 (PDT) Message-Id: <199808051650.JAA27529@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Brett Glass Subject: Re: kern/7367: panic: malloc: wrong bucket Reply-To: Brett Glass Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/7367; it has been noted by GNATS. From: Brett Glass To: freebsd-gnats-submit@freebsd.org, rivers@dignus.com, hackers@freebsd.com Cc: Subject: Re: kern/7367: panic: malloc: wrong bucket Date: Wed, 05 Aug 1998 10:43:05 -0600 FreeBSD 2.2.7-RELEASE: We've been getting kernel panics, with spontaneous reboots, during periods of heavy memory and CPU activity (e.g. kernel rebuilds and gzip -9 on large files). dmesg output follows. Sometimes, the system just reboots without flashing a message, but we have seen an error message that complains of a "recursive call" to malloc() and one panic reboot displayed a screen that mentioned a fatal "page not found" error. The problem seems to occur when physical memory is fully committed and we're swapping. I suspect that the bug will be easier to flush out if the system has less memory -- i.e. if it has 8 MB or 16 MB of RAM rather than 32 MB. We'd suspect hardware, except that RAM all tests good and we've changed nothing but the OS version. What's more, the system ONLY CRASHES when specific programs are run -- e.g. when we do a kernel recompile or run that backup. System stats: Intel 486DX4/100 Zeos "Rattler" motherboard with integrated IDE 16 MB RAM Mitsumi CD-ROM with proprietary interface 10 serial ports w/multiport cards Western Digital Caviar 2.5 GB IDE drive Artisoft AE-3 NE2000 clone Diamond PCI graphics adapter (not running X, so VGA mode used always) dmesg output follows: Copyright (c) 1992-1998 FreeBSD Inc. Copyright (c) 1982, 1986, 1989, 1991, 1993 The Regents of the University of California. All rights reserved. FreeBSD 2.2.7-RELEASE #0: Mon Aug 3 03:43:28 MDT 1998 root@lariat.lariat.org:/usr/src/sys/compile/LARIAT CPU: i486 DX4 (486-class CPU) Origin = "GenuineIntel" Id = 0x480 Stepping=0 Features=0x3 real memory = 16777216 (16384K bytes) avail memory = 15089664 (14736K bytes) Probing for devices on PCI bus 0: chip0 rev 4 on pci0:0:0 chip1 rev 3 on pci0:2:0 vga0 rev 0 on pci0:13:0 Probing for devices on the ISA bus: sc0 at 0x60-0x6f irq 1 on motherboard sc0: VGA color <4 virtual consoles, flags=0x0> ed0 at 0x320-0x33f irq 5 on isa ed0: address 00:00:6e:24:e4:15, type NE2000 (16 bit) sio0 at 0x1e0-0x1e7 flags 0x185 on isa sio0: type 16550A (multiport) sio1 at 0x280-0x287 irq 9 flags 0x185 on isa sio1: type 16550A (multiport master) sio2 at 0x3f8-0x3ff flags 0x585 on isa sio2: type 16550A (multiport) sio3 at 0x2f8-0x2ff flags 0x585 on isa sio3: type 16550A (multiport) sio4 at 0x3e8-0x3ef flags 0x585 on isa sio4: type 16550A (multiport) sio5 at 0x2e8-0x2ef irq 4 flags 0x585 on isa sio5: type 16550A (multiport master) sio6 at 0x1f8-0x1ff flags 0x985 on isa sio6: type 16550A (multiport) sio7 at 0x1e8-0x1ef flags 0x985 on isa sio7: type 16550A (multiport) sio8 at 0x2a8-0x2af flags 0x985 on isa sio8: type 16550A (multiport) sio9 at 0x1a8-0x1af irq 3 flags 0x985 on isa sio9: type 16550A (multiport master) lpt0 at 0x3bc-0x3c3 irq 7 on isa lpt0: Interrupt-driven port lp0: TCP/IP capable interface fdc0 at 0x3f0-0x3f7 irq 6 drq 2 on isa fd0: 1.44MB 3.5in wdc0 at 0x1f0-0x1f7 irq 14 on isa wdc0: unit 0 (wd0): wd0: 2441MB (4999680 sectors), 4960 cyls, 16 heads, 63 S/T, 512 B/S mcd0: type Mitsumi FX001D, version info: D 2 mcd0 at 0x310-0x313 irq 10 on isa npx0 flags 0x1 on motherboard npx0: INT 16 interface WARNING: / was not properly dismounted. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 5 12:30:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA10750 for freebsd-bugs-outgoing; Wed, 5 Aug 1998 12:30:06 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA10700 for ; Wed, 5 Aug 1998 12:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA02638; Wed, 5 Aug 1998 12:30:00 -0700 (PDT) Date: Wed, 5 Aug 1998 12:30:00 -0700 (PDT) Message-Id: <199808051930.MAA02638@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Andre Albsmeier Subject: Re: bin/7500: rshd fails on apps that can have input Reply-To: Andre Albsmeier Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/7500; it has been noted by GNATS. From: Andre Albsmeier To: tinguely@plains.NoDak.edu Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: bin/7500: rshd fails on apps that can have input Date: Wed, 5 Aug 1998 21:23:23 +0200 (CEST) > > >Number: 7500 > >Category: bin > >Synopsis: rshd fails on apps that can have input > >Confidential: no > >Severity: non-critical > >Priority: high Can be closed because it's fixed already. -Andre To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 5 14:34:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA27736 for freebsd-bugs-outgoing; Wed, 5 Aug 1998 14:34:13 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from frmug.org (frmug-gw.frmug.org [193.56.58.252]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA27726 for ; Wed, 5 Aug 1998 14:34:06 -0700 (PDT) (envelope-from roberto@keltia.freenix.fr) Received: (from uucp@localhost) by frmug.org (8.9.1/frmug-2.3/nospam) with UUCP id XAA17957 for freebsd-bugs@FreeBSD.ORG; Wed, 5 Aug 1998 23:33:46 +0200 (CEST) (envelope-from roberto@keltia.freenix.fr) Received: by keltia.freenix.fr (VMailer, from userid 101) id 030AE1514; Wed, 5 Aug 1998 23:23:09 +0200 (CEST) Message-ID: <19980805232309.A22806@keltia.freenix.fr> Date: Wed, 5 Aug 1998 23:23:09 +0200 From: Ollivier Robert To: freebsd-bugs@FreeBSD.ORG Subject: Re: about strange problem with crypt style Mail-Followup-To: freebsd-bugs@FreeBSD.ORG References: <199808051501.SAA14265@Sun.Farlep.Net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93i In-Reply-To: <199808051501.SAA14265@Sun.Farlep.Net>; from Alexey V.Vinogradov on Wed, Aug 05, 1998 at 06:01:48PM +0300 X-Operating-System: FreeBSD 3.0-CURRENT ctm#4527 AMD-K6 MMX @ 200 MHz Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org According to Alexey V.Vinogradov: > What is problem? How this affects at security my system? What i must do , > to solve that problem and remain old style crypt password? Don't install the DES libraries. WHen you have them, every new password will be DES although the system will recognise the MD5 ones w/o problem. -- Ollivier ROBERT -=- FreeBSD: The Power to Serve! -=- roberto@keltia.freenix.fr FreeBSD keltia.freenix.fr 3.0-CURRENT #62: Mon Jul 27 20:47:08 CEST 1998 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 5 16:07:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA11266 for freebsd-bugs-outgoing; Wed, 5 Aug 1998 16:07:07 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from lariat.lariat.org ([206.100.185.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA11241; Wed, 5 Aug 1998 16:06:56 -0700 (PDT) (envelope-from brett@lariat.org) Received: (from brett@localhost) by lariat.lariat.org (8.8.8/8.8.6) id RAA00494; Wed, 5 Aug 1998 17:06:41 -0600 (MDT) Message-Id: <199808052306.RAA00494@lariat.lariat.org> X-Sender: brett@mail.lariat.org X-Mailer: QUALCOMM Windows Eudora Pro Version 4.0.1 Date: Wed, 05 Aug 1998 17:06:16 -0600 To: hackers@FreeBSD.ORG, bugs@FreeBSD.ORG From: Brett Glass Subject: More on the spontaneous crashes Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org As mentioned in earlier messages, we're still trying to do a backup and getting a crash every time. Our backup routine works by creating a command file which is redirected into FTP. The command that fails is put "|dump 0uf - /usr | gzip -9" usr.$starttime.gz (where $starttime is the starting time of the backup; it's replaced with a numerical UNIX date as the command file is created). As you can see, FTP is accepting input from dump, via gzip, and sending it to the named file on the other machine. This is done over a separate LAN segment for security. The screen that flashes, just before the reboot, says that there was a GP fault in the kernel. I can't print the screen or otherwise save it, and it goes by very quickly -- faster than I can write down the information. (I've considered grabbing a camera to take a picture.) How can we nail this bug and get it fixed? We need to do backups, and Heaven knows that if this userland stuff causes a crash, other things will too. --Brett To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 5 17:25:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA22058 for freebsd-bugs-outgoing; Wed, 5 Aug 1998 17:25:13 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from smtp02.primenet.com (smtp02.primenet.com [206.165.6.132]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA22037; Wed, 5 Aug 1998 17:25:05 -0700 (PDT) (envelope-from tlambert@usr06.primenet.com) Received: (from daemon@localhost) by smtp02.primenet.com (8.8.8/8.8.8) id RAA05795; Wed, 5 Aug 1998 17:24:51 -0700 (MST) Received: from usr06.primenet.com(206.165.6.206) via SMTP by smtp02.primenet.com, id smtpd005764; Wed Aug 5 17:24:45 1998 Received: (from tlambert@localhost) by usr06.primenet.com (8.8.5/8.8.5) id RAA20275; Wed, 5 Aug 1998 17:24:42 -0700 (MST) From: Terry Lambert Message-Id: <199808060024.RAA20275@usr06.primenet.com> Subject: Re: More on the spontaneous crashes To: brett@lariat.org (Brett Glass) Date: Thu, 6 Aug 1998 00:24:42 +0000 (GMT) Cc: hackers@FreeBSD.ORG, bugs@FreeBSD.ORG In-Reply-To: <199808052306.RAA00494@lariat.lariat.org> from "Brett Glass" at Aug 5, 98 05:06:16 pm X-Mailer: ELM [version 2.4 PL25] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > The screen that flashes, just before the reboot, says that there was a GP > fault in the kernel. I can't print the screen or otherwise save it, and it > goes by very quickly -- faster than I can write down the information. (I've > considered grabbing a camera to take a picture.) Boot a "com console", attach a PC running communications software capable of session logging, and make it blow up. This will identify the culprit in no uncertain terms. Terry Lambert terry@lambert.org --- Any opinions in this posting are my own and not those of my present or previous employers. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 5 17:28:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA22751 for freebsd-bugs-outgoing; Wed, 5 Aug 1998 17:28:32 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from dingo.cdrom.com (dingo.cdrom.com [204.216.28.145]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA22745; Wed, 5 Aug 1998 17:28:31 -0700 (PDT) (envelope-from mike@dingo.cdrom.com) Received: from dingo.cdrom.com (localhost [127.0.0.1]) by dingo.cdrom.com (8.8.8/8.8.5) with ESMTP id RAA01905; Wed, 5 Aug 1998 17:26:58 -0700 (PDT) Message-Id: <199808060026.RAA01905@dingo.cdrom.com> X-Mailer: exmh version 2.0zeta 7/24/97 To: Brett Glass cc: hackers@FreeBSD.ORG, bugs@FreeBSD.ORG Subject: Re: More on the spontaneous crashes In-reply-to: Your message of "Wed, 05 Aug 1998 17:06:16 MDT." <199808052306.RAA00494@lariat.lariat.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 05 Aug 1998 17:26:58 -0700 From: Mike Smith Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > As mentioned in earlier messages, we're still trying to do a backup and > getting a crash every time. Our backup routine works by creating a command > file which is redirected into FTP. The command that fails is > > put "|dump 0uf - /usr | gzip -9" usr.$starttime.gz > > (where $starttime is the starting time of the backup; it's replaced with a > numerical UNIX date as the command file is created). > > As you can see, FTP is accepting input from dump, via gzip, and sending it > to the named file on the other machine. This is done over a separate LAN > segment for security. > > The screen that flashes, just before the reboot, says that there was a GP > fault in the kernel. I can't print the screen or otherwise save it, and it > goes by very quickly -- faster than I can write down the information. (I've > considered grabbing a camera to take a picture.) > > How can we nail this bug and get it fixed? We need to do backups, and > Heaven knows that if this userland stuff causes a crash, other things will > too. Put 'options DDB' in your kernel config. -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 5 19:53:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA12064 for freebsd-bugs-outgoing; Wed, 5 Aug 1998 19:53:58 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from poseidon.hamsterville.ultranet.com (poseidon.hamsterville.ultranet.com [209.6.79.18]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA12055 for ; Wed, 5 Aug 1998 19:53:56 -0700 (PDT) (envelope-from ben@poseidon.hamsterville.ultranet.com) Received: (from ben@localhost) by poseidon.hamsterville.ultranet.com (8.9.0/8.9.0) id WAA03977; Wed, 5 Aug 1998 22:50:11 -0400 (EDT) From: Ben Goodwin Message-Id: <199808060250.WAA03977@poseidon.hamsterville.ultranet.com> Subject: 227R Networking problems To: freebsd-bugs@FreeBSD.ORG Date: Wed, 5 Aug 1998 22:50:11 -0400 (EDT) Cc: ben@poseidon.hamsterville.ultranet.com (Ben Goodwin) X-Mailer: ELM [version 2.4ME+ PL40 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I've just built a 227R system. I think I'm running into bugs, but I'm not sure I have anything conclusive yet. System: CPU PII 350 MB Intel SE440BX RAM 128MB PC100 SDRAM DISK SEAGATE 4GB UW SCSI DC Adaptec 2940UW ETHER Intel pro100B VGA Mach32-based The ethernet is connected at 100meg full duplex. Anyway, I installed 227R on in the other day. I've noticed some serious 'net lag problems. Same-logical-network connectivity pauses frequently. Remote Xserving experiences it, telnet does, and so does ftp (horribly!). I also noticed that a ping -f localhost was getting me all of 40 packets/ second. Ouch! I tried a ping binary from a 226R machine, and I got a much more normal rate (ie 5000 packets/second). I have other 226R machines that run w/out problems (I've tried the 227R machine with an identical DE450 that the 226R machine has and uses w/out problems). I've tried all the various things to try when debugging an issue like that. At this point, I think it's either a bad motherboard (unlikely) or a 227R problem. I haven't figured out the 'net connectivity issue yet, but ping seems to have a bug in it or perhaps the library it's using has a bug in it that would explain the lag in all the other net-related programs or something.. I will probably be installing 226R to see if that fixes anything. BTW, is this a known issue? :) -= Ben To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 6 00:30:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA17546 for freebsd-bugs-outgoing; Thu, 6 Aug 1998 00:30:04 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA17477 for ; Thu, 6 Aug 1998 00:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA20101; Thu, 6 Aug 1998 00:30:01 -0700 (PDT) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA17171; Thu, 6 Aug 1998 00:27:35 -0700 (PDT) (envelope-from nobody) Message-Id: <199808060727.AAA17171@hub.freebsd.org> Date: Thu, 6 Aug 1998 00:27:35 -0700 (PDT) From: nick.hibma@jrc.it To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: i386/7505: Kernel mentions 'changing root device to st*' instead of sd* Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7505 >Category: i386 >Synopsis: Kernel mentions 'changing root device to st*' instead of sd* >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Aug 6 00:30:00 PDT 1998 >Last-Modified: >Originator: Nick Hibma >Organization: n/a >Release: 2.2.6 >Environment: FreeBSD mda08.jrc.it 2.2.6-RELEASE FreeBSD 2.2.6-RELEASE #0: Wed Aug 5 17:19:12 CEST 1998 root@mda08.jrc.it:/usr/src/sys/compile/PEN i386 >Description: Message 'changing root device to st1s1a' should be 'changing root device sd1s1a'. The code in 2.2.5 is different, but the problem has been reported before. Has the code in 2.2.6 been taken from an earlier release maybe? Just a thought. >How-To-Repeat: reboot >Fix: [root@mda08 /sys/i386/i386]# diff -C3 autoconf.c.orig autoconf.c *** autoconf.c.orig Thu Aug 6 09:25:09 1998 --- autoconf.c Thu Aug 6 09:26:25 1998 *************** *** 397,403 **** #define FDMAJOR 2 "fd", "wt", ! "st", }; #define PARTITIONMASK 0x7 --- 397,403 ---- #define FDMAJOR 2 "fd", "wt", ! "sd", }; #define PARTITIONMASK 0x7 [root@mda08 /sys/i386/i386]# diff -C3 autoconf.c.orig autoconf.c *** autoconf.c.orig Thu Aug 6 09:25:09 1998 --- autoconf.c Thu Aug 6 09:26:25 1998 *************** *** 397,403 **** #define FDMAJOR 2 "fd", "wt", ! "st", }; #define PARTITIONMASK 0x7 --- 397,403 ---- #define FDMAJOR 2 "fd", "wt", ! "sd", }; #define PARTITIONMASK 0x7 >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 6 02:55:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA06131 for freebsd-bugs-outgoing; Thu, 6 Aug 1998 02:55:31 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from deimos.rz.uni-osnabrueck.de (deimos.rz.Uni-Osnabrueck.DE [131.173.17.11]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA06113 for ; Thu, 6 Aug 1998 02:55:23 -0700 (PDT) (envelope-from heini@arnold.informatik.uni-osnabrueck.de) Received: from dosuni.informatik.Uni-Osnabrueck.DE (dosuni.informatik.Uni-Osnabrueck.DE [131.173.12.1]) by deimos.rz.uni-osnabrueck.de (8.8.7/8.8.8) with ESMTP id LAA07876 for ; Thu, 6 Aug 1998 11:55:03 +0200 Received: from arnold.informatik.uni-osnabrueck.de (heini@arnold.informatik.Uni-Osnabrueck.DE [131.173.12.221]) by dosuni.informatik.Uni-Osnabrueck.DE (8.8.8/8.8.8) with ESMTP id LAA26148 for ; Thu, 6 Aug 1998 11:55:02 +0200 (MET DST) Message-ID: <35C97D74.F7250CD5@arnold.informatik.uni-osnabrueck.de> Date: Thu, 06 Aug 1998 11:55:00 +0200 From: Uwe Hein Organization: Universitaet Osnabrueck X-Mailer: Mozilla 4.04 [en] (X11; I; Linux 2.0.33 i686) MIME-Version: 1.0 To: freebsd-bugs Subject: NFS- Server Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, we have a problem with the setup of an NFS-Server: Our /etc/exports looks like: /usr/export/e1 /usr/export/e2 /usr/export/e3 -maproot=root: inffull /usr/export/e1 /usr/export/e2 /usr/export/e3 -maproot=root: appliedfull /usr/export/e1 /usr/export/e2 /usr/export/e3 -maproot=root: praxisfull /usr/export/e4 -maproot=root: ramses bartok where inffull , appliedfull and praxisfull are netgroups via NIS, ramses and bartok are hostnames. No matter where we put the export of '/usr/export/e4', this line AND ALL LINES BELOW produce the following error message: 'Can't change attributes for /usr/export/e4' 'Bad exports list line /usr/export/e4 -maproot' Note, that the line is cut off at the '='. Similar messages appear for lines below, when we place line .../e4 as first or second one. Seems to me like the parser of 'mountd' is broken. Are there any workarounds? Thanks -uh -- University of Osnabrueck Albrechtstr. 28 Nobbenburger Str. 6 49076 Osnabrueck 49076 Osnabrueck Germany Germany Tel (49)541 969 2487 (49)541 67436 FAX (49)541 969 2770 (49)541 67456 email Uwe.Hein@informatik.Uni-Osnabrueck.DE To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 6 03:04:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA07078 for freebsd-bugs-outgoing; Thu, 6 Aug 1998 03:04:26 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA07072; Thu, 6 Aug 1998 03:04:19 -0700 (PDT) (envelope-from des@FreeBSD.org) From: "Dag-Erling C. Sm\xf8rgrav" Received: (from des@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA25894; Thu, 6 Aug 1998 03:04:18 -0700 (PDT) Date: Thu, 6 Aug 1998 03:04:18 -0700 (PDT) Message-Id: <199808061004.DAA25894@freefall.freebsd.org> To: tinguely@plains.NoDak.edu, des@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/7500 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: rshd fails on apps that can have input State-Changed-From-To: open-closed State-Changed-By: des State-Changed-When: Thu Aug 6 03:02:57 PDT 1998 State-Changed-Why: Already reported twice, fixed a month ago. Please consult the archives before submitting a PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 6 03:09:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA07535 for freebsd-bugs-outgoing; Thu, 6 Aug 1998 03:09:02 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from ifi.uio.no (ifi.uio.no [129.240.64.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA07530 for ; Thu, 6 Aug 1998 03:08:55 -0700 (PDT) (envelope-from dag-erli@ifi.uio.no) Received: from hrotti.ifi.uio.no (2602@hrotti.ifi.uio.no [129.240.64.15]) by ifi.uio.no (8.8.8/8.8.7/ifi0.2) with ESMTP id MAA18199; Thu, 6 Aug 1998 12:08:37 +0200 (MET DST) Received: (from dag-erli@localhost) by hrotti.ifi.uio.no ; Thu, 6 Aug 1998 12:08:35 +0200 (MET DST) Mime-Version: 1.0 To: Ben Goodwin Cc: freebsd-bugs@FreeBSD.ORG, ben@poseidon.hamsterville.ultranet.com (Ben Goodwin) Subject: Re: 227R Networking problems References: <199808060250.WAA03977@poseidon.hamsterville.ultranet.com> Organization: University of Oslo, Department of Informatics X-url: http://www.stud.ifi.uio.no/~dag-erli/ X-other-addresses: 'finger dag-erli@ifi.uio.no' for a list X-disclaimer-1: The views expressed in this article are mine alone, and do X-disclaimer-2: not necessarily coincide with those of any organisation or X-disclaimer-3: company with which am or have been affiliated. X-Stop-Spam: http://www.cauce.org/ From: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) Date: 06 Aug 1998 12:08:35 +0200 In-Reply-To: Ben Goodwin's message of "Wed, 5 Aug 1998 22:50:11 -0400 (EDT)" Message-ID: Lines: 9 X-Mailer: Gnus v5.5/Emacs 19.34 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by hub.freebsd.org id DAA07531 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Ben Goodwin writes: > I've just built a 227R system. I think I'm running into bugs, but I'm > not sure I have anything conclusive yet. Please post this to freebsd-questions@freebsd.org. DES -- Dag-Erling Smørgrav - dag-erli@ifi.uio.no To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 6 03:47:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA12632 for freebsd-bugs-outgoing; Thu, 6 Aug 1998 03:47:37 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from enterprise.wellsfargo.com (enterprise-r.wellsfargo.com [207.141.86.4]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA12622 for ; Thu, 6 Aug 1998 03:47:35 -0700 (PDT) (envelope-from kellog@WellsFargo.COM) From: kellog@WellsFargo.COM Received: from unixm2.WellsFargo.COM (unixm2.wellsfargo.com [10.26.5.254]) by enterprise.wellsfargo.com (8.8.8/8.8.8) with ESMTP id DAA25731 for ; Thu, 6 Aug 1998 03:47:22 -0700 (PDT) Received: from xcgi-aztem-01.wellsfargo.com (imc3.wellsfargo.com [10.27.114.253]) by unixm2.WellsFargo.COM (8.9.1/8.9.0-19980530) with ESMTP id DAA06365 for ; Thu, 6 Aug 1998 03:40:52 -0700 (PDT) Message-Id: <199808061040.DAA06365@unixm2.WellsFargo.COM> Received: by imc3.wellsfargo.com with Internet Mail Service (5.0.1460.8) id ; Thu, 6 Aug 1998 03:47:22 -0700 To: freebsd-bugs@FreeBSD.ORG Subject: Fatal Trap 12: Page Fault while in kernel mode Date: Wed, 5 Aug 1998 23:31:39 -0700 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.0.1460.8) Content-Type: text/plain Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Please help: Hardware: Toshiba Tecra 750CDM w/64MB Ram Version: 2.2.5 Problem: Installs perfectly, one reboot recieve : FATAL TRAP 12 : PAGE FAULT WHILE IN KERNEL MODE [SNIP] OTHER JUNK REMOVED Then reboots after 15 seconds. The only thing that really blows is I just bought this version from the bookstore and it's already old! (whaaa!). What can I do to fix this? Greg Kellogg NAG-QA/Corporate 602.774.5346 - phone 888.436.0048 - pager kellog@wellsfargo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 6 04:06:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA16128 for freebsd-bugs-outgoing; Thu, 6 Aug 1998 04:06:12 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from amanda.qmpgmc.ac.uk ([194.81.5.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA16100 for ; Thu, 6 Aug 1998 04:05:52 -0700 (PDT) (envelope-from gquinlan@qmpgmc.ac.uk) Received: from dns0.qmpgmc.ac.uk by amanda.qmpgmc.ac.uk (UUNET Amanda using sendmail V8.9.1) id MAA02563; Thu, 6 Aug 1998 12:03:35 +0100 (BST) Received: from greg.qmpgmc.ac.uk (haem_pc) by dns0.qmpgmc.ac.uk (5.x/QMPGMC simple 1.27) id AA07373; Thu, 6 Aug 1998 12:15:25 +0100 Reply-To: "Greg Quinlan" From: "Greg Quinlan" To: Subject: CPIO -i (into oblivion your archive) Date: Thu, 6 Aug 1998 12:05:08 +0100 Message-Id: <01bdc12a$13019560$380051c2@greg.qmpgmc.ac.uk> Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_001E_01BDC132.74C5FD60" X-Priority: 3 X-Msmail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.71.1712.3 X-Mimeole: Produced By Microsoft MimeOLE V4.71.1712.3 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_001E_01BDC132.74C5FD60 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Can someone tell me how this could possibly happen: Look at the transcript :( TRANSCRIPT STARTS # ls -l total 270560 -rw-r--r-- 1 root wheel 138444800 Aug 1 17:44 NEW # file * NEW: ASCII cpio archive (SVR4 with no CRC) # cpio -idumBI NEW >^C # ls NEW apache_1.3.0 # cpio -ivdumBI NEW cpio: premature end of archive # ls -l total 2 -rw-r--r-- 1 root wheel 0 Aug 1 17:41 NEW drwxr-xr-x 6 root wheel 512 Aug 6 11:31 apache_1.3.0 TRANSCRIPT ENDS Yes I think it is very serious a bug too! What is curious is that the modification times on the files are = different but the date is the same. This operation was done at approximately Aug 6 11:40 1998 which does not = relate to the modification date & time. The initial operation was interupted with Ctrl-C (because I wanted to = display the files with the -v option) This is an exact transcript copied using cut and paste from the terminal = emulater. FreeBSD 2.2.5. On a Pentium II - 300MHz 128MB RAM SuperMicro P6SLA Adaptec 3940UW - Twin Channel 4 x WD SCSI-3 Ultra-Wide Hard Disks (two on each channel) Greg ------=_NextPart_000_001E_01BDC132.74C5FD60 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Can someone tell me how this could = possibly=20 happen: 
Look at the transcript = :( 
 
TRANSCRIPT STARTS
 
# ls -l
total = 270560
-rw-r--r--  1=20 root  wheel  138444800 Aug  1 17:44 NEW
# file = *
NEW: ASCII=20 cpio archive (SVR4 with no CRC)
# cpio -idumBI=20 NEW
>^C
 
#=20 ls
NEW          &nbs= p; =20 apache_1.3.0
# cpio -ivdumBI NEW
cpio: premature end of = archive
# ls=20 -l
total 2
-rw-r--r--  1 root  wheel    0 = Aug  1 17:41 NEW
drwxr-xr-x  6 root  wheel  512 = Aug =20 6 11:31 apache_1.3.0
 
TRANSCRIPT ENDS
 
Yes I think it is very serious a bug = too!
 
What is curious is that the = modification times=20 on the files are different but the date is the same.
 
This operation was done at approximately = Aug 6 11:40 1998 which does not relate to the modification date = &=20 time.
 
The initial operation was interupted with Ctrl-C = (because I=20 wanted to display the files with the -v option)
 
This is an exact transcript copied using cut and = paste from=20 the terminal emulater.
 
FreeBSD 2.2.5.
On a Pentium II - 300MHz
128MB RAM 
SuperMicro P6SLA 
Adaptec 3940UW - Twin Channel 
4 x WD SCSI-3 Ultra-Wide Hard = Disks 
(two on each=20 channel)
 
Greg
 
 
------=_NextPart_000_001E_01BDC132.74C5FD60-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 6 04:14:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA17534 for freebsd-bugs-outgoing; Thu, 6 Aug 1998 04:14:03 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA17498; Thu, 6 Aug 1998 04:13:47 -0700 (PDT) (envelope-from thepish@FreeBSD.org) From: Peter Hawkins Received: (from thepish@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA28663; Thu, 6 Aug 1998 04:13:45 -0700 (PDT) Date: Thu, 6 Aug 1998 04:13:45 -0700 (PDT) Message-Id: <199808061113.EAA28663@freefall.freebsd.org> To: nick.hibma@jrc.it, thepish@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: i386/7505 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Kernel mentions 'changing root device to st*' instead of sd* State-Changed-From-To: open-closed State-Changed-By: thepish State-Changed-When: Thu Aug 6 04:13:18 PDT 1998 State-Changed-Why: Already fixed in 2.2.7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 6 04:30:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA19171 for freebsd-bugs-outgoing; Thu, 6 Aug 1998 04:30:07 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA19118 for ; Thu, 6 Aug 1998 04:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA28968; Thu, 6 Aug 1998 04:30:00 -0700 (PDT) Received: from matrix.42.org (matrix.42.org [194.246.248.129]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA18299 for ; Thu, 6 Aug 1998 04:22:59 -0700 (PDT) (envelope-from sec@42.org) Received: (from sec@localhost) by matrix.42.org (8.8.8/8.8.6) id DAA11134 (sender ); Wed, 5 Aug 1998 03:21:38 +0200 (CEST) Message-Id: <199808050121.DAA11134@matrix.42.org> Date: Wed, 5 Aug 1998 03:21:38 +0200 (CEST) From: Stefan `Sec` Zehl Reply-To: sec@42.org To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: bin/7507: test cannot test for sockets Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7507 >Category: bin >Synopsis: test cannot test for sockets >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Aug 6 04:30:00 PDT 1998 >Last-Modified: >Originator: Stefan `Sec` Zehl >Organization: >Release: FreeBSD 2.2.6-STABLE i386 >Environment: 2.2-STABLE as of shortly before 2.2.7 >Description: /bin/test cannot test for unix domain sockets (as used by ssh) s-w--w--w- 1 root bin 0 Aug 5 02:51 agent-socket-10654 >How-To-Repeat: man test >Fix: Add such operator to /bin/test maybe as '-S' as zsh does ? >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 6 05:53:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA01006 for freebsd-bugs-outgoing; Thu, 6 Aug 1998 05:53:25 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from dana.clari.net.au (dana.clari.net.au [203.27.85.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA00996 for ; Thu, 6 Aug 1998 05:53:19 -0700 (PDT) (envelope-from peter@clari.net.au) Received: from localhost (peter@localhost) by dana.clari.net.au (8.8.8/8.8.7) with SMTP id WAA08105; Thu, 6 Aug 1998 22:48:40 +1000 (EST) (envelope-from peter@clari.net.au) X-Authentication-Warning: dana.clari.net.au: peter owned process doing -bs Date: Thu, 6 Aug 1998 22:48:38 +1000 (EST) From: Peter Hawkins To: Greg Quinlan cc: freebsd-bugs@FreeBSD.ORG Subject: Re: CPIO -i (into oblivion your archive) In-Reply-To: <01bdc12a$13019560$380051c2@greg.qmpgmc.ac.uk> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >-rw-r--r-- 1 root wheel 138444800 Aug 1 17:44 NEW > >-rw-r--r-- 1 root wheel 0 Aug 1 17:41 NEW > >Yes I think it is very serious a bug too! I don't ;) I'd say that the modification time on your archive going backwards after the extraction is pretty significant. Let me take a guess that the creation of the archive took 3-4 minutes? :) What's happenned is that you created your archive in such a way that the file 'NEW' itself is a member of its own archive so at some point along the extraction phase, you've re-extracted NEW over the top of itself. Peter Hilink Internet Peter Hawkins 381 Swan St Richmond, Vic, Australia Ph: +61-3-9421 2006 Fax: +61-3-9421 2007 http://www.hilink.com.au Peter@hilink.com.au FreeBSD Project: thepish@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 6 06:24:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA04759 for freebsd-bugs-outgoing; Thu, 6 Aug 1998 06:24:23 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from plains.NoDak.edu (plains.NoDak.edu [134.129.111.64]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA04485; Thu, 6 Aug 1998 06:23:39 -0700 (PDT) (envelope-from tinguely@plains.NoDak.edu) Received: (from tinguely@localhost) by plains.NoDak.edu (8.8.8/8.8.8) id IAA29648; Thu, 6 Aug 1998 08:23:23 -0500 (CDT) Date: Thu, 6 Aug 1998 08:23:23 -0500 (CDT) From: Mark Tinguely Message-Id: <199808061323.IAA29648@plains.NoDak.edu> To: des@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG, tinguely@plains.NoDak.edu Subject: Re: bin/7500 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Synopsis: rshd fails on apps that can have input [deleted] > Already reported twice, fixed a month ago. > Please consult the archives before submitting a PR. I did, but GNATS does not list closed problems. The support area does not tell a person to search another area for closed problems. Since I have been in this game for so long, maybe I should have known better (which I didn't, I assume GNATS kept all problems those open and closed) but a generic comment above without clarification on the web page or via letter comes off very snooty. --mark. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 6 06:46:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA07791 for freebsd-bugs-outgoing; Thu, 6 Aug 1998 06:46:14 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from amanda.qmpgmc.ac.uk ([194.81.5.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA07782 for ; Thu, 6 Aug 1998 06:46:12 -0700 (PDT) (envelope-from gquinlan@qmpgmc.ac.uk) Received: from dns0.qmpgmc.ac.uk by amanda.qmpgmc.ac.uk (UUNET Amanda using sendmail V8.9.1) id OAA04581; Thu, 6 Aug 1998 14:43:54 +0100 (BST) Received: from greg.qmpgmc.ac.uk (haem_pc) by dns0.qmpgmc.ac.uk (5.x/QMPGMC simple 1.27) id AA08105; Thu, 6 Aug 1998 14:55:44 +0100 Reply-To: "Greg Quinlan" From: "Greg Quinlan" To: "Peter Hawkins" Cc: Subject: Re: CPIO -i (into oblivion your archive) Date: Thu, 6 Aug 1998 14:45:27 +0100 Message-Id: <01bdc140$784509a0$380051c2@greg.qmpgmc.ac.uk> Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-Msmail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.71.1712.3 X-Mimeole: Produced By Microsoft MimeOLE V4.71.1712.3 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The original archive was created using the command: find . -print | cpio -ovBO NEW -HNEWC analising the command; 1. find . -print obtains a list of files in the current directory (NEW should not exist yet) 2. cpio -ovBO NEW -HNEWC create a cpio archive, verbose, large block, output to file NEW using SYSV format (which does not truncate inodes for large file systems) It is a very good possibility.... that some how before the archive was created that the file NEW existed in the current directory, but alphabetically NEW would be at the end of the archive, and there were heaps of files that came before it....(look at the size of the archive)... they were not extracted. Nope!! The extraction was broken with a CTRL-C after about 10 seconds purely to include a -v option, to list files. (as previously stated) But I will restore the file from tape backup and do the following: cpio -itBI NEW | grep NEW && echo "yes you're right" || echo "no your wrong" I'll keep you posted! -----Original Message----- From: Peter Hawkins To: Greg Quinlan Cc: freebsd-bugs@freebsd.org Date: 06 August 1998 14:02 Subject: Re: CPIO -i (into oblivion your archive) >>-rw-r--r-- 1 root wheel 138444800 Aug 1 17:44 NEW >> >>-rw-r--r-- 1 root wheel 0 Aug 1 17:41 NEW >> >>Yes I think it is very serious a bug too! > >I don't ;) > >I'd say that the modification time on your archive going backwards after the >extraction is pretty significant. Let me take a guess that the creation of >the archive took 3-4 minutes? :) What's happenned is that you created >your archive in such a way that the file 'NEW' itself is a member of its >own archive so at some point along the extraction phase, you've re-extracted >NEW over the top of itself. > >Peter > >Hilink Internet Peter Hawkins >381 Swan St Richmond, >Vic, Australia Ph: +61-3-9421 2006 Fax: +61-3-9421 2007 >http://www.hilink.com.au Peter@hilink.com.au > >FreeBSD Project: thepish@FreeBSD.org > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 6 06:51:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA08235 for freebsd-bugs-outgoing; Thu, 6 Aug 1998 06:51:39 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from ifi.uio.no (ifi.uio.no [129.240.64.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA08192; Thu, 6 Aug 1998 06:50:56 -0700 (PDT) (envelope-from dag-erli@ifi.uio.no) Received: from hrotti.ifi.uio.no (2602@hrotti.ifi.uio.no [129.240.64.15]) by ifi.uio.no (8.8.8/8.8.7/ifi0.2) with ESMTP id PAA13244; Thu, 6 Aug 1998 15:50:20 +0200 (MET DST) Received: (from dag-erli@localhost) by hrotti.ifi.uio.no ; Thu, 6 Aug 1998 15:50:20 +0200 (MET DST) Mime-Version: 1.0 To: Mark Tinguely Cc: des@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/7500 References: <199808061323.IAA29648@plains.NoDak.edu> Organization: University of Oslo, Department of Informatics X-url: http://www.stud.ifi.uio.no/~dag-erli/ X-other-addresses: 'finger dag-erli@ifi.uio.no' for a list X-disclaimer-1: The views expressed in this article are mine alone, and do X-disclaimer-2: not necessarily coincide with those of any organisation or X-disclaimer-3: company with which am or have been affiliated. X-Stop-Spam: http://www.cauce.org/ From: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) Date: 06 Aug 1998 15:50:19 +0200 In-Reply-To: Mark Tinguely's message of "Thu, 6 Aug 1998 08:23:23 -0500 (CDT)" Message-ID: Lines: 23 X-Mailer: Gnus v5.5/Emacs 19.34 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by hub.freebsd.org id GAA08215 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Mark Tinguely writes: > > Already reported twice, fixed a month ago. > > Please consult the archives before submitting a PR. > I did, but GNATS does not list closed problems. The support area does > not tell a person to search another area for closed problems. Since I > have been in this game for so long, maybe I should have known better > (which I didn't, I assume GNATS kept all problems those open and closed) > but a generic comment above without clarification on the web page or via > letter comes off very snooty. I'm sorry that you feel that way, and realize that I should have worded my response with more care. The problem has been discussed on the mailing lists; you should find it if you search the hackers or stable archives for "rshd". In fact, it was identified by Andre Albseimer and fixed by Jordan Hubbard a day or two after the release of 2.2.7, if memory serves. Regards, DES -- Dag-Erling Smørgrav - dag-erli@ifi.uio.no To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 6 07:21:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA11529 for freebsd-bugs-outgoing; Thu, 6 Aug 1998 07:21:57 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from amanda.qmpgmc.ac.uk ([194.81.5.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA11205 for ; Thu, 6 Aug 1998 07:19:37 -0700 (PDT) (envelope-from gquinlan@qmpgmc.ac.uk) Received: from dns0.qmpgmc.ac.uk by amanda.qmpgmc.ac.uk (UUNET Amanda using sendmail V8.9.1) id PAA04825; Thu, 6 Aug 1998 15:17:14 +0100 (BST) Received: from greg.qmpgmc.ac.uk (haem_pc) by dns0.qmpgmc.ac.uk (5.x/QMPGMC simple 1.27) id AA08281; Thu, 6 Aug 1998 15:29:03 +0100 Reply-To: "Greg Quinlan" From: "Greg Quinlan" To: "Peter Hawkins" Cc: Subject: Re: CPIO -i (into oblivion your archive) Date: Thu, 6 Aug 1998 15:18:41 +0100 Message-Id: <01bdc145$1cbb8f00$380051c2@greg.qmpgmc.ac.uk> Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-Msmail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.71.1712.3 X-Mimeole: Produced By Microsoft MimeOLE V4.71.1712.3 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org you're right I should have realised. # ls -l total 4440 -rw-r--r-- 1 root wheel 0 Aug 1 17:41 NEW drwxr-xr-x 8 root wheel 512 Aug 6 14:57 apache_1.3.0 drwxr-xr-x 14 root wheel 512 May 11 05:19 bind-4.9.7 drwxr-xr-x 6 root wheel 7168 Aug 6 14:59 gcc-2.8.1 drwxr-xr-x 2 root wheel 512 Aug 6 15:05 patches drwxr-sr-x 20 root wheel 3584 Aug 6 15:02 perl5.004_04 drwxr-xr-x 15 root wheel 4096 Aug 6 15:02 php-3.0.1 drwxr-xr-x 6 root wheel 512 Aug 6 14:58 samba-1.9.18p8 drwxr-xr-x 14 root wheel 512 Aug 6 15:06 sendmail-8.9.1 drwxr-xr-x 9 root wheel 512 Aug 6 14:58 squid-1.1.21 drwxr-xr-x 4 root wheel 4096 Aug 6 15:00 ssh-1.2.26 drwxr-xr-x 2 root wheel 512 Aug 6 15:01 stalbsd-2.0.0 drwxr-xr-x 2 root wheel 512 Aug 6 15:06 telprox-plus.0.7 # -----Original Message----- From: Greg Quinlan To: Peter Hawkins Cc: freebsd-bugs@freebsd.org Date: 06 August 1998 14:45 Subject: Re: CPIO -i (into oblivion your archive) >The original archive was created using the command: > find . -print | cpio -ovBO NEW -HNEWC > >analising the command; > 1. find . -print > obtains a list of files in the current directory (NEW should not > exist yet) > 2. cpio -ovBO NEW -HNEWC > create a cpio archive, verbose, large block, output to file NEW > using SYSV format (which does not truncate inodes for large file > systems) > >It is a very good possibility.... that some how before the archive was >created that the file NEW existed in the current directory, but >alphabetically NEW would be at the end of the archive, and there were heaps >of files that came before it....(look at the size of the archive)... they >were not extracted. > >Nope!! >The extraction was broken with a CTRL-C after about 10 seconds purely to >include a -v option, to list files. (as previously stated) > >But I will restore the file from tape backup and do the following: > >cpio -itBI NEW | grep NEW && echo "yes you're right" || echo "no your >wrong" > >I'll keep you posted! > >-----Original Message----- >From: Peter Hawkins >To: Greg Quinlan >Cc: freebsd-bugs@freebsd.org >Date: 06 August 1998 14:02 >Subject: Re: CPIO -i (into oblivion your archive) > > >>>-rw-r--r-- 1 root wheel 138444800 Aug 1 17:44 NEW >>> >>>-rw-r--r-- 1 root wheel 0 Aug 1 17:41 NEW >>> >>>Yes I think it is very serious a bug too! >> >>I don't ;) >> >>I'd say that the modification time on your archive going backwards after >the >>extraction is pretty significant. Let me take a guess that the creation of >>the archive took 3-4 minutes? :) What's happenned is that you created >>your archive in such a way that the file 'NEW' itself is a member of its >>own archive so at some point along the extraction phase, you've >re-extracted >>NEW over the top of itself. >> >>Peter >> >>Hilink Internet Peter Hawkins >>381 Swan St Richmond, >>Vic, Australia Ph: +61-3-9421 2006 Fax: +61-3-9421 2007 >>http://www.hilink.com.au Peter@hilink.com.au >> >>FreeBSD Project: thepish@FreeBSD.org >> >> > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 6 07:23:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA11857 for freebsd-bugs-outgoing; Thu, 6 Aug 1998 07:23:30 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from dana.clari.net.au (dana.clari.net.au [203.27.85.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA11820 for ; Thu, 6 Aug 1998 07:23:19 -0700 (PDT) (envelope-from peter@clari.net.au) Received: from localhost (peter@localhost) by dana.clari.net.au (8.8.8/8.8.7) with SMTP id XAA08430; Thu, 6 Aug 1998 23:57:11 +1000 (EST) (envelope-from peter@clari.net.au) X-Authentication-Warning: dana.clari.net.au: peter owned process doing -bs Date: Thu, 6 Aug 1998 23:57:11 +1000 (EST) From: Peter Hawkins To: Greg Quinlan cc: freebsd-bugs@FreeBSD.ORG Subject: Re: CPIO -i (into oblivion your archive) In-Reply-To: <01bdc140$784509a0$380051c2@greg.qmpgmc.ac.uk> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >cpio -itBI NEW | grep NEW && echo "yes you're right" || echo "no your >wrong" > >I'll keep you posted! OK. If I am wrong, can I ask you to submit a PR on it? Peter Hilink Internet Peter Hawkins 381 Swan St Richmond, Vic, Australia Ph: +61-3-9421 2006 Fax: +61-3-9421 2007 http://www.hilink.com.au Peter@hilink.com.au FreeBSD Project: thepish@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 6 07:24:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA11956 for freebsd-bugs-outgoing; Thu, 6 Aug 1998 07:24:00 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from dana.clari.net.au (dana.clari.net.au [203.27.85.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA11899; Thu, 6 Aug 1998 07:23:40 -0700 (PDT) (envelope-from peter@clari.net.au) Received: from localhost (peter@localhost) by dana.clari.net.au (8.8.8/8.8.7) with SMTP id XAA08434; Thu, 6 Aug 1998 23:58:48 +1000 (EST) (envelope-from peter@clari.net.au) X-Authentication-Warning: dana.clari.net.au: peter owned process doing -bs Date: Thu, 6 Aug 1998 23:58:48 +1000 (EST) From: Peter Hawkins To: Mark Tinguely cc: des@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/7500 In-Reply-To: <199808061323.IAA29648@plains.NoDak.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >I did, but GNATS does not list closed problems. The support area does Yes it does - go to www.freebsd.org to the search area to gnats and when you search, check the "Closed reports too" box. Peter Hilink Internet Peter Hawkins 381 Swan St Richmond, Vic, Australia Ph: +61-3-9421 2006 Fax: +61-3-9421 2007 http://www.hilink.com.au Peter@hilink.com.au FreeBSD Project: thepish@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 6 08:13:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA19115 for freebsd-bugs-outgoing; Thu, 6 Aug 1998 08:13:22 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from nexus.astro.psu.edu (nexus.astro.psu.edu [128.118.147.20]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id IAA19066; Thu, 6 Aug 1998 08:13:07 -0700 (PDT) (envelope-from mph@astro.psu.edu) Received: from mstar.astro.psu.edu by nexus.astro.psu.edu (4.1/Nexus-1.3) id AA03244; Thu, 6 Aug 98 11:12:53 EDT Received: by mstar.astro.psu.edu (SMI-8.6/Client-1.3) id LAA27466; Thu, 6 Aug 1998 11:12:48 -0400 Message-Id: <19980806111247.A27429@astro.psu.edu> Date: Thu, 6 Aug 1998 11:12:47 -0400 From: Matthew Hunt To: Mark Tinguely , des@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/7500 References: <199808061323.IAA29648@plains.NoDak.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93i In-Reply-To: <199808061323.IAA29648@plains.NoDak.edu>; from Mark Tinguely on Thu, Aug 06, 1998 at 08:23:23AM -0500 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Aug 06, 1998 at 08:23:23AM -0500, Mark Tinguely wrote: > I did, but GNATS does not list closed problems. The support area does The web page for a GNATS query has a "Closed reports too" button. If you are using the "real" query-pr, it also provides an option for including closed PRs (actually, that may be the default). -- Matthew Hunt * Inertia is a property of matter. http://www.pobox.com/~mph/pgp.key for PGP public key 0x67203349. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 6 09:37:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA03205 for freebsd-bugs-outgoing; Thu, 6 Aug 1998 09:37:35 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from aslan.dos.nortel.com (aslan.dos.nortel.com [192.7.1.11]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA03178 for ; Thu, 6 Aug 1998 09:37:19 -0700 (PDT) (envelope-from rsh@dos.nortel.com) Received: from sunsrvr6.humb.nt.com (fireside.dos.nortel.com [192.7.1.10]) by aslan.dos.nortel.com (8.8.5/NORTEL-DOS1.0) with SMTP id MAA21790 ; Thu, 6 Aug 1998 12:44:25 -0400 (EDT) Received: from sun104.humb.nt.com by sunsrvr6.humb.nt.com (4.1/SMI-4.1) for kellog@WellsFargo.COM; id AA09229; Thu, 6 Aug 98 12:36:59 EDT Received: by sun104.humb.nt.com (4.1/SMI-4.1) id AA02802; Thu, 6 Aug 98 12:36:58 EDT Message-Id: <19980806123658.A2646@humb.nt.com> Date: Thu, 6 Aug 1998 12:36:58 -0400 From: Shawn Halpenny To: kellog@WellsFargo.COM, freebsd-bugs@FreeBSD.ORG Subject: Re: Fatal Trap 12: Page Fault while in kernel mode Mail-Followup-To: kellog@WellsFargo.COM, freebsd-bugs@FreeBSD.ORG References: <199808061040.DAA06365@unixm2.WellsFargo.COM> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1 In-Reply-To: <199808061040.DAA06365@unixm2.WellsFargo.COM> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Aug 05, 1998 at 11:31:39PM -0700, kellog@WellsFargo.COM wrote: > Please help: > > Hardware: Toshiba Tecra 750CDM w/64MB Ram > > Version: 2.2.5 > > Problem: Installs perfectly, one reboot recieve : > > FATAL TRAP 12 : PAGE FAULT WHILE IN KERNEL MODE > > [SNIP] OTHER JUNK REMOVED Uhoh. This isn't Win*, so that "junk" is actually useful to those who resolve problems like this... > Then reboots after 15 seconds. The only thing that really > blows is I just bought this version from the bookstore > and it's already old! (whaaa!). > > What can I do to fix this? Post the junk too. -- Shawn Halpenny I know that you believe you understand what you think I said, but, I am not sure you realize that what you heard is not what I meant. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 6 09:59:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA07437 for freebsd-bugs-outgoing; Thu, 6 Aug 1998 09:59:00 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from austin.polstra.com (austin.polstra.com [206.213.73.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA07391 for ; Thu, 6 Aug 1998 09:58:47 -0700 (PDT) (envelope-from jdp@austin.polstra.com) Received: from austin.polstra.com (jdp@localhost) by austin.polstra.com (8.8.8/8.8.8) with ESMTP id JAA26496; Thu, 6 Aug 1998 09:57:07 -0700 (PDT) (envelope-from jdp) Message-Id: <199808061657.JAA26496@austin.polstra.com> To: gquinlan@qmpgmc.ac.uk Subject: Re: CPIO -i (into oblivion your archive) In-Reply-To: <01bdc140$784509a0$380051c2@greg.qmpgmc.ac.uk> References: <01bdc140$784509a0$380051c2@greg.qmpgmc.ac.uk> Organization: Polstra & Co., Seattle, WA Cc: bugs@FreeBSD.ORG Date: Thu, 06 Aug 1998 09:57:07 -0700 From: John Polstra Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In article <01bdc140$784509a0$380051c2@greg.qmpgmc.ac.uk>, Greg Quinlan wrote: > The original archive was created using the command: > find . -print | cpio -ovBO NEW -HNEWC > > analising the command; > 1. find . -print > obtains a list of files in the current directory (NEW should not > exist yet) Not true. The find command and the cpio command run simultaneously, not in sequence left to right. Cpio easily could have created NEW before find had finished (or even started) scanning the current working directory. And that's what it did, in this case. > 2. cpio -ovBO NEW -HNEWC > create a cpio archive, verbose, large block, output to file NEW > using SYSV format (which does not truncate inodes for large file > systems) > > It is a very good possibility.... that some how before the archive was > created that the file NEW existed in the current directory, but > alphabetically NEW would be at the end of the archive, The find command does not work alphabetically. Also, unrelated to this problem: it is best to use "find -d" as recommended in the cpio manual page. -- John Polstra jdp@polstra.com John D. Polstra & Co., Inc. Seattle, Washington USA "Self-knowledge is always bad news." -- John Barth To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 6 15:30:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA22073 for freebsd-bugs-outgoing; Thu, 6 Aug 1998 15:30:07 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA22023 for ; Thu, 6 Aug 1998 15:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA04804; Thu, 6 Aug 1998 15:30:01 -0700 (PDT) Received: from fdy2.demon.co.uk (fdy2.demon.co.uk [194.222.102.143]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA20929 for ; Thu, 6 Aug 1998 15:21:02 -0700 (PDT) (envelope-from rjs@fdy2.demon.co.uk) Received: (from rjs@localhost) by fdy2.demon.co.uk (8.8.8/8.8.8) id XAA00711; Thu, 6 Aug 1998 23:15:15 +0100 (BST) (envelope-from rjs) Message-Id: <199808062215.XAA00711@fdy2.demon.co.uk> Date: Thu, 6 Aug 1998 23:15:15 +0100 (BST) From: rjs@fdy2.demon.co.uk Reply-To: rjs@fdy2.demon.co.uk To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: kern/7511: if_lnc network driver probe failure Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7511 >Category: kern >Synopsis: if_lnc network driver probe failure >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Aug 6 15:30:01 PDT 1998 >Last-Modified: >Originator: Robert Swindells >Organization: GenRad Ltd >Release: FreeBSD 2.2.7-STABLE i386 >Environment: AMD PCnet PCI series network cards. >Description: The if_lnc driver does not probe correctly for all models of AMD PCI network card. >How-To-Repeat: Attempt to use if_lnc driver with PCnet-PCI II or PCnet-FAST network cards. >Fix: diff -u of sys/i386/isa/if_lnc.c and sys/i386/isa/if_lnc.h --- if_lnc.h.orig Sun Jul 26 23:00:22 1998 +++ if_lnc.h Sun Aug 2 12:19:09 1998 @@ -41,8 +41,7 @@ #define PCNET_RDP 0x10 /* Register Data Port */ #define PCNET_RAP 0x12 /* Register Address Port */ #define PCNET_RESET 0x14 -#define PCNET_IDP 0x16 -#define PCNET_VSW 0x18 +#define PCNET_BDP 0x16 /* DEPCA port addresses */ #define DEPCA_IOSIZE 16 @@ -72,18 +71,25 @@ #define LANCE 1 /* Am7990 */ #define C_LANCE 2 /* Am79C90 */ #define PCnet_ISA 3 /* Am79C960 */ -#define PCnet_ISAplus 4 /* Am79C961 */ -#define PCnet_32 5 /* Am79C965 */ -#define PCnet_PCI 6 /* Am79C970 */ +#define PCnet_ISAplus 4 /* Am79C961 */ +#define PCnet_ISA_II 5 /* Am79C961A */ +#define PCnet_32 6 /* Am79C965 */ +#define PCnet_PCI 7 /* Am79C970 */ +#define PCnet_PCI_II 8 /* Am79C970A */ +#define PCnet_FAST 9 /* Am79C971 */ +#define PCnet_FASTplus 10 /* Am79C972 */ /* CSR88-89: Chip ID masks */ #define AMD_MASK 0x003 #define PART_MASK 0xffff #define Am79C960 0x0003 #define Am79C961 0x2260 +#define Am79C961A 0x2261 #define Am79C965 0x2430 #define Am79C970 0x0242 -#define HITACHI_Am79C970 0x2621 +#define Am79C970A 0x2621 +#define Am79C971 0x2623 +#define Am79C972 0x2624 /* Board types */ #define UNKNOWN 0 --- if_lnc.c.orig Sun Jul 26 23:00:15 1998 +++ if_lnc.c Sun Aug 2 12:20:34 1998 @@ -122,6 +122,7 @@ int initialised; int rap; int rdp; + int bdp; #ifdef DEBUG int lnc_debug; #endif @@ -144,8 +145,12 @@ "C-LANCE", "PCnet-ISA", "PCnet-ISA+", + "PCnet-ISA II", "PCnet-32 VL-Bus", - "PCnet-PCI", /* "can't happen" */ + "PCnet-PCI", + "PCnet-PCI II", + "PCnet-FAST", + "PCnet-FAST+", }; #ifdef LNC_MULTICAST @@ -203,6 +208,20 @@ return (inw(sc->rdp)); } +static __inline void +write_bcr(struct lnc_softc *sc, u_short port, u_short val) +{ + outw(sc->rap, port); + outw(sc->bdp, val); +} + +static __inline u_short +read_bcr(struct lnc_softc *sc, u_short port) +{ + outw(sc->rap, port); + return (inw(sc->bdp)); +} + #ifdef LNC_MULTICAST static __inline u_long ether_crc(u_char *ether_addr) @@ -945,7 +964,8 @@ outw(iobase + CNET98S_RESET, tmp); DELAY(500); - if ((sc->nic.ic = pcnet_probe(sc)) == UNKNOWN) { + sc->nic.ic = pcnet_probe(sc); + if ((sc->nic.ic == UNKNOWN) || (sc->nic.ic > PCnet_32)) { return (0); } @@ -1000,7 +1020,8 @@ sc->rap = iobase + PCNET_RAP; sc->rdp = iobase + PCNET_RDP; - if ((sc->nic.ic = pcnet_probe(sc))) { + sc->nic.ic = pcnet_probe(sc); + if ((sc->nic.ic > 0) && (sc->nic.ic < PCnet_PCI)) { sc->nic.ident = NE2100; sc->nic.mem_mode = DMA_FIXED; @@ -1151,21 +1172,18 @@ return (PCnet_ISA); case Am79C961: return (PCnet_ISAplus); + case Am79C961A: + return (PCnet_ISA_II); case Am79C965: return (PCnet_32); case Am79C970: - /* - * do NOT try to ISA attach the PCI version - */ - return (0); - case HITACHI_Am79C970: - - /* - * PCI cards that should be attached in - * ISA mode should return this value. -- tvf - */ - - return (PCnet_PCI); + return (PCnet_PCI); + case Am79C970A: + return (PCnet_PCI_II); + case Am79C971: + return (PCnet_FAST); + case Am79C972: + return (PCnet_FASTplus); default: break; } @@ -1217,7 +1235,9 @@ */ if ((sc->nic.mem_mode != SHMEM) && (kvtop(sc->recv_ring) > 0x1000000)) { log(LOG_ERR, "lnc%d: Memory allocated above 16Mb limit\n", unit); - if (sc->nic.ic != PCnet_PCI) + if ((sc->nic.ic != PCnet_PCI) && + (sc->nic.ic != PCnet_PCI_II) && + (sc->nic.ic != PCnet_FAST)) return (0); } @@ -1278,8 +1298,7 @@ * and ether_ifattach() have been called in lnc_attach() ??? */ if ((sc->nic.mem_mode != SHMEM) && - (sc->nic.ic != PCnet_32) && - (sc->nic.ic != PCnet_PCI)) + (sc->nic.ic < PCnet_32)) isa_dmacascade(isa_dev->id_drq); #endif @@ -1290,22 +1309,35 @@ void * lnc_attach_ne2100_pci(int unit, unsigned iobase) { + int i; struct lnc_softc *sc = malloc(sizeof *sc, M_DEVBUF, M_NOWAIT); if (sc) { bzero (sc, sizeof *sc); - /* - * ne2100_probe sets sc->nic.ic to PCnet_PCI for PCI - * cards that work in ISA emulation mode. The first - * clause this code avoids attaching such a card at - * this time to allow it to be picked up as an ISA - * card later. -- tvf - */ + sc->rap = iobase + PCNET_RAP; + sc->rdp = iobase + PCNET_RDP; + sc->bdp = iobase + PCNET_BDP; + + sc->nic.ic = pcnet_probe(sc); + if (sc->nic.ic >= PCnet_PCI) { + sc->nic.ident = NE2100; + sc->nic.mem_mode = DMA_FIXED; - if (((ne2100_probe(sc, iobase) == 0) || - sc->nic.ic == PCnet_PCI) - || (lnc_attach_sc(sc, unit) == 0)) { + /* XXX - For now just use the defines */ + sc->nrdre = NRDRE; + sc->ntdre = NTDRE; + + /* Extract MAC address from PROM */ + for (i = 0; i < ETHER_ADDR_LEN; i++) + sc->arpcom.ac_enaddr[i] = inb(iobase + i); + + if (lnc_attach_sc(sc, unit) == 0) { + free(sc, M_DEVBUF); + sc = NULL; + } + } + else { free(sc, M_DEVBUF); sc = NULL; } @@ -1527,7 +1559,8 @@ * be missed. */ - outw(sc->rdp, IDON | CERR | BABL | MISS | MERR | RINT | TINT | INEA); + /*outw(sc->rdp, IDON | CERR | BABL | MISS | MERR | RINT | TINT | INEA);*/ + outw(sc->rdp, csr0); /* We don't do anything with the IDON flag */ @@ -1927,6 +1960,7 @@ ((sc->trans_ring + i)->md->md3 >> 10), TRANS_MD3); printf("\nnext_to_send = %x\n", sc->next_to_send); printf("\n CSR0 = %b CSR1 = %x CSR2 = %x CSR3 = %x\n\n", read_csr(sc, CSR0), CSR0_FLAGS, read_csr(sc, CSR1), read_csr(sc, CSR2), read_csr(sc, CSR3)); + /* Set RAP back to CSR0 */ outw(sc->rap, CSR0); } >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 6 15:31:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA22417 for freebsd-bugs-outgoing; Thu, 6 Aug 1998 15:31:07 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from alpha.xerox.com (omega.Xerox.COM [13.1.64.95]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id PAA22367; Thu, 6 Aug 1998 15:30:56 -0700 (PDT) (envelope-from fenner@parc.xerox.com) Received: from crevenia.parc.xerox.com ([13.2.116.11]) by alpha.xerox.com with SMTP id <40656(1)>; Thu, 6 Aug 1998 15:30:33 PDT Received: from localhost by crevenia.parc.xerox.com with SMTP id <177515>; Thu, 6 Aug 1998 15:30:13 -0700 To: Matthew Hunt cc: Mark Tinguely , des@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/7500 In-reply-to: Your message of "Thu, 06 Aug 98 08:12:47 PDT." <19980806111247.A27429@astro.psu.edu> Date: Thu, 6 Aug 1998 15:30:01 PDT From: Bill Fenner Message-Id: <98Aug6.153013pdt.177515@crevenia.parc.xerox.com> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <19980806111247.A27429@astro.psu.edu> you write: >The web page for a GNATS query has a "Closed reports too" button. I could change this to the default, and have the button be "Skip closed reports", if that seems appropriate. Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 6 17:34:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA16796 for freebsd-bugs-outgoing; Thu, 6 Aug 1998 17:34:29 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from dana.clari.net.au (dana.clari.net.au [203.27.85.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA16686; Thu, 6 Aug 1998 17:33:30 -0700 (PDT) (envelope-from peter@clari.net.au) Received: from localhost (peter@localhost) by dana.clari.net.au (8.8.8/8.8.7) with SMTP id KAA11928; Fri, 7 Aug 1998 10:32:37 +1000 (EST) (envelope-from peter@clari.net.au) X-Authentication-Warning: dana.clari.net.au: peter owned process doing -bs Date: Fri, 7 Aug 1998 10:32:37 +1000 (EST) From: Peter Hawkins To: Bill Fenner cc: freebsd-commit@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/7500 and call for votes In-Reply-To: <98Aug6.153013pdt.177515@crevenia.parc.xerox.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >I could change this to the default, and have the button be "Skip closed >reports", if that seems appropriate. For mine I'd say leave it as is. Most visits are to monitor outstanding issues. All you need is for people to check when submitting a PR and there is an education issue. More commonly we have to remind people to check gnats at all. I think a note to check GNATS and a url and a reminder to use closed reports too appearing in the comments in the PR submit script is a better move. Consider this a call for votes on the above change. If people agree I'll commit it. Please send your vote to me directly, not the list thepish@freebsd.org Peter Hilink Internet Peter Hawkins 381 Swan St Richmond, Vic, Australia Ph: +61-3-9421 2006 Fax: +61-3-9421 2007 http://www.hilink.com.au Peter@hilink.com.au FreeBSD Project: thepish@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 6 23:05:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA01549 for freebsd-bugs-outgoing; Thu, 6 Aug 1998 23:05:11 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA01532; Thu, 6 Aug 1998 23:04:59 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA16177; Thu, 6 Aug 1998 23:04:56 -0700 (PDT) Date: Thu, 6 Aug 1998 23:04:56 -0700 (PDT) Message-Id: <199808070604.XAA16177@freefall.freebsd.org> To: rjs@fdy2.demon.co.uk, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7511 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Old Synopsis: if_lnc network driver probe failure New Synopsis: [PATCH] if_lnc network driver probe failure State-Changed-From-To: open-suspended State-Changed-By: phk State-Changed-When: Thu Aug 6 23:04:37 PDT 1998 State-Changed-Why: awaiting committer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 6 23:05:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA01610 for freebsd-bugs-outgoing; Thu, 6 Aug 1998 23:05:45 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA01583; Thu, 6 Aug 1998 23:05:30 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA16258; Thu, 6 Aug 1998 23:05:28 -0700 (PDT) Date: Thu, 6 Aug 1998 23:05:28 -0700 (PDT) Message-Id: <199808070605.XAA16258@freefall.freebsd.org> To: sec@42.org, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/7507 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: test cannot test for sockets State-Changed-From-To: open-suspended State-Changed-By: phk State-Changed-When: Thu Aug 6 23:05:12 PDT 1998 State-Changed-Why: good idea, awaiting patch & committer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 6 23:08:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA02041 for freebsd-bugs-outgoing; Thu, 6 Aug 1998 23:08:44 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA02009; Thu, 6 Aug 1998 23:08:23 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA16450; Thu, 6 Aug 1998 23:08:22 -0700 (PDT) Date: Thu, 6 Aug 1998 23:08:22 -0700 (PDT) Message-Id: <199808070608.XAA16450@freefall.freebsd.org> To: mastake@tpost2.netspace.or.jp, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: conf/7498 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Old Synopsis: Keymaps of jp.106.kbd & jp.106x.kbd is incorrect New Synopsis: [PATCH] Keymaps of jp.106.kbd & jp.106x.kbd is incorrect State-Changed-From-To: open-suspended State-Changed-By: phk State-Changed-When: Thu Aug 6 23:07:54 PDT 1998 State-Changed-Why: awaiting committer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 6 23:09:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA02160 for freebsd-bugs-outgoing; Thu, 6 Aug 1998 23:09:39 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA02097; Thu, 6 Aug 1998 23:09:10 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA16561; Thu, 6 Aug 1998 23:09:08 -0700 (PDT) Date: Thu, 6 Aug 1998 23:09:08 -0700 (PDT) Message-Id: <199808070609.XAA16561@freefall.freebsd.org> To: mastake@tpost2.netspace.or.jp, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: conf/7497 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Keymaps of jp.106.kbd & jp.106x.kbd is incorrect State-Changed-From-To: open-closed State-Changed-By: phk State-Changed-When: Thu Aug 6 23:08:52 PDT 1998 State-Changed-Why: duplicate of 7498 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 6 23:10:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA02382 for freebsd-bugs-outgoing; Thu, 6 Aug 1998 23:10:39 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA02343; Thu, 6 Aug 1998 23:10:19 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA16693; Thu, 6 Aug 1998 23:10:17 -0700 (PDT) Date: Thu, 6 Aug 1998 23:10:17 -0700 (PDT) Message-Id: <199808070610.XAA16693@freefall.freebsd.org> To: phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG, jkh@FreeBSD.ORG Subject: Re: bin/7493 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: sysinstall changes router configuration in rc.conf Responsible-Changed-From-To: freebsd-bugs->jkh Responsible-Changed-By: phk Responsible-Changed-When: Thu Aug 6 23:10:03 PDT 1998 Responsible-Changed-Why: sysinstall issue To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 6 23:11:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA02521 for freebsd-bugs-outgoing; Thu, 6 Aug 1998 23:11:27 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA02470; Thu, 6 Aug 1998 23:11:10 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA16772; Thu, 6 Aug 1998 23:11:08 -0700 (PDT) Date: Thu, 6 Aug 1998 23:11:08 -0700 (PDT) Message-Id: <199808070611.XAA16772@freefall.freebsd.org> To: pink@eniac.fsz.bme.hu, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: conf/7491 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: /etc/login.conf not preserved during update State-Changed-From-To: open-closed State-Changed-By: phk State-Changed-When: Thu Aug 6 23:10:44 PDT 1998 State-Changed-Why: I belive you should save all your config files before doing an update To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 6 23:15:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA03363 for freebsd-bugs-outgoing; Thu, 6 Aug 1998 23:15:57 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA03356; Thu, 6 Aug 1998 23:15:47 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA16927; Thu, 6 Aug 1998 23:15:45 -0700 (PDT) Date: Thu, 6 Aug 1998 23:15:45 -0700 (PDT) Message-Id: <199808070615.XAA16927@freefall.freebsd.org> To: seggers@semyam.dinoco.de, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/7453 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: libdialog: small change to DITEM_RECREATE behavior State-Changed-From-To: feedback-closed State-Changed-By: phk State-Changed-When: Thu Aug 6 23:15:28 PDT 1998 State-Changed-Why: per authors request To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 6 23:21:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA04161 for freebsd-bugs-outgoing; Thu, 6 Aug 1998 23:21:38 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA04144; Thu, 6 Aug 1998 23:21:32 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA17152; Thu, 6 Aug 1998 23:21:31 -0700 (PDT) Date: Thu, 6 Aug 1998 23:21:31 -0700 (PDT) Message-Id: <199808070621.XAA17152@freefall.freebsd.org> To: cts@internetcds.com, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: misc/7229 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: /usr/include/pcap*.h isn't C++ safe. State-Changed-From-To: feedback-closed State-Changed-By: phk State-Changed-When: Thu Aug 6 23:21:16 PDT 1998 State-Changed-Why: committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 6 23:27:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA05117 for freebsd-bugs-outgoing; Thu, 6 Aug 1998 23:27:18 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA05090; Thu, 6 Aug 1998 23:27:07 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA17534; Thu, 6 Aug 1998 23:27:06 -0700 (PDT) Date: Thu, 6 Aug 1998 23:27:06 -0700 (PDT) Message-Id: <199808070627.XAA17534@freefall.freebsd.org> To: lyndon@orthanc.ab.ca, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/7466 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new adventure magic State-Changed-From-To: feedback-closed State-Changed-By: phk State-Changed-When: Thu Aug 6 23:26:53 PDT 1998 State-Changed-Why: committed, thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 6 23:30:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA05510 for freebsd-bugs-outgoing; Thu, 6 Aug 1998 23:30:05 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA05455 for ; Thu, 6 Aug 1998 23:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA17620; Thu, 6 Aug 1998 23:30:00 -0700 (PDT) Date: Thu, 6 Aug 1998 23:30:00 -0700 (PDT) Message-Id: <199808070630.XAA17620@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Poul-Henning Kamp Subject: Re: kern/7415 Reply-To: Poul-Henning Kamp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/7415; it has been noted by GNATS. From: Poul-Henning Kamp To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: kern/7415 Date: Fri, 07 Aug 1998 08:26:27 +0200 ------- Forwarded Message >it sounds to me like the simple solution would be to either: >A) have ufs clear the vmio flag agan >B) have msdosfs (and other similar fs) clear the flag before they start. Simple and wrong. File systems know nothing of the vmio flag. Either vm should clear it and be more careful about setting it (it only works now for ufs because ufs never requests a misaligned block), or it should always be set for block devices and fixes like the ones in the patch should be applied. >Could you explain what your patch does ? It attempts to make misaligned buffers (ones whose size and file offsets are multiples of PAGE_SIZE) actually work. It isn't clear whether they were intended to work, but they will need to work if the buffer cache and vm are ever fully merged. Bruce ------- End of Forwarded Message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 6 23:33:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA06108 for freebsd-bugs-outgoing; Thu, 6 Aug 1998 23:33:12 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA06076; Thu, 6 Aug 1998 23:33:04 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA17791; Thu, 6 Aug 1998 23:33:01 -0700 (PDT) Date: Thu, 6 Aug 1998 23:33:01 -0700 (PDT) Message-Id: <199808070633.XAA17791@freefall.freebsd.org> To: tri@iki.fi, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/7402 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Games primes and factor don't understand hexadecimals State-Changed-From-To: feedback-closed State-Changed-By: phk State-Changed-When: Thu Aug 6 23:32:50 PDT 1998 State-Changed-Why: committted, thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 6 23:38:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA06789 for freebsd-bugs-outgoing; Thu, 6 Aug 1998 23:38:13 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA06651; Thu, 6 Aug 1998 23:37:32 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA18001; Thu, 6 Aug 1998 23:37:31 -0700 (PDT) Date: Thu, 6 Aug 1998 23:37:31 -0700 (PDT) Message-Id: <199808070637.XAA18001@freefall.freebsd.org> To: moncrg@dominus.ma.ultranet.com, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/7419 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] cleanup for ISO State-Changed-From-To: analyzed-closed State-Changed-By: phk State-Changed-When: Thu Aug 6 23:37:01 PDT 1998 State-Changed-Why: No screams of anguish from massive hordes of ISO users. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 6 23:40:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA07066 for freebsd-bugs-outgoing; Thu, 6 Aug 1998 23:40:04 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA07015 for ; Thu, 6 Aug 1998 23:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA18117; Thu, 6 Aug 1998 23:40:00 -0700 (PDT) Date: Thu, 6 Aug 1998 23:40:00 -0700 (PDT) Message-Id: <199808070640.XAA18117@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Poul-Henning Kamp Subject: Re: kern/7415 Reply-To: Poul-Henning Kamp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/7415; it has been noted by GNATS. From: Poul-Henning Kamp To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: kern/7415 Date: Fri, 07 Aug 1998 08:27:24 +0200 ------- Forwarded Message From: Luoqi Chen Message-Id: <199807281445.KAA19921@chen.ml.org> To: bde@zeta.org.au, freebsd-bugs@FreeBSD.ORG, luoqi@chen.ml.org, phk@FreeBSD.ORG Subject: Re: kern/7415 In-Reply-To: <199807281056.UAA30494@godzilla.zeta.org.au> X-UIDL: 0bb3b238bf5e8a0a5e0814b07eec4131 > >it sounds to me like the simple solution would be to either: > >A) have ufs clear the vmio flag agan > >B) have msdosfs (and other similar fs) clear the flag before they start. > > Simple and wrong. File systems know nothing of the vmio flag. Either > vm should clear it and be more careful about setting it (it only works > now for ufs because ufs never requests a misaligned block), or it should > always be set for block devices and fixes like the ones in the patch > should be applied. > > >Could you explain what your patch does ? > > It attempts to make misaligned buffers (ones whose size and file offsets > are multiples of PAGE_SIZE) actually work. It isn't clear whether they ^ not > were intended to work, but they will need to work if the buffer cache > and vm are ever fully merged. > > Bruce > Bruce explained it very well (much better than I could). I'd like make one comment, I believe the misaligned buffers are intended to work. The evidence is at around line 1830 of vfs_bio.c the statement, ((vm_offset_t) bp->b_data) |= off & PAGE_MASK; and in numerous other places statements like pmap_qenter(trunc_page(bp->b_data), bp->b_pages, bp->b_npages); the original author were aware of these misaligned buffers and attempted to make them work. - -lq ------- End of Forwarded Message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 6 23:41:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA07406 for freebsd-bugs-outgoing; Thu, 6 Aug 1998 23:41:26 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA07348; Thu, 6 Aug 1998 23:41:17 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA18238; Thu, 6 Aug 1998 23:41:14 -0700 (PDT) Date: Thu, 6 Aug 1998 23:41:14 -0700 (PDT) Message-Id: <199808070641.XAA18238@freefall.freebsd.org> To: cmascott@world.std.com, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7141 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Kernel freezes, gdb, high memory load State-Changed-From-To: feedback-closed State-Changed-By: phk State-Changed-When: Thu Aug 6 23:40:43 PDT 1998 State-Changed-Why: ireproducible To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 6 23:50:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA08789 for freebsd-bugs-outgoing; Thu, 6 Aug 1998 23:50:09 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA08719 for ; Thu, 6 Aug 1998 23:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA18574; Thu, 6 Aug 1998 23:50:01 -0700 (PDT) Date: Thu, 6 Aug 1998 23:50:01 -0700 (PDT) Message-Id: <199808070650.XAA18574@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Poul-Henning Kamp Subject: Re: bin/7189 Reply-To: Poul-Henning Kamp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/7189; it has been noted by GNATS. From: Poul-Henning Kamp To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: bin/7189 Date: Fri, 07 Aug 1998 08:40:00 +0200 ------- Forwarded Message Date: Tue, 07 Jul 1998 11:03:40 -0700 From: John Polstra X-UIDL: 7fabdb7b5906a9bcab5aa93c2d28b044 > not a good idea, right ? ... > >> Synopsis: ld doesn't look for libxxx.so > >> > >> State-Changed-From-To: open-closed > >> State-Changed-By: phk > >> State-Changed-When: Tue Jul 7 02:40:22 PDT 1998 > >> State-Changed-Why: > >> How would you tell which version of library you expect then ? > >> This clearly seem like a bad idea to me It depends on whether it's a.out or elf. For a.out, I agree with you. The linker should only accept a library with version numbers, just as ours does now. For elf, the conventions are different. The static linker always looks for "libxxx.so". The dynamic linker looks for "libxxx.so.3", which is a symbolic link to "libxxx.so". The last piece of the puzzle is that "libxxx.so" contains information which indicates that the library is version 3, and that information is copied into any executable that's linked with the library. That's how the dynamic linker knows which version to look for. The idea behind it is to avoid searching directories and to avoid the need for anything like ldconfig. That's also really why there aren't any minor version numbers in elf. If you know the major version number, then you know exactly what filename to look for. It's kind of lame and simple-minded, but it's the established convention. If you want to pacify the person, you can tell him that he'll get what he wants when we switch to elf. John ------- End of Forwarded Message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 7 00:58:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA21428 for freebsd-bugs-outgoing; Fri, 7 Aug 1998 00:58:47 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from amanda.qmpgmc.ac.uk ([194.81.5.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA21396 for ; Fri, 7 Aug 1998 00:58:30 -0700 (PDT) (envelope-from gquinlan@qmpgmc.ac.uk) Received: from dns0.qmpgmc.ac.uk by amanda.qmpgmc.ac.uk (UUNET Amanda using sendmail V8.9.1) id IAA01701; Fri, 7 Aug 1998 08:56:04 +0100 (BST) Received: from greg.qmpgmc.ac.uk (haem_pc) by dns0.qmpgmc.ac.uk (5.x/QMPGMC simple 1.27) id AA10113; Fri, 7 Aug 1998 09:07:57 +0100 Reply-To: "Greg Quinlan" From: "Greg Quinlan" To: "John Polstra" Cc: Subject: Re: CPIO -i (into oblivion your archive) Date: Fri, 7 Aug 1998 08:57:34 +0100 Message-Id: <01bdc1d9$098950e0$380051c2@greg.qmpgmc.ac.uk> Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-Msmail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.71.1712.3 X-Mimeole: Produced By Microsoft MimeOLE V4.71.1712.3 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org -----Original Message----- From: John Polstra To: gquinlan@qmpgmc.ac.uk Cc: bugs@freebsd.org Date: 06 August 1998 22:48 Subject: Re: CPIO -i (into oblivion your archive) >In article <01bdc140$784509a0$380051c2@greg.qmpgmc.ac.uk>, >Greg Quinlan wrote: >> The original archive was created using the command: >> find . -print | cpio -ovBO NEW -HNEWC >> >> analising the command; >> 1. find . -print >> obtains a list of files in the current directory (NEW should not >> exist yet) > >Not true. The find command and the cpio command run simultaneously, >not in sequence left to right. Cpio easily could have created NEW >before find had finished (or even started) scanning the current >working directory. And that's what it did, in this case. > >> 2. cpio -ovBO NEW -HNEWC >> create a cpio archive, verbose, large block, output to file NEW >> using SYSV format (which does not truncate inodes for large file >> systems) >> >> It is a very good possibility.... that some how before the archive was >> created that the file NEW existed in the current directory, but >> alphabetically NEW would be at the end of the archive, > >The find command does not work alphabetically. > >Also, unrelated to this problem: it is best to use "find -d" as >recommended in the cpio manual page. Are you talking about this original command! # cpio -idumBI NEW Or the non existent -d option in the cpio -i command! :) >-- > John Polstra jdp@polstra.com > John D. Polstra & Co., Inc. Seattle, Washington USA > "Self-knowledge is always bad news." -- John Barth > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 7 01:30:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA27032 for freebsd-bugs-outgoing; Fri, 7 Aug 1998 01:30:13 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA26921 for ; Fri, 7 Aug 1998 01:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA21468; Fri, 7 Aug 1998 01:30:00 -0700 (PDT) Received: from pobox.com (port34.prairietech.net [208.141.230.111]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA26571 for ; Fri, 7 Aug 1998 01:25:38 -0700 (PDT) (envelope-from alk@pobox.com) Received: (from alk@localhost) by pobox.com (8.8.8/8.7.3) id DAA18766; Fri, 7 Aug 1998 03:27:21 -0500 (CDT) Message-Id: <199808070827.DAA18766@pobox.com> Date: Fri, 7 Aug 1998 03:27:21 -0500 (CDT) From: alk@pobox.com Reply-To: alk@pobox.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: bin/7515: rcmds fail under recent /usr/sbin/ppp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7515 >Category: bin >Synopsis: rcmds fail under recent /usr/sbin/ppp >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Aug 7 01:30:00 PDT 1998 >Last-Modified: >Originator: Tony Kimball >Organization: Dis >Release: FreeBSD 3.0-CURRENT i386 >Environment: Current, from at least 15 Jul through 5 Aug >Description: Using current ppp with aliasing, rcmds fail. Nota Bene: If I 'cd usr.sbin/ppp;cvs update -D 'June 21' .;make install', then the problem goes away. >How-To-Repeat: ; cat /etc/ppp/ppp.conf default: allow users alk load ptech basic: allow users alk accept chap accept pap disable chap disable pap alias enable yes set mtu 1500 set server /tmp/ppp ******** set log +connect +phase ptech: allow users alk load basic set authname alk set authkey ******** set phone 7397050 set login "TIMEOUT 15 Session" set dial "ABORT BUSY ABORT NO\\sCARRIER TIMEOUT 4 \"\" ATY0 OK ATDT\\T TIMEOUT 45 CONNECT" set device /dev/cuaa0 set redial 5 2 set speed 115200 set timeout 0 ptech2: allow users alk load ptech set phone 7367388 dial: allow users alk load ptech dial # # pilot servers # pnet: allow users alk set timeout 0 enable proxy set device localhost:6999 set ifaddr 172.24.0.1 192.168.0.7 pcom: allow users alk set timeout 0 enable proxy set speed 9600 set device /dev/cuaa1 set ifaddr 172.16.0.1 192.168.0.7 ; ppp Working in interactive mode Using interface: tun0 ppp ON compound> dial [then try:] ; rsh somehost.org date select: protocol failure in circuit setup [i.e /usr/src/lib/libc/net/rcmd.c:176] >Fix: whoops, time's up. >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 7 03:08:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA12409 for freebsd-bugs-outgoing; Fri, 7 Aug 1998 03:08:08 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA12375; Fri, 7 Aug 1998 03:07:49 -0700 (PDT) (envelope-from des@FreeBSD.org) From: "Dag-Erling C. Sm\xf8rgrav" Received: (from des@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA24945; Fri, 7 Aug 1998 03:07:47 -0700 (PDT) Date: Fri, 7 Aug 1998 03:07:47 -0700 (PDT) Message-Id: <199808071007.DAA24945@freefall.freebsd.org> To: alk@pobox.com, des@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/7515 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: rcmds fail under recent /usr/sbin/ppp State-Changed-From-To: open-closed State-Changed-By: des State-Changed-When: Fri Aug 7 03:06:42 PDT 1998 State-Changed-Why: This is not a bug. Search the freebsd-hackers archive for the text "rsh and ppp" or "protocol failure in circuit setup". To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 7 04:50:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA24945 for freebsd-bugs-outgoing; Fri, 7 Aug 1998 04:50:08 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA24909 for ; Fri, 7 Aug 1998 04:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA28829; Fri, 7 Aug 1998 04:50:01 -0700 (PDT) Date: Fri, 7 Aug 1998 04:50:01 -0700 (PDT) Message-Id: <199808071150.EAA28829@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: "Philip J. May" Subject: Re: kern/5038: FreeBSD can't read MS Joliet CDs Reply-To: "Philip J. May" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/5038; it has been noted by GNATS. From: "Philip J. May" To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: kern/5038: FreeBSD can't read MS Joliet CDs Date: Fri, 7 Aug 1998 19:35:00 +0800 (WST) I have attempted to install the second patch, on the following installs. 2.2.5-REL 2.2.6-REL 2.2CAM-19980716 3.0CAM-19980712 On each the src tree for the patch gets hunks failing, and as a reult the kernel wont compile.... Has anyone successfully made joliet cd-roms work under freebsd, and will this kind of support be moved into the next 2.2-stable or 2.2.RELEASE????? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 7 06:54:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA07957 for freebsd-bugs-outgoing; Fri, 7 Aug 1998 06:54:33 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from plains.NoDak.edu (plains.NoDak.edu [134.129.111.64]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA07941; Fri, 7 Aug 1998 06:54:06 -0700 (PDT) (envelope-from tinguely@plains.NoDak.edu) Received: (from tinguely@localhost) by plains.NoDak.edu (8.8.8/8.8.8) id IAA11795; Fri, 7 Aug 1998 08:53:45 -0500 (CDT) Date: Fri, 7 Aug 1998 08:53:45 -0500 (CDT) From: Mark Tinguely Message-Id: <199808071353.IAA11795@plains.NoDak.edu> To: fenner@parc.xerox.com, mph@pobox.com Subject: Re: bin/7500 Cc: des@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG, tinguely@plains.NoDak.edu Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I AM SORRY for flying off the handle, I guess I was miffed for spending a couple hours on chasing and fixing something that was fixed after I looked on the FreeBSD web page under Support and not finding a simular problem and then told not to re-invent the wheel. I should be following the bugs mailing list, but I barely skim the other older mailing list because of their volume. I see on http://www.freebsd.org/support.html that the only link is to view "open" problem reports, MY FAULT for not reading the word OPEN. Please forgive my denseness, but I still do not see an option there nor in the subsquent http://www.freebsd.org/cgi/query-pr-summary.cgi how to view all problem reports. maybe in http://www.freebsd.org/support.html under GNATs, an option to view all [or maybe just closed problems]. thanks for not flaming me when I was grouchy. --mark. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 7 06:59:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA08352 for freebsd-bugs-outgoing; Fri, 7 Aug 1998 06:59:24 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from ifi.uio.no (ifi.uio.no [129.240.64.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA08345; Fri, 7 Aug 1998 06:59:18 -0700 (PDT) (envelope-from dag-erli@ifi.uio.no) Received: from hrotti.ifi.uio.no (2602@hrotti.ifi.uio.no [129.240.64.15]) by ifi.uio.no (8.8.8/8.8.7/ifi0.2) with ESMTP id PAA16742; Fri, 7 Aug 1998 15:58:47 +0200 (MET DST) Received: (from dag-erli@localhost) by hrotti.ifi.uio.no ; Fri, 7 Aug 1998 15:58:46 +0200 (MET DST) Mime-Version: 1.0 To: Mark Tinguely Cc: fenner@parc.xerox.com, mph@pobox.com, des@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/7500 References: <199808071353.IAA11795@plains.NoDak.edu> Organization: University of Oslo, Department of Informatics X-url: http://www.stud.ifi.uio.no/~dag-erli/ X-other-addresses: 'finger dag-erli@ifi.uio.no' for a list X-disclaimer-1: The views expressed in this article are mine alone, and do X-disclaimer-2: not necessarily coincide with those of any organisation or X-disclaimer-3: company with which am or have been affiliated. X-Stop-Spam: http://www.cauce.org/ From: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) Date: 07 Aug 1998 15:58:45 +0200 In-Reply-To: Mark Tinguely's message of "Fri, 7 Aug 1998 08:53:45 -0500 (CDT)" Message-ID: Lines: 11 X-Mailer: Gnus v5.5/Emacs 19.34 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by hub.freebsd.org id GAA08347 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Mark Tinguely writes: > Please forgive my denseness, but I still do not see an option there nor > in the subsquent http://www.freebsd.org/cgi/query-pr-summary.cgi how to > view all problem reports. Look closer :) There is a checkbox below the "Text in multi-line fields" input field labeled "Closed reports too". DES -- Dag-Erling Smørgrav - dag-erli@ifi.uio.no To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 7 07:21:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA11928 for freebsd-bugs-outgoing; Fri, 7 Aug 1998 07:21:57 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from plains.NoDak.edu (plains.NoDak.edu [134.129.111.64]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA11898; Fri, 7 Aug 1998 07:21:48 -0700 (PDT) (envelope-from tinguely@plains.NoDak.edu) Received: (from tinguely@localhost) by plains.NoDak.edu (8.8.8/8.8.8) id JAA06497; Fri, 7 Aug 1998 09:21:17 -0500 (CDT) Date: Fri, 7 Aug 1998 09:21:17 -0500 (CDT) From: Mark Tinguely Message-Id: <199808071421.JAA06497@plains.NoDak.edu> To: dag-erli@ifi.uio.no, tinguely@plains.NoDak.edu Subject: Re: bin/7500 Cc: des@FreeBSD.ORG, fenner@parc.xerox.com, freebsd-bugs@FreeBSD.ORG, mph@pobox.com Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org what is the URL you find this in, netscape Find does not locate the string "Closed reports too" in neither http://www.freebsd.org/cgi/query-pr-summary.cgi, nor http://www.freebsd.org/cgi/query-pr.cgi. --mark. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 7 08:00:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA17928 for freebsd-bugs-outgoing; Fri, 7 Aug 1998 08:00:14 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA17830 for ; Fri, 7 Aug 1998 08:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA08791; Fri, 7 Aug 1998 08:00:01 -0700 (PDT) Received: from CirX.ORG (Joller.m6.ntu.edu.tw [140.112.247.129]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA17491 for ; Fri, 7 Aug 1998 07:55:56 -0700 (PDT) (envelope-from clkao@CirX.ORG) Received: (from root@localhost) by CirX.ORG (8.8.8/8.8.8) id XAA07463; Fri, 7 Aug 1998 23:01:24 GMT (envelope-from clkao) Message-Id: <199808072301.XAA07463@CirX.ORG> Date: Fri, 7 Aug 1998 23:01:24 GMT From: clkao@CirX.ORG Reply-To: clkao@CirX.ORG To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: bin/7519: finger(1) i18n support broken Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7519 >Category: bin >Synopsis: finger(1) i18n support broken >Confidential: yes >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Aug 7 08:00:01 PDT 1998 >Last-Modified: >Originator: Chia-liang Kao >Organization: CirX >Release: FreeBSD 2.2.7-STABLE i386 >Environment: FreeBSD genius.cirx.org 2.2.7-STABLE FreeBSD 2.2.7-STABLE #0: Sat Aug 1 14:28:41 GMT 1998 clkao@genius.cirx.org:/usr/local/src-2.2/sys/compile/GENIUS i386 >Description: the function vputc, which is determining if a charater is printable(by isprint) is taking int parameter, while isprint only works properly with unsigned char (or int). I haven't taken a look if vputc should take int or char. also, the following patch kills a warning in -Wall >How-To-Repeat: >Fix: --- lprint.c.orig Fri Aug 7 22:53:46 1998 +++ lprint.c Fri Aug 7 22:59:35 1998 @@ -297,7 +297,7 @@ struct stat sb; register FILE *fp; register int ch, cnt, lastc; - register char *p; + register u_char *p; int fd, nr; (void)snprintf(tbuf, sizeof(tbuf), "%s/%s", directory, file_name); @@ -353,7 +353,7 @@ meta = 1; } else meta = 0; - if (isprint(ch) || !meta && (ch == ' ' || ch == '\t' || ch == '\n')) + if (isprint(ch) || (!meta && (ch == ' ' || ch == '\t' || ch == '\n'))) (void)putchar(ch); else { (void)putchar('^'); >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 7 08:07:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA19515 for freebsd-bugs-outgoing; Fri, 7 Aug 1998 08:07:43 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from alpha.xerox.com (omega.Xerox.COM [13.1.64.95]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id IAA19502; Fri, 7 Aug 1998 08:07:34 -0700 (PDT) (envelope-from fenner@parc.xerox.com) Received: from mango.parc.xerox.com ([13.1.102.232]) by alpha.xerox.com with SMTP id <40650(1)>; Fri, 7 Aug 1998 08:06:59 PDT Received: from mango.parc.xerox.com (localhost [127.0.0.1]) by mango.parc.xerox.com (8.8.8/8.8.8) with ESMTP id IAA10052; Fri, 7 Aug 1998 08:06:56 -0700 (PDT) (envelope-from fenner@mango.parc.xerox.com) Message-Id: <199808071506.IAA10052@mango.parc.xerox.com> To: Mark Tinguely cc: dag-erli@ifi.uio.no, des@FreeBSD.ORG, fenner@parc.xerox.com, freebsd-bugs@FreeBSD.ORG, mph@pobox.com Subject: Re: bin/7500 In-reply-to: Your message of "Fri, 07 Aug 1998 07:21:17 PDT." <199808071421.JAA06497@plains.NoDak.edu> Date: Fri, 7 Aug 1998 08:06:56 PDT From: Bill Fenner Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org http://www.freebsd.org/cgi/query-pr-summary.cgi?query (which you get to by clicking on the "formulate a specific query" link from http://www.freebsd.org/cgi/query-pr-summary.cgi ). I'll add a link to the summary page. Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 7 08:43:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA25138 for freebsd-bugs-outgoing; Fri, 7 Aug 1998 08:43:53 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from ifi.uio.no (ifi.uio.no [129.240.64.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA25110; Fri, 7 Aug 1998 08:43:38 -0700 (PDT) (envelope-from dag-erli@ifi.uio.no) Received: from hrotti.ifi.uio.no (2602@hrotti.ifi.uio.no [129.240.64.15]) by ifi.uio.no (8.8.8/8.8.7/ifi0.2) with ESMTP id RAA27035; Fri, 7 Aug 1998 17:42:55 +0200 (MET DST) Received: (from dag-erli@localhost) by hrotti.ifi.uio.no ; Fri, 7 Aug 1998 17:42:54 +0200 (MET DST) Mime-Version: 1.0 To: Bill Fenner Cc: Mark Tinguely , des@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG, mph@pobox.com Subject: Re: bin/7500 References: <199808071506.IAA10052@mango.parc.xerox.com> Organization: University of Oslo, Department of Informatics X-url: http://www.stud.ifi.uio.no/~dag-erli/ X-other-addresses: 'finger dag-erli@ifi.uio.no' for a list X-disclaimer-1: The views expressed in this article are mine alone, and do X-disclaimer-2: not necessarily coincide with those of any organisation or X-disclaimer-3: company with which am or have been affiliated. X-Stop-Spam: http://www.cauce.org/ From: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) Date: 07 Aug 1998 17:42:54 +0200 In-Reply-To: Bill Fenner's message of "Fri, 7 Aug 1998 08:06:56 PDT" Message-ID: Lines: 12 X-Mailer: Gnus v5.5/Emacs 19.34 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by hub.freebsd.org id IAA25126 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Bill Fenner writes: > http://www.freebsd.org/cgi/query-pr-summary.cgi?query (which you get to by > clicking on the "formulate a specific query" link from > http://www.freebsd.org/cgi/query-pr-summary.cgi ). Or by following the topmost link on the "Search" page (i.e. from any page, click "Search" in the yellow bar, and click "GNATS Problem Reports (Bugs) database") DES -- Dag-Erling Smørgrav - dag-erli@ifi.uio.no To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 7 09:10:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA28138 for freebsd-bugs-outgoing; Fri, 7 Aug 1998 09:10:14 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA28064 for ; Fri, 7 Aug 1998 09:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA10780; Fri, 7 Aug 1998 09:10:01 -0700 (PDT) Date: Fri, 7 Aug 1998 09:10:01 -0700 (PDT) Message-Id: <199808071610.JAA10780@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: woods@zeus.leitch.com (Greg A. Woods) Subject: Re: bin/5854 Reply-To: woods@zeus.leitch.com (Greg A. Woods) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/5854; it has been noted by GNATS. From: woods@zeus.leitch.com (Greg A. Woods) To: FreeBSD-gnats-submit@freebsd.org Cc: justin@ad-v.com Subject: Re: bin/5854 Date: Fri, 7 Aug 1998 12:05:55 -0400 (EDT) [ On Tue, August 4, 1998 at 03:06:57 (-0700), Poul-Henning Kamp wrote: ] > Subject: Re: bin/5854 > > Synopsis: host -l MX or NS core dumps > > State-Changed-From-To: open-closed > State-Changed-By: phk > State-Changed-When: Tue Aug 4 03:05:39 PDT 1998 > State-Changed-Why: > As part of our PR auditing campaign, this PR has been closed due to its > age and lack of activity on the PR. > > The host program is part of the BIND software, and is maintained by > Paul Vixie et al. I belive they consider the "host" program obsolete > and advise people to use "dig" instead. That's because host(1) is no longer part of the BIND package. The version included there is *ancient*. The currently maintained version of host(1) is infinitely more useful then dig(1) (the latter also requires perl too). The correct URL for fetching the most recent release of host(1) is: ftp://ftp.nikhef.nl/pub/network/host.tar.Z Contact e07@nikhef.nl (Eric Wassenaar) for further information on this and other very useful network utilities (ping, traceroute, vrfy, etc.) -- Greg A. Woods +1 416 443-1734 VE3TCP Planix, Inc. ; Secrets of the Weird To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 7 09:23:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA00962 for freebsd-bugs-outgoing; Fri, 7 Aug 1998 09:23:52 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA00868; Fri, 7 Aug 1998 09:23:32 -0700 (PDT) (envelope-from ache@FreeBSD.org) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA11083; Fri, 7 Aug 1998 09:23:30 -0700 (PDT) Date: Fri, 7 Aug 1998 09:23:30 -0700 (PDT) Message-Id: <199808071623.JAA11083@freefall.freebsd.org> To: clkao@CirX.ORG, ache@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/7519 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: finger(1) i18n support broken State-Changed-From-To: open-closed State-Changed-By: ache State-Changed-When: Fri Aug 7 09:22:34 PDT 1998 State-Changed-Why: fixed differently in lprint.c v1.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 7 09:36:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA02952 for freebsd-bugs-outgoing; Fri, 7 Aug 1998 09:36:28 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from CirX.ORG (Joller.m6.ntu.edu.tw [140.112.247.129]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA02895; Fri, 7 Aug 1998 09:36:11 -0700 (PDT) (envelope-from clkao@CirX.ORG) Received: (from clkao@localhost) by CirX.ORG (8.8.8/8.8.8) id AAA00430; Sat, 8 Aug 1998 00:41:33 GMT (envelope-from clkao) Date: Sat, 8 Aug 1998 00:41:33 GMT Message-Id: <199808080041.AAA00430@CirX.ORG> From: Chia-liang Kao To: ache@FreeBSD.ORG CC: freebsd-bugs@FreeBSD.ORG In-reply-to: <199808071623.JAA11083@freefall.freebsd.org> (ache@FreeBSD.ORG) Subject: Re: bin/7519 References: <199808071623.JAA11083@freefall.freebsd.org> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org There is still problem in the server side which doesn't have a clear solution. when fingerd calls finger, there is no way to set env variable like LC_CTYPE to make finger correctly run desired isprint(). Perhaps there should be a command switch telling finger not to do anything about non-printable characters, which would be useful when fingerd calls finger. Cheers, CLK To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 7 09:40:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA04023 for freebsd-bugs-outgoing; Fri, 7 Aug 1998 09:40:13 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA03926 for ; Fri, 7 Aug 1998 09:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA14031; Fri, 7 Aug 1998 09:40:01 -0700 (PDT) Received: from bento.freebsd.org (bento.FreeBSD.ORG [204.216.27.23]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA03731 for ; Fri, 7 Aug 1998 09:38:57 -0700 (PDT) (envelope-from wosch@bento.freebsd.org) Received: (from wosch@localhost) by bento.freebsd.org (8.8.8/8.8.8) id JAA04299; Fri, 7 Aug 1998 09:39:04 -0700 (PDT) (envelope-from wosch) Message-Id: <199808071639.JAA04299@bento.freebsd.org> Date: Fri, 7 Aug 1998 09:39:04 -0700 (PDT) From: Wolfram Schneider Reply-To: wosch@bento.freebsd.org To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: bin/7522: Segmentation fault in BSD find(1) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7522 >Category: bin >Synopsis: Segmentation fault in BSD find(1) >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Aug 7 09:40:01 PDT 1998 >Last-Modified: >Originator: Wolfram Schneider >Organization: >Release: FreeBSD 3.0-CURRENT i386 >Environment: $ find . -type f ! Segmentation fault (core dumped) >Description: >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 7 09:55:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA06576 for freebsd-bugs-outgoing; Fri, 7 Aug 1998 09:55:48 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from austin.polstra.com (austin.polstra.com [206.213.73.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA06559 for ; Fri, 7 Aug 1998 09:55:35 -0700 (PDT) (envelope-from jdp@austin.polstra.com) Received: from austin.polstra.com (jdp@localhost) by austin.polstra.com (8.8.8/8.8.8) with ESMTP id JAA08821; Fri, 7 Aug 1998 09:55:13 -0700 (PDT) (envelope-from jdp) Message-Id: <199808071655.JAA08821@austin.polstra.com> To: "Greg Quinlan" cc: bugs@FreeBSD.ORG Subject: Re: CPIO -i (into oblivion your archive) In-reply-to: Your message of "Fri, 07 Aug 1998 08:57:34 BST." <01bdc1d9$098950e0$380051c2@greg.qmpgmc.ac.uk> Date: Fri, 07 Aug 1998 09:55:13 -0700 From: John Polstra Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > >Also, unrelated to this problem: it is best to use "find -d" as > >recommended in the cpio manual page. > > Are you talking about this original command! > > # cpio -idumBI NEW > > Or the non existent -d option in the cpio -i command! No, I am talking about the "find" command. From CPIO(1): A typical way to generate the list of filenames is with the "find" command; you should give "find" the -d option to minimize problems with permissions on directories that are unwritable or not searchable. -- John Polstra jdp@polstra.com John D. Polstra & Co., Inc. Seattle, Washington USA "Self-knowledge is always bad news." -- John Barth To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 7 12:22:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA01917 for freebsd-bugs-outgoing; Fri, 7 Aug 1998 12:22:21 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from nagual.ml.org (lsd.relcom.eu.net [193.125.27.73]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA01805 for ; Fri, 7 Aug 1998 12:21:57 -0700 (PDT) (envelope-from ache@nagual.ml.org) Received: (from ache@localhost) by nagual.ml.org (8.9.1/8.9.1) id XAA17821; Fri, 7 Aug 1998 23:20:13 +0400 (MSD) (envelope-from ache) Message-ID: <19980807232012.C3787@nagual.pp.ru> Date: Fri, 7 Aug 1998 23:20:12 +0400 From: "Andrey A. Chernov" To: Chia-liang Kao Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: bin/7519 Mail-Followup-To: Chia-liang Kao , freebsd-bugs@FreeBSD.ORG References: <199808071623.JAA11083@freefall.freebsd.org> <199808080041.AAA00430@CirX.ORG> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <199808080041.AAA00430@CirX.ORG>; from clkao@CirX.ORG on Sat, Aug 08, 1998 at 12:41:33AM +0000 Organization: Biomechanoid Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Aug 08, 1998 at 12:41:33AM +0000, Chia-liang Kao wrote: > when fingerd calls finger, there is no way to set env variable like > LC_CTYPE to make finger correctly run desired isprint(). You can set this variables for fingerd itself -- Andrey A. Chernov http://www.nagual.pp.ru/~ache/ MTH/SH/HE S-- W-- N+ PEC>+ D A a++ C G>+ QH+(++) 666+>++ Y To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 7 13:30:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA15382 for freebsd-bugs-outgoing; Fri, 7 Aug 1998 13:30:14 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA15353 for ; Fri, 7 Aug 1998 13:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA24556; Fri, 7 Aug 1998 13:30:01 -0700 (PDT) Received: from tim.xenologics.com (tim.xenologics.com [194.77.5.24]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA13502 for ; Fri, 7 Aug 1998 13:22:22 -0700 (PDT) (envelope-from seggers@semyam.dinoco.de) Received: (from uucp@localhost) by tim.xenologics.com (8.8.5/8.8.8) with UUCP id WAA06250 for FreeBSD-gnats-submit@freebsd.org; Fri, 7 Aug 1998 22:21:14 +0200 (MET DST) Received: (from seggers@localhost) by semyam.dinoco.de (8.8.8/8.8.8) id WAA17745; Fri, 7 Aug 1998 22:19:35 +0200 (CEST) (envelope-from seggers) Message-Id: <199808072019.WAA17745@semyam.dinoco.de> Date: Fri, 7 Aug 1998 22:19:35 +0200 (CEST) From: Stefan Eggers Reply-To: seggers@semyam.dinoco.de To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: seggers@semyam.dinoco.de X-Send-Pr-Version: 3.2 Subject: kern/7523: clearly marking gcc extension in swap_pager.c Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7523 >Category: kern >Synopsis: clearly marking gcc extension in swap_pager.c >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Aug 7 13:30:00 PDT 1998 >Last-Modified: >Originator: Stefan Eggers >Organization: none >Release: FreeBSD 3.0-CURRENT i386 >Environment: -current sources from Wednesday. >Description: In a thread in freebsd-hackers John Polstra said that when using gcc extensions they should be #ifdef'ed and have an alternative implementation. In swap_pager.c this is missing in two functions where arrays with computed size (a gcc extension) are used. >How-To-Repeat: Read swap_pager.c and look for these non-ANSI constructs. >Fix: I don't have an alternative implementation to offer. Just an error message which I hope helps in case someone tries it with another compiler. The propper fix is of course to use dynamic memory for these arrays but doing that is much work and error prone as in front of every return statement one has to add a free for it. Besides this I first have to read a bit about dynamic memory in the FreeBSD kernel first as I am not 100% sure if it is legal to use in this place. I don't think I can do that in a few minutes. ;-) --- swap_pager.c.ORIG Tue Jul 28 19:58:31 1998 +++ swap_pager.c Fri Aug 7 22:02:01 1998 @@ -933,13 +933,25 @@ int count, reqpage; { register struct buf *bp; +#ifdef __GNUC__ sw_blk_t swb[count]; +#else +#error XXX uses GCC extension of computed array size +#endif register int s; int i; boolean_t rv; +#ifdef __GNUC__ vm_offset_t kva, off[count]; +#else +#error XXX uses GCC extension of computed array size +#endif vm_pindex_t paging_offset; +#ifdef __GNUC__ int reqaddr[count]; +#else +#error XXX uses GCC extension of computed array size +#endif int sequential; int first, last; @@ -1159,14 +1171,22 @@ int *rtvals; { register struct buf *bp; +#ifdef __GNUC__ sw_blk_t swb[count]; +#else +#error XXX uses GCC extension of computed array size +#endif register int s; int i, j, ix, firstidx, lastidx; boolean_t rv; vm_offset_t kva, off, fidx; swp_clean_t spc; vm_pindex_t paging_pindex; +#ifdef __GNUC__ int reqaddr[count]; +#else +#error XXX uses GCC extension of computed array size +#endif int failed; if (vm_swap_size) >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 7 14:20:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA27319 for freebsd-bugs-outgoing; Fri, 7 Aug 1998 14:20:37 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA27168 for ; Fri, 7 Aug 1998 14:20:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA26924; Fri, 7 Aug 1998 14:20:01 -0700 (PDT) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA24904; Fri, 7 Aug 1998 14:12:37 -0700 (PDT) (envelope-from nobody) Message-Id: <199808072112.OAA24904@hub.freebsd.org> Date: Fri, 7 Aug 1998 14:12:37 -0700 (PDT) From: mvh@tis.com To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: bin/7524: 'at' is broken if the year is not specified Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7524 >Category: bin >Synopsis: 'at' is broken if the year is not specified >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Aug 7 14:20:00 PDT 1998 >Last-Modified: >Originator: Michael Harding >Organization: Network associates >Release: 2.2.7 release >Environment: FreeBSD medusa.la.tis.com 2.2.7-RELEASE FreeBSD 2.2.7-RELEASE #0: Fri Jul 24 16\ :02:27 PDT 1998 mvh@medusa.la.tis.com:/usr/src/sys/compile/MEDUSA i386 >Description: 'at' is entering 1999 dates for things that should be in 1998. This could cause some real problems! A year 2000 problem, I am sure, in reverse if you think about it... >How-To-Repeat: sample run: $ at 10am Sep 1 date Job 1260 will be executed using /bin/sh $ atq Date Owner Queue Job# 10:00:00 09/01/99 judge c 1260 $ date Fri Aug 7 14:09:42 PDT 1998 $ >Fix: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 7 14:30:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA00329 for freebsd-bugs-outgoing; Fri, 7 Aug 1998 14:30:21 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA00258 for ; Fri, 7 Aug 1998 14:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA27494; Fri, 7 Aug 1998 14:30:01 -0700 (PDT) Received: from ryan.org (kenny.inetu.net [206.245.142.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA27907 for ; Fri, 7 Aug 1998 14:22:48 -0700 (PDT) (envelope-from ryan@ryan.org) Received: (from ryan@localhost) by ryan.org (8.8.7/8.8.7) id RAA09247; Fri, 7 Aug 1998 17:23:03 -0400 (EDT) (envelope-from ryan) Message-Id: <199808072123.RAA09247@ryan.org> Date: Fri, 7 Aug 1998 17:23:03 -0400 (EDT) From: ziggy@ryan.org Reply-To: ziggy@ryan.org To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: misc/7525: spelling mistake Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7525 >Category: misc >Synopsis: spelling mistake >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Fri Aug 7 14:30:01 PDT 1998 >Last-Modified: >Originator: Ryan >Organization: >Release: FreeBSD 2.2.6-RELEASE i386 >Environment: >Description: /usr/share/examples/lkm/misc/module/miscmod.c, line 91 "cince" should be "since" >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 7 15:00:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA03896 for freebsd-bugs-outgoing; Fri, 7 Aug 1998 15:00:13 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA03820 for ; Fri, 7 Aug 1998 15:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA28590; Fri, 7 Aug 1998 15:00:01 -0700 (PDT) Received: from ryan.org (kenny.inetu.net [206.245.142.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA02784 for ; Fri, 7 Aug 1998 14:52:51 -0700 (PDT) (envelope-from ryan@ryan.org) Received: (from ryan@localhost) by ryan.org (8.8.7/8.8.7) id RAA10153; Fri, 7 Aug 1998 17:53:25 -0400 (EDT) (envelope-from ryan) Message-Id: <199808072153.RAA10153@ryan.org> Date: Fri, 7 Aug 1998 17:53:25 -0400 (EDT) From: Ryan Reply-To: ryan@ryan.org To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: misc/7526: lkm example typo Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7526 >Category: misc >Synopsis: typo in lkm example >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Fri Aug 7 15:00:01 PDT 1998 >Last-Modified: >Originator: Ryan >Organization: >Release: FreeBSD 2.2.5-RELEASE i386 >Environment: >Description: line 67 of /usr/share/examples/lkm/misc/module/miscmod.c, "save are for old callslot entry" should be "slot area for old callslot entry" >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 7 15:50:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA12047 for freebsd-bugs-outgoing; Fri, 7 Aug 1998 15:50:09 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA11983 for ; Fri, 7 Aug 1998 15:50:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA04402; Fri, 7 Aug 1998 15:50:01 -0700 (PDT) Date: Fri, 7 Aug 1998 15:50:01 -0700 (PDT) Message-Id: <199808072250.PAA04402@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: njs3@doc.ic.ac.uk (Niall Smart) Subject: Re: bin/7507: test cannot test for sockets Reply-To: njs3@doc.ic.ac.uk (Niall Smart) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/7507; it has been noted by GNATS. From: njs3@doc.ic.ac.uk (Niall Smart) To: sec@42.org, FreeBSD-gnats-submit@freebsd.org Cc: Subject: Re: bin/7507: test cannot test for sockets Date: Fri, 7 Aug 1998 23:36:29 +0100 On Aug 5, 3:21am, Stefan `Sec` Zehl wrote: } Subject: bin/7507: test cannot test for sockets > > >Description: > > /bin/test cannot test for unix domain sockets (as used by ssh) > > s-w--w--w- 1 root bin 0 Aug 5 02:51 agent-socket-10654 > > Add such operator to /bin/test maybe as '-S' as zsh does ? Suggested fix appended; -S is compatable with *BSD and Solaris. Note: These patches apply to -current AND -stable cleanly. If you apply this manually don't forget to update the /bin/[ hard link. Niall Index: operators.c =================================================================== RCS file: /cvs/src/bin/test/operators.c,v retrieving revision 1.7 diff -C2 -r1.7 operators.c *** operators.c 1998/05/18 06:51:53 1.7 --- operators.c 1998/08/07 22:26:56 *************** *** 67,70 **** --- 67,71 ---- "-x", "-z", + "-S", NULL }; *************** *** 115,118 **** --- 116,120 ---- 12, 12, + 12, 1, 1, *************** *** 148,151 **** --- 150,154 ---- OP_FILE, OP_STRING, + OP_FILE, 0, 0, Index: operators.h =================================================================== RCS file: /cvs/src/bin/test/operators.h,v retrieving revision 1.5 diff -C2 -r1.5 operators.h *** operators.h 1997/02/22 14:06:22 1.5 --- operators.h 1998/08/07 22:26:56 *************** *** 53,70 **** #define ISEXEC 16 #define NULSTR 17 ! #define FIRST_BINARY_OP 18 ! #define OR1 18 ! #define OR2 19 ! #define AND1 20 ! #define AND2 21 ! #define STREQ 22 ! #define STRNE 23 ! #define EQ 24 ! #define NE 25 ! #define GT 26 ! #define LT 27 ! #define LE 28 ! #define GE 29 --- 53,71 ---- #define ISEXEC 16 #define NULSTR 17 + #define ISSOCK 18 ! #define FIRST_BINARY_OP 19 ! #define OR1 FIRST_BINARY_OP ! #define OR2 (FIRST_BINARY_OP + 1) ! #define AND1 (FIRST_BINARY_OP + 2) ! #define AND2 (FIRST_BINARY_OP + 3) ! #define STREQ (FIRST_BINARY_OP + 4) ! #define STRNE (FIRST_BINARY_OP + 5) ! #define EQ (FIRST_BINARY_OP + 6) ! #define NE (FIRST_BINARY_OP + 7) ! #define GT (FIRST_BINARY_OP + 8) ! #define LT (FIRST_BINARY_OP + 9) ! #define LE (FIRST_BINARY_OP + 10) ! #define GE (FIRST_BINARY_OP + 11) Index: test.1 =================================================================== RCS file: /cvs/src/bin/test/test.1,v retrieving revision 1.6 diff -C2 -r1.6 test.1 *** test.1 1998/05/18 06:51:56 1.6 --- test.1 1998/08/07 22:26:57 *************** *** 100,103 **** --- 100,107 ---- is a named pipe .Po Tn FIFO Pc . + .It Fl S Ar file + True if + .Ar file + is a socket. .It Fl r Ar file True if Index: test.c =================================================================== RCS file: /cvs/src/bin/test/test.c,v retrieving revision 1.19 diff -C2 -r1.19 test.c *** test.c 1998/05/18 06:51:59 1.19 --- test.c 1998/08/07 22:27:00 *************** *** 395,398 **** --- 395,401 ---- i = S_IFIFO; goto filetype; + case ISSOCK: + i = S_IFSOCK; + goto filetype; filetype: if ((fs->stat.st_mode & S_IFMT) == i && fs->rcode >= 0) true: sp->u.num = 1; To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 7 16:54:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA23193 for freebsd-bugs-outgoing; Fri, 7 Aug 1998 16:54:40 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from pobox.com ([208.141.230.133]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA23181; Fri, 7 Aug 1998 16:54:29 -0700 (PDT) (envelope-from alk@pobox.com) Received: (from alk@localhost) by pobox.com (8.8.8/8.7.3) id SAA01928; Fri, 7 Aug 1998 18:54:50 -0500 (CDT) From: Tony Kimball MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Fri, 7 Aug 1998 18:54:48 -0500 (CDT) X-Face: O9M"E%K;(f-Go/XDxL+pCxI5*gr[=FN@Y`cl1.Tn Reply-To: alk@pobox.com To: des@FreeBSD.ORG Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: bin/7515 References: <199808071007.DAA24945@freefall.freebsd.org> X-Mailer: VM 6.43 under 20.4 "Emerald" XEmacs Lucid Message-ID: <13771.37483.384533.312329@compound.east> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Quoth Dag-Erling C. Sm\xf8rgrav on Fri, 7 August: : Synopsis: rcmds fail under recent /usr/sbin/ppp : : State-Changed-From-To: open-closed : State-Changed-By: des : State-Changed-When: Fri Aug 7 03:06:42 PDT 1998 : State-Changed-Why: : This is not a bug. Search the freebsd-hackers archive for the text : "rsh and ppp" or "protocol failure in circuit setup". It seems strange to me that you would say it is not a bug: It worked in June, but now is broken. I can demonstrate a simple fix: cd usr.sbin/ppp; cvs update -D 'June 21' ; sudo make install Broken ~= bug. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 7 18:50:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA09800 for freebsd-bugs-outgoing; Fri, 7 Aug 1998 18:50:09 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA09722 for ; Fri, 7 Aug 1998 18:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA14731; Fri, 7 Aug 1998 18:50:01 -0700 (PDT) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA08295; Fri, 7 Aug 1998 18:41:54 -0700 (PDT) (envelope-from nobody) Message-Id: <199808080141.SAA08295@hub.freebsd.org> Date: Fri, 7 Aug 1998 18:41:54 -0700 (PDT) From: nail@tier1.net To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: i386/7528: install hangs @ probing devices screen with a WD 34000 Hard Drive Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7528 >Category: i386 >Synopsis: install hangs @ probing devices screen with a WD 34000 Hard Drive >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Aug 7 18:50:00 PDT 1998 >Last-Modified: >Originator: Robert Dale Hold >Organization: NAiL >Release: 2.2.6 >Environment: none known so far >Description: el torrito, floppy, dos, and ftp installs of freebsd hang when probing devices screen comes up. current h/w listing is as follows: wd caviar 4.0 gig hd, s3 verge/dx pci video card, 64 meg ram, advansys scsi card (pci), panasonic 32x cdrom, mistumi 8x cdrom (both eide), scsi zip drive, realtek ethernet card, diamond supra 33.6i modem, yamaha sound card, --- system board: QDI with intel 430tx chipset w/usb ports, 200mhz CyrixMX processor >How-To-Repeat: hard drive is running on primary ide interface as primary master, cdrom drives are running on secondary ide as master and slave. boot from various methods and system will hang @ "probing devices, please wait..." >Fix: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 8 03:00:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA23917 for freebsd-bugs-outgoing; Sat, 8 Aug 1998 03:00:08 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA23903 for ; Sat, 8 Aug 1998 03:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA22471; Sat, 8 Aug 1998 03:00:01 -0700 (PDT) Date: Sat, 8 Aug 1998 03:00:01 -0700 (PDT) Message-Id: <199808081000.DAA22471@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Bruce Evans Subject: Re: kern/7523: clearly marking gcc extension in swap_pager.c Reply-To: Bruce Evans Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/7523; it has been noted by GNATS. From: Bruce Evans To: FreeBSD-gnats-submit@FreeBSD.ORG, seggers@semyam.dinoco.de Cc: Subject: Re: kern/7523: clearly marking gcc extension in swap_pager.c Date: Sat, 8 Aug 1998 19:58:58 +1000 > In a thread in freebsd-hackers John Polstra said that when >using gcc extensions they should be #ifdef'ed and have an alternative >implementation. In swap_pager.c this is missing in two functions >where arrays with computed size (a gcc extension) are used. This extension is in the C9x draft, so we will probably be able to depend on it by the time we ifdef all gcc-only extensions. However, I think it shouldn't be used in the kernel, because the kernel stack is limited. Limits on auto array sizes must be known at compile time, since runtime checks would be wasteful and recovery from stack overflow would be too difficult. If the limits are known, they can just be used to allocate sufficiently large arrays. I looked at this a year or two ago. There seemed to be no actual problem with stack growth because all the array sizes were small (< 10 ints?). > The propper fix is of course to use dynamic memory for these >arrays but doing that is much work and error prone as in front of every >return statement one has to add a free for it. Besides this I first I think dynamic allocation would be too slow here. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 8 04:56:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA07573 for freebsd-bugs-outgoing; Sat, 8 Aug 1998 04:56:22 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from ifi.uio.no (ifi.uio.no [129.240.64.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA07563; Sat, 8 Aug 1998 04:56:18 -0700 (PDT) (envelope-from dag-erli@ifi.uio.no) Received: from hel.ifi.uio.no (2602@hel.ifi.uio.no [129.240.64.91]) by ifi.uio.no (8.8.8/8.8.7/ifi0.2) with ESMTP id NAA18492; Sat, 8 Aug 1998 13:55:59 +0200 (MET DST) Received: (from dag-erli@localhost) by hel.ifi.uio.no ; Sat, 8 Aug 1998 13:55:59 +0200 (MET DST) Mime-Version: 1.0 To: alk@pobox.com Cc: des@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/7515 References: <199808071007.DAA24945@freefall.freebsd.org> <13771.37483.384533.312329@compound.east> Organization: University of Oslo, Department of Informatics X-url: http://www.stud.ifi.uio.no/~dag-erli/ X-other-addresses: 'finger dag-erli@ifi.uio.no' for a list X-disclaimer-1: The views expressed in this article are mine alone, and do X-disclaimer-2: not necessarily coincide with those of any organisation or X-disclaimer-3: company with which am or have been affiliated. X-Stop-Spam: http://www.cauce.org/ From: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) Date: 08 Aug 1998 13:55:57 +0200 In-Reply-To: Tony Kimball's message of "Fri, 7 Aug 1998 18:54:48 -0500 (CDT)" Message-ID: Lines: 23 X-Mailer: Gnus v5.5/Emacs 19.34 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by hub.freebsd.org id EAA07566 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Tony Kimball writes: > Quoth Dag-Erling C. Sm\xf8rgrav on Fri, 7 August: > : Synopsis: rcmds fail under recent /usr/sbin/ppp > : > : State-Changed-From-To: open-closed > : State-Changed-By: des > : State-Changed-When: Fri Aug 7 03:06:42 PDT 1998 > : State-Changed-Why: > : This is not a bug. Search the freebsd-hackers archive for the text > : "rsh and ppp" or "protocol failure in circuit setup". > It seems strange to me that you would say it is not a bug: > It worked in June, but now is broken. I can demonstrate a simple fix: > cd usr.sbin/ppp; cvs update -D 'June 21' ; sudo make install > Broken ~= bug. If I were you, I'd be surprised that it actually worked in June rather than surprised that it doesn't work now. rsh uses two TCP connections, one in each direction. You cannot expect that to work with IP aliasing. Disable aliasin, or use ssh if that is not an option. DES -- Dag-Erling Smørgrav - dag-erli@ifi.uio.no To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 8 06:43:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA14314 for freebsd-bugs-outgoing; Sat, 8 Aug 1998 06:43:41 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: (from alex@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA14297; Sat, 8 Aug 1998 06:43:39 -0700 (PDT) (envelope-from alex) Date: Sat, 8 Aug 1998 06:43:39 -0700 (PDT) From: Alex Nash Message-Id: <199808081343.GAA14297@hub.freebsd.org> To: alex, freebsd-bugs, alex Subject: Re: bin/7524 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: 'at' is broken if the year is not specified Responsible-Changed-From-To: freebsd-bugs->alex Responsible-Changed-By: alex Responsible-Changed-When: Sat Aug 8 06:42:46 PDT 1998 Responsible-Changed-Why: Probably my fault. I'll look into it. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 8 07:11:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA16307 for freebsd-bugs-outgoing; Sat, 8 Aug 1998 07:11:41 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: (from alex@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA16273; Sat, 8 Aug 1998 07:11:32 -0700 (PDT) (envelope-from alex) Date: Sat, 8 Aug 1998 07:11:32 -0700 (PDT) From: Alex Nash Message-Id: <199808081411.HAA16273@hub.freebsd.org> To: ziggy@ryan.org, alex, freebsd-bugs Subject: Re: misc/7525 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: spelling mistake State-Changed-From-To: open-closed State-Changed-By: alex State-Changed-When: Sat Aug 8 07:10:43 PDT 1998 State-Changed-Why: Fixed in src/share/examples/lkm/misc/module/miscmod.c revs: 1.7 (-current) and 1.4.2.1 (-stable). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 8 07:21:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA17175 for freebsd-bugs-outgoing; Sat, 8 Aug 1998 07:21:06 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: (from alex@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA17144; Sat, 8 Aug 1998 07:21:00 -0700 (PDT) (envelope-from alex) Date: Sat, 8 Aug 1998 07:21:00 -0700 (PDT) From: Alex Nash Message-Id: <199808081421.HAA17144@hub.freebsd.org> To: ryan@ryan.org, alex, freebsd-bugs Subject: Re: misc/7526 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: typo in lkm example State-Changed-From-To: open-closed State-Changed-By: alex State-Changed-When: Sat Aug 8 07:20:19 PDT 1998 State-Changed-Why: Fixed in src/share/examples/lkm/misc/module/miscmod.c revs: 1.8 (-current) and 1.4.2.2 (-stable). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 8 17:00:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA10801 for freebsd-bugs-outgoing; Sat, 8 Aug 1998 17:00:26 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA10665; Sat, 8 Aug 1998 16:59:33 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA14890; Sat, 8 Aug 1998 16:59:31 -0700 (PDT) Date: Sat, 8 Aug 1998 16:59:31 -0700 (PDT) Message-Id: <199808082359.QAA14890@freefall.freebsd.org> To: steve@FreeBSD.ORG, gnats-admin@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: pending/7510 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Old Synopsis: New Synopsis: udated syscons and vidcontrol to support 90 column text modes Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: steve Responsible-Changed-When: Sat Aug 8 16:55:49 PDT 1998 Responsible-Changed-Why: Misfiled PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 8 20:37:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA05190 for freebsd-bugs-outgoing; Sat, 8 Aug 1998 20:37:54 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA05184; Sat, 8 Aug 1998 20:37:51 -0700 (PDT) (envelope-from jdp@FreeBSD.org) From: John Polstra Received: (from jdp@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA29117; Sat, 8 Aug 1998 20:37:46 -0700 (PDT) Date: Sat, 8 Aug 1998 20:37:46 -0700 (PDT) Message-Id: <199808090337.UAA29117@freefall.freebsd.org> To: jdp@FreeBSD.ORG, jdp@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: ports/7468 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Error building modula-3 on dual-processor kernel Responsible-Changed-From-To: jdp->freebsd-bugs Responsible-Changed-By: jdp Responsible-Changed-When: Sat Aug 8 20:35:50 PDT 1998 Responsible-Changed-Why: There is no way this is a bug in the port or in Modula-3. It is a kernel bug. It really belongs in the kern category, but I don't know how to refile it. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 8 22:09:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA11431 for freebsd-bugs-outgoing; Sat, 8 Aug 1998 22:09:33 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA11426 for ; Sat, 8 Aug 1998 22:09:32 -0700 (PDT) (envelope-from rha@nodelay.com) Received: from candra.online-systems.net ([12.14.24.75]) by freefall.freebsd.org (8.8.8/8.8.5) with ESMTP id WAA17843 for ; Sat, 8 Aug 1998 22:09:30 -0700 (PDT) Received: from virtual.nodelay.com ([12.14.24.80]) by candra.online-systems.net (8.9.1/8.9.0) with SMTP id AAA16492; Sun, 9 Aug 1998 00:50:51 -0400 (EDT) Date: Sun, 9 Aug 1998 00:50:51 -0400 (EDT) Message-Id: <199808090450.AAA16492@candra.online-systems.net> X-Sender: rha@nodelay.com X-Mailer: Windows Eudora Light Version 3.0.1 (32) From: Susan Walker Reply-To: rha@nodelay.com To: (Dear Friend) Subject: ADV: 5 Cents/Min. Long Distance - U.S. AND International calls! Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org We are NOW offering Long Distance service from your home phone at ONLY 5 CENTS PER MINUTE to ALL USA and many international locations, such as Canada, France, United Kingdom, Australia, Germany, Belgium, Netherlands, New Zealand, and Sweden. These rates apply at ALL TIMES through October 1. After October 1, the domestic rate will still be only 7 cents per minute and the international rates will be extremely competitive. We also offer "cardless" re-chargeable phone cards with FREE same-day delivery. We are offering a FREE phone card to the first 500 people who request one. When the FREE time is used up, you can order additional calling time 24/7 at ONLY 15 cents per minute. To request your FREE phone card or information on our Long Distance service, send an e-mail request to: rha@nodelay.com Be sure to specify which item(s) you are interested in. Dealer inquiries are also invited. EduComm, Inc. 6629 West Lincoln Highway Crown Point, Indiana 46307 Telephone: (219) 864-2501 --------------- To never receive commercial emails or offerings from any vendor please reply with 'REMOVE' in the subject field. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 8 22:49:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA14495 for freebsd-bugs-outgoing; Sat, 8 Aug 1998 22:49:25 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from pobox.com ([208.141.230.133]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA14488 for ; Sat, 8 Aug 1998 22:49:23 -0700 (PDT) (envelope-from alk@pobox.com) Received: (from alk@localhost) by pobox.com (8.8.8/8.7.3) id AAA09685; Sun, 9 Aug 1998 00:50:03 -0500 (CDT) From: Tony Kimball MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Date: Sun, 9 Aug 1998 00:50:02 -0500 (CDT) X-Face: O9M"E%K;(f-Go/XDxL+pCxI5*gr[=FN@Y`cl1.Tn Reply-To: alk@pobox.com To: dag-erli@ifi.uio.no Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: bin/7515 References: <199808071007.DAA24945@freefall.freebsd.org> <13771.37483.384533.312329@compound.east> X-Mailer: VM 6.43 under 20.4 "Emerald" XEmacs Lucid Message-ID: <13773.14106.465247.203829@compound.east> Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by hub.freebsd.org id WAA14490 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Quoth dag-erli@ifi.uio.no (Dag-Erling Coidan Smørgrav ) on , 8 August: : : If I were you, I'd be surprised that it actually worked in June rather : than surprised that it doesn't work now. rsh uses two TCP connections, : one in each direction. You cannot expect that to work with IP : aliasing. Disable aliasin, or use ssh if that is not an option. : A regression is a bug. It worked in June, and it works today, if you back out the changes which caused the regression, the bug. Frankly I find this discussion pathetic. Why bother to report bugs if they are not going to be treated upon their merits? Shouldn't you be ashamed to treat the person who developed and maintains this functionality in ppp with such disrespect as to direct this information away from him? I shan't say anything more on this subject in future. I feel that reason is of no avail, and that such obduracy is likely to incite improper emotion. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message