From owner-freebsd-bugs Sun Mar 21 3:10:20 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D6A2014CB4 for ; Sun, 21 Mar 1999 03:10:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id DAA19772; Sun, 21 Mar 1999 03:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freebie.dcfinc.com (freebie.dcfinc.com [138.113.5.128]) by hub.freebsd.org (Postfix) with ESMTP id F0C0A14BE2 for ; Sun, 21 Mar 1999 03:07:56 -0800 (PST) (envelope-from chad@freebie.dcfinc.com) Received: (from chad@localhost) by freebie.dcfinc.com (8.8.7/8.8.3a) id EAA04417; Sun, 21 Mar 1999 04:07:37 -0700 (MST) Message-Id: <199903211107.EAA04417@freebie.dcfinc.com> Date: Sun, 21 Mar 1999 04:07:37 -0700 (MST) From: chad@anasazi.com Reply-To: chad@dcfinc.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/10705: enhancement to "newsyslog" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10705 >Category: bin >Synopsis: enhancement to "newsyslog" >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Mar 21 03:10:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Chad R. Larson >Release: FreeBSD 2.2-STABLE i386 >Organization: DCF, Inc. >Environment: Any 2.2-STABLE system >Description: The current "newsyslog" program is useful for rolling log files other than those run by syslog. But some of those uses do not involve a logging daemon, for example, keeping logs of cvsup operations, or the output of "make". However, newsyslog as now delivered will try to signal some daemon at the conclusion of processing each line in its config file. You can avoid the signal by intentionally creating an invalid "path to pid" file, but that is a kludge and you have to put up with error messages. >How-To-Repeat: >Fix: I've added another option switch to the command line of newsyslog that supresses the attempt to send a signal. Here are patches... -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= *** newsyslog.8.old Sun Mar 21 03:50:41 1999 --- newsyslog.8 Sun Mar 21 03:51:18 1999 *************** *** 1,7 **** .\" This file contains changes from the Open Software Foundation. .\" .\" from: @(#)newsyslog.8 ! .\" $Id: newsyslog.8,v 1.1 1999/03/19 21:35:16 toor Exp $ .\" .\" Copyright 1988, 1989 by the Massachusetts Institute of Technology .\" --- 1,7 ---- .\" This file contains changes from the Open Software Foundation. .\" .\" from: @(#)newsyslog.8 ! .\" $Id: newsyslog.8,v 1.2 1999/03/19 23:52:10 toor Exp $ .\" .\" Copyright 1988, 1989 by the Massachusetts Institute of Technology .\" *************** *** 25,31 **** .Nd maintain system log files to manageable sizes .Sh SYNOPSIS .Nm newsyslog ! .Op Fl Fnrv .Op Fl f Ar config_file .Sh DESCRIPTION .Nm Newsyslog --- 25,31 ---- .Nd maintain system log files to manageable sizes .Sh SYNOPSIS .Nm newsyslog ! .Op Fl Fnrsv .Op Fl f Ar config_file .Sh DESCRIPTION .Nm Newsyslog *************** *** 149,154 **** --- 149,158 ---- .Nm not to trim the logs, but to print out what it would do if this option were not specified. + .It Fl s + Tell + .Nm + not to attempt to signal any daemon. .It Fl r Remove the restriction that .Nm *** newsyslog.c.old Sun Mar 21 03:57:51 1999 --- newsyslog.c Sun Mar 21 03:51:18 1999 *************** *** 27,33 **** #ifndef lint static const char rcsid[] = ! "$Id: newsyslog.c,v 1.1 1999/03/19 21:35:16 toor Exp $"; #endif /* not lint */ #ifndef CONF --- 27,33 ---- #ifndef lint static const char rcsid[] = ! "$Id: newsyslog.c,v 1.3 1999/03/21 10:45:25 chad Exp $"; #endif /* not lint */ #ifndef CONF *************** *** 90,95 **** --- 90,96 ---- int verbose = 0; /* Print out what's going on */ int needroot = 1; /* Root privs are necessary */ int noaction = 0; /* Don't do anything, just show it */ + int nokill = 0; /* Don't signal the syslog daemon */ int force = 0; /* Force the trim no matter what*/ char *conf = CONF; /* Configuration file to use */ time_t timenow; *************** *** 218,223 **** --- 219,227 ---- case 'r': needroot = 0; break; + case 's': + nokill++; + break; case 'v': verbose++; break; *************** *** 234,240 **** static void usage() { ! fprintf(stderr, "usage: newsyslog [-Fnrv] [-f config-file]\n"); exit(1); } --- 238,244 ---- static void usage() { ! fprintf(stderr, "usage: newsyslog [-Fnrsv] [-f config-file]\n"); exit(1); } *************** *** 523,531 **** pid = 0; need_notification = notified = 0; ! if (pid_file != NULL) { ! need_notification = 1; ! pid = get_pid(pid_file); } if (pid) { --- 527,537 ---- pid = 0; need_notification = notified = 0; ! if (nokill == 0) { ! if (pid_file != NULL) { ! need_notification = 1; ! pid = get_pid(pid_file); ! } } if (pid) { -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 21 9:10:20 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 56DB115022 for ; Sun, 21 Mar 1999 09:10:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id JAA99874; Sun, 21 Mar 1999 09:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 9BF2C14BDE; Sun, 21 Mar 1999 09:06:36 -0800 (PST) Message-Id: <19990321170636.9BF2C14BDE@hub.freebsd.org> Date: Sun, 21 Mar 1999 09:06:36 -0800 (PST) From: bessel1@home.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: i386/10709: wdc0 not found at 0x1f0 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10709 >Category: i386 >Synopsis: wdc0 not found at 0x1f0 >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 Mar 21 09:10:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Mark Wilding >Release: 3.3.1-STABLE >Organization: >Environment: Can install, so no uname possible >Description: I have a pentium 120 with: 32MB ram 1 1.6GB IDE hard drive from Western Digital set as master on the primary controller. 1 Floppy drive 1 video card NO CDROM During installation boot up, the hard drive can not be found with the message: wdc0 not found at 0x1f0 Works okay in Windows95/WindowsNT. The primary controller is using IRQ 14, at 0x1f0 which is where FreeBSD is probing. >How-To-Repeat: Try to install. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 21 11:32:50 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from localhost.zilker.net (jump-tnt-0025.customer.jump.net [207.8.127.25]) by hub.freebsd.org (Postfix) with ESMTP id D488D14C3B for ; Sun, 21 Mar 1999 11:32:45 -0800 (PST) (envelope-from marquard@zilker.net) Received: (from marquard@localhost) by localhost.zilker.net (8.9.2/8.8.8) id NAA02665; Sun, 21 Mar 1999 13:32:24 -0600 (CST) (envelope-from marquard) To: freebsd-bugs@FreeBSD.ORG Subject: Re: kern/10663: hpscan doesn't like 3.1's pt device References: <199903210630.WAA09874@freefall.freebsd.org> From: Dave Marquardt Date: 21 Mar 1999 13:31:43 -0600 In-Reply-To: Andrew Cagney's message of "Sat, 20 Mar 1999 22:30:02 -0800 (PST)" Message-ID: <85yakqskps.fsf@localhost.zilker.net> Lines: 14 X-Mailer: Gnus v5.5/XEmacs 20.4 - "Emerald" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Andrew Cagney writes: > Workaround: > > Switch to the ``sane'' scanner but then find that that has > other problems (do I really need ``chmod a+rw /dev/xpt0''? ;-). No, just create a `scanner' group, put yourself in it, then chgrp scanner /dev/xpt0 chmod 660 /dev/xpt0 Also, you'll probably use /dev/pass0 or something similar. -Dave To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 21 12: 0:20 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 55308151BA for ; Sun, 21 Mar 1999 12:00:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id MAA11969; Sun, 21 Mar 1999 12:00:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from holly.dyndns.org (ip202.houston5.tx.pub-ip.psi.net [38.11.7.202]) by hub.freebsd.org (Postfix) with ESMTP id C05F214C3B for ; Sun, 21 Mar 1999 11:54:19 -0800 (PST) (envelope-from chris@holly.dyndns.org) Received: (from chris@localhost) by holly.dyndns.org (8.9.3/8.9.2) id NAA04416; Sun, 21 Mar 1999 13:55:49 -0600 (CST) (envelope-from chris) Message-Id: <199903211955.NAA04416@holly.dyndns.org> Date: Sun, 21 Mar 1999 13:55:49 -0600 (CST) From: Chris Costello Reply-To: chris@calldei.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/10711: [Patch] sysinstall does not use the proper fs name for 'file system' option Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10711 >Category: bin >Synopsis: [Patch] sysinstall does not use the proper fs name for 'file system' option >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Mar 21 12:00:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Chris Costello >Release: FreeBSD 4.0-CURRENT i386 >Organization: >Environment: FreeBSD 4.0-CURRENT, cvsupped March 20. >Description: When installing, for example, packages, from a mounted file system, sysinstall assumes the file system is ufs. >How-To-Repeat: Insert a CD with the packages `tree'. Run sysinstall. Under packages, select, for media, "File System" and put the mount point of your CDROM where asked. When installing a package, it says 'installing [...] from ufs' >Fix: Patch for media.c: --- media.c.orig Sun Mar 21 13:41:59 1999 +++ media.c Sun Mar 21 13:44:35 1999 @@ -39,6 +39,7 @@ #include #include #include +#include #include #include #include @@ -440,6 +441,7 @@ mediaSetUFS(dialogMenuItem *self) { static Device ufsDevice; + struct statfs st; char *cp; mediaClose(); @@ -448,7 +450,10 @@ "containing the FreeBSD distribution files:", 0); if (!cp) return DITEM_FAILURE; - strcpy(ufsDevice.name, "ufs"); + + if (statfs(cp, &st)) + return DITEM_FAILURE; + strcpy(ufsDevice.name, st.f_fstypename); ufsDevice.type = DEVICE_TYPE_UFS; ufsDevice.init = dummyInit; ufsDevice.get = mediaGetUFS; >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 21 15:20:20 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3DF1B14E11 for ; Sun, 21 Mar 1999 15:20:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id PAA22242; Sun, 21 Mar 1999 15:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id EC32714BE2; Sun, 21 Mar 1999 15:19:29 -0800 (PST) Message-Id: <19990321231929.EC32714BE2@hub.freebsd.org> Date: Sun, 21 Mar 1999 15:19:29 -0800 (PST) From: adam@whizkidtech.net To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: conf/10715: Console font loading problem at boot time Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10715 >Category: conf >Synopsis: Console font loading problem at boot time >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Mar 21 15:20:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: G. Adam Stanislav >Release: 3.1-RELEASE #0 >Organization: Whiz Kid Technomagic >Environment: FreeBSD dunaj.whizkidtech.net 3.1-RELEASE FreeBSD 3.1-RELEASE #0: Mon Feb 15 11:08:08 GMT 1999 jkh@usw3.freebsd.org:/usr/src/sys/compile/GENERIC i386 >Description: When rc.conf contains screen fonts to be loaded, it loads them improperly. I noticed it when I developed a Central-European key map, and type characters number 208, 209, and 211 (0-based). The screen font is loaded, and everything shows up properly, except those three characters. I have to manually reload the font with vidcontrol -f 8x16 iso02-8x16.fnt . After that, I can see all characters properly. >How-To-Repeat: Place iso02-8x16 in your rc.conf as your default 8x16 console font. Reboot. Type Alt-208, Alt-209, Alt-211 using your numeric keypad. You will either get a blank space, a wrong character or complete junk. Run vidcontrol -f 8x16 iso02-8x16.fnt, then type those characters again. This time, they will appear on your screen properly. (This is using a local console, I have not tried it remotely -- I am not equiped for that). >Fix: As an internim fix, I use vidcontrol to load the font manually after booting. Incidentally, I tried to use vidcontrol from a start-up script, and it did not work... I have to do it manually after booting and logging on. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 21 15:49:43 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2E4CB152FF; Sun, 21 Mar 1999 15:48:28 -0800 (PST) (envelope-from jkh@FreeBSD.org) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id PAA23789; Sun, 21 Mar 1999 15:48:10 -0800 (PST) (envelope-from jkh@FreeBSD.org) Date: Sun, 21 Mar 1999 15:48:10 -0800 (PST) From: Message-Id: <199903212348.PAA23789@freefall.freebsd.org> To: mwm@phone.net, jkh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/9429 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: dump -w tends to run dumps a day later than expected State-Changed-From-To: open->closed State-Changed-By: jkh State-Changed-When: Sun Mar 21 15:45:03 PST 1999 State-Changed-Why: Committed to -current; will be merged into -stable in a few days if no one finds cause to object. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 21 17: 1:55 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E53DD1533E; Sun, 21 Mar 1999 17:01:53 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id RAA34143; Sun, 21 Mar 1999 17:01:35 -0800 (PST) (envelope-from steve@FreeBSD.org) Date: Sun, 21 Mar 1999 17:01:35 -0800 (PST) From: Message-Id: <199903220101.RAA34143@freefall.freebsd.org> To: steve@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: pending/10691 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Connections closed when trying to send more than 300 Kb Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: steve Responsible-Changed-When: Sun Mar 21 17:01:17 PST 1999 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 Sun Mar 21 17: 3:25 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 043B61533E; Sun, 21 Mar 1999 17:03:23 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id RAA34427; Sun, 21 Mar 1999 17:03:05 -0800 (PST) (envelope-from steve@FreeBSD.org) Date: Sun, 21 Mar 1999 17:03:05 -0800 (PST) From: Message-Id: <199903220103.RAA34427@freefall.freebsd.org> To: steve@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: pending/10599 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH included]malloc/free breaks in certain threaded cases Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: steve Responsible-Changed-When: Sun Mar 21 17:02:28 PST 1999 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 Sun Mar 21 17:25:15 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7F6B014BCD; Sun, 21 Mar 1999 17:25:14 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id RAA37097; Sun, 21 Mar 1999 17:24:56 -0800 (PST) (envelope-from steve@FreeBSD.org) Date: Sun, 21 Mar 1999 17:24:56 -0800 (PST) From: Message-Id: <199903220124.RAA37097@freefall.freebsd.org> To: nsayer@quack.kfu.com, steve@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/6256 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: SI driver - new T225 download code State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun Mar 21 17:24:36 PST 1999 State-Changed-Why: Superceded by kern/10674. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 21 18:10:27 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C4F681546B for ; Sun, 21 Mar 1999 18:10:20 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id SAA41708; Sun, 21 Mar 1999 18:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from zorch.sf-bay.org (zorch.sf-bay.org [192.150.103.17]) by hub.freebsd.org (Postfix) with ESMTP id DB15A1524D for ; Sun, 21 Mar 1999 18:09:35 -0800 (PST) (envelope-from scott@zorch.sf-bay.org) Received: from zorch.sf-bay.org (uucp@localhost) by zorch.sf-bay.org (8.8.8/8.8.2) with UUCP id SAA03564 for FreeBSD-gnats-submit@freebsd.org; Sun, 21 Mar 1999 18:09:12 -0800 (PST) Received: (from scott@localhost) by zork.sf-bay.org (8.8.8/8.8.8) id KAA04391; Mon, 22 Mar 1999 10:06:08 +0800 (CST) (envelope-from scott) Message-Id: <199903220206.KAA04391@zork.sf-bay.org> Date: Mon, 22 Mar 1999 10:06:08 +0800 (CST) From: Scott Hazen Mueller Reply-To: scott@zorch.sf-bay.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/10720: bug in sed context address handling Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10720 >Category: bin >Synopsis: bug in sed context address handling >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 Mar 21 18:10:02 PST 1999 >Closed-Date: >Last-Modified: >Originator: Scott Hazen Mueller >Release: FreeBSD 2.2.8-STABLE i386 >Organization: Asia Online >Environment: >Description: According to sed(1) A command line with two addresses selects the inclusive range from the first pattern space that matches the first address through the next pat- tern space that matches the second. (If the second address is a number less than or equal to the line number first selected, only that line is selected.) Starting at the first line following the selected range, sed starts looking again for the first address. and an address is defined as An address is not required, but if specified must be a number (that counts input lines cumulatively across input files), a dollar (``$'') character that addresses the last line of input, or a context address (which consists of a regular expression preceded and followed by a delim- iter). However, the sed behaves differently if the second address of the range is the same as the first and the addresses were REs rather than numbers. That is, given this input: modbee.com | Merced hospital fills cultural prescription
sed -n -e "3,3p" modbee.com | Merced hospital fills cultural prescription but sed -n -e "//, /<\/TITLE>/ p" <input produces <TITLE>modbee.com | Merced hospital fills cultural prescription
i.e. everything from the first match through EOF. Note that sed works correctly if the second RE is on a different line. >How-To-Repeat: See above. >Fix: I don't have a fix. I haven't tried a workaround yet, but it should be possible to code a script that checks whether the REs are on the same line or not and invoke the 1 address form if they are and the 2 address form if they are not. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 21 18:43:39 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from altair.mayn.de (altair.mayn.de [194.95.209.137]) by hub.freebsd.org (Postfix) with ESMTP id 7955714ED8 for ; Sun, 21 Mar 1999 18:43:35 -0800 (PST) (envelope-from mkb@altair.mayn.de) Received: from altair (IDENT:mkb@localhost [127.0.0.1]) by altair.mayn.de (8.9.1a/8.9.1) with ESMTP id DAA14820; Mon, 22 Mar 1999 03:41:09 +0100 (CET) Message-Id: <199903220241.DAA14820@altair.mayn.de> X-Mailer: exmh version 2.0.2 2/24/98 To: scott@zorch.sf-bay.org Cc: freebsd-bugs@freebsd.org Subject: Re: bin/10720: bug in sed context address handling In-Reply-To: Your message of "Mon, 22 Mar 1999 10:06:08 +0800." <199903220206.KAA04391@zork.sf-bay.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 22 Mar 1999 03:41:08 +0100 From: Matthias Buelow Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Scott Hazen Mueller wrote: >>Number: 10720 >>Synopsis: bug in sed context address handling > >According to sed(1) > > A command line with two addresses selects the inclusive range from the > first pattern space that matches the first address through the next pat- ^^^^ > tern space that matches the second. (If the second address is a number "Next" is the keyword here. Sed is behaving correctly as documented (the Digital UNIX sed has the same "quirk", btw.) The first address matches the entire line, then sed reads in the next and starts looking for the second match. Since none is found, it selects all until the end of file. - mkb To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 21 18:51:40 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from zorch.sf-bay.org (zorch.sf-bay.org [192.150.103.17]) by hub.freebsd.org (Postfix) with ESMTP id 5C92A14BE9 for ; Sun, 21 Mar 1999 18:51:39 -0800 (PST) (envelope-from scott@zorch.sf-bay.org) Received: from zorch.sf-bay.org (uucp@localhost) by zorch.sf-bay.org (8.8.8/8.8.2) with UUCP id SAA07184; Sun, 21 Mar 1999 18:51:12 -0800 (PST) Received: (from scott@localhost) by zork.sf-bay.org (8.8.8/8.8.8) id KAA07518 for mkb@altair.mayn.de; Mon, 22 Mar 1999 10:50:04 +0800 (CST) (envelope-from scott) Date: Mon, 22 Mar 1999 10:50:04 +0800 (CST) From: Scott Hazen Mueller Message-Id: <199903220250.KAA07518@zork.sf-bay.org> Subject: Re: bin/10720: bug in sed context address handling To: mkb@altair.mayn.de, freebsd-bugs@freebsd.org X-Envelope-To: mkb@altair.mayn.de Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Then I guess I'll have to file a doco bug report, because the meaning of that sentence is far from clear. >From mkb@altair.mayn.de Mon Mar 22 10:46:13 1999 >From: Matthias Buelow >Date: Mon, 22 Mar 1999 03:41:08 +0100 >To: scott@zorch.sf-bay.org >Cc: freebsd-bugs@freebsd.org >Subject: Re: bin/10720: bug in sed context address handling >Message-Id: <199903220241.DAA14820@altair.mayn.de> >Content-Type: text/plain; charset=us-ascii >Mime-Version: 1.0 >Scott Hazen Mueller wrote: >>>Number: 10720 >>>Synopsis: bug in sed context address handling >> >>According to sed(1) >> >> A command line with two addresses selects the inclusive range from the >> first pattern space that matches the first address through the next pat- > ^^^^ >> tern space that matches the second. (If the second address is a number >"Next" is the keyword here. Sed is behaving correctly as documented >(the Digital UNIX sed has the same "quirk", btw.) >The first address matches the entire line, then sed reads in the next >and starts looking for the second match. Since none is found, it selects >all until the end of file. > - mkb To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 21 18:57:37 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5B3A614BE9; Sun, 21 Mar 1999 18:57:36 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id SAA45091; Sun, 21 Mar 1999 18:57:18 -0800 (PST) (envelope-from steve@FreeBSD.org) Date: Sun, 21 Mar 1999 18:57:18 -0800 (PST) From: Message-Id: <199903220257.SAA45091@freefall.freebsd.org> To: scott@zorch.sf-bay.org, steve@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/10720 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: bug in sed context address handling State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun Mar 21 18:54:13 PST 1999 State-Changed-Why: As Matthia Buelow notes, sed(1) is behaving correctly. Originator will file a docs PR w/patch to reword the sed(1) manpage to be less confusing. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 21 20: 0:19 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1405414F28 for ; Sun, 21 Mar 1999 20:00:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id UAA50963; Sun, 21 Mar 1999 20:00:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from holly.dyndns.org (ip202.houston5.tx.pub-ip.psi.net [38.11.7.202]) by hub.freebsd.org (Postfix) with ESMTP id 8399714F05 for ; Sun, 21 Mar 1999 19:58:27 -0800 (PST) (envelope-from chris@holly.dyndns.org) Received: (from chris@localhost) by holly.dyndns.org (8.9.3/8.9.2) id VAA05855; Sun, 21 Mar 1999 21:59:40 -0600 (CST) (envelope-from chris) Message-Id: <199903220359.VAA05855@holly.dyndns.org> Date: Sun, 21 Mar 1999 21:59:40 -0600 (CST) From: Chris Costello Reply-To: chris@calldei.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: i386/10722: [Patch] typo in sys/i386/eisa/bt_eisa.c Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10722 >Category: i386 >Synopsis: [Patch] typo in sys/i386/eisa/bt_eisa.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: Sun Mar 21 20:00:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Chris Costello >Release: FreeBSD 4.0-CURRENT i386 >Organization: I'm never organized. >Environment: FreeBSD 4.0-CURRENT, CVSupped March 20. >Description: bt driver misspells 'failed' >How-To-Repeat: use the bt driver where no bt device exists >Fix: --- sys/i386/eisa/bt_eisa.c.orig Sun Mar 21 21:55:15 1999 +++ sys/i386/eisa/bt_eisa.c Sun Mar 21 21:55:20 1999 @@ -232,7 +232,7 @@ } if (bt_port_probe(bt, &info) != 0) { - printf("bt_eisa_probe: Probe failled for " + printf("bt_eisa_probe: Probe failed for " "card at slot 0x%x\n", e_dev->ioconf.slot); } else { eisa_add_iospace(e_dev, iobase, iosize, RESVADDR_NONE); >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 21 20:40:35 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 811F415211 for ; Sun, 21 Mar 1999 20:40:20 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id UAA54702; Sun, 21 Mar 1999 20:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Sun, 21 Mar 1999 20:40:02 -0800 (PST) Message-Id: <199903220440.UAA54702@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Kazutaka YOKOTA Subject: Re: conf/10715: Console font loading problem at boot time Reply-To: Kazutaka YOKOTA Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR conf/10715; it has been noted by GNATS. From: Kazutaka YOKOTA To: adam@whizkidtech.net Cc: freebsd-gnats-submit@freebsd.org, yokota@zodiac.mech.utsunomiya-u.ac.jp Subject: Re: conf/10715: Console font loading problem at boot time Date: Mon, 22 Mar 1999 13:39:32 +0900 >>Number: 10715 >>Category: conf >>Synopsis: Console font loading problem at boot time >>Confidential: no >>Severity: non-critical >>Priority: low >>Responsible: freebsd-bugs [...] >>Description: >When rc.conf contains screen fonts to be loaded, it loads them improperly. I n >oticed it when I developed a Central-European key map, and type characters num >ber 208, 209, and 211 (0-based). The screen font is loaded, and everything sho >ws up properly, except those three characters. I have to manually reload the f >ont with vidcontrol -f 8x16 iso02-8x16.fnt . After that, I can see all charact >ers properly. >>How-To-Repeat: >Place iso02-8x16 in your rc.conf as your default 8x16 console font. Reboot. Ty >pe Alt-208, Alt-209, Alt-211 using your numeric keypad. You will either get a >blank space, a wrong character or complete junk. Run vidcontrol -f 8x16 iso02- >8x16.fnt, then type those characters again. This time, they will appear on you >r screen properly. (This is using a local console, I have not tried it remotel >y -- I am not equiped for that). You are using the mouse cursor in the text console, right? This is a known problem when you enable the mouse cursor. The console driver uses font for the character codes 208 though 211 to display the mouse cursor. To avoid this problem, you can use the following option in your kernel configuration file. options "SC_MOUSE_CHAR=3" Add the above line to your kernel configuration file and rebuild the kernel, then the console driver will use font for the character codes 3 thourgh 6 to display the mouse cursor. The characters 208 through 211 should be shown properly. Kazu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 22 0:23: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from rucus.ru.ac.za (rucus.ru.ac.za [146.231.29.2]) by hub.freebsd.org (Postfix) with SMTP id 3FEE914F9E for ; Mon, 22 Mar 1999 00:22:53 -0800 (PST) (envelope-from nbm@rucus.ru.ac.za) Received: (qmail 46005 invoked by uid 1003); 22 Mar 1999 10:25:05 -0000 Date: Mon, 22 Mar 1999 10:25:05 +0000 From: Neil Blakey-Milner To: billf@FreeBSD.ORG Cc: sopel@hood.1lo.lublin.pl, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/9758 Message-ID: <19990322102505.A45353@rucus.ru.ac.za> References: <199903200352.TAA29038@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.1i In-Reply-To: <199903200352.TAA29038@freefall.freebsd.org>; from billf@FreeBSD.ORG on Fri, Mar 19, 1999 at 07:52:05PM -0800 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri 1999-03-19 (19:52), billf@FreeBSD.ORG wrote: > I cannot reproduce this bug locally. > > Are you sure /etc/nologin really exists? > Are you sure if you changed inetd.conf that you reloaded inetd? > > Please respond with any error messages. > I doubt this is a bug, but if this PR gets any feedback, I'll look into it. Is he sure his /etc/login.conf sets nologin=/etc/nologin? By default it is set to /var/run/nologin. Neil -- Neil Blakey-Milner nbm@rucus.ru.ac.za To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 22 5: 0:21 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A5B8A14C42 for ; Mon, 22 Mar 1999 05:00:20 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id FAA91561; Mon, 22 Mar 1999 05:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Mon, 22 Mar 1999 05:00:02 -0800 (PST) Message-Id: <199903221300.FAA91561@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Daniel C. Sobral" Subject: Re: conf/10715: Console font loading problem at boot time Reply-To: "Daniel C. Sobral" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR conf/10715; it has been noted by GNATS. From: "Daniel C. Sobral" To: adam@whizkidtech.net Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: conf/10715: Console font loading problem at boot time Date: Mon, 22 Mar 1999 21:48:40 +0900 This sounds suspiciously like the characters being used by the mouse code. Do you have mouse enabled? adam@whizkidtech.net wrote: > > >Number: 10715 > >Category: conf > >Synopsis: Console font loading problem at boot time > >Confidential: no > >Severity: non-critical > >Priority: low > >Responsible: freebsd-bugs > >State: open > >Quarter: > >Keywords: > >Date-Required: > >Class: sw-bug > >Submitter-Id: current-users > >Arrival-Date: Sun Mar 21 15:20:00 PST 1999 > >Closed-Date: > >Last-Modified: > >Originator: G. Adam Stanislav > >Release: 3.1-RELEASE #0 > >Organization: > Whiz Kid Technomagic > >Environment: > FreeBSD dunaj.whizkidtech.net 3.1-RELEASE FreeBSD 3.1-RELEASE #0: Mon Feb 15 11:08:08 GMT 1999 jkh@usw3.freebsd.org:/usr/src/sys/compile/GENERIC i386 > > >Description: > When rc.conf contains screen fonts to be loaded, it loads them improperly. I noticed it when I developed a Central-European key map, and type characters number 208, 209, and 211 (0-based). The screen font is loaded, and everything shows up properly, except those three characters. I have to manually reload the font with vidcontrol -f 8x16 iso02-8x16.fnt . After that, I can see all characters properly. > >How-To-Repeat: > Place iso02-8x16 in your rc.conf as your default 8x16 console font. Reboot. Type Alt-208, Alt-209, Alt-211 using your numeric keypad. You will either get a blank space, a wrong character or complete junk. Run vidcontrol -f 8x16 iso02-8x16.fnt, then type those characters again. This time, they will appear on your screen properly. (This is using a local console, I have not tried it remotely -- I am not equiped for that). > >Fix: > As an internim fix, I use vidcontrol to load the font manually after booting. Incidentally, I tried to use vidcontrol from a start-up script, and it did not work... I have to do it manually after booting and logging on. > > >Release-Note: > >Audit-Trail: > >Unformatted: > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-bugs" in the body of the message -- Daniel C. Sobral (8-DCS) dcs@newsguy.com dcs@freebsd.org "What happened?" "It moved, sir!" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 22 5: 6:41 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from hood.1lo.lublin.pl (hood.1lo.lublin.pl [193.59.31.126]) by hub.freebsd.org (Postfix) with ESMTP id 6F008150B8; Mon, 22 Mar 1999 05:06:34 -0800 (PST) (envelope-from sopel@hood.1lo.lublin.pl) Received: from localhost (sopel@localhost) by hood.1lo.lublin.pl (8.9.2/8.9.2) with ESMTP id OAA10742; Mon, 22 Mar 1999 14:06:57 GMT (envelope-from sopel@hood.1lo.lublin.pl) Date: Mon, 22 Mar 1999 14:06:57 +0000 (GMT) From: Wojtek Sobczuk To: Neil Blakey-Milner Cc: billf@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/9758 In-Reply-To: <19990322102505.A45353@rucus.ru.ac.za> 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 On Mon, 22 Mar 1999, Neil Blakey-Milner wrote: > Is he sure his /etc/login.conf sets nologin=/etc/nologin? By default it is > set to /var/run/nologin. > right. i didn't know that. sorry for the fuss. greetings, Wojtek To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 22 5:30:21 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EC2131521E for ; Mon, 22 Mar 1999 05:30:20 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id FAA94325; Mon, 22 Mar 1999 05:30:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Mon, 22 Mar 1999 05:30:02 -0800 (PST) Message-Id: <199903221330.FAA94325@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: gouriev@usa.net Subject: Re:kern/10132:unabletorecordkernel-cchanges Reply-To: gouriev@usa.net Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/10132; it has been noted by GNATS. From: gouriev@usa.net To: freebsd-gnats-submit@freebsd.org, taa@kombank.lipetsk.su Cc: Subject: Re:kern/10132:unabletorecordkernel-cchanges Date: Mon, 22 Mar 1999 16:15:48 +0300 (MSK) Instructions in ERRATA.TXT file could not help to solve 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 Mar 22 6:10:19 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4104914C8D for ; Mon, 22 Mar 1999 06:10:18 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id GAA97772; Mon, 22 Mar 1999 06:10:00 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from jau.tmt.tele.fi (jau.tmt.tele.fi [194.252.70.165]) by hub.freebsd.org (Postfix) with ESMTP id 6427E14CD0 for ; Mon, 22 Mar 1999 06:02:51 -0800 (PST) (envelope-from jau@jau.tmt.tele.fi) Received: (from jau@localhost) by jau.tmt.tele.fi (8.9.1/8.9.1/JAU-2.2) id QAA01971; Mon, 22 Mar 1999 16:02:20 +0200 (EET) Message-Id: <199903221402.QAA01971@jau.tmt.tele.fi> Date: Mon, 22 Mar 1999 16:02:20 +0200 (EET) From: "Jukka A. Ukkonen" Reply-To: jau@jau.tmt.tele.fi To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/10728: WCD driver does not recognize a recovered atapi/ide error Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10728 >Category: kern >Synopsis: WCD driver does not recognize a recovered atapi/ide error >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Mar 22 06:10:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Jukka A. Ukkonen >Release: FreeBSD 2.2.8-RELEASE i386 >Organization: Sonera Ltd. / Internet Services >Environment: FreeBSD 2.2.8-RELEASE based AMD/i486 with an ATAPI/IDE CD drive. >Description: Occasionally the CD drives report a recovered error when the requested data is delayed. The driver code failed to recognize this situation and returned EIO in vain. By checking `dmesg' output the driver generated quite often log entries like these... wcd0: i/o error, status=51, error=30 wcd0: i/o error, status=51, error=30 wcd0: i/o error, status=51, error=30 This tended to make e.g. workman sometimes fail to probe the CD status, and which time workman assumes there is no longer a CD in the drive. When the next status probe succeeded, workman then automatically started playing a disc with `automatically play this disc' set even though the disc had been previously manually stopped. >How-To-Repeat: Simply start workman on a atapi/ide cd-drive like Mitsumi-FX400 which occasionally report delayed completion of requested operations, insert a CD with `automatically play this disc' set, manually stop the disc, and let the disc stay in the drive. Sometimes it takes hours for this to happen, sometimes it happens in a matter of minutes. Anyhow when the problem occurs, there will be a new log entry for a recovered error, and workman will start playing the disc all by itself. >Fix: This is a tentative patch, but at least workman no longer re-starts playing a stopped disc all by itself. I simply made the assumption that a delayed but recovered response from the drive is quite as much all right as any normal successful response. --- /sys/i386/isa/wcd.c.old Sun Mar 14 22:24:49 1999 +++ /sys/i386/isa/wcd.c Sun Mar 14 22:55:12 1999 @@ -620,7 +620,8 @@ result = atapi_request_wait (t->ata, t->unit, cmd, a1, a2, a3, a4, a5, a6, a7, a8, a9, 0, 0, 0, 0, 0, 0, addr, count); - if (result.code) { + if (result.code + && ((result.error & AER_SKEY) != AER_SK_RECOVERED_ERROR)) { wcd_error (t, result); return (EIO); } @@ -962,7 +963,8 @@ ATAPI_TEST_UNIT_READY, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); } - if (result.code) { + if (result.code + && ((result.error & AER_SKEY) != AER_SK_RECOVERED_ERROR)) { wcd_error (t, result); return (EIO); } @@ -1084,7 +1086,8 @@ return (0); } - if (result.code) { + if (result.code + && ((result.error & AER_SKEY) != AER_SK_RECOVERED_ERROR)) { wcd_error (t, result); return (EIO); } >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 22 6:50:24 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2F10615014 for ; Mon, 22 Mar 1999 06:50:24 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id GAA41278; Mon, 22 Mar 1999 06:50:06 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Mon, 22 Mar 1999 06:50:06 -0800 (PST) Message-Id: <199903221450.GAA41278@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "M.Indlekofer" Subject: Re: kern/10653: cdevsw_module_handler MOD_UNLOAD problem Reply-To: "M.Indlekofer" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/10653; it has been noted by GNATS. From: "M.Indlekofer" To: Doug Rabson Cc: freebsd-gnats-submit@freebsd.org Subject: Re: kern/10653: cdevsw_module_handler MOD_UNLOAD problem Date: Mon, 22 Mar 1999 15:44:50 +0100 (MET) I applied the patch for kern/kern_conf.c and the problem is fixed. Thanks. --------------------------------------------- Michael Indlekofer Institut fuer Schicht- und Ionentechnik (ISI) Forschungszentrum Juelich GmbH D-52425 Juelich Telephone : ++49 2461 61 2345 Fax : ++49 2461 61 2940 --------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 22 8: 0:22 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2C64A1511A for ; Mon, 22 Mar 1999 08:00:20 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id IAA49472; Mon, 22 Mar 1999 08:00:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Mon, 22 Mar 1999 08:00:01 -0800 (PST) Message-Id: <199903221600.IAA49472@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "G. Adam Stanislav" Subject: Re: conf/10715: Console font loading problem at boot time Reply-To: "G. Adam Stanislav" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR conf/10715; it has been noted by GNATS. From: "G. Adam Stanislav" To: Kazutaka YOKOTA Cc: freebsd-gnats-submit@freebsd.org, "Daniel C. Sobral" Subject: Re: conf/10715: Console font loading problem at boot time Date: Mon, 22 Mar 1999 09:57:24 -0600 At 13:39 22-03-1999 +0900, Kazutaka YOKOTA wrote: >You are using the mouse cursor in the text console, right? > >This is a known problem when you enable the mouse cursor. The console >driver uses font for the character codes 208 though 211 to display the >mouse cursor. Ouch! Those codes are used for real characters not only by ISO-8859-2, which is what I happen to require, but, as far as I know, by all varieties of the ISO-8859 group of standards. On the other hand (again AFAIK), the ISO 8859 standard group reserves character codes 128 - 159 for system use. I would strongly urge whomever is in charge of text console development to change the mouse cursor into character codes within that area. I mean by default, without the need to rebuild the kernel. After all, outside of the English and perhaps German speaking countries, most of the world needs either one of the ISO-8859 standards, or a similar standard not yet covered by ISO. I have now disabled the mouse (since I have not figured out how to take advantage of it anyway), and the problem has disappeared. But that is not an ideal solution. Thanks to everyone who replied, Adam To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 22 8:40:21 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8371D14D5C for ; Mon, 22 Mar 1999 08:40:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id IAA53147; Mon, 22 Mar 1999 08:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Mon, 22 Mar 1999 08:40:01 -0800 (PST) Message-Id: <199903221640.IAA53147@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Daniel C. Sobral" Subject: Re: conf/10715: Console font loading problem at boot time Reply-To: "Daniel C. Sobral" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR conf/10715; it has been noted by GNATS. From: "Daniel C. Sobral" To: "G. Adam Stanislav" Cc: Kazutaka YOKOTA , freebsd-gnats-submit@freebsd.org Subject: Re: conf/10715: Console font loading problem at boot time Date: Tue, 23 Mar 1999 01:34:28 +0900 "G. Adam Stanislav" wrote: > > At 13:39 22-03-1999 +0900, Kazutaka YOKOTA wrote: > >You are using the mouse cursor in the text console, right? > > > >This is a known problem when you enable the mouse cursor. The console > >driver uses font for the character codes 208 though 211 to display the > >mouse cursor. > > Ouch! Those codes are used for real characters not only by ISO-8859-2, > which is what I happen to require, but, as far as I know, by all varieties > of the ISO-8859 group of standards. > > On the other hand (again AFAIK), the ISO 8859 standard group reserves > character codes 128 - 159 for system use. I would strongly urge whomever is Yeah, sure. But PC architecture only has extra scan lines for characters 208 through 211 (or similar range, I don't quite recall). Using any others for the mouse pointer results in an ugly mouse pointer. This is actually an available option, as Yokota-san has mentioned, and is probably mentioned in the LINT. -- Daniel C. Sobral (8-DCS) dcs@newsguy.com dcs@freebsd.org "What happened?" "It moved, sir!" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 22 8:41: 0 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from peach.ocn.ne.jp (peach.ocn.ne.jp [210.145.254.87]) by hub.freebsd.org (Postfix) with ESMTP id 3CBB41524E for ; Mon, 22 Mar 1999 08:40:49 -0800 (PST) (envelope-from dcs@newsguy.com) Received: from newsguy.com by peach.ocn.ne.jp (8.9.1a/OCN) id BAA25719; Tue, 23 Mar 1999 01:40:39 +0900 (JST) Message-ID: <36F67225.E3657192@newsguy.com> Date: Tue, 23 Mar 1999 01:39:01 +0900 From: "Daniel C. Sobral" X-Mailer: Mozilla 4.5 [en] (Win98; I) X-Accept-Language: pt-BR,ja MIME-Version: 1.0 To: gouriev@usa.net Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: kern/10132:unabletorecordkernel-cchanges References: <199903221330.FAA94325@freefall.freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org What are the contents of your /boot/loader.rc file? What are the contents of your /kernel.config and/or /boot/kernel.conf? What is the result of running kget? gouriev@usa.net wrote: > > The following reply was made to PR kern/10132; it has been noted by GNATS. > > From: gouriev@usa.net > To: freebsd-gnats-submit@freebsd.org, taa@kombank.lipetsk.su > Cc: > Subject: Re:kern/10132:unabletorecordkernel-cchanges > Date: Mon, 22 Mar 1999 16:15:48 +0300 (MSK) > > Instructions in ERRATA.TXT file could not help to solve the problem > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-bugs" in the body of the message -- Daniel C. Sobral (8-DCS) dcs@newsguy.com dcs@freebsd.org "What happened?" "It moved, sir!" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 22 9:30:29 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from pluto.plutotech.com (mail.plutotech.com [206.168.67.137]) by hub.freebsd.org (Postfix) with ESMTP id EA99815232 for ; Mon, 22 Mar 1999 09:30:15 -0800 (PST) (envelope-from gibbs@plutotech.com) Received: from narnia.plutotech.com (narnia.plutotech.com [206.168.67.130]) by pluto.plutotech.com (8.9.2/8.9.1) with ESMTP id KAA20262; Mon, 22 Mar 1999 10:29:37 -0700 (MST) (envelope-from gibbs@plutotech.com) Message-Id: <199903221729.KAA20262@pluto.plutotech.com> X-Mailer: exmh version 2.0.2 2/24/98 To: "Daniel C. Sobral" Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: conf/10715: Console font loading problem at boot time In-reply-to: Your message of "Mon, 22 Mar 1999 08:40:01 PST." <199903221640.IAA53147@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 22 Mar 1999 10:20:36 -0700 From: "Justin T. Gibbs" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Yeah, sure. But PC architecture only has extra scan lines for > characters 208 through 211 (or similar range, I don't quite recall). > Using any others for the mouse pointer results in an ugly mouse > pointer. This is actually an available option, as Yokota-san has > mentioned, and is probably mentioned in the LINT. Is there a way to embed in the font an indication of which character cells to use for the mouse pointer? If you make the information 'optional' we would only need to update the fonts that have useful characters in the default mouse pointer location. This seems like a more general configuration strategy instead of hard coding the location in the kernel for all fonts. -- Justin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 22 9:38:27 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from peach.ocn.ne.jp (peach.ocn.ne.jp [210.145.254.87]) by hub.freebsd.org (Postfix) with ESMTP id 2424A150AF for ; Mon, 22 Mar 1999 09:38:22 -0800 (PST) (envelope-from dcs@newsguy.com) Received: from newsguy.com by peach.ocn.ne.jp (8.9.1a/OCN) id CAA00171; Tue, 23 Mar 1999 02:38:09 +0900 (JST) Message-ID: <36F67F9F.19E2E32@newsguy.com> Date: Tue, 23 Mar 1999 02:36:31 +0900 From: "Daniel C. Sobral" X-Mailer: Mozilla 4.5 [en] (Win98; I) X-Accept-Language: pt-BR,ja MIME-Version: 1.0 To: "Justin T. Gibbs" Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: conf/10715: Console font loading problem at boot time References: <199903221729.KAA20262@pluto.plutotech.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "Justin T. Gibbs" wrote: > > > Yeah, sure. But PC architecture only has extra scan lines for > > characters 208 through 211 (or similar range, I don't quite recall). > > Using any others for the mouse pointer results in an ugly mouse > > pointer. This is actually an available option, as Yokota-san has > > mentioned, and is probably mentioned in the LINT. > > Is there a way to embed in the font an indication of which character > cells to use for the mouse pointer? If you make the information 'optional' > we would only need to update the fonts that have useful characters in > the default mouse pointer location. This seems like a more general > configuration strategy instead of hard coding the location in the kernel > for all fonts. It's also more irritating. Every font with the possible exception of DOS CPs use these characters, that I know of. The famous and widely used latin1 does. Whether the trade off is acceptable or not varies a lot. -- Daniel C. Sobral (8-DCS) dcs@newsguy.com dcs@freebsd.org "Someone's trying to hack into our server." "Wow... How flattering!" "I know. There must be some mistake." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 22 10: 6:29 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from pluto.plutotech.com (mail.plutotech.com [206.168.67.137]) by hub.freebsd.org (Postfix) with ESMTP id 6024815287 for ; Mon, 22 Mar 1999 10:06:27 -0800 (PST) (envelope-from gibbs@plutotech.com) Received: from narnia.plutotech.com (narnia.plutotech.com [206.168.67.130]) by pluto.plutotech.com (8.9.2/8.9.1) with ESMTP id LAA31867; Mon, 22 Mar 1999 11:06:06 -0700 (MST) (envelope-from gibbs@plutotech.com) Message-Id: <199903221806.LAA31867@pluto.plutotech.com> X-Mailer: exmh version 2.0.2 2/24/98 To: "Daniel C. Sobral" Cc: "Justin T. Gibbs" , freebsd-bugs@FreeBSD.ORG Subject: Re: conf/10715: Console font loading problem at boot time In-reply-to: Your message of "Tue, 23 Mar 1999 02:36:31 +0900." <36F67F9F.19E2E32@newsguy.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 22 Mar 1999 10:57:05 -0700 From: "Justin T. Gibbs" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >It's also more irritating. Every font with the possible exception of >DOS CPs use these characters, that I know of. The famous and widely >used latin1 does. Whether the trade off is acceptable or not varies >a lot. Right, so every font, except for the ones with exceptions, wouldn't have any overrides in place and would rely on the default behavior. -- Justin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 22 10:18:59 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from peach.ocn.ne.jp (peach.ocn.ne.jp [210.145.254.87]) by hub.freebsd.org (Postfix) with ESMTP id 1C33314BE5 for ; Mon, 22 Mar 1999 10:18:57 -0800 (PST) (envelope-from dcs@newsguy.com) Received: from newsguy.com by peach.ocn.ne.jp (8.9.1a/OCN) id DAA02529; Tue, 23 Mar 1999 03:18:49 +0900 (JST) Message-ID: <36F68924.5A29BBBB@newsguy.com> Date: Tue, 23 Mar 1999 03:17:09 +0900 From: "Daniel C. Sobral" X-Mailer: Mozilla 4.5 [en] (Win98; I) X-Accept-Language: pt-BR,ja MIME-Version: 1.0 To: "Justin T. Gibbs" Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: conf/10715: Console font loading problem at boot time References: <199903221806.LAA31867@pluto.plutotech.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "Justin T. Gibbs" wrote: > > >It's also more irritating. Every font with the possible exception of > >DOS CPs use these characters, that I know of. The famous and widely > >used latin1 does. Whether the trade off is acceptable or not varies > >a lot. > > Right, so every font, except for the ones with exceptions, wouldn't have > any overrides in place and would rely on the default behavior. But good-looking mouse pointers are, as likely as not, more important than the characters lost. The present scheme is very close to the ideal. I'd rather prefer not having to recompile anything if I wanted this changed for a while, but that's all. Sure, YMMV applies, but from all I have seen, this seems to be the most common milleage. -- Daniel C. Sobral (8-DCS) dcs@newsguy.com dcs@freebsd.org "Someone's trying to hack into our server." "Wow... How flattering!" "I know. There must be some mistake." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 22 11: 0:33 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7A89114CAD for ; Mon, 22 Mar 1999 11:00:26 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id LAA64679 for freebsd-bugs@freebsd.org; Mon, 22 Mar 1999 11:00:03 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 22 Mar 1999 11:00:03 -0800 (PST) Message-Id: <199903221900.LAA64679@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 ------------------------------------------------------------------------------- o [1997/03/08] kern/2923 panic: vm_fault: fault on nofault entry, 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/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/12] kern/4289 kernel panic: vm_fault: fault on nofault o [1997/10/01] kern/4673 Two panics, now crash dumps, always in re o [1997/11/10] kern/4996 peter NFS crash, possibly related to file bigge s [1997/11/24] bin/5139 portmap does not find interfaces correctl f [1997/12/21] kern/5355 Fix for NULLFS problems o [1998/02/03] kern/5641 running processes at the IDLE priority (i o [1998/02/10] kern/5703 CDROM Media Error triggers complete syste o [1998/03/23] bin/6121 peter gethostbyname(3) no longer returns NO_DAT 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 o [1998/05/19] kern/6689 kern_physio.c splits requests breaking cd 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/23] kern/7028 Panic in vinvalbuf when appending/looking o [1998/08/15] kern/7622 Kernel panic with Fatal trap 18. o [1998/08/16] i386/7633 panic: page fault on install with boot.fl s [1998/08/17] i386/7646 My system is freeze after X starup. s [1998/08/17] kern/7649 fenner [MFC] /sys/netinet/if_ether.c: "permanent o [1998/09/03] kern/7822 Machine Reboots without reason o [1998/09/06] kern/7843 Unable to install FreeBSD on Tekram DC-39 o [1998/09/08] i386/7859 fatal trap 12 in midi_synth_input o [1998/09/14] kern/7927 Fatal trap 12: page fault while in kernel o [1998/09/18] i386/7984 destructive install of 2.2.7 on 2.2.5 sys o [1998/09/28] kern/8074 se CAM rescan operation fatal o [1998/10/03] gnu/8138 peter gcc -pipe xxx.s hangs o [1998/10/06] i386/8179 Install failure with motherbord using SIS o [1998/10/08] i386/8214 Install 3.0-19981006-BETA fails o [1998/10/16] kern/8345 mmap(2) hangs when dealing with certain f o [1998/10/20] kern/8386 modload failure o [1998/10/27] kern/8473 Excessive virtual memory consumption with o [1998/11/01] kern/8532 3.0-RELEASE panics with standard SMP kern o [1998/11/04] conf/8576 server goes down when client mount its fi a [1998/11/08] ports/8609 nectar eklogin service (kerberos klogind) fails o [1998/11/09] i386/8639 Accton EN1207B-TX dosen't work o [1998/11/10] kern/8641 FreeBSD crashes when global memory alloca o [1998/11/12] i386/8673 bug in vm_page_alloc_contig() o [1998/11/16] kern/8711 FreeBSD 2.2.7 Accidently reboots ... o [1998/11/18] i386/8742 X Windows is ,loading with no accelerated o [1998/11/21] i386/8787 install process hangs while adding defaul o [1998/11/24] ports/8829 torstenb Fix port: security/ssh o [1998/11/24] kern/8851 mounting an unconfigured device causes a o [1998/11/25] kern/8861 under heavy (multi interface) traffic ep0 o [1998/12/01] i386/8922 can't detect wdc1 on Abit LX6 motherboard o [1998/12/05] kern/8973 trap 12: page fault while in kernel mode o [1998/12/09] kern/9036 Boot 3.0-Release hangs with BT-445S after o [1998/12/14] kern/9081 3.0-RELEASE dies starting AP on dual PPro o [1998/12/20] kern/9143 syscons of 3.0-RELEASE causes system to c a [1998/12/22] kern/9178 -current ipfw.ko with ELF kernel doesn't o [1998/12/28] kern/9218 sysctl crashes system with bad args o [1998/12/30] kern/9249 Panic on 2.2.8-STABLE when accessing wcd o [1999/01/02] kern/9282 2nd IDE controller on Ali chipset motherb o [1999/01/03] kern/9294 IDE controller not being detected even wi o [1999/01/03] ports/9295 torstenb Y2K problem with inn port o [1999/01/05] kern/9334 cp fails for 2048 Bytes/sector media o [1999/01/07] kern/9370 panic: vinvalbuf: dirty bufs o [1999/01/13] kern/9479 timeout while detect SCSI disks in recent o [1999/01/18] kern/9560 softupdates freezes system under heavy lo o [1999/01/25] ports/9691 ports jadetex port depends on unknown other pac o [1999/01/26] i386/9709 Kernel page faults during boot with 2GB R o [1999/01/27] kern/9742 tx driver for smc autodetects fine, but n o [1999/01/31] i386/9841 Pagefault while scsibus scan on bootup o [1999/02/02] misc/9885 BIND 8.1.2 core dumping o [1999/02/04] kern/9909 Writing incomplete blocks to /dev/nrst0 h o [1999/02/05] bin/9926 Finger no longer works when fingering a G o [1999/02/11] bin/10035 3.0-STABLE, rc.shutdown is still ignored. o [1999/02/14] docs/10088 doc Documentation search results o [1999/02/14] ports/10091ports xsysinfo does not execute o [1999/02/19] kern/10166 panic during heavy sio i/o;no coproc; ves o [1999/02/20] kern/10172 panic: cannot allocate pipe - out of kvm o [1999/02/21] i386/10188 Cannot get system to boot after Installti o [1999/02/21] i386/10189 kern.flp/mfsboot.flp won't boot correctly o [1999/02/23] kern/10224 panic: pipeinit: cannot allocate pipe -- o [1999/02/26] kern/10281 Crash of 3.1-STABLE system due to scsi er o [1999/02/26] i386/10282 PCMCIA problems in 3.1-RELEASE? o [1999/02/26] kern/10285 2.2.8-S => 3.1-S make aout-to-elf-build f o [1999/03/01] kern/10332 System freezes during certain SCSI activi o [1999/03/01] bin/10344 Core dump in gethostbyaddr for 199.93.70. o [1999/03/02] kern/10357 spontaneous crashes o [1999/03/05] kern/10397 3.1R page fault while in kernel mode, fro o [1999/03/05] i386/10400 missing some library files... o [1999/03/07] misc/10473 Incorrect aout compat libraries in XF8633 o [1999/03/07] ports/10475ports devel/asl NLS patch broken o [1999/03/09] kern/10507 Process hangs in state VM pgd o [1999/03/09] misc/10509 Cvs can hang system when used with pserve o [1999/03/09] kern/10520 can't exec files under nullfs o [1999/03/11] kern/10542 page fault while in kernel mode, not kern o [1999/03/11] kern/10545 When a fork/exec stress test is run, the o [1999/03/12] misc/10566 patch dhcpc problem on /etc/pccard_ether o [1999/03/17] kern/10636 ipfw problems o [1999/03/18] kern/10653 cdevsw_module_handler MOD_UNLOAD problem o [1999/03/19] i386/10683 I have a buslogic BT-948 FW controller. W o [1999/03/20] i386/10690 Installation freezes after device selecti o [1999/03/20] kern/10701 ppbus printing problems o [1999/03/22] ports/10725ports Wrong Cyrus IMAP deliver group 99 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 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 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 o [1996/09/29] kern/1689 wollman TCP extensions throttles distant connecti o [1996/10/04] kern/1726 panic in kmem_malloc (dump available) o [1996/10/08] kern/1744 peter run queue or proc list smashed 4 times in 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 s [1996/10/26] bin/1892 install(1) removes target file s [1996/11/08] gnu/1981 ypserv handles null key incorrectly 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 f [1997/01/03] conf/2367 gibbs Buslogic SCSI driver bad probe of 742A EI o [1997/01/09] bin/2430 mountd stops on loading if subnet mask is o [1997/01/13] bin/2489 steve gnats mangles sections 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/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/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] 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/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/15] bin/3305 Can't do encrypted rlogin into self 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/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 f [1997/05/04] i386/3502 Merge of if_ix* and if_ie* broke EE/16 su o [1997/05/06] bin/3524 imp rlogin doesn't read $HOSTALIASES for non- o [1997/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/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 s [1997/05/25] kern/3685 [PATCH] panic: fdesc attr 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/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/08] gnu/3810 cvs can't handle multiple multiple-path d 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 s [1997/07/06] gnu/4042 gdb stackframe in static library shows no 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 f [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/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/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/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/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/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 o [1997/09/19] bin/4582 integer overflow in 'sa -km' 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/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 imp 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] 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/26] kern/4859 SMP kernel panics with timeout table full 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] misc/5005 f2c is buggy and seriously outdated (agai 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/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/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 s [1997/12/14] bin/5297 make incompatibility with System V style o [1997/12/19] kern/5347 peter DEC (de0) ethernet card has no buffers af 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 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/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/09] bin/5693 groff -mm or groff -mmm ??? o [1998/02/10] i386/5698 des LPIP causes spurious reboots o [1998/02/12] kern/5728 peter NFS hangs 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/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/09] bin/5959 Cannot set up clocal gettys o [1998/03/10] kern/5969 non-root user can reboot/lock up system o [1998/03/11] kern/5975 can't boot freebsd: fatal trap12: page fa 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/20] bin/6074 imp Incremental dumps are backing up unchange o [1998/03/22] i386/6099 des LPIP to slow machine causes hang o [1998/03/22] ports/6100 ports xmpeg3 chokes on filenames with spaces 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/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/13] ports/6288 se KDE port glitches o [1998/04/14] kern/6300 System locks up in SMP mode when accessin 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/18] kern/6344 cy driver is outdated o [1998/04/19] kern/6351 DPT RAID controller stops working under h 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 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 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/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 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 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 s [1998/06/04] kern/6854 [PATCH] probing brooktree849 capture card s [1998/06/04] kern/6858 inetd in realloc(): warning: junk pointer 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/10] kern/6908 kernel crash from user land 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 s [1998/06/22] bin/7019 [security] pwd.db almost always contains 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 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/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 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 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/7266 yokota PSM detection failure with Linksys consol s [1998/07/14] kern/7281 [STABLE] Multicast kludge does not work c 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 f [1998/07/22] kern/7367 panic: malloc: wrong bucket 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/26] kern/7405 in pmap_changebit, pmap_pte_quick() retur s [1998/07/27] kern/7410 [PATCH] driver for arlan-655 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/29] docs/7437 doc IPFW doco unclear about in/out o [1998/07/30] bin/7446 jdp Dlopen succeed in particular cases, but i o [1998/08/04] ports/7490 ache `setenv LANG/LC_CTYPE C` makes tcsh unusa s [1998/08/10] kern/7556 sl_compress_init() will fail if called an f [1998/08/10] kern/7557 -current machine running Diablo, lockup, s [1998/08/10] kern/7561 CDROM (wcd) is prone to lock up system/pr s [1998/08/10] kern/7562 Running wine can cause other applications o [1998/08/12] bin/7587 There is no pthread_cancel() in libc_r.a! o [1998/08/13] bin/7602 df stay in disk wait o [1998/08/18] kern/7658 (1) rlogin from some host to the FreeBSD o [1998/08/18] kern/7664 scsiformat reports '0' for all parameters o [1998/08/18] conf/7665 sysinstall quits silently o [1998/08/19] kern/7678 Problems with a 386-16 o [1998/08/20] i386/7698 scotty/tkined library error s [1998/08/22] kern/7713 fenner [MFC] problem with reusing ports with mul o [1998/08/23] kern/7727 Processes get wedged in 'getblk' on 2.2.7 o [1998/08/27] kern/7754 kernel panics if NFS server uses LKM vs. o [1998/08/27] bin/7756 disklabel misbehaving on seriously sick d o [1998/08/27] ports/7761 ports Update to recent port submission of nicet o [1998/08/27] kern/7764 ps(1) hangs in pfslck/lockrd - All subseq o [1998/08/27] kern/7766 de driver still buggy - random ifc death o [1998/08/27] kern/7767 de driver still buggy - power cycle of de o [1998/08/30] kern/7781 Problem with setpassent(), getpwnam() and o [1998/08/31] kern/7793 kernel wedges when netscape exits o [1998/09/01] kern/7797 System halted with "panic: pmap_release: o [1998/09/02] i386/7815 probe can't find wdc0 s [1998/09/03] gnu/7821 awk in free(): warning: chunk is already o [1998/09/03] conf/7823 sysinstall will not install XFree o [1998/09/09] bin/7872 [PATCH] mountd(8) can apply flags to wron o [1998/09/09] bin/7876 gethostbyname flags temporary failure as o [1998/09/09] bin/7877 fenner libpcap and tcpdump need updating o [1998/09/10] kern/7880 mount_cd9660 incorrect on multitrack CD-R o [1998/09/10] misc/7889 move_aout_libs.sh doesn't use ldconfig co o [1998/09/11] i386/7898 erich linux_lib-2.4 lacks libc.so.6 o [1998/09/11] kern/7902 if_de doesn't properly recognize a "Magic o [1998/09/12] conf/7908 wrong perms on objformat after upgrade o [1998/09/13] kern/7925 sendmail, inetd SIGSEGV after forking aft o [1998/09/15] ports/7931 torstenb Ssh allows root login with no password f [1998/09/15] bin/7943 des ftpd: ~ is ~root! o [1998/09/16] kern/7950 Trap 12 while executing wine o [1998/09/16] gnu/7951 The gnu readline library core dumps when o [1998/09/17] bin/7968 If /usr/libexec/yppwupdate DNE, rpc.yppas a [1998/09/19] ports/7987 ports Can't post news with TRN + NNTPCACHE o [1998/09/19] conf/7989 if we enable firewall and natd we losing o [1998/09/22] conf/8031 [patch] /etc/rc looks for /etc/sendmail.c o [1998/09/25] ports/8053 markm Perl 5 port has broken foreach behavior, o [1998/09/27] ports/8064 markm perl5 port ignores local settings for CC o [1998/09/28] misc/8070 can't get a system with an NCR 810 contro o [1998/09/28] i386/8081 Problem with MULTIPORT driver and Boca BB o [1998/09/29] bin/8085 sendmail startup could be backgrounded o [1998/09/29] ports/8088 torstenb short writes using ssh-1.2.* o [1998/09/30] gnu/8099 [patch] some bugs in cpio f [1998/09/30] kern/8112 ken 2.2.7 + CAM system panics removing shared o [1998/10/03] kern/8137 [patch] quotaoff followed by quotaon can o [1998/10/05] kern/8158 sio driver breaks in 2.2.7R in kernels wi o [1998/10/06] kern/8180 open("..",O_RDONLY|O_NONBLOCK) fails o [1998/10/06] ports/8181 peter date problems with exmh2 o [1998/10/07] bin/8195 ee dumps core on window resize o [1998/10/08] kern/8206 [patch] Unconected UDP socket declined, i o [1998/10/08] kern/8215 Creating 2 root partitions in sysinstall o [1998/10/11] bin/8266 [patch] nfsd should allow just nfs versio o [1998/10/11] ports/8276 hosokawa samba's WINS database gets removed during o [1998/10/12] bin/8281 writev() in libc_r causes loop o [1998/10/13] kern/8312 Under heavy load, the system panics with o [1998/10/14] bin/8322 Mail doesn't respect REPLYTO in .mailrc o [1998/10/14] kern/8324 failure to deliver SIGIO when fildes mark o [1998/10/16] conf/8350 Problems with /etc/rc.firewall o [1998/10/19] conf/8379 check_rcpt returns OK for nonexistent add o [1998/10/20] kern/8380 swap_page error: out of swap space o [1998/10/20] i386/8385 2.2.7 hangs while detecting type of COM1' o [1998/10/20] ports/8394 peter rdist6 won't compile--tries to use MOUNT_ o [1998/10/21] i386/8397 Code using popen compiled on BSDI BSD/OS o [1998/10/22] i386/8414 ibcs2 emulation sets serial baud-rate inc o [1998/10/22] kern/8415 SMP kernel freezes while downloading larg o [1998/10/22] kern/8416 vm_fault might deadlock when locking back s [1998/10/22] kern/8417 3.0 config(8) doesn't check that root fs o [1998/10/22] i386/8418 sh MAKEDEV all - fails to create hard lin o [1998/10/23] kern/8423 Intel PILA8461 NIC panics 2.2.7 during pr o [1998/10/23] gnu/8425 3.0's gdb can't read 3.0's kernel to debu o [1998/10/23] bin/8426 gprof still expects gmon.out o [1998/10/24] i386/8435 boot.flp does not give shell prompt after o [1998/10/24] bin/8440 3.0-RELEASE has wrong permissions on game o [1998/10/28] misc/8480 odd Korean timedef(LC_TIME) o [1998/10/29] misc/8493 Stable build process fails to install obj o [1998/10/30] kern/8500 FreeBSD 3.0 thread scheduler is broken o [1998/10/30] ports/8502 ports GNAT 3.10 port uses clock_gettime which i o [1998/10/31] bin/8518 freopen() in append mode followed by ftel o [1998/11/01] kern/8534 insufficient support routines for poll(2) o [1998/11/02] conf/8549 how to configure the network Card and Set o [1998/11/03] kern/8561 /kernel inode change time changes every r o [1998/11/03] i386/8567 Intel EtherExpress Pro/10 driver (if_ex.c o [1998/11/04] bin/8573 nvi 1.79 SIGSEGVs on any address in .exrc o [1998/11/05] kern/8580 Hanging NFS pagein in nfs_bio.c (2.2.7, w o [1998/11/06] kern/8585 bktr driver does not correctly identify I o [1998/11/07] kern/8590 kernel incorrectly recognizing Maxtor 11. o [1998/11/07] kern/8596 panic: page fault while using ping's reco o [1998/11/08] kern/8607 maxprocsperuid setting causes sybase/linu o [1998/11/08] kern/8619 EXT2FS should be in GENERIC kernel o [1998/11/08] ports/8622 peter exmh2 has problems with some date formats s [1998/11/09] misc/8623 wollman [MFC] Time zone for Japan is strange (see o [1998/11/10] bin/8646 Implement rlogind -a option o [1998/11/11] kern/8655 Umount trouble of SCSI removable device o [1998/11/11] kern/8657 nfs client hung in nfs_bwrite/vfs_busy_pa o [1998/11/12] kern/8669 aio_write() and aio_read() do not work AT o [1998/11/14] kern/8683 sos Problems with Atapi in 3.0... o [1998/11/14] bin/8685 sending a SYST by ftp client closes conne o [1998/11/15] ports/8694 asami Recommend to change category name: biolog o [1998/11/17] kern/8729 SYSV Semaphore blocks all threads o [1998/11/18] bin/8739 atoi and modunload o [1998/11/18] bin/8745 adduser permit adding `root' and mail ali o [1998/11/20] kern/8773 Intel AN430TX motherboard ps/2 port not r f [1998/11/20] kern/8778 gibbs Buslogic BT948 in 2 boxes upgraded from S o [1998/11/21] bin/8790 [PATCH] Buffer overrun in nvi-1.79 (explo o [1998/11/23] kern/8824 Incorrect driver unit number in IDE BusMa o [1998/11/24] kern/8834 NFS can corrupt local file cache o [1998/11/24] conf/8854 boot.flp does not probe atapi cdrom o [1998/11/24] i386/8855 can't mount CD in ATAPI drive after eject o [1998/11/25] bin/8865 syslogd hangs with serial console o [1998/11/27] i386/8870 Installworld falls over in /usr/src/sys/i o [1998/11/27] bin/8872 pthread_cond_timedwait() can cause lost p o [1998/11/28] kern/8875 Patch to allow DMA IDE with generic chips o [1998/11/29] ports/8891 ports ssh2 port assume you have zipped manpage o [1998/11/29] i386/8894 Rebooting accidently because of missing f o [1998/11/29] conf/8903 /etc/rc can do NFS mounts before the netw o [1998/11/30] ports/8909 gpalmer snmpd enters endless loop due to snmpwalk o [1998/12/01] kern/8919 using Acceleport 8r o [1998/12/01] i386/8924 File transfers. Upload is 71Kbs downloa o [1998/12/02] kern/8940 system clock runs extremely slowly (and s o [1998/12/03] kern/8952 close() blocks forever after fork() in th o [1998/12/06] kern/8981 this also fixes X crashes and sio silo ov o [1998/12/07] ports/9002 torstenb mirror reuses obsolete temporary db file o [1998/12/08] ports/9019 torstenb ports/security/ssh broken o [1998/12/09] kern/9030 DMPno2 - PCCards are not being recognised o [1998/12/10] i386/9044 #.0 pkgs require libkrb o [1998/12/13] bin/9066 init ignore rc.shutdown o [1998/12/14] ports/9077 markm perl5 port freebsd patch fails o [1998/12/16] kern/9095 swap detect error o [1998/12/19] kern/9129 Is it miss take ? So, ep deriver dose not o [1998/12/20] i386/9140 NIS "Magic cookie" in master.passwd slays o [1998/12/21] bin/9162 [Patch] pthreads GC breaks signal handlin o [1998/12/21] kern/9163 [patch] squid does not join a multicast g o [1998/12/22] kern/9171 maxusers 1024 results in unbootable kerne a [1998/12/22] bin/9173 cracauer Interactive /bin/sh loops should break wh o [1998/12/22] ports/9177 erich linux_lib buggy and outdated o [1998/12/24] ports/9191 obrien tcplist port dosnt work o [1998/12/27] bin/9214 kldload(8) error messages are inadequate o [1998/12/28] misc/9230 Problem with iostreams, seekg, tellg o [1998/12/29] i386/9237 pthread_exit doesn't exit o [1998/12/30] i386/9244 2.2.8 RELEASE Fixit floppy doesn't work.. o [1998/12/31] bin/9252 [patch] login program "login" don't set K o [1999/01/02] ports/9279 ports new port submission - libparanoia. o [1999/01/03] bin/9292 Cron's logs are in /var/cron, not /var/lo o [1999/01/03] kern/9296 pps driver missing header file o [1999/01/03] kern/9297 pps driver doesn't clear ppbus control po o [1999/01/06] bin/9350 nvi incorrectly reads files with very lon o [1999/01/06] kern/9355 can't select() for writes on a bpf o [1999/01/07] bin/9362 "lpc start queue" doesn't work in 3.0-R & o [1999/01/07] kern/9367 src/sys/dev/dpt/dpt_control.c can cause a o [1999/01/07] bin/9379 pppd does not go through all interfaces l o [1999/01/07] misc/9381 read freed memory o [1999/01/08] kern/9391 if_addmulti doesn't check for retifma == o [1999/01/09] kern/9407 "make kernel" yields buggy kernel in cera o [1999/01/09] kern/9408 parameter reversed to a pci_cfgwrite in p o [1999/01/09] kern/9411 System crash on swapping to hole-files o [1999/01/09] kern/9413 profiling does not work with elf kernels o [1999/01/10] i386/9431 wd.c Does nto recognize certain LBA disks o [1999/01/11] bin/9440 amd can't mount filesystems with type:=uf o [1999/01/11] i386/9441 dset doesn't work with ELF kernels o [1999/01/11] bin/9444 mount_mfs uses lots of swap. o [1999/01/12] bin/9464 Fix for fetch ignoring FTP_PASSIVE_MODE e o [1999/01/13] kern/9478 support for running a script from kldload o [1999/01/13] ports/9480 ports ELF kernel netboot o [1999/01/14] kern/9487 pcm: mixer's synth and cd devices are swa o [1999/01/14] bin/9495 su doesn't look at login.cnf all the time o [1999/01/15] kern/9515 ISA DMA memory problems if >= 512 MB RAM o [1999/01/15] bin/9516 ftpd doesn't honor invalid shelll in logi o [1999/01/17] kern/9537 ep0 driver : no buffer space available o [1999/01/17] bin/9544 syntax error concerning loading vinum fro o [1999/01/17] kern/9548 UNION fs corrupts data and has undefined o [1999/01/17] kern/9550 The latest -current as of 17 January has o [1999/01/21] kern/9599 SMP hang after reseting CPU 1 o [1999/01/21] kern/9612 grog NFS mounts on dual-homed server may hang o [1999/01/22] docs/9618 doc many typos in groff_mm(7) o [1999/01/23] ports/9641 itojun tiff port upgraded to 3.4-beta37 o [1999/01/24] ports/9665 ache cannot start apache server o [1999/01/24] ports/9666 jseger tcl/tk applications crash when seeing CES o [1999/01/25] kern/9673 ISO CD-ROM Problem o [1999/01/25] ports/9688 ports The current tcl80 port has problems, does o [1999/01/26] bin/9695 a typo in /usr/obj/aout/usr/src/tmp/usr/i o [1999/01/28] ports/9757 ports can't make package o [1999/01/28] i386/9759 Tar process hangs on buggy tapes o [1999/01/30] ports/9819 ports Port fix: ncurses o [1999/01/31] bin/9849 mknod is missing from libc_r o [1999/02/01] kern/9862 system crashes writing to msdos jaz disk o [1999/02/01] ports/9870 ports 2.2.8-19990120-SNAP package errors o [1999/02/01] kern/9876 IDE CD-ROM not detected when no IDE disks o [1999/02/02] kern/9883 MGET()(and variants) return NULL with M_W o [1999/02/03] kern/9894 FreeBSD crash totaly when "mount /dev/fd o [1999/02/04] misc/9903 thread enabled program can't use popen/sy o [1999/02/04] kern/9910 Heavy traffic renders FreeBSD acting as f o [1999/02/05] ports/9919 ports mrt on 3.0-STABLE does not compile as is s [1999/02/06] kern/9927 gibbs the ahc driver doesn't correctly grok swi o [1999/02/06] i386/9933 No error reported writing to write-protec o [1999/02/06] kern/9935 vmstat reprots bad AVM values o [1999/02/06] gnu/9938 NetBSD *1.4* was not defined in mdoc macr o [1999/02/07] i386/9942 File "libkrb.so.3" missing and needed by o [1999/02/07] ports/9949 ports SKIP is an LKM and will not work with 3.0 o [1999/02/08] kern/9961 When loading if_ppp_mod.o system crashes, o [1999/02/08] i386/9962 Install Panics in with integer divide fau o [1999/02/08] kern/9974 Large amounts of kernel clock drift with o [1999/02/08] ports/9975 ports new port of xqf (find quake servers) o [1999/02/09] kern/9980 savecore fails with large (2gig+) swap pa o [1999/02/09] bin/9982 inet_addr(3) should be return 32bit uint. o [1999/02/09] ports/9989 ports [SECURITY] Latest ProFTPD and Wu-ftpd may o [1999/02/10] misc/10009 jdp dlopen will crash when opening some strip o [1999/02/10] kern/10013 msdos floppy disk mounts o [1999/02/11] kern/10021 MOUNTING A EXT2FS A AFTER MOUNTING AN MSD o [1999/02/11] kern/10029 many vm_fault: pager read errors o [1999/02/11] bin/10031 ypxfr does not work with Solaris master s o [1999/02/11] bin/10039 Binaries from a "fixit" CD can't find ld- o [1999/02/12] docs/10059 doc MALLOC(9) manpage not updated to reflect o [1999/02/13] kern/10066 problem with a X-Window and syscons drive o [1999/02/13] bin/10071 flags given to chflags depend on sequence o [1999/02/14] docs/10086 doc FAQ font too large o [1999/02/14] i386/10089 ATAPI tape driver (wst) doesn't handle En o [1999/02/14] ports/10094ports autogeneration of msql user failed o [1999/02/14] ports/10097ports new port - kvirc o [1999/02/15] kern/10107 interlock situation with exec_map and a p o [1999/02/16] kern/10125 yokota Screen saver crashes o [1999/02/17] kern/10132 unable to record kernel -c changes o [1999/02/17] ports/10133ports KDE changed path on their ftp server o [1999/02/17] docs/10135 doc Change to Documention Regarding Upgrades o [1999/02/18] kern/10145 ELF interpreter loading in chrooted situa o [1999/02/18] i386/10150 Compaq fxp0 Does not work on 3.0 or 3.1 b o [1999/02/18] i386/10151 ATAPI CD problem o [1999/02/18] kern/10154 System is unable to sync the disks when i o [1999/02/19] conf/10163 init does not start when /var/msgs is a s o [1999/02/22] ports/10197ports New Port: naim-0.9.3 o [1999/02/22] kern/10209 natd stopped to worked since i upgraded f o [1999/02/23] kern/10226 Filesystem stress test crashes FreeBSD 3. o [1999/02/23] bin/10230 -T and -B not implemented on filehandles o [1999/02/25] ports/10234ports New port of libimg for Tcl/Tk image handl o [1999/02/25] conf/10258 userconfig settings lost on 3.1-RELEASE o [1999/02/25] misc/10259 FTP install hangs for 3.1-RELEASE o [1999/02/25] bin/10264 passwd(1) tryis NIS even with `-l' switch o [1999/02/25] kern/10265 file locking does not work with kernel pt o [1999/02/25] kern/10266 gibbs SCSI scanner times out when scanning o [1999/02/25] docs/10269 doc manpage have wrong information about syml o [1999/02/25] ports/10271ports New port of the Postilion mail client o [1999/02/26] kern/10280 Display Adapters (PCI) probed wrong way - o [1999/02/27] ports/10296ports Fails to add packages from a 2.2.6-RELEAS o [1999/02/27] ports/10299ports pkg_add: could not find package XFree86-3 o [1999/02/28] misc/10302 installer o [1999/02/28] bin/10312 ken pciconf -l generates output incompatible o [1999/02/28] kern/10316 le0 goes OACTIVE after some time o [1999/03/01] conf/10330 I can't create a 5th fdisk partition; I w o [1999/03/01] bin/10341 memory leak in setenv(3) o [1999/03/02] bin/10353 ypserv gets segmentation violation o [1999/03/02] bin/10366 /usr/libexec/ld-elf.so.1: Invalid File Fo o [1999/03/03] ports/10373ports Increasing kernel file descriptors causes o [1999/03/03] kern/10376 yokota Screen saver panics o [1999/03/03] kern/10381 hlfsd/NFS failure -- directory cached bet o [1999/03/04] kern/10387 2.2.7 hangs when trying to write on defec o [1999/03/05] kern/10402 times(3) non-decreaseness broken in 4.0 o [1999/03/05] kern/10411 top, vmstat, iostat show 0% cpu idle & us o [1999/03/06] misc/10418 libpam is built before libradius/libtacpl o [1999/03/06] ports/10453ports Patch to update gxedit from version 1.20 o [1999/03/07] kern/10466 resume causes crashes if BIOS extmem != R o [1999/03/07] i386/10468 tftpd becomes zombie after one use hangin o [1999/03/07] ports/10480ports tk81 will not *compile* with threaded app o [1999/03/08] kern/10492 broadcast IP address can be set on interf o [1999/03/09] bin/10510 Remote cvs botches commits on occassion o [1999/03/09] bin/10511 incorrect return value in kvm_read(3) and o [1999/03/09] kern/10519 Pine 4.10 build gives spurious "No space o [1999/03/10] i386/10533 A bug in the meteor driver causes kernel o [1999/03/10] kern/10535 Very poor ethernet performance with tx dr o [1999/03/11] ports/10541ports [PATCH] fix for security/stunnel port o [1999/03/11] ports/10552ports Make balsa build again o [1999/03/11] bin/10553 syslogd suddenly stopped logging o [1999/03/13] kern/10570 Route delete with many routes on single i o [1999/03/13] ports/10579ports Error with Network discovery in tkined (p o [1999/03/14] kern/10581 Kernel panic while using find on an ext2 o [1999/03/14] kern/10594 EXT2FS mount problems o [1999/03/14] bin/10596 I can't find out where someone is logged o [1999/03/15] ports/10598jfitz net/mrtg port doesn't change /usr/bin/per o [1999/03/15] misc/10599 [PATCH included]malloc/free breaks in cer o [1999/03/15] ports/10600ports ssh2 port doesn't symlink /etc/ssh2 which o [1999/03/15] kern/10603 Random system panics o [1999/03/15] kern/10607 Fast forwarding breaks when arp cache exp o [1999/03/16] bin/10615 make installworld DESTDIR=/some/dir o [1999/03/16] kern/10616 MSP3400C audio chip from Hauppauge WinTV- o [1999/03/16] ports/10625ports XFree86 aout library support incorrect o [1999/03/16] i386/10626 RTC BIOS diagnostic error on install o [1999/03/16] bin/10633 [patch] tcpslice timezone problem and upd o [1999/03/17] i386/10646 Bridge code missing from ed0 driver in 3. o [1999/03/18] ports/10665ports ports/graphics/sane needs access to /dev/ o [1999/03/19] kern/10671 setlogin(2) return EINVAL for length of n o [1999/03/19] docs/10675 doc Add fix versions/date to web page o [1999/03/19] kern/10676 3.1-RELEASE deadlocks under load with pro o [1999/03/19] ports/10681ports lessitf can't find X11 Revision 5 or high o [1999/03/20] kern/10695 fd fails for all operations o [1999/03/20] kern/10698 de driver doesn't work with some tulip bo o [1999/03/21] i386/10709 wdc0 not found at 0x1f0 o [1999/03/21] ports/10721ports Lesstif fails to compiled with Internal c 586 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- a [1995/01/11] i386/105 bde Distributed libm (msun) has non-standard s [1995/01/14] bin/115 systat iostat display doesn't scale high s [1995/05/13] bin/401 Add REMOTE_* variables 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 s [1996/06/11] bin/1312 automounter hangs on boot s [1996/06/13] bin/1320 dump limits blocksize to 32K 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 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/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] misc/1791 syslimits.h does not allow overriding def o [1996/10/20] bin/1849 gdb sets library breakpoints on the wrong 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/19] bin/2065 in tzsetup/sysinstall, allow user to type 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 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/08] bin/2184 peter sendmail has lots of trouble with local d s [1996/12/12] kern/2199 joerg [PATCH] Got a lots of "Target Busy" messa s [1996/12/14] bin/2216 [PATCH] Ada specs not being compiled into 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 brandon 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/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/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/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/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/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/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/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/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 [PATCH] uucpd.c should normalize host nam 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 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 [PATCH] /etc/daily did not run on April 6 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/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/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 luigi 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 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/07] bin/3805 single process tftpd o [1997/06/09] bin/3826 KerberosIV sometimes hangs rcp o [1997/06/10] bin/3837 dufault new feature for rtprio o [1997/06/12] kern/3853 luigi 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/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] 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/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/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] 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 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] misc/4395 if exists(secure) in /usr/src/Makefile is 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 luigi asc.c and pcaudio.c should use selrecord 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/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 o [1997/10/15] gnu/4771 diff to correct misleading total bytes in o [1997/10/22] bin/4828 ypxfr makes false assumption about RPC ca o [1997/10/23] docs/4833 doc Manual page missing for pccardc 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 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/11] kern/5009 ibcs2 emulation o [1997/11/11] kern/5011 rndcontrol -s 8 causes kernel panic 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 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] kern/5059 peter mountd, nfsd, etc. fail when lp0 defined o [1997/11/15] kern/5060 Kernel doesn't compile with mss 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 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 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] conf/5213 My SB AWE64 isn't being recognized. o [1997/12/09] bin/5263 sh bug (with example) 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 o [1997/12/22] kern/5362 peter mount incorrectly reports / as an NFS exp 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/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) @ 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/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] 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/31] bin/5609 lpd cannot send long files to HP's JetDir a [1998/02/02] ports/5626 billf 'ldap' port eats all available CPU time o [1998/02/02] kern/5627 Tertiary/Quaternary IDE Ctlrs: A few kern 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/09] kern/5689 sysctl vm.vmmeter - bogus and unsupported 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 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 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] misc/5803 "tab" function from "ee" not compatible w 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 nik [PATCH] Update web.mk to handle SGML file s [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] kern/5863 Kernel support for sorted SHUTDOWN & SHUT 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/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/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/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] misc/6060 peter Sendmail executable, not doing MASQUERADE o [1998/03/18] bin/6064 Script to update files installed by /usr/ o [1998/03/22] conf/6096 /sys/i386/conf/LINT: edit(???) sound_conf o [1998/03/22] gnu/6107 gdb should support PRINTF_HAS_LONG_LONG o [1998/03/27] bin/6144 telnet for 8-bit data path 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 peter another squid ports 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/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] ports/6230 rse 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 f [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/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/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: qplug - Netscape plugin to show o [1998/04/20] bin/6359 routed does sent router discovry solicita o [1998/04/20] ports/6361 ports New port: GNU Pascal Compiler s [1998/04/20] bin/6371 [PATCH?] fetch(1) uses HTTP_PROXY for ftp o [1998/04/23] ports/6393 ports New port: MultiMedia package - CD player, f [1998/04/23] bin/6399 [PATCH] When using "-u" mount doesn't sta 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 jkoshy New port: `fhist' 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/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 o [1998/05/07] ports/6541 ports New port: math/dc o [1998/05/07] kern/6544 luigi 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/10] ports/6570 ports New port: java CUP parser o [1998/05/11] i386/6595 Old IP address persistent after change o [1998/05/12] misc/6612 bsd.man.mk can't handle man pages with ": o [1998/05/13] 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] 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/6699 ports New port: the Generic NQS system o [1998/05/21] ports/6709 ports New port kmessage s [1998/05/21] conf/6711 [PATCH ?] I've seen that fortune before 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 o [1998/05/26] kern/6769 peter panic: nfs rcvunlock 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 o [1998/05/29] bin/6795 steve send-pr does not parse problem reports co 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 o [1998/06/06] kern/6874 accounting prevents transition to multi u 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/18] kern/6981 CD unmount w/o CD in drive can cause pani s [1998/06/19] bin/6995 [patch] Minor flaw in fdformat s [1998/06/19] bin/6997 [patch] vnconfig "open" error message con 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 f [1998/06/23] kern/7029 gibbs cdrecord and aic7880 troubles f [1998/06/23] i386/7031 Our RocketPort port does not support DEVF s [1998/06/24] kern/7044 [PATCH] WaveLAN (2.4G, ISA, full-length b 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 f [1998/06/25] bin/7068 markm /usr/bin/perl: library path addition 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/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 s [1998/07/01] bin/7136 kerberized telnetd doesn't use gettytab % 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/05] kern/7177 [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/08] kern/7210 [PATCH] od(4) bug fixes and enhancements, 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 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] 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] bin/7294 lpr -r file fails to remove file because 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/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/21] conf/7348 Default answer 'NO' in network configurat o [1998/07/21] bin/7352 libc generates spurious warnings when use o [1998/07/21] docs/7359 obrien amd documentation problems a [1998/07/23] ports/7375 dburr New port request: audio/xsplay f [1998/07/23] kern/7377 we have a new digiboard driver supporting s [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 s [1998/07/29] i386/7426 Bugs in macro definitions of pthreads. o [1998/07/30] misc/7455 jkh trailing spaces on mountpoint hangs sysin s [1998/07/31] docs/7456 doc dialog(3) man page outdated o [1998/08/01] ports/7464 dburr New port: WMakerconf o [1998/08/03] ports/7480 ports New Port afbackup-3.0.4 o [1998/08/03] ports/7485 vanilla New port: Xterminal-0.2 s [1998/08/06] i386/7510 [PATCH] syscons and vidcontrol to support o [1998/08/08] ports/7532 ports New port: ipltd-2.01 s [1998/08/09] kern/7546 [PATCH] [STABLE ?]shutdown -p - system po s [1998/08/10] docs/7567 doc pccardc has no man page f [1998/08/12] kern/7589 Tulip Driver parses SROM contents wrong f [1998/08/13] conf/7606 NIS Makefile.dist: NOPUSH replaced by REM o [1998/08/13] bin/7607 GTAGS patch for nvi has posibility of buf o [1998/08/14] kern/7619 odd nfs server not responding messages ap o [1998/08/16] ports/7628 dburr new port: sajber-jukebox o [1998/08/16] bin/7632 Race condition in /stand/sysinstall o [1998/08/17] ports/7652 torstenb mirror installation does not point at loc o [1998/08/18] ports/7659 ports New port: pfx-0.1.1 o [1998/08/18] bin/7669 libalias does not IRC DCC packets under c o [1998/08/19] conf/7676 3.0 make world on 2.2 problems a [1998/08/19] ports/7680 billf New port of tn5250 o [1998/08/19] conf/7682 Cron logfile in the wrong place o [1998/08/19] gnu/7687 description of default baud rate for cu c o [1998/08/20] kern/7693 Misleading warning in cblock_alloc_cblock o [1998/08/20] bin/7694 bogus error-message from route(8) o [1998/08/21] ports/7701 ports New port: drmario-1.0 o [1998/08/22] kern/7722 Changes to acct format o [1998/08/23] bin/7728 ftpd processes hang o [1998/08/24] ports/7734 ports update atari800 - upgrade to the latest v a [1998/08/25] misc/7741 enhancement to tcpdump to print LCP/PAP/C o [1998/08/27] bin/7753 arp command fails silently on invalid pro o [1998/08/27] misc/7759 proflibs installation error, libcrypt_p.a o [1998/08/28] misc/7771 Debugging putenv/getenv o [1998/08/29] ports/7774 torstenb sshd doesn't refuse to login people with o [1998/08/29] bin/7779 [PATCH] modload should detect stripped ke o [1998/08/30] kern/7782 Kernel rebuild not correctly responding t o [1998/08/30] bin/7786 quota.h has superfluous semicolon in macr o [1998/08/31] docs/7791 doc ipf(1) and ipfstat(1) should have been ip o [1998/09/01] gnu/7800 tar(1) does not recognize --gunzip option o [1998/09/02] kern/7812 APM machines should attempt to power down o [1998/09/02] ports/7814 andreas postgreqsl docs are broke o [1998/09/02] i386/7816 [Patch] NE2000 PnP card IDs to sys/i386/i o [1998/09/03] docs/7819 doc nroff macro problem(miss reformated) in d o [1998/09/03] bin/7826 ls(1) knows too much about format of strf o [1998/09/03] ports/7827 ports New port: garith-2.1 o [1998/09/03] bin/7828 Add a command line option to cp to make i o [1998/09/04] docs/7833 doc awk.1 contains typos. o [1998/09/05] kern/7837 patches to add a p_auth extension pointer o [1998/09/07] ports/7845 tg Unbuffered /dev/vx0-output from Python 1. o [1998/09/07] bin/7846 /sbin/mount_* do not canonicalize the mou o [1998/09/07] ports/7848 markm Update ports: lang/perl5 (pkg_delete prob o [1998/09/07] misc/7850 lt_LT.* locale o [1998/09/07] misc/7851 steve looks like send-pr discards bug report wi o [1998/09/07] bin/7855 cpp should define __ELF__ if objformat = o [1998/09/07] kern/7856 Patches to add lkm hooks to cmsg_data anc o [1998/09/08] bin/7860 Extra option to pr(1). s [1998/09/08] bin/7868 [almost patch]Morse Code Fixups o [1998/09/08] bin/7869 Improved error messages from apm o [1998/09/09] misc/7873 poor initial configuration and documentat f [1998/09/09] ports/7875 dwhite NEW PORT: lcdproc o [1998/09/11] bin/7895 multiple identical NFS mounts accepted o [1998/09/11] kern/7903 unmatched '{}' blocks. o [1998/09/12] bin/7907 ipfw command line parsing o [1998/09/13] docs/7914 doc no elf(5) manpage o [1998/09/13] misc/7919 general problems with the termcap databas o [1998/09/14] conf/7928 Patch to allow execution of an IPFW shell o [1998/09/15] ports/7932 torstenb man zshall doesn't work o [1998/09/16] bin/7944 `restore f foo' gets sigsegv o [1998/09/16] misc/7946 ccdconfig gives confusing error when give o [1998/09/17] bin/7962 /usr/bin/ee prompts "save changes" when f o [1998/09/18] bin/7973 lpd: Bad control file owner in case of re o [1998/09/18] kern/7976 VM86 comment in LINT is incomplete o [1998/09/19] kern/7990 patch - teach kernel about RB_POWEROFF fl o [1998/09/19] ports/7992 ports New port: xemacs20-stepwise (XEmacs20 hac o [1998/09/20] bin/7998 pkg_add seems to have unneeded umask o [1998/09/20] misc/8005 yokota Keyboard freezes going from KDE to text m o [1998/09/21] kern/8011 libc_r does not have pread() or pwrite() o [1998/09/21] kern/8015 [patch] Some sysctl descriptions for the o [1998/09/24] ports/8042 torstenb If pidentd dies, you must kill all telnet o [1998/09/26] bin/8060 install ignores the +X mode flag o [1998/09/27] conf/8061 profiling utilities seperate from profili o [1998/09/27] ports/8063 asami [PATCH] Add multiple CDROM support to bsd a [1998/09/28] ports/8078 luigi port audio/nas fails for me o [1998/09/28] bin/8083 Game cleanup from NetBSD o [1998/09/29] bin/8084 NIT: non-working code in rshd o [1998/09/29] bin/8087 rbootd does work according to specs o [1998/10/02] i386/8131 [patch] Support for PCI NE2000 compatible o [1998/10/03] misc/8133 markm [patch] bug in telnetd (Kerberos IV) o [1998/10/03] bin/8134 End of game is not recognised immediately o [1998/10/03] misc/8139 [patch] missing /usr/src/share/examples/d o [1998/10/04] bin/8142 freebsd 2.2.7 implementation of key(1) [s o [1998/10/04] i386/8146 [patch] kzipboot serial console setup and a [1998/10/06] bin/8163 [patch] It is impossible to assign quotas o [1998/10/06] bin/8164 [patch] repquota incorrectly reports quot o [1998/10/06] i386/8171 [patch] Intel EtherExpress Pro 100 suppor o [1998/10/07] misc/8202 semop() is not wrapped for thread safety o [1998/10/08] bin/8211 Script to search kernel for an address o [1998/10/08] ports/8217 ache www/netscape4-*: avoid `ns-install' o [1998/10/12] bin/8279 [patch] /usr/sbin/sysctl -> ${DESTDIR}/sb o [1998/10/12] bin/8295 order of options in printcap causes some f [1998/10/13] ports/8299 ports new port for games/xbd (Boulder Dash) f [1998/10/13] bin/8301 des "ls -B" and "ls -b" misprint o [1998/10/13] conf/8303 3.0-981009-BETA can't make swap device on o [1998/10/13] conf/8306 [patch] NATD get loaded late in bootseque o [1998/10/13] i386/8308 jkh Host/Domain 'problem' in install script/p o [1998/10/13] kern/8311 kernel panic on de0 o [1998/10/16] misc/8346 Strftime can't generate ISO-8601 timezone o [1998/10/16] bin/8347 /usr/lib/compat build issues in 3.0 RELEA o [1998/10/16] bin/8348 [PATCH] zforce(1) is broken: fix o [1998/10/16] kern/8349 [PATCH] Changer definition for SureStore f [1998/10/17] misc/8357 Segmentation fault while making SWARM-1.3 f [1998/10/17] bin/8367 /stand/sysintall is screwing up my /etc/r o [1998/10/19] kern/8376 CLOCK_VIRTUAL not implemented o [1998/10/19] misc/8378 Is termcap not maintained enough ? o [1998/10/21] bin/8405 There is extra ping.o o [1998/10/22] kern/8420 __getcwd() from an (forcibly) unmounted f o [1998/10/23] kern/8428 Is FreeBSD 3.0-RELEASE support 640MByte M o [1998/10/24] misc/8434 boot.flp /bin/init crashes during probe w o [1998/10/24] i386/8436 boot.flp sysinstall crashes when probing o [1998/10/24] bin/8438 ex/vi: Error: tcsetattr: Interrupted syst o [1998/10/25] kern/8444 pcvt with more than 8 virtual consoles o [1998/10/25] docs/8445 doc Update of "Installing Mathematica on Free o [1998/10/26] kern/8456 SMP kernel fails with Everex PO-6200 Dual o [1998/10/27] docs/8464 doc Missing include file wh o [1998/10/27] bin/8466 bind man pages not installed by 3.0 make o [1998/10/27] ports/8470 ache Update port: www/netscape4-* f [1998/10/27] docs/8472 billf da(4) references nonexistent da(9) o [1998/10/27] i386/8474 repquota does not pick up NIS information o [1998/10/28] bin/8479 Final \'s in /etc/exports did not work in o [1998/10/30] kern/8498 Race condition between unp_gc() and accep o [1998/10/30] bin/8501 snake has a segmentation fault depending o [1998/10/30] conf/8517 rc.conf/rc fails to set ldconfig -aout o [1998/10/31] misc/8519 Murphy's Laws o [1998/10/31] ports/8521 itojun Some manpages are not usable with tiff-3. o [1998/11/01] conf/8531 sysinstall on 3.0-RELEASE (and 3.0-curren o [1998/11/02] docs/8547 doc Various updates to authors.sgml, printing o [1998/11/03] kern/8550 strip kernel before moving it during make o [1998/11/03] bin/8553 /usr/libexec/mail.local doesn't handle "> s [1998/11/03] kern/8560 des [REMINDER] bpfilter is deprecated and sho o [1998/11/04] i386/8571 Bug in config utility in FreeBSD 2.2.6-RE o [1998/11/07] ports/8586 ports new port: misc/kmamerun o [1998/11/07] kern/8589 incorrect spelling for "dependency" and " o [1998/11/07] i386/8598 MAKEDEV fails if not run from current dir o [1998/11/08] docs/8602 doc symlink(7) manpage says that file(1) has o [1998/11/08] kern/8604 ps u gets confused about process start ti o [1998/11/08] kern/8605 ipsec for ipv4, new version o [1998/11/08] docs/8611 doc kld man page o [1998/11/08] ports/8620 asami New option to colorls - -K, color only to o [1998/11/09] bin/8631 pci interrupts are shown on EISA only mac o [1998/11/09] kern/8633 TCP packet via SLIP/CSLIP containing this o [1998/11/09] bin/8637 fgetpos()/fsetpos() don't work for >2GB f o [1998/11/10] docs/8640 doc proposed change of 4.5 o [1998/11/11] ports/8651 ports I create a new ports about wget o [1998/11/11] misc/8654 SYSV options allow WINE to run, but Netsc s [1998/11/12] kern/8661 stb sys/netatalk/at_control.c needs to correc o [1998/11/12] bin/8665 billf /usr/bin/mail -u user not worked if exist o [1998/11/12] bin/8666 X blocks serial port with getty process o o [1998/11/12] i386/8670 aout libcompat placed in /usr/lib/compat o [1998/11/13] ports/8675 ports new port: x11-toolkits/gtkstep11 o [1998/11/13] gnu/8679 tar man page should be updated o [1998/11/14] bin/8681 other macro name that has same number is o [1998/11/14] docs/8682 doc some small bug fixes to ld.1 o [1998/11/15] ports/8696 ports New port: psi88 o [1998/11/15] kern/8703 NFS Freezes when copying files from 3.0 t o [1998/11/18] kern/8747 [PATCH] fixes for systags.sh o [1998/11/18] ports/8754 se KDE: KDM Display Manager has login proble o [1998/11/18] bin/8756 'pw' command additional feature request o [1998/11/19] misc/8764 pwd_mkdb is slow on many users o [1998/11/19] docs/8765 doc some suggested text for describing passwo o [1998/11/21] ports/8789 ports Port created for Lucent Technology's Csco o [1998/11/22] ports/8795 ports xgal.sndsrv.freebsd.c is out of sync with o [1998/11/22] bin/8809 fdisk calls QNX-4 partitions unknown o [1998/11/22] bin/8811 Problem to use 'NLSMODE' variable in Make f [1998/11/23] ports/8816 ports New port: ptc-2.0.10 a [1998/11/23] kern/8826 ken LINT bug with CAM pass devices o [1998/11/24] ports/8838 billf New port of GNU getopt. o [1998/11/24] docs/8858 doc man page for accept() is flawed o [1998/11/25] ports/8863 ports [Reviced] New port: mopac7 a [1998/11/25] ports/8864 billf useradd - system V compatible implementat o [1998/11/27] i386/8867 /stand/sysinstall core dumps (signal 11) o [1998/11/28] bin/8880 billf cp missing verbose switch o [1998/11/28] bin/8881 billf mv missing verbose switch o [1998/11/29] kern/8895 DEC 21152 PCI-PCI bridge chip isn't probe o [1998/11/29] kern/8898 PCI devices without an associated driver o [1998/11/29] ports/8899 ports New port: qmail-contrib o [1998/11/29] ports/8900 ports New port: mail/qmailanalog o [1998/11/30] bin/8905 suggested change of 'ipfw show' layout o [1998/11/30] misc/8907 missing symlink, Xmmix: no help o [1998/11/30] ports/8908 gpalmer snmpd does not return ifPhysAddress on GE o [1998/11/30] bin/8913 negative time values for csh 'time' built o [1998/12/01] ports/8917 obrien gcc-2.8.1 incorrect g++ linker call o [1998/12/01] ports/8920 ports netscape java displaying on ncd xterm cra o [1998/12/01] i386/8923 ctm 2.2.5 -> 2.2.7 error hu_HU.ISO_8859- o [1998/12/01] kern/8925 options kern file needs AWE_DEFAULT_MEM_S o [1998/12/02] ports/8943 ports New port: InterNetNews 2.2beta2 o [1998/12/02] ports/8945 se kde "metaport" looking for wrong jpeg lib o [1998/12/03] i386/8953 BINFORMAT not defined in 2.2-STABLE o [1998/12/03] bin/8955 request CVS allow advisory locks on repos o [1998/12/04] kern/8960 lnc driver does not set IFF_MULTICAST o [1998/12/04] bin/8966 yp_mkdb does not accept standard automoun o [1998/12/06] misc/8986 install-info breaks installworld over nfs o [1998/12/06] bin/8989 (patch) chflags support for mtree(8) o [1998/12/08] bin/9012 route add -host hostIP -interface localIP o [1998/12/08] kern/9026 natd o [1998/12/10] ports/9047 jmz cd ports/x11/XFree86;make install fails i o [1998/12/10] conf/9051 2.2.8R boot floppy won't write to fixit f o [1998/12/11] bin/9055 When used without arguments, ``set'' and o [1998/12/12] bin/9064 [PATCH] propose adding `direct' option in o [1998/12/14] bin/9078 tunefs cant access mounted devices (vs. m o [1998/12/14] ports/9083 markm apache12-ssl won't compile o [1998/12/15] ports/9089 obrien egcs-1.1.1 exceptions are not caught, bu o [1998/12/15] kern/9092 DELF raid volumes cause panics under CAM o [1998/12/16] i386/9102 Voxware does not provide /dev/mixer for E o [1998/12/16] ports/9107 asami Addition to bsd.port.mk for searching mul o [1998/12/17] bin/9118 default install of aout compat libs is in o [1998/12/18] bin/9123 pax can't read tar archives that contain o [1998/12/19] bin/9135 tar doesn't back up device files o [1998/12/20] ports/9142 ports Re-work patches to configure script to be o [1998/12/20] kern/9144 luigi acd driver inconsistency (byte order in C o [1998/12/20] ports/9150 nate Ports depending on jdk need to know where o [1998/12/21] conf/9160 /etc/services file corruption o [1998/12/22] gnu/9175 [Patch] eliminate dead code in F77.c o [1998/12/22] bin/9176 dillon placemark to split mount_ufs out of mount o [1998/12/23] kern/9183 newton chroot(2) can be broken by the superuser. o [1998/12/24] misc/9187 [PATCH] pccard.conf entry for 3Com/NoteWo o [1998/12/24] bin/9188 telnet gets stuck in ttydrain() o [1998/12/25] docs/9193 doc Incorrect release date for FreeBSD 2.0 in o [1998/12/27] bin/9206 sysinstall installation should create /st f [1998/12/28] misc/9220 nvi: catalog: mistake in Russian error me o [1998/12/28] misc/9223 "make installworld" changes ownership of o [1998/12/28] bin/9226 telnetd can log wrong IP address to utmp o [1998/12/28] docs/9228 doc AMD's texinfo doc doesn't get installed o [1998/12/28] ports/9231 vanilla New port Mars_nwe 0.99pl14 o [1998/12/29] bin/9233 gmp's mpq_add and mpq_sub are buggy o [1998/12/30] conf/9245 obsolete locale setting in /usr/src/etc/{ o [1998/12/30] conf/9246 allscreens_flags in /etc/rc.conf not work o [1998/12/30] bin/9250 [PATCH] allow fetch to do ftp directory l o [1998/12/31] bin/9253 received packets piling up on natd's ICMP o [1998/12/31] i386/9257 fpathconf() missing from libc_r o [1998/12/31] bin/9259 allow no prompt for yes in fdformat, but o [1999/01/01] bin/9263 Database of units(3) misses euro-currency o [1999/01/01] docs/9264 doc Incorrectness in tsort(1) manpage. o [1999/01/02] docs/9276 doc Some typos and fragmented coincidence of o [1999/01/02] bin/9281 awk asumes memory that is returned from m o [1999/01/03] i386/9283 ioctl(SNDCTL_DSP_SETFMT) on /dev/audio (p o [1999/01/03] bin/9285 pw strips comments from group file o [1999/01/03] ports/9286 andreas Patch for games/nethack-qt to fix compila o [1999/01/03] docs/9288 doc typo in doc/FAQ/preface.sgml o [1999/01/03] ports/9289 kris New Port - ASPostit (Dockable version of o [1999/01/04] bin/9308 [PATCH] Flood ping doesn't flood o [1999/01/04] kern/9316 Intel PILA8461 NIC panics 2.2.7 during pr o [1999/01/04] bin/9318 vgrind(1): no JAVA support o [1999/01/04] i386/9319 D-Link DE-528CT poor performance o [1999/01/05] bin/9333 timestamp dump's progress o [1999/01/05] i386/9341 tty-level buffer overflows o [1999/01/06] bin/9349 make doesn't diagnose non-numeric argumen o [1999/01/06] docs/9352 doc wrong macro names in groff_[ms|mm|mmse].7 o [1999/01/07] ports/9366 ports New port of icmpquery o [1999/01/07] bin/9374 Improved functionality for find(1) o [1999/01/07] docs/9375 ports Information on how to build PLIST automat o [1999/01/08] conf/9388 magic(5) correction for wordperfect o [1999/01/08] kern/9392 Alternate system clock OR kernel stats cl f [1999/01/10] ports/9425 se KDE starting up from xdm has problem.... o [1999/01/11] ports/9452 ports New port for itk-3.0.1 o [1999/01/11] ports/9453 ports New port for itcl-3.0.1 o [1999/01/11] ports/9454 ports New port for iwidgets-3.0.0 o [1999/01/12] docs/9455 doc cvsup and ftp server in Czech Republic o [1999/01/13] bin/9470 aout-to-elf-build broken with kerberosIV- o [1999/01/13] bin/9471 msgs: /var/msgs/bounds: No such file or d o [1999/01/13] kern/9474 "comcontrol rescan 0:8:0" hangs, causes o o [1999/01/14] bin/9494 new option to prevent mail from sending m o [1999/01/14] misc/9500 `edithook' is not Y2K compliant o [1999/01/14] bin/9501 Several cvs contrib files are not Y2K com o [1999/01/14] bin/9502 `me' macro documentation incorrectly defi o [1999/01/14] ports/9508 andreas Update majorcool to current version 1.3.2 o [1999/01/16] misc/9524 /usr/share/examples/libvgl/demo looks lik o [1999/01/16] bin/9529 ftp filname completion can't handle space o [1999/01/17] bin/9536 make world installs aout compat libs in t o [1999/01/19] misc/9564 jkh The man page of sysinstall is not install o [1999/01/19] bin/9569 top(1) ignores tty EOF condition. o [1999/01/19] kern/9570 ed(4) irq config enhancement o [1999/01/19] ports/9571 ports New ports for netscape plug-in, named "pl o [1999/01/19] bin/9573 ksrvtgt not working o [1999/01/20] docs/9581 doc Wrong word order on docproj/translations. o [1999/01/20] misc/9582 configApache command doesn't work for /st o [1999/01/20] kern/9590 Clean up for -Wall warnings o [1999/01/20] kern/9591 Linux compat getrlimit/setrlimit constant o [1999/01/21] ports/9604 ports Minor improvements to ucspi-tcp port o [1999/01/21] ports/9608 ports Linux Communicator 4.5 o [1999/01/21] kern/9611 MFS calculates the size incorrectly when o [1999/01/21] bin/9613 [PATCH] IPFW command-line parsing error o [1999/01/21] ports/9615 ports explorer port fails to build, can't find o [1999/01/22] kern/9619 Restarting mountd kills existing mounts o [1999/01/23] misc/9638 Typo error in Italian locale o [1999/01/23] misc/9639 /etc/security reports missing passwords o o [1999/01/23] ports/9649 ports abc2ps port a [1999/01/24] ports/9657 ports Progressive Networks' RealAudio proxy por o [1999/01/24] docs/9658 doc tar(1) SYNOPSIS refinement o [1999/01/25] ports/9672 ports New port: misc/xtail o [1999/01/25] kern/9679 fix for uninterruptible open in portal fi o [1999/01/25] ports/9686 ports Update of the nn-6.5.3 port o [1999/01/25] kern/9689 panic in sbdrop(kern/uipc_socket2.c) o [1999/01/25] ports/9694 stb netatalk-asun nits o [1999/01/26] bin/9696 Added ability to specify port ranges in n o [1999/01/26] ports/9699 ports Reorganization the x11-toolkits/xview por o [1999/01/26] ports/9700 ports Reorganization the x11-toolkits/xview-cli o [1999/01/26] bin/9703 typo in login.conf o [1999/01/26] ports/9704 ports Minor fixes to olvwm o [1999/01/26] docs/9707 doc New entry for FAQ o [1999/01/26] ports/9710 ports NN-6.5.3 with NOV enabled can't find .ove o [1999/01/26] bin/9711 Fails: cd /usr/bin; gzip file ; mv file. o [1999/01/27] ports/9719 ports New port: misc/fortuneit o [1999/01/27] i386/9721 Patch for FreeBSD netboot (booting via DO o [1999/01/27] ports/9726 ports new ports ( devel/swarm ) o [1999/01/27] ports/9734 ports TclDP-4.0b2 port added o [1999/01/27] ports/9736 andreas PostGreSQL configure failing on 4.0 o [1999/01/27] ports/9739 ports Update to math/metis port o [1999/01/27] ports/9740 ports New port: cm postscript fonts by AMS o [1999/01/27] ports/9741 ports New port: ams postscript fonts by AMS o [1999/01/28] ports/9745 ports Ports changes for SWARM ports ( ports/972 o [1999/01/28] kern/9748 error in queue handling of at_shutdown() s [1999/01/28] bin/9758 billf ftpd allows anonymous logins when /etc/no o [1999/01/28] kern/9764 allow /bin/df not to list certain entries o [1999/01/28] bin/9770 An openpty(3) auxiliary program o [1999/01/29] docs/9773 doc Handbook 4.7.1.4. "Testing the port" is i o [1999/01/29] i386/9777 luigi Generic AD1816 sound suport in Luigi's pc o [1999/01/29] misc/9778 Need to handle conflicting pthread.h and o [1999/01/29] ports/9780 ports new port: x11-clock/wmcalclock o [1999/01/29] misc/9782 minor problem with telnet and /etc/gettyt o [1999/01/29] ports/9783 ports new port: lang/pike o [1999/01/29] ports/9786 cwt tk80 port doesn't create man page links o [1999/01/29] ports/9787 cwt tcl80 port doesn't make man page links o [1999/01/30] kern/9791 enhancement for netinet/ip_icmp.c to cont o [1999/01/30] ports/9792 msmith pib coredumps in port maker mode o [1999/01/30] bin/9793 locate.updatedb is noisy o [1999/01/30] ports/9795 obrien The Handbook is not clear on how to deal o [1999/01/30] bin/9809 finger output format wrong o [1999/01/30] ports/9811 nectar New port: lang/gnomeguile o [1999/01/30] ports/9812 nectar New port: devel/libgtopbindings o [1999/01/31] docs/9837 doc fix to doc/handbook/porting.sgml o [1999/01/31] ports/9840 ports patch allows ports to fetch their sources o [1999/01/31] conf/9845 Propose adding options to rc.conf and rc. o [1999/01/31] kern/9848 ARP proxyall extra sanity check o [1999/01/31] ports/9850 itojun graphics/tiff34 port fails o [1999/01/31] ports/9851 ports Port update: update R to 0.63.2 o [1999/01/31] ports/9852 ports new port: wmdate-0.5 o [1999/02/01] docs/9854 doc undocumented ctype functions break stuff o [1999/02/01] ports/9864 ports make rblcheck use relay.orbs.org instead o [1999/02/01] ports/9865 ports Upgrade Leafnode+ port from version 2.3 t o [1999/02/01] ports/9866 ports port of unix2dos and dos2unix utilities o [1999/02/01] bin/9868 Patch to add "date -a" o [1999/02/01] kern/9869 When using macros out of function, they s o [1999/02/01] ports/9872 ports New port: waveplay o [1999/02/01] conf/9874 idle-timeout facilities in /etc/login.con o [1999/02/01] ports/9875 ports new port: devel/astyle (aka "Artistic Sty o [1999/02/01] kern/9877 Patch to remove some kernel compile warni o [1999/02/01] kern/9878 Some patches to remove compiler warnings o [1999/02/02] ports/9880 kris New port - x11-toolkits/gtkglarea o [1999/02/02] ports/9884 ports samba does not allow "joes" (username+pas o [1999/02/03] bin/9893 NFS umount of regular file impossible o [1999/02/03] ports/9899 ports port submission for tdetect o [1999/02/03] ports/9901 ports New port net/libnet o [1999/02/03] bin/9902 error in german (and some other) locale s f [1999/02/04] ports/9911 ports slrn port Makefile broken (patch included o [1999/02/04] misc/9913 make release would fail for lack of /etc/ o [1999/02/05] ports/9920 billf New port - xnc o [1999/02/05] ports/9921 peter exmh2 ports update o [1999/02/05] ports/9925 ports New port, br-ispell o [1999/02/06] bin/9931 config gives misleading error when duplic o [1999/02/06] ports/9939 ports NEW port for tkRunIt o [1999/02/06] docs/9940 doc mt.1 typo (right paren missing, and etc.) o [1999/02/07] gnu/9946 linker problem with gcc 2.7.2.1 o [1999/02/07] ports/9953 hosokawa Samba 2.0.2 update o [1999/02/07] ports/9954 ports new port devel/ACE o [1999/02/07] ports/9955 ports New port tclock (transparent analog clock o [1999/02/08] docs/9960 doc man page for route doesn't mention defaul o [1999/02/08] bin/9965 NIS accounts considered passwordless by s o [1999/02/08] bin/9972 groff always built for US (letter) sized o [1999/02/09] ports/9977 kris New port - astro/wmspaceweather o [1999/02/09] ports/9984 ports PDL - Perl Data Language o [1999/02/09] ports/9985 ports New port: jmirror o [1999/02/09] gnu/9987 jdp wrong (for FreeBSD) ELF_DYNAMIC_INTERPRET o [1999/02/09] ports/9988 ports New port: wmcp 1.2.5 o [1999/02/09] bin/9990 Enhancement to filename completeion in cs o [1999/02/09] i386/9991 new driver for National Instruments GPIB o [1999/02/09] ports/9993 kris New Port - graphics/libunfig o [1999/02/09] ports/9998 kris New port - graphics/mtv (MpegTV player) o [1999/02/10] ports/10003ports New port: p5-Socks o [1999/02/10] i386/10004 instalation of current version from FTP s o [1999/02/10] misc/10005 Update /etc/motd o [1999/02/10] ports/10007ports Port of the mercury compiler version 0.8 o [1999/02/10] ports/10012ports new port: xmradio o [1999/02/10] docs/10017 doc Added a site and bug fix o [1999/02/10] bin/10019 Keyinfo and keyinit may use the wrong nam o [1999/02/11] kern/10022 kernel cannot detect WinChips correctly. o [1999/02/11] ports/10023kris New port - net/gtkcookie o [1999/02/11] conf/10024 etc/mtree/BSD.local.dist: lib/perl5 no lo o [1999/02/11] bin/10027 kdump prints garbage when command name is o [1999/02/11] bin/10030 Kerberized telnet fails to encrypt when a o [1999/02/11] ports/10033ports upgrading to 2.2.8 breaks the perl5 port o [1999/02/11] docs/10038 doc Added a site and bug fix (part two) o [1999/02/12] i386/10052 Matrox Millennium II AGP device/model id o [1999/02/13] ports/10063ports New port: chinese/telnet o [1999/02/13] bin/10064 /bin/sh called from make dumps core o [1999/02/14] kern/10077 dd'ing a ccd stripped partition sometimes o [1999/02/14] docs/10080 doc Adding link to Daemon BSD case badges o [1999/02/14] docs/10082 doc Adding Pine Internet to Consultants page o [1999/02/14] docs/10083 doc Adding OpenWorld to Consulting services o [1999/02/14] docs/10084 doc new FreeBSD user group in Yogyakarta City o [1999/02/14] docs/10085 doc NIS Setup Tutorial o [1999/02/14] ports/10092ports Here is a port upgrade for fvwm-2.1.10 o [1999/02/14] ports/10093ports Upgrade GNAT to 3.11p and fix for ELF o [1999/02/14] kern/10095 missing VGA description o [1999/02/14] ports/10096ports New port: games/xtet42 o [1999/02/14] docs/10098 doc Lack of overall guide for NIS setup o [1999/02/15] docs/10099 doc Enables building FreeBSD Web site without o [1999/02/15] ports/10102ports net/ircII port wants to install help file o [1999/02/15] ports/10103ports revision of port of plugger-3.0 o [1999/02/15] ports/10104ports New port: games/pmars-0.8 o [1999/02/15] docs/10108 doc Addition to fstab.5 o [1999/02/15] ports/10111ports Problem with the pgp262s port, Makefile w o [1999/02/15] gnu/10112 /usr/src/gnu/usr.bin/patch sorely out of o [1999/02/15] kern/10113 yokota [PATCH] syscons: switch to previous conso o [1999/02/15] conf/10115 /etc/login.conf still implies LOGIN_CAP_A o [1999/02/16] kern/10116 acd driver patch to support PD/CD drive. o [1999/02/16] i386/10121 Serial port parity setting problems with o [1999/02/16] ports/10123ports Update for t1utils port o [1999/02/16] ports/10124ports UNIX|STAT pr submission failed to include o [1999/02/17] ports/10129torstenb mirror/patch-ac sets /usr/local/bin/perl5 o [1999/02/17] bin/10131 bug in strptime(3) o [1999/02/17] ports/10134ports New port: lynx-ssl (Category: www) o [1999/02/17] ports/10136ports New port shorten (an audio compressor) o [1999/02/17] ports/10137ports version update of RPM port to version 2.5 o [1999/02/17] ports/10141ports korganizer update to 1.1 o [1999/02/18] i386/10143 Rebooted without prompting o [1999/02/18] docs/10146 doc Release Notes and LINT for 3.1 include ha o [1999/02/18] ports/10147ports SANE 1.00 overrides CAM's DFLTPHYS in cam o [1999/02/18] misc/10148 atime behavior differs with empty files f o [1999/02/18] kern/10149 New PCI device o [1999/02/18] misc/10155 path to allow PicoBSD build script to use o [1999/02/19] bin/10158 Reference to ncheck in quot(8) o [1999/02/19] kern/10159 Unable to unload vinum module o [1999/02/19] kern/10160 kldload of umap module panics the system o [1999/02/19] ports/10161ports New port : mail/mailx o [1999/02/19] ports/10162ports Fix kdmrc to add qmail usernames to NoUse o [1999/02/19] ports/10164ports XFree86-3.3.3.1 build fails with kerberos o [1999/02/19] bin/10165 CVS does not know to ignore .So files o [1999/02/19] misc/10167 Upon exiting X11R6, monitor goes blank. o [1999/02/19] ports/10168ports [NEW PORT] ezbounce (IRC Proxy) o [1999/02/20] bin/10169 find -perm doesn't allow a bitwise o [1999/02/20] kern/10175 Bridging support incomplete for some netc o [1999/02/20] ports/10176ports upgrade of devel/doc++ port o [1999/02/21] ports/10178ports USE_SOCKS=YES option broken for security/ o [1999/02/21] conf/10179 /etc/make.conf has too many entries o [1999/02/21] docs/10180 doc Another mirror site not listed... o [1999/02/21] docs/10182 doc http://www.freebsd.org/cgi/query-pr.cgi?p o [1999/02/21] ports/10184ports Master site gone; makefile updated o [1999/02/21] ports/10187ports New port - gftp o [1999/02/22] ports/10196ports Better startup scripts for ssh o [1999/02/22] ports/10210ports New Port: tgd 1.2c o [1999/02/22] ports/10215ports net/coda_client and net/coda_server o [1999/02/23] ports/10227ports wrong sendmail path in rdist6-port o [1999/02/23] i386/10229 system time goes slow o [1999/02/23] misc/10231 inet_addr() doesn't check for illegal val o [1999/02/23] ports/10232ports New port - unace o [1999/02/23] ports/10233ports misc/buffer has been removed, let's reviv o [1999/02/25] docs/10239 doc FreeBSD Mall o [1999/02/25] docs/10240 doc We need a script which check if our web m o [1999/02/25] docs/10242 doc Windsor Unix Users Group o [1999/02/25] conf/10244 100 character limit on any pathname in sy o [1999/02/25] kern/10255 Some more SiS chipset PCI IDs for chipset o [1999/02/25] docs/10256 doc handbook on cvsup... o [1999/02/25] ports/10268ports [new port] colortail o [1999/02/25] ports/10270ports [new port] wterm o [1999/02/25] ports/10272ports [new port] gmixer o [1999/02/26] bin/10274 make does not understand "lib(obj)" synta o [1999/02/26] ports/10275wosch Update: www/checkbot o [1999/02/26] conf/10277 pccard.conf entry for Xircom Modem o [1999/02/26] ports/10279ports [new port] gtimer o [1999/02/26] bin/10283 Race condition in rc.network a [1999/02/26] ports/10290stb Update: net/netatalk-asun o [1999/02/27] ports/10297ports libtix numbering goofed up o [1999/02/27] ports/10298ports New port: icecast-1.1.0 o [1999/02/28] bin/10300 dmesg exits on signal 10 o [1999/02/28] ports/10304ports unpost master site removed o [1999/02/28] conf/10306 jkh Registration file generated during instal o [1999/02/28] i386/10307 Problem booting SMP kernel on Tyan S1668 o [1999/02/28] ports/10309ports New port, id3ren, mpeg3 audio information o [1999/02/28] ports/10313ports New port - ripenc o [1999/02/28] kern/10314 yokota green screen saver page faults and reboot o [1999/03/01] ports/10321ports Update Ports: postgresql-ja 6.4.2 o [1999/03/01] ports/10323kris Upgrade the port: databases/db to 2.7.3 o [1999/03/01] kern/10324 ip_fw allows divert rules even though not o [1999/03/01] misc/10325 Implementation of itoa() for libc o [1999/03/01] i386/10328 wd(4) manpage correction o [1999/03/01] ports/10329ports New Port of XMangekyou-2.0 o [1999/03/01] docs/10331 doc pccardd(8) claims FreeBSD does not suppor o [1999/03/01] ports/10333ports New port: kmikmod o [1999/03/01] bin/10342 putenv(3) unnecessarily calls strdup/free o [1999/03/01] docs/10345 doc Where is documentation on creating a one- o [1999/03/01] ports/10346ports new version of lesstif o [1999/03/01] misc/10349 For long .Dt fields, rendering is broken- o [1999/03/01] bin/10350 mail(1) has some ugly code in it... o [1999/03/02] misc/10351 /usr/share/examples/worm is out of date o [1999/03/02] ports/10352ports ghostscript55 port build fails using jpeg o [1999/03/02] ports/10354ports New port of XBalloon-1.0 o [1999/03/02] bin/10358 ftp(1) has problems with long pathnames o [1999/03/02] kern/10361 securelevel>=1 too restrictive on time ch o [1999/03/02] ports/10363ports [patch] give moxftp port some master site o [1999/03/02] ports/10367ports NS Communicator 4.5 fails o [1999/03/02] bin/10368 'pgtok redefined' error in ps(1) o [1999/03/03] ports/10375billf New port - a benchmarking tool for Web pr o [1999/03/03] ports/10377ports `make' in ports does not honor {f,ht}tp_p o [1999/03/03] docs/10378 doc option -s missing in lptcontrol.8 f [1999/03/04] ports/10385billf New port: apache13-modperl o [1999/03/04] ports/10386ports Fix port: p5-MLDBM o [1999/03/04] docs/10388 doc Obsolete information in Handbook o [1999/03/04] ports/10389ports Create new port mod_jserv and JSDK 2.0 o [1999/03/04] ports/10390ports Tidy port: p5-libwww o [1999/03/04] ports/10393ports formatted lsof man page installed into ma o [1999/03/05] ports/10396ports SPIN is in the wrong category o [1999/03/05] docs/10403 doc CDE is no longer sold by Xi Graphics. o [1999/03/05] ports/10404ports Samba PLIST not up to date. o [1999/03/05] ports/10407ports incomplete mirrors suggested for samba o [1999/03/05] docs/10408 doc [quasi-patch] Grammar nitpicks in Handboo o [1999/03/05] ports/10410ports pkg_add: could not find package XFree86-3 o [1999/03/05] docs/10412 doc kld*() calls are undocumented o [1999/03/05] ports/10413ports su2; description of file location is wron o [1999/03/05] ports/10414ports slirp port patch o [1999/03/06] ports/10415ports samba-2.0.3 port make package fails and s o [1999/03/06] kern/10440 Discard device does not set ifq_maxlen o [1999/03/06] bin/10444 avoiding lost mail when mail filesystem i o [1999/03/06] docs/10451 doc EDESTADDRREQ returnable by writev() but n o [1999/03/06] ports/10454ports Update: emulators/spim o [1999/03/06] kern/10455 pcaudio breakage o [1999/03/07] ports/10458ports New port: fconv: Converts Mac/DOS text fi o [1999/03/07] ports/10463ports Fix Port: math/abs o [1999/03/07] i386/10465 Must disable ex0 to install. o [1999/03/07] ports/10467ports ports submission: wmnetselect o [1999/03/07] ports/10469ports new port: linux-netcape-communicator-4.51 o [1999/03/07] docs/10472 doc Mailing list for discussion of Xircom dri o [1999/03/07] docs/10474 doc A command line in a man document is incom o [1999/03/07] ports/10476ports x11-toolkits/tix doesn't build properly o [1999/03/07] ports/10477ports The fakemail in lib-src fails to link (ne o [1999/03/08] docs/10488 doc Error in entry for 02/27 in calendar.hist o [1999/03/08] ports/10489ports new port of gnotepad+ o [1999/03/08] bin/10493 ipfw's undocumented feature o [1999/03/08] docs/10494 doc arp(4) SYNOPSIS non typical expression o [1999/03/08] docs/10495 doc lo(4) SYNOPSIS non typical expression o [1999/03/08] ports/10499erich upgrade ports/security/sudo to 1.5.8p2 o [1999/03/08] docs/10500 doc spell error o [1999/03/09] bin/10508 isc-dhcp puts garbage to text options, V2 o [1999/03/09] docs/10512 doc ENOBUFS returnable from writev(2) but not o [1999/03/09] ports/10514ports New port - V.E.R.A. o [1999/03/09] docs/10517 doc Missing manpage for /usr/bin/gensetdefs ( o [1999/03/10] bin/10522 make world died due -Werror o [1999/03/10] bin/10524 3.1-19990309-STABLE install problem o [1999/03/10] ports/10532ports Port of GNU Pascal o [1999/03/10] kern/10534 if_tx.c bridge patch o [1999/03/10] ports/10536ports ports/japanese/vje-trial has no makefile o [1999/03/10] kern/10537 extraneous verbose output from cam_xpt.c o [1999/03/10] bin/10538 sbin/nos-tun gives wrong usage message o [1999/03/11] ports/10543ports New port uploaded for xslj o [1999/03/11] misc/10544 pccardd is not reporting initialized driv o [1999/03/11] bin/10546 Intel Pro/100 PC card has CIS string > CI o [1999/03/11] bin/10548 More useful default ifconfig behaviour sa o [1999/03/12] gnu/10555 [PATCH] awk dumps core o [1999/03/12] bin/10556 make(1) man page update o [1999/03/12] ports/10559ports [PATCH] net/ethereal should be linked wit o [1999/03/12] ports/10561ports net/ucd-snmpd build fail o [1999/03/12] ports/10562ports New port - PVM3 o [1999/03/12] kern/10563 QIC 40/80 tape drive ft present in versio o [1999/03/12] kern/10565 Slow timekeeping on certain motherboards/ o [1999/03/13] bin/10568 dhcp client receives garbage (dhclient pr o [1999/03/13] bin/10573 [PATCH] Typo in dump reporting o [1999/03/13] kern/10574 3.1-stable kernel reports k6 cpu as "\^E" o [1999/03/13] docs/10576 doc multiple bugs in tun(4) man page o [1999/03/13] bin/10580 ftpio should use IP_PORTRANGE to be firew o [1999/03/14] conf/10582 Makefile.upgrade fails with make -j o [1999/03/14] misc/10589 Incorrect assumptions in /etc/security o [1999/03/14] bin/10590 new option to silince confirmation but no o [1999/03/14] ports/10592ports New ports: japanese/exmh2 (ja-exmh-2.0.2) o [1999/03/14] i386/10595 [PATCH] spanish language support for vidf o [1999/03/15] kern/10597 Patch to make HP 8100 CD-RW work with acd o [1999/03/15] bin/10601 Ownership of symlinks copied by adduser a o [1999/03/15] kern/10602 Brooktree support broken in kernel build o [1999/03/15] bin/10604 [PATCH] `md5 -t' too fast on modern CPUs o [1999/03/15] docs/10605 doc nfsiod(8) references LKM mechanisms on 3. o [1999/03/15] i386/10606 Probablue odd error message if LS-120 is o [1999/03/15] i386/10608 add Opti Viper-M PCI ID o [1999/03/15] kern/10609 adjtime bug (tv_sec > 2147) and enhanceme o [1999/03/15] bin/10610 New options to date to slowly adjust time o [1999/03/15] bin/10611 timed enhancement f [1999/03/16] ports/10613billf Update port: net/mtr-0.33 o [1999/03/16] ports/10617ports New Port: archivers/pkzip-2.5 o [1999/03/16] ports/10618ports Update port: x11-fm/ezfm o [1999/03/16] bin/10622 vi does not display Russian characters pr o [1999/03/16] i386/10623 DFLTPHYS in /usr/src/sys/i386/include/par o [1999/03/16] docs/10624 doc typos/innacuracies in wfd(4) man page o [1999/03/16] ports/10629ports New port: comms/gnokii o [1999/03/16] i386/10632 bug in driver that implements performance o [1999/03/16] ports/10634ports Update the hylafax port to do a client in o [1999/03/17] kern/10637 incorrect show initialized PCCARD-drivers o [1999/03/17] ports/10639ports ports/web/wml must be upgraded and unbrok o [1999/03/17] kern/10641 Default sync rate in ncr SCSI driver is s o [1999/03/17] kern/10642 exports(5) mentions KERBNFS but that's no o [1999/03/17] ports/10644ports New port: korean/gtk10 o [1999/03/17] ports/10645ports New port: korean/gau o [1999/03/18] ports/10648billf Update: net/bnc o [1999/03/18] ports/10649ports NEW PORT: devel/icqlib o [1999/03/18] ports/10650ports NEW PORT: devel/kicq o [1999/03/18] ports/10651ports NEW PORT: net/kicq o [1999/03/18] ports/10652flathill XHippo port Lacking o [1999/03/18] bin/10657 Unable to install from CDROM or DOS parti o [1999/03/18] docs/10659 doc Many syscall man pages have an IMPLEMENTA o [1999/03/18] docs/10660 doc User Group not listed o [1999/03/18] ports/10661ports TCL command line option parser port o [1999/03/18] kern/10663 hpscan doesn't like 3.1's pt device o [1999/03/18] docs/10664 doc Notes on 2.2.8 -> 3.1 migration o [1999/03/18] misc/10667 Sysinstall inserts multiple # -- sysinsta o [1999/03/19] gnu/10670 cvs doesn't allow digits in local keyword o [1999/03/19] i386/10672 blank line inserted by vipw into master.p o [1999/03/19] kern/10673 Non-ASCII chars on serial console with Re o [1999/03/19] kern/10674 new /sys/i386/isa/si3_t225.c o [1999/03/19] ports/10677ports FVWM2 finally went to release status o [1999/03/19] kern/10678 Printing problems using ppc bus o [1999/03/19] ports/10679ports new port for bpft-2.0 o [1999/03/19] ports/10682ports List mirror sites in MASTER_SITE_BACKUP - o [1999/03/19] docs/10684 doc Update doc: www/en/docproj/translations.s o [1999/03/20] docs/10686 doc Update doc: doc/ru/FAQ/preface.sgml o [1999/03/20] docs/10687 doc Update doc: doc/ru/FAQ/network.sgml o [1999/03/20] docs/10688 doc Update doc: doc/ru/FAQ/serial.sgml o [1999/03/20] misc/10691 Connections closed when trying to send mo o [1999/03/20] ports/10696ports Lesstif updated to 0.88.0 o [1999/03/20] ports/10699jmacd Update to logo port o [1999/03/20] misc/10700 periodic weekly (/etc/weekly) fails to re o [1999/03/20] ports/10702ports Add NCD audio support for emiclock ports o [1999/03/21] docs/10704 doc strange sentence in doc/handbook/ctm.sgml o [1999/03/21] bin/10705 enhancement to "newsyslog" o [1999/03/21] ports/10707ports [ADD] port for doxygen o [1999/03/21] docs/10708 doc meteor.4 man page documentation problem. o [1999/03/21] ports/10710ports postfix port o [1999/03/21] bin/10711 [Patch] sysinstall does not use the prope o [1999/03/21] ports/10713ports RESEND of mail/rftp diff o [1999/03/21] conf/10715 Console font loading problem at boot time o [1999/03/21] ports/10716ports new port, easy library for command entry o [1999/03/21] ports/10717ports update port: wmpinboard-0.7 to 0.8.2 o [1999/03/21] ports/10718ports a ports change for lang/ocaml o [1999/03/21] i386/10722 [Patch] typo in sys/i386/eisa/bt_eisa.c o [1999/03/21] ports/10723ports llnlxdir-2.1 requires Motif o [1999/03/22] ports/10724ports editors/mule incorrect arch-dependent dat o [1999/03/22] ports/10726ports Port update: korean/ftghostscript5 o [1999/03/22] ports/10727ports Port update: korean/netscape4-communicato o [1999/03/22] kern/10728 WCD driver does not recognize a recovered o [1999/03/22] ports/10729ports New port: Ada-aware GDB o [1999/03/22] ports/10730ports New port: games/wmeyes o [1999/03/22] ports/10731ports Upgrade port: pnmtopng 2.37.2 1123 problems total. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 22 18:50:19 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DA25D1524E for ; Mon, 22 Mar 1999 18:50:18 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id SAA01063; Mon, 22 Mar 1999 18:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from istari.home.net (cc158233-a.catv1.md.home.com [24.3.25.17]) by hub.freebsd.org (Postfix) with ESMTP id A400B15217 for ; Mon, 22 Mar 1999 18:45:42 -0800 (PST) (envelope-from sjr@home.net) Received: (from sjr@localhost) by istari.home.net (8.9.3/8.9.3) id VAA02672; Mon, 22 Mar 1999 21:45:23 -0500 (EST) (envelope-from sjr) Message-Id: <199903230245.VAA02672@istari.home.net> Date: Mon, 22 Mar 1999 21:45:23 -0500 (EST) From: sjr@home.net Reply-To: sjr@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/10739: Patch to banner to use const Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10739 >Category: bin >Synopsis: Patch to banner to use const >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 Mar 22 18:50:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Stephen J. Roznowski >Release: FreeBSD 4.0-CURRENT i386 >Organization: >Environment: >Description: This was part of the "games" patches from NetBSD. The appended patch makes banner(6) use `const' where appropriate. (http://www.NetBSD.org/cgi-bin/query-pr-single.pl?number=6151) >How-To-Repeat: >Fix: diff -u banner/banner.c banner+fix/banner.c --- banner/banner.c Mon Mar 22 21:38:40 1999 +++ banner+fix/banner.c Mon Mar 22 21:39:58 1999 @@ -58,7 +58,7 @@ #define NBYTES 9271 /* Pointers into data_table for each ASCII char */ -int asc_ptr[NCHARS] = { +const int asc_ptr[NCHARS] = { /* ^@ */ 0, 0, 0, 0, 0, 0, 0, 0, /* ^H */ 0, 0, 0, 0, 0, 0, 0, 0, /* ^P */ 0, 0, 0, 0, 0, 0, 0, 0, @@ -85,7 +85,7 @@ * is the next elt in array) and goto second * next element in array. */ -char data_table[NBYTES] = { +const char data_table[NBYTES] = { /* 0 1 2 3 4 5 6 7 8 9 */ /* 0 */ 129, 227, 130, 34, 6, 90, 19, 129, 32, 10, /* 10 */ 74, 40, 129, 31, 12, 64, 53, 129, 30, 14, >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 22 20: 0:19 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2322414C39 for ; Mon, 22 Mar 1999 20:00:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id UAA05644; Mon, 22 Mar 1999 20:00:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 6CC1E14C14; Mon, 22 Mar 1999 19:59:56 -0800 (PST) Message-Id: <19990323035956.6CC1E14C14@hub.freebsd.org> Date: Mon, 22 Mar 1999 19:59:56 -0800 (PST) From: eischen@vigrid.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: gnu/10740: Fatal GCC error Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10740 >Category: gnu >Synopsis: Fatal GCC error >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 Mar 22 20:00:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Daniel Eischen >Release: 4.0-current >Organization: >Environment: FreeBSD antares 4.0-CURRENT FreeBSD 4.0-CURRENT #0: Mon Feb 22 20:03:32 EST 1999 deischen@antares:/opt/src/src/sys/compile/antares i386 >Description: I found something that causes a fatal GCC bug with both the stock GCC, and gcc-2.8.1 built from ports. Here's how it aborts: cc -c -O -pipe -DFREEBSD_ELF -I. -I. -I./config -DHAVE_CONFIG_H \ -I./../include/opcode -I./../readline -I../bfd -I./../bfd -I./../include \ ada-lang.c ada-lang.c: In function `ada_evaluate_subexp': ada-lang.c:5951: internal error--insn does not satisfy its constraints: (insn 2997 2996 4542 (parallel[ (set (reg:DI 1 %edx) (minus:DI (reg:DI 0 %eax) (reg/v:DI 3 %ebx))) (clobber (scratch:SI)) ] ) 135 {subdi3} (insn_list 2982 (insn_list 2994 (nil))) (expr_list:REG_DEAD (mem:DI (plus:SI (reg:SI 6 %ebp) (const_int -64))) (expr_list:REG_DEAD (reg/v:DI 3 %ebx) (expr_list:REG_UNUSED (scratch:SI) (nil))))) cc: Internal compiler error: program cc1 got fatal signal 6 *** Error code 1 >How-To-Repeat: This can be reproduced by building the Ada-aware GDB port found at: ftp://ftp.pcnet.com/users/eischen/FreeBSD/adagdb-4.17-port.tar.gz and building with 'make EXPOSE_FATAL_GCC_ERROR=yes'. If you don't define EXPOSE_FATAL_GCC_ERROR, a work-around patch is applied and the port successfully builds. >Fix: I don't know how to fix GCC, but a work-around to the bug can be made by changing 2 ocurrences of the following line: (*pos) += 3 + BYTES_TO_EXP_ELEM (tem + 1); in ada-lang.c to (*pos) = (*pos) + 3 + BYTES_TO_EXP_ELEM (tem + 1); >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 22 20:48: 2 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B4C2215562; Mon, 22 Mar 1999 20:47:57 -0800 (PST) (envelope-from alc@FreeBSD.org) Received: (from alc@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id UAA11209; Mon, 22 Mar 1999 20:47:39 -0800 (PST) (envelope-from alc@FreeBSD.org) Date: Mon, 22 Mar 1999 20:47:39 -0800 (PST) From: Message-Id: <199903230447.UAA11209@freefall.freebsd.org> To: oliver.fromme@heim3.tu-clausthal.de, alc@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/9515 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ISA DMA memory problems if >= 512 MB RAM State-Changed-From-To: open->closed State-Changed-By: alc State-Changed-When: Mon Mar 22 20:41:44 PST 1999 State-Changed-Why: Fixed in vm_page.c revs 1.128 and 1.116.2.1. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 22 22:32:24 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from rnocserv.urc.ac.ru (rnocserv.urc.ac.ru [193.233.85.48]) by hub.freebsd.org (Postfix) with ESMTP id 2F34314CC9 for ; Mon, 22 Mar 1999 22:29:43 -0800 (PST) (envelope-from anton@urc.ac.ru) Received: from urc.ac.ru (Belle.urc.ac.ru [193.233.85.55]) by rnocserv.urc.ac.ru (8.8.8/8.8.8) with ESMTP id LAA26438 for ; Tue, 23 Mar 1999 11:28:36 +0500 (ES) (envelope-from anton@urc.ac.ru) Message-ID: <36F73494.6FEA6C7C@urc.ac.ru> Date: Tue, 23 Mar 1999 11:28:36 +0500 From: Anton Voronin Organization: URC FREEnet X-Mailer: Mozilla 4.5 [ru] (X11; I; FreeBSD 3.1-STABLE i386) X-Accept-Language: ru MIME-Version: 1.0 To: freebsd-bugs@FreeBSD.ORG Subject: Re: conf/10715: Console font loading problem at boot time References: <199903221806.LAA31867@pluto.plutotech.com> <36F68924.5A29BBBB@newsguy.com> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "Daniel C. Sobral" wrote: > But good-looking mouse pointers are, as likely as not, more > important than the characters lost. > > The present scheme is very close to the ideal. I'd rather prefer not > having to recompile anything if I wanted this changed for a while, > but that's all. > > Sure, YMMV applies, but from all I have seen, this seems to be the > most common milleage. Is it so imposrtant to have arrow-shaped mouse cursor? Why not to make it as a simple bar 8x16 that would move discretely and wouldn't require a special charcodes to allocate (at least optionally)? -- Anton Voronin | Ural Regional Center of FREEnet, anton@urc.ac.ru | Southern Ural University, Chelyabinsk, Russia http://www.urc.ac.ru/~anton | Programmer & System Administrator To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 22 23:25:25 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0A87415357; Mon, 22 Mar 1999 23:24:54 -0800 (PST) (envelope-from ken@FreeBSD.org) Received: (from ken@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id XAA22898; Mon, 22 Mar 1999 23:24:36 -0800 (PST) (envelope-from ken@FreeBSD.org) Date: Mon, 22 Mar 1999 23:24:36 -0800 (PST) From: Message-Id: <199903230724.XAA22898@freefall.freebsd.org> To: rjbubon@bigI.com, ken@FreeBSD.org, freebsd-bugs@FreeBSD.org, ken@FreeBSD.org Subject: Re: kern/10602 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Brooktree support broken in kernel build after move from 2.2.8 to 3.1 State-Changed-From-To: open->closed State-Changed-By: ken State-Changed-When: Mon Mar 22 23:23:45 PST 1999 State-Changed-Why: Dave Rivers answered the question. The bktr driver depends on a few other device drivers in the 3.x tree. Responsible-Changed-From-To: freebsd-bugs->ken Responsible-Changed-By: ken Responsible-Changed-When: Mon Mar 22 23:23:45 PST 1999 Responsible-Changed-Why: I'm closing 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 Mar 22 23:28:48 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C29E8153A2; Mon, 22 Mar 1999 23:28:47 -0800 (PST) (envelope-from gibbs@FreeBSD.org) Received: (from gibbs@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id XAA23297; Mon, 22 Mar 1999 23:28:30 -0800 (PST) (envelope-from gibbs@FreeBSD.org) Date: Mon, 22 Mar 1999 23:28:30 -0800 (PST) From: Message-Id: <199903230728.XAA23297@freefall.freebsd.org> To: chris@calldei.com, gibbs@FreeBSD.org, freebsd-bugs@FreeBSD.org, gibbs@FreeBSD.org Subject: Re: i386/10722 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [Patch] typo in sys/i386/eisa/bt_eisa.c State-Changed-From-To: open->closed State-Changed-By: gibbs State-Changed-When: Mon Mar 22 23:27:53 PST 1999 State-Changed-Why: Submitted patch committed in rev 1.3 of bt_eisa.c Responsible-Changed-From-To: freebsd-bugs->gibbs Responsible-Changed-By: gibbs Responsible-Changed-When: Mon Mar 22 23:27:53 PST 1999 Responsible-Changed-Why: My Driver. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 22 23:43:59 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from phoenix.keytown.com (phoenix.keytown.com [194.186.124.2]) by hub.freebsd.org (Postfix) with ESMTP id 1B6971565C for ; Mon, 22 Mar 1999 23:43:28 -0800 (PST) (envelope-from sysadmin@keytown.com) Received: from keytown.com ([194.186.124.6]) by phoenix.keytown.com (8.9.3/8.9.3) with ESMTP id KAA17181 for ; Tue, 23 Mar 1999 10:43:25 +0300 (MSK) (envelope-from sysadmin@keytown.com) Message-ID: <36F7451F.871201B6@keytown.com> Date: Tue, 23 Mar 1999 10:39:11 +0300 From: Dmitry Bliznyuk X-Mailer: Mozilla 4.5 [en] (WinNT; I) X-Accept-Language: ru,en MIME-Version: 1.0 To: "freebsd-bugs@FreeBSD.ORG" Subject: (no subject) Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org unsubscribe freebsd-bugs To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 23 1:26:56 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1BC1B14C4E; Tue, 23 Mar 1999 01:26:56 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id BAA37246; Tue, 23 Mar 1999 01:26:38 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 23 Mar 1999 01:26:38 -0800 (PST) From: Message-Id: <199903230926.BAA37246@freefall.freebsd.org> To: frank@exit.com, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/9370 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: panic: vinvalbuf: dirty bufs State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Tue Mar 23 01:24:29 PST 1999 State-Changed-Why: Can't reproduce problem in 4.0-CURRENT. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 23 2:10:20 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6F0F814CF8 for ; Tue, 23 Mar 1999 02:10:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id CAA40570; Tue, 23 Mar 1999 02:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from sdtcom.lg.ua (sdtcom.28.8k.lep.lg.ua [194.44.71.246]) by hub.freebsd.org (Postfix) with ESMTP id 21B3014CF8 for ; Tue, 23 Mar 1999 02:09:42 -0800 (PST) (envelope-from sv@sdtcom.lg.ua) Received: (from sv@localhost) by sdtcom.lg.ua (8.9.2/8.9.2) id MAA67151; Tue, 23 Mar 1999 12:09:19 +0200 (EET) Message-Id: <199903231009.MAA67151@sdtcom.lg.ua> Date: Tue, 23 Mar 1999 12:09:19 +0200 (EET) From: Serge Voitenko Reply-To: sv@sdtcom.lg.ua To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/10744: call to login() from aout/libutil.so.2.2 makes /var/log/wtmp unusable Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10744 >Category: bin >Synopsis: call to login() from aout/libutil.so.2.2 makes /var/log/wtmp unusable >Confidential: no >Severity: critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Mar 23 02:10:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Sergei Voitenko >Release: FreeBSD 3.1-RELEASE i386 >Organization: >Environment: FreeBSD 3.1-RELEASE (a.out support is installed) >Description: Call to login(3) that is maden from a.out binary makes the old-style utmp-record in /var/log/wtmp with size of 36 bytes instead of 44 bytes. Then, /var/log/wtmp can't be used in ordinary way (e.g., by last(1)). >How-To-Repeat: Originally, problem was taken with mgetty-1.1.11. mgetty was maden under FreeBSD 2.2.7-RELEASE. >Fix: Recompile & go to ELF :-) >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 23 4:59: 9 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 00307151F9; Tue, 23 Mar 1999 04:59:07 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id EAA55516; Tue, 23 Mar 1999 04:58:50 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 23 Mar 1999 04:58:50 -0800 (PST) From: Message-Id: <199903231258.EAA55516@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, jkh@FreeBSD.org Subject: Re: misc/7190 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: "Invalid partition table" after new install with multiple BSD slices Responsible-Changed-From-To: freebsd-bugs->jkh Responsible-Changed-By: sheldonh Responsible-Changed-When: Tue Mar 23 04:58:20 PST 1999 Responsible-Changed-Why: libdisk is Jordan's baby. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 23 5: 5:27 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AB97B1516C; Tue, 23 Mar 1999 05:05:26 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id FAA56104; Tue, 23 Mar 1999 05:05:08 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 23 Mar 1999 05:05:08 -0800 (PST) From: Message-Id: <199903231305.FAA56104@freefall.freebsd.org> To: dmaddox@scsn.net, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/7889 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: move_aout_libs.sh doesn't use ldconfig correctly. State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Tue Mar 23 05:02:19 PST 1999 State-Changed-Why: The script is used during aout-to-elf at a time when ldconfig only understands aout libs, so it's not a problem for the upgrade target. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 23 5:10:19 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0186E15264 for ; Tue, 23 Mar 1999 05:10:18 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id FAA56702; Tue, 23 Mar 1999 05:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from matrix.42.org (matrix.42.org [194.246.250.200]) by hub.freebsd.org (Postfix) with ESMTP id 232BC14C2B for ; Tue, 23 Mar 1999 05:07:14 -0800 (PST) (envelope-from sec@42.org) Received: (from sec@localhost) by matrix.42.org (8.8.8/8.8.5) id OAA13360 (sender ); Tue, 23 Mar 1999 14:06:54 +0100 (CET) Message-Id: <199903231306.OAA13360@matrix.42.org> Date: Tue, 23 Mar 1999 14:06:54 +0100 (CET) From: Stefan `Sec` Zehl Reply-To: sec@42.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/10746: apm poweroff fails on 3.1 (worked on 2.2.6) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10746 >Category: kern >Synopsis: apm poweroff fails on 3.1 (worked on 2.2.6) >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 Mar 23 05:10:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Stefan `Sec` Zehl >Release: FreeBSD 2.2.7-STABLE i386 >Organization: >Environment: My 3.1-STable box. make world'ed 2 days ago. FreeBSD btl.42.org 3.1-STABLE FreeBSD 3.1-STABLE #0: Tue Mar 23 02:25:33 CET 1999 sec@btl.42.org:/usr/src/sys/compile/BTL i386 >Description: on 2.2.6 I applied the apm_poweroff patch, and my box would power off on "halt -p" without problem. This is what i used on 2.2.6: --- sys/i386/apm/apm.c.orig Mon Nov 10 15:40:40 1997 +++ sys/i386/apm/apm.c Tue May 12 16:39:02 1998 @@ -229,6 +229,21 @@ return 0; } +/* + * Turn off the entire system. + */ +void +apm_power_off(void) +{ + u_long eax, ebx, ecx; + + if (!apm_softc.active) + return; + eax = (APM_BIOS << 8) | APM_SETPWSTATE; + ebx = PMDV_ALLDEV; + ecx = PMST_OFF; + apm_int(&eax, &ebx, &ecx); +} /* APM Battery low handler */ static void now on 3.1 (where the code is already there) it doesn't work anymore. I added a few debug statements liek that: /* * Turn off the entire system. */ static void apm_power_off(int howto, void *junk) { u_long eax, ebx, ecx, edx; printf("trying to shutdown\n"); /* Not halting powering off, or not active */ if (!(howto & RB_POWEROFF) || !apm_softc.active) return; eax = (APM_BIOS << 8) | APM_SETPWSTATE; ebx = PMDV_ALLDEV; ecx = PMST_OFF; edx = 0; printf("actually trying to shutdown\n"); if(apm_int(&eax, &ebx, &ecx, &edx)) printf("Entire system shutdown failure: errcode = %ld\n", 0xff & (eax >> 8)); } and all I get on 'halt -p' is: syncing disks... 10 10 done trying to shutdown actually trying to shutdown Entire system shutdown failure: errcode = 96 The operating system has halted. Plese press any key to reboot. >How-To-Repeat: halt -p >Fix: none known. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 23 5:40:20 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 42D1F14C87 for ; Tue, 23 Mar 1999 05:40:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id FAA59285; Tue, 23 Mar 1999 05:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from relay.ucb.crimea.ua (relay.ucb.crimea.ua [212.110.138.1]) by hub.freebsd.org (Postfix) with ESMTP id 2D6F214C2B for ; Tue, 23 Mar 1999 05:32:42 -0800 (PST) (envelope-from ru@ucb.crimea.ua) Received: (from ru@localhost) by relay.ucb.crimea.ua (8.9.2/8.9.2/UCB) id PAA51137; Tue, 23 Mar 1999 15:32:07 +0200 (EET) (envelope-from ru) Message-Id: <199903231332.PAA51137@relay.ucb.crimea.ua> Date: Tue, 23 Mar 1999 15:32:07 +0200 (EET) From: Ruslan Ermilov Reply-To: ru@ucb.crimea.ua To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/10747: ipfirewall `deny' rules act as `reject' for `out' packets Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10747 >Category: kern >Synopsis: ipfirewall `deny' rules act as `reject' for `out' packets >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 Mar 23 05:40:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Ruslan Ermilov >Release: FreeBSD 3.1-STABLE i386 >Organization: United Commercial Bank >Environment: options IPFIREWALL >Description: When a packet matches `deny' rule, it is assumed to be silently dropped, and no further notification should be sent. Under some circumstances, router will send ICMP host-unreachable message back to the originator. It's only seen when matching outgoing packets. The problem is how ip_forward(), ip_output() and ip_fw_chk() interact. Assume we have the following rules: 00100 deny ip from any to 1.2.3.4 out 00200 allow ip from any to any Host x.x.x.x sends IP packet to host 1.2.3.4 via this router. On the router: 1. ip_input() calls ip_fw_chk(IN) 2. ip_fw_chk() matches the packet with rule 200 2. ip_input() decides to forward the packet and calls ip_forward() 3. ip_forward() calls ip_output() 4. ip_output() calls ip_fw_chk(OUT) 5. ip_fw_chk() matches the packet with rule 100 and sets `m' to NULL 6. ip_output() returns EACCES 7. ip_forward() calls icmp_error(.., ICMP_UNREACH, ICMP_UNREACH_HOST, ...) Moreover, if you have the following rules: 00100 unreach ip from any to 1.2.3.4 out 00200 allow ip from any to any the router will send 2 ICMP unreachable messages in reply to the packet. First (with the code ) will be sent from ip_fw_chk(). Then ip_forward() will send ICMP host-unreachable. See `how-to-repeat'. >How-To-Repeat: router[192.168.1.1]# ipfw l 00100 unreach filter-prohib ip from any to 1.2.3.4 out 00200 allow ip from any to any host[192.168.1.13]# ping -c1 1.2.3.4 router[192.168.1.1]# tcpdump -t -n -v icmp tcpdump: listening on fxp0 192.168.1.13 > 1.2.3.4: icmp: echo request (ttl 32, id 21565) 192.168.1.1 > 192.168.1.13: icmp: host 1.2.3.4 unreachable - admin prohibited filter (ttl 255, id 17780) 192.168.1.1 > 192.168.1.13: icmp: host 1.2.3.4 unreachable (ttl 255, id 17781) Take the note of the `id' fields of last two packets. >Fix: No easy fix comes to my mind, sorry. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 23 8: 0:19 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 375C914CAC for ; Tue, 23 Mar 1999 08:00:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id IAA08989; Tue, 23 Mar 1999 08:00:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from fed-ef1.frb.gov (fed.frb.gov [132.200.32.32]) by hub.freebsd.org (Postfix) with ESMTP id 15F3E15073; Tue, 23 Mar 1999 07:36:44 -0800 (PST) (envelope-from seth@freebie.dp.ny.frb.org) Received: by fed-ef1.frb.gov; id KAA27854; Tue, 23 Mar 1999 10:36:19 -0500 (EST) Received: from m1pmdf.frb.gov(192.168.3.38) by fed.frb.gov via smap (4.1) id xma027076; Tue, 23 Mar 99 10:35:00 -0500 Message-Id: <199903231534.KAA00619@freebie.dp.ny.frb.org> Date: Tue, 23 Mar 1999 10:34:43 -0500 (EST) From: Reply-To: seth@freebie.dp.ny.frb.org To: FreeBSD-gnats-submit@freebsd.org, eivind@freebsd.org, des@flood.ping.uio.no X-Send-Pr-Version: 3.2 Subject: kern/10752: Kernel panic (?) trap 12: page fault while in kernel mode Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10752 >Category: kern >Synopsis: Kernel panic (?) trap 12: page fault while in kernel mode >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Mar 23 08:00:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Zippy (seth@freebie.dp.ny.frb.org) >Release: FreeBSD 3.1-RELEASE i386 >Organization: >Environment: Dell dual-processor Xeon 450, 384MB RAM: Copyright (c) 1992-1999 FreeBSD Inc. Copyright (c) 1982, 1986, 1989, 1991, 1993 The Regents of the University of California. All rights reserved. FreeBSD 3.1-RELEASE #0: Fri Mar 12 11:30:08 EST 1999 seth@freebie.dp.ny.frb.org:/usr/src/sys/compile/KERNEL-EF Timecounter "i8254" frequency 1193182 Hz CPU: Pentium II/Xeon/Celeron (686-class CPU) Origin = "GenuineIntel" Id = 0x653 Stepping=3 Features=0x183fbff> real memory = 402653184 (393216K bytes) avail memory = 388898816 (379784K bytes) Programming 24 pins in IOAPIC #0 FreeBSD/SMP: Multiprocessor motherboard cpu0 (BSP): apic id: 0, version: 0x00040011, at 0xfee00000 cpu1 (AP): apic id: 1, version: 0x00040011, at 0xfee00000 io0 (APIC): apic id: 2, version: 0x00170011, at 0xfec00000 Preloaded elf kernel "kernel" at 0xf02c2000. Probing for devices on PCI bus 0: chip0: rev 0x00 on pci0.0.0 chip1: rev 0x00 on pci0.1.0 chip2: rev 0x02 on pci0.7.0 chip3: rev 0x02 on pci0.7.3 xl0: <3Com 3c905B Fast Etherlink XL 10/100BaseTX> rev 0x30 int a irq 16 on pci0. 13.0 xl0: Ethernet address: 00:10:5a:22:14:82 xl0: autoneg complete, link status good (half-duplex, 100Mbps) xl1: <3Com 3c905B Fast Etherlink XL 10/100BaseTX> rev 0x24 int a irq 17 on pci0. 17.0 xl1: Ethernet address: 00:c0:4f:68:dc:ec xl1: autoneg complete, link status good (half-duplex, 100Mbps) chip4: rev 0x03 on pci0.19.0 Probing for devices on PCI bus 1: vga0: rev 0x01 int a irq 16 on pci1.0.0 Probing for devices on PCI bus 2: ahc0: rev 0x00 int a irq 18 on pci2.10. 0 ahc0: aic7890/91 Wide Channel A, SCSI Id=7, 16/255 SCBs ahc1: rev 0x01 int a irq 18 on pci2.14.0 ahc1: aic7880 Wide Channel A, SCSI Id=7, 16/255 SCBs Probing for devices on the ISA bus: sc0 on isa sc0: VGA color <16 virtual consoles, flags=0x0> atkbdc0 at 0x60-0x6f on motherboard atkbd0 irq 1 on isa psm0 irq 12 on isa sio0 at 0x3f8-0x3ff irq 4 flags 0x10 on isa sio0: type 16550A sio1 at 0x2f8-0x2ff irq 3 on isa sio1: type 16550A fdc0 at 0x3f0-0x3f7 irq 6 drq 2 on isa fdc0: FIFO enabled, 8 bytes threshold fd0: 1.44MB 3.5in ppc0 at 0x378 irq 7 on isa ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/8 bytes threshold nlpt0: on ppbus 0 nlpt0: Interrupt-driven port ppi0: on ppbus 0 plip0: on ppbus 0 vga0 at 0x3b0-0x3df maddr 0xa0000 msize 131072 on isa npx0 on motherboard npx0: INT 16 interface APIC_IO: Testing 8254 interrupt delivery APIC_IO: routing 8254 via pin 2 Waiting 8 seconds for SCSI devices to settle SMP: AP CPU #1 Launched! sa0 at ahc1 bus 0 target 6 lun 0 npx0: INT 16 interface APIC_IO: Testing 8254 interrupt delivery APIC_IO: routing 8254 via pin 2 Waiting 8 seconds for SCSI devices to settle SMP: AP CPU #1 Launched! sa0 at ahc1 bus 0 target 6 lun 0 sa0: Removable Sequential Access SCSI-2 device sa0: 10.0MB/s transfers (10.0MHz, offset 15) da0 at ahc0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-2 device da0: 80.0MB/s transfers (40.0MHz, offset 15, 16bit), Tagged Queueing Enabled da0: 8683MB (17783240 512 byte sectors: 255H 63S/T 1106C) da1 at ahc0 bus 0 target 1 lun 0 da1: Fixed Direct Access SCSI-2 device da1: 80.0MB/s transfers (40.0MHz, offset 15, 16bit), Tagged Queueing Enabled da1: 8683MB (17783240 512 byte sectors: 255H 63S/T 1106C) changing root device to da0s1a cd0 at ahc1 bus 0 target 5 lun 0 cd0: Removable CD-ROM SCSI-2 device cd0: 20.0MB/s transfers (20.0MHz, offset 15) cd0: Attempt to query device size failed: NOT READY, Medium not present xl1: selecting MII, 100Mbps, half duplex xl1: selecting MII, 100Mbps, full duplex >Description: From the debug: Fatal trap 12: page fault while in kernel mode mp_lock=01000002; cpuid=1; lapic.id=01000000 fault virtual address = 0xf17642ac fault code = supervisor read, page not present instruction pointer = 0x8:0xf0171d5c stack pointer = 0x10:0xf94ffe4c frame pointer = 0x10:0xf94ffe54 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def321, gran 1 processor eflags = interrupt enabled, resume, IOPL=0 current process = 68658 (xperfmon++) interrupt mask = <- SMP:XXX kernel: type 12 trap, code=0 Stopped at ufs_sysctl+0x60 : mov1 0x14 (%edx), %eax Interesting note: system was stable for 10 days until this happened; I was using kldload yesterday to load msdos & received this error: Mar 22 12:05:28 freebie /kernel: module_register_init: module_register(msdos, f0 16efb8, 0xf1780a04) error 17 I've had one other panic (although I didn't get the info) about a month ago; I suspect it was due to similar things (using kldload on msdos). >How-To-Repeat: will try in off-hours to repeat by kldloading msdos. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 23 8:40:20 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9F9B614E40 for ; Tue, 23 Mar 1999 08:40:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id IAA12370; Tue, 23 Mar 1999 08:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from iseki-h5.cisco.com (iseki-h5.cisco.com [144.254.190.93]) by hub.freebsd.org (Postfix) with ESMTP id 164EA152BE for ; Tue, 23 Mar 1999 08:35:28 -0800 (PST) (envelope-from iseki@iseki-h5.cisco.com) Received: (from root@localhost) by iseki-h5.cisco.com (8.9.3/8.9.2) id BAA14190; Wed, 24 Mar 1999 01:35:04 +0900 (JST) (envelope-from iseki) Message-Id: <199903231635.BAA14190@iseki-h5.cisco.com> Date: Wed, 24 Mar 1999 01:35:04 +0900 (JST) From: Isao SEKI Reply-To: iseki@gongon.com To: FreeBSD-gnats-submit@freebsd.org Cc: iseki@gongon.com X-Send-Pr-Version: 3.2 Subject: bin/10753: added a new function to /sbin/nos-tun Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10753 >Category: bin >Synopsis: added a new function to /sbin/nos-tun >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 Mar 23 08:40:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Isao SEKI >Release: FreeBSD 4.0-CURRENT i386 >Organization: >Environment: IBM ThinkPad535 with 40MB DRAM >Description: added a new function to /sbin/nos-tun >How-To-Repeat: >Fix: Please see the following patch diff -c nos-tun/nos-tun.8 nos-tun.iseki/nos-tun.8 *** nos-tun/nos-tun.8 Tue May 5 15:24:12 1998 --- nos-tun.iseki/nos-tun.8 Wed Mar 24 01:19:54 1999 *************** *** 22,27 **** --- 22,29 ---- .Ar source .Fl d .Ar destination + .Fl p + .Ar protocol_number .Ar target .Sh DESCRIPTION .Nm Nos-tun *************** *** 51,56 **** --- 53,62 ---- .Bx Free end, a concept cisco doesn't really implement. .Pp + .Ar Protocol number + sets tunnel mode. Original KA9Q NOS uses 94 but many peoples use 4 + in worldwide backbone of ampr.org. + .Pp .Ar Target is the address of the remote tunnel device, this must match the source address set on the remote end. *************** *** 77,79 **** --- 83,87 ---- wrote the program, .An Poul-Henning Kamp Aq phk@FreeBSD.org wrote the man-page. + .An Isao SEKI Aq iseki@gongon.com + added a new flag, IP protocol number. diff -c nos-tun/nos-tun.c nos-tun.iseki/nos-tun.c *** nos-tun/nos-tun.c Mon Aug 3 01:06:34 1998 --- nos-tun.iseki/nos-tun.c Wed Mar 24 00:53:41 1999 *************** *** 48,53 **** --- 48,60 ---- * (and why do you want more ?) */ + /* + * Mar. 23 1999 by Isao SEKI + * I added a new flag for ip protocol number. + * We are using 4 as protocol number in ampr.org. + * + */ + #ifndef lint static const char rcsid[] = "$Id: nos-tun.c,v 1.4 1998/08/02 16:06:34 bde Exp $"; *************** *** 232,237 **** --- 239,246 ---- char *point_to = NULL; char *to_point = NULL; char *target; + char *protocol = NULL; + int protnum; struct sockaddr t_laddr; /* Source address of tunnel */ struct sockaddr whereto; /* Destination of tunnel */ *************** *** 244,250 **** int nfds; /* Return from select() */ ! while ((c = getopt(argc, argv, "d:s:t:")) != -1) { switch (c) { case 'd': to_point = optarg; --- 253,259 ---- int nfds; /* Return from select() */ ! while ((c = getopt(argc, argv, "d:s:t:p:")) != -1) { switch (c) { case 'd': to_point = optarg; *************** *** 255,260 **** --- 264,272 ---- case 't': devname = optarg; break; + case 'p': + protocol = optarg; + break; } } argc -= optind; *************** *** 265,270 **** --- 277,287 ---- usage(); } + if(protocol == NULL) + protnum = 94; + else + protnum = atoi(protocol); + target = *argv; /* Establish logging through 'syslog' */ *************** *** 284,290 **** if(Set_address(target, to)) Finish(4); ! if ((net = socket(AF_INET, SOCK_RAW, 94)) < 0) { syslog(LOG_ERR,"can't open socket - %m"); Finish(5); } --- 301,307 ---- if(Set_address(target, to)) Finish(4); ! if ((net = socket(AF_INET, SOCK_RAW, protnum)) < 0) { syslog(LOG_ERR,"can't open socket - %m"); Finish(5); } *************** *** 348,354 **** usage() { fprintf(stderr, ! "usage: nos_tun -t -s -d \n"); exit(1); } --- 365,371 ---- usage() { fprintf(stderr, ! "usage: nos_tun -t -s -d -p \n"); exit(1); } >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 23 9: 6:41 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from george.lbl.gov (george.lbl.gov [131.243.2.12]) by hub.freebsd.org (Postfix) with ESMTP id BC2AE14D41 for ; Tue, 23 Mar 1999 09:06:37 -0800 (PST) (envelope-from jin@george.lbl.gov) Received: (from jin@localhost) by george.lbl.gov (8.9.2/8.9.2) id JAA05739 for bugs@freebsd.org; Tue, 23 Mar 1999 09:06:17 -0800 (PST) Date: Tue, 23 Mar 1999 09:06:17 -0800 (PST) Message-Id: <199903231706.JAA05739@george.lbl.gov> From: jin@george.lbl.gov To: bugs@freebsd.org Subject: bin/2258 route add/delete Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Fri Mar 19 02:25:00 PST 1999 State-Changed-Why: Originator not available for feedback on later releases. Original host has been renamed, so the mail was undelieveable, sorry about that. The problem still remains in 3.x and 4.0-SNAPs. -------------------- info -------------------- Copyright (c) 1980, 1983, 1986, 1988, 1990, 1991, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.0-19990318-CURRENT (MinMax) #0: Mon Mar 22 12:24:56 PST 1999 Welcome to FreeBSD! If the doc distribution has been loaded on this machine, the FreeBSD Handbook will be in file:/usr/share/doc/handbook and the FAQ in file:/usr/share/doc/FAQ Type /stand/sysinstall to re-enter the installation and configuration utility testp2# route add default 128.3.50.1 1 add net default: gateway testgw testp2# netstat -r Routing tables Internet: Destination Gateway Flags Refs Use Netif Expire ^C testp2# netstat -rn Routing tables Internet: Destination Gateway Flags Refs Use Netif Expire default 128.3.50.1 UGSc 1 0 ep0 => default 128.3.196.1 UGSc 9 265 ep0 127.0.0.1 127.0.0.1 UH 2 54 lo0 128.3.196/22 link#2 UC 0 0 ep0 128.3.196.1 0:60:3e:52:6c:0 UHLW 6 0 ep0 1176 ... testp2# route delete default 128.3.50.1 delete net default: gateway 128.3.50.1 # deleted a wrong router!!! testp2# netstat -r Routing tables Internet: Destination Gateway Flags Refs Use Netif Expire default 128.3.50.1 UGSc 1 0 ep0 localhost localhost UH 2 54 lo0 128.3.196/22 link#2 UC 0 0 ep0 128.3.196.1 0:60:3e:52:6c:0 UHLW 0 0 ep0 1150 ... testp2# route delete default 128.3.50.1 route: writing to routing socket: No such process delete net default: gateway 128.3.50.1: not in table testp2# Mar 23 08:57:47 testp2 xntpd[125]: sendto(131.243.2.240): No route to host Mar 23 08:57:47 testp2 xntpd[125]: sendto(131.243.2.240): No route to host network is dead... -Jin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 23 9:36:27 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D803114CCD; Tue, 23 Mar 1999 09:36:26 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id JAA17070; Tue, 23 Mar 1999 09:36:09 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 23 Mar 1999 09:36:09 -0800 (PST) From: Message-Id: <199903231736.JAA17070@freefall.freebsd.org> To: pknerr@ntsource.com, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/9230 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Problem with iostreams, seekg, tellg State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Tue Mar 23 09:35:23 PST 1999 State-Changed-Why: Can't make contact with author to acquire How-To-Repeat. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 23 9:40:20 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 257221538F for ; Tue, 23 Mar 1999 09:40:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id JAA17356; Tue, 23 Mar 1999 09:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Tue, 23 Mar 1999 09:40:01 -0800 (PST) Message-Id: <199903231740.JAA17356@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: misc/9230: Problem with iostreams, seekg, tellg Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/9230; it has been noted by GNATS. From: Sheldon Hearn To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: misc/9230: Problem with iostreams, seekg, tellg Date: Tue, 23 Mar 1999 19:36:57 +0200 Unable to contact originator, not author. :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 23 9:40:34 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2EE9C15395; Tue, 23 Mar 1999 09:40:33 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id JAA17440; Tue, 23 Mar 1999 09:40:15 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 23 Mar 1999 09:40:15 -0800 (PST) From: Message-Id: <199903231740.JAA17440@freefall.freebsd.org> To: t-ishii@tryplanet.com, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/9381 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: read freed memory State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Tue Mar 23 09:39:32 PST 1999 State-Changed-Why: Code changed, originator unavailable for clarification. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 23 9:50:19 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 916E214C19 for ; Tue, 23 Mar 1999 09:50:18 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id JAA18204; Tue, 23 Mar 1999 09:50:00 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Tue, 23 Mar 1999 09:50:00 -0800 (PST) Message-Id: <199903231750.JAA18204@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: misc/8493: Stable build process fails to install objc includes Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/8493; it has been noted by GNATS. From: Sheldon Hearn To: John Saunders Cc: freebsd-gnats-submit@freebsd.org Subject: Re: misc/8493: Stable build process fails to install objc includes Date: Tue, 23 Mar 1999 19:44:03 +0200 Hi John, The problem you reported concerning objc header files is unlikely to be addressed in 2.2, since active development on that branch is over. Also, even if the problem does exist in 3.1-STABLE and 4.0-CURRENT, it's not worth addressing for a compiler that's on its way out of the base system anyway. The solution to your troubles is to do things in the right order. Don't do make -DCLOBBER includes buildworld Instead, do make buildworld make -DCLOBBER installworld Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 23 9:54:31 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 445C814D67; Tue, 23 Mar 1999 09:54:31 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id JAA18447; Tue, 23 Mar 1999 09:54:13 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 23 Mar 1999 09:54:13 -0800 (PST) From: Message-Id: <199903231754.JAA18447@freefall.freebsd.org> To: john@nlc.net.au, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/8493 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Stable build process fails to install objc includes State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Tue Mar 23 09:53:19 PST 1999 State-Changed-Why: Fix not feasible and problem not serious as long as it's only triggered by odd calling sequence of targets. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 23 9:56:42 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 393D4152CE; Tue, 23 Mar 1999 09:56:42 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id JAA18659; Tue, 23 Mar 1999 09:56:24 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 23 Mar 1999 09:56:24 -0800 (PST) From: Message-Id: <199903231756.JAA18659@freefall.freebsd.org> To: petry@netmasters.com, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: conf/3577 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: eBones and OBJLINK=yes fails to build State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Tue Mar 23 09:55:36 PST 1999 State-Changed-Why: OBJLINK support was just removed from current. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 23 10:20:20 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 53E8914BFA for ; Tue, 23 Mar 1999 10:20:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id KAA21163; Tue, 23 Mar 1999 10:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Tue, 23 Mar 1999 10:20:01 -0800 (PST) Message-Id: <199903231820.KAA21163@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Zippy Subject: Re: kern/10752: Kernel panic (?) trap 12: page fault while in kernel mode Reply-To: Zippy Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/10752; it has been noted by GNATS. From: Zippy To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: kern/10752: Kernel panic (?) trap 12: page fault while in kernel mode Date: Tue, 23 Mar 1999 13:07:57 -0500 (EST) One followup: someone mentioned that error 17 (as a result of 'kldload msdos') was EEXIST. Not sure what that implies, but I do know that kldstat did NOT show msdos in there before the kldload, and it WAS in the list after the kldload. I then kldunloaded it, and the system was stable (under extremely light usage) for the next 12 hours. This morning, as I was logging on via xdm (and xperfmon++ was starting, I guess), I got the fault. Hope this helps. SB To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 23 10:40:20 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 93FED152FE for ; Tue, 23 Mar 1999 10:40:18 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id KAA22910; Tue, 23 Mar 1999 10:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 0A9CE1506F; Tue, 23 Mar 1999 10:30:44 -0800 (PST) Message-Id: <19990323183044.0A9CE1506F@hub.freebsd.org> Date: Tue, 23 Mar 1999 10:30:44 -0800 (PST) From: jon@food.tamu.edu To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: i386/10754: UserConfig does not save my NIC settings for ed0 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10754 >Category: i386 >Synopsis: UserConfig does not save my NIC settings for ed0 >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Mar 23 10:40:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Jon Gardner >Release: 3.1-RELEASE >Organization: Texas A&M University Dept. of Food Services >Environment: FreeBSD food-bsd.tamu.edu 3.1-RELEASE FreeBSD 3.1-RELEASE #0: Mon Feb 15 11:08:08 GMT 1999 jkh@usw3.freebsd.org:/usr/src/sys/compile/GENERIC i386 >Description: After successfully installing 3.1 via ftp on a Pentium-based clone with an 8.4Gb IDE drive, the settings for my NIC (ed0) were not saved; specifically, the IO should have been 0x300 instead of the default 0x280. >How-To-Repeat: Reboot the host, and it "forgets" the configuration. I have to run UserConfig at every boot. >Fix: Edit the GENERIC kernel config, change the 0x280 to 0x300 in the ed0 definition, and compile a new kernel that uses 0x300 as the default. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 23 10:40:20 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DFE6F1532C for ; Tue, 23 Mar 1999 10:40:18 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id KAA22919; Tue, 23 Mar 1999 10:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 4126114BFA; Tue, 23 Mar 1999 10:40:14 -0800 (PST) Message-Id: <19990323184014.4126114BFA@hub.freebsd.org> Date: Tue, 23 Mar 1999 10:40:14 -0800 (PST) From: ume@mahoroba.org To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: kern/10755: de driver says `invalid EESPROM checksum' Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10755 >Category: kern >Synopsis: de driver says `invalid EESPROM checksum' >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 Mar 23 10:40:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Hajimu UMEMOTO >Release: 4.0-CURRENT >Organization: Internet Mutual Aid Society YOKOHAMA >Environment: FreeBSD peace.calm.imasy.or.jp 4.0-CURRENT FreeBSD 4.0-CURRENT #0: Fri Feb 12 03:27:37 JST 1999 ume@peace.calm.imasy.or.jp:/usr/src/sys/compile/PEACE-UP i386 >Description: de driver says `invalid EESPROM checksum' for Digital 21143 Fast Ethernet. According to `Digital Semiconductor(TM) 21X4 Serial ROM Format Version 4.05', location of CRC was changed. >How-To-Repeat: Use Digital 21143 Fast Ethernet. >Fix: --- if_de.c.orig Mon Mar 22 23:22:58 1999 +++ if_de.c Wed Mar 24 03:13:25 1999 @@ -2084,9 +2084,14 @@ } #define tulip_mchash(mca) (tulip_crc32(mca, 6) & 0x1FF) -#define tulip_srom_crcok(databuf) ( \ +#define tulip_srom_crcok(databuf) \ + (tulip_srom_crcok128(databuf) || tulip_srom_crcok96(databuf)) +#define tulip_srom_crcok128(databuf) ( \ ((tulip_crc32(databuf, 126) & 0xFFFFU) ^ 0xFFFFU) == \ ((databuf)[126] | ((databuf)[127] << 8))) +#define tulip_srom_crcok96(databuf) ( \ + ((tulip_crc32(databuf, 94) & 0xFFFFU) ^ 0xFFFFU) == \ + ((databuf)[94] | ((databuf)[95] << 8))) static unsigned tulip_crc32( >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 23 11:10:33 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from mail.wa.freei.net (Mail1.Wa.FreeI.Net [209.162.144.3]) by hub.freebsd.org (Postfix) with ESMTP id E5DE514E47; Tue, 23 Mar 1999 11:10:29 -0800 (PST) (envelope-from Silvia_Brown6@gte.net) Received: from 209.162.150.235 (dial235.Block3.trm2.FreeI.Net [209.162.150.235]) by mail.wa.freei.net (8.9.1/8.9.1) with SMTP id WAA98111; Sun, 21 Mar 1999 22:05:02 -0800 (PST) (envelope-from Silvia_Brown6@gte.net) From: Silvia_Brown6@gte.net Message-Id: <199903220605.WAA98111@mail.wa.freei.net> Subject: Find Out What The Future Holds For You? Date: Sun, 21 Mar 99 21:54:38 Pacific Standard Time Reply-To: Silvia_Brown6@gte.net X-Priority: 3 X-MSMailPriority: Normal Importance: Normal Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org LIVE PERSONAL PSYCHIC! (as seen on T.V.) LEARN TODAY WHAT YOUR FUTURE HOLDS FOR LOVE, FAMILY, AND MONEY. ASTROLOGY CLAIRVOYANCY NUMBEROLOGY TAROT ALL QUESTIONS ANSWERED IMMEDIATELY! REALIZE YOUR DESTINY! CALL RIGHT NOW! 1-900-226-4140 or 1-800-372-3384 for VISA, MC (These are not sex lines!) This message is intended for Psychic Readers, Psychic Users and people who are involved in the $1 Billion Dollar a year Psychic Industry. If this message has reached you in error, please disregard it and accept our apoligies. To be removed from this list, please respond with the subject "remove". Thank You. Stop Unsolicited Commercial Email - join CAUCE (http://www.cauce.org) Support HR 1748, the anti-spam bill. LIVE PERSONAL PSYCHIC! (as seen on T.V.) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 23 11:50:19 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 991B51538F for ; Tue, 23 Mar 1999 11:50:18 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id LAA31463; Tue, 23 Mar 1999 11:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Tue, 23 Mar 1999 11:50:01 -0800 (PST) Message-Id: <199903231950.LAA31463@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: kern/10728: WCD driver does not recognize a recovered atapi/ide error Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/10728; it has been noted by GNATS. From: Sheldon Hearn To: "Jukka A. Ukkonen" Cc: freebsd-gnats-submit@freebsd.org Subject: Re: kern/10728: WCD driver does not recognize a recovered atapi/ide error Date: Tue, 23 Mar 1999 21:43:08 +0200 Hi Jukka, The problem you reported is unlikely to receive attention in the 2.2 branch for which active development is over. Do you get the same results using 3.1-STABLE or 4.0-CURRENT? Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 23 11:58:31 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 20E3914F2A; Tue, 23 Mar 1999 11:58:31 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id LAA31957; Tue, 23 Mar 1999 11:58:13 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 23 Mar 1999 11:58:13 -0800 (PST) From: Message-Id: <199903231958.LAA31957@freefall.freebsd.org> To: adam@whizkidtech.net, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: conf/10715 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Console font loading problem at boot time State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Tue Mar 23 11:52:12 PST 1999 State-Changed-Why: Asked and answered. [Would make a great FAQ] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 23 12: 0:21 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D8B1814F2A for ; Tue, 23 Mar 1999 12:00:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id MAA32431; Tue, 23 Mar 1999 12:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Tue, 23 Mar 1999 12:00:02 -0800 (PST) Message-Id: <199903232000.MAA32431@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: kern/10746: apm poweroff fails on 3.1 (worked on 2.2.6) Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/10746; it has been noted by GNATS. From: Sheldon Hearn To: sec@42.org Cc: freebsd-gnats-submit@freebsd.org Subject: Re: kern/10746: apm poweroff fails on 3.1 (worked on 2.2.6) Date: Tue, 23 Mar 1999 21:39:24 +0200 Hi Stefan, What deos dmesg have to say about apm0? Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 23 12:22:41 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DFFD514D68; Tue, 23 Mar 1999 12:22:40 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id MAA39833; Tue, 23 Mar 1999 12:22:23 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 23 Mar 1999 12:22:23 -0800 (PST) From: Message-Id: <199903232022.MAA39833@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, jkh@FreeBSD.org Subject: Re: bin/10711 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [Patch] sysinstall does not use the proper fs name for 'file system' option Responsible-Changed-From-To: freebsd-bugs->jkh Responsible-Changed-By: sheldonh Responsible-Changed-When: Tue Mar 23 12:01:43 PST 1999 Responsible-Changed-Why: Sysinstall is Jordan's baby. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 23 13:41:30 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E64BC14D01; Tue, 23 Mar 1999 13:41:29 -0800 (PST) (envelope-from dfr@FreeBSD.org) Received: (from dfr@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id NAA46349; Tue, 23 Mar 1999 13:41:12 -0800 (PST) (envelope-from dfr@FreeBSD.org) Date: Tue, 23 Mar 1999 13:41:12 -0800 (PST) From: Message-Id: <199903232141.NAA46349@freefall.freebsd.org> To: M.Indlekofer@fz-juelich.de, dfr@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/10653 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: cdevsw_module_handler MOD_UNLOAD problem State-Changed-From-To: open->closed State-Changed-By: dfr State-Changed-When: Tue Mar 23 13:40:40 PST 1999 State-Changed-Why: Fixed in version 1.31 and 1.29.2.1 of kern_conf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 23 14:50:19 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 26C981540C for ; Tue, 23 Mar 1999 14:50:18 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id OAA65624; Tue, 23 Mar 1999 14:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Tue, 23 Mar 1999 14:50:01 -0800 (PST) Message-Id: <199903232250.OAA65624@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Stefan `Sec` Zehl Subject: Re: kern/10746: apm poweroff fails on 3.1 (worked on 2.2.6) Reply-To: Stefan `Sec` Zehl Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/10746; it has been noted by GNATS. From: Stefan `Sec` Zehl To: Sheldon Hearn Cc: freebsd-gnats-submit@freebsd.org Subject: Re: kern/10746: apm poweroff fails on 3.1 (worked on 2.2.6) Date: Tue, 23 Mar 1999 23:42:23 +0100 On Tue, Mar 23, 1999 at 09:39:24PM +0200, Sheldon Hearn wrote: > > Hi Stefan, > > What deos dmesg have to say about apm0? Whoops, i forogt to add this: btl:~>dmesg|grep apm apm0 flags 0x31 on isa apm: found APM BIOS version 1.2 btl:~>apm APM version: 1.2 APM Managment: Enabled AC Line status: on-line Battery status: unknown Remaining battery life: unknown Remaining battery time: unknown Number of batteries: 0 Resume timer: disabled Resume on ring indicator: disabled APM Capacities: global standby state global suspend state resume timer from standby resume timer from suspend CU, Sec -- In 1968 it took the computing-Power of 2 C-64 to fly a rocket to the moon. Now, 1997 it takes the Power of a Pentium 133 to run Microsoft Windows 95. Something must have gone wrong. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 23 15:18: 9 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A65FE14ECD; Tue, 23 Mar 1999 15:18:07 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id PAA69473; Tue, 23 Mar 1999 15:17:50 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 23 Mar 1999 15:17:50 -0800 (PST) From: Message-Id: <199903232317.PAA69473@freefall.freebsd.org> To: gary@hotlava.com, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, phk@FreeBSD.org Subject: Re: kern/9218 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: sysctl crashes system with bad args State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Tue Mar 23 15:15:35 PST 1999 State-Changed-Why: Fixed in src/sys/kern/kern_sysctl.c revision 1.85 . His commit. Responsible-Changed-From-To: freebsd-bugs->phk Responsible-Changed-By: sheldonh Responsible-Changed-When: Tue Mar 23 15:15:35 PST 1999 Responsible-Changed-Why: His commit. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 23 17: 0:20 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 49C4115052 for ; Tue, 23 Mar 1999 17:00:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id RAA85279; Tue, 23 Mar 1999 17:00:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-a.abtsfd1.bc.wave.home.com [24.113.18.89]) by hub.freebsd.org (Postfix) with ESMTP id 5B31F14E57 for ; Tue, 23 Mar 1999 16:59:15 -0800 (PST) (envelope-from norn@norn.ca.eu.org) Received: (from norn@localhost) by norn.ca.eu.org (8.9.3/8.9.3) id QAA00826; Tue, 23 Mar 1999 16:58:53 -0800 (PST) (envelope-from norn) Message-Id: <199903240058.QAA00826@norn.ca.eu.org> Date: Tue, 23 Mar 1999 16:58:53 -0800 (PST) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: conf/10764: Minor spelling(etc) changes to LINT Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10764 >Category: conf >Synopsis: Minor spelling(etc) changes to LINT >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 Mar 23 17:00:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD 4.0-CURRENT i386 >Description: Just some very minor spelling errors etc. Patches against releng_3 and current below. >How-To-Repeat: >Fix: CURRENT: Index: LINT =================================================================== RCS file: /cvs/freebsd/src/sys/i386/conf/LINT,v retrieving revision 1.570 diff -u -2 -r1.570 LINT --- LINT 1999/03/17 01:50:21 1.570 +++ LINT 1999/03/24 00:56:36 @@ -789,5 +789,5 @@ # # The option VINUMDEBUG must match the value set in CFLAGS -# in /usr/src/sbin/vinum/MAKEFILE. Failure to do so will result in +# in /usr/src/sbin/vinum/Makefile. Failure to do so will result in # the following message from vinum(8): # @@ -1023,5 +1023,5 @@ # ATA and ATAPI devices # This is work in progress, use at your own risk. -# It currently reuses the majors of wd.c and freinds. +# It currently reuses the majors of wd.c and friends. # It cannot co-exist with the old system in one kernel. # You only need one "controller ata0" for it to find all @@ -1290,5 +1290,5 @@ # CS423x, OPTi931, Yamaha OPL-SAx, and also for SB16, GusPnP. # For more information about this driver and supported cards, -# see the pcm.4 man page and /sys/i386/isa/snd/CARDS. +# see the pcm.4 man page and /sys/i386/isa/snd/CARDS. # # The flags of the device tells the device a bit more info about the RELENG_3: Index: LINT =================================================================== RCS file: /cvs/freebsd/src/sys/i386/conf/LINT,v retrieving revision 1.539.2.7 diff -u -2 -r1.539.2.7 LINT --- LINT 1999/03/14 07:07:01 1.539.2.7 +++ LINT 1999/03/24 00:55:24 @@ -1231,5 +1231,5 @@ # CS423x, OPTi931, Yamaha OPL-SAx, and also for SB16, GusPnP. # For more information about this driver and supported cards, -# see the pcm.4 man page and /sys/i386/isa/snd/CARDS. +# see the pcm.4 man page and /sys/i386/isa/snd/CARDS. # # The flags of the device tells the device a bit more info about the -Chris >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 23 19:11:59 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from mail.HiWAAY.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (Postfix) with ESMTP id 87BC414E57 for ; Tue, 23 Mar 1999 19:11:41 -0800 (PST) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.HiWAAY.net (8.9.1a/8.9.0) with SMTP id VAA10233 for ; Tue, 23 Mar 1999 21:11:19 -0600 (CST) Date: Tue, 23 Mar 1999 21:11:19 -0600 (CST) From: Steve Price To: freebsd-bugs@freebsd.org Subject: New FreeBSD GNATS statistics 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 At the request of a couple of people I've put together a very rough webpage that attempts to show the current state of FreeBSD's GNATS database. It is still in the formative stages right now so any and all suggestions are welcome. http://www.freebsd.org/~steve/gnatstats.html The scripts that generate the HTML docs are written in Perl. In fact, if you view the source of the page you'll see the raw data that drives the generation. Yes I know all the lines are pretty much straight but that's what happens when you only have 69 data points (so far) to go by. The script is re-run every hour at five minutes past. -steve PS: Anyone that wants to help pretty it up, get with me in private mail and I'll send you a copy of the scripts. I'm not real proud of them, but I think it is sort of neat that it save its state to perl code that can be eval'd on the next run. Probably not something that Tom C. would be proud of, but I always wanted to try it. :) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 23 20:10:25 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7EDE215455 for ; Tue, 23 Mar 1999 20:10:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id UAA02570; Tue, 23 Mar 1999 20:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from herring.in.it.okayama-u.ac.jp (herring.in.it.okayama-u.ac.jp [150.46.6.41]) by hub.freebsd.org (Postfix) with ESMTP id 8E253152F6 for ; Tue, 23 Mar 1999 20:06:03 -0800 (PST) (envelope-from kagotani@in.it.okayama-u.ac.jp) Received: from deimos.in.it.okayama-u.ac.jp (deimos.in.it.okayama-u.ac.jp [150.46.6.88]) by herring.in.it.okayama-u.ac.jp (8.8.8/3.6W) with ESMTP id NAA27021; Wed, 24 Mar 1999 13:05:43 +0900 (JST) Received: (from kagotani@localhost) by deimos.in.it.okayama-u.ac.jp (8.9.2/3.6W) id NAA04487; Wed, 24 Mar 1999 13:06:14 +0900 (JST) Message-Id: <199903240406.NAA04487@deimos.in.it.okayama-u.ac.jp> Date: Wed, 24 Mar 1999 13:06:14 +0900 (JST) From: Hiroto Kagotani Reply-To: kagotani@in.it.okayama-u.ac.jp To: FreeBSD-gnats-submit@freebsd.org Cc: kagotani@in.it.okayama-u.ac.jp X-Send-Pr-Version: 3.2 Subject: i386/10766: obsolete device name wcd is still in kernel Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Note: There was a bad value `very' for the field `>Priority:'. It was set to the default value of `medium'. >Number: 10766 >Category: i386 >Synopsis: obsolete device name wcd is still left unchanged in kernel code >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Mar 23 20:10:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Hiroto Kagotani >Release: FreeBSD 3.1-RELEASE i386 >Organization: Okayama University >Environment: any >Description: Although IDE CD-ROM device name "wcd" has been changed to "acd", kernel may print "trying wcd0 as rootdev (...)" in verbose mode. >How-To-Repeat: 1. modify loader so that it can handle -C (boot with cdrom root fs). diff -ru boot-/i386/libi386/bootinfo.c boot/i386/libi386/bootinfo.c --- boot-/i386/libi386/bootinfo.c Sun Jan 24 09:16:00 1999 +++ boot/i386/libi386/bootinfo.c Wed Mar 24 11:39:47 1999 @@ -76,6 +76,9 @@ case 'a': howto |= RB_ASKNAME; break; + case 'C': + howto |= RB_CDROM; + break; case 'c': howto |= RB_CONFIG; break; 2. replace /boot/loader in kern.flp with the binary above. 3. replace /boot/loader.rc in kern.flp with the following 2 lines: load /kernel boot -C -v 4. boot with the modified kern.flp. >Fix: --- i386/i386/autoconf.c.orig Tue Mar 23 16:53:31 1999 +++ i386/i386/autoconf.c Tue Mar 23 16:54:17 1999 @@ -130,7 +130,7 @@ { "mcd", 7 }, { "scd", 16 }, { "matcd", 17 }, - { "wcd", 19 }, + { "acd", 19 }, { 0, 0} }; >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 23 20:10:33 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7180215450 for ; Tue, 23 Mar 1999 20:10:18 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id UAA02561; Tue, 23 Mar 1999 20:10:00 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from azusa.adin.co.jp (mail.adin.co.jp [202.213.164.130]) by hub.freebsd.org (Postfix) with ESMTP id 07CA215321 for ; Tue, 23 Mar 1999 20:00:27 -0800 (PST) (envelope-from futatuki@adin.co.jp) Received: from sheep.adin.co.jp (sheep.adin.co.jp [172.16.17.226]) by azusa.adin.co.jp (8.8.8/8.8.8) with ESMTP id NAA19993 for ; Wed, 24 Mar 1999 13:00:52 +0900 (JST) Received: (from futatuki@localhost) by sheep.adin.co.jp (8.8.8/8.8.8) id MAA01108; Wed, 24 Mar 1999 12:57:54 +0900 (JST) (envelope-from futatuki) Message-Id: <199903240357.MAA01108@sheep.adin.co.jp> Date: Wed, 24 Mar 1999 12:57:54 +0900 (JST) From: futatuki@fureai.or.jp Reply-To: futatuki@fureai.or.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/10765: buffer over run on msgrcv() system call Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10765 >Category: kern >Synopsis: buffer over run on msgrcv() system call >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Mar 23 20:10:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Yasuhito FUTATSUKI >Release: FreeBSD 3.1-RELEASE i386 >Organization: >Environment: FreeBSD 3.1-RELEASE i386 / FreeBSD 2.2.7-RELEASE i386 >Description: msgrcv(msqid, msgp, msgsz, msgtyp, msgflg) copies larger size of sage data than specified in msgsz when 1. msgsz is larger than `msgssz', and 2. msgsz is not multiples of `msgssz' where msgssz is the size of message segment in bytes, which is specified in kernel configration option MSGSSZ, the default is 8. >How-To-Repeat: Assume msgssz is 8, message que of id msgid is accessable, a message of type msgtyp and size 20 bytes was sent, then struct { long mtype; char mtext[20]; long some_data; } mymsg; msgrcv(msqid, (void*)mymsg, 20, msgtyp, 0); will crash mymsg.some_data . >Fix: *** sys/kern/sysv_msg.c.dist Mon Mar 30 18:50:35 1998 --- sys/kern/sysv_msg.c Wed Mar 24 10:52:34 1999 *************** *** 993,1002 **** for (len = 0; len < msgsz; len += msginfo.msgssz) { size_t tlen; ! if (msgsz > msginfo.msgssz) tlen = msginfo.msgssz; else ! tlen = msgsz; if (next <= -1) panic("next too low #3"); if (next >= msginfo.msgseg) --- 993,1002 ---- for (len = 0; len < msgsz; len += msginfo.msgssz) { size_t tlen; ! if (msgsz - len > msginfo.msgssz) tlen = msginfo.msgssz; else ! tlen = msgsz -len; if (next <= -1) panic("next too low #3"); if (next >= msginfo.msgseg) >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 23 20:30:21 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DB4BD15474 for ; Tue, 23 Mar 1999 20:30:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id UAA03690; Tue, 23 Mar 1999 20:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Tue, 23 Mar 1999 20:30:01 -0800 (PST) Message-Id: <199903240430.UAA03690@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Chris Costello Subject: Re: i386/10766: obsolete device name wcd is still in kernel Reply-To: Chris Costello Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/10766; it has been noted by GNATS. From: Chris Costello To: Hiroto Kagotani Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: i386/10766: obsolete device name wcd is still in kernel Date: Tue, 23 Mar 1999 22:24:21 -0600 On Tue, Mar 23, 1999, Hiroto Kagotani wrote: > >Description: > > Although IDE CD-ROM device name "wcd" has been changed to "acd", > kernel may print "trying wcd0 as rootdev (...)" in verbose mode. Incorrect, it has been renamed to wcd again. > > >Release-Note: > >Audit-Trail: > >Unformatted: > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-bugs" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 24 2:21:44 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 380521535F for ; Wed, 24 Mar 1999 02:20:21 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id CAA13796; Wed, 24 Mar 1999 02:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Wed, 24 Mar 1999 02:20:02 -0800 (PST) Message-Id: <199903241020.CAA13796@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Jukka A. Ukkonen" Subject: Re: kern/10728: WCD driver does not recognize a recovered atapi/ide error Reply-To: "Jukka A. Ukkonen" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/10728; it has been noted by GNATS. From: "Jukka A. Ukkonen" To: sheldonh@iafrica.com (Sheldon Hearn) Cc: Subject: Re: kern/10728: WCD driver does not recognize a recovered atapi/ide error Date: Wed, 24 Mar 1999 12:07:46 +0200 (EET) Quoting Sheldon Hearn: > > The problem you reported is unlikely to receive attention in the 2.2 > branch for which active development is over. > > Do you get the same results using 3.1-STABLE or 4.0-CURRENT? > > Ciao, > Sheldon. Actually I have not tested the wcd.c code for those versions, because I have not had a chance to upgrade to 3.1 yet. I have not even received my CD yet. Anyhow I just had a quick look at the 3.1 code on nic.funet.fi (a.k.a www.fi.freebsd.org), and it seems the wcd.c code has been moved completely over to atapi-cd.c, but the strategy there still seems to be exactly what caused fuzz in 2.2.8. The tests for the result code in 3.1 atapi-cd.c are done like this if (result.code) { atapi_error(cdp->ata, cdp->unit, result); return EIO; } This is exactly the same as in the old wcd.c in 2.2.8 (except the name of the error function is not wcd_error) for which I changed the if-condition to read if (result.code && ((result.error & AER_SKEY) != AER_SK_RECOVERED_ERROR)) In general the logic in the new atapi-cd.c seems basically unchanged from what it was in wcd.c in 2.2.8. So, I have every reason to believe the same changes should still be applicable. Cheers, // jau .--- ..- -.- -.- .- .- .-.-.- ..- -.- -.- --- -. . -. / Jukka A. Ukkonen, Internet Services R&D / Sonera Ltd. /__ M.Sc. (sw-eng & cs) (Phone) +358-2040-63673 / Internet: Jukka.Ukkonen@sonera.fi (Fax) +358-2040-64724 / Internet: jau@iki.fi (Mobile) +358-400-606671 v Internet: ukkonen@nic.funet.fi (Home&Fax) +358-9-6215280 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 24 3:30:24 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B031D1548E for ; Wed, 24 Mar 1999 03:30:22 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id DAA18961; Wed, 24 Mar 1999 03:30:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Wed, 24 Mar 1999 03:30:03 -0800 (PST) Message-Id: <199903241130.DAA18961@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Joël Faedi" Subject: Re: bin/5139: portmap does not find interfaces correctly Reply-To: "Joël Faedi" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/5139; it has been noted by GNATS. From: "Joël Faedi" To: "Sheldon Hearn" Cc: Subject: Re: bin/5139: portmap does not find interfaces correctly Date: Wed, 24 Mar 1999 12:15:14 +0100 > >Okay, so could you send diffs against 1.7 ? The problem I had was that >it was impossible for me to comparre your code against the current code. >If you could send a diff, I can test it. > With the new code, the patch is very small: 1 line for the problem itself, other lines are only for cleaner code in TEST mode (no gcc warning). *** from_local-1.7-JF.c Wed Mar 24 12:10:01 1999 --- from_local-1.7.c Fri Mar 19 15:47:39 1999 *************** *** 40,46 **** static char sccsid[] = "@(#) from_local.c 1.2 93/11/16 21:50:02"; #endif static const char rcsid[] = ! "$Id: from_local.c,v 1.xxx 1999/03/24 11:25:49 xxx Exp $"; #endif #include --- 40,50 ---- static char sccsid[] = "@(#) from_local.c 1.2 93/11/16 21:50:02"; #endif static const char rcsid[] = ! "$Id: from_local.c,v 1.7 1998/08/17 06:05:55 jb Exp $"; ! #endif ! ! #ifdef TEST ! #undef perror #endif #include *************** *** 58,69 **** #include #include - #ifdef TEST - #include - #include - #include - #endif - #ifndef TRUE #define TRUE 1 #define FALSE 0 --- 62,67 ---- *************** *** 137,143 **** else if (ifr.ifr_flags & IFF_UP) /* active interface */ if (ioctl(s, SIOCGIFADDR, &ifr) < 0) perror("SIOCGIFADDR"); ! else if (ifr.ifr_addr.sa_family== AF_INET) { /* IP net interface only */ if (alloced < num_local + 1) { alloced += ESTIMATED_LOCAL; if (addrs) --- 135,141 ---- else if (ifr.ifr_flags & IFF_UP) /* active interface */ if (ioctl(s, SIOCGIFADDR, &ifr) < 0) perror("SIOCGIFADDR"); ! else { if (alloced < num_local + 1) { alloced += ESTIMATED_LOCAL; if (addrs) *************** *** 180,195 **** #ifdef TEST - int main() { ! int res, i; ! res = find_local(); ! printf("results: num_local=%d find_local()=%d\n", num_local, res); for (i = 0; i < num_local; i++) printf("%s\n", inet_ntoa(addrs[i])); - exit(0); } #endif --- 178,191 ---- #ifdef TEST main() { ! char *inet_ntoa(); ! int i; ! find_local(); for (i = 0; i < num_local; i++) printf("%s\n", inet_ntoa(addrs[i])); } #endif To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 24 7:40:22 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 420491501F for ; Wed, 24 Mar 1999 07:40:21 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id HAA81831; Wed, 24 Mar 1999 07:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Wed, 24 Mar 1999 07:40:02 -0800 (PST) Message-Id: <199903241540.HAA81831@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Daniel C. Sobral" Subject: Re: i386/10754: UserConfig does not save my NIC settings for ed0 Reply-To: "Daniel C. Sobral" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/10754; it has been noted by GNATS. From: "Daniel C. Sobral" To: jon@food.tamu.edu Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: i386/10754: UserConfig does not save my NIC settings for ed0 Date: Thu, 25 Mar 1999 00:33:10 +0900 Read the errata. jon@food.tamu.edu wrote: > > >Number: 10754 > >Category: i386 > >Synopsis: UserConfig does not save my NIC settings for ed0 > >Confidential: no > >Severity: critical > >Priority: high > >Responsible: freebsd-bugs > >State: open > >Quarter: > >Keywords: > >Date-Required: > >Class: sw-bug > >Submitter-Id: current-users > >Arrival-Date: Tue Mar 23 10:40:00 PST 1999 > >Closed-Date: > >Last-Modified: > >Originator: Jon Gardner > >Release: 3.1-RELEASE > >Organization: > Texas A&M University Dept. of Food Services > >Environment: > FreeBSD food-bsd.tamu.edu 3.1-RELEASE FreeBSD 3.1-RELEASE #0: Mon Feb 15 11:08:08 GMT 1999 jkh@usw3.freebsd.org:/usr/src/sys/compile/GENERIC i386 > >Description: > After successfully installing 3.1 via ftp on a Pentium-based clone with an 8.4Gb IDE drive, the settings for my NIC (ed0) were not saved; specifically, the IO should have been 0x300 instead of the default 0x280. > >How-To-Repeat: > Reboot the host, and it "forgets" the configuration. I have to run UserConfig at every boot. > >Fix: > Edit the GENERIC kernel config, change the 0x280 to 0x300 in the ed0 definition, and compile a new kernel that uses 0x300 as the default. > > >Release-Note: > >Audit-Trail: > >Unformatted: > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-bugs" in the body of the message -- Daniel C. Sobral (8-DCS) dcs@newsguy.com dcs@freebsd.org "There's a good reason that the daemon has never been shown wearing anything but sneakers." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 24 7:43:51 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from axl.noc.iafrica.com (axl.noc.iafrica.com [196.31.1.175]) by hub.freebsd.org (Postfix) with ESMTP id 4A27315488 for ; Wed, 24 Mar 1999 07:43:45 -0800 (PST) (envelope-from sheldonh@axl.noc.iafrica.com) Received: from sheldonh (helo=axl.noc.iafrica.com) by axl.noc.iafrica.com with local-esmtp (Exim 2.12 #1) id 10Ppo1-0000l5-00; Wed, 24 Mar 1999 17:42:57 +0200 From: Sheldon Hearn To: Kevin Day Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: kern/6630: [PATCH] Fix for Cyrix I8254 bug In-reply-to: Your message of "Fri, 19 Mar 1999 09:42:03 CST." <199903191542.JAA08679@home.dragondata.com> Date: Wed, 24 Mar 1999 17:42:57 +0200 Message-ID: <2918.922290177@axl.noc.iafrica.com> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, 19 Mar 1999 09:42:03 CST, Kevin Day wrote: > This problem is actually worse in 3.0. (Haven't tried 3.1 yet, but i'll do > that today) Really. And you're definitely seeing this on a box that is _not_ overclocking? Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 24 7:46:35 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from axl.noc.iafrica.com (axl.noc.iafrica.com [196.31.1.175]) by hub.freebsd.org (Postfix) with ESMTP id 791BC15450 for ; Wed, 24 Mar 1999 07:46:30 -0800 (PST) (envelope-from sheldonh@axl.noc.iafrica.com) Received: from sheldonh (helo=axl.noc.iafrica.com) by axl.noc.iafrica.com with local-esmtp (Exim 2.12 #1) id 10Ppqh-0000mV-00; Wed, 24 Mar 1999 17:45:43 +0200 From: Sheldon Hearn To: Kevin Day Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: kern/6630: [PATCH] Fix for Cyrix I8254 bug In-reply-to: Your message of "Wed, 24 Mar 1999 17:42:57 +0200." <2918.922290177@axl.noc.iafrica.com> Date: Wed, 24 Mar 1999 17:45:43 +0200 Message-ID: <3006.922290343@axl.noc.iafrica.com> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 24 Mar 1999 17:42:57 +0200, Sheldon Hearn wrote: > Really. And you're definitely seeing this on a box that is _not_ > overclocking? Please disregard. That was misdirected follow-up intended for another discussion. *squint* Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 24 7:50:22 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D64B6152D6 for ; Wed, 24 Mar 1999 07:50:20 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id HAA82892; Wed, 24 Mar 1999 07:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Wed, 24 Mar 1999 07:50:02 -0800 (PST) Message-Id: <199903241550.HAA82892@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Poul-Henning Kamp Subject: Re: kern/10609: adjtime bug (tv_sec >2147 ) and enhancement (nil first arg) 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/10609; it has been noted by GNATS. From: Poul-Henning Kamp To: haug@hawaii.conterra.com Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: kern/10609: adjtime bug (tv_sec >2147 ) and enhancement (nil first arg) Date: Wed, 24 Mar 1999 16:16:13 +0100 I don't really know if I think it makes sense to extend the area of adjtime(2)'s validity. If you were to tweak your clock 2148 seconds, it would take you 7160 minutes (at the 300msec/min fast rate). That is 5 days. Depending on you xtal, your clock may have drifted up to: 500PPM * 7160 * 60 = 214.8 seconds in the same amount of time, so we're talking about potentialy getting it 10% wrong... In comparison the ntp_adjtime() interface only allows you to tweak the phase +/- half a second. I really fail to see an application where it makes sense. If you are synchronizing via modem to ACTS or similar, you would be better off using NTPDv4 for that since it will try to discipline your xtals frequency error. Summary: I would rather return E2BIG if people try to do that, but I'm not religious about it. -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." FreeBSD -- It will take a long time before progress goes too far! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 24 7:50:27 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5FBD5152D6 for ; Wed, 24 Mar 1999 07:50:22 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id HAA82897; Wed, 24 Mar 1999 07:50:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Wed, 24 Mar 1999 07:50:03 -0800 (PST) Message-Id: <199903241550.HAA82897@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: cjohnson@netgsi.com (Christopher T. Johnson) Subject: Re: kern/6630: [PATCH] Fix for Cyrix I8254 bug Reply-To: cjohnson@netgsi.com (Christopher T. Johnson) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/6630; it has been noted by GNATS. From: cjohnson@netgsi.com (Christopher T. Johnson) To: sheldonh@iafrica.com (Sheldon Hearn) Cc: Subject: Re: kern/6630: [PATCH] Fix for Cyrix I8254 bug Date: Wed, 24 Mar 1999 15:38:43 +0000 (GMT) I'm sorry but that machine was returned to vender because it was not stable enough for FreeBSD (There were buttons on the box that would generated undocumented interupts leading to panics). Chris > > Hi Cristopher, > > Quite a bit of work has been done on the clock code since your problem > report. > > Could you provide feedback for a recent CURRENT? > > Thanks, > Sheldon. > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 24 8:18:36 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0964514D56; Wed, 24 Mar 1999 08:18:36 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id IAA85396; Wed, 24 Mar 1999 08:18:17 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 24 Mar 1999 08:18:17 -0800 (PST) From: Message-Id: <199903241618.IAA85396@freefall.freebsd.org> To: sheldonh@FreeBSD.org, scrappy@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: gnu/450 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: tar --exclude -c doesn't work Responsible-Changed-From-To: scrappy->freebsd-bugs Responsible-Changed-By: sheldonh Responsible-Changed-When: Wed Mar 24 08:17:48 PST 1999 Responsible-Changed-Why: scrappy obviously isn't looking at it. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 24 8:36:20 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from home.dragondata.com (home.dragondata.com [204.137.237.2]) by hub.freebsd.org (Postfix) with ESMTP id 555C414C19 for ; Wed, 24 Mar 1999 08:36:15 -0800 (PST) (envelope-from toasty@home.dragondata.com) Received: (from toasty@localhost) by home.dragondata.com (8.9.2/8.9.2) id KAA26534; Wed, 24 Mar 1999 10:35:08 -0600 (CST) From: Kevin Day Message-Id: <199903241635.KAA26534@home.dragondata.com> Subject: Re: kern/6630: [PATCH] Fix for Cyrix I8254 bug In-Reply-To: <2918.922290177@axl.noc.iafrica.com> from Sheldon Hearn at "Mar 24, 1999 5:42:57 pm" To: sheldonh@iafrica.com (Sheldon Hearn) Date: Wed, 24 Mar 1999 10:35:08 -0600 (CST) Cc: freebsd-bugs@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL43 (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 > > > On Fri, 19 Mar 1999 09:42:03 CST, Kevin Day wrote: > > > This problem is actually worse in 3.0. (Haven't tried 3.1 yet, but i'll do > > that today) > > Really. And you're definitely seeing this on a box that is _not_ > overclocking? > > Ciao, > Sheldon. > Yes, this was on a MediaGxM reference board direct from Cyrix's labs. It is directly related to the 5520 chip. The 5530 doesn't have this problem. Kevin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 24 8:37:47 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 426BA14DCD; Wed, 24 Mar 1999 08:37:42 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id IAA87533; Wed, 24 Mar 1999 08:37:23 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 24 Mar 1999 08:37:23 -0800 (PST) From: Message-Id: <199903241637.IAA87533@freefall.freebsd.org> To: paul@isl.cf.ac.uk, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/638 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Transmitted packets not passed to bpf in if_le.c State-Changed-From-To: suspended->closed State-Changed-By: sheldonh State-Changed-When: Wed Mar 24 08:36:50 PST 1999 State-Changed-Why: 2.1-related PR summarily closed. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 24 9:20:39 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5196E14DFC for ; Wed, 24 Mar 1999 09:20:20 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id JAA92004; Wed, 24 Mar 1999 09:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from mail.boulderlabs.com (mail.boulderlabs.com [206.168.112.48]) by hub.freebsd.org (Postfix) with ESMTP id 0DCF51549A for ; Wed, 24 Mar 1999 09:12:56 -0800 (PST) (envelope-from durian@mail.boulderlabs.com) Received: (from durian@localhost) by mail.boulderlabs.com (8.9.3/8.9.3) id KAA89908; Wed, 24 Mar 1999 10:12:36 -0700 (MST) Message-Id: <199903241712.KAA89908@mail.boulderlabs.com> Date: Wed, 24 Mar 1999 10:12:36 -0700 (MST) From: durian@boulderlabs.com Reply-To: durian@boulderlabs.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/10773: PnP modem detection for USR3090 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10773 >Category: kern >Synopsis: Does not detect USR3090 PnP modem >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Mar 24 09:20:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Mike Durian >Release: FreeBSD 3.1-STABLE i386 >Organization: Boulder Labs >Environment: Boot time - PnP >Description: The USR3090 PnP modem is not automatically detected >How-To-Repeat: Boot with a USR3090 >Fix: *** sio.c.orig Wed Mar 24 09:56:29 1999 --- sio.c Wed Mar 24 09:56:36 1999 *************** *** 2762,2767 **** --- 2762,2768 ---- { 0x11007256, "USR0011"}, { 0x30207256, "USR2030"}, { 0x31307256, "USR3031"}, + { 0x90307256, "USR3090"}, { 0 } }; >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 24 9:50:26 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 42EBB1568B for ; Wed, 24 Mar 1999 09:50:20 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id JAA98485; Wed, 24 Mar 1999 09:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Wed, 24 Mar 1999 09:50:01 -0800 (PST) Message-Id: <199903241750.JAA98485@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: gnu/450: tar --exclude -c doesn't work Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR gnu/450; it has been noted by GNATS. From: Sheldon Hearn To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: gnu/450: tar --exclude -c doesn't work Date: Wed, 24 Mar 1999 19:40:31 +0200 Just tested this with tar-1.12 and the misfeature exists in that version too. Also got a report from someone using tar-1.12 on Irix 6.5; the problem exists there too. Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 24 10: 1:48 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6CA2B15280; Wed, 24 Mar 1999 10:01:47 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id KAA00344; Wed, 24 Mar 1999 10:01:28 -0800 (PST) (envelope-from steve@FreeBSD.org) Date: Wed, 24 Mar 1999 10:01:28 -0800 (PST) From: Message-Id: <199903241801.KAA00344@freefall.freebsd.org> To: durian@boulderlabs.com, steve@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/10773 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Does not detect USR3090 PnP modem State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Wed Mar 24 09:59:46 PST 1999 State-Changed-Why: Committed in r1.224.21.3 and r1.230 of src/sys/i386/isa/sio.c. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 24 10:40:25 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B06D014D7D for ; Wed, 24 Mar 1999 10:40:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id KAA03219; Wed, 24 Mar 1999 10:40:00 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 6928615174; Wed, 24 Mar 1999 10:34:17 -0800 (PST) Message-Id: <19990324183417.6928615174@hub.freebsd.org> Date: Wed, 24 Mar 1999 10:34:17 -0800 (PST) From: wellers@netvision.net.il To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: bin/10774: sio0 doesn't work well, i belive the problem is with sio.c Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10774 >Category: bin >Synopsis: sio0 doesn't work well, i belive the problem is with sio.c >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Mar 24 10:40:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Tomer Weller >Release: bug is both in 3.1-RELEASE and 4.0-CURRENT >Organization: Home >Environment: i386, 3.1-RELEASE or 4.0-CURRENT, can't uname now, im in windows98 >Description: here goes, whenever i enter any terminal at all i have a weird problem, i can only see a char i put, after putting another char, though the last char has performed, i dont see it's output, this causes many problems, this is the problem in general, im sure it's much deeper cause im having problems to connect with PPP, im using an AZTECH3000 sound/modem card, this problem was not there in 2.2.7-RELEASE ! >How-To-Repeat: >Fix: i've tried using the old sio.c code from 2.2.7 but at the end of the kernel compilation, after it writes "loading kernel" i get an error in the sio.o, maybe you can help me here ? i've talked with the programmer of userland PPP and he said the problem is the diffs in 1.217 -> 1.218 sio.c are the problem, it was said "hopefully no longer used" will fail. well i use and i fail, what should i do ? >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 24 10:40:30 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DE2B215237 for ; Wed, 24 Mar 1999 10:40:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id KAA03228; Wed, 24 Mar 1999 10:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 896C515174; Wed, 24 Mar 1999 10:34:46 -0800 (PST) Message-Id: <19990324183446.896C515174@hub.freebsd.org> Date: Wed, 24 Mar 1999 10:34:46 -0800 (PST) From: wellers@netvision.net.il To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: bin/10775: sio0 doesn't work well, i belive the problem is with sio.c Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10775 >Category: bin >Synopsis: sio0 doesn't work well, i belive the problem is with sio.c >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Mar 24 10:40:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Tomer Weller >Release: bug is both in 3.1-RELEASE and 4.0-CURRENT >Organization: Home >Environment: i386, 3.1-RELEASE and 4.0-CURRENT, can't uname now, im in windows98 >Description: here goes, whenever i enter any terminal at all i have a weird problem, i can only see a char i put, after putting another char, though the last char has performed, i dont see it's output, this causes many problems, this is the problem in general, im sure it's much deeper cause im having problems to connect with PPP, im using an AZTECH3000 sound/modem card, this problem was not there in 2.2.7-RELEASE ! >How-To-Repeat: >Fix: i've tried using the old sio.c code from 2.2.7 but at the end of the kernel compilation, after it writes "loading kernel" i get an error in the sio.o, maybe you can help me here ? i've talked with the programmer of userland PPP and he said the problem is the diffs in 1.217 -> 1.218 sio.c are the problem, it was said "hopefully no longer used" will fail. well i use and i fail, what should i do ? >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 24 11:14: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2376114ED7; Wed, 24 Mar 1999 11:14:04 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id LAA05510; Wed, 24 Mar 1999 11:13:45 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 24 Mar 1999 11:13:45 -0800 (PST) From: Message-Id: <199903241913.LAA05510@freefall.freebsd.org> To: wayne@barnes1.wustl.edu, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/5207 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Examples for /etc are not in /usr/share/examples/etc State-Changed-From-To: suspended->open State-Changed-By: sheldonh State-Changed-When: Wed Mar 24 11:12:55 PST 1999 State-Changed-Why: Diffs now attached to PR. Gruntwork done, just waiting on committer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 24 11:22:16 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7EA2714CBE; Wed, 24 Mar 1999 11:22:15 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id LAA05890; Wed, 24 Mar 1999 11:21:56 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 24 Mar 1999 11:21:56 -0800 (PST) From: Message-Id: <199903241921.LAA05890@freefall.freebsd.org> To: jwissick@best.com, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/9926 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Finger no longer works when fingering a Galacticomm BBS State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Wed Mar 24 11:20:35 PST 1999 State-Changed-Why: No sense in waiting on a discussion if nobody has anything to add to Peter's comprehensive explanation. :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 24 11:26:35 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 203D815469; Wed, 24 Mar 1999 11:26:34 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id LAA06283; Wed, 24 Mar 1999 11:26:15 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 24 Mar 1999 11:26:15 -0800 (PST) From: Message-Id: <199903241926.LAA06283@freefall.freebsd.org> To: christoph.sold@pk.she.de, christoph_sold@yahoo.com, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/10285 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: 2.2.8-S => 3.1-S make aout-to-elf-build fails State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Wed Mar 24 11:25:18 PST 1999 State-Changed-Why: Closed with originator's consent. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 24 11:59:27 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E465B1501C; Wed, 24 Mar 1999 11:59:01 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id LAA08513; Wed, 24 Mar 1999 11:58:43 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 24 Mar 1999 11:58:43 -0800 (PST) From: Message-Id: <199903241958.LAA08513@freefall.freebsd.org> To: paulo@jetsam.com, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/10189 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: kern.flp/mfsboot.flp won't boot correctly State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Wed Mar 24 11:57:54 PST 1999 State-Changed-Why: No feedback from originator on snapshot / release used. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 24 12:35:28 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 88E3114D18; Wed, 24 Mar 1999 12:35:27 -0800 (PST) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id MAA10743; Wed, 24 Mar 1999 12:35:08 -0800 (PST) (envelope-from brian@FreeBSD.org) Date: Wed, 24 Mar 1999 12:35:08 -0800 (PST) From: Message-Id: <199903242035.MAA10743@freefall.freebsd.org> To: gelderen@mediaport.org, brian@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: conf/8306 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [patch] NATD get loaded late in bootsequence State-Changed-From-To: open->closed State-Changed-By: brian State-Changed-When: Wed Mar 24 12:34:04 PST 1999 State-Changed-Why: Natd is now loaded in network_pass1 in -current & -stable To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 24 12:36:30 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AE9ED14D4F; Wed, 24 Mar 1999 12:36:29 -0800 (PST) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id MAA10856; Wed, 24 Mar 1999 12:36:11 -0800 (PST) (envelope-from brian@FreeBSD.org) Date: Wed, 24 Mar 1999 12:36:11 -0800 (PST) From: Message-Id: <199903242036.MAA10856@freefall.freebsd.org> To: wes@bogon.net, brian@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/9696 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Added ability to specify port ranges in natd command line State-Changed-From-To: open->closed State-Changed-By: brian State-Changed-When: Wed Mar 24 12:35:27 PST 1999 State-Changed-Why: The redirect_port part of the patches have been 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 Wed Mar 24 12:56:44 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5D58814D18; Wed, 24 Mar 1999 12:56:43 -0800 (PST) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id MAA12006; Wed, 24 Mar 1999 12:56:24 -0800 (PST) (envelope-from brian@FreeBSD.org) Date: Wed, 24 Mar 1999 12:56:24 -0800 (PST) From: Message-Id: <199903242056.MAA12006@freefall.freebsd.org> To: wellers@netvision.net.il, brian@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/10775 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: sio0 doesn't work well, i belive the problem is with sio.c State-Changed-From-To: open->closed State-Changed-By: brian State-Changed-When: Wed Mar 24 12:56:09 PST 1999 State-Changed-Why: Duplicate of 10774 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 24 13: 0:21 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 70AE214DA6 for ; Wed, 24 Mar 1999 13:00:20 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id NAA12183; Wed, 24 Mar 1999 13:00:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Wed, 24 Mar 1999 13:00:01 -0800 (PST) Message-Id: <199903242100.NAA12183@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Brian Somers Subject: Re: bin/10774: sio0 doesn't work well, i belive the problem is with sio.c Reply-To: Brian Somers Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/10774; it has been noted by GNATS. From: Brian Somers To: wellers@netvision.net.il Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: bin/10774: sio0 doesn't work well, i belive the problem is with sio.c Date: Wed, 24 Mar 1999 20:54:38 +0000 > >Number: 10774 > >Category: bin > >Synopsis: sio0 doesn't work well, i belive the problem is with sio.c [.....] > >Fix: > i've tried using the old sio.c code from 2.2.7 but at the end of the kernel compilation, after it writes "loading kernel" i get an error in the sio.o, maybe you can help me here ? i've talked with the programmer of userland PPP and he said the problem is the diffs in 1.217 -> 1.218 sio.c are the problem, it was said "hopefully no longer used" will fail. well i use and i fail, what should i do ? Well, I said the problem *may* be because of that change.... -- 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 Wed Mar 24 15: 0:20 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C247314D72 for ; Wed, 24 Mar 1999 15:00:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id PAA19053; Wed, 24 Mar 1999 15:00:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from bubba.whistle.com (s205m7.whistle.com [207.76.205.7]) by hub.freebsd.org (Postfix) with ESMTP id 2B44614E53 for ; Wed, 24 Mar 1999 14:58:34 -0800 (PST) (envelope-from archie@whistle.com) Received: (from archie@localhost) by bubba.whistle.com (8.9.2/8.9.2) id OAA94806; Wed, 24 Mar 1999 14:58:15 -0800 (PST) Message-Id: <199903242258.OAA94806@bubba.whistle.com> Date: Wed, 24 Mar 1999 14:58:15 -0800 (PST) From: Archie Cobbs Reply-To: archie@whistle.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/10778: "ipforward_rt" is not cleared when routing table changes Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10778 >Category: kern >Synopsis: "ipforward_rt" is not cleared when routing table changes >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 Mar 24 15:00:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Archie Cobbs >Release: FreeBSD 4.x-current, 3.1 >Organization: Whistle Communications, Inc. >Environment: FreeBSD 3.1 and 4.x-current >Description: The variable "ipforward_rt" in ip_input.c holds a cached route. This cached route should be cleared whenever there is a change to the routing table, but this is not being done. The affect is that a FreeBSD router could end up mis-routing packets for an arbitrarily long time in the future. In case the new route being added is for a secure VPN, then the result is that private data could suddenly start being sent out to the world. >How-To-Repeat: >Fix: Whenever the IP routing table changes, clear the cached route if any. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 24 15:30:21 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BF2B214D72 for ; Wed, 24 Mar 1999 15:30:20 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id PAA21554; Wed, 24 Mar 1999 15:30:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 0D4D114C30; Wed, 24 Mar 1999 15:24:13 -0800 (PST) Message-Id: <19990324232413.0D4D114C30@hub.freebsd.org> Date: Wed, 24 Mar 1999 15:24:13 -0800 (PST) From: mackay@cs.washington.edu To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: i386/10779: zp slot 0 sees 3Com 589 PCMCIA card but zp0 comes up "not found" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10779 >Category: i386 >Synopsis: zp slot 0 sees 3Com 589 PCMCIA card but zp0 comes up "not found" >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Mar 24 15:30:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Pierre A. MacKay >Release: 2.2.6 >Organization: University of California >Environment: CTX EZBook 700 series laptop, Pentium 133 MHz 32 MB memory 6GB disk >Description: No UserConfig conflicts. zp at interrupt 10, irq 300 Memory d8000 (the defaults) Tried compiling "vmunix" with pccard, with both pccard and zp (gives warning of imcompatibility) and with zp alone. PCMCIA Ident string comes up with full description of 3Com 589 card in slot 0, but zp0 at 300 not found. Presently compiled with zp declared, PC_LINT_HACK on. Can send dmesg and log of compile if desired. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 24 16: 0:21 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 86D1E14D96 for ; Wed, 24 Mar 1999 16:00:20 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id QAA23378; Wed, 24 Mar 1999 16:00:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Wed, 24 Mar 1999 16:00:01 -0800 (PST) Message-Id: <199903250000.QAA23378@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Pierre MacKay Subject: Re: i386/10282: PCMCIA problems in 3.1-RELEASE? Reply-To: Pierre MacKay Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/10282; it has been noted by GNATS. From: Pierre MacKay To: freebsd-gnats-submit@freebsd.org, groves@amug.org Cc: Subject: Re: i386/10282: PCMCIA problems in 3.1-RELEASE? Date: Wed, 24 Mar 1999 16:56:31 -0800 I just sent in a very similar problem, though I got the details a little garbled. The machine is a CTX EZBook 700 series with a 133 MHz Pentium, 32 MB memory. My release of FreeBSD is 2.2.6 The PCMCIA chip is 3c589EC. I have tried with both the pccard driver and the dedicated driver. The zp dedicated driver is at isa? port 0x300 net irq 10 iomem 0xd8000 ( the defaults. ) dmesg shows that zp, slot 0 finds the 3Com card OK and prints out the 3Com banner from the card. Right after, comes the line zp0 at 300 not found. I even tried with both the pci general driver and the zp driver, but this generates a warning that the two are incompatible.. There are no conficts reported by UserConfig except the apparently unavoidable one where psmouse and syscons are both at 60 Would migrate to release 3, but it seems from this bug-report that it doesn't help mackay@cs.washington.edu Pierre A. MacKay Smail: Department of Classics Emeritus Druid for Denny Hall, Mail Stop DH-10 Unix-flavored TeX University of Washington Seattle, WA 98195 (206) 543-2268 (Message recorder) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 24 18:10:20 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C721714E78 for ; Wed, 24 Mar 1999 18:10:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id SAA31524; Wed, 24 Mar 1999 18:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from herring.in.it.okayama-u.ac.jp (herring.in.it.okayama-u.ac.jp [150.46.6.41]) by hub.freebsd.org (Postfix) with ESMTP id 4446714CF2 for ; Wed, 24 Mar 1999 18:09:40 -0800 (PST) (envelope-from kagotani@in.it.okayama-u.ac.jp) Received: from deimos.in.it.okayama-u.ac.jp (deimos.in.it.okayama-u.ac.jp [150.46.6.88]) by herring.in.it.okayama-u.ac.jp (8.8.8/3.6W) with ESMTP id LAA13209; Thu, 25 Mar 1999 11:09:20 +0900 (JST) Received: (from kagotani@localhost) by deimos.in.it.okayama-u.ac.jp (8.9.2/3.6W) id LAA00503; Thu, 25 Mar 1999 11:09:55 +0900 (JST) Message-Id: <199903250209.LAA00503@deimos.in.it.okayama-u.ac.jp> Date: Thu, 25 Mar 1999 11:09:55 +0900 (JST) From: Hiroto Kagotani Reply-To: kagotani@in.it.okayama-u.ac.jp To: FreeBSD-gnats-submit@freebsd.org Cc: kagotani@in.it.okayama-u.ac.jp X-Send-Pr-Version: 3.2 Subject: kern/10780: executing gzipped shell scripts panics the kernel Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10780 >Category: kern >Synopsis: executing gzipped shell scripts panics the kernel >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Mar 24 18:10:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Hiroto Kagotani >Release: FreeBSD 3.1-RELEASE i386 >Organization: Okayama University >Environment: GENERIC 3.1-RELEASE kernel and perhaps any 3.1 kernel configured with gzip option >Description: When I execute a gzipped shell script from {csh,zsh} as {a normal user,root}, the kernel always falls down by a panic and show a message: Fatal trap 12: page fault while in kernel mode fault virtual address = 0x20 fault code = supervisor read, page not present instruction pointer = 0x8:0xf014c524 stack pointer = 0x10:0xf5245dec frame pointer = 0x10:0xf5245df8 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 201 (csh) interrupt mask = trap numer = 12 panic: page fault >How-To-Repeat: % cat >/tmp/foo #!/bin/sh echo foo ^D % chmod +x /tmp/foo % /tmp/foo foo % gzip -9n /tmp/foo % /tmp/foo.gz (and your kernel will fall down) >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 24 18:22:59 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from localhost.zilker.net (jump-tnt-0046.customer.jump.net [207.8.127.46]) by hub.freebsd.org (Postfix) with ESMTP id 04B5114C3B for ; Wed, 24 Mar 1999 18:22:54 -0800 (PST) (envelope-from marquard@zilker.net) Received: (from marquard@localhost) by localhost.zilker.net (8.9.2/8.8.8) id UAA15230; Wed, 24 Mar 1999 20:22:33 -0600 (CST) (envelope-from marquard) To: freebsd-bugs@FreeBSD.ORG Subject: Re: bin/2258 route add/delete References: <199903231706.JAA05739@george.lbl.gov> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii From: Dave Marquardt Date: 24 Mar 1999 20:21:52 -0600 In-Reply-To: jin@george.lbl.gov's message of "Tue, 23 Mar 1999 09:06:17 -0800 (PST)" Message-ID: <85n21248cf.fsf@localhost.zilker.net> Lines: 18 User-Agent: Gnus/5.07008 (Pterodactyl Gnus v0.80) XEmacs/20.4 (Emerald) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org jin@george.lbl.gov writes: > testp2# netstat -rn > Routing tables > > Internet: > Destination Gateway Flags Refs Use Netif Expire > default 128.3.50.1 UGSc 1 0 ep0 => > default 128.3.196.1 UGSc 9 265 ep0 > 127.0.0.1 127.0.0.1 UH 2 54 lo0 > 128.3.196/22 link#2 UC 0 0 ep0 > 128.3.196.1 0:60:3e:52:6c:0 UHLW 6 0 ep0 1176 > ... Try netstat -rA and see what it shows for netmask. You've got one default route with the usual netmask, and the other one is with some strange netmask. -Dave To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 24 23:15:14 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from limbo.abattoir.com (limbo.abattoir.com [208.237.97.13]) by hub.freebsd.org (Postfix) with ESMTP id B2E0814EFC for ; Wed, 24 Mar 1999 23:15:13 -0800 (PST) (envelope-from banshee@limbo.abattoir.com) Received: (from banshee@localhost) by limbo.abattoir.com (8.8.8/8.8.7) id XAA19829 for bugs@freebsd.org.procmail; Wed, 24 Mar 1999 23:14:54 -0800 (PST) (envelope-from banshee) Received: (from banshee@localhost) by limbo.abattoir.com (8.8.8/8.8.7) id XAA19825 for bugs@freebsd.org; Wed, 24 Mar 1999 23:14:53 -0800 (PST) (envelope-from banshee) Date: Wed, 24 Mar 1999 23:14:53 -0800 (PST) From: John M Vinopal Message-Id: <199903250714.XAA19825@limbo.abattoir.com> To: bugs@freebsd.org Subject: 3.1 spam mail additions Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The ftp site for the spam files has not worked since 2.2.8 gabriella# ls Makefile README sendmail.cf.additions gabriella# make fetch ftp://ftp.gulf.net/pub/docs/ips.txt fetch: ftp.gulf.net: Not logged in *** Error code 74 Stop. gabriella# To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 25 0: 3:37 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from relay.ucb.crimea.ua (relay.ucb.crimea.ua [212.110.138.1]) by hub.freebsd.org (Postfix) with ESMTP id B9CF41514A for ; Thu, 25 Mar 1999 00:03:00 -0800 (PST) (envelope-from ru@ucb.crimea.ua) Received: (from ru@localhost) by relay.ucb.crimea.ua (8.9.2/8.9.2/UCB) id KAA10647; Thu, 25 Mar 1999 10:01:08 +0200 (EET) (envelope-from ru) Date: Thu, 25 Mar 1999 10:01:08 +0200 From: Ruslan Ermilov To: John M Vinopal Cc: bugs@FreeBSD.ORG Subject: Re: 3.1 spam mail additions Message-ID: <19990325100108.A6489@relay.ucb.crimea.ua> Mail-Followup-To: John M Vinopal , bugs@FreeBSD.ORG References: <199903250714.XAA19825@limbo.abattoir.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i In-Reply-To: <199903250714.XAA19825@limbo.abattoir.com>; from John M Vinopal on Wed, Mar 24, 1999 at 11:14:53PM -0800 X-Operating-System: FreeBSD 3.1-STABLE i386 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Mar 24, 1999 at 11:14:53PM -0800, John M Vinopal wrote: > > The ftp site for the spam files has not worked since 2.2.8 > > gabriella# ls > Makefile README sendmail.cf.additions > gabriella# make > fetch ftp://ftp.gulf.net/pub/docs/ips.txt > fetch: ftp.gulf.net: Not logged in > *** Error code 74 > > Stop. > gabriella# Keep yourself -STABLE: RCS file: /usr/FreeBSD-CVS/src/etc/mail/Makefile,v Working file: Makefile head: 1.6 branch: locks: strict access list: keyword substitution: kv total revisions: 13; selected revisions: 1 description: ---------------------------- revision 1.6 date: 1999/01/31 15:21:15; author: jmb; state: Exp; lines: +2 -34 Do not try to fetch anti-spam files from gulf.net. They nolonger provide a list of spam domains and spam ip address ranges. ============================================================================= -- Ruslan Ermilov Sysadmin and DBA of the ru@ucb.crimea.ua United Commercial Bank +380.652.247.647 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 25 3:30:21 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 30AB514D20 for ; Thu, 25 Mar 1999 03:30:20 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id DAA08664; Thu, 25 Mar 1999 03:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freebsd.first.gmd.de (freebsd.first.gmd.de [194.95.170.200]) by hub.freebsd.org (Postfix) with ESMTP id 1BF8B14D20 for ; Thu, 25 Mar 1999 03:23:00 -0800 (PST) (envelope-from wosch@freebsd.first.gmd.de) Received: (from wosch@localhost) by freebsd.first.gmd.de (8.9.1/8.9.1) id MAA19030; Thu, 25 Mar 1999 12:19:34 +0100 (MET) (envelope-from wosch) Message-Id: <199903251119.MAA19030@freebsd.first.gmd.de> Date: Thu, 25 Mar 1999 12:19:34 +0100 (MET) From: Wolfram Schneider Reply-To: wosch@freebsd.first.gmd.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/10784: `make aout-to-elf-build' died in /usr/src/lib/libc/sys/Makefile.inc Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10784 >Category: bin >Synopsis: `make aout-to-elf-build' died in /usr/src/lib/libc/sys/Makefile.inc >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Mar 25 03:30:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Wolfram Schneider >Release: FreeBSD 3.0-971022-SNAP i386 >Organization: >Environment: I installed FreeBSD 2.2.6 from CDROM (*) on my laptop. Now I wanted to upgrade to 4.0-current `make aout-to-elf-build' died in /usr/src/lib/libc/sys/Makefile.inc because MACHINE_ARCH was not set (or set to "unknown"). Workaround: set the variable MACHINE_ARCH to i386 on the shell $ MACHINE_ARCH=i386; export MACHINE_ARCH (*) one of the 500 free CDROM which Jordan sent to Berlin ;-) >Description: >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 25 3:30:21 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5E0E514F46 for ; Thu, 25 Mar 1999 03:30:20 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id DAA08673; Thu, 25 Mar 1999 03:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freebsd.first.gmd.de (freebsd.first.gmd.de [194.95.170.200]) by hub.freebsd.org (Postfix) with ESMTP id 85B4914E48 for ; Thu, 25 Mar 1999 03:25:14 -0800 (PST) (envelope-from wosch@freebsd.first.gmd.de) Received: (from wosch@localhost) by freebsd.first.gmd.de (8.9.1/8.9.1) id MAA19227; Thu, 25 Mar 1999 12:21:48 +0100 (MET) (envelope-from wosch) Message-Id: <199903251121.MAA19227@freebsd.first.gmd.de> Date: Thu, 25 Mar 1999 12:21:48 +0100 (MET) From: Wolfram Schneider Reply-To: wosch@freebsd.first.gmd.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/10785: make aout-to-elf-install died in info target Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10785 >Category: bin >Synopsis: make aout-to-elf-install died in info target >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Mar 25 03:30:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Wolfram Schneider >Release: FreeBSD 2.2.6/4.0 i386 >Organization: >Environment: After a successfull `make aout-to-elf-build' (2.2.6 -> 4.0-current) I started `make aout-to-elf-install' It failed in the info target (/usr/share/info/dir) with error 0 (???). Workaround: run `make aout-to-elf-install' without the info target. (From my memory:) $ make -DNOINFO NOINFO=YES aout-to-elf-install >Description: >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 25 4:30:20 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 229D61501F for ; Thu, 25 Mar 1999 04:30:20 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id EAA62145; Thu, 25 Mar 1999 04:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from y.cdkit.remcomp.fr (tntrasp19-192.abo.wanadoo.fr [193.252.201.192]) by hub.freebsd.org (Postfix) with ESMTP id 66E3515019 for ; Thu, 25 Mar 1999 04:21:39 -0800 (PST) (envelope-from dockes@cdkit.remcomp.fr) Received: (from dockes@localhost) by y.cdkit.remcomp.fr (8.9.2/8.9.2) id NAA07226; Thu, 25 Mar 1999 13:21:14 +0100 (CET) Message-Id: <199903251221.NAA07226@y.cdkit.remcomp.fr> Date: Thu, 25 Mar 1999 13:21:14 +0100 (CET) From: dockes@cdkit.remcomp.fr Reply-To: dockes@cdkit.remcomp.fr To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/10788: TCP performance problem for command/answer application Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10788 >Category: kern >Synopsis: Undue 400 mS delay in TCP send/receive >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Mar 25 04:30:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Jean-Francois Dockes >Release: FreeBSD 2.2.8-STABLE i386 >Organization: CDKIT - SAINT-CLOUD, FRANCE >Environment: FreeBSD 2.2.8-STABLE >Description: A client-server application working on a TCP connection experiences 400 mS of delay per question/answer. This happens on localhost, or on 2 machines on a fast ethernet segment. This delay is related to the message/answer sizes. Our standard size is 104 bytes (both for question and answer). The reading side does a recv() for 104 bytes, which returns 100 bytes, so it repeats for the next 4 bytes. Each recv() is preceded by a select(). The select() call before the 4 bytes read seems to sleep 200 mS. This happens on both the server and client side, hence the total 400 mS delay If the message size is reduced to 100 bytes, no delay is experienced (yes, it occured to me that 100 is the mbuf data size...) This problem does not happen under linux or solaris (not sure it might not happen with different message sizes). While I understand the idea of avoiding returning too little data from a read, it seems to me that the hint from the first read (size 104 bytes, equal to the available data) should not be lost by the kernel. I first thought that the select() call was the problem because it didn't know how much data the program actually expected, but, if no "select()" is used, the second recv() is delayed by the same 200 mS. >How-To-Repeat: The description says it all, doesn't it ? Any program which does select/recv() pairs on 104 bytes messages will experience the problem. >Fix: User workarounds: - Set TCP_NODELAY. - Decrease message size below mbuf size The kernel should not delay a read that requests less than the available data. In case a read is fragmented by the kernel, the residual value should be remembered so that select() can take the hint. I'm sorry I've not a clue about how this might be done in practise... I understand that the delay may come from below the syscall layer, which surely makes things more complicated. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 25 4:50:30 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0EF59150F3 for ; Thu, 25 Mar 1999 04:50:20 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id EAA72944; Thu, 25 Mar 1999 04:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id CEB2D14CD5; Thu, 25 Mar 1999 04:41:16 -0800 (PST) Message-Id: <19990325124116.CEB2D14CD5@hub.freebsd.org> Date: Thu, 25 Mar 1999 04:41:16 -0800 (PST) From: james@livecam.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: kern/10789: Second config of kernel doesn't overwrite primary attempt Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10789 >Category: kern >Synopsis: Second config of kernel doesn't overwrite primary attempt >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Mar 25 04:50:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: James Sparenberg >Release: 3.1 stable >Organization: CCI >Environment: no output to this file >Description: If you are attempting to compile a kernel under 3.1 and it stops due to an error in your configuration, previous versions would erase the old files in ../../compile/MY.KERNEL Under 3.1 they are not erased. >How-To-Repeat: attempt to compile a kernel with a known error. When it stops. Fix the error, and re-compile under the same name. It will still show the same error. >Fix: So if you correct the error (spelling etc) or change anything else with the same kernel name, you end up with your old compile files and not the new ones. Go into ../../compile/MY.KERNERL rm * and then cd .. and rmdir MY.KERNEL. Then run the new config. Otherwise you will be up all night like I was looking for an error. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 25 6:40:22 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0BB4015218 for ; Thu, 25 Mar 1999 06:40:20 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id GAA99853; Thu, 25 Mar 1999 06:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Thu, 25 Mar 1999 06:40:02 -0800 (PST) Message-Id: <199903251440.GAA99853@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Garrett Wollman Subject: kern/10778: "ipforward_rt" is not cleared when routing table changes Reply-To: Garrett Wollman Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/10778; it has been noted by GNATS. From: Garrett Wollman To: archie@whistle.com Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: kern/10778: "ipforward_rt" is not cleared when routing table changes Date: Thu, 25 Mar 1999 09:36:16 -0500 (EST) < said: > The variable "ipforward_rt" in ip_input.c holds a cached route. > This cached route should be cleared whenever there is a change > to the routing table, but this is not being done. No. If the route is deleted, it will be marked `down'. There is no need to explicitly clear all references to it. -GAWollman -- Garrett A. Wollman | O Siem / We are all family / O Siem / We're all the same wollman@lcs.mit.edu | O Siem / The fires of freedom Opinions not those of| Dance in the burning flame MIT, LCS, CRS, or NSA| - Susan Aglukark and Chad Irschick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 25 9:23:41 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from george.lbl.gov (george.lbl.gov [131.243.2.12]) by hub.freebsd.org (Postfix) with ESMTP id 4FF3A1526B for ; Thu, 25 Mar 1999 09:23:40 -0800 (PST) (envelope-from jin@george.lbl.gov) Received: (from jin@localhost) by george.lbl.gov (8.9.2/8.9.2) id JAA28809; Thu, 25 Mar 1999 09:23:20 -0800 (PST) Date: Thu, 25 Mar 1999 09:23:20 -0800 (PST) Message-Id: <199903251723.JAA28809@george.lbl.gov> From: jin@george.lbl.gov To: freebsd-bugs@FreeBSD.ORG, marquard@zilker.net Subject: Re: bin/2258 route add/delete Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Dave Marquardt wrote: : > testp2# netstat -rn : > Routing tables : > : > Internet: : > Destination Gateway Flags Refs Use Netif Expire : > default 128.3.50.1 UGSc 1 0 ep0 => : > default 128.3.196.1 UGSc 9 265 ep0 : > 127.0.0.1 127.0.0.1 UH 2 54 lo0 : > 128.3.196/22 link#2 UC 0 0 ep0 : > 128.3.196.1 0:60:3e:52:6c:0 UHLW 6 0 ep0 1176 : > ... : : Try netstat -rA and see what it shows for netmask. You've got one : default route with the usual netmask, and the other one is with some : strange netmask. Since network is down, option -n have to be used. I do not know if this makes different to you: # netstat -rAn Routing tables Internet: Address Destination Gateway Flags Refs Use Netif Expire c07d33cc (32) c0810718 : c0810818 mk = c07a6210 {(32), (255) ffff 0000 0001 } -> mk = c07a6610 {(0), (0) } c0810718 (33) c07d33b4 : c0810700 c07d33b4 (root node) => c0843c00 default 128.3.50.1 UGSc 1 0 ep0 => mask (255) ffff 0000 0001 mk = c07a6210 {(32), (255) ffff 0000 0001 } -> mk = c07a6610 {(0), (0) } c0810400 default 128.3.196.1 UGSc 8 1239 ep0 mask (0) mk = c07a6610 {(0), (0) } c0810700 127.0.0.1 127.0.0.1 UH 1 54 lo0 c0810818 (33) c082e518 : c07d33e4 c082e518 (38) c0843d18 : c081ad18 c0843d18 (48) c0843d00 : c081a018 c0843d00 c081a018 (54) c0811d18 : c081a000 mk = c07a6720 {(54), , (255) ffff ffff fc } c0811d18 (57) c0810318 : c082cd18 c0810318 (60) c0810800 : c0810300 c0810800 128.3.196/22 link#2 UC 0 0 ep0 mask (255) ffff ffff fc mk = c07a6720 {(54), , (255) ffff ffff fc } c0810300 128.3.196.1 0:60:3e:52:6c:0 UHLW 6 0 ep0 1159 c082cd18 (59) c082cd00 : c0811d00 c081a000 128.3.199.255 ff:ff:ff:ff:ff:ff UHLWb 0 1 ep0 c081ad18 (49) c0816118 : c081ad00 c0816118 (57) c082e418 : c082e318 c082e418 (58) c082e500 : c082e400 c082e500 c082e400 c082e318 (58) c0816100 : c082e300 c0816100 c082e300 c081ad00 c07d33e4 (root node) # before route add, it looks like # netstat -rA Routing tables Internet: Address Destination Gateway Flags Refs Use Netif Expire c07d33cc (32) c0810718 : c0810818 mk = c07a6610 {(0), (0) } c0810718 (33) c07d33b4 : c0810700 c07d33b4 (root node) => c0810400 default testgw UGSc 7 0 ep0 mask (0) mk = c07a6610 {(0), (0) } c0810700 localhost localhost UH 2 54 lo0 c0810818 (33) c0811c18 : c07d33e4 c0811c18 (38) c0811e18 : c0816118 c0811e18 (48) c0811e00 : c081de18 c0811e00 c081de18 (54) c081dd18 : c081de00 mk = c07a6720 {(54), , (255) ffff ffff fc } c081dd18 (56) c0811d18 : c081dd00 c0811d18 (57) c0810318 : c0811d00 c0810318 (60) c0810800 : c0810300 c0810800 128.3.196/22 link#2 UC 0 0 ep0 mask (255) ffff ffff fc mk = c07a6720 {(54), , (255) ffff ffff fc } c0810300 testgw 0:60:3e:52:6c:0 UHLW 8 0 ep0 1143 c081de00 128.3.199.255 ff:ff:ff:ff:ff:ff UHLWb 0 1 ep0 c0816118 (57) c082e418 : c082e118 c082e418 (58) c082e318 : c082e218 c082e318 (61) c082e300 : c0811c00 c082e300 c0811c00 c082e218 (60) c082e200 : c082e400 c082e200 c082e400 c082e118 (58) c0816100 : c082e100 c0816100 c082e100 c07d33e4 (root node) -Jin P.S. I think this can be reproduced on any FreeBSD host. We have more than 50 FreeBSD hosts running here, and I can use "route add something..." to screw up every host. So, it is not a particular configuration on my site to triggering the bug. I think it is a general problem. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 25 10:30:33 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 81DFF14D0D for ; Thu, 25 Mar 1999 10:30:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id KAA54626; Thu, 25 Mar 1999 10:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from holly.dyndns.org (ip213.houston13.tx.pub-ip.psi.net [38.27.213.213]) by hub.freebsd.org (Postfix) with ESMTP id D13E614C3F for ; Thu, 25 Mar 1999 10:22:37 -0800 (PST) (envelope-from chris@holly.dyndns.org) Received: (from chris@localhost) by holly.dyndns.org (8.9.3/8.9.3) id MAA00439; Thu, 25 Mar 1999 12:18:37 -0600 (CST) (envelope-from chris) Message-Id: <199903251818.MAA00439@holly.dyndns.org> Date: Thu, 25 Mar 1999 12:18:37 -0600 (CST) From: chris@holly.dyndns.org Reply-To: chris@calldei.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/10792: [Panic] cat /dev/drum causes panic, even as nonroot user Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10792 >Category: kern >Synopsis: [Panic] cat /dev/drum causes panic, even as nonroot user >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Mar 25 10:30:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Chris Costello >Release: FreeBSD 4.0-CURRENT i386 >Organization: >Environment: FreeBSD 4.0-CURRENT, CVSupped March 20. >Description: The operation 'cat /dev/drum' causes the following panic message (reproduced after having been written down): panic: pbreassignbuf() on non phys bp 0xc1c7b490 syncing disks... 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30... giving up >How-To-Repeat: As a nonroot user, type 'cat /dev/drum' >Fix: A fix is being worked on, and a followup will be sent stating further progress. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 25 10:40:22 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 04A4A14FA8 for ; Thu, 25 Mar 1999 10:40:20 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id KAA55137; Thu, 25 Mar 1999 10:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Thu, 25 Mar 1999 10:40:02 -0800 (PST) Message-Id: <199903251840.KAA55137@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Cy Schubert - BCSC Open Systems Group Subject: Re: kern/9935: vmstat reprots bad AVM values Reply-To: Cy Schubert - BCSC Open Systems Group Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/9935; it has been noted by GNATS. From: Cy Schubert - BCSC Open Systems Group To: freebsd-gnats-submit@freebsd.org, cjohnson@neunacht.netgsi.com Cc: cschuber@uumail.gov.bc.ca, cy@uumail.gov.bc.ca Subject: Re: kern/9935: vmstat reprots bad AVM values Date: Thu, 25 Mar 1999 10:31:18 -0800 I have the same problem on a 3.1R system with an S3 card with 4MB of memory. What is strange is that another system with a Mach64 card with 4MB of memory does not exhibit this problem. I have a hunch that systems that exhibit this problem also may have a problem running Netscape and displaying it to a local Xserver, e.g. Netscape loops with signal 8, 14, gettimeofday(), loop again. I run the Xserver using xdm. If noone is logged in via xdm, the AVM looks "normal". If I log in using Xsession the problem exists. If I log by htting ctrl-f1 instead of enter on the xdm login screen the problem does not appear. My .xsession at work (this system doesn't exhibit the problem) issues exec $WINDOWMANAGER while (going from memory) I do something fancier at home (which has the problem). This angle might look promising and I will investigate it further. -- Regards, Phone: (250)387-8437 Cy Schubert Fax: (250)387-5766 Open Systems Group Internet: cschuber@uumail.gov.bc.ca ITSD Cy.Schubert@gems8.gov.bc.ca Government of BC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 25 10:40:23 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 47B3D14F8B for ; Thu, 25 Mar 1999 10:40:22 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id KAA55142; Thu, 25 Mar 1999 10:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Thu, 25 Mar 1999 10:40:03 -0800 (PST) Message-Id: <199903251840.KAA55142@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Chris Costello Subject: Re: kern/10792 Reply-To: Chris Costello Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/10792; it has been noted by GNATS. From: Chris Costello To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: kern/10792 Date: Thu, 25 Mar 1999 12:32:36 -0600 I forgot to mention this user must be in the kmem group. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 25 11:20:21 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 848261503F for ; Thu, 25 Mar 1999 11:20:20 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id LAA57582; Thu, 25 Mar 1999 11:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Thu, 25 Mar 1999 11:20:02 -0800 (PST) Message-Id: <199903251920.LAA57582@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Chris Costello Subject: Re: kern/10792: [Panic] cat /dev/drum causes panic, even as nonroot user Reply-To: Chris Costello Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/10792; it has been noted by GNATS. From: Chris Costello To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: Re: kern/10792: [Panic] cat /dev/drum causes panic, even as nonroot user Date: Thu, 25 Mar 1999 13:10:04 -0600 On Thu, Mar 25, 1999, chris@holly.dyndns.org wrote: > >Description: > > The operation 'cat /dev/drum' causes the following panic message > (reproduced after having been written down): > > panic: pbreassignbuf() on non phys bp 0xc1c7b490 > syncing disks... 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30... giving up This is not a bug. It behaves exactly as I would predict from the code. In my opinion, unless the nature of pbreassignbuf and/or /dev/drum are to be changed, this pr is fit to be closed. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 25 11:49:36 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [206.67.97.83]) by hub.freebsd.org (Postfix) with ESMTP id 28D9E14EEB for ; Thu, 25 Mar 1999 11:49:33 -0800 (PST) (envelope-from billf@jade.chc-chimes.com) Received: from localhost (billf@localhost) by jade.chc-chimes.com (8.8.8/8.8.8) with SMTP id OAA12595; Thu, 25 Mar 1999 14:50:27 -0500 (EST) (envelope-from billf@jade.chc-chimes.com) Date: Thu, 25 Mar 1999 14:50:27 -0500 (EST) From: Bill Fumerola To: John M Vinopal Cc: bugs@FreeBSD.ORG Subject: Re: 3.1 spam mail additions In-Reply-To: <199903250714.XAA19825@limbo.abattoir.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 On Wed, 24 Mar 1999, John M Vinopal wrote: > The ftp site for the spam files has not worked since 2.2.8 > > gabriella# ls > Makefile README sendmail.cf.additions > gabriella# make > fetch ftp://ftp.gulf.net/pub/docs/ips.txt > fetch: ftp.gulf.net: Not logged in And the references have been removed from RELENG_3 and HEAD. - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.com - billf@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 Mar 25 12:40:21 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 89E4214D1D for ; Thu, 25 Mar 1999 12:40:20 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id MAA63044; Thu, 25 Mar 1999 12:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Thu, 25 Mar 1999 12:40:02 -0800 (PST) Message-Id: <199903252040.MAA63044@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: futatuki@fureai.or.jp (Yasuhito FUTATSUKI) Subject: Re: kern/10765: buffer over run on msgrcv() system call Reply-To: futatuki@fureai.or.jp (Yasuhito FUTATSUKI) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/10765; it has been noted by GNATS. From: futatuki@fureai.or.jp (Yasuhito FUTATSUKI) To: FreeBSD-gnats-submit@freebsd.org Cc: futatuki@fureai.or.jp Subject: Re: kern/10765: buffer over run on msgrcv() system call Date: Fri, 26 Mar 1999 05:34:05 +0900 (JST) Correct some typo, careless mistakes. > >Description: > > msgrcv(msqid, msgp, msgsz, msgtyp, msgflg) copies larger size of > sage data than specified in msgsz when ^^^^ message > 1. msgsz is larger than `msgssz', and > 2. msgsz is not multiples of `msgssz' > > where msgssz is the size of message segment in bytes, which is > specified in kernel configration option MSGSSZ, the default is 8. > > >How-To-Repeat: > > Assume msgssz is 8, message que of id msgid is accessable, > a message of type msgtyp and size 20 bytes was sent, then > > struct { > long mtype; > char mtext[20]; > long some_data; > } mymsg; > > msgrcv(msqid, (void*)mymsg, 20, msgtyp, 0); msgrcv(msqid, (void*)&mymsg, 20, msgtyp, 0); > will crash mymsg.some_data . > > Fix: I verified with $Id: sysv_msg.c,v 1.18 1998/03/30 09:50:35 phk Exp $ (for 3.x) and $Id: sysv_msg.c,v 1.13 1996/08/31 14:47:57 bde Exp $ (for 2.2.x). As I read $Id: sysv_msg.c,v 1.19 1999/01/30 12:21:48 phk Exp $ (for 4.0) , I think 4.0-CURRENT has same problem and the patch can be applied also. -- Yasuhito FUTATSUKI To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 25 13:50:24 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3A16714CD5 for ; Thu, 25 Mar 1999 13:50:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id NAA68167; Thu, 25 Mar 1999 13:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from bubba.whistle.com (s205m7.whistle.com [207.76.205.7]) by hub.freebsd.org (Postfix) with ESMTP id 3A99F14D21 for ; Thu, 25 Mar 1999 13:42:11 -0800 (PST) (envelope-from archie@whistle.com) Received: (from archie@localhost) by bubba.whistle.com (8.9.2/8.9.2) id NAA71438; Thu, 25 Mar 1999 13:41:52 -0800 (PST) Message-Id: <199903252141.NAA71438@bubba.whistle.com> Date: Thu, 25 Mar 1999 13:41:52 -0800 (PST) From: Archie Cobbs Reply-To: archie@whistle.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/10793: cvs update modification time check granularity is 1 second Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10793 >Category: bin >Synopsis: cvs update modification time check granularity is 1 second >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Mar 25 13:50:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Archie Cobbs >Release: FreeBSD 3.1-STABLE i386 >Organization: Whistle Communications, Inc. >Environment: FreeBSD 3.1-stable, probably -current too >Description: When you type "cvs update" cvs uses the timestamp recorded in the Entries file to optimize the determination of whether a file has been modified or not. However, the granularity of this check is only one second, so if a file is checked out and modified within the same second, cvs will mistakenly report the file as unmodified (and so will "cvs diff"), possibly causing a wrong revision of the file to be checked in later. Yes, this actually happened to me.. what I did was something like this: $ rm file.c $ cvs update file.c ; patch < patchfile ; rm file.c.orig After doing this "cvs update" reported no modifications, even though "file.c" had been patched. >How-To-Repeat: $ rm file.c $ cvs update file.c ; patch < patchfile ; rm file.c.orig $ cvs update >Fix: The timestamp recorded in the Entries files should include the microseconds field obtained from stat(2). This could be done in a backward-compatible manner. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 25 17:10:20 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9810C14D03 for ; Thu, 25 Mar 1999 17:10:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id RAA78974; Thu, 25 Mar 1999 17:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Thu, 25 Mar 1999 17:10:01 -0800 (PST) Message-Id: <199903260110.RAA78974@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: misc/10566: patch dhcpc problem on /etc/pccard_ether Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/10566; it has been noted by GNATS. From: Sheldon Hearn To: MIHIRA Yoshiro Cc: freebsd-gnats-submit@freebsd.org Subject: Re: misc/10566: patch dhcpc problem on /etc/pccard_ether Date: Fri, 26 Mar 1999 03:04:59 +0200 Thanks for the report. It occurs to me that a more useful and lasting fix would be to add an rc.conf option called something like dhcp_pid_file that could be used from within pccard_ether. Wanna take a crack at it and submit diffs? :-) Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 25 17:20:23 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8AD9315180 for ; Thu, 25 Mar 1999 17:20:20 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id RAA79439; Thu, 25 Mar 1999 17:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Thu, 25 Mar 1999 17:20:02 -0800 (PST) Message-Id: <199903260120.RAA79439@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: kern/10545: When a fork/exec stress test is run, the machine locks up Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/10545; it has been noted by GNATS. From: Sheldon Hearn To: shalunov@lynxhub.lz.att.com Cc: freebsd-gnats-submit@freebsd.org Subject: Re: kern/10545: When a fork/exec stress test is run, the machine locks up Date: Fri, 26 Mar 1999 03:17:40 +0200 I've tried your stress test on my 4.0-CURRENT box (built today) and I don't get a lock-up. Instead, I get thousands of these after the first few seconds: Mar 26 03:15:15 axl /kernel: proc: table i Mar 26 03:15:15 axl /kernel: proc: table is full Mar 26 03:15:15 axl last message repeated 43 times Mar 26 03:15:15 axl /kernel: p Mar 26 03:15:15 axl /kernel: proc: table is full [...] I woulda thought this to be expected behaviour. Have you tried your test on a CURRENT box? Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 25 17:26:30 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from ssu.sumy.ua (regs.sm.ukrtel.net [195.5.1.115]) by hub.freebsd.org (Postfix) with ESMTP id 2470D15027 for ; Thu, 25 Mar 1999 17:26:20 -0800 (PST) (envelope-from chaw@ssu.sumy.ua) Received: from ha ([10.3.0.222]) by ssu.sumy.ua (8.9.2/8.9.2) with SMTP id DAA01985 for ; Fri, 26 Mar 1999 03:24:44 +0200 (EET) (envelope-from chaw@ssu.sumy.ua) Message-ID: <000201bd5856$531bbb40$de00030a@ha> From: "Andrej Chernysh" To: Subject: I have problem with installation Date: Thu, 26 Mar 1998 03:25:37 +0200 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0008_01BD5866.D88141A0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.0518.4 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.0518.4 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_0008_01BD5866.D88141A0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: quoted-printable During installation FreeBSD program sends message:=20 =20 " can not mount wd02* error 22" My configuration k6-2 300 ram-32Mb Video i740(agp 8Mb) c:\ - fat32 3,7 Gb d:\ - fat16 140 Mb with install programm into d:\freebsd and 300Mb free for FreeBSD. With best regards, Andrej Chernysh. ------=_NextPart_000_0008_01BD5866.D88141A0 Content-Type: text/html; charset="koi8-r" Content-Transfer-Encoding: quoted-printable
During installation FreeBSD program = sends=20 message: 
 
" can not mount wd02* error=20 22"
My configuration
k6-2 300  ram-32Mb Video i740(agp = 8Mb)
c:\ - fat32 3,7 Gb
d:\ - fat16  140 Mb with = install programm=20 into d:\freebsd
and 300Mb free for = FreeBSD.
With best regards,
Andrej Chernysh.
------=_NextPart_000_0008_01BD5866.D88141A0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 25 18:10:29 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CD8A615247 for ; Thu, 25 Mar 1999 18:10:18 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id SAA82817; Thu, 25 Mar 1999 18:10:00 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id C511F14DD4; Thu, 25 Mar 1999 18:01:25 -0800 (PST) Message-Id: <19990326020125.C511F14DD4@hub.freebsd.org> Date: Thu, 25 Mar 1999 18:01:25 -0800 (PST) From: nethdnd@mis.net To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: i386/10796: Out of memory error during make buildworld Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10796 >Category: i386 >Synopsis: Out of memory error during make buildworld >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 Mar 25 18:10:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Ken Rogers >Release: 3.0-Release >Organization: University of Kentucky >Environment: FreeBSD eisengard.home.net 3.0-RELEASE FreeBSD 3.0-RELEASE #0: Sat Oct 17 17:45:06 GMT 1998 jkh@kickme.freebsd.org:/usr/src/sys/compile/GENERIC i386 >Description: Memory exhausted or Out of memory error when running make buildworld last output is: cc -fpic -DPIC -O -pipe -I/usr/obj/elf/usr/src/gnu/usr.bin/perl/libperl -I/usr/src/gnu/usr.bin/perl/libperl/../../../../contrib/perl5 -I/usr /obj/elf/usr/src/tmp/usr/include -c /usr/src/gnu/usr.bin/perl/libperl/../../../../contrib/perl5/pp_ctl.c -o pp_ctl.so pp_ctl.so: could not read symbols: Memory exhausted *** Error code 1 Stop. >How-To-Repeat: problem repeats with every attempt at make buildworld or make world Even after a 'cd /usr/obj; chflags -R 0 .; rm -r *' and 'cd /usr/src; make clean; make clean' >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 25 18:40:38 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D06CC1561C for ; Thu, 25 Mar 1999 18:40:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id SAA83919; Thu, 25 Mar 1999 18:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Thu, 25 Mar 1999 18:40:01 -0800 (PST) Message-Id: <199903260240.SAA83919@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: MIHIRA Sanpei Yoshiro Subject: Re: misc/10566: patch dhcpc problem on /etc/pccard_ether Reply-To: MIHIRA Sanpei Yoshiro Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/10566; it has been noted by GNATS. From: MIHIRA Sanpei Yoshiro To: sheldonh@iafrica.com Cc: freebsd-gnats-submit@freebsd.org Subject: Re: misc/10566: patch dhcpc problem on /etc/pccard_ether Date: Fri, 26 Mar 1999 11:18:19 +0900 OK. I create new patch for pccard_ether and defaults/rc.conf, yes, its' experimental. MIHIRA Yoshiro. --- sys/etc/pccard_ether.org Fri Mar 26 10:47:26 1999 +++ sys/etc/pccard_ether Fri Mar 26 10:58:50 1999 @@ -16,20 +16,14 @@ if [ "x$pccard_ifconfig" != "xNO" ] ; then if [ "x$pccard_ifconfig" = "xDHCP" ] ; then - if [ -f /sbin/dhclient ] ; then - if [ -s /var/run/dhclient.pid ] ; then - kill `cat /var/run/dhclient.pid` - rm /var/run/dhclient.pid - fi - /sbin/dhclient - elif [ -f /usr/local/sbin/dhcpc ] ; then - if [ -s /var/run/dhcpc.pid ] ; then - kill `cat /var/run/dhcpc.pid` - rm /var/run/dhcpc.pid - fi - /usr/local/sbin/dhcpc $* + if [ -s $dhcp_pid_file ] ; then + kill `cat $dhcp_pid_file` + rm $dhcp_pid_file + fi + if [ -f $dhcp_client ] ; then + $dhcp_client $dhcp_client_flags else - echo "DHCP client software not available (isc-dhcp2)" + echo "DHCP client software not available" fi else interface=$1 ---------- --- sys/etc/defaults/rc.conf.org Fri Mar 26 11:06:23 1999 +++ sys/etc/defaults/rc.conf Fri Mar 26 11:12:56 1999 @@ -42,6 +42,14 @@ network_interfaces="lo0" # List of network interfaces (lo0 is loopback). ifconfig_lo0="inet 127.0.0.1" # default loopback device configuration. #ifconfig_lo0_alias0="inet 127.0.0.254 netmask 0xffffffff" # Sample alias entry. +dhcp_client="/sbin/dhclient" # Name of dhcp client daemon to use if enabled. +dhcp_client_flags="" # Flags to dhcp client (if enabled). +dhcp_pid_file="/var/run/dhclient.pid" # pid filename of dhcp client +# +# If you use wide-dhcp (ports/net/wide-dhcp), you might also want to set. +#dhcp_client="/usr/local/sbin/dhcpc" +#dhcp_client_flags="$*" +#dhcp_pid_file="/var/run/dhcpc.$*.pid" # # If you have any sppp(4) interfaces above, you might also want to set # the following parameters. Refer to spppcontrol(8) for their meaning. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 26 0:46:58 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from inet16.us.oracle.com (inet16.us.oracle.com [192.86.155.100]) by hub.freebsd.org (Postfix) with ESMTP id 74C0A151C3 for ; Fri, 26 Mar 1999 00:46:52 -0800 (PST) (envelope-from klh@us.oracle.com) Received: from churchy20.us.oracle.com (churchy20.us.oracle.com [144.25.80.97]) by inet16.us.oracle.com (8.8.5/8.8.5) with SMTP id AAA21621 for ; Fri, 26 Mar 1999 00:44:21 -0800 (PST) Received: by churchy20.us.oracle.com (5.59.11/37.7) id AA27808; Fri, 26 Mar 99 00:46:32 PST Date: Fri, 26 Mar 99 0:46:32 PST From: Ken Harrenstien To: freebsd-bugs@freebsd.org Cc: klh@us.oracle.com Subject: $$ Error in Handbook sect 2.1.1 Message-Id: Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In 2.1.1 of the current Handbook, "Disk Controllers", last updated 2-Mar-1999, there is a list of devices known to be supported. This includes: NCR5380/NCR53400 (``ProAudio Spectrum'') SCSI controller. However, for the current FreeBSD release (3.1) this is incorrect. I found this the hard way by purchasing a surplus Compaq Deskpro XL, even though RedHat Linux doesn't support it, based largely on the fact that its devices *were* supported by FreeBSD. But after much struggling I noticed that the install root floppy had a HARDWARE.TXT list of its own, which *specifically* excludes the above controller (as well as others that the Handbook claims are supported!) with the terse explanation that 3.1 moved to a new CAM subsystem without bringing the old stuff along. (1) Would someone please update the Handbook so others aren't victimized? (2) Is it really considered normal for stable releases to drop previously supported devices/systems? (3) Am I completely hosed, or will there eventually be some way to use this XL for anything but a boat anchor? I could loan/donate it to someone willing to fix the driver, if that would help. Thanks, --Ken To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 26 3: 8:59 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 68D481544E; Fri, 26 Mar 1999 03:08:58 -0800 (PST) (envelope-from semenu@FreeBSD.org) Received: (from semenu@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id DAA16603; Fri, 26 Mar 1999 03:08:40 -0800 (PST) (envelope-from semenu@FreeBSD.org) Date: Fri, 26 Mar 1999 03:08:40 -0800 (PST) From: Message-Id: <199903261108.DAA16603@freefall.freebsd.org> To: peter.jeremy@alcatel.com.au, semenu@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/10535 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Very poor ethernet performance with tx driver State-Changed-From-To: open->closed State-Changed-By: semenu State-Changed-When: Fri Mar 26 03:02:42 PST 1999 State-Changed-Why: Looks like fixed. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 26 7: 0:22 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F24A01555C for ; Fri, 26 Mar 1999 07:00:21 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id HAA72803; Fri, 26 Mar 1999 07:00:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Fri, 26 Mar 1999 07:00:03 -0800 (PST) Message-Id: <199903261500.HAA72803@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: stanislav shalunov Subject: Re: kern/10545: When a fork/exec stress test is run, the machine locks up Reply-To: stanislav shalunov Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/10545; it has been noted by GNATS. From: stanislav shalunov To: sheldonh@iafrica.com Cc: freebsd-gnats-submit@freebsd.org Subject: Re: kern/10545: When a fork/exec stress test is run, the machine locks up Date: Fri, 26 Mar 1999 09:59:48 -0500 (EST) > From: Sheldon Hearn > I've tried your stress test on my 4.0-CURRENT box (built today) and I > don't get a lock-up. Instead, I get thousands of these after the first > few seconds: What results do you get for the default run (without arguments)? > Mar 26 03:15:15 axl /kernel: proc: table i > Mar 26 03:15:15 axl /kernel: proc: table is full > Mar 26 03:15:15 axl last message repeated 43 times > Mar 26 03:15:15 axl /kernel: p > Mar 26 03:15:15 axl /kernel: proc: table is full > [...] I would expect something like this. (I don't quite understand why syslogd is missing *parts* of messages--I would expect it either to get message or to lose it,--but that's another story.) > I woulda thought this to be expected behaviour. Have you tried your test > on a CURRENT box? I would actually prefer to keep this a -release box. If -current doesn't lock up, then there must be a reason for this. (Other than that your hardware might have some slightly different timings subtly affecting the kernel, or that your other system activity pattern is different.) What kernel patches might be relevant, anyone? -- stanislav shalunov@att.com 732-576-3252 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 26 8:40:21 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0AE1C156CF for ; Fri, 26 Mar 1999 08:40:18 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id IAA81603; Fri, 26 Mar 1999 08:40:00 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 1836E1569B; Fri, 26 Mar 1999 08:36:10 -0800 (PST) Message-Id: <19990326163610.1836E1569B@hub.freebsd.org> Date: Fri, 26 Mar 1999 08:36:10 -0800 (PST) From: adamo@dblab.ece.ntua.gr To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: misc/10803: whois(1) client enchancements Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10803 >Category: misc >Synopsis: whois(1) client enchancements >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 Mar 26 08:40:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Yiorgos Adamopoulos >Release: 3.1-RELEASE >Organization: Knowledge and Data Base Systems Laboratory, NTUA >Environment: FreeBSD hawk.dbnet.ece.ntua.gr 3.1-RELEASE FreeBSD 3.1-RELEASE #0: Mon Mar 1 21:41:09 EET 1999 george@hawk.dbnet.ece.ntua.gr:/usr/src/sys/compile/ADAMO i386 >Description: >How-To-Repeat: >Fix: *** whois.c.orig Fri Mar 26 18:07:47 1999 --- whois.c Fri Mar 26 18:00:40 1999 *************** *** 57,66 **** #include #define NICHOST "whois.internic.net" ! #define DNICHOST "nic.ddn.mil" #define ANICHOST "whois.arin.net" #define RNICHOST "whois.ripe.net" #define PNICHOST "whois.apnic.net" #define WHOIS_PORT 43 static void usage __P((void)); --- 57,68 ---- #include #define NICHOST "whois.internic.net" ! #define DNICHOST "whois.nic.mil" #define ANICHOST "whois.arin.net" #define RNICHOST "whois.ripe.net" #define PNICHOST "whois.apnic.net" + #define GNICHOST "whois.nic.gov" + #define SNICHOST "whois.6bone.net" #define WHOIS_PORT 43 static void usage __P((void)); *************** *** 83,89 **** #endif host = NICHOST; ! while ((ch = getopt(argc, argv, "adh:pr")) != -1) switch((char)ch) { case 'a': host = ANICHOST; --- 85,91 ---- #endif host = NICHOST; ! while ((ch = getopt(argc, argv, "adh:prg6")) != -1) { switch((char)ch) { case 'a': host = ANICHOST; *************** *** 100,109 **** --- 102,122 ---- case 'r': host = RNICHOST; break; + case 'g': + host = GNICHOST; + break; + case '6': + host = SNICHOST; + break; case '?': default: usage(); } + + if ((host == SNICHOST) || (host == RNICHOST)) { + break; + } + } argc -= optind; argv += optind; *************** *** 151,156 **** static void usage() { ! (void)fprintf(stderr, "usage: whois [-adpr] [-h hostname] name ...\n"); exit(EX_USAGE); } --- 164,169 ---- static void usage() { ! (void)fprintf(stderr, "usage: whois [-adprg6] [-h hostname] name ...\n") ; exit(EX_USAGE); } >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 26 9:15:21 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from panzer.plutotech.com (panzer.plutotech.com [206.168.67.125]) by hub.freebsd.org (Postfix) with ESMTP id 1218D1506E for ; Fri, 26 Mar 1999 09:15:19 -0800 (PST) (envelope-from ken@panzer.plutotech.com) Received: (from ken@localhost) by panzer.plutotech.com (8.9.3/8.8.5) id KAA93926; Fri, 26 Mar 1999 10:14:53 -0700 (MST) From: "Kenneth D. Merry" Message-Id: <199903261714.KAA93926@panzer.plutotech.com> Subject: Re: $$ Error in Handbook sect 2.1.1 In-Reply-To: from Ken Harrenstien at "Mar 26, 1999 0:46:32 am" To: klh@us.oracle.com (Ken Harrenstien) Date: Fri, 26 Mar 1999 10:14:53 -0700 (MST) Cc: freebsd-bugs@FreeBSD.ORG, klh@us.oracle.com X-Mailer: ELM [version 2.4ME+ PL43 (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 Ken Harrenstien wrote... > In 2.1.1 of the current Handbook, "Disk Controllers", last updated > 2-Mar-1999, there is a list of devices known to be supported. This > includes: > > NCR5380/NCR53400 (``ProAudio Spectrum'') SCSI controller. > > However, for the current FreeBSD release (3.1) this is incorrect. > > I found this the hard way by purchasing a surplus Compaq Deskpro XL, > even though RedHat Linux doesn't support it, based largely on the fact > that its devices *were* supported by FreeBSD. But after much > struggling I noticed that the install root floppy had a HARDWARE.TXT > list of its own, which *specifically* excludes the above controller (as > well as others that the Handbook claims are supported!) with the terse > explanation that 3.1 moved to a new CAM subsystem without bringing the > old stuff along. > > (1) Would someone please update the Handbook so others aren't > victimized? All it'll take is someone to SGMLize the hardware stuff. You can do it if you like, and send-pr it as a doc bug. Or just mail it to freebsd-doc@FreeBSD.ORG. > (2) Is it really considered normal for stable releases to drop previously > supported devices/systems? It is when you want to get new functionality in. We had a limited number of developer hours, and made a decision to drop support, for a while, of some little-used SCSI controllers that we didn't have time to write drivers for. Unfortunately, you happen to have one of them. This was well publicized ahead of time, perhaps a year in advance of the CAM integration. So many (most?) folks knew it was coming. If someone wants to port some of the drivers that are no longer supported under CAM from the old SCSI layer to CAM, they're more than welcome, and will receive whatever assistance we can provide. > (3) Am I completely hosed, or will there eventually be some way to > use this XL for anything but a boat anchor? I could loan/donate > it to someone willing to fix the driver, if that would help. Sure, you can use it. You'll just need to either run 2.2.8 on it, or get another SCSI controller if you want to run 3.x. If you get another SCSI controller and run 3.x or 4.0-current, maybe you can work on the driver for that PAS board. We do support ISA SCSI controllers, if that's what you're looking for. The Adaptec 154x controllers are supported (but not the 152x controllers!), and Advansys and BusLogic ISA controllers are supported as well. I've got an ISA Advansys card in my test box, and it seems to work fine. (It is slow, though, but that's to be expected with most any ISA board.) Ken -- Kenneth Merry ken@plutotech.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 26 9:30:22 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D32661558F for ; Fri, 26 Mar 1999 09:30:18 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id JAA86663; Fri, 26 Mar 1999 09:30:00 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from lion.plab.ku.dk (lion.plab.ku.dk [130.225.105.49]) by hub.freebsd.org (Postfix) with ESMTP id EEB2914A23 for ; Fri, 26 Mar 1999 09:24:11 -0800 (PST) (envelope-from tobez@lion.plab.ku.dk) Received: (from tobez@localhost) by lion.plab.ku.dk (8.9.3/8.9.1) id SAA00536; Fri, 26 Mar 1999 18:23:15 +0100 (CET) Message-Id: <199903261723.SAA00536@lion.plab.ku.dk> Date: Fri, 26 Mar 1999 18:23:15 +0100 (CET) From: Anton Berezin Reply-To: Anton Berezin To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/10805: h2ph incorrectly deals with #error and #warning (FIX included) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10805 >Category: bin >Synopsis: h2ph incorrectly deals with #error and #warning (FIX included) >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 Mar 26 09:30:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Anton Berezin >Release: FreeBSD 4.0-CURRENT i386 >Organization: The Protein Laboratory, University of Copenhagen >Environment: Any system with perl5.005_02 shipped by default >Description: perl5.005_02 has a bug in h2ph utility, which leads to incorrectly generated perl code if the original header file contains any #error or #warning preprocessor statements. This problem was fixed in more recent perls, but FreeBSD default perl installation is still affected. >How-To-Repeat: Try this on a system where ioctl.ph was not manually patched (yes, I patched this file many times before finally deciding to submit this report!) perl -e 'require "sys/ioctl.ph";' >Fix: Apply this patch (relatively to /usr/src): --- contrib/perl5/utils/h2ph.PL.orig Fri Mar 26 18:04:00 1999 +++ contrib/perl5/utils/h2ph.PL Fri Mar 26 18:05:21 1999 @@ -231,9 +231,9 @@ } elsif(/^undef\s+(\w+)/) { print OUT $t, "undef(&$1) if defined(&$1);\n"; } elsif(/^error\s+(.*)/) { - print OUT $t, "die(\"$1\");\n"; + print OUT $t, "die(\"", quotemeta($1), "\");\n"; } elsif(/^warning\s+(.*)/) { - print OUT $t, "warn(\"$1\");\n"; + print OUT $t, "warn(\"", quotemeta($1), "\");\n"; } elsif(/^ident\s+(.*)/) { print OUT $t, "# $1\n"; } >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 26 9:30:24 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E45E01559A for ; Fri, 26 Mar 1999 09:30:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id JAA86668; Fri, 26 Mar 1999 09:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Fri, 26 Mar 1999 09:30:01 -0800 (PST) Message-Id: <199903261730.JAA86668@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Chris Costello Subject: Re: misc/10803: whois(1) client enchancements Reply-To: Chris Costello Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/10803; it has been noted by GNATS. From: Chris Costello To: adamo@dblab.ece.ntua.gr Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: misc/10803: whois(1) client enchancements Date: Fri, 26 Mar 1999 11:24:35 -0600 On Fri, Mar 26, 1999, adamo@dblab.ece.ntua.gr wrote: > > >Number: 10803 > >Category: misc > >Synopsis: whois(1) client enchancements > >Fix: The fix you have does not apply to the latest version of whois -- perhaps you should CVSup to the latest -STABLE tree. > >Release-Note: > >Audit-Trail: > >Unformatted: > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-bugs" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 26 12:20:20 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4DABC14FBA for ; Fri, 26 Mar 1999 12:20:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id MAA99076; Fri, 26 Mar 1999 12:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from holly.dyndns.org (ip77.houston13.tx.pub-ip.psi.net [38.27.213.77]) by hub.freebsd.org (Postfix) with ESMTP id 90AFC14ED9 for ; Fri, 26 Mar 1999 12:10:34 -0800 (PST) (envelope-from chris@holly.dyndns.org) Received: (from chris@localhost) by holly.dyndns.org (8.9.3/8.9.3) id OAA05245; Fri, 26 Mar 1999 14:10:09 -0600 (CST) (envelope-from chris) Message-Id: <199903262010.OAA05245@holly.dyndns.org> Date: Fri, 26 Mar 1999 14:10:09 -0600 (CST) From: Chris Costello Reply-To: chris@calldei.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/10807: host(1) is broken - multiple options in one arg (-vt) cause a loop of some sort Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10807 >Category: bin >Synopsis: host(1) is broken - multiple options in one arg (-vt) cause a loop of some sort >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 Mar 26 12:20:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Chris Costello >Release: FreeBSD 4.0-CURRENT i386 >Organization: none >Environment: FreeBSD 4.0-CURRENT, CVSupped March 25, 1999 >Description: host -vt hinfo somehost.somedomain nameserver causes host to seem to go into an infinite loop after calling issetugid() and this appears to have to do with the somewhat broken option parsing. >How-To-Repeat: host -vt hinfo your.favorite.domain [your.nameserver] >Fix: --- host.c.orig Fri Mar 26 13:54:17 1999 +++ host.c Fri Mar 26 14:06:59 1999 @@ -168,7 +168,7 @@ main(int c, char **v) { struct in_addr addr; struct hostent *hp; - char *s, *oldcname; + char *s, *oldcname, ch; int inverse = 0, waitmode = 0; int ncnames; @@ -179,55 +179,38 @@ fprintf(stderr, "Usage: host [-w] [-v] [-r] [-d] [-t querytype] [-c class] [-a] host [server]\n -w to wait forever until reply\n -v for verbose output\n -r to disable recursive processing\n -d to turn on debugging output\n -t querytype to look for a specific type of information\n -c class to look for non-Internet data\n -a is equivalent to '-v -t *'\n"); exit(1); } - while (c > 2 && v[1][0] == '-') { - if (strcmp (v[1], "-w") == 0) { + while ((ch = getopt(c, v, "hwvrdlt:c:a")) != -1) + switch (ch) { + case 'w': _res.retry = 1; _res.retrans = 15; waitmode = 1; - v++; - c--; - } - else if (strcmp (v[1], "-r") == 0) { + break; + case 'r': _res.options &= ~RES_RECURSE; - v++; - c--; - } - else if (strcmp (v[1], "-d") == 0) { + break; + case 'd': _res.options |= RES_DEBUG; - v++; - c--; - } - else if (strcmp (v[1], "-v") == 0) { + break; + case 'v': verbose = 1; - v++; - c--; - } - else if (strcmp (v[1], "-l") == 0) { + break; + case 'l': list = 1; - v++; - c--; - } - else if (strncmp (v[1], "-t", 2) == 0) { - v++; - c--; - gettype = parsetype(v[1]); - v++; - c--; - } - else if (strncmp (v[1], "-c", 2) == 0) { - v++; - c--; - getclass = parseclass(v[1]); - v++; - c--; - } - else if (strcmp (v[1], "-a") == 0) { + break; + case 't': + gettype = parsetype(optarg); + break; + case 'c': + getclass = parseclass(optarg); + break; + case 'a': verbose = 1; gettype = ns_t_any; - v++; - c--; + break; } - } + c -= optind - 1; + v += optind - 1; if (c > 2) { s = v[2]; server_specified++; >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 26 12:56: 1 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from inet16.us.oracle.com (inet16.us.oracle.com [192.86.155.100]) by hub.freebsd.org (Postfix) with ESMTP id 98C47151AD for ; Fri, 26 Mar 1999 12:56:00 -0800 (PST) (envelope-from klh@us.oracle.com) Received: from churchy20.us.oracle.com (churchy20.us.oracle.com [144.25.80.97]) by inet16.us.oracle.com (8.8.5/8.8.5) with SMTP id MAA08887; Fri, 26 Mar 1999 12:53:29 -0800 (PST) Received: by churchy20.us.oracle.com (5.59.11/37.7) id AA04199; Fri, 26 Mar 99 12:55:32 PST Date: Fri, 26 Mar 99 12:55:32 PST From: Ken Harrenstien To: "Kenneth D. Merry" Cc: freebsd-bugs@FreeBSD.ORG, klh@us.oracle.com Subject: Re: $$ Error in Handbook sect 2.1.1 In-Reply-To: Your message of Fri, 26 Mar 1999 10:14:53 -0700 (MST) Message-Id: Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > (1) Would someone please update the Handbook so others aren't > > victimized? > > All it'll take is someone to SGMLize the hardware stuff. You can do it if > you like, and send-pr it as a doc bug. Or just mail it to > freebsd-doc@FreeBSD.ORG. I understand the principle, but you give me too much credit for knowing what's going on. I did try to find the right list to send this to (freebsd-doc is in the "technical content only" group) but will forward as you suggest. > This was well publicized ahead of time, perhaps a year in advance of the > CAM integration. So many (most?) folks knew it was coming. Not newbies such as myself. What's on the web site -- and most of the doc links point to the Handbook -- is what potential new users see for the first time. (It's a little troubling if this was known for a year and nobody noticed the potential impact on the frontline doc.) > > (2) Is it really considered normal for stable releases to drop previously > > supported devices/systems? > > It is when you want to get new functionality in. Thank you for clarifying the FreeBSD philosophy. This is not what I was hoping for, but I no longer have the time to fix it either... my kernel hacking days expired along with the PDP-11. --Ken To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 26 13:10:30 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from panzer.plutotech.com (panzer.plutotech.com [206.168.67.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D99214D6E for ; Fri, 26 Mar 1999 13:10:28 -0800 (PST) (envelope-from ken@panzer.plutotech.com) Received: (from ken@localhost) by panzer.plutotech.com (8.9.3/8.8.5) id OAA95239; Fri, 26 Mar 1999 14:09:46 -0700 (MST) From: "Kenneth D. Merry" Message-Id: <199903262109.OAA95239@panzer.plutotech.com> Subject: Re: $$ Error in Handbook sect 2.1.1 In-Reply-To: from Ken Harrenstien at "Mar 26, 1999 12:55:32 pm" To: klh@us.oracle.com (Ken Harrenstien) Date: Fri, 26 Mar 1999 14:09:46 -0700 (MST) Cc: freebsd-bugs@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL43 (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 Ken Harrenstien wrote... > > > (1) Would someone please update the Handbook so others aren't > > > victimized? > > > > All it'll take is someone to SGMLize the hardware stuff. You can do it if > > you like, and send-pr it as a doc bug. Or just mail it to > > freebsd-doc@FreeBSD.ORG. > > I understand the principle, but you give me too much credit for knowing > what's going on. I did try to find the right list to send this to > (freebsd-doc is in the "technical content only" group) but will forward > as you suggest. > > > This was well publicized ahead of time, perhaps a year in advance of the > > CAM integration. So many (most?) folks knew it was coming. > > Not newbies such as myself. What's on the web site -- and most of the > doc links point to the Handbook -- is what potential new users see for > the first time. (It's a little troubling if this was known for a year > and nobody noticed the potential impact on the frontline doc.) Oh, it may have been noticed, but no one stepped up to fix it. > > > (2) Is it really considered normal for stable releases to drop previously > > > supported devices/systems? > > > > It is when you want to get new functionality in. > > Thank you for clarifying the FreeBSD philosophy. This is not what I > was hoping for, but I no longer have the time to fix it either... my > kernel hacking days expired along with the PDP-11. It isn't the "FreeBSD philosophy" in general, but rather a conscious decision that was made in this case. The CAM SCSI layer is a big improvement over the old SCSI layer, and there was a general consensus to get the big functional improvement in the tree, even if it cost us some rarely-used drivers. There has been much more to-do about the Adaptec 6260/6360 (i.e. "aic") driver, and someone stepped up to do it, but hasn't gotten much done. Just as you have no time to fix the driver yourself, no one else with time has stepped up to port the PAS SCSI driver, so it remains un-done. In a volunteer effort, you've gotta take what you can get. Ken -- Kenneth Merry ken@plutotech.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 26 15:10:21 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 936081556B for ; Fri, 26 Mar 1999 15:10:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id PAA08709; Fri, 26 Mar 1999 15:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Fri, 26 Mar 1999 15:10:01 -0800 (PST) Message-Id: <199903262310.PAA08709@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Nick Sayer Subject: Re: kern/10534: if_tx.c bridge patch Reply-To: Nick Sayer Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/10534; it has been noted by GNATS. From: Nick Sayer To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: kern/10534: if_tx.c bridge patch Date: Fri, 26 Mar 1999 15:02:59 -0800 (PST) In retrospect, change this line in the patch +#if NBPFILTER > 0 && !defined(BRIDGE) to #if NBPFILTER > 0 You want this because you still want to run the check indicated regardless of the state of do_bridge. But it doesn't have to be there if bpfilter is off (because do_bridge will then turn promiscuous mode on or off as appropriate). It does need to be there if bpfilter is on because do_bridge could be off and promiscuous mode could still be on (because of bpfilter). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 26 15:20:21 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CA4F415105 for ; Fri, 26 Mar 1999 15:20:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id PAA09310; Fri, 26 Mar 1999 15:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from eisenhower.ca.sandia.gov (eisenhower.ca.sandia.gov [146.246.243.57]) by hub.freebsd.org (Postfix) with ESMTP id A0FBC15545 for ; Fri, 26 Mar 1999 15:00:19 -0800 (PST) (envelope-from bmah@eisenhower.ca.sandia.gov) Received: (from bmah@localhost) by eisenhower.ca.sandia.gov (8.9.2/8.9.2) id OAA00562; Fri, 26 Mar 1999 14:59:59 -0800 (PST) (envelope-from bmah) Message-Id: <199903262259.OAA00562@eisenhower.ca.sandia.gov> Date: Fri, 26 Mar 1999 14:59:59 -0800 (PST) From: bmah@ca.sandia.gov Reply-To: bmah@ca.sandia.gov To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/10812: LINT configuration MAXDSIZ/DFLDSIZ misleading Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10812 >Category: kern >Synopsis: LINT configuration MAXDSIZ/DFLDSIZ misleading >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Mar 26 15:20:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Bruce A. Mah >Release: FreeBSD 3.1-RELEASE i386 >Organization: Sandia National Laboratories >Environment: >Description: The LINT configuration is a little misleading about settings for MAXDSIZ and DFLDSIZ. It looks like the comments didn't quite keep up with rev 1.30 of src/sys/i386/include/vmparam.h. >How-To-Repeat: >Fix: This patch makes the LINT file more consistent with src/sys/i386/include/vmparam.h. --- LINT.old Fri Mar 26 13:55:05 1999 +++ LINT Fri Mar 26 14:14:23 1999 @@ -29,17 +29,18 @@ maxusers 10 # -# Certain applications can grow to be larger than the 128M limit +# Certain applications can grow to be larger than the 512M limit # that FreeBSD initially imposes. Below are some options to -# allow that limit to grow to 256MB, and can be increased further +# allow that limit to grow to 1024M, and can be increased further # with changing the parameters. MAXDSIZ is the maximum that the # limit can be set to, and the DFLDSIZ is the default value for # the limit. You might want to set the default lower than the # max, and explicitly set the maximum with a shell command for processes -# that regularly exceed the limit like INND. +# that regularly exceed the limit like INND. Without these options +# specified, the normal value for MAXDSIZ is 128M and DFLDSIZ is 512M. # -options "MAXDSIZ=(256*1024*1024)" -options "DFLDSIZ=(256*1024*1024)" +options "MAXDSIZ=(256UL*1024*1024)" +options "DFLDSIZ=(1024UL*1024*1024)" # When this is set, be extra conservative in various parts of the kernel # and choose functionality over speed (on the widest variety of systems). >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 26 16:30:22 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1B4CC14E3E for ; Fri, 26 Mar 1999 16:30:21 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id QAA13322; Fri, 26 Mar 1999 16:30:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Fri, 26 Mar 1999 16:30:03 -0800 (PST) Message-Id: <199903270030.QAA13322@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: David Gilbert Subject: Re: kern/10535: Very poor ethernet performance with tx driver Reply-To: David Gilbert Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/10535; it has been noted by GNATS. From: David Gilbert To: freebsd-gnats-submit@freebsd.org, peter.jeremy@alcatel.com.au, semen@iclub.nsu.ru, dfr@nlsystems.com, andreas@klemm.gtn.com Cc: Subject: Re: kern/10535: Very poor ethernet performance with tx driver Date: Fri, 26 Mar 1999 19:24:00 -0500 (EST) I have applied the patch given in kern/10535 and it does not fix the problem I describe in kern/10575. The systems seem to take somewhat longer to slow down accepting packets, but here is a typical ping between two machines on the same ethernet: [2:36:331]root@hadrian:/var/config> ping cutlass PING cutlass.velocet.net (198.96.118.68): 56 data bytes 64 bytes from 198.96.118.68: icmp_seq=0 ttl=255 time=139.866 ms 64 bytes from 198.96.118.68: icmp_seq=1 ttl=255 time=275.616 ms 64 bytes from 198.96.118.68: icmp_seq=2 ttl=255 time=151.380 ms 64 bytes from 198.96.118.68: icmp_seq=3 ttl=255 time=167.754 ms 64 bytes from 198.96.118.68: icmp_seq=4 ttl=255 time=405.595 ms 64 bytes from 198.96.118.68: icmp_seq=5 ttl=255 time=436.736 ms 64 bytes from 198.96.118.68: icmp_seq=6 ttl=255 time=166.235 ms 64 bytes from 198.96.118.68: icmp_seq=7 ttl=255 time=92.162 ms 64 bytes from 198.96.118.68: icmp_seq=8 ttl=255 time=369.009 ms 64 bytes from 198.96.118.68: icmp_seq=9 ttl=255 time=223.727 ms ^C --- cutlass.velocet.net ping statistics --- 10 packets transmitted, 10 packets received, 0% packet loss round-trip min/avg/max/stddev = 92.162/242.808/436.736/116.027 ms [2:37:332]root@hadrian:/var/config> ifconfig tx1 down; ifconfig tx1 up [2:38:333]root@hadrian:/var/config> ping cutlass PING cutlass.velocet.net (198.96.118.68): 56 data bytes 64 bytes from 198.96.118.68: icmp_seq=0 ttl=255 time=0.558 ms 64 bytes from 198.96.118.68: icmp_seq=1 ttl=255 time=0.770 ms 64 bytes from 198.96.118.68: icmp_seq=2 ttl=255 time=0.507 ms 64 bytes from 198.96.118.68: icmp_seq=3 ttl=255 time=0.520 ms 64 bytes from 198.96.118.68: icmp_seq=4 ttl=255 time=0.512 ms 64 bytes from 198.96.118.68: icmp_seq=5 ttl=255 time=0.520 ms 64 bytes from 198.96.118.68: icmp_seq=6 ttl=255 time=0.525 ms ^C --- cutlass.velocet.net ping statistics --- 7 packets transmitted, 7 packets received, 0% packet loss round-trip min/avg/max/stddev = 0.507/0.559/0.770/0.088 ms This gets progressively worse until the ping times approach 16 s. Dave. -- ============================================================================ |David Gilbert, Velocet Communications. | Two things can only be | |Mail: dgilbert@velocet.net | equal if and only if they | |http://www.velocet.net/~dgilbert | are precisely opposite. | =========================================================GLO================ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 26 16:31:39 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from pluto.plutotech.com (mail.plutotech.com [206.168.67.137]) by hub.freebsd.org (Postfix) with ESMTP id B1CD5153F3 for ; Fri, 26 Mar 1999 16:31:36 -0800 (PST) (envelope-from gibbs@plutotech.com) Received: from narnia.plutotech.com (narnia.plutotech.com [206.168.67.130]) by pluto.plutotech.com (8.9.2/8.9.1) with ESMTP id RAA53271; Fri, 26 Mar 1999 17:31:15 -0700 (MST) (envelope-from gibbs@plutotech.com) Message-Id: <199903270031.RAA53271@pluto.plutotech.com> X-Mailer: exmh version 2.0.2 2/24/98 To: Ken Harrenstien Cc: "Kenneth D. Merry" , freebsd-bugs@FreeBSD.ORG Subject: Re: $$ Error in Handbook sect 2.1.1 In-reply-to: Your message of "Fri, 26 Mar 1999 12:55:32 PST." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 26 Mar 1999 17:22:04 -0700 From: "Justin T. Gibbs" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >> > (2) Is it really considered normal for stable releases to drop previously >> > supported devices/systems? 3.0 was not a 'stable' release. It was a major release were some tough decisions were made in the name of progress. -- Justin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 26 16:50:20 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F33CC14D48 for ; Fri, 26 Mar 1999 16:50:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id QAA14786; Fri, 26 Mar 1999 16:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Fri, 26 Mar 1999 16:50:02 -0800 (PST) Message-Id: <199903270050.QAA14786@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: sdn@slip.net (Steve Davidson) Subject: Re: bin/10230: -T and -B not implemented on filehandles for perl 5.005_02 Reply-To: sdn@slip.net (Steve Davidson) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/10230; it has been noted by GNATS. From: sdn@slip.net (Steve Davidson) To: Nate Williams , sdn@slip.net Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: bin/10230: -T and -B not implemented on filehandles for perl 5.005_02 Date: Fri, 26 Mar 1999 16:44:33 -0800 > > perl -v > > This is perl, version 5.005_02 built for i386-freebsd > > >Description: > > -T and -B are not implemented on filehandles for perl 5.005_02. > > How can I get these features? > > The functionality was added by me in response to patches by Gary Kline. > The diffs to these lives in the Attic of perl4. Check out revision 1.2 > of perl/perl/tdoio.c and 1.4 of doio.c. > > (I don't even have a 3.* system to see how easily the patches would port > to perl5.) > > > Nate > -T and -B are not implemented on the "perl" that comes with Freebsd 3.1 % uname -a FreeBSD 3.1-RELEASE % perl -v This is perl, version 5.005_02 built for i386-freebsd Can you please tell me why this is the case? Where these features excised for a reason? In the solution still to go find and apply patches? What about a simple "ports" recompile? Steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 26 18:20:22 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8836B15000 for ; Fri, 26 Mar 1999 18:20:21 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id SAA21654; Fri, 26 Mar 1999 18:20:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Fri, 26 Mar 1999 18:20:03 -0800 (PST) Message-Id: <199903270220.SAA21654@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Nate Williams Subject: Re: bin/10230: -T and -B not implemented on filehandles for perl 5.005_02 Reply-To: Nate Williams Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/10230; it has been noted by GNATS. From: Nate Williams To: sdn@slip.net (Steve Davidson) Cc: Nate Williams , freebsd-gnats-submit@FreeBSD.ORG Subject: Re: bin/10230: -T and -B not implemented on filehandles for perl 5.005_02 Date: Fri, 26 Mar 1999 19:11:33 -0700 > > > This is perl, version 5.005_02 built for i386-freebsd > > > >Description: > > > -T and -B are not implemented on filehandles for perl 5.005_02. > > > How can I get these features? > > > > The functionality was added by me in response to patches by Gary Kline. > > The diffs to these lives in the Attic of perl4. Check out revision 1.2 > > of perl/perl/tdoio.c and 1.4 of doio.c. > > > > (I don't even have a 3.* system to see how easily the patches would port > > to perl5.) > > > > > > -T and -B are not implemented on the "perl" that comes with Freebsd 3.1 That's right. > % perl -v > This is perl, version 5.005_02 built for i386-freebsd Perl5 does not have this functionality. > Can you please tell me why this is the case? > Where these features excised for a reason? No, they have never been part of Perl on *BSD, but we had local patches that implemented the feature in Perl4. > In the solution still to go find and apply patches? The solution is to do what I stated above. You need to take the Perl4 patches and modify them to work in Perl5, which is a non-trivial job. I looked into for about 30 minutes, and then gave up and decided it was too much work. But, feel free to submit patches tha work. Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 26 19:15:49 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 11B2115136; Fri, 26 Mar 1999 19:15:48 -0800 (PST) (envelope-from jkh@FreeBSD.org) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id TAA24645; Fri, 26 Mar 1999 19:15:31 -0800 (PST) (envelope-from jkh@FreeBSD.org) Date: Fri, 26 Mar 1999 19:15:31 -0800 (PST) From: Message-Id: <199903270315.TAA24645@freefall.freebsd.org> To: nsayer@quack.kfu.com, jkh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/7812 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: APM machines should attempt to power down at halt State-Changed-From-To: open->closed State-Changed-By: jkh State-Changed-When: Fri Mar 26 19:12:51 PST 1999 State-Changed-Why: Author says it can be closed. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 26 23:12:40 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.26.10.9]) by hub.freebsd.org (Postfix) with ESMTP id 473C814F68 for ; Fri, 26 Mar 1999 23:12:37 -0800 (PST) (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id SAA17025; Sat, 27 Mar 1999 18:12:17 +1100 Date: Sat, 27 Mar 1999 18:12:17 +1100 From: Bruce Evans Message-Id: <199903270712.SAA17025@godzilla.zeta.org.au> To: freebsd-bugs@FreeBSD.ORG, shalunov@att.com Subject: Re: kern/10545: When a fork/exec stress test is run, the machine locks up Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > I've tried your stress test on my 4.0-CURRENT box (built today) and I > > don't get a lock-up. Instead, I get thousands of these after the first > > few seconds: The kernel virtual address space increase may hide the bug. You should get the full proc table message or hit some other resource limit in a controlled way in all configurations. > What results do you get for the default run (without arguments)? > > > Mar 26 03:15:15 axl /kernel: proc: table i > > Mar 26 03:15:15 axl /kernel: proc: table is full > > Mar 26 03:15:15 axl last message repeated 43 times > > Mar 26 03:15:15 axl /kernel: p > > Mar 26 03:15:15 axl /kernel: proc: table is full > > [...] > > I would expect something like this. (I don't quite understand why > syslogd is missing *parts* of messages--I would expect it either to > get message or to lose it,--but that's another story.) syslogd was broken by making the kernel message buffer size a variable without doing the work to actually support this (syslogd needs to use something more like getc() than read() to read the message buffer). Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Mar 27 3:20:21 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 655A01513D for ; Sat, 27 Mar 1999 03:20:20 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id DAA57094; Sat, 27 Mar 1999 03:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Sat, 27 Mar 1999 03:20:02 -0800 (PST) Message-Id: <199903271120.DAA57094@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ustimenko Semen Subject: Re: kern/10535: Very poor ethernet performance with tx driver Reply-To: Ustimenko Semen Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/10535; it has been noted by GNATS. From: Ustimenko Semen To: David Gilbert Cc: freebsd-gnats-submit@freebsd.org, peter.jeremy@alcatel.com.au, dfr@nlsystems.com, andreas@klemm.gtn.com Subject: Re: kern/10535: Very poor ethernet performance with tx driver Date: Sat, 27 Mar 1999 17:09:02 +0600 (NS) This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. Send mail to mime@docserver.cac.washington.edu for more info. --0-319981922-922532942=:1125 Content-Type: TEXT/PLAIN; charset=US-ASCII Hi! Try to apply patch attached. Bye. --0-319981922-922532942=:1125 Content-Type: TEXT/PLAIN; charset=US-ASCII; name=asd Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: Content-Disposition: attachment; filename=asd KioqIC9uZXQvaWNsdWIvaG9tZS9mdHAvcHViL0ZyZWVCU0QvRnJlZUJTRC1j dXJyZW50L3NyYy9zeXMvcGNpL2lmX3R4LmMJU3VuIE1hciAxNCAyMzowMjo0 OCAxOTk5DQotLS0gL3N5cy9wY2kvaWZfdHguYwlTYXQgTWFyIDI3IDE3OjAx OjE2IDE5OTkNCioqKioqKioqKioqKioqKg0KKioqIDgzOCw4NDMgKioqKg0K LS0tIDgzOCw4NDcgLS0tLQ0KICAJCWRlc2MtPnR4bGVuZ3RoID0gDQogIAkJ ICAgIG1heChtMC0+bV9wa3RoZHIubGVuLEVUSEVSX01JTl9MRU4tRVRIRVJf Q1JDX0xFTik7DQogIAkJZGVzYy0+c3RhdHVzID0gMHg4MDAwOw0KKyANCisg CQkvKiBXb3JrYXJvdW5kIGZvciBBcHBsaWNhdGlvbiBOb3RlIDctMTUgKi8N CisgCQlmb3IgKGk9MDsgaTwxNjsgaSsrKSBDU1JfV1JJVEVfNChzYywgVEVT VDEsIFRFU1QxX0NMT0NLX1RFU1QpOw0KKyANCiAgCQlDU1JfV1JJVEVfNCgg c2MsIENPTU1BTkQsIENPTU1BTkRfVFhRVUVVRUQgKTsNCiAgDQogIAkJLyog U2V0IHdhdGNoZG9nIHRpbWVyICovDQoqKioqKioqKioqKioqKioNCioqKiAx MTExLDExMTcgKioqKg0KICAgICAgCQkgICAgZHByaW50ZigoRVBJQ19GT1JN QVQgIjogVFggdW5kZXJydW4gZXJyb3IsIHR4IHRocmVzaG9sZCBpbmNyZWFz ZWQgdG8gJWRcbiIsRVBJQ19BUkdTKHNjKSxzYy0+dHhfdGhyZXNob2xkKSk7 DQogIAkJfQ0KICANCiEgCQlDU1JfV1JJVEVfNChzYywgQ09NTUFORCwgQ09N TUFORF9UWFVHTyB8IENPTU1BTkRfVFhRVUVVRUQpOw0KICAJCWVwaWNfc3Rv cF9hY3Rpdml0eShzYyk7DQogIAkJZXBpY19zZXRfdHhfbW9kZShzYyk7DQog IAkJZXBpY19zdGFydF9hY3Rpdml0eShzYyk7DQotLS0gMTExNSwxMTIxIC0t LS0NCiAgICAgIAkJICAgIGRwcmludGYoKEVQSUNfRk9STUFUICI6IFRYIHVu ZGVycnVuIGVycm9yLCB0eCB0aHJlc2hvbGQgaW5jcmVhc2VkIHRvICVkXG4i LEVQSUNfQVJHUyhzYyksc2MtPnR4X3RocmVzaG9sZCkpOw0KICAJCX0NCiAg DQohIAkJQ1NSX1dSSVRFXzQoc2MsIENPTU1BTkQsIENPTU1BTkRfVFhVR08p Ow0KICAJCWVwaWNfc3RvcF9hY3Rpdml0eShzYyk7DQogIAkJZXBpY19zZXRf dHhfbW9kZShzYyk7DQogIAkJZXBpY19zdGFydF9hY3Rpdml0eShzYyk7DQoq KioqKioqKioqKioqKioNCioqKiAxNjA2LDE2MTEgKioqKg0KLS0tIDE2MTAs MTYxOCAtLS0tDQogIGVwaWNfc3RhcnRfYWN0aXZpdHkgX19QKCgNCiAgICAg IGVwaWNfc29mdGNfdCAqIHNjKSkNCiAgew0KKyAgICAgLyogV29ya2Fyb3Vu ZCBmb3IgQXBwbGljYXRpb24gTm90ZSA3LTE1ICovDQorICAgICBmb3IgKGk9 MDsgaTwxNjsgaSsrKSBDU1JfV1JJVEVfNChzYywgVEVTVDEsIFRFU1QxX0NM T0NLX1RFU1QpOw0KKyANCiAgICAgIC8qIFN0YXJ0IHJ4IHByb2Nlc3MgKi8N CiAgICAgIENTUl9XUklURV80KHNjLCBDT01NQU5ELA0KICAJQ09NTUFORF9S WFFVRVVFRCB8IENPTU1BTkRfU1RBUlRfUlggfA0KKioqKioqKioqKioqKioq DQoqKiogMTYyNiwxNjM0ICoqKioNCiAgICAgIC8qIFN0b3AgVHggYW5kIFJ4 IERNQSAqLw0KICAgICAgQ1NSX1dSSVRFXzQoc2MsQ09NTUFORCxDT01NQU5E X1NUT1BfUlh8Q09NTUFORF9TVE9QX1JETUF8Q09NTUFORF9TVE9QX1RETUEp Ow0KICANCiEgICAgIC8qIFdhaXQgUnggYW5kIFR4IERNQSB0byBzdG9wICh3 aHkgMSBtcyA/Pz8gWFhYKSAqLw0KICAgICAgZHByaW50ZigoRVBJQ19GT1JN QVQgIjogd2FpdGluZyBSeCBhbmQgVHggRE1BIHRvIHN0b3BcbiIsRVBJQ19B UkdTKHNjKSkpOw0KISAgICAgZm9yKGk9MDtpPDB4MTAwMDtpKyspIHsNCiAg CWlmKChDU1JfUkVBRF80KHNjLElOVFNUQVQpICYgKElOVFNUQVRfVFhJRExF IHwgSU5UU1RBVF9SWElETEUpKSA9PSANCiAgCSAgIChJTlRTVEFUX1RYSURM RSB8IElOVFNUQVRfUlhJRExFKSApDQogIAkgICAgYnJlYWs7DQotLS0gMTYz MywxNjQxIC0tLS0NCiAgICAgIC8qIFN0b3AgVHggYW5kIFJ4IERNQSAqLw0K ICAgICAgQ1NSX1dSSVRFXzQoc2MsQ09NTUFORCxDT01NQU5EX1NUT1BfUlh8 Q09NTUFORF9TVE9QX1JETUF8Q09NTUFORF9TVE9QX1RETUEpOw0KICANCiEg ICAgIC8qIFdhaXQgUnggYW5kIFR4IERNQSB0byBzdG9wICh3aHkgNTAgbXMg Pz8/IFhYWCkgKi8NCiAgICAgIGRwcmludGYoKEVQSUNfRk9STUFUICI6IHdh aXRpbmcgUnggYW5kIFR4IERNQSB0byBzdG9wXG4iLEVQSUNfQVJHUyhzYykp KTsNCiEgICAgIGZvcihpPTA7aTwweDUwMDAwO2krKykgew0KICAJaWYoKENT Ul9SRUFEXzQoc2MsSU5UU1RBVCkgJiAoSU5UU1RBVF9UWElETEUgfCBJTlRT VEFUX1JYSURMRSkpID09IA0KICAJICAgKElOVFNUQVRfVFhJRExFIHwgSU5U U1RBVF9SWElETEUpICkNCiAgCSAgICBicmVhazsNCioqKioqKioqKioqKioq Kg0KKioqIDE2ODgsMTY5MyAqKioqDQotLS0gMTY5NSwxNzAzIC0tLS0NCiAg CWRlc2MtPmNvbnRyb2wgPSAweDAxOw0KICAJZGVzYy0+dHhsZW5ndGggPSBt YXgobTAtPm1fcGt0aGRyLmxlbixFVEhFUl9NSU5fTEVOLUVUSEVSX0NSQ19M RU4pOw0KICAJZGVzYy0+c3RhdHVzID0gMHg4MDAwOw0KKyANCisgCS8qIFdv cmthcm91bmQgZm9yIEFwcGxpY2F0aW9uIE5vdGUgNy0xNSAqLw0KKyAJZm9y IChpPTA7IGk8MTY7IGkrKykgQ1NSX1dSSVRFXzQoc2MsIFRFU1QxLCBURVNU MV9DTE9DS19URVNUKTsNCiAgDQogIAkvKiBMYXVuY2ggdHJhbnNtaXRpb24g Ki8NCiAgCUNTUl9XUklURV80KHNjLCBDT01NQU5ELCBDT01NQU5EX1NUT1Bf VERNQSB8IENPTU1BTkRfVFhRVUVVRUQpOw0K --0-319981922-922532942=:1125-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Mar 27 4:20:22 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7387E14D07 for ; Sat, 27 Mar 1999 04:20:21 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id EAA64194; Sat, 27 Mar 1999 04:20:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Sat, 27 Mar 1999 04:20:03 -0800 (PST) Message-Id: <199903271220.EAA64194@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: kern/10545: When a fork/exec stress test is run, the machine locks up Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/10545; it has been noted by GNATS. From: Sheldon Hearn To: stanislav shalunov Cc: freebsd-gnats-submit@freebsd.org Subject: Re: kern/10545: When a fork/exec stress test is run, the machine locks up Date: Sat, 27 Mar 1999 14:12:23 +0200 On Fri, 26 Mar 1999 09:59:48 EST, stanislav shalunov wrote: > What results do you get for the default run (without arguments)? $ ./fork-exec 2:09PM up 2 days, 26 secs, 4 users, load averages: 0.03, 0.04, 0.01 In 60 secs made 3532420 attempts to fork, of which 992 succeeded. 0% of forks succeeded; 16 forks/second. 2:10PM up 2 days, 1 min, 4 users, load averages: 5.62, 2.34, 0.92 During the test, any command run from bash gives: bash: fork: Resource temporarily unavailable Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Mar 27 8:10:19 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 454DC14EBE for ; Sat, 27 Mar 1999 08:10:18 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id IAA98302; Sat, 27 Mar 1999 08:10:00 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from quack.kfu.com (quack.kfu.com [170.1.70.2]) by hub.freebsd.org (Postfix) with ESMTP id 8B2C214D03 for ; Sat, 27 Mar 1999 08:02:15 -0800 (PST) (envelope-from nsayer@medusa.kfu.com) Received: from medusa.kfu.com (medusa.kfu.com [170.1.70.5]) by quack.kfu.com (8.9.2/8.8.5) with ESMTP id IAA68081 for ; Sat, 27 Mar 1999 08:01:55 -0800 (PST) Received: (from nsayer@localhost) by medusa.kfu.com (8.9.2/8.8.8) id IAA00448; Sat, 27 Mar 1999 08:01:54 -0800 (PST) (envelope-from nsayer) Message-Id: <199903271601.IAA00448@medusa.kfu.com> Date: Sat, 27 Mar 1999 08:01:54 -0800 (PST) From: Nick Sayer Reply-To: nsayer@quack.kfu.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/10818: ipfw reporting error with bridging Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10818 >Category: kern >Synopsis: ipfw reporting error with bridging >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Mar 27 08:10:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Nick Sayer >Release: FreeBSD 3.1-RELEASE i386 >Organization: just me >Environment: 3.1-RELEASE, options BRIDGE & IPFIREWALL, sysctl -w net.link.ether.bridge_ipfw=1 >Description: When you have logging rules applying to bridged packets, the logs would not correctly parse the packet. This is because the IP header on bridged packets (in general) requires ntoh?() operations, while non-bridged packets do not (what a nightmare). >How-To-Repeat: In this example, a telnet packet is directed through the bridge to a machine on the other side: ipfw: 800 Deny TCP 170.1.70.2 170.1.70.3 in via tx0 Fragment = 64 In this example, a telnet packet is directed into the bridge machine: ipfw: 800 Deny TCP 170.1.70.2:2497 170.1.70.5:23 in via tx0 In both cases, the filtering works correctly. It is merely the report that is in error. >Fix: --- ip_fw.c.orig Sat Mar 27 07:53:27 1999 +++ ip_fw.c Sat Mar 27 07:50:37 1999 @@ -107,7 +107,8 @@ static int tcpflg_match __P((struct tcphdr *tcp, struct ip_fw *f)); static int icmptype_match __P((struct icmp * icmp, struct ip_fw * f)); static void ipfw_report __P((struct ip_fw *f, struct ip *ip, - struct ifnet *rif, struct ifnet *oif)); + struct ifnet *rif, struct ifnet *oif, + char)); static void flush_rule_ptrs(void); @@ -289,7 +290,7 @@ static void ipfw_report(struct ip_fw *f, struct ip *ip, - struct ifnet *rif, struct ifnet *oif) + struct ifnet *rif, struct ifnet *oif, char bridge_flag) { if (ip) { static u_int64_t counter; @@ -355,27 +356,27 @@ case IPPROTO_TCP: printf("TCP "); print_ip(ip->ip_src); - if ((ip->ip_off & IP_OFFMASK) == 0) + if (((bridge_flag?ntohs(ip->ip_off):ip->ip_off) & IP_OFFMASK) == 0) printf(":%d ", ntohs(tcp->th_sport)); else printf(" "); print_ip(ip->ip_dst); - if ((ip->ip_off & IP_OFFMASK) == 0) + if (((bridge_flag?ntohs(ip->ip_off):ip->ip_off) & IP_OFFMASK) == 0) printf(":%d", ntohs(tcp->th_dport)); break; case IPPROTO_UDP: printf("UDP "); print_ip(ip->ip_src); - if ((ip->ip_off & IP_OFFMASK) == 0) + if (((bridge_flag?ntohs(ip->ip_off):ip->ip_off) & IP_OFFMASK) == 0) printf(":%d ", ntohs(udp->uh_sport)); else printf(" "); print_ip(ip->ip_dst); - if ((ip->ip_off & IP_OFFMASK) == 0) + if (((bridge_flag?ntohs(ip->ip_off):ip->ip_off) & IP_OFFMASK) == 0) printf(":%d", ntohs(udp->uh_dport)); break; case IPPROTO_ICMP: - if ((ip->ip_off & IP_OFFMASK) == 0) + if (((bridge_flag?ntohs(ip->ip_off):ip->ip_off) & IP_OFFMASK) == 0) printf("ICMP:%u.%u ", icmp->icmp_type, icmp->icmp_code); else printf("ICMP "); @@ -394,8 +395,8 @@ printf(" out via %s%d", oif->if_name, oif->if_unit); else if (rif) printf(" in via %s%d", rif->if_name, rif->if_unit); - if ((ip->ip_off & IP_OFFMASK)) - printf(" Fragment = %d",ip->ip_off & IP_OFFMASK); + if (((bridge_flag?ntohs(ip->ip_off):ip->ip_off) & IP_OFFMASK)) + printf(" Fragment = %d",(bridge_flag?ntohs(ip->ip_off):ip->ip_off) & IP_OFFMASK); printf("\n"); if (fw_verbose_limit != 0 && count == fw_verbose_limit) printf("ipfw: limit reached on rule #%d\n", @@ -558,7 +559,9 @@ case 1: /* match one type */ if ( /* ( (f->fw_flg & IP_FW_F_INVSRC) != 0) ^ */ ( f->fw_uar.fw_pts[0] == ntohs(eh->ether_type) ) ) { +#if 0 printf("match!\n"); +#endif goto got_match ; } break ; @@ -705,7 +708,7 @@ bogusfrag: if (fw_verbose) - ipfw_report(NULL, ip, rif, oif); + ipfw_report(NULL, ip, rif, oif, pip==NULL); goto dropit; } @@ -720,7 +723,7 @@ /* Log to console if desired */ if ((f->fw_flg & IP_FW_F_PRN) && fw_verbose) - ipfw_report(f, ip, rif, oif); + ipfw_report(f, ip, rif, oif, pip==NULL); /* Take appropriate action */ switch (f->fw_flg & IP_FW_F_COMMAND) { >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Mar 27 8:40:20 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A2E4C15183 for ; Sat, 27 Mar 1999 08:40:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id IAA00513; Sat, 27 Mar 1999 08:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Sat, 27 Mar 1999 08:40:01 -0800 (PST) Message-Id: <199903271640.IAA00513@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: David Gilbert Subject: Re: kern/10535: Very poor ethernet performance with tx driver Reply-To: David Gilbert Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/10535; it has been noted by GNATS. From: David Gilbert To: Ustimenko Semen Cc: David Gilbert , freebsd-gnats-submit@freebsd.org, peter.jeremy@alcatel.com.au, dfr@nlsystems.com, andreas@klemm.gtn.com Subject: Re: kern/10535: Very poor ethernet performance with tx driver Date: Sat, 27 Mar 1999 11:33:37 -0500 (EST) I didn't have time to look into it, but your patch doesn't seem to apply to my copy (3.1-RELEASE) of if_tx.c. The previous patch in the PR was for if_txvar.h. [1:42:340]root@sabre:/sys/pci> patch -p <~dgilbert/patch Hmm... Looks like a new-style context diff to me... The text leading up to this was: -------------------------- |*** /net/iclub/home/ftp/pub/FreeBSD/FreeBSD-current/src/sys/pci/if_tx.c Sun Mar 14 23:02:48 1999 |--- /sys/pci/if_tx.c Sat Mar 27 17:01:16 1999 -------------------------- Patching file /sys/pci/if_tx.c using Plan A... Hunk #1 succeeded at 824 (offset -14 lines). Hunk #2 failed at 1101. Hunk #3 failed at 1596. Hunk #4 failed at 1619. Hunk #5 failed at 1681. 4 out of 5 hunks failed--saving rejects to /sys/pci/if_tx.c.rej done To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Mar 27 10:50:19 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E75DE14CD2 for ; Sat, 27 Mar 1999 10:50:18 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id KAA06260; Sat, 27 Mar 1999 10:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from ee.follo.net (ee.follo.net [195.204.143.223]) by hub.freebsd.org (Postfix) with ESMTP id 34FDF15089 for ; Sat, 27 Mar 1999 10:24:04 -0800 (PST) (envelope-from des@ee.follo.net) Received: (from des@localhost) by ee.follo.net (8.9.2/8.8.8) id TAA14403; Sat, 27 Mar 1999 19:24:07 +0100 (CET) (envelope-from des) Message-Id: <199903271824.TAA14403@ee.follo.net> Date: Sat, 27 Mar 1999 19:24:07 +0100 (CET) From: Dag-Erling Smorgrav Reply-To: des@ee.follo.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/10820: getpwent() failures in httpd Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10820 >Category: bin >Synopsis: getpwent() failures in httpd >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Mar 27 10:50:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Dag-Erling Smorgrav >Release: FreeBSD 3.1-STABLE i386 >Organization: Yes Interactive >Environment: FreeBSD 3.1-STABLE and 4.0-CURRENT systems configured as NIS clients of a FreeBSD NIS server which has master.passwd.{byname,byuid} maps. >Description: The NIS code in src/lib/libc/gen/getpwent.c attempts to determine whether or not it has access to the master.passwd maps. This test will succeed if it can connect to the NIS server from a privileged port, i.e. if the effective UID is 0. However, it is possible for the process to lose that access without getpwent.c noticing, for instance by dropping privileges and closing the NIS socket (which is what happens in e.g. an HTTP daemon which forks). The NIS code will try to reconnect to master.passwd, but since it is connecting from a non-privileged port, the request will be deniedand the getpwent() call will fail. >How-To-Repeat: Run Apache httpd on the NIS client. Using an HTTP client, request http://www.nisclient.net/~joe/ where joe is listed in the NIS password but *not* in the NIS client's own password database, and has a public_html directory (or whatever you've set UserDir to). getpwent() will fail, resulting in a 404 Not Found. Running the NIS server in debug mode reveals that the client attempted to access the master.passwd.byname map from an unprivileged port. Other daemons which close file descriptors when they fork will also be affected by this. >Fix: The NIS code needs to detect a change in privileges, and reinitialize if the connection was lost after privileges were dropped. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Mar 27 11: 9:36 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4767D153BE; Sat, 27 Mar 1999 11:09:34 -0800 (PST) (envelope-from des@FreeBSD.org) Received: (from des@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id LAA07391; Sat, 27 Mar 1999 11:09:16 -0800 (PST) (envelope-from des@FreeBSD.org) Date: Sat, 27 Mar 1999 11:09:16 -0800 (PST) From: Message-Id: <199903271909.LAA07391@freefall.freebsd.org> To: des@ee.follo.net, des@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/10820 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: getpwent() failures in httpd State-Changed-From-To: open->closed State-Changed-By: des State-Changed-When: Sat Mar 27 11:08:50 PST 1999 State-Changed-Why: Mis-analyzed, submitting new PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Mar 27 11:20:20 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 782EA15244 for ; Sat, 27 Mar 1999 11:20:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id LAA08019; Sat, 27 Mar 1999 11:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id 48C06153FA for ; Sat, 27 Mar 1999 11:14:08 -0800 (PST) (envelope-from des@flood.ping.uio.no) Received: (from des@localhost) by flood.ping.uio.no (8.9.2/8.9.1) id UAA70054; Sat, 27 Mar 1999 20:13:49 +0100 (CET) (envelope-from des) Message-Id: <199903271913.UAA70054@flood.ping.uio.no> Date: Sat, 27 Mar 1999 20:13:49 +0100 (CET) From: des@flood.ping.uio.no Reply-To: des@flood.ping.uio.no To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/10821: getpwent() fails on NIS clients after dropping privs Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10821 >Category: bin >Synopsis: getpwent() fails on NIS clients after dropping privs >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Mar 27 11:20:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Dag-Erling Smorgrav >Release: FreeBSD 3.1-STABLE i386 >Organization: >Environment: FreeBSD 3.1 or 4.0 configured as NIS client of a FreeBSD NIS server with master.passwd maps. >Description: The first time it runs, the NIS code in src/lib/libc/gen/getpwent.c attempts to determine whether or not it has access to master.passwd. The result of this test is saved in the global variable _gotmaster. If the NIS server is a FreeBSD machine, it will only grant access to those maps if the request originates from a privileged port. Thus the test will only succeed if the process has an effective UID of 0 the first time the NIS code runs. The catch is that the NIS lookup code in src/lib/libc/yp/yplib.c closes the NIS socket and reconnects if it detects a fork. It does this by storing the pid when connecting, and checking that it is still the same before every lookup. If the calling process drops privileges and forks, getpwent.c will try to access master.passwd, but yplib.c will not be able to connect from a privileged port. The NIS lookup will fail. >How-To-Repeat: One piece of software which very clearly exhibits this problem is the Apache HTTP daemon. Attempts to request any user's home page will fail if the daemon runs on a NIS client and the requested user is listed in the NIS password maps but not in the local password database. >Fix: src/lib/libc/gen/getpwent.c should retry lookups in the regular maps if lookups in the restricted maps fail. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Mar 27 12:30:20 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 363B615111 for ; Sat, 27 Mar 1999 12:30:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id MAA11135; Sat, 27 Mar 1999 12:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 94C0115138; Sat, 27 Mar 1999 12:25:29 -0800 (PST) Message-Id: <19990327202529.94C0115138@hub.freebsd.org> Date: Sat, 27 Mar 1999 12:25:29 -0800 (PST) From: jan@janot.if.sc.usp.br To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: i386/10822: libtiff.so.4 missing for kde-1.1 package in FreeBSD 3.1-RELEASE Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10822 >Category: i386 >Synopsis: libtiff.so.4 missing for kde-1.1 package in FreeBSD 3.1-RELEASE >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Mar 27 12:30:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Jan Slaets >Release: FreeBSD 3.1-RELEASE >Organization: University Sao Paulo (Brazil) >Environment: FreeBSD janot.if.sc.usp.br 3.1-RELEASE #16 i386 >Description: kde-1.0 was working fine with FreeBSD 3.1-RELEASE. After pkg_add kde-1.1 and other kde tools version 1.1 (from packages FreeBSD 3.1-RELEASE) I have the following error: kcontrol /usr/libexec/ld-elf.so.1 : Shared Object "libtiff.so.4" not found. Where can I find this missing library version. >How-To-Repeat: >Fix: cd /usr/local/lib ln libtiff34.so.1 libtiff.so.4 seems to solve te problem >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Mar 27 13:30:39 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AC25F14F15; Sat, 27 Mar 1999 13:30:38 -0800 (PST) (envelope-from des@FreeBSD.org) Received: (from des@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id NAA14809; Sat, 27 Mar 1999 13:30:20 -0800 (PST) (envelope-from des@FreeBSD.org) Date: Sat, 27 Mar 1999 13:30:20 -0800 (PST) From: Message-Id: <199903272130.NAA14809@freefall.freebsd.org> To: des@FreeBSD.org, freebsd-bugs@FreeBSD.org, des@FreeBSD.org Subject: Re: bin/10821 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: getpwent() fails on NIS clients after dropping privs Responsible-Changed-From-To: freebsd-bugs->des Responsible-Changed-By: des Responsible-Changed-When: Sat Mar 27 13:29:55 PST 1999 Responsible-Changed-Why: I'm working on a fix. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Mar 27 16:50:20 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6660E150FD for ; Sat, 27 Mar 1999 16:50:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id QAA25247; Sat, 27 Mar 1999 16:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from raven.korax.net (raven.korax.net [209.82.39.7]) by hub.freebsd.org (Postfix) with ESMTP id 548E3150FD for ; Sat, 27 Mar 1999 16:48:47 -0800 (PST) (envelope-from avb@korax.net) Received: from home.korax.net (dyn03.dialin.korax.net [209.82.39.43]) by raven.korax.net (8.9.3/8.9.3) with ESMTP id TAA06689 for ; Sat, 27 Mar 1999 19:48:26 -0500 (EST) Received: (from avb@localhost) by home.korax.net (8.9.3/8.9.3) id TAA02382; Sat, 27 Mar 1999 19:48:20 -0500 (EST) Message-Id: <199903280048.TAA02382@home.korax.net> Date: Sat, 27 Mar 1999 19:48:20 -0500 (EST) From: avb@korax.net Reply-To: avb@korax.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: misc/10824: typo and incorrect description for rwhois in /etc/services Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10824 >Category: misc >Synopsis: typo and incorrect description for rwhois in /etc/services >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: Sat Mar 27 16:50:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: >Release: FreeBSD 2.2.7-STABLE i386 >Organization: Korax Online Inc., Toronto, Ontario, Canada >Environment: all FreeBSD versions >Description: Fix typo and description for the rwhois service in /etc/services >How-To-Repeat: cat /etc/services | grep rwhois >Fix: apply this patch to /etc/services revision 1.55: --- services.orig Sat Mar 27 19:12:45 1999 +++ services Sat Mar 27 19:13:23 1999 @@ -7,7 +7,7 @@ # Updated from RFC 1700, ``Assigned Numbers'' (October 1994). All ports # are included. # -# The lastest IANA port assignments can be gotten from +# The latest IANA port assignments can be gotten from # http://www.isi.edu/in-notes/iana/assignments/port-numbers # The Well Known Ports are those from 0 through 1023. # The Registered Ports are those from 1024 through 49151 @@ -1905,8 +1905,8 @@ nuts_dem 4132/udp #NUTS Daemon nuts_bootp 4133/tcp #NUTS Bootp Server nuts_bootp 4133/udp #NUTS Bootp Server -rwhois 4321/tcp #Remote Who Is -rwhois 4321/udp #Remote Who Is +rwhois 4321/tcp #Referral Whois +rwhois 4321/udp #Referral Whois unicall 4343/tcp unicall 4343/udp krb524 4444/tcp >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Mar 27 17:20:19 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 63362150B6 for ; Sat, 27 Mar 1999 17:20:18 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id RAA26927; Sat, 27 Mar 1999 17:20:00 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 7DD0A14D26; Sat, 27 Mar 1999 17:12:57 -0800 (PST) Message-Id: <19990328011257.7DD0A14D26@hub.freebsd.org> Date: Sat, 27 Mar 1999 17:12:57 -0800 (PST) From: borjamar@sarenet.es To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: bin/10825: daily script not executed or executed twice in summer time changes Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10825 >Category: bin >Synopsis: daily script not executed or executed twice in summer time changes >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: Sat Mar 27 17:20:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Borja Marcos >Release: 3.1-RELEASE >Organization: >Environment: FreeBSD nenuial.arnor.es 3.1-RELEASE FreeBSD 3.1-RELEASE #1: Sun Mar 14 17:11:01 CET 1999 root@nenuial.arnor.es:/usr/src/sys/compile/NENUIAL i386 >Description: When changing to summer time, which uses to happen at 2 am (at leas here in Europe) the daily script would not be run, and when changing to Winter time, it would be run twice. >How-To-Repeat: >Fix: Changing the time for the daily script in /etc/crontab >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Mar 27 20:30:19 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8FF6B1530E for ; Sat, 27 Mar 1999 20:30:18 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id UAA35613; Sat, 27 Mar 1999 20:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from romberg.math.ntnu.no (romberg.math.ntnu.no [129.241.15.150]) by hub.freebsd.org (Postfix) with SMTP id EB3BB14D66 for ; Sat, 27 Mar 1999 20:26:29 -0800 (PST) (envelope-from perhov@math.ntnu.no) Received: (qmail 1109 invoked from network); 28 Mar 1999 04:26:10 -0000 Received: from fimfpc19.math.ntnu.no (129.241.15.132) by romberg.math.ntnu.no with SMTP; 28 Mar 1999 04:26:10 -0000 Received: (from perhov@localhost) by fimfpc19.math.ntnu.no (8.9.2/8.8.4) id GAA95143; Sun, 28 Mar 1999 06:26:09 +0200 (CEST) Message-Id: <199903280426.GAA95143@fimfpc19.math.ntnu.no> Date: Sun, 28 Mar 1999 06:26:09 +0200 (CEST) From: perhov@phys.ntnu.no Reply-To: perhov@phys.ntnu.no To: FreeBSD-gnats-submit@freebsd.org Cc: perhov@phys.ntnu.no X-Send-Pr-Version: 3.2 Subject: kern/10826: TCP connection looped back to itself Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10826 >Category: kern >Synopsis: TCP connection looped back to itself >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Mar 27 20:30:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Per Kristian Hove >Release: FreeBSD 3.1-STABLE i386 >Organization: Norwegian University of Science and Technology >Environment: FreeBSD 3.1-STABLE as of Mon Mar 15 13:47:02 CET 1999 >Description: On rare occations, a "telnet localhost N" (where N is an unused port number >1024) will succeed and result in a connection looped back to itself. >How-To-Repeat: Try hard enough, and you will get a connection. The connection seems to be looped back into itself (hey, isn't that WYSIWYG? "What You Send Is What You Get"?). The following example assumes your shell is bash: $ declare -i n=0 $ until telnet localhost 1234; do n=n+1; done; echo n=$n Trying 127.0.0.1... telnet: Unable to connect to remote host: Connection refused Trying 127.0.0.1... telnet: Unable to connect to remote host: Connection refused [...] Trying 127.0.0.1... telnet: Unable to connect to remote host: Connection refused Connected to localhost. Escape character is '^]'. hi, am I talking to myself? # I type this, hi, am I talking to myself? # this is the response I get ^] # quit telnet telnet> quit Connection closed. n=398 (Sometimes I have to wait until n=5000 before it occurs) A output of 'netstat' shows that the connection is indeed looped: # netstat Active Internet connections Proto Recv-Q Send-Q Local Address Foreign Address (state) tcp 0 0 localhost.1234 localhost.1234 ESTABLISHED Active UNIX domain sockets Address Type Recv-Q Send-Q Inode Conn Refs Nextref Addr [...] This behaviour also occurs when I try to telnet to an IP address assigned to another of the host's network interfaces (it doesn't have to be the loopback interface). I've never succeeded getting a connection to an unused port below 1024. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Mar 27 20:50:20 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 796E514D37 for ; Sat, 27 Mar 1999 20:50:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id UAA36780; Sat, 27 Mar 1999 20:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Sat, 27 Mar 1999 20:50:01 -0800 (PST) Message-Id: <199903280450.UAA36780@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Chris Costello Subject: Re: kern/10826: TCP connection looped back to itself Reply-To: Chris Costello Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/10826; it has been noted by GNATS. From: Chris Costello To: perhov@phys.ntnu.no Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: kern/10826: TCP connection looped back to itself Date: Sat, 27 Mar 1999 22:45:51 -0600 On Sat, Mar 27, 1999, perhov@phys.ntnu.no wrote: > (Sometimes I have to wait until n=5000 before it occurs) > > A output of 'netstat' shows that the connection is indeed looped: > > # netstat > Active Internet connections > Proto Recv-Q Send-Q Local Address Foreign Address (state) > tcp 0 0 localhost.1234 localhost.1234 ESTABLISHED How is this a bug? It behaves how it should, doesn't it? > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-bugs" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Mar 27 21:20:20 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2C57D14E00 for ; Sat, 27 Mar 1999 21:20:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id VAA37458; Sat, 27 Mar 1999 21:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Sat, 27 Mar 1999 21:20:01 -0800 (PST) Message-Id: <199903280520.VAA37458@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Per Kristian Hove Subject: Re: kern/10826: TCP connection looped back to itself Reply-To: Per Kristian Hove Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/10826; it has been noted by GNATS. From: Per Kristian Hove To: chris@calldei.com Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: kern/10826: TCP connection looped back to itself Date: Sun, 28 Mar 1999 07:14:36 +0200 (MET DST) On Sat, 27 Mar 1999, Chris Costello wrote: > How is this a bug? It behaves how it should, doesn't it? If it does, I'm sorry I've taken up your time on something that isn't a bug. I'm not at all a networking guru, it just seemed strange to me to get a connection when nothing should be listening to that port. But when setting net.inet.tcp.log_in_vin = 1 and try to connect to port 3434, I see in my logs Connection attempt to TCP 127.0.0.1:3434 from 127.0.0.1:3460 and when I then try to connect to port 3461 (the "outgoing" port number increases by 1 for every connection attempt), that succeeds. So what seemed random, it's not random at all. I thought you had to explicitly listen() [and then accept()] in order to accept connections. But connect()ing on a socket makes it accept incoming connections? (And yes, I'm no programmer either). This is how I thought it worked: When I connect to the port, a port is allocated locally in the local end of the connection. Then a SYN is sent to the remote end, and if I get a (SYN | ACK) in return, I will get connected to the destination end. If I should get just a (SYN | ~ACK), I shouldn't get connected to the remote end. I only send a SYN (to myself, by accident, cause the port number is the same in both ends of the connection), and since I'm sending it to myself, I also think that I'm receiving it. But since it's just a SYN, and not a (SYN | ACK), I shouldn't accept that it's a valid response to my original SYN. It seems like FreeBSD reads the SYN as 'okay, let him have a connection'. -- per kristian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Mar 27 23:40:19 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D4EF714D26 for ; Sat, 27 Mar 1999 23:40:18 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id XAA48660; Sat, 27 Mar 1999 23:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from david.siemens.de (david.siemens.de [192.35.17.14]) by hub.freebsd.org (Postfix) with ESMTP id 2D6CC14A09 for ; Sat, 27 Mar 1999 23:34:15 -0800 (PST) (envelope-from andre.albsmeier@mchp.siemens.de) Received: from mail2.siemens.de (mail2.siemens.de [139.25.208.14]) by david.siemens.de (8.9.3/8.9.3) with ESMTP id JAA06661 for ; Sun, 28 Mar 1999 09:34:12 +0200 (MET DST) Received: from curry.mchp.siemens.de (curry.mchp.siemens.de [146.180.31.23]) by mail2.siemens.de (8.9.3/8.9.3) with ESMTP id JAA05219 for ; Sun, 28 Mar 1999 09:33:54 +0200 (MET DST) Received: (from daemon@localhost) by curry.mchp.siemens.de (8.8.8/8.8.8) id JAA76414 for ; Sun, 28 Mar 1999 09:33:56 +0200 (CEST) Message-Id: <199903280733.JAA73569@internal> Date: Sun, 28 Mar 1999 09:33:53 +0200 (CEST) From: Andre Albsmeier To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/10828: 3.1-STABLE freezes when writing to floppydrive without medium Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10828 >Category: kern >Synopsis: 3.1-STABLE freezes when writing to floppydrive without medium >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Mar 27 23:40:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Andre Albsmeier >Release: FreeBSD 3.1-STABLE i386 >Organization: >Environment: FreeBSD 3.1-STABLE >Description: FreeBSD 3.1-STABLE freezes when you are writing to a floppy disk drive when there is no floppy inserted. I have heard that it also makes problems when an inserted disk is write protected. >How-To-Repeat: 1. remove the floppy 2. dd if=/dev/zero of=/dev/fd0 bs=64k >Fix: With the help of Mike Smith I think I tracked it down a little bit. (Was my first experience with DDB). This is part of the output of the trace command in DDB: ... ---- interrupt stuff ------------ reassignbuf bdirty brelse biodone fdstrategy spec_strategy spec_vnoperate ufs_vnoperatespec bwrite vop_stdbwrite vop_defaultop >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message