From owner-freebsd-bugs Sun Apr 9 0:10: 5 2000 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 3454737B6CF for ; Sun, 9 Apr 2000 00:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA26452; Sun, 9 Apr 2000 00:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.uni-bielefeld.de (mail.uni-bielefeld.de [129.70.4.90]) by hub.freebsd.org (Postfix) with ESMTP id 3743737B652 for ; Sun, 9 Apr 2000 00:07:29 -0700 (PDT) (envelope-from bfischer@Techfak.uni-bielefeld.de) Received: from frolic.no-support.loc (ppp36-234.hrz.uni-bielefeld.de) by mail.uni-bielefeld.de (Sun Internet Mail Server sims.3.5.1999.05.24.18.28.p7) with ESMTP id <0FSQ00EN1MGAN9@mail.uni-bielefeld.de> for FreeBSD-gnats-submit@freebsd.org; Sun, 9 Apr 2000 09:07:25 +0200 (MET DST) Received: (from bjoern@localhost) by frolic.no-support.loc (8.9.3/8.9.3) id JAA24395 for FreeBSD-gnats-submit@freebsd.org; Sun, 09 Apr 2000 09:06:36 +0200 (CEST envelope-from bjoern) Received: (from bjoern@localhost) by broccoli.no-support.loc (8.9.3/8.9.3) id FAA09601; Fri, 07 Apr 2000 05:22:44 +0200 (CEST envelope-from bjoern) Message-Id: <200004070322.FAA09601@broccoli.no-support.loc> Date: Fri, 07 Apr 2000 05:22:44 +0200 (CEST) From: Bjoern Fischer Reply-To: bfischer@Techfak.Uni-Bielefeld.DE To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/17875: [PATCH] /usr/bin/login logs errors in non-error situations Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17875 >Category: bin >Synopsis: [PATCH] /usr/bin/login logs errors in non-error situations >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 Apr 9 00:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Bjoern Fischer >Release: FreeBSD 4.0-STABLE i386 >Organization: No-Support >Environment: Any out-of-the-box FreeBSD 4.0 with /dev on a non FFS file system. >Description: If /dev/tty* is on a file system that does not support chflags(2) every login procedure generates an error message in syslog. >How-To-Repeat: See description. >Fix: To fix this errno is checked if it is EOPNOTSUPP. No errors will be logged in that case. See this patch: --- ./usr.bin/login/login.c 2000/04/07 02:55:10 1.1 +++ ./usr.bin/login/login.c 2000/04/07 02:59:35 @@ -492,8 +492,11 @@ * user sets them otherwise, this can cause the chown to fail. * Since it isn't clear that flags are useful on character * devices, we just clear them. + * + * chflags may fail due to lack of support on file system. In + * this case we ignore the error silently. */ - if (chflags(ttyn, 0)) + if (chflags(ttyn, 0) && (errno != EOPNOTSUPP)) syslog(LOG_ERR, "chmod(%s): %m", ttyn); if (chown(ttyn, pwd->pw_uid, (gr = getgrnam(TTYGRPNAME)) ? gr->gr_gid : pwd->pw_gid)) --- ./usr.bin/login/login_fbtab.c 2000/04/07 02:55:10 1.1 +++ ./usr.bin/login/login_fbtab.c 2000/04/07 03:02:46 @@ -132,8 +132,12 @@ DIR *dir; if (strcmp("/*", path + pathlen - 2) != 0) { - /* clear flags of the device */ - if (chflags(path, 0) && errno != ENOENT) + /* clear flags of the device + * + * chflags may fail due to lack of support on file system. In + * this case we ignore the error silently. + */ + if (chflags(path, 0) && (errno != ENOENT) && (errno != EOPNOTSUPP)) syslog(LOG_ERR, "%s: chflags(%s): %m", table, path); if (chmod(path, mask) && errno != ENOENT) syslog(LOG_ERR, "%s: chmod(%s): %m", table, path); >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 Apr 9 3:30:52 2000 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 5048D37B5C9 for ; Sun, 9 Apr 2000 03:30:47 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA36679; Sun, 9 Apr 2000 03:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5AC2537B667 for ; Sun, 9 Apr 2000 03:22:09 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA36316; Sun, 9 Apr 2000 03:22:09 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004091022.DAA36316@freefall.freebsd.org> Date: Sun, 9 Apr 2000 03:22:09 -0700 (PDT) From: pius@zyan.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: bin/17877: Cannot change login group with "pw usermod -g" (on FreeBSD 4.0 only) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17877 >Category: bin >Synopsis: Cannot change login group with "pw usermod -g" (on FreeBSD 4.0 only) >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 Apr 9 03:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Pius Fischer >Release: 4.0-20000208-CURRENT >Organization: Zyan Communications >Environment: FreeBSD axilla2.zyan.com 4.0-20000208-CURRENT FreeBSD 4.0-20000208-CURRENT #0: Fri Feb 18 14:54:38 PST 2000 pius@axilla2.zyan.com:/usr/src/sys/compile/AXILLA2 i386 >Description: Due to the changes made in revision 1.33 of pw_user.c, "pw usermod -g " can no longer be used to change a user's login group. >How-To-Repeat: On a FreeBSD 4.0 system, try to use "pw usermod -g " to change the login group of a user. >Fix: A simple patch: =cut= --- usr.sbin/pw/pw_user.c.orig Fri Jan 14 16:20:21 2000 +++ usr.sbin/pw/pw_user.c Sat Apr 8 23:41:26 2000 @@ -468,7 +468,7 @@ gid_t newgid = (gid_t) GETGRNAM(cnf->default_group)->gr_gid; if (newgid != pwd->pw_gid) { edited = 1; - pwd->pw_gid = pwd->pw_gid; + pwd->pw_gid = newgid; } } =cut= >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 Apr 9 3:40: 7 2000 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 7B33237B596 for ; Sun, 9 Apr 2000 03:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA36951; Sun, 9 Apr 2000 03:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sun, 9 Apr 2000 03:40:03 -0700 (PDT) Message-Id: <200004091040.DAA36951@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Brian Somers Subject: Re: kern/17873: Can not routing IPV6 packet with tun-device Reply-To: Brian Somers Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/17873; it has been noted by GNATS. From: Brian Somers To: greg@greg.rim.or.jp Cc: freebsd-gnats-submit@FreeBSD.ORG, brian@hak.lan.Awfulhak.org Subject: Re: kern/17873: Can not routing IPV6 packet with tun-device Date: Sun, 09 Apr 2000 11:30:38 +0100 > > >Number: 17873 > >Category: kern > >Synopsis: Can not routing IPV6 packet with tun-device [.....] > This is a diffs for net/if_tun.c This breaks the if_tun module. If the module is built with INET6 defined, it'll fail to load on a non-INET6 kernel. If it's not, it can't call in6_ifattach. if_tun.c is already broken by calling if_attach() here. We need to abstract the interface creation in a way similar to the way data's dispatched via sys/net/intrq.c. Maybe there should be a all_ifattach() that's unconditionally built into the kernel and does something like #ifdef INET if_attach(ifp); #endif #ifdef INET6 in6_ifattach(ifp, IN6_IFT_P2P, 0, 0); #endif and so on ? There'd need to be a more generic way of telling it to use IN6_IFT_P2P, and I'm not sure why the if_type = IFT_RS232 bit is necessary.... -- 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 Sun Apr 9 3:47:45 2000 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 8C32B37B530; Sun, 9 Apr 2000 03:47:43 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA37446; Sun, 9 Apr 2000 03:47:42 -0700 (PDT) (envelope-from brian@FreeBSD.org) Date: Sun, 9 Apr 2000 03:47:42 -0700 (PDT) From: Message-Id: <200004091047.DAA37446@freefall.freebsd.org> To: brian@FreeBSD.org, freebsd-bugs@FreeBSD.org, brian@FreeBSD.org Subject: Re: kern/17873: Can not routing IPV6 packet with tun-device Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Can not routing IPV6 packet with tun-device Responsible-Changed-From-To: freebsd-bugs->brian Responsible-Changed-By: brian Responsible-Changed-When: Sun Apr 9 03:46:09 PDT 2000 Responsible-Changed-Why: I've got an interest in keeping if_tun.ko as functional as the built in version. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 9 6:40: 6 2000 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 599D737B728 for ; Sun, 9 Apr 2000 06:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA81171; Sun, 9 Apr 2000 06:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from ada.eu.org (marvin.enst.fr [137.194.161.2]) by hub.freebsd.org (Postfix) with ESMTP id 72D1837B506 for ; Sun, 9 Apr 2000 06:30:01 -0700 (PDT) (envelope-from sam@ada.eu.org) Received: from antinea.enst.fr (antinea.enst.fr [137.194.160.145]) by ada.eu.org (Postfix) with ESMTP id B49C11905C for ; Sun, 9 Apr 2000 15:29:38 +0200 (CEST) Received: by antinea.enst.fr (Postfix, from userid 1000) id A609E3D9; Sun, 9 Apr 2000 15:29:32 +0200 (CEST) Message-Id: <20000409132932.A609E3D9@antinea.enst.fr> Date: Sun, 9 Apr 2000 15:29:32 +0200 (CEST) From: sam@ada.eu.org Reply-To: sam@ada.eu.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/17878: Jail user can change priority of outside processes Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17878 >Category: kern >Synopsis: Jail user can change priority of outside processes >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 Apr 9 06:40:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Samuel Tardieu >Release: FreeBSD 5.0-CURRENT i386 >Organization: TELECOM Paris >Environment: Any jail wil do. >Description: A user (such as root) in a jail is able to use setpriority() (e.g., through the renice command) to lower the priority level (increase the nice value) of a process which lives outside. >How-To-Repeat: From within the jail, try # renice 5 PID where PID is a regular process which lives out of the jail (and thus cannot be seen using ps from within the jail). >Fix: The following patch should correct this. However, I wonder if functions such as pfind() should not take another argument which would be the curproc value when applicable. It would require changing all the pfind() calls in the kernel, but would add an extra security. Of course, processes iterators would still have to be modified to honor the jail. Also, note that real-time priorities may suffer from the same problem. --- kern_resource.c.orig Sun Apr 9 12:06:38 2000 +++ kern_resource.c Sun Apr 9 12:31:53 2000 @@ -86,7 +86,7 @@ p = curp; else p = pfind(uap->who); - if (p == 0) + if (p == 0 || !PRISON_CHECK(curp, p)) break; low = p->p_nice; break; @@ -98,6 +98,8 @@ pg = curp->p_pgrp; else if ((pg = pgfind(uap->who)) == NULL) break; + if (!PRISON_CHECK(curp, LIST_FIRST(&pg->pg_members))) + break; LIST_FOREACH(p, &pg->pg_members, p_pglist) { if (p->p_nice < low) low = p->p_nice; @@ -110,7 +112,8 @@ uap->who = curp->p_ucred->cr_uid; LIST_FOREACH(p, &allproc, p_list) if (p->p_ucred->cr_uid == uap->who && - p->p_nice < low) + p->p_nice < low && + PRISON_CHECK(curp, p)) low = p->p_nice; break; @@ -146,7 +149,7 @@ p = curp; else p = pfind(uap->who); - if (p == 0) + if (p == 0 || !PRISON_CHECK(curp, p)) break; error = donice(curp, p, uap->prio); found++; @@ -159,6 +162,8 @@ pg = curp->p_pgrp; else if ((pg = pgfind(uap->who)) == NULL) break; + if (!PRISON_CHECK(curp, LIST_FIRST(&pg->pg_members))) + break; LIST_FOREACH(p, &pg->pg_members, p_pglist) { error = donice(curp, p, uap->prio); found++; @@ -170,7 +175,8 @@ if (uap->who == 0) uap->who = curp->p_ucred->cr_uid; LIST_FOREACH(p, &allproc, p_list) - if (p->p_ucred->cr_uid == uap->who) { + if (p->p_ucred->cr_uid == uap->who && + PRISON_CHECK(curp, p)) { error = donice(curp, p, uap->prio); found++; } @@ -239,7 +245,7 @@ else p = pfind(uap->pid); - if (p == 0) + if (p == 0 || !PRISON_CHECK(curp, p)) return (ESRCH); switch (uap->function) { >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 Apr 9 7:50: 5 2000 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 7B21937B854 for ; Sun, 9 Apr 2000 07:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA16116; Sun, 9 Apr 2000 07:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from ada.eu.org (marvin.enst.fr [137.194.161.2]) by hub.freebsd.org (Postfix) with ESMTP id 741A437B7D7 for ; Sun, 9 Apr 2000 07:40:48 -0700 (PDT) (envelope-from sam@ada.eu.org) Received: from antinea.enst.fr (antinea.enst.fr [137.194.160.145]) by ada.eu.org (Postfix) with ESMTP id 355001907E for ; Sun, 9 Apr 2000 16:38:46 +0200 (CEST) Received: by antinea.enst.fr (Postfix, from userid 1000) id 9350E3D9; Sun, 9 Apr 2000 16:38:42 +0200 (CEST) Message-Id: <20000409143842.9350E3D9@antinea.enst.fr> Date: Sun, 9 Apr 2000 16:38:42 +0200 (CEST) From: sam@ada.eu.org Reply-To: sam@ada.eu.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/17879: moused -E default value is unusable Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17879 >Category: bin >Synopsis: moused -E default value is unusable >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 Apr 9 07:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Samuel Tardieu >Release: FreeBSD 5.0-CURRENT i386 >Organization: TELECOM Paris >Environment: 5.0-CURRENT on Celeron >Description: moused -3 (emulate three buttons) is supposed to be equivalent to moused -3 -E 200 (wait 200 milliseconds before deciding whether the two buttons were pressed together or not). In fact, the default is 500 milliseconds, which makes the mouse hardly usable (try to cut'n'paste in this mode, you will likely miss the begin point). >How-To-Repeat: Run moused -3 >Fix: The following patch applies to usr.sbin/moused/moused.c. The man page reads the correct value (200 milliseconds) already. --- moused.c.orig Sun Apr 9 16:31:11 2000 +++ moused.c Sun Apr 9 16:31:26 2000 @@ -76,7 +76,7 @@ #define MAX_CLICKTHRESHOLD 2000 /* 2 seconds */ #define MAX_BUTTON2TIMEOUT 2000 /* 2 seconds */ #define DFLT_CLICKTHRESHOLD 500 /* 0.5 second */ -#define DFLT_BUTTON2TIMEOUT 500 /* 0.5 second */ +#define DFLT_BUTTON2TIMEOUT 200 /* 0.2 second */ #define TRUE 1 #define FALSE 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 Sun Apr 9 13:40: 7 2000 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 A972E37B801 for ; Sun, 9 Apr 2000 13:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA56314; Sun, 9 Apr 2000 13:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 614BA37B6E9 for ; Sun, 9 Apr 2000 13:30:44 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA55468; Sun, 9 Apr 2000 13:30:44 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004092030.NAA55468@freefall.freebsd.org> Date: Sun, 9 Apr 2000 13:30:44 -0700 (PDT) From: fbibsd@yahoo.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/17881: 4.0-RELEASE kern.flp boot crashes upon promptly keyed or less promptly keyed plus '-c' boot argument Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17881 >Category: kern >Synopsis: 4.0-RELEASE kern.flp boot crashes upon promptly keyed or less promptly keyed plus '-c' boot argument >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Apr 9 13:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: fbibsd >Release: 4.0-RELEASE >Organization: n/a >Environment: boot problem; no uname -a available >Description: While trying to track fix / track down the boot problem in kern/17870, I wanted to go into kernel configuration mode while booting 4.0-RELEASE kern.flp. If I keyed immediately after the Bios started booting from the kern.flp, the system crashes with a repetitively scrolling register dump. When I retried the problem, I decided to wait a couple seconds after the kern.flp was into its boot process (after the kern.flp displayed the messages "/boot.config: -P" and "Keyboard: yes"). When was keyed at this point, the following happened: >How-To-Repeat: 1) boot from kern.flp, hit as soon as the boot starts. 2) boot from kern.flp, hit immediately as "Keyboard: yes" is displayed, then give "-c" argument to boot prompt. >Fix: unknown >Release-Note: >Audit-Trail: >Unformatted: >> FreeBSD/i386 BOOT Default: 0:fd(0,a)/boot/loader boot: -c - int=0000000d err=00000000 efl=00030056 eip=000089f6 eax=000000b8 ebx=00002820 ecx=00000000 edx=000008ee esi=000096a1 edi=00001f98 ebp=00000ed0 esp=00001800 cs=0067 ds=0000 es=0000 fs=0000 gs=0000 ss=0000 cs:eip=0f 01 1e 76 96 0f 01 16-70 96 0f 20 c0 66 83 c8 ss:esp=0a 69 6e 74 3d 30 30 30-30 30 30 30 64 20 20 65 System halted ...the system is as described in kern/17870, save that this time I had set BIOS "PnP aware os" from yes to no, and had interrupted kern.flp booting interactively as described above. I'll try a few more things in the system's BIOS and hardware inventory; I have a very similar system running 3.4-release, so it's probably either something very subtly different between the machine configurations or something truly 4.0-RELEASE specific. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 9 14:27: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from web2005.mail.yahoo.com (web2005.mail.yahoo.com [128.11.68.205]) by hub.freebsd.org (Postfix) with SMTP id 1933737B643 for ; Sun, 9 Apr 2000 14:27:03 -0700 (PDT) (envelope-from fbibsd@yahoo.com) Received: (qmail 5680 invoked by uid 60001); 9 Apr 2000 21:26:59 -0000 Message-ID: <20000409212659.5679.qmail@web2005.mail.yahoo.com> Received: from [216.101.22.98] by web2005.mail.yahoo.com; Sun, 09 Apr 2000 14:26:59 PDT Date: Sun, 9 Apr 2000 14:26:59 -0700 (PDT) From: x Subject: kern/17870 mfsroot.flp boot bug duplicated in simplified setup; 3.4-RELEASE works better. To: freebsd-bugs@freebsd.org Cc: fbibsd@yahoo.com MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org To simplify and verify the nature of the problem, the following conditions were changed (relative to the original kern/17870 PR), and the problem duplicated: 1) switched Primary Master HDD to an old fujitsu MPA3035AT HDD (3.5 GBy) 2) Changed "PnP Aware OS?" from "YES" to "NO" in BIOS (I suppose I should have had it NO before, though I'm unclear on this point since more and more PnP support seems to be in BSD, and the only PnP ISA device I have is a supported Creative AWE32 sound card). 3) dusted out system to get rid of the 'bugs' ;) 4) removed 3c905B-tx ethernet card 5) removed Creative AWE32 PnP ISA sound card 6) removed Diamond FirePort 40UW ncr875 style SCSI card (at this point only the ATI Mach64 VGA PCI card remained, plus the on-motherboard IDE, FDD, SERIAL, PARALLEL, USB, Keyboard, and such) In this minimalized configuration, kern/17870 (mfsroot of 4.0-release crashing a few seconds after it begins loading) is still present. Next I made 3.4-RELEASE kern.flp and mfsroot.flp onto the same floppy diskettes as I had 4.0-RELEASE on. 3.4-RELEASE's kern.flp booted fine. 3.4-RELEASE's mfsroot diskette came up fine, though it did display the following error before it proceeded to show the visual kernel configuration menu: "can't open '/mfsroot': no such file or directory". It seemed to take it in stride and continue, however, well past the point where 4.0-RELEASE's mfsroot would crash or reboot. Either there's a BIOS option that's wrong for 4.0, or 4.0 really hates something about my VGA / motherboard / BIOS / onboard or USB peripherals. Oh and I had used 'md5' to compare the 4.0-RELEASE floppy images with the 4.0-RELEASE /floppies kern.flp and mfsroot.flp images. I also remade the floppies twice, so I don't believe I have a bad diskette issue. It's a bummer that the floppy boot blows up and I can't boot the CDROM for some strange reason. I'll try a few more things to diagnose this, but since I can't get the O/S booted, I've got few options to helpfully debug the issue. __________________________________________________ Do You Yahoo!? Talk to your friends online with Yahoo! Messenger. http://im.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 9 15: 0: 6 2000 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 1632C37B8A8 for ; Sun, 9 Apr 2000 15:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA64242; Sun, 9 Apr 2000 15:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AC76137B843 for ; Sun, 9 Apr 2000 14:54:39 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA63759; Sun, 9 Apr 2000 14:54:38 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004092154.OAA63759@freefall.freebsd.org> Date: Sun, 9 Apr 2000 14:54:38 -0700 (PDT) From: adam@nine.net To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/17883: 4.0-RELEASE panics during install. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17883 >Category: i386 >Synopsis: 4.0-RELEASE panics during install. >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 Apr 9 15:00:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Adam Durana >Release: 4.0-RELEASE >Organization: Nine Net >Environment: N/A >Description: 4.0-release install panics during probing of devices. The exact message I get is "panic: nexus_setup_intr: NULL irq resource!". The install then stops and reboots. >How-To-Repeat: I imagine the problem is hardware related because I have installed 4.0-release on other machines. The machine this problem occurs on is a PentiumII 333Mhz, 64mb ram, 3 IDE devices, (HD, CDRW, DVDROM). The maker of the machine is Packard Bell. I have run FreeBSD since 2.2.8 on this machine without any problems. >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 Apr 9 16:43:54 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from web2004.mail.yahoo.com (web2004.mail.yahoo.com [128.11.68.204]) by hub.freebsd.org (Postfix) with SMTP id 91E3D37B877 for ; Sun, 9 Apr 2000 16:43:50 -0700 (PDT) (envelope-from fbibsd@yahoo.com) Received: (qmail 15407 invoked by uid 60001); 9 Apr 2000 23:43:49 -0000 Message-ID: <20000409234349.15406.qmail@web2004.mail.yahoo.com> Received: from [216.101.22.98] by web2004.mail.yahoo.com; Sun, 09 Apr 2000 16:43:49 PDT Date: Sun, 9 Apr 2000 16:43:49 -0700 (PDT) From: x Subject: kern/17870 mfsroot.flp boot bug: "BIOS USB Function Enable" Off = no problem, On = bug. To: freebsd-bugs@freebsd.org Cc: fbibsd@yahoo.com MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I've tracked the problem down to the setting of the BIOS "USB Function Enable" setting. When "USB Function Enable" is On the bug persists. When the setting is changed to Off, installation proceeds normally. The only USB devices are a four port hub, and attached to the first port of the USB Hub is a Qtronix trackball. Normally I'd use a USB keyboard, but presently a PS/2 keyboard is in use. USB Legacy Support option is also set in the BIOS. 3.4-RELEASE floppies worked well desipte the USB Function Enable On. The USB function is just from the VIA VP2 chipset in the FIC PA2011 motherboard, and it works well under Win98 with my peripherals. I'll probably test an install under a TMC MI5-VP4 (VIA VP4 chipset) motherboard soon; I'll see if the crash also happens with it. __________________________________________________ Do You Yahoo!? Talk to your friends online with Yahoo! Messenger. http://im.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 9 19:50: 6 2000 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 D022237B790 for ; Sun, 9 Apr 2000 19:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA96763; Sun, 9 Apr 2000 19:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 285CA37B5C3 for ; Sun, 9 Apr 2000 19:40:30 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA94317; Sun, 9 Apr 2000 19:40:30 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004100240.TAA94317@freefall.freebsd.org> Date: Sun, 9 Apr 2000 19:40:30 -0700 (PDT) From: asherrod@sharemedia.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/17885: Still having trouble identifying disk geometry (in ata-disk.c now) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17885 >Category: i386 >Synopsis: Still having trouble identifying disk geometry (in ata-disk.c now) >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Apr 9 19:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Andrew Sherrod >Release: 4.0 >Organization: Sharemedia >Environment: >Description: This problem existed in wd.c and was carried over to ata-disk.c. I have been told over and over it is not a "real" problem. Asking various users, I have discovered that I am not alone in experiencing this. Of course, others just followed the "Well, add a DOS partition, and let Microsoft fix your problem" advice. But it IS a problem. Whenever I install I have to go back and re-write the disk driver then re-run newfs, etc... It is a problem. It can be fixed (easily). My drives are not antiques or that unusual. One Western Digital, one Maxtor. Okay, cheap disks, but not uncommon. The problem: Not all disks return 16383 cylinders to indicate LBA mode must be used. Mine return 4192, which rsults in rather small disk sizes. >How-To-Repeat: Boot the system with one of the disks in question. Try running /stand/sysinstall. Look at how small the disks just became. >Fix: 129c129,130 < >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 Apr 9 19:50: 7 2000 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 7ECE337B7A6 for ; Sun, 9 Apr 2000 19:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA96776; Sun, 9 Apr 2000 19:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 371E637B5C3 for ; Sun, 9 Apr 2000 19:40:32 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA94322; Sun, 9 Apr 2000 19:40:32 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004100240.TAA94322@freefall.freebsd.org> Date: Sun, 9 Apr 2000 19:40:32 -0700 (PDT) From: asherrod@sharemedia.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/17886: Still having trouble identifying disk geometry (in ata-disk.c now) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17886 >Category: i386 >Synopsis: Still having trouble identifying disk geometry (in ata-disk.c now) >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Apr 9 19:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Andrew Sherrod >Release: 4.0 >Organization: Sharemedia >Environment: >Description: This problem existed in wd.c and was carried over to ata-disk.c. I have been told over and over it is not a "real" problem. Asking various users, I have discovered that I am not alone in experiencing this. Of course, others just followed the "Well, add a DOS partition, and let Microsoft fix your problem" advice. But it IS a problem. Whenever I install I have to go back and re-write the disk driver then re-run newfs, etc... It is a problem. It can be fixed (easily). My drives are not antiques or that unusual. One Western Digital, one Maxtor. Okay, cheap disks, but not uncommon. The problem: Not all disks return 16383 cylinders to indicate LBA mode must be used. Mine return 4192, which rsults in rather small disk sizes. >How-To-Repeat: Boot the system with one of the disks in question. Try running /stand/sysinstall. Look at how small the disks just became. >Fix: 129c129,130 < >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 Apr 9 19:50:15 2000 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 9BCAE37B7D4 for ; Sun, 9 Apr 2000 19:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA96788; Sun, 9 Apr 2000 19:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C77B137B89E for ; Sun, 9 Apr 2000 19:40:32 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA94328; Sun, 9 Apr 2000 19:40:32 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004100240.TAA94328@freefall.freebsd.org> Date: Sun, 9 Apr 2000 19:40:32 -0700 (PDT) From: asherrod@sharemedia.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/17887: Still having trouble identifying disk geometry (in ata-disk.c now) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17887 >Category: i386 >Synopsis: Still having trouble identifying disk geometry (in ata-disk.c now) >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Apr 9 19:50:03 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Andrew Sherrod >Release: 4.0 >Organization: Sharemedia >Environment: >Description: This problem existed in wd.c and was carried over to ata-disk.c. I have been told over and over it is not a "real" problem. Asking various users, I have discovered that I am not alone in experiencing this. Of course, others just followed the "Well, add a DOS partition, and let Microsoft fix your problem" advice. But it IS a problem. Whenever I install I have to go back and re-write the disk driver then re-run newfs, etc... It is a problem. It can be fixed (easily). My drives are not antiques or that unusual. One Western Digital, one Maxtor. Okay, cheap disks, but not uncommon. The problem: Not all disks return 16383 cylinders to indicate LBA mode must be used. Mine return 4192, which rsults in rather small disk sizes. >How-To-Repeat: Boot the system with one of the disks in question. Try running /stand/sysinstall. Look at how small the disks just became. >Fix: 129c129,130 < >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 Apr 9 19:50:17 2000 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 E836437B79B for ; Sun, 9 Apr 2000 19:50:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA96799; Sun, 9 Apr 2000 19:50:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0E13437B89E for ; Sun, 9 Apr 2000 19:40:33 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA94331; Sun, 9 Apr 2000 19:40:33 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004100240.TAA94331@freefall.freebsd.org> Date: Sun, 9 Apr 2000 19:40:33 -0700 (PDT) From: asherrod@sharemedia.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/17888: Still having trouble identifying disk geometry (in ata-disk.c now) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17888 >Category: i386 >Synopsis: Still having trouble identifying disk geometry (in ata-disk.c now) >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Apr 9 19:50:04 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Andrew Sherrod >Release: 4.0 >Organization: Sharemedia >Environment: >Description: This problem existed in wd.c and was carried over to ata-disk.c. I have been told over and over it is not a "real" problem. Asking various users, I have discovered that I am not alone in experiencing this. Of course, others just followed the "Well, add a DOS partition, and let Microsoft fix your problem" advice. But it IS a problem. Whenever I install I have to go back and re-write the disk driver then re-run newfs, etc... It is a problem. It can be fixed (easily). My drives are not antiques or that unusual. One Western Digital, one Maxtor. Okay, cheap disks, but not uncommon. The problem: Not all disks return 16383 cylinders to indicate LBA mode must be used. Mine return 4192, which rsults in rather small disk sizes. >How-To-Repeat: Boot the system with one of the disks in question. Try running /stand/sysinstall. Look at how small the disks just became. >Fix: 129c129,130 < >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 Apr 9 19:50:24 2000 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 0879E37B8A4 for ; Sun, 9 Apr 2000 19:50:07 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA96814; Sun, 9 Apr 2000 19:50:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1C9B637B8C0 for ; Sun, 9 Apr 2000 19:40:39 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA94356; Sun, 9 Apr 2000 19:40:39 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004100240.TAA94356@freefall.freebsd.org> Date: Sun, 9 Apr 2000 19:40:39 -0700 (PDT) From: adrian.roy@bigfoot.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/17889: certain type of DNS queries seem to get dropped by DNS server Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17889 >Category: misc >Synopsis: certain type of DNS queries seem to get dropped by DNS server >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 Apr 9 19:50:04 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Adrian Roy >Release: FreeBSD 4.0-Release >Organization: Minacs WorldWide >Environment: FreeBSD carmack 4.0-RELEASE FreeBSD 4.0-RELEASE #0: Mon Mar 20 22:50:22 GMT 2000 root@monster.cdrom.com:/usr/src/sys/compile/GENERIC i386 >Description: I seem to have a problem connecting to and from my FreeBSD 4.0 machine. I am running an internal IP (10.3/16) network. My DNS server is a WindowsNT 4.0 machine running WinRoute. I have no DNS server running on the BSD machine. My hosts files on ALL my machines are empty as well. When I telnet from a 3.3 machine to the 4.0 machine, I get a login prompt just fine. I enter the username and password and then it just hangs there for about 5 minutes. I check the DNS server and it is saying that there was a DNS query from the 4.0 machine looking for info on the 3.3 machine. It says the DNS query was of type 28, and that it was invalid, and that it will be dropped. Likewise, when I try to connect to an external site from the 4.0 machine, the same DNS error occurs on the server. For example, I will type 'telnet somehost.somedomain.com' and it just hangs there. This happens with both TELNET and FTP. However, the DNS error does not occur when I try to ping an address. Ping will work fine. At first I thought it was the NT DNS server - but - all my other machines work fine. I have FreeBSD 3.x machines mostly, but I also have Solaris 2.5/2.6, WindowsNT, and MacOS9 all using the same DNS server. They work fine. Here is the kicker. If I change the DNS server listed in resolv.conf to another DNS server out on the internet, things work fine. This is what is blowing my mind. I have over 80 machines on my local network that use my DNS server without a problem. Yet, this one FreeBSD 4.0 machine refuses to work with it. However, it seems to be able to use ANY other DNS server I pick. I need to use my local DNS server becuase it has all the lookup info for my private IP network addresses. I hope that's enough info. >How-To-Repeat: This 4.0 machine is a fresh install. I downloaded the ISO file, burnt it to a CD, and did a basic install. Nothing different from the last 30 BSD machines I have set up. I entered the DNS server into resolv.conf, and the problems started from there. >Fix: The only fix that I can find, aside from choosing a different DNS server, is to remove resolv.conf completely and create entries in the /etc/hosts file. Not very dynamic. Once again, this was happening with both FTP and Telnet, but not ping. >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 Apr 9 19:50:27 2000 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 7F61A37B70E for ; Sun, 9 Apr 2000 19:50:08 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA96837; Sun, 9 Apr 2000 19:50:08 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D9DCB37B7A6 for ; Sun, 9 Apr 2000 19:43:34 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA94671; Sun, 9 Apr 2000 19:43:34 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004100243.TAA94671@freefall.freebsd.org> Date: Sun, 9 Apr 2000 19:43:34 -0700 (PDT) From: asherrod@sharemedia.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/17890: Still having trouble identifying disk geometry (in ata-disk.c now) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17890 >Category: i386 >Synopsis: Still having trouble identifying disk geometry (in ata-disk.c now) >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Apr 9 19:50:07 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Andrew Sherrod >Release: 4.0 >Organization: Sharemedia >Environment: FreeBSD 4.0-RELEASE FreeBSD 4.0-RELEASE #0: Mon Apr 10 20:21:45 EDT 2000 root@parzival.radiojackboot.com:/usr/src/sys/compile/PARZIVAL i386 >Description: This problem existed in wd.c and was carried over to ata-disk.c. I have been told over and over it is not a "real" problem. Asking various users, I have discovered that I am not alone in experiencing this. Of course, others just followed the "Well, add a DOS partition, and let Microsoft fix your problem" advice. But it IS a problem. Whenever I install I have to go back and re-write the disk driver then re-run newfs, etc... It is a problem. It can be fixed (easily). My drives are not antiques or that unusual. One Western Digital, one Maxtor. Okay, cheap disks, but not uncommon. The problem: Not all disks return 16383 cylinders to indicate LBA mode must be used. Mine return 4192, which rsults in rather small disk sizes. >How-To-Repeat: Boot the system with one of the disks in question. Try running /stand/sysinstall. Look at how small the disks just became. >Fix: 129c129,130 < if(AD_PARAM->cylinder = 16383 && adp->total_sec < AD_PARAM->lbasize) --- > if((AD_PARAM->cylinder == 16383 || AD_PARAM->lbaflag) > && adp->total_sec < AD_PARAM->lbasize) >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 Apr 9 21:38:27 2000 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 94D1937B779; Sun, 9 Apr 2000 21:38:25 -0700 (PDT) (envelope-from grog@FreeBSD.org) Received: (from grog@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA06001; Sun, 9 Apr 2000 21:38:25 -0700 (PDT) (envelope-from grog@FreeBSD.org) Date: Sun, 9 Apr 2000 21:38:25 -0700 (PDT) From: Message-Id: <200004100438.VAA06001@freefall.freebsd.org> To: asherrod@sharemedia.com, grog@FreeBSD.org, freebsd-bugs@FreeBSD.org, grog@FreeBSD.org Subject: Re: i386/17885: Still having trouble identifying disk geometry (in ata-disk.c now) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Still having trouble identifying disk geometry (in ata-disk.c now) State-Changed-From-To: open->feedback State-Changed-By: grog State-Changed-When: Sun Apr 9 21:37:38 PDT 2000 State-Changed-Why: Require feedback from submitter. Responsible-Changed-From-To: freebsd-bugs->grog Responsible-Changed-By: grog Responsible-Changed-When: Sun Apr 9 21:37:38 PDT 2000 Responsible-Changed-Why: grog is handling this PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 9 21:39:57 2000 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 530B737B520; Sun, 9 Apr 2000 21:39:56 -0700 (PDT) (envelope-from grog@FreeBSD.org) Received: (from grog@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA06275; Sun, 9 Apr 2000 21:39:56 -0700 (PDT) (envelope-from grog@FreeBSD.org) Date: Sun, 9 Apr 2000 21:39:56 -0700 (PDT) From: Message-Id: <200004100439.VAA06275@freefall.freebsd.org> To: asherrod@sharemedia.com, grog@FreeBSD.org, freebsd-bugs@FreeBSD.org, grog@FreeBSD.org Subject: Re: i386/17886: Still having trouble identifying disk geometry (in ata-disk.c now) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Still having trouble identifying disk geometry (in ata-disk.c now) State-Changed-From-To: open->closed State-Changed-By: grog State-Changed-When: Sun Apr 9 21:38:30 PDT 2000 State-Changed-Why: Duplicate PR. Responsible-Changed-From-To: freebsd-bugs->grog Responsible-Changed-By: grog Responsible-Changed-When: Sun Apr 9 21:38:30 PDT 2000 Responsible-Changed-Why: grog closed this PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 9 21:40:32 2000 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 67D6437B81C; Sun, 9 Apr 2000 21:40:31 -0700 (PDT) (envelope-from grog@FreeBSD.org) Received: (from grog@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA06410; Sun, 9 Apr 2000 21:40:31 -0700 (PDT) (envelope-from grog@FreeBSD.org) Date: Sun, 9 Apr 2000 21:40:31 -0700 (PDT) From: Message-Id: <200004100440.VAA06410@freefall.freebsd.org> To: asherrod@sharemedia.com, grog@FreeBSD.org, freebsd-bugs@FreeBSD.org, grog@FreeBSD.org Subject: Re: i386/17887: Still having trouble identifying disk geometry (in ata-disk.c now) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Still having trouble identifying disk geometry (in ata-disk.c now) State-Changed-From-To: open->closed State-Changed-By: grog State-Changed-When: Sun Apr 9 21:39:59 PDT 2000 State-Changed-Why: Duplicate PR. Responsible-Changed-From-To: freebsd-bugs->grog Responsible-Changed-By: grog Responsible-Changed-When: Sun Apr 9 21:39:59 PDT 2000 Responsible-Changed-Why: grog closed this PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 9 21:41: 5 2000 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 0356237B8A6; Sun, 9 Apr 2000 21:41:04 -0700 (PDT) (envelope-from grog@FreeBSD.org) Received: (from grog@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA06497; Sun, 9 Apr 2000 21:41:03 -0700 (PDT) (envelope-from grog@FreeBSD.org) Date: Sun, 9 Apr 2000 21:41:03 -0700 (PDT) From: Message-Id: <200004100441.VAA06497@freefall.freebsd.org> To: asherrod@sharemedia.com, grog@FreeBSD.org, freebsd-bugs@FreeBSD.org, grog@FreeBSD.org Subject: Re: i386/17888: Still having trouble identifying disk geometry (in ata-disk.c now) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Still having trouble identifying disk geometry (in ata-disk.c now) State-Changed-From-To: open->closed State-Changed-By: grog State-Changed-When: Sun Apr 9 21:40:34 PDT 2000 State-Changed-Why: Duplicate PR. Responsible-Changed-From-To: freebsd-bugs->grog Responsible-Changed-By: grog Responsible-Changed-When: Sun Apr 9 21:40:34 PDT 2000 Responsible-Changed-Why: grog closed this PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 9 21:42:14 2000 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 5EFB437B684; Sun, 9 Apr 2000 21:42:13 -0700 (PDT) (envelope-from grog@FreeBSD.org) Received: (from grog@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA06611; Sun, 9 Apr 2000 21:42:13 -0700 (PDT) (envelope-from grog@FreeBSD.org) Date: Sun, 9 Apr 2000 21:42:13 -0700 (PDT) From: Message-Id: <200004100442.VAA06611@freefall.freebsd.org> To: grog@FreeBSD.org, freebsd-bugs@FreeBSD.org, sos@FreeBSD.org Subject: Re: i386/17890: Still having trouble identifying disk geometry (in ata-disk.c now) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Still having trouble identifying disk geometry (in ata-disk.c now) Responsible-Changed-From-To: freebsd-bugs->sos Responsible-Changed-By: grog Responsible-Changed-When: Sun Apr 9 21:41:12 PDT 2000 Responsible-Changed-Why: sos handles the ata driver. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 10 2:40: 8 2000 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 B23F337B845 for ; Mon, 10 Apr 2000 02:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA39254; Mon, 10 Apr 2000 02:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from rose.niw.com.au (app3022-2.gw.connect.com.au [203.63.119.4]) by hub.freebsd.org (Postfix) with ESMTP id 4BE7C37B751 for ; Mon, 10 Apr 2000 02:31:53 -0700 (PDT) (envelope-from root@niw.com.au) Received: by rose.niw.com.au (Postfix, from userid 0) id 70F1562D12; Mon, 10 Apr 2000 19:01:49 +0930 (CST) Message-Id: <20000410093149.70F1562D12@rose.niw.com.au> Date: Mon, 10 Apr 2000 19:01:49 +0930 (CST) From: ian@niw.com.au Reply-To: ian@niw.com.au To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/17895: stale unix domain connections Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17895 >Category: kern >Synopsis: stale unix domain connections >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 Apr 10 02:40:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Ian West >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: SMP kernel, dual PIII-450, 256Megs Memory. >Description: Poorly written (alpha) code which opens a unix domain listener socket, but which fail's to 'attach' in combination with a client attached to this, can leave open connections which do not appear to time out when the socket is closed due to a terminate. I would guess that if enough of these were left laying around it could eventually chew up enough resouces to cause problems. netstat -an output follows cde970c0 stream 0 0 0 0 0 0 /home/ian/tools/testsocket cde97140 stream 0 0 0 0 0 0 /home/ian/tools/testsocket cde97d80 stream 0 0 0 0 0 0 /home/ian/tools/testsocket cde97f00 stream 0 0 0 0 0 0 /home/ian/tools/testsocket cde97180 stream 0 0 0 0 0 0 /home/ian/tools/testsocket cde974c0 stream 12 0 0 0 0 0 /home/ian/tools/testsocket cde97640 stream 0 0 0 0 0 0 /home/ian/tools/testsocket cde978c0 stream 1 0 0 0 0 0 /home/ian/tools/testsocket >How-To-Repeat: Open a unix domain socket for listen. Connect to it from a another program, terminate the listener before the connection has been 'accepted' The connection seems to remain. >Fix: Unknown at this stage. I suspect a check needs to be made on exit for open unix domain sockets ? Where are ipv4 domain sockets checked ? do they just wait for a timeout ? >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 Apr 10 3:50: 8 2000 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 5440237B76D for ; Mon, 10 Apr 2000 03:50:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA47116; Mon, 10 Apr 2000 03:50:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 10 Apr 2000 03:50:04 -0700 (PDT) Message-Id: <200004101050.DAA47116@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Lachlan O'Dea" Subject: Re: bin/16924: tmpfile(3) ignores TMPDIR and always uses /tmp Reply-To: "Lachlan O'Dea" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/16924; it has been noted by GNATS. From: "Lachlan O'Dea" To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: bin/16924: tmpfile(3) ignores TMPDIR and always uses /tmp Date: Mon, 10 Apr 2000 20:44:54 +1000 On Thu, Apr 06, 2000 at 09:56:33AM -0400, Daniel Hagan wrote: > The original code is incorrect anyway since it doesn't handle malloc > errors. So based on the discussion, all I have to do is return NULL if malloc returns NULL. The attached diff does this. I also added a paragraph to the man page. I didn't add anything to the ERRORS section, as it states that errno can be set to any of the errors returned by fdopen(3), which in turn can set errno to any value specified by malloc(3). Index: tmpfile.c =================================================================== RCS file: /home/ncvs/src/lib/libc/stdio/tmpfile.c,v retrieving revision 1.4 diff -u -r1.4 tmpfile.c --- tmpfile.c 2000/01/27 23:06:46 1.4 +++ tmpfile.c 2000/04/10 10:34:49 @@ -47,6 +47,7 @@ #include #include #include +#include FILE * tmpfile() @@ -55,10 +56,28 @@ FILE *fp; int fd, sverrno; #define TRAILER "tmp.XXXXXX" - char buf[sizeof(_PATH_TMP) + sizeof(TRAILER)]; + char *buf; + char *envtmpdir; + int envtmpdirlen; - (void)memcpy(buf, _PATH_TMP, sizeof(_PATH_TMP) - 1); - (void)memcpy(buf + sizeof(_PATH_TMP) - 1, TRAILER, sizeof(TRAILER)); + if ((envtmpdir = getenv("TMPDIR")) != NULL) + { + envtmpdirlen = strlen(envtmpdir); + buf = malloc(envtmpdirlen + 1 + sizeof(TRAILER)); + if (buf == NULL) + return NULL; + (void)memcpy(buf, envtmpdir, envtmpdirlen); + buf[envtmpdirlen] = '/'; + (void)memcpy(buf + envtmpdirlen + 1, TRAILER, sizeof(TRAILER)); + } + else + { + buf = malloc(sizeof(_PATH_TMP) + sizeof(TRAILER) - 1); + if (buf == NULL) + return NULL; + (void)memcpy(buf, _PATH_TMP, sizeof(_PATH_TMP) - 1); + (void)memcpy(buf + sizeof(_PATH_TMP) - 1, TRAILER, sizeof(TRAILER)); + } sigfillset(&set); (void)sigprocmask(SIG_BLOCK, &set, &oset); @@ -66,6 +85,8 @@ fd = mkstemp(buf); if (fd != -1) (void)unlink(buf); + + free(buf); (void)sigprocmask(SIG_SETMASK, &oset, NULL); Index: tmpnam.3 =================================================================== RCS file: /home/ncvs/src/lib/libc/stdio/tmpnam.3,v retrieving revision 1.5 diff -u -r1.5 tmpnam.3 --- tmpnam.3 2000/01/09 08:54:03 1.5 +++ tmpnam.3 2000/04/10 10:34:50 @@ -66,6 +66,16 @@ The file is opened with the access value .Ql w+ . .Pp +The file is initially created in the directory specified by the environment +variable +.Ev TMPDIR +(if set), or +.Pa /tmp +by default. +As the file is immediately unlinked, the only effect of +.Ev TMPDIR +is to specify which partition the file is created on. +.Pp The .Fn tmpnam function To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 10 7:10: 4 2000 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 5916037B7C1 for ; Mon, 10 Apr 2000 07:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA63368; Mon, 10 Apr 2000 07:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3733137BA92 for ; Mon, 10 Apr 2000 07:05:39 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA61601; Mon, 10 Apr 2000 07:05:39 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004101405.HAA61601@freefall.freebsd.org> Date: Mon, 10 Apr 2000 07:05:39 -0700 (PDT) From: eraxpma@verkstad.net To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/17900: 3Com 3C589D and 3CCE589ET doesn't during install of 4.0-RELEASE Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17900 >Category: i386 >Synopsis: 3Com 3C589D and 3CCE589ET doesn't during install of 4.0-RELEASE >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Apr 10 07:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mattias Pettersson >Release: 4.0-RELEASE >Organization: Ericsson Radio Systems >Environment: Can't get that far... >Description: 589D and 589E aren't properly recognized during installation. They are configured and things seem to be alright, but they can never receive any packets. This makes installation over these pc-cards really tricky. Cards worked fine under 3.4-RELEASE and installation thereof. >How-To-Repeat: Boot 4.0-RELEASE floppies on (Thinkpad 560Z) laptop. Default pc-card io range and irq options 1 or 2 (line 2 and 3). I tried nfs installation. Can't ping anything on VT4. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 10 7:40: 5 2000 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 AF9B337BAB2 for ; Mon, 10 Apr 2000 07:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA76331; Mon, 10 Apr 2000 07:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0838837BAD6 for ; Mon, 10 Apr 2000 07:30:25 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA73472; Mon, 10 Apr 2000 07:30:24 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004101430.HAA73472@freefall.freebsd.org> Date: Mon, 10 Apr 2000 07:30:24 -0700 (PDT) From: jeg@hawk.circa.ufl.edu To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: conf/17904: rc.network IPX configuration missing 'ipx' parm for ifconfig Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17904 >Category: conf >Synopsis: rc.network IPX configuration missing 'ipx' parm for ifconfig >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 Apr 10 07:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: John Gelnaw >Release: 4.0-Current >Organization: University of Florida >Environment: FreeBSD wolf.circa.ufl.edu 4.0-RELEASE FreeBSD 4.0-RELEASE #0: Tue Apr 4 09:03:58 EDT 2000 jeg@wolf.circa.ufl.edu:/usr/src/sys/compile/Wolf i386 >Description: Added the following lines to /etc/rc.conf to enable IPX protocol, after compiling kernel with IPX and NCPFS options. ifconfig_fxp0_ipx="0x00010010" ipxrouted_enable="YES" When system booted, boot message paused on " sendmail" for several minutes. After system finished booting, no tcp/ip available. Checking ifconfig, showed my tcp/ip address to be 1.0.16.0 >How-To-Repeat: Add above lines to /etc/rc.conf and reboot >Fix: Checking showed that the line in rc.network that configures IPX was: ifconfig ${ifn} ${ifconfig_args} but should have been: ifconfig ${ifn} ipx ${ifconfig_args} >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 Apr 10 8:21: 3 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from skynet.ctr.columbia.edu (skynet.ctr.columbia.edu [128.59.64.70]) by hub.freebsd.org (Postfix) with SMTP id 0230137B57B for ; Mon, 10 Apr 2000 08:20:56 -0700 (PDT) (envelope-from wpaul@skynet.ctr.columbia.edu) Received: (from wpaul@localhost) by skynet.ctr.columbia.edu (8.6.12/8.6.9) id LAA24995; Mon, 10 Apr 2000 11:24:26 -0400 From: Bill Paul Message-Id: <200004101524.LAA24995@skynet.ctr.columbia.edu> Subject: Re: kern/17866: vr0 hung up To: issei@ace.heart.ne.jp (Issei Numata) Date: Mon, 10 Apr 2000 11:24:25 -0400 (EDT) Cc: bugs@freebsd.org In-Reply-To: <20000410202748O.issei@guru.gr.jp> from "Issei Numata" at Apr 10, 2000 08:27:48 pm X-Mailer: ELM [version 2.4 PL24] Content-Type: text Content-Length: 3990 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Of all the gin joints in all the towns in all the world, Issei Numata had to walk into mine and say: > CPU: AMD-K6(tm) 3D processor (400.91-MHz 586-class CPU) > Origin = "AuthenticAMD" Id = 0x58c Stepping = 12 > Features=0x8021bf > AMD Features=0x80000800 > real memory = 268427264 (262136K bytes) > avail memory = 256712704 (250696K bytes) > Preloaded elf kernel "kernel" at 0xc037c000. > md0: Malloc disk > npx0: on motherboard > npx0: INT 16 interface > pcib0: on motherboard > pci0: on pcib0 > pcib1: at device 1.0 on pci0 > pci1: on pcib1 > isab0: at device 7.0 on pci0 > isa0: on isab0 > atapci0: port 0xe000-0xe00f at device 7.1 on pci0 > ata0: at 0x1f0 irq 14 on atapci0 > chip1: at device 7.3 on pci0 > pci0: at 8.0 irq 11 > vr0: port 0xe400-0xe47f mem 0xec000000-0xec00007f irq 10 at device 10.0 on pci0 > vr0: Ethernet address: 00:90:cc:01:34:bc > miibus0: on vr0 > amphy0: on miibus0 > amphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto > vr0: supplying EUI64: 00:90:cc:ff:fe:01:34:bc > de0: port 0xe800-0xe87f mem 0xec001000-0xec00107f irq 12 at device 11.0 on pci0 > de0: ACCTON EN1203 21040 [10Mb/s] pass 2.4 > de0: address 00:00:e8:0d:df:ca [...] > ad0: 19574MB [39770/16/63] at ata0-master using UDMA33 > Mounting root from ufs:/dev/ad0s1a > de0: starting DAD for fe80:0002::0200:e8ff:fe0d:dfca > de0: DAD complete for fe80:0002::0200:e8ff:fe0d:dfca - no duplicates found So you are using bus master DMA for both the NIC and the disk controller. > I use switching hub. No, look. It can be a switch, or a hub, or a 10/100 hub. The last case is special: it's sort of a mix between a hub and a switch in that there are only two fabrics, one for 10mbps and one for 100mbps. However all the 10mbps links and all the 100mbps are shared. So you usually don't use full duplex. > Other my PC never says avobe messages, its CPU is celelon 477. > But its transfer speed is very very slow with 100 BASE > FULL-DUPLEX. Grrrr. They stop trying to use it! Tell us exactly what kind of "switching hub" this is (manufacturer and model). You should not force full duplex mode if the link partner doesn't support it! If this really is a dual speed hub, then it's possible that it doesn't support full duplex. The duplex setting is *not* some sort of performance increasing thing you can just twiddle: if both sides are not able to negotiate a full duplex link, then don't force it! > These two machine's > configuration is completely different. Unfortunatly > I cannot tell you detail of this PC because I'm in Hong > Kong for work. If I will return, I can tell you detail. *sigh* > And sorry my stuipid previous bug report. It was my first time for > send-pr. I watched other peoples bug-reports and I suprised > other people's report is very short. > > So, I beleved short comment is the manner for send-pr. > But as you say, it was wrong. *All* problem reports must include details. Always. And you haven't told me yet what happens when you try the patch I gave you. -Bill -- ============================================================================= -Bill Paul (212) 854-6020 | System Manager, Master of Unix-Fu Work: wpaul@ctr.columbia.edu | Center for Telecommunications Research Home: wpaul@skynet.ctr.columbia.edu | Columbia University, New York City ============================================================================= "It is not I who am crazy; it is I who am mad!" - Ren Hoek, "Space Madness" ============================================================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 10 9: 0: 6 2000 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 73B8037BA02 for ; Mon, 10 Apr 2000 09:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA90420; Mon, 10 Apr 2000 09:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from FreeBSD.csie.NCTU.edu.tw (freebsd.csie.nctu.edu.tw [140.113.235.250]) by hub.freebsd.org (Postfix) with ESMTP id A95D337B91B for ; Mon, 10 Apr 2000 08:50:36 -0700 (PDT) (envelope-from jdli@FreeBSD.csie.NCTU.edu.tw) Received: (from jdli@localhost) by FreeBSD.csie.NCTU.edu.tw (8.9.3/8.9.0) id XAA08715; Mon, 10 Apr 2000 23:50:27 +0800 (CST) Message-Id: <200004101550.XAA08715@FreeBSD.csie.NCTU.edu.tw> Date: Mon, 10 Apr 2000 23:50:27 +0800 (CST) From: jdli@freebsd.csie.nctu.edu.tw Reply-To: jdli@freebsd.csie.nctu.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/17905: 4.0-STABLE keep on crashing every 3 days Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17905 >Category: kern >Synopsis: 4.0-SNAP keep on crashing every 3 days >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Apr 10 09:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Ryan Jian-Da Li >Release: FreeBSD 4.0-STABLE i386, date Apr 8 >Organization: NCTU CSIE FreeBSD Server >Environment: FreeBSD 4.0-STABLE #3: Sat Apr 8 00:38:48 CST 2000 Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 463553568 Hz CPU: Pentium III/Pentium III Xeon (463.55-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x673 Stepping = 3 Features=0x383f9ff real memory = 402640896 (393204K bytes) avail memory = 388415488 (379312K bytes) Preloaded elf kernel "kernel" at 0xc02cd000. ccd0: Concatenated disk driver Pentium Pro MTRR support enabled npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 isab0: at device 4.0 on pci0 isa0: on isab0 atapci0: port 0xd800-0xd80f at device 4.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 pci0: at 4.2 chip1: port 0xe800-0xe80f at device 4.3 on pci0 fxp0: port 0xd000-0xd01f mem 0xe2800000-0xe28fffff,0xe3800000-0xe3800fff irq 5 at device 9.0 on pci0 fxp0: Ethernet address 00:e0:18:00:7f:6b pci0: at 10.0 irq 12 ahc0: port 0xb800-0xb8ff mem 0xdb800000-0xdb800fff irq 10 at device 11.0 on pci0 ahc0: aic7880 Wide Channel A, SCSI Id=7, 16/255 SCBs amr0: port 0xb400-0xb47f irq 11 at device 12.0 on pci0 amr0: firmware UF80 bios 1.61 64MB memory amrd0: on amr0 amrd0: 34860MB (71393280 sectors) RAID 5 (optimal) amrd1: on amr0 amrd1: 8268MB (16932864 sectors) RAID 5 (optimal) fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: irq 1 on atkbdc0 sc0: on isa0 sc0: VGA <16 virtual consoles, flags=0x200> vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A IP packet filtering initialized, divert enabled, rule-based forwarding enabled, default to accept, unlimited logging ad0: 32634MB [66305/16/63] at ata0-master using UDMA33 Waiting 5 seconds for SCSI devices to settle Mounting root from ufs:/dev/da0s1a da1 at ahc0 bus 0 target 1 lun 0 da1: Fixed Direct Access SCSI-2 device da1: 40.000MB/s transfers (20.000MHz, offset 8, 16bit) da1: 4134MB (8467200 512 byte sectors: 255H 63S/T 527C) da0 at ahc0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-2 device da0: 40.000MB/s transfers (20.000MHz, offset 8, 16bit) da0: 4134MB (8467200 512 byte sectors: 255H 63S/T 527C) >Description: This machine was stable for years, but is experiencing constantly crash every 3 days after upgrading to 4.0-STABLE. This is a heavy-loaded server for all kinds of FreeBSD service. The panic message is "vrele: negative ref cnt", but previous 2 panic messages were both "vdrop: holdcnt". gdb output is followed : GNU gdb 4.18 IdlePTD 3010560 initial pcb at 26eb40 panicstr: vrele: negative ref cnt panic messages: --- panic: vrele: negative ref cnt syncing disks... 43 1 done Uptime: 2d21h6m5s amrd0: still open, can't shutdown dumping to dev #da/0x20001, offset 262168 dump 383 382 381 380 379 ... ... ... ... 5 4 3 2 1 0 --- #0 boot (howto=256) at ../../kern/kern_shutdown.c:304 304 dumppcb.pcb_cr3 = rcr3(); (kgdb) where #0 boot (howto=256) at ../../kern/kern_shutdown.c:304 #1 0xc01504c0 in poweroff_wait (junk=0xc023a7a2, howto=-756391072) at ../../kern/kern_shutdown.c:554 #2 0xc0179966 in vrele (vp=0xd2d46b60) at ../../kern/vfs_subr.c:1445 #3 0xc01f47bc in vm_object_vndeallocate (object=0xd2ea6360) at ../../vm/vm_object.c:278 #4 0xc01f47e0 in vm_object_deallocate (object=0xd2ea6360) at ../../vm/vm_object.c:301 #5 0xc01f2003 in vm_map_entry_delete (map=0xd3b6f700, entry=0xd3bc1ba0) at ../../vm/vm_map.c:1727 #6 0xc01f2185 in vm_map_delete (map=0xd3b6f700, start=672231424, end=672317440) at ../../vm/vm_map.c:1830 #7 0xc01f2212 in vm_map_remove (map=0xd3b6f700, start=672231424, end=672317440) at ../../vm/vm_map.c:1855 #8 0xc01f3d44 in munmap (p=0xd32d5f20, uap=0xd3918f80) at ../../vm/vm_mmap.c:555 #9 0xc021f11a in syscall (frame={tf_fs = 47, tf_es = 47, tf_ds = 136314927, tf_edi = 136367164, tf_esi = 136366632, tf_ebp = 136366596, tf_isp = -745435180, tf_ebx = 134740992, tf_edx = 672231424, tf_ecx = 135438220, tf_eax = 73, tf_trapno = 22, tf_err = 2, tf_eip = 135194692, tf_cs = 31, tf_eflags = 518, tf_esp = 136366576, tf_ss = 47}) at ../../i386/i386/trap.c:1073 #10 0xc0214006 in Xint0x80_syscall () #11 0x8093979 in ?? () #12 0x80a5598 in ?? () #13 0x805abfe in ?? () #14 0x80529ab in ?? () #15 0x8050516 in ?? () #16 0x804fc85 in ?? () #17 0x80d8398 in ?? () #18 0x80d81aa in ?? () #19 0xbfbff968 in ?? () Cannot access memory at address 0x13150274. (kgdb) quit >How-To-Repeat: Keep the machine up for days....and wait. :) >Fix: No idea. >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 Apr 10 9:30: 4 2000 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 5302637B8C3 for ; Mon, 10 Apr 2000 09:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA93878; Mon, 10 Apr 2000 09:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 10 Apr 2000 09:30:02 -0700 (PDT) Message-Id: <200004101630.JAA93878@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: bin/17864: PATCH: sys/resource.h needs sys/time.h for struct timeval Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/17864; it has been noted by GNATS. From: Sheldon Hearn To: Garrett Wollman Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: bin/17864: PATCH: sys/resource.h needs sys/time.h for struct timeval Date: Mon, 10 Apr 2000 18:26:51 +0200 On Sat, 08 Apr 2000 09:10:03 MST, Garrett Wollman wrote: > is a documented prerequisite of : Always? Is gettimeofday(2) wrong, or is this a red herring? Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 10 9:50: 5 2000 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 27E4F37B9A4 for ; Mon, 10 Apr 2000 09:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA96283; Mon, 10 Apr 2000 09:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from sense-sea-MegaSub-1-212.oz.net (sense-alexw-188.oz.net [216.39.149.188]) by hub.freebsd.org (Postfix) with ESMTP id CED1E37B677 for ; Mon, 10 Apr 2000 09:45:14 -0700 (PDT) (envelope-from alex@sense-sea-MegaSub-1-212.oz.net) Received: (from alex@localhost) by sense-sea-MegaSub-1-212.oz.net (8.9.3/8.9.3) id JAA02238; Mon, 10 Apr 2000 09:41:16 -0700 (PDT) (envelope-from alex) Message-Id: <200004101641.JAA02238@sense-sea-MegaSub-1-212.oz.net> Date: Mon, 10 Apr 2000 09:41:16 -0700 (PDT) From: alex wetmore Reply-To: alex@sense-sea-MegaSub-1-212.oz.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: i386/17906: le ethernet device doesn't work in 4.0 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17906 >Category: i386 >Synopsis: le ethernet device doesn't work in 4.0 >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 Apr 10 09:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: alex wetmore >Release: FreeBSD 4.0-RELEASE i386 >Organization: phred.org >Environment: Intel p100, 32megs, Intel 430VX chipset, Tyan motherboard, DEC DEPCA ethernet board that uses le driver. >Description: Migrated from 2.2.7 to 4.0. Built new kernel with this device line for le0 device le0 at isa? port 0x300 irq 11 iomem 0xe0000 If I ifconfig this interface now it will panic the machine. I noticed that le warns about how it is using old kernel interfaces. Since replacement ethernet cards are very inexpensive I just retired this card and replaced it with a Linksys card that uses the dc interface. If someone really wants to get this working contact me and they can have my card. >How-To-Repeat: >Fix: Replace the card >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 Apr 10 10: 0: 8 2000 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 DD42237B7EB for ; Mon, 10 Apr 2000 10:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA97359; Mon, 10 Apr 2000 10:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 10 Apr 2000 10:00:04 -0700 (PDT) Message-Id: <200004101700.KAA97359@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Bill Fumerola Subject: Re: i386/17906: le ethernet device doesn't work in 4.0 Reply-To: Bill Fumerola Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/17906; it has been noted by GNATS. From: Bill Fumerola To: alex wetmore Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: i386/17906: le ethernet device doesn't work in 4.0 Date: Mon, 10 Apr 2000 12:52:28 -0400 On Mon, Apr 10, 2000 at 09:41:16AM -0700, alex wetmore wrote: > Migrated from 2.2.7 to 4.0. > Built new kernel with this device line for le0 > device le0 at isa? port 0x300 irq 11 iomem 0xe0000 > > If I ifconfig this interface now it will panic the machine. The neat thing about panics is that they have messages. When your machine is configuered right, they even have backtraces. Getting this to work obviously isn't important enough to send us those. -- Bill Fumerola - Network Architect Computer Horizons Corp - CVM e-mail: billf@chc-chimes.com / billf@FreeBSD.org Office: 800-252-2421 x128 / Cell: 248-761-7272 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 10 10: 0:15 2000 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 71AEA37B9A4 for ; Mon, 10 Apr 2000 10:00:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA97368; Mon, 10 Apr 2000 10:00:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.cellport.com (mail.cellport.com [205.240.1.197]) by hub.freebsd.org (Postfix) with ESMTP id 3982037BB9D for ; Mon, 10 Apr 2000 09:56:22 -0700 (PDT) (envelope-from durian@cellport.com) Received: from lostwax.cellport.com (lostwax.cellport.com [10.10.11.3]) by mail.cellport.com (8.9.3/8.9.3) with ESMTP id JAA94624 for ; Mon, 10 Apr 2000 09:56:10 -0700 (MST) Received: (from durian@localhost) by lostwax.cellport.com (8.9.3/8.9.3) id KAA01079; Mon, 10 Apr 2000 10:56:10 -0600 (MDT) (envelope-from durian@mail-i.cellport.com) Message-Id: <200004101656.KAA01079@lostwax.cellport.com> Date: Mon, 10 Apr 2000 10:56:10 -0600 (MDT) From: Mike Durian Reply-To: durian@cellport.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/17907: low audio record levels Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17907 >Category: kern >Synopsis: Audio record levels are too low >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 Apr 10 10:00:04 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mike Durian >Release: FreeBSD 4.0-STABLE i386 >Organization: CellPort >Environment: lostwax [~] > cat /dev/sndstat FreeBSD Audio Driver (newpcm) Mar 31 2000 17:44:02 Installed devices: pcm0: at io 0x534 irq 5 drq 1:0 (1p/1r channels duplex) lostwax [~] > mixer Mixer synth is currently set to 0:0 Mixer pcm is currently set to 100:100 Mixer speaker is currently set to 100:100 Mixer line is currently set to 100:100 Mixer mic is currently set to 100:100 Mixer cd is currently set to 75:75 Mixer mix is currently set to 0:0 Mixer igain is currently set to 100:100 Copyright (c) 1992-2000 The FreeBSD Project. Copyright (c) 1982, 1986, 1989, 1991, 1993 The Regents of the University of California. All rights reserved. FreeBSD 4.0-STABLE #1: Fri Mar 31 17:47:19 MST 2000 root@lostwax.cellport.com:/usr/obj/usr/src/sys/LOSTWAX Timecounter "i8254" frequency 1193182 Hz CPU: Pentium II/Pentium II Xeon/Celeron (451.02-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x652 Stepping = 2 Features=0x183f9ff real memory = 134152192 (131008K bytes) avail memory = 127074304 (124096K bytes) Preloaded elf kernel "kernel" at 0xc034f000. Pentium Pro MTRR support enabled md0: Malloc disk npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at 0.0 isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0x10a0-0x10af at device 7.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 uhci0: port 0x1080-0x109f irq 9 at device 7.2 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered chip1: port 0x2180-0x218f at device 7.3 on pci0 xl0: <3Com 3c905B-TX Fast Etherlink XL> port 0x1000-0x107f mem 0xf4000000-0xf400007f irq 11 at device 16.0 on pci0 xl0: Ethernet address: 00:00:39:a1:0a:0e miibus0: on xl0 xlphy0: <3Com internal media interface> on miibus0 xlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto xl0: supplying EUI64: 00:00:39:ff:fe:a1:0a:0e fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: irq 1 on atkbdc0 psm0: irq 12 on atkbdc0 psm0: model Generic PS/2 mouse, device ID 0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: on isa0 sc0: VGA <16 virtual consoles, flags=0x200> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/8 bytes threshold ppi0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port plip0: on ppbus0 pca0 at port 0x40 on isa0 pcm0: at port 0x534-0x537,0x388-0x38b,0x220-0x22f irq 5 drq 1,0 on isa0 unknown0: on isa0 unknown1: at port 0x120-0x127 on isa0 ad0: 8063MB [16383/16/63] at ata0-master using UDMA33 acd0: CDROM at ata1-master using PIO4 Mounting root from ufs:/dev/ad0s3a >Description: I get very low levels when I try to record audio. When I try to record with 16 bit samples (at 8000Hz), most of my samples are < 0x00ff. When I record 8 bit samples my values are +-1. I practically have to put my mouth on the mic to get any sort of deflection. It's almost like we using the MSB for the LSB. >How-To-Repeat: Buy a crappy Toshiba Equium 7100S with a built-in sound chip and give it a try. >Fix: I have no fix. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 10 10:10: 5 2000 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 A6D2F37BBAB for ; Mon, 10 Apr 2000 10:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA98564; Mon, 10 Apr 2000 10:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 10 Apr 2000 10:10:03 -0700 (PDT) Message-Id: <200004101710.KAA98564@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Alexander Langer Subject: Re: i386/17906: le ethernet device doesn't work in 4.0 Reply-To: Alexander Langer Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/17906; it has been noted by GNATS. From: Alexander Langer To: alex wetmore Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: i386/17906: le ethernet device doesn't work in 4.0 Date: Mon, 10 Apr 2000 19:06:39 +0200 Please provide crashdumps (see the handbook, if you don't know how). With this description we can't do much. (please send them in reply to GNATS, not to me) Alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 10 11: 1:16 2000 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 5018137BC2C for ; Mon, 10 Apr 2000 11:00:10 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA04618 for freebsd-bugs@freebsd.org; Mon, 10 Apr 2000 11:00:04 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 10 Apr 2000 11:00:04 -0700 (PDT) Message-Id: <200004101800.LAA04618@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/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/10/01] kern/4673 Two panics, now crash dumps, always in re o [1997/11/24] bin/5139 portmap does not find interfaces correctl o [1997/12/21] kern/5355 Fix for NULLFS problems o [1998/02/03] kern/5641 peter 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 s [1998/05/13] kern/6630 julian [PATCH] Fix for Cyrix I8254 bug o [1998/07/12] kern/7264 gibbs Buslogic BT 950 scsi card not detected o [1998/08/15] kern/7622 Kernel panic with Fatal trap 18. o [1998/09/08] i386/7859 luigi fatal trap 12 in midi_synth_input f [1998/09/14] kern/7927 n_hibma Fatal trap 12: page fault while in kernel o [1998/09/28] kern/8074 se CAM rescan operation fatal o [1998/10/03] gnu/8138 obrien gcc -pipe xxx.s hangs f [1998/10/06] i386/8179 Install failure with motherbord using SIS f [1998/10/08] i386/8214 n_hibma Install 3.0-19981006-BETA fails a [1998/11/08] ports/8609 nectar eklogin service (kerberos klogind) fails f [1998/11/12] i386/8673 bug in vm_page_alloc_contig() o [1998/11/24] bin/8829 bug in innetgr (was: Fix port: security/s f [1998/11/25] kern/8861 n_hibma under heavy (multi interface) traffic ep0 f [1998/12/09] kern/9036 Boot 3.0-Release hangs with BT-445S after a [1999/01/05] kern/9334 n_hibma cp fails for 2048 Bytes/sector media o [1999/01/27] kern/9742 tx driver for smc autodetects fine, but n 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/23] kern/10224 panic: pipeinit: cannot allocate pipe -- s [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/03/01] kern/10332 gibbs System freezes during certain SCSI activi a [1999/03/01] bin/10344 fenner Core dump in gethostbyaddr for 199.93.70. o [1999/03/05] kern/10397 3.1R page fault while in kernel mode, fro o [1999/03/07] misc/10473 Incorrect aout compat libraries in XF8633 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 obrien patch dhcpc problem on /etc/pccard_ether o [1999/03/17] kern/10636 ipfw problems 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 f [1999/03/20] kern/10701 ppbus printing problems o [1999/03/22] ports/10725 stb Wrong Cyrus IMAP deliver group o [1999/03/23] bin/10744 call to login() from aout/libutil.so.2.2 o [1999/03/27] kern/10828 3.1-STABLE freezes when writing to floppy o [1999/03/29] kern/10866 ahc2740 panic o [1999/03/30] kern/10872 Panic in sorecieve() due to NULL mbuf poi o [1999/04/05] kern/10959 3.1-STABLE crashes due to a floppy mount o [1999/04/05] ports/10965 obrien lcc-3.6 unable to compile anything o [1999/04/13] kern/11112 Amanda on FreeBSD can wipe the _next_ tap o [1999/04/17] kern/11196 n_hibma kernel mode page fault o [1999/04/19] kern/11226 Invalid files on disk after fsync o [1999/04/20] kern/11238 Synchronous PPP not functional in leased o [1999/04/20] kern/11241 Install fails after SCSI probe o [1999/04/22] i386/11278 FreeBSD Version 3.1 reboots repeatedly (c o [1999/04/23] i386/11298 Enabling IDE DMA on Opti Viper-M crashes o [1999/04/26] kern/11330 page fault in generic_bzero o [1999/04/26] i386/11349 Error Mounting /dev/wd0s1 on dist during o [1999/04/27] kern/11351 system reboot for error with popper and d o [1999/05/01] kern/11434 can't boot from wd0s2a o [1999/05/04] i386/11488 Error while starting FreeBSD o [1999/05/10] kern/11629 File descriptor table sharing is broken o [1999/05/12] kern/11680 server freezes, all processes stuck in "i o [1999/05/13] i386/11681 gibbs Adaptec 2940 UW SCSI Controller BIOS 1.34 o [1999/05/14] kern/11707 ncr isn't recognized in 3.1-19990512-STAB f [1999/05/17] bin/11744 perllib fails to build o [1999/05/24] kern/11869 wpaul Network hangging due to xl0: tx underrun o [1999/05/31] kern/11966 TCP copies send and receive socket buffer o [1999/06/02] kern/11988 recvmsg with a cmsghdr but no iovec is br o [1999/06/02] kern/11993 panic: getnewbuf: inconsistent EMPTY queu f [1999/06/05] kern/12041 n_hibma Crashes on startup if Zip drive is switch o [1999/06/06] conf/12050 No /sbin/init on fixit flop o [1999/06/07] kern/12072 vm_fault happened in binary file transfer o [1999/06/09] kern/12106 error 6: panic: cannot mount root o [1999/06/10] kern/12127 persistent crash on idle SMP system o [1999/06/15] kern/12233 Fvwm2 causes FreeBSD-current to hang or r o [1999/06/16] kern/12248 CRON in malloc(): warning: pointer to wr o [1999/06/18] i386/12286 Segmentation violation when invoking JNI s [1999/06/23] kern/12367 Writing files larger than floppy capacity o [1999/06/25] misc/12390 Installation hangs during extraction o [1999/06/25] kern/12395 gibbs Buslogic SCSI cards (BT948) time out unde o [1999/06/30] kern/12466 Fast system hangs under high FS load o [1999/07/05] kern/12521 lmbench-1.1's context switching test hang o [1999/07/12] misc/12607 System crashes after boot, portmap endles o [1999/07/13] alpha/12623 alpha Certain valid numeric strings cause a SIG f [1999/07/20] misc/12720 gdbm (And possibly other libraries in /us o [1999/07/21] kern/12730 poll() causes indeterministic program han o [1999/07/21] misc/12743 Cannot boot the 3.2 floppies o [1999/08/02] misc/12923 Installation fails on HP Net Server f [1999/08/04] kern/12980 NetGear Dec 21140AF Ethernet Card unrecog o [1999/08/06] bin/12998 des still inetd junk pointer too low to make o [1999/08/10] i386/13059 imp Install aborts with panic:aha0: Invalid C a [1999/08/20] kern/13270 dillon NFS hangs if written through self-mount o [1999/08/23] alpha/13338 alpha panic: pmap_remove_all: pv_table for 162b o [1999/08/24] kern/13352 No support for Promise Ultra/66 o [1999/08/30] misc/13474 Maximum Number of IPs Permitted in the .. o [1999/09/07] bin/13615 awk corrupts the memory arena when OFMT i o [1999/09/09] alpha/13653 alpha panic: pmap_remove_all: pv_table for 90b6 o [1999/09/12] kern/13709 panic: sched_sync: fsync failed o [1999/09/17] i386/13797 SMP/NFS panics on 3.3-RC o [1999/09/19] i386/13817 system reboot o [1999/09/19] kern/13825 tx0 "holds" packets for long periods, eve o [1999/09/19] i386/13844 keyboard locks up when I page through a m f [1999/09/20] i386/13849 grog dump on vinum r5 freezes system o [1999/09/22] i386/13892 Kern.flp does not boot on Compaq Presario o [1999/09/24] i386/13933 nfs server panics in tulip_rx_intr() o [1999/09/24] kern/13940 Panic with dd on block/"cooked" devices u o [1999/09/24] kern/13944 ATAPI cd-rom not boot to install, nor de o [1999/09/27] misc/13995 Full duplex mode doesn't work right with o [1999/09/28] kern/14028 ATAPI cd-rom not boot to install and can' o [1999/09/28] i386/14030 imp aha0 probe fails 3.3.0-RELEASE install wi o [1999/10/05] kern/14141 3.3-RELEASE crashing often o [1999/10/06] kern/14162 sudden reboot problem ( maybe kernel pani o [1999/10/08] misc/14204 error 6: panic: cannot mout root(2) o [1999/10/10] i386/14256 System doesn't boot under FreeBSD 3.2 o [1999/10/14] kern/14322 mount respects permissions of underlying o [1999/10/15] kern/14347 kdump & truss won't compile because addit o [1999/10/17] i386/14373 Error while booting from floppy disk o [1999/10/24] i386/14492 FreeBSD won't install/work with an Asus S o [1999/10/25] kern/14510 kernel panic while pressing panic o [2000/02/09] i386/16620 4.0-20000208-CURRENT fails to boot on ASU o [2000/02/14] kern/16708 wpaul 3Com 3c900-Combo Ehternet card make kerne o [2000/02/15] kern/16740 The kernel panics with "ffs_clusteralloc: o [2000/02/16] kern/16767 open("/dev/ppi0") will crash machine with o [2000/02/18] i386/16802 An user math program have the system on K o [2000/02/18] kern/16803 Newer Adaptec controllers make system han o [2000/02/19] kern/16828 High Speed Pinging Over 8184 bytes Kills o [2000/02/21] bin/16862 cracauer strptime(..., "%+" ...) dumps core o [2000/02/21] kern/16890 Fatal trap 12: page fault while in kernel o [2000/02/21] misc/16901 cannot boot 3.4 floppies o [2000/02/26] kern/17011 Fatal trap 12 occur, dhclient with BOOTP o [2000/02/28] kern/17067 consistent "make -k buildworld" crash wit o [2000/03/01] kern/17122 crash due to: softdep_disk_write_complete o [2000/03/02] kern/17124 panic: vm_object_deallocate: object deall o [2000/03/03] kern/17148 If keyboard is not attached while booting o [2000/03/03] kern/17152 kernel panic:aio_write o [2000/03/03] kern/17154 need to raise file descriptor limit, its o [2000/03/07] kern/17248 FreeBSD 3.4 won't install on 486/100 IBM o [2000/03/08] ports/17267 dirk new lyx port does not link -- gettext (-l o [2000/03/10] kern/17305 advansys driver time-out around 30 minute o [2000/03/10] kern/17311 bug in the code handling ioctl SIOCGIFCON o [2000/03/12] kern/17339 3.4-R on a K6-2: panic: pmap_release: fre f [2000/03/12] ports/17340 mharo Ports that need Xaw3d won't build o [2000/03/15] i386/17391 rnordier FreeBSD boot loader does not recognize ke o [2000/03/15] i386/17398 Install failure of 4.0-Release via ftp an o [2000/03/15] kern/17400 sos panic: resource_list_alloc when booting o [2000/03/16] ports/17426 ports tkrat2 port broken -- builds, but does no o [2000/03/18] i386/17485 Partition editor completely non-functiona o [2000/03/19] ports/17491 ports Can't get the OpenSSH port to compile und o [2000/03/22] i386/17557 BTX Loader Hardlocks on FIC-SD11 Motherbo o [2000/03/22] i386/17558 ncr1 controller is not working properly i o [2000/03/23] kern/17565 4.0-RELEASE install does not access IDE d o [2000/03/27] kern/17620 jhay Digi/570i sync driver (if_ar.c) causes sy o [2000/03/28] alpha/17642 alpha FreeBSD/alpha 4.0 RELEASE installation fa o [2000/03/28] kern/17643 sos 3.4 to 4.0 upgrade: ATAPI drivers damage s [2000/03/29] bin/17659 billf sysinstall fails to load a.out libraries o [2000/03/29] i386/17661 sos 4.0-REL hangs after detecting ata1 o [2000/03/30] ports/17691 ports mpg123 didn't free memory o [2000/03/31] i386/17712 Some outside networks are unable to resol o [2000/04/03] kern/17776 RAID5 with crashed disk corrupts filesyst o [2000/04/03] i386/17778 4.0-RELEASE will not recognize IDE Contro o [2000/04/04] bin/17791 Restore does not handle bad or missing ta o [2000/04/04] misc/17793 Keyboard not found o [2000/04/04] ports/17806 ports make in ports/net/citrix_ica loops on scr o [2000/04/04] i386/17808 cannot swap /dev/.... o [2000/04/05] kern/17821 Wavelan driver not working in 4.0 o [2000/04/08] kern/17868 no more buffers / can't allocate llinfo w o [2000/04/08] kern/17870 4.0-release consistently crashes a couple o [2000/04/08] kern/17873 brian Can not routing IPV6 packet with tun-devi o [2000/04/09] kern/17881 4.0-RELEASE kern.flp boot crashes upon pr o [2000/04/10] i386/17900 3Com 3C589D and 3CCE589ET doesn't during 211 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- a [1995/03/20] kern/260 davidg msync and munmap don't bother to update m o [1995/10/18] bin/786 wpaul Problem with NIS and large group maps 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 f [1996/08/22] kern/1533 dillon Machine can be panicked by a userland pro o [1996/09/29] kern/1689 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 f [1996/10/21] kern/1856 peter read-only nfs mount: panic leaf should be s [1996/10/26] bin/1892 n_hibma install(1) removes target file s [1996/11/08] gnu/1981 ypserv handles null key incorrectly o [1996/11/18] kern/2053 peter de0 driver don't work at 100M for Compex 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 f [1997/01/09] bin/2430 grog mountd stops on loading if subnet mask is s [1997/02/03] kern/2647 changing existing route to -static crashe 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/15] kern/2742 panic: leaf should be empty f [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/22] kern/2800 DDS large data writing probrem 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/08] kern/2919 vm_fault: fault on nofault entry, addr: f 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/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] kern/3463 netstat -I packet count increase on sl0 w f [1997/05/04] i386/3502 mdodd Merge of if_ix* and if_ie* broke EE/16 su o [1997/05/06] bin/3524 imp rlogin doesn't read $HOSTALIASES for non- o [1997/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/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/18] kern/3899 df while unmounting floppy crashes 2.2.2 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 s [1997/07/06] gnu/4042 gdb stackframe in static library shows no o [1997/07/17] kern/4115 peter SunOS NFS file has wrong owner if creator o [1997/07/26] bin/4176 restore gets confused when run over pipe o [1997/07/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/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/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/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/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/21] kern/4600 peter nfs lookups might give incorrect result 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/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/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/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/15] conf/5062 login.access not evaluated correctly o [1997/11/18] kern/5085 System crash during mount command for CD o [1997/11/23] i386/5128 Adaptec 2940U Timeouts with QUANTUM disk 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 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/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 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/09] bin/5693 asmodai groff -mm or groff -mmm ??? s [1998/02/17] gnu/5767 phantom man leaves partially formatted cat pages o [1998/02/19] kern/5794 Kernel Panic o [1998/02/28] kern/5877 sb_cc counts control data as well as data 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/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/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/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/14] kern/6300 System locks up in SMP mode when accessin 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/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] bin/6577 /bin/sh environment variables not set in 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/25] kern/6751 audio cd play suddenly stops. o [1998/05/25] kern/6755 peter Tulip (if_de) driver buggy in -current s [1998/05/27] misc/6773 [PATCH] tempnam.c security problems s [1998/06/02] bin/6830 make(1) exhibits confusing and non-standa s [1998/06/04] kern/6854 [PATCH] probing brooktree849 capture card 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 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/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 s [1998/07/06] misc/7190 phk "Invalid partition table" after new insta 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/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/30] bin/7446 jdp Dlopen succeed in particular cases, but i s [1998/08/10] kern/7556 sl_compress_init() will fail if called an f [1998/08/10] kern/7557 dillon -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/18] kern/7658 (1) rlogin from some host to the FreeBSD o [1998/08/18] kern/7664 scsiformat reports '0' for all parameters f [1998/08/20] i386/7698 n_hibma scotty/tkined library error 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] 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/09/01] kern/7797 System halted with "panic: pmap_release: o [1998/09/02] i386/7815 probe can't find wdc0 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/10] kern/7880 mount_cd9660 incorrect on multitrack CD-R 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/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 o [1998/09/22] conf/8031 peter [patch] /etc/rc looks for /etc/sendmail.c 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/30] gnu/8099 [patch] some bugs in cpio 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/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/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/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/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 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/24] i386/8435 boot.flp does not give shell prompt after o [1998/10/28] misc/8480 odd Korean timedef(LC_TIME) 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/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/05] kern/8580 Hanging NFS pagein in nfs_bio.c (2.2.7, w o [1998/11/07] kern/8590 kernel incorrectly recognizing Maxtor 11. 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 markm exmh2 has problems with some date formats s [1998/11/09] misc/8623 [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 f [1998/11/12] kern/8669 phantom aio_write() and aio_read() do not work AT o [1998/11/14] bin/8685 sending a SYST by ftp client closes conne o [1998/11/18] bin/8745 wosch 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/23] kern/8824 Incorrect driver unit number in IDE BusMa o [1998/11/24] conf/8854 boot.flp does not probe atapi cdrom o [1998/11/25] bin/8865 syslogd hangs with serial console a [1998/11/28] kern/8875 Patch to allow DMA IDE with generic chips o [1998/11/29] conf/8903 dillon /etc/rc can do NFS mounts before the netw 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/06] kern/8981 this also fixes X crashes and sio silo ov 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/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] kern/9163 [patch] squid does not join a multicast g o [1998/12/27] bin/9214 kldload(8) error messages are inadequate 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/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/9379 pppd does not go through all interfaces l 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/11] bin/9440 obrien amd can't mount filesystems with type:=uf o [1999/01/11] bin/9444 mount_mfs uses lots of swap. o [1999/01/13] kern/9478 support for running a script from kldload 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] bin/9516 ftpd doesn't honor invalid shelll in logi 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/22] docs/9618 asmodai many typos in groff_mm(7) o [1999/01/25] kern/9673 ISO CD-ROM Problem o [1999/01/28] i386/9759 Tar process hangs on buggy tapes o [1999/02/01] kern/9862 system crashes writing to msdos jaz disk o [1999/02/02] kern/9883 MGET()(and variants) return NULL with M_W 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/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/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/10] misc/10009 jdp dlopen will crash when opening some strip o [1999/02/11] kern/10021 MOUNTING A EXT2FS A AFTER MOUNTING AN MSD o [1999/02/11] bin/10031 ypxfr does not work with Solaris master s o [1999/02/13] kern/10066 problem with a X-Window and syscons drive o [1999/02/14] i386/10089 ATAPI tape driver (wst) doesn't handle En o [1999/02/15] kern/10107 interlock situation with exec_map and a p 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/19] conf/10163 init does not start when /var/msgs is a s o [1999/02/23] bin/10230 -T and -B not implemented on filehandles 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/26] kern/10280 Display Adapters (PCI) probed wrong way - 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/02] bin/10353 ypserv gets segmentation violation o [1999/03/03] kern/10381 hlfsd/NFS failure -- directory cached bet 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/07] kern/10466 resume causes crashes if BIOS extmem != R 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/11] bin/10553 syslogd suddenly stopped logging 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] misc/10599 [PATCH included]malloc/free breaks in cer o [1999/03/15] kern/10603 dcs 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] i386/10626 RTC BIOS diagnostic error on install o [1999/03/16] bin/10633 obrien [patch] tcpslice timezone problem and upd o [1999/03/17] i386/10646 Bridge code missing from ed0 driver in 3. o [1999/03/19] kern/10671 setlogin(2) return EINVAL for length of n o [1999/03/20] kern/10698 de driver doesn't work with some tulip bo o [1999/03/23] kern/10747 [PATCH] ipfirewall `deny' rules act as `r o [1999/03/24] bin/10774 sio0 doesn't work well, i belive the prob o [1999/03/24] kern/10778 "ipforward_rt" is not cleared when routin o [1999/03/25] bin/10784 `make aout-to-elf-build' died in /usr/src o [1999/03/25] bin/10785 make aout-to-elf-install died in info tar o [1999/03/25] kern/10789 Second config of kernel doesn't overwrite o [1999/03/27] bin/10821 des getpwent() fails on NIS clients after dro o [1999/03/29] i386/10862 dcs wd.c STILL cannot recognize correct disk o [1999/03/30] kern/10870 eivind Kernel panic when writing to write-protec o [1999/03/30] misc/10879 Cannot build aout binaries under 3.1-RELE o [1999/03/30] bin/10880 Profiler libraries missing o [1999/04/01] bin/10912 /bin/sh: Fix to prevent infinite loops on o [1999/04/03] i386/10928 su reboots the system after one day uptim o [1999/04/03] i386/10935 PCI cards detected twice o [1999/04/04] ports/10946 se kdm 1.1 does not work correctly - XBINDIR o [1999/04/05] i386/10969 kernel fails to compile with ccs0 o [1999/04/06] i386/10983 lnc NIC driver doesn't work o [1999/04/06] bin/10991 lpd hangs system if printer not ready on o [1999/04/07] kern/11004 Quota Issues on SMP o [1999/04/07] bin/11005 `umount -f' does not work if the NFS-serv o [1999/04/08] misc/11024 getpwnam(3) uses incorrect #define to lim o [1999/04/11] kern/11080 fatal trap 18 while trying to mount inval o [1999/04/11] kern/11084 3.1-R kernel trap 12 with interrupts o [1999/04/13] kern/11115 Sockets die in LAST_ACK and FIN_WAIT_1 st o [1999/04/13] bin/11119 NFS quotas fail to report if alternate fi o [1999/04/16] bin/11169 warning: pointer to wrong page in cron(8) o [1999/04/18] i386/11200 AMD PCnet lnc0/lnc1 problem o [1999/04/18] kern/11208 Complete system hang/freeze. No PANIC me o [1999/04/20] bin/11247 fetch doesn't notice FTP error after RETR o [1999/04/21] kern/11255 Fore System ATM Card not working o [1999/04/21] kern/11266 frequent crashes with "Page fault, fatal o [1999/04/22] bin/11283 fetch http-timeout/timestamp bug o [1999/04/23] i386/11291 anic: ffs_alloccg: map corrupted o [1999/04/23] bin/11296 fetch(1) fails to resolve names in http m o [1999/04/26] conf/11336 Broken data sent to printer through devic o [1999/04/28] kern/11366 Filesystem can cause hang/crash in certai o [1999/04/28] conf/11376 NFS mount may be happening too soon in /e o [1999/04/29] bin/11382 generated code using rpcgen with -b optio o [1999/04/29] kern/11385 PCNet/PCI Ethernet adapter works in 3.1-R o [1999/04/29] i386/11395 ghostscript5.50 does not print properly, o [1999/04/30] kern/11405 pwd_mkdb with no tmp space leads to kerne o [1999/05/02] i386/11454 mkdir() and chdir() doesn't check argumen o [1999/05/03] kern/11462 CS network interface driver (for CS89XX b o [1999/05/03] bin/11464 obrien union copies likely broken for alpha egcs o [1999/05/04] kern/11490 yokota VESA+VM86+Splash == unstable system o [1999/05/05] kern/11507 msmith CS89XX (i386/isa/if_cs.c) fails to proper o [1999/05/05] kern/11513 cannot mount CD-ROM: Device not configure o [1999/05/05] misc/11523 3.1-STABLE BRIDGE option does not work o [1999/05/05] misc/11525 [PATCH] Networking patches to increase # o [1999/05/07] gnu/11562 tar verification doesn't work o [1999/05/07] kern/11563 pci_unmap_int doesn't do anything o [1999/05/12] i386/11664 lnc1 NIC fail to work o [1999/05/12] bin/11666 ypserv fails to reply host name resolutio o [1999/05/12] kern/11679 httpd and perl5 processes stuck in "nocha o [1999/05/13] kern/11686 APM: Always "Resume failure" from suspend o [1999/05/13] kern/11692 3.1-stable deadlock o [1999/05/13] kern/11697 dg Disk failure hangs system o [1999/05/14] i386/11720 FreeBSD 2.2.8 can't load fixit disk o [1999/05/18] kern/11766 Can not traceroute through ipnat. o [1999/05/18] i386/11773 yokota mouse works at setup time. Under X it go o [1999/05/19] misc/11778 mpz_get_str() in libgmp leads up to cored o [1999/05/19] misc/11790 boot manager bug f [1999/05/20] misc/11800 gibbs Problem with scsi AHA2940 and sony SDT-20 o [1999/05/20] i386/11801 Remounting CD on IDE CDROM after eject fa o [1999/05/20] kern/11808 read/write mounted write-protected floppi o [1999/05/21] kern/11821 /dev/fd0a hangs on large files, including o [1999/05/23] kern/11867 Sound driver loses interrupts, no sound o [1999/05/28] kern/11911 3.1-R : writing file larger than floppy s o [1999/05/28] kern/11915 access system call says file is readable o [1999/05/28] kern/11919 kldload doesn't return error on loading a o [1999/05/28] kern/11922 missing reentrant interfaces for getpwnam o [1999/05/29] kern/11928 kldload loads kernel modules even if ther o [1999/05/29] kern/11936 wine don't work (SMP) (-STABLE) o [1999/05/29] kern/11937 vm problems after havy memory usage o [1999/05/31] kern/11969 VM_fault with mmap'd CDROM data. o [1999/06/02] i386/11991 fdisk does not assign slices to unused pa o [1999/06/02] bin/11992 /usr/src/sbin/mountd/mountd.c has '#ifdef o [1999/06/04] kern/12022 System clock timewarps o [1999/06/06] bin/12054 explicit -ltermcap after -lncurses causes o [1999/06/06] kern/12062 sa tape driver with Cipher 60M SCSI QIC t o [1999/06/08] bin/12091 syslog packets from a remote machine are o [1999/06/08] kern/12092 vpo driver not working in 3.2-RELEASE o [1999/06/09] kern/12104 Certain cdcontrol commands don't work pro o [1999/06/10] bin/12120 named crashes. o [1999/06/10] gnu/12122 cc hangs on STDIN with -pipe and .s files o [1999/06/12] gnu/12175 gdb crashes with pids > 32736 o [1999/06/13] bin/12191 wcol is trying to allocate a shared memor o [1999/06/15] misc/12221 djpeg halt's freebsd box o [1999/06/16] bin/12242 segmentation fault running /usr/bin/fmt o [1999/06/16] kern/12247 userlevel program let kernel hang o [1999/06/17] kern/12262 pcm sound driver with SB16pnp does not ap o [1999/06/18] bin/12272 The ctype locales print an error message o [1999/06/18] kern/12274 cd mount problem o [1999/06/20] kern/12305 clock() ticks backwards o [1999/06/21] kern/12320 error 6: panic: cannot mount root (2) o [1999/06/22] bin/12349 des 3.2-R inetd doesn't re-read ALL configura s [1999/06/24] kern/12381 bde Bad scheduling in FreeBSD o [1999/06/25] conf/12387 CDROM boot failure on Thinpad 770X, 380ED o [1999/06/25] kern/12394 3.2-RELEASE, rl0 ethernet interface freez o [1999/06/28] kern/12434 signal 11 (core dumped) on mysqld when ma o [1999/06/30] kern/12464 bad reference in struct vm_zone o [1999/07/01] kern/12484 [PATCH] bpf_filter() broken o [1999/07/06] i386/12529 Linksys ether16 NE2000 compat. won't conf o [1999/07/06] bin/12538 getpwuid() NIS UID override fails o [1999/07/07] kern/12551 mks ASIC output is shifted following a short o [1999/07/07] docs/12557 nik There are no man pages for the widely use o [1999/07/09] misc/12577 Can't link code using catopen o [1999/07/13] kern/12632 Panic (trap 18) with Symbios SCSI control o [1999/07/14] misc/12640 Can use 2nd CD-ROM for fixit mode. o [1999/07/15] kern/12646 IGMP reports not sent if no multicast rou o [1999/07/16] gnu/12662 tar verification doesn't work in 3.2-RELE o [1999/07/18] kern/12703 tx0 truncates skip packets o [1999/07/20] bin/12727 billf Game patches from NetBSD o [1999/07/21] conf/12745 diffs to delay start of amd rwhod timed o o [1999/07/21] i386/12749 marcel Bug in link() and all other filename func o [1999/07/22] kern/12758 Adjusting the idle priority of a process o [1999/07/23] i386/12771 lpt hangs and never works again, even aft o [1999/07/24] kern/12800 buffer leak in cluster_wbuild o [1999/07/26] alpha/12821 alpha slib.aq for the 3.2-RELEASE alpha distrib o [1999/07/27] alpha/12832 alpha config -g creates broken Makefile in 3.2- o [1999/07/27] kern/12838 PC-Card ctlr(0) Vadem 365 support seems b o [1999/07/28] misc/12856 installworld over nfs broken (3.2S) o [1999/07/29] kern/12869 panic: softdep_flushfiles: looping o [1999/07/30] kern/12884 Hot to panic FreeBSD-3.2-Release o [1999/08/02] kern/12927 jedgar [PATCH] using BROKEN_KEYBOARD_RESET optio o [1999/08/02] ports/12930 asami libtool create defuct makefiles if PREFIX o [1999/08/03] misc/12938 gethostbyaddr(209.201.116.19) - Bus error o [1999/08/04] kern/12979 Response time continually slows on idle m o [1999/08/05] kern/12991 system queue is cleared when a port or pi o [1999/08/06] kern/12996 ifconf in sys/net/if.c returns larger buf o [1999/08/07] conf/13013 Selecting CDROM as install media doesn't o [1999/08/08] kern/13022 ipfilter is out-of-date o [1999/08/08] misc/13027 sysinstall has no /dev entry for wfd0s4 ( o [1999/08/10] i386/13058 Installation hangs after commit f [1999/08/13] kern/13113 panic related (proberbly) to vnode o [1999/08/14] kern/13141 se Multiple LUN support in NCR driver is bro o [1999/08/14] ports/13145 se kaudioserver runs amok on logout o [1999/08/15] kern/13150 panic: ufs_dirbad: bad dir o [1999/08/15] gnu/13172 Bug in workaround of russian locale & sor o [1999/08/16] kern/13180 panic: ffs_alloccg: map corrupted o [1999/08/17] kern/13198 panic: vm_fault: fault on nofault entry o [1999/08/17] gnu/13200 The assembler chokes on very long operand o [1999/08/18] kern/13234 .../netinet/ip_input.c should include opt o [1999/08/24] bin/13350 make clean in bsd.obj.mk no longer proper o [1999/08/25] misc/13378 Tecra 8000 hangs in UserConfig, cannot co o [1999/08/25] kern/13382 Only 1 parallel port supported if pps ena o [1999/08/25] bin/13383 nectar sys/netinet/in.h violates C++ spec. o [1999/08/26] kern/13405 syslogd get system hang o [1999/08/27] gnu/13427 gdb reports wrong info o [1999/08/28] gnu/13438 objc forward core dump using system cc o [1999/08/29] i386/13452 changing to root device wd0s1a \n error 2 o [1999/08/29] bin/13463 /bin/sh does not handle interrupts correc o [1999/08/30] misc/13470 Old problem re-introduced: TCP sucket buf o [1999/09/01] kern/13517 hang system o [1999/09/05] kern/13587 Voxware MIXER_READ ioctl corrupts memory o [1999/09/06] kern/13593 Problems with FIFO and select o [1999/09/07] kern/13612 gibbs "Timedout SCB handled by another timeout" o [1999/09/07] kern/13630 system halts after npx0 detected on 3.2 i o [1999/09/07] kern/13632 Floppy hangs system o [1999/09/08] kern/13646 Kernel Trap error when booting 3.3-RC ker o [1999/09/09] i386/13655 sysmouse, signal 10 and XF86_S3 o [1999/09/10] bin/13679 ncurses-based programs eat 100% CPU after o [1999/09/10] bin/13691 fenner tcpslice cannot extract over 2GB part of o [1999/09/11] bin/13703 MCNP compilation problem o [1999/09/12] bin/13711 root fs not properly unmounted after shut o [1999/09/12] ports/13714 stb netatalk-1.4b2+asun2.1.3 fails chmod g+s o [1999/09/13] conf/13724 Prevent ".: Out of file descriptors" erro o [1999/09/13] gnu/13729 strip(1) exits with an error on script fi o [1999/09/13] kern/13736 enabling NAT on 3.3RC results in panic sb o [1999/09/13] kern/13740 wrong IP statistics o [1999/09/15] kern/13757 wpaul tl0: adapter check: 180005 mesages keep c o [1999/09/15] i386/13765 memory problem: compilation of emacs dies o [1999/09/15] bin/13768 sh MAKEDEV cdN creates all cd(N-1)-device o [1999/09/16] conf/13775 multi-user boot may hang in NIS environme o [1999/09/16] conf/13785 jkh boot block/manager problem at installatio o [1999/09/17] i386/13787 lnc driver isn't really the lnc driver o [1999/09/18] i386/13811 ide cdrom stops recognizing audio cdroms o [1999/09/19] ports/13839 se kdegraphics11 'make PREFIX' fix, one comp o [1999/09/19] i386/13847 missing support for INT 0x13 extensions i o [1999/09/20] i386/13857 Problem with switching between processes o [1999/09/22] alpha/13912 alpha unaligned access Problem seems to be aff o [1999/09/23] misc/13920 pppd acts differently on 3.3-RELEASE ("mi o [1999/09/24] kern/13941 ncr0: SCSI phase error on GENERIC kernel o [1999/09/26] misc/13978 peter a write to last column bug appears since o [1999/09/26] bin/13980 Parameter expansion pattern removal bug i o [1999/09/27] kern/13997 phk RLIMIT_NPROC works unadequately for jails o [1999/09/28] kern/14026 Many network connections get left in the o [1999/09/28] i386/14027 "disklabel -r -w" on new disk reports "No o [1999/09/28] kern/14033 Data acq process gets stuck in vmopar o [1999/09/30] kern/14060 3.3-STABLE on primary mail server panics o [1999/09/30] bin/14069 Buffer overflow in mail(1) o [1999/09/30] kern/14072 Rebooting in FreeBSD 3.3 wipes out known o [1999/10/01] conf/14075 CDROM not being recognized during certain o [1999/10/02] kern/14096 parallel port -- ppi -- driver broken aft o [1999/10/03] bin/14102 make world -DWANT_AOUT fails in lib/compa o [1999/10/04] misc/14121 resurfaced bug in rmt preventing remote d o [1999/10/04] kern/14123 lnc driver is not working o [1999/10/04] i386/14135 lpt1 nolonger exists after 3.2-RELEASE o [1999/10/05] kern/14144 bad conversions in kern_fork() o [1999/10/07] misc/14178 FreeBSD 3.2 - Calls from CGI scripts, cro o [1999/10/07] kern/14183 grog bridge forwarding corrupted broadcast IP o [1999/10/10] bin/14250 restore(8) can loop if tty goes away or w o [1999/10/10] misc/14254 [Fwd: clock(3) runs backwards! (fwd)] (fw o [1999/10/10] kern/14257 error 6: panic: cannot mount root (2) - d o [1999/10/11] misc/14264 Combination of aio_read(), pthread_cond_w o [1999/10/12] i386/14282 Using FreeBSD 3.* ThinkPad 600E doesn't r o [1999/10/12] kern/14285 dillon NFS client appears to lose data o [1999/10/14] i386/14324 wst OR atapi drivers won't work o [1999/10/14] misc/14326 kerberos4 pam-related breakage in current o [1999/10/14] misc/14327 names used in netdb.h may conflict with n o [1999/10/14] i386/14334 imp AHA-1542A not supported by FreeBSD 3.x (" o [1999/10/15] kern/14354 grog vinum cannot compile for alpha o [1999/10/20] misc/14431 Network Interface Problem o [1999/10/20] bin/14444 enigma command can't decrypt files encryp o [1999/10/21] i386/14446 Doesn't boot on Mobile Celeron o [1999/10/22] kern/14457 SIOCGIFCONF uses too much memory o [1999/10/25] bin/14524 markm PERL 5.005_03 Config.PM on 3.2-STABLE say o [1999/10/25] kern/14536 kernel panic on 64KB block size ufs files o [1999/10/26] kern/14546 SB128PCI work incorrect play wav-files un o [1999/10/26] kern/14549 3C509 broken in 3.3 o [1999/10/27] kern/14566 yokota Non-kernel programs have little/no contro o [1999/10/31] bin/14626 sendmail 8.9.3 bug with aliases in -CURRE o [1999/11/03] i386/14689 waitpid doesn't harvest child process whe o [1999/11/04] kern/14712 root has access to NFS mounted directorie o [1999/11/05] kern/14722 TCP connections hangs in FIN_WAIT_2 for > o [1999/11/05] bin/14729 murray when sysinstall is running as init it sho o [1999/11/07] bin/14782 ypbind can not bind to Solaris NIS master o [1999/11/08] kern/14787 /dev/lpt0 doesn't work unless/until you d f [1999/11/09] kern/14797 Serious locking problem in CURRENT o [1999/11/09] i386/14799 Promise Ultra33 doesn't work o [1999/11/09] i386/14806 if_tun.ko conflicts with built-in tunnel o [1999/11/10] misc/14811 getpwent is not enumerating all entries i o [1999/11/10] kern/14812 de0 driver malfunctions in full-duplex o [1999/11/10] kern/14814 4.0-CURRENT SMP mode causes ep0 slow o [1999/11/11] ports/14826 obrien security/fwtk smapd calls sendmail with w o [1999/11/12] bin/14844 rwhod is remotely crashable o [1999/11/12] kern/14848 Frame Relay support, corrected a [1999/11/12] misc/14856 billf ftp stalls on FreeBSD 3.3 (CDROM) tested o [1999/11/14] kern/14890 ffs_valloc: dup alloc o [1999/11/15] misc/14895 portmap bug (when run with -v flag) o [1999/11/15] kern/14900 3.3-RELEASE panic in pmap_pte_quick() o [1999/11/16] kern/14917 grog DMA doesn't works with ALI ALADDIN M1543/ o [1999/11/16] kern/14918 Write access to write protected media cau o [1999/11/16] bin/14920 install(1) hangs when intalling files sam o [1999/11/16] misc/14932 "more" eating up CPU on users with shell= o [1999/11/17] i386/14946 mjacob rmt - remote magtape protocol o [1999/11/17] kern/14960 Compaq EISA array controller not working o [1999/11/17] kern/14962 PnP doesn't detect AWE64 when PnP modem i o [1999/11/17] misc/14964 Network Interface Configuration Problem a o [1999/11/18] bin/14978 lprm(1) does not kill active daemon if ho o [1999/11/19] kern/14997 NFSv3 open O_EXCL fails to set proper "at o [1999/11/19] misc/15001 'fetch' doesn't work for http when behind o [1999/11/19] i386/15003 3C574 (ep0) reads bogus ethernet address o [1999/11/21] i386/15018 Printingproblem o [1999/11/22] bin/15046 /sbin/dhclient-script ignores resolv.conf o [1999/11/23] i386/15062 i4b stops working after some time o [1999/11/23] bin/15070 vfprintf/cvt/__dtoa race condition in thr o [1999/11/24] i386/15074 Two different panics when running Linux b o [1999/11/24] kern/15075 Intel Etherexpress Pro timeouts when >1 c o [1999/11/24] misc/15080 corrupt tree/subtree on primary ftp serve o [1999/11/24] kern/15086 Borked sscape drivers :) o [1999/11/25] kern/15087 3.3-STABLE panic while starting daemons ( o [1999/11/25] kern/15089 mmap of files from 2K-block device failed s [1999/11/26] bin/15101 joe [PATCH] cdcontrol does not perform bounds f [1999/11/26] ports/15107 green Patch for FreeBSD s/key support in OpenSS o [1999/11/26] misc/15109 problem printing graphic pages o [1999/11/27] ports/15123 rse www/apache13-modssl has PREFIX problems f o [1999/11/28] conf/15150 phantom Taking encoding scheme latin1 into accoun o [1999/11/28] ports/15157 se [PATCH] Environment Botch in KDM o [1999/11/30] misc/15190 crashing while in a multiplatform environ o [1999/11/30] kern/15193 PCCARD ethernet interface not returned by o [1999/12/01] kern/15204 systems panics when ktrace-ing o [1999/12/01] kern/15206 Ethernet driver if_vr.c (VIA Technologies o [1999/12/02] misc/15228 C++ exceptions+threads SIGABRTs. o [1999/12/02] kern/15235 dillon Race conditions in pipe_write causes kern o [1999/12/05] misc/15269 error server timeout downloading small fi o [1999/12/06] i386/15327 Unable to use ISA sound card with AD1816A o [1999/12/07] kern/15345 lkm no longer works after 3.3 o [1999/12/08] i386/15364 Flash Player 4 for Linux has no sound wit o [1999/12/08] kern/15365 Fatal trap 18 (integer divide fault) when o [1999/12/11] kern/15420 3.3-RELEASE Kernel freeze o [1999/12/12] bin/15450 The name of the tagfile is left in the pa o [1999/12/13] i386/15460 Installation with Compaq SMART-2DH Array o [1999/12/13] bin/15471 kris Fix several buffer overflows o [1999/12/13] kern/15475 pppd(8) sets the Source Address field of o [1999/12/14] kern/15478 incorrect utmp/wtmp records update upon c o [1999/12/14] kern/15486 Attempt to write to a "write-prot" floppy o [1999/12/15] kern/15508 disk usage after "strip" is wrong o [1999/12/16] bin/15520 mktime() fails under certain conditions o [1999/12/17] kern/15542 de suddenly stops working o [1999/12/17] ports/15543 hosokawa Samba + DHCP = UNKNOWN HOST NAME o [1999/12/17] i386/15548 Intel EtherExpress Pro/10+: Only 1024 byt o [1999/12/18] i386/15553 Linux Emulation don't emulate accept(2) e o [1999/12/18] kern/15554 malloc fails in OMAGIC programs o [1999/12/20] bin/15581 ftp(1) file completion does not work if s o [1999/12/21] misc/15610 3.4-RELEASE installation hang on aic0 SCS o [1999/12/21] kern/15611 EIDE Large Disk Support, Newfs problem, F o [1999/12/22] i386/15631 3.4 won't install with IBM 37.5 gb disks o [1999/12/23] misc/15662 markm [PATCH] perl5 Sys::Hostname fails if no P o [1999/12/26] kern/15707 dillon bad trap in mprotect o [1999/12/29] conf/15766 My desktop display is too large, I can´t o [1999/12/29] ports/15768 jfitz Majordomo resend prog allow exec of any p o [2000/01/01] kern/15825 dillon Softupdates gets behind, runs the system o [2000/01/01] bin/15829 peter cvs -C not_a_number core dumps o [2000/01/02] i386/15845 Driver for RealTek 8029 o [2000/01/03] misc/15869 3.4-STABLE-20000103 install fails to disk o [2000/01/03] kern/15870 PicoBSD Kernel link fails a [2000/01/03] bin/15872 sheldonh Y2k bug in at(1) o [2000/01/03] bin/15877 Perl 5.00503 interpreter crashes with a s o [2000/01/04] i386/15879 System hangs while watching the tv and ap o [2000/01/04] gnu/15892 NFS-exported ext2 file system makes Linux o [2000/01/04] i386/15897 Any fix for rpc.lockd on Free BSD 3.2 nfs o [2000/01/05] ports/15922 chuckr print/a2ps cannot find ogonkfied fonts [p o [2000/01/05] bin/15924 ndc restart don't preserve start options o [2000/01/06] conf/15943 An exact fix to change timezone informati o [2000/01/07] i386/15961 System allows no keyboard input after flo o [2000/01/09] kern/16013 FreeBSD 3.3 sends ICMP reply to IP unicas o [2000/01/09] bin/16014 New cvs in -stable prints consistent erro o [2000/01/10] kern/16040 Read-only files under NFS are not seen as o [2000/01/11] misc/16068 FreeBSD 3.3 with IDE > 32GB causes Panic: o [2000/01/12] kern/16090 No buffer space available o [2000/01/12] i386/16094 FreeBSD-3.4 #1 CD doesn't boot on ATAPI C o [2000/01/13] misc/16102 root's home directory is too open o [2000/01/14] kern/16122 Incorrect SysV SHM segment accounting by o [2000/01/15] i386/16132 FreeBSD doesn't install on Notebook w/ Sy o [2000/01/16] kern/16143 3C589D (PCMCIA) card not recognized durin o [2000/01/17] kern/16153 no more parallel port zip drive o [2000/01/17] misc/16154 modem ring kills freebsd o [2000/01/17] bin/16155 cp -p does not preserve modification time o [2000/01/17] misc/16162 marcel shared /usr/src isn't because .depend fi o [2000/01/17] i386/16164 "vga"/"sc" don't work when a video card i o [2000/01/18] kern/16171 mmap(2) of /dev/kmem cause kernel panic o [2000/01/18] bin/16186 [PATCH] Insecure use of strncpy() and str o [2000/01/18] misc/16197 Installation problems on IBM Thinkpad 365 o [2000/01/19] i386/16214 Driver for Intel EtherExpress 16 is unrel o [2000/01/20] misc/16238 e-bones has a Y2K bug o [2000/01/20] kern/16239 dillon NFS mount file system from multi-homed re o [2000/01/20] bin/16244 [PATCH] don't allow password re-use when o [2000/01/21] kern/16257 Kernel panic in sbdrop o [2000/01/21] i386/16269 smp dosen't work with >2 cpus on AMI Goli o [2000/01/21] bin/16271 vi has wrong len type in re_tag_conv() o [2000/01/22] kern/16299 nfs.ko can be unloaded when nfsd is runni o [2000/01/23] kern/16318 Fix for wrong interface when adding new r o [2000/01/23] alpha/16319 alpha No trailing newline in /usr/src/lib/libc/ o [2000/01/24] ports/16341 obrien Fix for minicom detecting modem status li o [2000/01/24] bin/16342 Problems with krb_realmofhost() and/or kr o [2000/01/24] ports/16343 reg bsd.port.mk cannot override make.conf. o [2000/01/25] ports/16344 se wine needs USE_BISON on 4.0 current o [2000/01/25] i386/16349 Intel EtherExpress Pro/10+ card detection o [2000/01/25] bin/16353 rlogin encryption is broken on transmit s f [2000/01/25] bin/16359 kris Can't build apache13-modssl with included o [2000/01/26] conf/16394 Users of some printers find that lpt0 mal o [2000/01/27] ports/16396 reg libtool -export-symbols doesn't restrict o [2000/01/27] ports/16410 torstenb ssh and x forwarding problem o [2000/01/27] kern/16416 Hang on boot with SMP Dell 2400 o [2000/01/27] bin/16418 davidn pw usermod is not work properly o [2000/01/28] misc/16423 Installation problem of 3.4-RELEASE using o [2000/01/30] gnu/16481 Cpp crashes frequently o [2000/01/30] i386/16482 IDE disk fails on secondary IDE master de o [2000/01/31] ports/16489 reg Can't build mozilla on 3.4-RELEASE f [2000/01/31] kern/16490 Attempted listing of just-mounted ext2fs o [2000/01/31] i386/16495 Period soft disk errors o [2000/02/05] ports/16505 jfitz Update p5-Tk port to 800.018 o [2000/02/06] kern/16515 Deadlock by ntpd f [2000/02/07] bin/16557 kris rsa.h missing from /usr/include/openssl o [2000/02/08] bin/16578 host-name field is hexadecimal instead of o [2000/02/08] docs/16585 doc no info documentation for nm (binutils) i o [2000/02/08] conf/16586 net if down after fail during install o [2000/02/08] kern/16587 cg Can't record with newpcm & CS4236 (AW35/P o [2000/02/09] kern/16598 xmcd stopped by racd0c ioctl error while o [2000/02/09] kern/16605 samba 2.0.6 under 3.4-RELEASE can't open o [2000/02/09] ports/16621 marcel emulators/linux_base needs to be installe o [2000/02/10] kern/16644 Bad comparsion expression in bpf_filter.c o [2000/02/10] bin/16645 Inetd(8) internal ident won't work with m o [2000/02/13] ports/16699 stb astro/setiathome obsolete o [2000/02/16] ports/16766 billf htdig RUN_DEPENDS on ${PREFIX}/share/apac o [2000/02/16] i386/16770 Can't build a.out binaries o [2000/02/18] bin/16812 level 0 dump runs forever -- generates a o [2000/02/18] kern/16816 vop_stdpoll() in /sys/kern/vfs_default.c o [2000/02/19] ports/16829 ports kaffe port is broken - dumps core with al o [2000/02/20] conf/16832 amd.map options won't play with Solaris N o [2000/02/20] kern/16849 Close on an ide tape drive hangs o [2000/02/20] misc/16860 suggetion on installation process. o [2000/02/21] conf/16879 tanimura Sound drivers seem to be using shared irq o [2000/02/21] ports/16882 obrien Memory leak with g++ 2.8.1 and STL 2.8.1. o [2000/02/21] bin/16892 "domain" directive in /etc/resolv.conf no o [2000/02/22] ports/16910 rse apache13-modssl fails o [2000/02/22] bin/16920 cdcontrol fails under 4.0-20000214-CURREN o [2000/02/23] kern/16937 ie0 not probed in -current of 2000-02-18 o [2000/02/23] i386/16946 marcel ServerSockets are not working properly in o [2000/02/23] conf/16948 Sysinstall/disklabel: bad partition table o [2000/02/23] ports/16955 markm 'pgp5' built with ports/security/pgp5 doe o [2000/02/25] ports/16983 ache procmail port not prefix clean o [2000/02/27] kern/17033 Samsung SN-124 ATAPI CD-ROM not supported o [2000/02/28] ports/17038 erich gimp-1.1.17 fatal error at startup... o [2000/02/28] bin/17056 rshd does improper home directory check o [2000/03/01] ports/17096 will Can't build kdevelop port o [2000/03/01] misc/17108 SecureRPC not supported in mount_nfs comm o [2000/03/01] misc/17113 Adaptec SlimSCSI 1460D Not Detected Under o [2000/03/01] conf/17117 Dial-up problems when using Kppp o [2000/03/02] kern/17128 Fix for quotas grace time when using chow o [2000/03/02] bin/17134 problem with 3.0-RELEASE cron forgetting o [2000/03/03] kern/17142 4.0-CURRENT hangs in ex_isa_identify() wh o [2000/03/03] kern/17146 panic in devfs_open() while mounting devi o [2000/03/03] ports/17150 dburr textproc/yodl port fixed/improved o [2000/03/03] kern/17153 mjacob Qlogic Ultra3 cards seem to write very sl o [2000/03/04] bin/17188 make(1) option to reproduce original -V b o [2000/03/05] kern/17208 3.4 Lock-up during file-completion o [2000/03/06] i386/17228 Installation floppies hang up on Compaq A o [2000/03/06] misc/17235 endless loop? harddrive corrupted? o [2000/03/06] ports/17237 hosokawa in samba suite smbclient -M worked incorr a [2000/03/07] bin/17261 sheldonh man page of crontab(5) does not document o [2000/03/08] i386/17266 cannot install 3.2 on L440GX+ o [2000/03/10] misc/17310 NIS host name resolving may loop forever o [2000/03/10] ports/17312 sumikawa Problem With OpenSSH Build On FreeBSD Sta o [2000/03/11] ports/17313 ache wu-ftpd ports install invalid file owners o [2000/03/11] ports/17314 hosokawa in samba: testparm incorrectly generate w o [2000/03/12] bin/17338 netstat shows down counting UDP delivery o [2000/03/12] ports/17344 ports devel/boehm-gc fails for www/w3m 3.4 STAB o [2000/03/12] i386/17346 APIC cannot be enabled without turning on o [2000/03/13] bin/17360 [PATCH] Cleanup bug in pam_ssh o [2000/03/13] bin/17366 jasone sendfile() has no pthreads wrapper o [2000/03/14] bin/17371 murray sysinstall's mediaSetHTTP does not work u o [2000/03/14] misc/17373 libXThrStub missing in 4.0-20000307-CURRE o [2000/03/14] i386/17374 Archive QIC02 tape-unit device randomly h o [2000/03/14] kern/17375 yokota kldload/unload cycles with syscons screen o [2000/03/15] kern/17393 kldload syscall allows the same kernel mo o [2000/03/15] ports/17397 ports New port: sysutils/slay o [2000/03/15] ports/17401 ports exmh2 can't find slocal of nmh o [2000/03/15] ports/17402 ports latex2html requires pnmtopng binary o [2000/03/16] kern/17403 cg CS4232 wont play w/newpcm o [2000/03/16] ports/17404 ports Apache's build fails due to the version n o [2000/03/16] conf/17406 nis in /etc/host.conf breaks network prog o [2000/03/16] misc/17409 4.0-RELEASE install fails on Compaq 1850R o [2000/03/16] alpha/17410 alpha Bad tag on Alpha boot floppies o [2000/03/16] kern/17422 4.0-STABLE: top: nlist failed o [2000/03/16] i386/17423 System hangs then reboots o [2000/03/17] gnu/17433 libobjc locks mutex before deallocating i o [2000/03/17] misc/17435 There's no DES crypto distribution in 4.0 o [2000/03/17] bin/17437 jasone pthread_atfork() missing from libc_r o [2000/03/17] kern/17439 sos 4.0-STABLE: mount of non-fixated CD-R -> o [2000/03/17] ports/17444 jseger Builing of ImageMagick Fails on X4.0 a [2000/03/18] bin/17476 sheldonh uudecode -i (no overwrite) flag bogus o [2000/03/18] bin/17482 ftpd(8) forget to close TCP port in passi o [2000/03/19] kern/17492 There is a bug in SIOCGIFCONF ioctl code o [2000/03/19] kern/17494 Two problems with the tun device o [2000/03/19] kern/17499 grog Can't revive VINUM RAID5 o [2000/03/20] ports/17503 obrien lsof port doesn't build on FreeBSD 5.0 o [2000/03/20] kern/17504 ken Another Micropolis Synchronize Cache Prob f [2000/03/20] misc/17517 wpaul 100/10baseT card resets under load o [2000/03/20] docs/17518 imp Please update the UPDATING document f [2000/03/21] i386/17526 PB of frequency heuristic in uipc_socket. o [2000/03/21] conf/17540 NIS host lookups cause NFS mounts to wedg o [2000/03/21] kern/17542 cg random static with GUS PnP s [2000/03/22] ports/17561 green openssh (scp) fails with files larger tha o [2000/03/23] misc/17567 make buildworld bombing at KerbIV o [2000/03/23] ports/17575 jasone unable to build linuxthreads o [2000/03/24] kern/17583 julian NETATALK code can corrupt mbuf free lists o [2000/03/24] misc/17584 groudier fatal SCSI error with a Symbios 53c875 co o [2000/03/24] kern/17592 sos ata READ/WRITE command timeouts o [2000/03/25] ports/17599 ports x11-toolkit/tk82 port ignores local CFLAG o [2000/03/25] kern/17601 semenu newbus patch for if_tx o [2000/03/26] kern/17605 matcd driver worked on 3.x but doesn't wo o [2000/03/26] ports/17612 taoka x11-fonts/intlfonts crashes X (Big5 encod o [2000/03/26] kern/17613 impossible to build FS KLD without kernel o [2000/03/26] kern/17614 marcel impossible to CURSIG when compiling with o [2000/03/26] misc/17615 ¼±ÐèÁ˽âFreeBSSDÖеÄrc.conf,rc.firewallÎÄ o [2000/03/27] kern/17621 ache Locale is not used properly o [2000/03/27] i386/17626 green sshd cores when I scp to it o [2000/03/28] kern/17634 cg Non-deterministic PnP sound device config o [2000/03/28] kern/17636 FreeBSD 4 uses network card driver dc whe s [2000/03/28] alpha/17637 billf misconfigured syscons bell causes panic o o [2000/03/28] ports/17650 dirk apache+php-1.3.12+3.0.15 doesn't build: p o [2000/03/28] ports/17652 stb netatalk port modification for des/md5 ch o [2000/03/28] ports/17654 ports gnome broken o [2000/03/29] i386/17662 gibbs cam_xpt.c incorrectly disables tagged que o [2000/03/29] kern/17680 Multiple crashes due to load in 4.0/5.0 e o [2000/03/29] bin/17681 sheldonh XDR does not handle 64bit data types corr o [2000/03/30] kern/17695 cg Vibra16X sound card doesn't record audio o [2000/03/30] ports/17696 jseger tk83 port ignores the local CFLAGS settin o [2000/03/30] kern/17697 Boot floppy+local ftp upgrade from 3.4/in o [2000/03/30] ports/17705 reg www/mozilla broken o [2000/03/31] i386/17713 gibbs MAKEDEV and /stand/sysinstall goofups wit o [2000/03/31] kern/17714 possible priority inversion with use of i o [2000/03/31] kern/17715 io memory requests from pnp devices lands o [2000/04/01] ports/17736 ports Postgres port should be updated to 7.0bet o [2000/04/01] kern/17738 reboot after panic: softdep_lock: locking o [2000/04/01] kern/17746 sos afd0 is accessed for no reason a couple o o [2000/04/02] i386/17752 dcs Cannot install BTX boot manager o [2000/04/02] i386/17755 FTP install of 4.0 allocates too few inod o [2000/04/02] kern/17757 jasone select returns 0 if pthread_kill'd w/ sig o [2000/04/02] i386/17761 disk label editor in 4.0 deleted 3.4 part o [2000/04/03] bin/17765 sh in free(): warning: junk pointer, too o [2000/04/03] ports/17773 ports Driver patched to work with latest MySQL o [2000/04/03] kern/17779 ADIC 1200d (DAT changer) and Symbios SCSI o [2000/04/03] kern/17782 PC Card recognition w/ PCIC and no IRQ o [2000/04/04] i386/17800 bde [PATCH] problem with statclock initializa o [2000/04/05] kern/17815 The ethernet in the D-Link DSB-H4E is not o [2000/04/06] conf/17826 phantom Ukrainian locale is broken o [2000/04/06] pending/17828gnats-adminUpdate port: audio/timidity++-emacs o [2000/04/06] kern/17829 The dc driver is seriously broken o [2000/04/06] misc/17832 Enlightenment gives Segmentation fault o [2000/04/06] alpha/17833 alpha dc driver for embedded ethernet on Miata o [2000/04/06] ports/17835 ports www/apache-jserv: put jar-files in share/ o [2000/04/06] kern/17839 ad driver and SMP kernel panic (vinum may o [2000/04/07] bin/17841 ttyp0 (and only 0!) produces stdout input o [2000/04/07] kern/17842 Erratic user time reports for long runnin o [2000/04/07] bin/17843 ftpd fails to set cwd with mode 700 NFS m o [2000/04/07] kern/17844 Amd wedges every morning since I've upgra o [2000/04/07] ports/17846 knu new ports collection of MUA(Mail User Age o [2000/04/07] bin/17847 mv symbolic link cross partition fails o [2000/04/07] kern/17858 pnp isa ed device problem on 4.0-RELEASE o [2000/04/08] ports/17863 ports Running DAP reboots computer o [2000/04/08] conf/17865 example ppp filters to keep NetBIOS from o [2000/04/08] kern/17866 vr0 hung up o [2000/04/08] bin/17867 wall does not report time zone [PATCH] o [2000/04/08] kern/17871 starting to accumulate undeletable direct o [2000/04/09] kern/17878 Jail user can change priority of outside o [2000/04/09] bin/17879 moused -E default value is unusable o [2000/04/09] i386/17883 4.0-RELEASE panics during install. o [2000/04/09] i386/17890 sos Still having trouble identifying disk geo o [2000/04/10] kern/17895 stale unix domain connections o [2000/04/10] ports/17898 ports Patch to new version of healthd o [2000/04/10] ports/17899 ports lang/guile build failing o [2000/04/10] kern/17905 4.0-SNAP keep on crashing every 3 days 847 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/05/13] bin/401 Add REMOTE_* variables s [1995/06/15] bin/517 Bad group change with 'install' 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 o [1995/11/30] bin/854 dg swapinfo shows incorrect information for a [1996/01/30] bin/981 fenner clnt_broadcast() is not aware of aliases s [1996/03/20] kern/1090 iostat displays incorrect sps count s [1996/03/20] bin/1093 route's diagnostic is weird s [1996/06/11] bin/1312 automounter hangs on boot s [1996/06/13] bin/1320 dump limits blocksize to 32K a [1996/07/07] bin/1375 eivind Extraneous warning from mv(1) [PATCH] o [1996/07/24] misc/1428 hoek ncurses doesn't always display ALTCHARSET 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/10/13] misc/1791 tegge syslimits.h does not allow overriding def o [1996/10/20] bin/1849 gdb sets library breakpoints on the wrong s [1996/10/24] bin/1881 file(1) misidentifies Sun3/m68k executabl 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 f [1996/11/28] bin/2119 [PATCH] mount lies to child about argv0, s [1996/12/02] bin/2137 vm statistics are bad 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/27] kern/2298 Support for DSR/DCD swapping on serial po a [1996/12/27] misc/2302 brandon new crypt() including SHS and an extendab o [1997/01/10] bin/2442 davidn setusershell()/endusershell() missing o [1997/01/26] i386/2598 mdodd 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/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/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/03/03] kern/2857 DE500 board exhibits capture effect o [1997/03/03] kern/2865 peter NFS client hangs on umount, ls, df when N o [1997/03/06] bin/2898 fenner arp -a -n buglet o [1997/03/10] bin/2934 sh(1) has problems with $ENV o [1997/03/10] bin/2938 hoek Add -b, -l, and -f options to du(1) o [1997/03/31] gnu/3157 obrien Patches to gas and gdb to support MMX ext o [1997/04/07] bin/3221 rpc.rusersd : can't communicate with SunO o [1997/04/07] misc/3225 [PATCH] uucpd.c should normalize host nam o [1997/04/08] misc/3237 SCRIPTS addition to bsd.prog.mk o [1997/04/09] bin/3242 incorrect prototype for initgroups 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 a [1997/05/08] gnu/3552 the -L option of tar does not work proper o [1997/05/12] kern/3584 luigi cleanup TCP_REASS macro in tcp_input.c 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 s [1997/05/22] kern/3667 [PATCH] make vn LKM'able. 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/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/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/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] i386/3962 print disk internal cache size during pro o [1997/06/27] kern/3968 Hardware probes die on Peak SBCs. o [1997/07/07] kern/4051 pppd connect 'chat ...' broken 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/24] bin/4157 [PATCH] netstat atalk output should print f [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/04] conf/4229 Ethernet interface unreachable on bootup o [1997/08/06] bin/4238 sheldonh 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 o [1997/08/12] misc/4285 SDL RISCom/N2 (ISA) 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/29] kern/4413 No way to unmount a floppy that goes bad o [1997/08/29] bin/4419 man can display the same man page twice o [1997/08/29] bin/4420 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/13] kern/4528 processes hang if the mount_portal proces o [1997/09/14] bin/4545 f77 will only call `cc', no com-line opti s [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/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/04] bin/4688 peter sys/utsname.h SYS_NMLN 32 too small 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/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/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/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/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/5040 Support for "SCSI-0" devices 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] kern/5110 kernel crash & core in pmap_testbit durin o [1997/11/23] bin/5134 cdcontrol will eject a mounted CDROM 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/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 dillon silo overflows running o [1998/01/02] bin/5410 phantom 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] bin/5444 [PATCH] ypserv uses wrong dns lookup orde o [1998/01/11] bin/5483 Login(1) clears utmp entry o [1998/01/15] kern/5502 nfsd process usage doesn't get accounted o [1998/01/18] kern/5517 Recursive NULLFS mount causes ufs_ihashge 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/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/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/18] i386/5784 ibcs2 emulation not handling ioctl(..FION 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. 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/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/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/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/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/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/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/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 o [1998/04/06] bin/6234 ypserv -d is broken 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 s [1998/04/15] bin/6314 [PATCH] /usr/sbin/ac modification 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. o [1998/04/17] bin/6332 bde /usr/include/time.h doesn't compile with o [1998/04/17] gnu/6338 Gnu tar not working properly with the -G o [1998/04/18] conf/6346 Kernel version strings need to relate to o [1998/04/20] bin/6359 routed does sent router discovry solicita s [1998/04/20] bin/6371 [PATCH?] fetch(1) uses HTTP_PROXY for ftp a [1998/04/27] kern/6432 IFF_NOARP does not affect ethernet interf o [1998/04/30] kern/6464 tcpdump doesn't recognize tun0 when it's o [1998/05/03] kern/6495 Need pci_unmap_mem and pci_unmap_port rou s [1998/05/04] bin/6509 [ALMOST PATCH] Allow dd to seek/skip to o s [1998/05/05] bin/6521 [MAYBE PATCH] "rmdir -p x/y/z/" fails 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/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 s [1998/05/16] bin/6658 [PATCH] -stable getcwd(3) performs unnece s [1998/05/17] kern/6668 [PATCH] new driver: Virtual Ethernet driv 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/06/01] ports/6815 torstenb ssh lookup ignores second IP address 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/13] misc/6936 phk sysinstall: install from MS-DOS MO divece 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 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] 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/25] docs/7065 wosch FreeBSD webpages -> applications, port br 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/07/01] bin/7136 kerberized telnetd doesn't use gettytab % s [1998/07/02] kern/7146 The PCCARD doesnt recognize cards in top 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 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/14] kern/7282 some old and rarely used drivers have app o [1998/07/15] bin/7287 Incorrect domain name for MAP_UPDATE in m o [1998/07/16] bin/7298 Improvements to ln(1). a [1998/07/19] bin/7324 wosch Suggestions for minor modifications to ad f [1998/07/23] kern/7377 we have a new digiboard driver supporting a [1998/07/31] docs/7456 asmodai dialog(3) man page outdated s [1998/08/09] kern/7546 [PATCH] [STABLE ?]shutdown -p - system po f [1998/08/12] kern/7589 Tulip Driver parses SROM contents wrong f [1998/08/13] conf/7606 [PATCH] NIS Makefile.dist: NOPUSH replace o [1998/08/14] kern/7619 odd nfs server not responding messages ap o [1998/08/16] ports/7628 dburr new port: sajber-jukebox f [1998/08/16] i386/7633 panic: page fault on install with boot.fl s [1998/08/18] bin/7669 libalias does not IRC DCC packets under c o [1998/08/19] gnu/7687 description of default baud rate for cu c o [1998/08/20] kern/7693 Misleading warning in cblock_alloc_cblock o [1998/08/22] kern/7722 Changes to acct format o [1998/08/23] bin/7728 ftpd processes hang o [1998/08/27] bin/7753 arp command fails silently on invalid pro 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] bin/7786 quota.h has superfluous semicolon in macr o [1998/09/02] i386/7816 dfr [Patch] NE2000 PnP card IDs to sys/i386/i o [1998/09/03] bin/7826 ls(1) knows too much about format of strf o [1998/09/03] bin/7828 Add a command line option to cp to make i o [1998/09/05] kern/7837 patches to add a p_auth extension pointer 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] docs/7873 doc poor initial configuration and documentat o [1998/09/11] bin/7895 multiple identical NFS mounts accepted o [1998/09/11] kern/7903 unmatched '{}' blocks. 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/19] kern/7990 patch - teach kernel about RB_POWEROFF fl 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/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 o [1998/09/29] bin/8084 NIT: non-working code in rshd 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 a [1998/10/06] bin/8163 [patch] It is impossible to assign quotas o [1998/10/08] bin/8211 Script to search kernel for an address o [1998/10/12] bin/8295 order of options in printcap causes some o [1998/10/13] conf/8303 3.0-981009-BETA can't make swap device on 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] kern/8349 [PATCH] Changer definition for SureStore o [1998/10/19] kern/8376 CLOCK_VIRTUAL not implemented o [1998/10/19] misc/8378 Is termcap not maintained enough ? o [1998/10/22] kern/8420 __getcwd() from an (forcibly) unmounted f 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/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 jkh Murphy's Laws o [1998/11/01] conf/8531 jkh sysinstall on 3.0-RELEASE (and 3.0-curren o [1998/11/03] bin/8553 /usr/libexec/mail.local doesn't handle "> o [1998/11/04] i386/8571 Bug in config utility in FreeBSD 2.2.6-RE 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] kern/8604 ps u gets confused about process start ti o [1998/11/08] kern/8605 ipsec for ipv4, new version 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 s [1998/11/12] kern/8661 stb sys/netatalk/at_control.c needs to correc o [1998/11/12] bin/8666 X blocks serial port with getty process o 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/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 dwhite some suggested text for describing passwo 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/25] ports/8864 ports useradd - system V compatible implementat o [1998/11/27] i386/8867 /stand/sysinstall core dumps (signal 11) 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/30] bin/8913 negative time values for csh 'time' built 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/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/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/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 a [1998/12/12] bin/9064 n_hibma [PATCH] propose adding `direct' option in 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/20] kern/9144 luigi acd driver inconsistency (byte order in C o [1998/12/21] conf/9160 /etc/services file corruption 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] bin/9188 telnet gets stuck in ttydrain() 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] bin/9226 telnetd can log wrong IP address to utmp 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] bin/9250 [PATCH] allow fetch to do ftp directory l 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/03] ports/9286 andreas Patch for games/nethack-qt to fix compila o [1999/01/03] ports/9289 kris New Port - ASPostit (Dockable version of 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] docs/9352 asmodai wrong macro names in groff_[ms|mm|mmse].7 f [1999/01/07] bin/9374 roberto Improved functionality for find(1) 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/13] bin/9470 aout-to-elf-build broken with kerberosIV- 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/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] bin/9569 top(1) ignores tty EOF condition. o [1999/01/19] kern/9570 ed(4) irq config enhancement o [1999/01/19] bin/9573 ksrvtgt not working o [1999/01/20] kern/9590 Clean up for -Wall warnings o [1999/01/21] kern/9611 MFS calculates the size incorrectly when o [1999/01/22] kern/9619 Restarting mountd kills existing mounts o [1999/01/25] kern/9679 fix for uninterruptible open in portal fi o [1999/01/25] kern/9689 panic in sbdrop(kern/uipc_socket2.c) o [1999/01/26] bin/9711 Fails: cd /usr/bin; gzip file ; mv file. o [1999/01/27] i386/9721 Patch for FreeBSD netboot (booting via DO o [1999/01/28] kern/9748 error in queue handling of at_shutdown() o [1999/01/28] bin/9770 An openpty(3) auxiliary program o [1999/01/29] i386/9777 luigi Generic AD1816 sound suport in Luigi's pc 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/9809 finger output format wrong o [1999/01/31] ports/9840 asami patch allows ports to fetch their sources o [1999/01/31] kern/9848 ARP proxyall extra sanity check o [1999/02/01] bin/9868 Patch to add "date -a" o [1999/02/01] kern/9869 When using macros out of function, they s o [1999/02/01] conf/9874 idle-timeout facilities in /etc/login.con o [1999/02/03] bin/9902 error in german (and some other) locale s o [1999/02/06] bin/9931 config gives misleading error when duplic o [1999/02/08] bin/9972 groff always built for US (letter) sized o [1999/02/09] bin/9990 Enhancement to filename completeion in cs o [1999/02/09] i386/9991 new driver for National Instruments GPIB f [1999/02/10] ports/10007 ade New port: lang/mercury (the mercury compi o [1999/02/11] ports/10023 kris New port - net/gtkcookie o [1999/02/11] bin/10030 markm Kerberized telnet fails to encrypt when a o [1999/02/12] i386/10052 Matrox Millennium II AGP device/model id o [1999/02/15] gnu/10112 chris /usr/src/gnu/usr.bin/patch sorely out of o [1999/02/16] kern/10116 acd driver patch to support PD/CD drive. f [1999/02/16] ports/10124 ports New port: math/stat o [1999/02/18] kern/10149 New PCI device 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/10162 se Fix kdmrc to add qmail usernames to NoUse o [1999/02/19] misc/10167 Upon exiting X11R6, monitor goes blank. 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/21] ports/10178 torstenb USE_SOCKS=YES option broken for security/ a [1999/02/23] misc/10231 inet_addr() doesn't check for illegal val o [1999/02/25] docs/10240 doc We need a script which check if our web m o [1999/02/25] kern/10255 Some more SiS chipset PCI IDs for chipset o [1999/02/26] bin/10274 make does not understand "lib(obj)" synta o [1999/02/26] bin/10283 Race condition in rc.network o [1999/02/28] bin/10300 dmesg exits on signal 10 o [1999/03/01] misc/10325 Implementation of itoa() for libc o [1999/03/01] bin/10342 putenv(3) unnecessarily calls strdup/free o [1999/03/01] docs/10349 phantom For long .Dt fields, rendering is broken- o [1999/03/02] misc/10351 /usr/share/examples/worm is out of date o [1999/03/02] bin/10358 ftp(1) has problems with long pathnames f [1999/03/05] ports/10396 asami SPIN is in the wrong category 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] ports/10454 obrien Update: emulators/spim a [1999/03/06] kern/10455 pcaudio breakage f [1999/03/07] i386/10465 Must disable ex0 to install. 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] bin/10538 sbin/nos-tun gives wrong usage message o [1999/03/11] bin/10548 More useful default ifconfig behaviour sa o [1999/03/12] kern/10563 QIC 40/80 tape drive ft present in versio o [1999/03/13] kern/10574 3.1-stable kernel reports k6 cpu as "\^E" 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/15] bin/10601 wosch Ownership of symlinks copied by adduser a 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 o [1999/03/16] i386/10623 DFLTPHYS in /usr/src/sys/i386/include/par s [1999/03/16] ports/10634 ade Update the hylafax port to do a client in 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/18] bin/10657 Unable to install from CDROM or DOS parti o [1999/03/18] kern/10663 hpscan doesn't like 3.1's pt device 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] kern/10673 wpaul Non-ASCII chars on serial console with Re o [1999/03/19] kern/10678 Printing problems using ppc bus o [1999/03/19] ports/10682 asami List mirror sites in MASTER_SITE_BACKUP - o [1999/03/23] kern/10755 de driver says `invalid EESPROM checksum' o [1999/03/23] i386/10766 obsolete device name wcd is still left un o [1999/03/24] i386/10779 zp slot 0 sees 3Com 589 PCMCIA card but z o [1999/03/25] bin/10793 cvs update modification time check granul o [1999/03/26] misc/10803 joe whois(1) client enchancements a [1999/03/26] misc/10804 joe whois(1) enhancement o [1999/03/26] kern/10812 LINT configuration MAXDSIZ/DFLDSIZ mislea o [1999/03/27] bin/10825 daily script not executed or executed twi f [1999/03/28] ports/10844 deischen New port: adagdb o [1999/03/29] bin/10856 vty's from ttyvc - ttvf (maybe more?) do o [1999/03/30] bin/10868 BUG in /usr/bin/calendar o [1999/03/30] misc/10871 wst0 fails with Sony SuperStation streami o [1999/03/30] bin/10878 host(1) dumps core o [1999/03/31] kern/10894 wrong error message in svctcp_create() o [1999/04/01] bin/10905 sa(8) is hard coded for 8 character user o [1999/04/01] gnu/10910 Integration of Objective C patches into g o [1999/04/02] bin/10924 Extensions to biff(1) o [1999/04/03] bin/10931 biff b o [1999/04/06] bin/10980 With ctags -x no space is left between na o [1999/04/07] docs/10997 doc Problem with query-pr-summary.cgi o [1999/04/07] i386/11006 Sysinstall silently makes FreeBSD's parti o [1999/04/08] kern/11020 popen does not honor ISO 9899 syntax o [1999/04/08] bin/11031 [PATCH] mount and umount support for mort o [1999/04/08] bin/11032 h2ph's cpp #warning/#error directive proc o [1999/04/08] bin/11036 markm Perl does not honor -DNOMAN o [1999/04/08] bin/11037 Gencat doesn't properly handle \ddd octal o [1999/04/09] ports/11048 obrien variable not initialized in fwtk-lib lead o [1999/04/09] bin/11051 ps's -U option should accept a list of us o [1999/04/09] misc/11052 [PATCH] performance bug fix to fgets() ro o [1999/04/10] conf/11058 Recent change to rc script causes hang on o [1999/04/11] bin/11085 Per-host configuration for syslog.conf o [1999/04/11] bin/11092 readlink(1) from OpenBSD o [1999/04/11] bin/11094 lastlogin.8 from NetBSD o [1999/04/13] misc/11111 Error opening terminal: su o [1999/04/13] bin/11114 make(1) does not work as documented with o [1999/04/13] misc/11126 vt100 termcap entry appears broken o [1999/04/14] ports/11134 hoek existense of /usr/obj/usr/ports/shells/ba o [1999/04/14] bin/11141 u_long is not big enough o [1999/04/16] i386/11165 IBCS2 don't work correctly with PID_MAX 9 o [1999/04/16] bin/11168 pw(8) usermod does not recognize -w flag o [1999/04/18] bin/11205 Suggestion: move mt(1) to /bin o [1999/04/18] i386/11207 sys/i386/isa/rp.c: fixed breaking and war o [1999/04/20] kern/11235 Need to submit new driver o [1999/04/20] bin/11236 mountd fails to properly check for kernel o [1999/04/20] conf/11243 mountd startup can lose flags o [1999/04/20] bin/11248 Shuffle o [1999/04/22] kern/11287 rfork(RFMEM...) doesn't share LDTs set by o [1999/04/23] kern/11293 brian FreeBSD's PPP implementation of LQM appea o [1999/04/23] bin/11294 direct logging to other hosts (no local s o [1999/04/27] bin/11360 Allow specification of "search" in resolv o [1999/04/28] kern/11365 plip in Linux mode has trouble with some o [1999/04/28] bin/11370 more segfaults if you give it a real file o [1999/04/29] bin/11387 mount_cd9660 doesn't show rockridge filen f [1999/04/29] ports/11388 torstenb patch for ircII so /window create works o [1999/04/29] bin/11399 Calendar doesn't always handle 'last' day o [1999/04/30] kern/11410 code typo in ad1848.c: the != operator ha o [1999/04/30] kern/11411 code typo in clones.c: "if ((mpu_config = o [1999/04/30] kern/11412 code typo in ip_fil.c: missing NULL check o [1999/04/30] kern/11413 code typo in pci.c: the != operator has h o [1999/04/30] kern/11414 code typo in pcf.c: the != operator has h o [1999/04/30] kern/11415 code typo in wst.c: the != operator has h o [1999/04/30] kern/11416 code typo in sequencer.c: "if (!processed o [1999/05/02] misc/11448 Better looking VGA font for iso2 o [1999/05/03] misc/11478 Non-functional AFS support in KerberosIV o [1999/05/05] kern/11516 NetGear 10/100 Ethernet 21140-based Ether o [1999/05/05] kern/11517 ../../kern/kern_ntptime.c:533: warning: i o [1999/05/05] kern/11518 ../../pci/if_tx.c:1376: warning: no previ o [1999/05/05] kern/11519 dead code in ncr driver o [1999/05/06] bin/11552 sendmail local delivery (mail.local) can' o [1999/05/06] misc/11553 /usr/share/misc/latin1 (new file submissi o [1999/05/09] bin/11608 vnconfig not supporting swap-backed vn de o [1999/05/09] bin/11609 vnconfig -v reports page numbers, not byt s [1999/05/09] ports/11611 billf Update port: net/ntop o [1999/05/10] bin/11623 quot uses 32-bit integers for its calcula o [1999/05/10] conf/11626 /var/log/kerberos is rotated o [1999/05/10] bin/11637 build of kdump fails o [1999/05/12] bin/11669 gcc 2.7.2.1 gets bad magic error linking o [1999/05/12] bin/11671 "vidfont -r" fails, asking for font size o [1999/05/12] i386/11674 can't do make imake build or anything sin o [1999/05/12] kern/11676 PCIless kernel will not compile with ATAP o [1999/05/13] i386/11683 olpt/nlpt name change not in man pages o [1999/05/13] misc/11689 Change "netstat" mode in daily "status-ne o [1999/05/17] bin/11746 Add support for Solaris mailboxes o [1999/05/18] kern/11765 performance bug: network devices fxp & de o [1999/05/18] misc/11767 sppp does not implement VJ compression o [1999/05/19] kern/11789 ELF machine definition missing for ARM o [1999/05/21] bin/11818 Added a feature to ping(8) o [1999/05/21] ports/11820 asami bsd.port.subdir.mk does not define the `m o [1999/05/21] i386/11829 Boot Failure (Register Dump) with MFSroot o [1999/05/22] misc/11838 xwindows configuration problem o [1999/05/24] kern/11881 when a dummynet pipe is encountered it st o [1999/05/25] misc/11890 make world creates /lkm directory o [1999/05/26] bin/11896 cap_mkdb dumps core when non-files passe o [1999/05/26] i386/11898 Connot wirte to floppy on HP OB800CT with o [1999/05/26] bin/11900 Sed(1) fails with MALLOC_OPTIONS set to ' o [1999/05/28] bin/11914 makewhatis during installworld uses /usr/ o [1999/05/28] i386/11920 FBSD 3.2 upgrade claims not to upgrade /u o [1999/05/28] i386/11921 /usr/X11R6/lib/aout libraries screwed up o [1999/05/29] conf/11925 rc.conf cosmetic naming inconsistencies o [1999/05/29] bin/11929 symorder doesn't work on elf format objec o [1999/05/29] kern/11941 FreeBSD box reboots itself when changing o [1999/05/30] kern/11945 tape problems on -stable, mt bl(ocksize), o [1999/05/31] kern/11968 kldload should call module entry point be o [1999/06/01] i386/11979 Vaio 505DX touchpad not detected as Glide o [1999/06/01] kern/11981 brian access to tunN devices not allowed to non o [1999/06/02] conf/11989 pppd(8) output misplaced o [1999/06/03] kern/12014 Fix SysV Semaphore handling o [1999/06/05] misc/12044 having tcl.h in /usr/local/include:/usr/i o [1999/06/06] gnu/12046 markm Perl subsystem does not install all tutor a [1999/06/06] bin/12052 sh type builtin appends first path compon o [1999/06/07] kern/12071 [PATCH] large scale IP aliasing o [1999/06/08] i386/12088 Enhancement to ed driver for Linksys 10/1 o [1999/06/09] kern/12095 [PATCH] Buggy ATAPI Zip Drive is not dete o [1999/06/09] bin/12107 Add switch to dump to support multiple du o [1999/06/10] i386/12113 ESS1688 support for VoxWare sound driver o [1999/06/10] bin/12115 pppd reports wrong connected duration wit o [1999/06/13] ports/12188 ports New port: pbs-2.1.11 (misc/PBS) a batch s o [1999/06/15] misc/12228 phantom /etc/security don't search in all the fil o [1999/06/16] gnu/12238 bc 1.04 crashes with long formula typed i o [1999/06/16] bin/12244 realpath() fails when there is no permiss o [1999/06/17] bin/12255 BIND 8.1.2 compilation error in IPv6 capa o [1999/06/17] bin/12263 hoek "more" problems with long filenames o [1999/06/18] bin/12280 jdp LD_IGNORE_MISSING_OBJECTS not honored for o [1999/06/18] kern/12281 active-filter option in pppd doesn't stop o [1999/06/20] bin/12308 LPD can't be told not to bind to a TCP po o [1999/06/21] conf/12324 jkh Sysinstall's fdisk partition editor is mi o [1999/06/21] ports/12325 asami Adds refetch functionallity to bsd.port.m o [1999/06/21] i386/12326 wdc flag 0x1000 (LBA addressing) prevents o [1999/06/21] kern/12333 ProAudio Spectrum sound card broken model o [1999/06/21] kern/12334 Some ProAudio SPectrum cards do not do DM o [1999/06/21] kern/12335 if_pn.c lacks bridging support; patch enc o [1999/06/22] conf/12342 /etc/hosts.allow must use numerical IP ad o [1999/06/22] bin/12357 [PATCH] allow route to create "proxy only o [1999/06/23] bin/12358 ken Patch: "camcontrol help" should go to std o [1999/06/23] bin/12375 mv(1) cannot inherit the file flags. o [1999/06/24] i386/12383 make release warns about /dev entries mak o [1999/06/26] bin/12398 fsck in free(): warning: pointer to wrong o [1999/06/27] kern/12409 add some more chipset models by NVidia to o [1999/06/27] bin/12421 sysinstall label fails o [1999/06/28] conf/12432 empty amd_flags causes start failure in r o [1999/06/30] bin/12461 it's handy to be able to send syslog mess o [1999/07/01] bin/12477 New fortune o [1999/07/02] docs/12486 mpp listing of (56) utilities in /bin:/sbin:/ o [1999/07/02] bin/12489 /sbin/route exits with 0 on some errors o [1999/07/03] kern/12495 3.1 install fails to detect Toshiba CDROM o [1999/07/05] ports/12518 ports New port: ifmail-os-2.14.7 o [1999/07/05] bin/12528 [PATCH] tip's "tipout" child doesn't alwa o [1999/07/06] kern/12543 dg [PATCH] cumulative error counters for fxp o [1999/07/07] bin/12545 kldload(8) should be more sensitive to er o [1999/07/07] ports/12548 asami New 'fecth-recursive(-list)' targets in p o [1999/07/12] kern/12609 At boottime NFS mounts on a 3.2 client fr s [1999/07/12] bin/12611 sheldonh /usr/bin/jot crashes with floating point o [1999/07/12] misc/12612 ncurses ash shipped with 3.2-R missing sy o [1999/07/13] misc/12633 CMI8330 chip based integrated sound card o [1999/07/15] kern/12655 Kernel config file needs more commenting o [1999/07/16] kern/12668 The kernel clock goes slow with PLIP devi o [1999/07/18] kern/12697 Out of swap handling [PATCH] o [1999/07/20] bin/12712 release/Makefile: mounting /some/dir with o [1999/07/20] kern/12723 imp Unnecessary use of magic numbers in F_[SG o [1999/07/22] kern/12764 luigi Patch for using x11amp with voxware (stol o [1999/07/22] misc/12765 cable problem: link down for de0 NICs. o [1999/07/23] misc/12776 Add PAM hooks to rlogind and rshd f [1999/07/23] bin/12782 roberto xntpd doesn't handle interface aliases pr o [1999/07/24] bin/12789 Confusing error msg when dumping a filesy s [1999/07/25] bin/12801 sheldonh nvi infinite recursion with options "left o [1999/07/25] kern/12803 obrien patch to make xe driver's noise configura o [1999/07/25] bin/12806 `sh -e' doesn't parse multi-command lines o [1999/07/27] kern/12833 Support for TI1225 PCI to CardBus Bridge o [1999/07/28] kern/12855 panic:softdep_flushfiles:looping, caused a [1999/07/28] bin/12866 sheldonh [PATCH] RFE for /bin/ls to add a -n optio o [1999/07/30] misc/12887 Problem with "top" command in SMP o [1999/07/30] misc/12888 strange kernel messages when copying file o [1999/07/31] kern/12896 Incorrect CPU model display at boot time o [1999/07/31] bin/12898 Added a command-line switch to netstat to o [1999/08/03] bin/12939 add flag to quota to suppress NFS quota c o [1999/08/03] bin/12942 m4: len(`') returns `' a [1999/08/03] kern/12943 dg fxp driver not completely compatible with o [1999/08/03] bin/12946 top(1) gives incorrect delay default o [1999/08/04] ports/12952 asami make _PORT_USE touch cookies by variable, o [1999/08/04] bin/12957 rpc.rusersd dumps core with signal 11 whe o [1999/08/04] bin/12960 des basename(3) and dirname(3) o [1999/08/04] bin/12962 des basename(3) and dirname(3) part 2 o [1999/08/04] kern/12966 receiver lockups in vr0 driver o [1999/08/05] bin/12982 last does not support -y option. o [1999/08/05] misc/12983 system hang accessing mounted msdos flopp o [1999/08/05] i386/12993 gibbs "ahc0: Data Parity Error Detected during o [1999/08/06] bin/13000 vi core dumped o [1999/08/06] ports/13006 erich update emulators/x48 to 0.4.1d o [1999/08/07] conf/13016 Wrong sendmail.cf file used by mergemaste o [1999/08/07] docs/13020 mpp Manpage capitalization o [1999/08/08] docs/13034 peter incorrect (old/obsolete) manpage for name o [1999/08/08] misc/13036 de doesn't work with DEC 21143 based PCI o [1999/08/09] bin/13042 make doesn't handle wildcards in subdirec o [1999/08/09] bin/13043 minigzip -c option support. o [1999/08/09] i386/13051 after installation on system using COM1, o [1999/08/10] kern/13062 lnc ethernet xmit underflow problem o [1999/08/11] bin/13068 billf Don't stamp out score files! o [1999/08/11] bin/13072 billf Extensions to biff(1) o [1999/08/11] bin/13073 billf Extensions to mesg(1) o [1999/08/11] docs/13079 mpp new man page describing timeradd() family o [1999/08/11] kern/13082 dfr Improved support for NE2000 PnP cards o [1999/08/12] bin/13092 des Fetch doesn't default to the correct http o [1999/08/12] bin/13108 authunix_create_default includes egid twi o [1999/08/13] docs/13116 phantom typo in ms(7) o [1999/08/13] bin/13128 billf pkg_delete doesn't handle absolute pathna o [1999/08/15] kern/13161 alfred mounting on top of a mounted file system o [1999/08/15] kern/13164 kthread_exit stops, but doesn't release p o [1999/08/15] ports/13167 torstenb [PATCH] security/ssh package keygen fails o [1999/08/15] i386/13171 "config" not quite right for kernel not n f [1999/08/16] ports/13173 ade New port: yiff-0.33 o [1999/08/16] misc/13185 "tengo problemas con el pop3" o [1999/08/17] ports/13191 ports New port: fire-1.0 o [1999/08/17] kern/13209 IPFILTER_DEFAULT_BLOCK not in /usr/src/sy o [1999/08/17] docs/13211 chris [LIST] Some man pages has references to n o [1999/08/18] docs/13218 mpp Many manpages still not conformed mdoc(7) o [1999/08/18] kern/13220 mkdep: compile failed - ../../pci/if_de.c o [1999/08/18] kern/13232 panic("rtfree"); when sending bootp reque o [1999/08/18] ports/13251 ports New port: founts-11 s [1999/08/19] kern/13252 niced jobs don't behave really nice o [1999/08/19] bin/13254 yp_all error messages have wrong text o [1999/08/20] misc/13266 Removal of #defines and addition of const o [1999/08/20] bin/13278 rogue: killed by fire corrupts score file o [1999/08/20] misc/13282 partial compliance of dlopen to the Singl f [1999/08/21] ports/13291 ade New port: xap-xwf-0.7.8 o [1999/08/21] bin/13309 Fixes to nos-tun o [1999/08/22] misc/13326 additional timeval interfaces for 512MB o [1999/09/21] ports/13887 taoka New port (fmirror) o [1999/09/22] misc/13895 nonexistent words in /usr/share/dict/web2 o [1999/09/22] ports/13898 obrien New port: misc/dictd o [1999/09/22] conf/13907 dummynet.4 correction, rc addition of o [1999/09/23] conf/13916 mpp man outputs footer only page as first pag o [1999/09/23] conf/13918 Termcap entries for VESA modes missing o [1999/09/23] gnu/13921 awk -v var=val coredump o [1999/09/23] kern/13924 sb/snd driver broken under 4.0-19990918-C o [1999/09/24] i386/13936 No clear indictaion of how much space to o [1999/09/25] docs/13950 doc webpage idea o [1999/09/25] docs/13967 doc FreeBSD Related Publications in Korea o [1999/09/26] kern/13979 [PATCH] add serial number to IDE HD probe o [1999/09/26] gnu/13989 SIGWINCH corrupts the display of a multil o [1999/09/27] kern/14006 pas2_pcm.c pcm playback problem, with fix o [1999/09/29] docs/14035 doc tzfile.h referenced in tzfile(5) doesn't o [1999/09/29] bin/14040 amd has wrong uname data compile in it o [1999/09/30] i386/14048 ``doscmd -r'' doesn't work o [1999/09/30] ports/14070 ports New port: devel/crossgo32-f77 o [1999/09/30] i386/14071 FreeBSD 3.3 Installation CD does not boot o [1999/10/01] ports/14077 peter Multicast not available on multicast enab o [1999/10/01] bin/14078 -stable 'make release' does not work on - o [1999/10/01] ports/14079 ports ssh2 port won't install if automake is in f [1999/10/01] kern/14083 gibbs CAM 3.3-RELEASE fails boot w/2940UW + non o [1999/10/02] kern/14087 dcs update sys/boot/ficl/softwords/softcore.a o [1999/10/02] ports/14088 ports port of new fvwm 2.3 beta (2.3.8) o [1999/10/03] misc/14104 DISTFILES name clash between release/Make o [1999/10/04] docs/14129 phantom gated(8) and htable(8) as referenced in r o [1999/10/05] bin/14142 sendmail: mci.c: bad pointer conversion i o [1999/10/05] bin/14151 Patch: date(1): merge in OpenBSD enhancem o [1999/10/06] docs/14158 doc md5(1) manpage should not claim the md5 a o [1999/10/06] docs/14165 nbm FDP introduction article o [1999/10/06] kern/14166 roger AVER TVPhone o [1999/10/06] bin/14171 joe [PATCH] create symbolic links using mtree o [1999/10/07] bin/14175 route for ip aliasing o [1999/10/07] ports/14182 asami Patch: bsd.port.mk: add plist target f [1999/10/07] ports/14185 ports ports/x11-wm/fvwm2 updated from 2.2.2 to o [1999/10/07] alpha/14200 alpha kldstat command has formatting problems o o [1999/10/08] kern/14217 [PATCH] EXT2FS as a KLD o [1999/10/09] ports/14225 markm Patches for security/pgp5 o [1999/10/09] kern/14240 compilation error: __cmpdi2 unresolved o [1999/10/09] bin/14246 kvm_open and kvm_openfiles not works corr o [1999/10/10] bin/14255 rup and rusers could not deal with many h o [1999/10/11] misc/14258 IP_TOS and IP_TTL sockopt doesn't work on o [1999/10/11] ports/14260 ports New port: WODA - A Web Oriented Database o [1999/10/11] misc/14263 phantom There ara no ukrainian locale in stable/c o [1999/10/11] i386/14266 vfsload() looks in /lkm, not /modules o [1999/10/11] misc/14269 NIS passwd and group maps do not clean ou o [1999/10/11] misc/14273 Somewhat bogus entry in termcap o [1999/10/12] conf/14297 [Patch] pccard.conf for corega Ether PCC- o [1999/10/13] ports/14316 markm exmh not recognizing mh and uses too many o [1999/10/13] bin/14317 jkh sysintall: instructions to reboot don't m o [1999/10/13] bin/14318 jkh sysinstall upon install has some counter- o [1999/10/14] ports/14323 markm [PATCH] ports/security/pgp5: Invoked with o [1999/10/14] bin/14330 peter [PATCH] fix clash between /usr/src/contri o [1999/10/14] bin/14335 peter Manual page for ndc gives incorrect path o [1999/10/14] bin/14342 [PATCH] Speed ups for regex! o [1999/10/15] kern/14346 Both pccard/cardinfo.h and sys/memrange.h o [1999/10/15] kern/14350 Security enhancement to ICMP o [1999/10/15] kern/14355 perhaps a guard page needed for UP-mode k o [1999/10/16] bin/14361 locate bogusly converts to network byte o o [1999/10/17] kern/14380 [PATCH] if_de workaround for when BIOS do o [1999/10/18] kern/14394 kernel panic when asking help in visual u o [1999/10/18] i386/14396 Floppy install of 3.2-release, 3.3-releas o [1999/10/20] i386/14437 MFC'ed identcpu.c o [1999/10/20] i386/14438 additional CPUID bit definitions for iden o [1999/10/20] i386/14440 update to identcpu.c to "support" AMD K7' o [1999/10/21] bin/14448 ftp-client may not recognize failure, rep f [1999/10/23] docs/14460 jhb Fix broken links in the FAQ f [1999/10/23] conf/14463 phantom cvs pserver does not work with out-of-the f [1999/10/23] conf/14487 phantom Please Change "/usr/share/skel/dot.login" o [1999/10/23] misc/14488 kget doesn´t write the key word "enable" o [1999/10/24] ports/14499 torstenb update port irc/ircII to 4.4L o [1999/10/24] kern/14504 Framing Error on FreeBSD Laptop o [1999/10/25] misc/14511 chapss Y2K problem o [1999/10/25] ports/14515 ports New Port: Tripwire 1.3 o [1999/10/25] conf/14522 dhclient incorrectly reads and sets hostn o [1999/10/25] docs/14530 phantom Printed manual pages have extraneous blan o [1999/10/25] docs/14532 doc Much of cam_cdbparse(3) prints in Courier o [1999/10/25] bin/14533 pccardd improperly assigns irqs o [1999/10/25] bin/14534 mpp Formatting man pages gives numeric expres o [1999/10/26] bin/14545 quota reports in K, but header says 'bloc a [1999/10/27] kern/14561 ken ioctl (fd, CDIOCEJECT, (void*) 0) doesn't s [1999/10/27] kern/14562 ken ioctl() codes should be provided for ejec o [1999/10/27] docs/14563 doc Wrong manpage produced by `man 4 fd' o [1999/10/27] docs/14565 doc ioctl() codes for device type `fd' (flopp o [1999/10/27] i386/14574 ISA based ESS1688 support(partially) for o [1999/10/28] kern/14584 Proposition for improved file permissions s [1999/10/29] kern/14590 kernel panic writing to floppy o [1999/10/29] misc/14599 pam_kerberosIV.so in the 'krb.??' package o [1999/10/29] kern/14602 struct utsname fields are allocated too s o [1999/10/31] kern/14639 convert proc.p_peers to a queue(3) LIST o [1999/11/01] ports/14643 ports New port: chinese/pyDict A Chinese/Engli o [1999/11/01] kern/14646 kern.boottime affected by APM suspend/res o [1999/11/01] bin/14648 markm `make world' now requires -DNOCRYPT in my o [1999/11/01] ports/14652 se update emulators/wine to 991031 (supersed o [1999/11/02] gnu/14664 tar checks for volno-file even if it shou o [1999/11/02] docs/14677 chris listing of (48) utilities in /bin:/sbin:/ o [1999/11/03] docs/14682 doc lprm(1) unaware of lp(1) Environment Vari f [1999/11/03] ports/14686 ade New port: pisces IIB (Category: cad) o [1999/11/03] bin/14697 grog Exploitable buffer overflow in Vinum (Fre o [1999/11/04] conf/14714 phantom Need support for imap4 and pop3 in /etc/p o [1999/11/06] misc/14746 xf86config shell script leaves arrow keys o [1999/11/07] kern/14778 sio.c doesn't recognize USR model 3090 IS o [1999/11/08] ports/14783 jmz mgetty 1.1.12 always sets clocal o [1999/11/08] bin/14786 tail breaks on large files o [1999/11/08] conf/14791 Optionally change the behaviour of fsck u o [1999/11/08] i386/14793 more fdisk partition types o [1999/11/09] i386/14800 FreeBSD BootMgr not configurable (or at l o [1999/11/10] conf/14810 [PATCH] initialising multiple interfaces o [1999/11/10] i386/14816 lnc(4) can work with Am79C937 a [1999/11/10] bin/14817 strptime(3) '%C' conversion incorrect o [1999/11/11] ports/14822 jfitz majordomo sets group-writable dir's o [1999/11/11] ports/14824 wosch no '\0' at the end of buffer o [1999/11/11] bin/14829 rc.shutdown is handled unconsistently by o [1999/11/12] kern/14839 RELENG_2_2 boot kernel is large size prob o [1999/11/12] kern/14840 Opti930 doesn't work. o [1999/11/12] kern/14841 adrian IEEE 802 encapsulation for arp on etherne o [1999/11/12] ports/14854 peter port comms/conserver partially ignores ${ o [1999/11/13] conf/14864 I can not get dual Boot to boot FreeBSD f o [1999/11/14] misc/14868 Freebsd 3.2-REL with 1 ISA PNP and 1 PCI o [1999/11/14] ports/14889 se [PATCH] dynamic loading for WINE port o [1999/11/14] i386/14891 New smbus driver lmsmb o [1999/11/15] bin/14911 Install of opiekey missing links to otp-m o [1999/11/16] ports/14922 will New port: net/infobot o [1999/11/16] ports/14924 markm p5-Apache-Radius with mod_perl broken on o [1999/11/16] bin/14925 getsubopt isn't poisonous enough o [1999/11/16] conf/14931 rc logging facility o [1999/11/16] ports/14933 imp Simple patch to log password attempts on o [1999/11/17] bin/14954 search.h is missing o [1999/11/17] ports/14965 wosch stat port doesn't know fifo file type o [1999/11/17] kern/14968 wollman Convert resource_head and resource.r_link o [1999/11/17] ports/14970 peter conserver-7.4 port submission o [1999/11/18] conf/14973 Digi-multiport serial card? o [1999/11/18] conf/14974 In RELENG_3, fdisk reports sizes incorrec o [1999/11/18] ports/14977 peter conserver doesn't support speed over than o [1999/11/18] ports/14986 torstenb possible bug in ssh1 o [1999/11/18] ports/14991 ports New port: devel/tcl-trf Tcl Data transfo o [1999/11/19] misc/14993 Freebsd Locks up when trying to set the h o [1999/11/19] misc/14999 phantom ISO8859-5 locale missing from RELENG_3 o [1999/11/19] misc/15000 ftp(1) needs to send HTTP/1.1 Host: heade o [1999/11/20] conf/15010 "client" firewall configuration kills inc o [1999/11/21] ports/15021 asami some port installs fail for non-root user o [1999/11/21] kern/15022 mjacob Suggestion for enhancement: move isp firm o [1999/11/21] ports/15035 jseger [Tcl/Tk] apply plus patch to Tcl/Tk8.2 o [1999/11/21] conf/15038 jkh In sysinstall, easy to not notice that se o [1999/11/23] kern/15065 fsck can't fix "huge" zero length files o [1999/11/25] kern/15095 TCP's advertised window is not scaled imm o [1999/11/27] i386/15119 pcm sound driver dma problems with isa-pn o [1999/11/28] ports/15142 jmz Added DIST_SUBDIR to print/tex port o [1999/11/28] ports/15147 ports New port: audio/xsidplay o [1999/11/29] misc/15168 Adding tracklist support to fdformat o [1999/11/29] kern/15175 tcp_input() fails to update m->m_pkthdr.l o [1999/11/30] bin/15182 "* Wed-1 event" in calendar produces "31 o [1999/11/30] misc/15196 shutdown -h no longer synching disks, thu o [1999/12/01] misc/15205 Addition to /usr/games/random o [1999/12/01] bin/15211 CFLAGS and CC not settable and one warnin o [1999/12/01] misc/15215 Outputting in Fortune under certain circu o [1999/12/02] i386/15218 kernel says: raw partition size != slice o [1999/12/02] kern/15221 marcel Linux emulator core dumps on setreuid() o [1999/12/02] bin/15227 sheldonh New option for vacation(1) -- dir to use o [1999/12/02] bin/15229 joe mtree - different from mtree in NetBSD 1. o [1999/12/02] docs/15234 mpp sh(1) man page have capitalised instance o [1999/12/03] ports/15239 asami fix MASTER_SITE_GNOME in bsd.port.mk: mi o [1999/12/04] kern/15251 patch to add unsigned support to sysctl o [1999/12/04] docs/15259 obrien amd(8) refers to nonexistent automount(8) o [1999/12/05] kern/15280 kernel panic during FreeBSD install o [1999/12/05] bin/15285 wes unhelpful error message from brandelf o [1999/12/05] misc/15288 billf pkg_version -c output isn't safe for scri o [1999/12/05] ports/15294 jfitz Update port: mrgt from 2.8.8 to 2.8.9 o [1999/12/06] bin/15301 Bug in /usr/sbin/syslogd: strips 8th bits o [1999/12/06] misc/15304 billf proposed modifications to pkg_version o [1999/12/06] ports/15326 ache tcsh modification o [1999/12/07] ports/15329 cwt amanda24 modification o [1999/12/07] misc/15339 fdformat should exit non-zero when user c o [1999/12/07] bin/15342 replacement for the stock /sbin/dhclient- o [1999/12/08] ports/15367 ports new ports on linux emulator o [1999/12/09] bin/15371 keyinfo doesn't work without suidperl o [1999/12/09] ports/15387 billf ethereal's packet-smb.c calls str*() func o [1999/12/09] bin/15390 obrien Upgrade rdist to 6.1.5 o [1999/12/10] docs/15408 doc Description of ls and nlist wrong in man o [1999/12/10] bin/15410 edquota -p copies current usage as well a o [1999/12/11] bin/15416 addr2line is unable to find line numbers o [1999/12/11] bin/15418 tput(1) doesn't work with new libncurses. o [1999/12/11] misc/15421 initgroups(3) spits out messages to stder o [1999/12/12] kern/15435 Attempts to execute programs from a noexe o [1999/12/12] kern/15436 syscons extension: "propellers" o [1999/12/12] kern/15440 jasone support atomic locks in the UP kernel o [1999/12/12] kern/15455 dg Intel EtherExpress Pro does not properly o [1999/12/13] bin/15456 Usage of ktrace(1) is invalid a [1999/12/13] bin/15458 sort(1) doesn't sort correctly in some ca o [1999/12/13] ports/15461 jmacd Update of misc/xdelta port o [1999/12/13] bin/15470 Proposed change to comments in /etc/named o [1999/12/14] ports/15477 andreas wwwstat-2.01 port is not Y2K compliant: 1 o [1999/12/14] misc/15480 Change-request for /usr/src/usr.sbin/cdco f [1999/12/14] ports/15481 ports ports/devel/codecrusader slightly broken o [1999/12/14] kern/15489 running fstat causes a bus error o [1999/12/15] kern/15492 Patch to fixup bridging support for 2.2-S o [1999/12/15] kern/15493 Patch to enable bridging support for if_c o [1999/12/15] ports/15495 asami Add "addsum" target to bsd.port.mk o [1999/12/15] bin/15496 killall(1) limited to 16 character proces o [1999/12/15] bin/15497 NIS does not deal well with comments o [1999/12/15] bin/15510 df(1) does not lineup with large filesyst o [1999/12/15] kern/15511 Cannot scroll up after panic? o [1999/12/16] misc/15519 peter Lots of bind-8.2.2 manual pages don't get o [1999/12/17] i386/15528 doscmd exec function fail. o [1999/12/17] i386/15531 doscmd DOS function 0a fail when DL is 0 o [1999/12/17] kern/15532 Reboot just to kill a print job? f [1999/12/17] ports/15545 ports New port: x11/xterm o [1999/12/17] misc/15546 Need to enable LBA flag for large IDE dis o [1999/12/17] i386/15547 discmd function 51 ( get ps ) fail o [1999/12/18] gnu/15549 obrien Fix -fformat-extensions support code merg f [1999/12/18] ports/15552 ports New port: news/knode o [1999/12/18] misc/15555 some enhancements for uudecode o [1999/12/19] docs/15561 doc regex(3) manpage needs update o [1999/12/20] bin/15593 [SECURITY] ustrcpy() buffer overflow in d o [1999/12/20] ports/15594 se kscd-1.2.7 in -STABLE ports not playing A o [1999/12/20] bin/15596 netstat -rn does'n fit on a 80 chars wide o [1999/12/21] kern/15608 acd0 / cd0 give inconsistent errors on em o [1999/12/21] conf/15612 jkh Re-Scan devices in 3.4-Release options me o [1999/12/21] i386/15619 standard pppd doesn't authenticate users o [1999/12/22] kern/15632 mss driver fails to recognize CS4239 on T o [1999/12/22] kern/15633 Joy driver fails to attach to CS joystick o [1999/12/22] kern/15636 dillon reminder to self for MAP_ VM defines o [1999/12/23] misc/15658 edquota misinterprets usernames as uid ra f [1999/12/23] docs/15661 nbm Handbook doesn't properly document bootin o [1999/12/24] bin/15663 yokota none o [1999/12/25] ports/15691 torstenb Ssh ports fail to check inetd.conf before o [1999/12/28] bin/15739 repquota report format fix for better par o [1999/12/28] conf/15745 rc.network overrides mountd_flags rather o [1999/12/28] kern/15747 loader's builtin "more" command won't res o [1999/12/28] conf/15748 jkh sysinstall - upgrade o [1999/12/30] ports/15787 se Kvt doesn't agree with MAKEDEV on pty num o [1999/12/31] conf/15792 can't make /dev/cd31 o [1999/12/31] ports/15796 will New port: net/dhcp_dns o [1999/12/31] misc/15809 New entry for the fortune(6) database o [1999/12/31] ports/15810 jfitz p5-Net port update o [1999/12/31] ports/15812 jfitz p5-Mail-Tools port update o [1999/12/31] ports/15813 eivind p5-IO-stringy port update o [1999/12/31] ports/15814 eivind p5-MIME-Tools port update o [2000/01/01] ports/15819 cwt fix PLIST of misc/amanda24 o [2000/01/01] docs/15821 doc Wrong device names in manpages for lpt(4) o [2000/01/01] kern/15827 Power-Off causes Trap 9 in kernel o [2000/01/01] bin/15830 PATCH: rdump over ssh o [2000/01/01] bin/15832 the w commands can show a bad result on t o [2000/01/02] kern/15838 Conversion tables in msdosfs_conv.c are b o [2000/01/02] ports/15840 ports New port: x11-fonts/ucs-fixed o [2000/01/02] i386/15841 [patch] Assembler syntax fixes for the bo o [2000/01/02] ports/15844 wosch www/checkbot fix and update to 1.58 o [2000/01/02] bin/15852 asmodai predefined \*(DT string has Y2K bug o [2000/01/02] bin/15853 tar --newer-mtime flag has Y2K bug o [2000/01/03] bin/15855 comsat(8) failes to open system mail box o [2000/01/03] ports/15857 dirk new standalone port of php3 for ports/www o [2000/01/03] ports/15859 ache Fix a typo in BUILD_DEPENDS in www/p5-Par o [2000/01/03] kern/15860 patch to make default kern.maxfilesperpro o [2000/01/03] bin/15861 ftpd did not use sendfile(2) when sending o [2000/01/03] misc/15871 CVS directories copied to PicoBSD filesys o [2000/01/03] ports/15873 ports New port: Apache_fp+php+mod_ssl-1.3.9+3.0 o [2000/01/03] misc/15874 PicoBSD can only update files from within o [2000/01/03] misc/15875 Incorrect permissions on PicoBSD /tmp dir o [2000/01/03] misc/15876 PicoBSD message of the day problems o [2000/01/04] ports/15886 ports New port: audio/cd2mp3 o [2000/01/04] docs/15890 doc rfork(RFMEM) on SMP generates error o [2000/01/04] ports/15894 ports New port: security/aide AIDE 0.5 o [2000/01/05] misc/15908 patch to fix argument mismatch in getnano o [2000/01/05] kern/15923 ATA/EIDE DMA does not work with some hard o [2000/01/06] ports/15933 marcel ports/editors/staroffice requires linux l o [2000/01/06] ports/15935 msmith ports/editors/wordperfect - incorrect URL s [2000/01/06] docs/15959 phantom misplaced lines in psignal.9 man page o [2000/01/07] ports/15963 se krn requires libgdbm but port doesn't che s [2000/01/08] bin/15981 sheldonh rcp -p fails when times have high bit set o [2000/01/08] kern/15983 n_hibma C++ keywords in kernel header files o [2000/01/08] ports/15992 asami [PATCH] Add a default for $SUP in the /us o [2000/01/08] ports/15993 asami [PATCH]No line-feed in warnings from ``ma o [2000/01/08] ports/15994 ports new port libapreq 0.31 o [2000/01/09] misc/16003 sysinstall crashes if it gets more than o o [2000/01/09] bin/16005 brian add new option to date(1) o [2000/01/09] bin/16007 joe cdcontrol(1) defaulting do /dev/cdrom ins o [2000/01/09] misc/16009 Invoking /stand/sysinstall from kde termi o [2000/01/09] kern/16016 cam/scsi/scsi_da.c: Fujitsu M2952 doesn't o [2000/01/10] kern/16021 To support SMP on NEC PC98, call mp_probe o [2000/01/10] kern/16023 Add an idletime counter for sppp, just li o [2000/01/10] misc/16026 /stand/sysinstall segmentation fault when s [2000/01/10] bin/16048 asmodai "file" command cannot recognize LaTeX2e f o [2000/01/10] kern/16049 Connor Drive fails cache sync o [2000/01/11] ports/16063 jseger rdjpegcom part of the JPEG port ignores l o [2000/01/11] ports/16072 obrien vim5 port update o [2000/01/11] conf/16076 [PATCH] pam_ssh examples for /etc/pam.con o [2000/01/12] bin/16086 des Inetd internal IDENT is not work well. o [2000/01/12] ports/16088 ports apache13-ssl lacks sbin/gcache in PLIST o [2000/01/12] docs/16091 nik Update man refs for patch in pr #15958 o [2000/01/13] ports/16109 max Update port: japanese/mimekit to 1.8 o [2000/01/14] bin/16119 ctm_rmail does not honor umask o [2000/01/14] bin/16124 alfred [PATCH] Enhancement for 'lpr -r' o [2000/01/14] ports/16127 ade fix port: sysutils/upsmon - csocket.cc do o [2000/01/15] misc/16131 bizarre dates displayed when searching th o [2000/01/15] ports/16139 billf Ntop port fails to find lsof o [2000/01/15] kern/16140 /proc contains regular files of infinite o [2000/01/17] ports/16167 torstenb y2k problem with inn 2.2.1 NEWNEWS and NE o [2000/01/18] kern/16169 The U.S. Robotics 56K Voice Int modem is o [2000/01/18] kern/16170 compiling machine/setjmp.h with g++ o [2000/01/18] docs/16173 doc [PATCH] fix for the kld/cdev example o [2000/01/18] bin/16179 ipfw(8) poor design of command line parsi o [2000/01/18] conf/16180 firewall rules may require flags to be pa o [2000/01/18] docs/16185 guido a possible typo in ipnat.5 manpage o [2000/01/18] misc/16189 Advansys ASB-3940U2W SCSI Card does not w o [2000/01/18] kern/16195 16-bit uid/gid struct in sys/ipc.h o [2000/01/19] ports/16201 ports Port of CDD isn't up to date o [2000/01/19] bin/16206 PATCH: vmstat column alignment, %ll not s o [2000/01/19] misc/16208 ps/2 mouse problem o [2000/01/19] misc/16212 in /stand/sysinstall -- cannot exit menu o [2000/01/20] ports/16220 obrien -frepo is broken in gcc-devel and egcs po o [2000/01/20] misc/16231 CD audio wont work. o [2000/01/20] kern/16240 ICMP error generation fails to correctly o [2000/01/21] ports/16252 asami bsd.port.mk: Add bzip2 support for distri o [2000/01/21] bin/16275 approve send-pr(1) (attach files, use env o [2000/01/21] misc/16278 Crypt() function returns wierd results o [2000/01/22] kern/16292 performance problem of divert socket o [2000/01/22] misc/16301 Sysinstall -> Configure -> Distribution - o [2000/01/22] ports/16305 jfitz Upgrade port: majordomo to 1.94.5 o [2000/01/23] bin/16316 Enhancement: allow .fakeid to be a named o [2000/01/23] bin/16320 fstat -f confuses some partitions o [2000/01/24] kern/16335 archie ng_ppp(8) fixes, improvements o [2000/01/24] kern/16339 vm/vm_page.h PQ_L2_SIZE options too limit o [2000/01/25] ports/16347 ports Inconsistencies between Java ports o [2000/01/25] kern/16360 kernel timestamping of ICMP echo requests o [2000/01/26] kern/16362 AMD K6-3 processor is identified as a P58 o [2000/01/26] ports/16363 pst [PATCH] Upgrade ports/databases/gnats o [2000/01/26] bin/16364 [PATCH] Add msdosfs and cd9660 support to o [2000/01/26] ports/16374 ache Ports fix: news/tin o [2000/01/26] ports/16377 ports new port for PGP 6.5.1i o [2000/01/27] ports/16397 jfitz Please update net/mrtg for current o [2000/01/27] i386/16411 DUMP freezes system if uucico or samba wr o [2000/01/27] ports/16417 ports nethack3 port won't compile on 3.4-Stable o [2000/01/28] bin/16422 newfs always make root's / directory o [2000/01/28] misc/16434 Odd rlogin problem. o [2000/01/29] docs/16439 doc fdp-primer - difficulties with split SGML o [2000/01/29] ports/16452 torstenb Update ctwm port o [2000/01/30] misc/16475 search.cgi gives bogus dates o [2000/01/30] ports/16476 peter Missing option and a typo o [2000/01/30] bin/16480 locked accounts and adduser o [2000/01/30] ports/16486 ports New Port: devel/linux-jdk-1.2.2 o [2000/02/06] conf/16536 size of /var/spool/uucp/Log, a UUCP logfi o [2000/02/06] kern/16551 cosmetic cleanup in sys/dev/ppbus/pcfcloc o [2000/02/07] ports/16565 torstenb Broken non-US-ssh-port (1.2.27) o [2000/02/07] ports/16570 asami ports toplevel README.html has bad link t o [2000/02/08] ports/16580 nbm Request port removal. o [2000/02/08] conf/16584 jkh Hostname field too small during install ( o [2000/02/09] ports/16606 ports [NEW PORT] new port of Adobe Acrobat View o [2000/02/09] bin/16619 trimdomain does not handle peer domains o [2000/02/09] bin/16625 Incorrect information in routed(8) error o [2000/02/10] ports/16629 ports New port of vtun 2.0. o [2000/02/10] ports/16636 ports New port: GNU find o [2000/02/10] ports/16638 ports New port: GNU fileutils o [2000/02/10] ports/16640 ports rwhois port install tries to copy wrong l o [2000/02/10] ports/16642 jseger libwww port upgraded to 5.2.8 o [2000/02/10] misc/16647 jkh data for fortune o [2000/02/10] ports/16648 ports New port: graphics/Gdtclft (TCL interface o [2000/02/10] bin/16649 /bin/lastcomm: output contains extraneous o [2000/02/11] ports/16651 ports [ports] net/pppload fails to compile f [2000/02/11] ports/16654 mharo Some master sites have discontinued hosti o [2000/02/11] bin/16657 /bin/hostname: New feature to return subc o [2000/02/12] ports/16669 erich Update port: editors/sam o [2000/02/12] ports/16670 erich Update port: x11/9term o [2000/02/12] ports/16674 erich Update port: graphics/mplex o [2000/02/12] ports/16676 swallace Update port: games/xrisk to 2.15 f [2000/02/12] ports/16687 jedgar p5-Mysql building problem due to missing o [2000/02/12] ports/16692 will update port: sysutils/asmem: 1.5 -> 1.6 o [2000/02/12] ports/16693 ports new port: wavplay 1.4 now with the port! f [2000/02/13] ports/16703 billf port update from apache-ssl-1.3.9+1.37 to o [2000/02/13] bin/16705 ftpd doesn't support -h option o [2000/02/14] kern/16709 PATCH: make poll work for -STABLE's Audio o [2000/02/14] ports/16715 jseger Upgrade games/gnugo port to version 2.6 o [2000/02/14] ports/16718 dbaker [PATCH] misc/proxyper should obey the por o [2000/02/14] misc/16719 /stand/sysinstall does not redraw the scr o [2000/02/14] i386/16722 squid (a 3.x binary) won't run under 4.0- o [2000/02/15] bin/16726 rpc.rstatd from inetd sig11's o [2000/02/15] ports/16732 roger Update port: misc/videotext to 0.6.199910 o [2000/02/16] kern/16745 Kernel Makefile doesn't sanitise PATH [PA o [2000/02/16] ports/16763 ports New port: emulators/vxtools o [2000/02/16] docs/16764 jim Include link to "Linux-Oracle on FreeBSD" o [2000/02/16] kern/16765 Add support for mark/space parity o [2000/02/17] ports/16779 erich Update port: astro/xephem o [2000/02/17] ports/16786 jfitz Update port: lang/rexx-imc o [2000/02/17] ports/16794 ports New port: sdts++ o [2000/02/17] bin/16798 rmuser rebuilds entire passwd datebase fo o [2000/02/18] kern/16815 dillon Cannot "rm -rf" for not-existed file on r o [2000/02/19] misc/16830 markm PAM-related error messages on -current o [2000/02/20] kern/16838 MFC: phk's print uptime at reboot o [2000/02/20] misc/16839 dan MFC Matthew D. Fuller's patch to deal wit o [2000/02/20] misc/16840 dan MFC: Matthew D. Fuller's teach pkg_info t o [2000/02/20] misc/16842 Knob for release/Makefile to prevent dele o [2000/02/20] misc/16848 jkh Fortune has repeat entry o [2000/02/20] ports/16857 jdp cvsup coredump o [2000/02/21] ports/16872 max Update port: japanese/pine o [2000/02/21] bin/16880 [PATCH] pw(8) hardcodes directory creatio o [2000/02/21] docs/16891 unfurl Typo in header of FAQ f [2000/02/22] ports/16919 nbm UPDATE port mail/qmail-contrib missing de o [2000/02/22] bin/16924 tmpfile(3) ignores TMPDIR and always uses o [2000/02/22] bin/16926 kris [PATCH] banner doesn't allocate space fo o [2000/02/22] bin/16927 [PATCH] prevent possible race condition i o [2000/02/22] kern/16928 dynamic sysctl enhancement o [2000/02/22] bin/16929 [PATCH] prevent possible race condition i o [2000/02/23] ports/16932 marcel linux_base 6.1 in 4.0rc aborts install wi o [2000/02/23] docs/16934 doc anon transfer log doesn't log all xfers o [2000/02/23] misc/16938 FTP does not fully parse ftp:// URLs o [2000/02/23] bin/16941 routed: possible netmask problem between a [2000/02/23] gnu/16942 sheldonh send-pr(1) creates unsafe temp files o [2000/02/23] bin/16944 Give mtree(8) an ``exclude'' facility o [2000/02/23] ports/16949 ports New Port: audio/pimp3 o [2000/02/23] bin/16953 [PATCH] Fix argument overflow in dnsquery o [2000/02/23] misc/16954 [PATCH] catopen(3) in libc can overflow o o [2000/02/24] conf/16959 peter [PATCH] missing entry in /etc/make.conf o [2000/02/24] misc/16969 /kernel: psmintr: out of sync (0000 != 00 o [2000/02/24] ports/16970 ports New port of TclX-8.2 (lang/tclX82) o [2000/02/24] bin/16971 Exiting from /usr/sbin/login does not res o [2000/02/25] bin/16981 Minor nit with (un)compress and "Operatio o [2000/02/25] ports/16987 obrien pkg_delete vim-5.X incorrect o [2000/02/25] ports/16989 ports New port: comms/qico 0.45pre3 o [2000/02/25] kern/16993 marcel Linux emulator lacks setfsuid and setfsgi o [2000/02/25] ports/16997 ports Incompatibility between GNOME and KDE o [2000/02/25] ports/16998 ports Eterm fails to function from Gnome/Enligh o [2000/02/25] ports/17001 ports [PATCH] additional fvwm2 icons o [2000/02/26] kern/17003 dscheck() overzealously protects labels o o [2000/02/26] conf/17006 PCMCIA ETHERNET CARD o [2000/02/26] kern/17007 This is a code for implementing ethernet o [2000/02/26] docs/17014 doc send-pr sets MAIL_AGENT unconditionally o [2000/02/26] ports/17016 ports New port -- Wordnet -- dictionary and the o [2000/02/27] ports/17018 ports New port submission for Moneydance o [2000/02/27] conf/17022 rwatson newsyslog.conf not in sync with syslog.co o [2000/02/27] alpha/17032 alpha strtod(3) floating exception o [2000/02/27] ports/17035 ports Update port www/ijb to both use FreeBSD g o [2000/02/28] ports/17037 ports A new port of NADAR-b04 o [2000/02/28] misc/17045 Cannot install on Siemens Primergy 870 (d o [2000/02/28] ports/17047 ports Let doc++ install documentation o [2000/02/28] kern/17058 mjacob SCSI tape driver can't drive devs that ca o [2000/02/28] ports/17066 ports audio/xmms chewing CPU (and skipping too) o [2000/02/29] misc/17069 davidn /usr/sbin/pw pw(8) fails for a specific u o [2000/02/29] bin/17077 write() error o [2000/02/29] bin/17084 memory leak in getcap.c (libc) o [2000/02/29] bin/17085 [patch] Fix typo in src/src/games/fortune o [2000/03/01] docs/17091 phantom Missing man pages for bind o [2000/03/01] docs/17092 phantom Missing man page for nsupdate o [2000/03/01] docs/17093 phantom Missing man pages for named o [2000/03/01] docs/17101 doc Useless reference in the doscmd manpage o [2000/03/01] docs/17104 phantom gethostbyname(3) contains a reference to o [2000/03/01] docs/17105 doc Wrong crossreference in ndc(8). o [2000/03/01] ports/17111 ports [NEW PORT] New port of Jext - a powerful o [2000/03/01] ports/17116 ports New port: net/ip-tun o [2000/03/02] ports/17127 obrien Ports fix: editors/vim5 o [2000/03/02] ports/17130 ports New Ports: korean/hlatex-uhcstd o [2000/03/02] ports/17131 ports New Ports: korean/hlatexpsfonts-uhcextra o [2000/03/02] misc/17132 bugs in xdr functions o [2000/03/02] misc/17133 imp /etc/pcmcia.conf.sample error with DFE-65 o [2000/03/02] ports/17139 billf PLIST correction for Apache13-fp o [2000/03/03] ports/17151 sada updated original archive file of elisa8x8 a [2000/03/03] misc/17155 sheldonh Add mount(8) check to /etc/security o [2000/03/03] ports/17157 swallace Update port: audio/xcdplayer o [2000/03/03] ports/17158 joerg Update port: deskutils/xpostit o [2000/03/03] ports/17159 swallace Update port: games/xasteroids o [2000/03/03] ports/17161 swallace Update port: games/xchomp o [2000/03/03] ports/17170 taoka Update port: x11/xcoloredit o [2000/03/04] ports/17176 ports Update ports: Mew-1.94.2 o [2000/03/04] misc/17178 -d option of lpd didnt work o [2000/03/04] misc/17185 main ncurses headerfile is installed as c o [2000/03/04] i386/17198 3.4 doesn't boot from CD on dell 3500 o [2000/03/04] ports/17199 jmz emulators/mtools configure fix o [2000/03/04] ports/17200 jseger irc/zircon update to 1.18.240 o [2000/03/04] gnu/17202 uucp grade patch and policy o [2000/03/05] conf/17207 disktab support for Fuji-MO o [2000/03/05] gnu/17214 gdb doesn't honor auto-solib-add o [2000/03/05] ports/17215 ports XFree86 SVGA SiS5597/5598 server problem o [2000/03/06] kern/17222 Avance Logic ALS/100 sound card doesn't r o [2000/03/06] kern/17224 4.0-20000214-CURRENT: pcm/csa sound - sha o [2000/03/06] bin/17226 markm ftpd can't use PAM o [2000/03/06] ports/17229 ports Update port: ftp/downloader to 1.13 (fix o [2000/03/06] misc/17232 obrien chown(1) and chgrp(1) do not honor -v fla o [2000/03/06] ports/17236 ports New ports tamago 4.0.6 a [2000/03/06] ports/17241 mharo Update: japanese/tkdesk o [2000/03/07] ports/17249 ports Updated md5 checksum for audio/xmms-livei o [2000/03/07] ports/17255 pst Update the GNATS port to 3.113 o [2000/03/07] ports/17259 reg Update port www/mozilla o [2000/03/08] ports/17262 ports New port: japanese/xmsgsaver 1.7 o [2000/03/08] ports/17268 dirk new lyx port does not install locale file o [2000/03/08] docs/17269 doc Description of Symbols in nm(1) o [2000/03/08] misc/17270 FreeBSD should support nsswitch.conf, or o [2000/03/08] misc/17272 deleting a file that a program has open c o [2000/03/08] misc/17275 make release fails when making readmes fo o [2000/03/08] ports/17279 ports USA/Canada Netscape Navigator 4.72 FreeBS o [2000/03/09] ports/17282 jmacd Update port: lang/mit-scheme to 7.5.4 o [2000/03/09] ports/17283 nakai Update port: lang/slib to 2c7 o [2000/03/09] ports/17286 ports New port of ISC DHCP 3.0 beta o [2000/03/09] bin/17289 [PATCH] wrong permissions on /var/run/pri o [2000/03/09] ports/17293 ports samba port installs man-pages twice, fail o [2000/03/09] kern/17297 Panic when mounting a CDRom o [2000/03/10] i386/17299 I can't find uucleanup command in freeBSD o [2000/03/10] ports/17301 ports New port: mozilla-fonts o [2000/03/10] ports/17302 ports New Port c-nocem o [2000/03/10] kern/17304 imp More flexible support for building klds o o [2000/03/10] ports/17309 ports ports/audio/cdd doesn't support .wav outp o [2000/03/11] ports/17316 ports New Port - QuickPicks o [2000/03/11] ports/17329 ports Re: ports/17327: New port: boxes o [2000/03/11] ports/17332 ports New ports: korean/gtkcomm o [2000/03/12] ports/17336 ports ktranslator port make failure o [2000/03/12] ports/17337 ports New port for bulb-1.0.6 o [2000/03/12] ports/17342 will ports/devel/qtez build failure o [2000/03/12] kern/17347 msdosfs_rename and 'vrele: negative ref c o [2000/03/12] ports/17348 ports Update port security/libparanoia from 1.3 o [2000/03/12] kern/17349 [Patch] ESS18xx PnP Sound Card PnPid for o [2000/03/12] ports/17350 ports tripwire used mktemp(), siggen not instal o [2000/03/13] kern/17351 Add PnP ID for the "5634BTS 56K Video Rea o [2000/03/13] ports/17353 will New port of featured ICQ client for KDE ( o [2000/03/13] kern/17358 PCI ids for Aureal 8810, 8820 and 8830 au o [2000/03/13] bin/17363 crontab(1) leaves files in /var/cron/tabs o [2000/03/13] docs/17364 doc Fix minor errors and omissions in FAQ o [2000/03/13] bin/17368 billf Bad error messaging from mountd(8) o [2000/03/14] ports/17376 ports New port -- mysql-editor, web-based table o [2000/03/14] misc/17377 "Checking for rejected mail hosts:" gives o [2000/03/14] ports/17382 ports New port, devel/p5-Locale-Maketext a [2000/03/14] misc/17384 sheldonh patch for lpd to add -p option to disable o [2000/03/14] kern/17385 Support for IIT's "XC87SLC-33" numeric pr o [2000/03/15] bin/17389 /bin/cp failed on some synthetic vfs o [2000/03/15] ports/17390 ports A port to track SAINT at its current vers o [2000/03/15] bin/17395 This is a replacement for the perl versio o [2000/03/15] misc/17399 FTPing into machine slows it down o [2000/03/16] bin/17405 one more fstat patch o [2000/03/16] ports/17407 ports Port of SmallEiffel -0.77 o [2000/03/16] alpha/17411 alpha No link/activity lights Alpha ethernet ca f [2000/03/16] ports/17414 mharo upgrade and fix for the postilion port o [2000/03/16] ports/17415 ports New Port: ip-tun (update) o [2000/03/16] ports/17416 ports New Port: p5-File-CounterFile o [2000/03/16] ports/17417 ports New Port: p5-Mail-Sendmail o [2000/03/16] ports/17418 ports New Port: p5-Net-Netmask o [2000/03/16] ports/17419 ports New Port: p5-Net-SSLeay o [2000/03/16] ports/17420 ports New Port: xbone o [2000/03/16] kern/17425 nsouch [PATCH] fix two small printing errors in o [2000/03/16] ports/17427 ports a big enhancement to the flexability of t o [2000/03/17] bin/17430 jkh Missing Czech keyboard in /stand/sysinsta o [2000/03/17] ports/17436 ports New port: emulators/vxtools - utilites f o [2000/03/17] kern/17438 cg newpcm volume too low on Soundblaster Pro o [2000/03/17] kern/17441 4.0-STABLE: Intel 82801AA SMBus Controlle o [2000/03/17] ports/17445 marcel Install of linux_base-6.1 fails with rpm o [2000/03/17] ports/17447 ports Addition of a new port o [2000/03/17] ports/17451 ports shells/ksh93 is broken o [2000/03/17] kern/17453 Added sys/pci/ device identification for o [2000/03/18] ports/17461 andreas Update port: databases/xmbase-grok to 1.4 o [2000/03/18] ports/17462 nakai Update port: emulators/snes9x a [2000/03/18] ports/17463 mharo Update port: graphics/cqcam o [2000/03/18] ports/17465 jmacd Update port: lang/STk to 4.0.1 o [2000/03/18] docs/17469 doc Missing man page: sigwait o [2000/03/18] docs/17470 doc Missing man page: pthread_yield o [2000/03/18] ports/17471 rse presence of devel/pth-devel port breaks w o [2000/03/18] ports/17473 ports YACC error in wine-99.11.14 port (tools/w o [2000/03/18] ports/17479 asami bsd.port.mk: PARALLEL_BUILD o [2000/03/18] bin/17480 m4 changecom doesn't work as documented o [2000/03/19] ports/17486 fenner /usr/ports/mbone/sdr doesn't work. o [2000/03/19] kern/17487 sos ide/atapi/cdrom bugs o [2000/03/19] ports/17489 ports Zephyr port is broken with Kerberos enabl o [2000/03/19] ports/17490 markm ports fail for some gnu programs as the g o [2000/03/19] kern/17493 Updates to use FreeBSD as a firewall and o [2000/03/19] kern/17495 ppc driver does not accept PNP attachment o [2000/03/19] ports/17496 ports /usr/ports/editors/emacs termcap problem o [2000/03/19] bin/17498 killall(1) is a slow perl script that's d o [2000/03/20] ports/17502 nakai [PATCH] Update of the Xfce (x11-wm/xfce) o [2000/03/20] i386/17505 Problems with with SMP on Compaq proliant s [2000/03/20] kern/17512 ken kernel message missing newline o [2000/03/20] ports/17513 ports new ports: russian/apache13-php3 (fix, pl o [2000/03/20] misc/17514 Inconsistent behaviour of "make update" [ o [2000/03/20] docs/17521 doc Proposed FAQ on assembly programming o [2000/03/21] ports/17523 ports New port: www/ssserver-1.0 o [2000/03/21] ports/17524 kris Wrong handbook chapter ref. in openssh po o [2000/03/21] ports/17525 ache [PATCH] Update of the PNG (graphics/png) o [2000/03/21] bin/17532 "host" only prints A records by default o [2000/03/21] ports/17534 ports Update of lang/clisp port, new version & o [2000/03/21] ports/17537 jfitz incorrect dependency results in bogus rei o [2000/03/21] docs/17538 jasone no man page for pthread_kill(3) and frien o [2000/03/21] kern/17539 kernel panic when asking help in visual u o [2000/03/21] docs/17544 doc login.conf(5) should have pointer to cap_ o [2000/03/22] bin/17546 murray Sysinstall does not let you configure NIS o [2000/03/22] ports/17547 ports new port xtrojka o [2000/03/22] docs/17552 doc Documentation error in divert(4) f [2000/03/22] bin/17555 green fstat(1) doesn't show memory-mapped files o [2000/03/22] ports/17556 ports New port: audio/linux-realplayer7 o [2000/03/23] docs/17566 doc [PATCH] ssh(1) and sshd(8) manpage error o [2000/03/23] ports/17569 stb Update for astro/setiathome port o [2000/03/23] ports/17572 ports [NEW PORT] New port of PVMPov-distributin o [2000/03/24] ports/17577 ports New port: hebrew/elmar-fonts o [2000/03/24] ports/17578 will GNU Pascal port o [2000/03/24] ports/17580 ports unable to make webcopy, invalid mastersit o [2000/03/24] kern/17581 devices failing probing do so silently o [2000/03/24] ports/17585 obrien Outputs small message for user of lang/gc o [2000/03/24] ports/17586 ports New port: MyODBC-2.50.28 o [2000/03/24] ports/17587 ports New port: libiodbc 2.50.3 o [2000/03/24] ports/17588 will New port: mysql++-1.6 o [2000/03/24] kern/17589 sos ata crashes when trying to extract cd-da o [2000/03/24] kern/17593 sheldonh [PATCH] Add KERNEL identifier to GENERIC f [2000/03/25] conf/17595 dan Preventing cp /etc/defaults/rc.conf /etc/ o [2000/03/25] ports/17597 ports New port: p5-Net-ext - a perl modules for o [2000/03/25] docs/17598 doc installworld over NFS documentation no lo o [2000/03/25] docs/17600 billf Error in description /usr/share/examples/ o [2000/03/25] ports/17602 jmz Port fix x11/XFree86-4.0 (make deinstall o [2000/03/25] ports/17603 ports ports/www/wwwoffle SPOOL=/home, then fail o [2000/03/26] bin/17606 shin traceroute vs. IPSEC surprise o [2000/03/26] bin/17611 f77 man page needs updated o [2000/03/27] bin/17619 pax cannot read all tar files created by o [2000/03/27] conf/17622 imp [Patch] pccard.conf for corega Ether PCM- o [2000/03/27] bin/17623 date(1) -v doesn't handle time changes (D f [2000/03/27] ports/17625 billf update port apache-ssl-1.3.12+1.39 (2nd s o [2000/03/27] i386/17628 3c509b hangs on running ifconfig f [2000/03/27] kern/17629 green "almost clone" patch for device snp o [2000/03/27] misc/17630 Install loader failed to recognize 84-key o [2000/03/27] kern/17631 netgraph is not implemented on loopback i o [2000/03/28] docs/17638 jim Added section on installing Oracle for Li o [2000/03/28] i386/17639 imp FreeBSD 4.0 /usr/src/UPDATING missing inf o [2000/03/28] bin/17640 lseek();read() -> pread() in dump and fsc o [2000/03/28] ports/17641 ports New port: sysutils/heat o [2000/03/28] ports/17646 ports Update port: cad/xcircuit o [2000/03/29] ports/17663 ports New port: audio/bwap o [2000/03/29] ports/17673 ports w3m port bugs o [2000/03/29] ports/17675 ports New port: findutils-4.1 o [2000/03/29] ports/17676 ports new port: astro/rmap o [2000/03/29] ports/17678 jseger Update port graphics/Mesa3 latest with pa o [2000/03/29] bin/17679 wpaul wicontrol should take multiple args on co o [2000/03/30] bin/17687 darrenr ipfilter is lacking behind the official v o [2000/03/30] kern/17688 es_callback() in /sys/pci/es1370.c does n o [2000/03/30] ports/17692 kris Unaudited SUID root on x11/kdebase11 .kss o [2000/03/30] ports/17693 ports port djview plugin for netscape-linux o [2000/03/30] bin/17694 wcstombs(), mbstowcs() not complying with o [2000/03/30] kern/17698 sheldonh [PATCH] Let Makefile.inc1 installkernel i o [2000/03/30] conf/17699 Support for dutch keyboards in the consol a [2000/03/30] kern/17702 peter Plug and Play Info for USR 56K FAX INT mo o [2000/03/30] misc/17703 dfr /usr/share/examples/kld/cdev won't compil o [2000/03/31] ports/17707 ports new port: audio/sphinx o [2000/03/31] conf/17710 /etc/defaults/make.conf doesn't contain N o [2000/03/31] bin/17720 presence of old /dev entries causes sysin o [2000/03/31] ports/17721 ports Update port: misc/ytree to 1.67 o [2000/03/31] ports/17723 ports Update port: www/boa to 0.94.6 o [2000/04/01] ports/17727 ports New port: Pine with Hebrew support, see a o [2000/04/01] kern/17728 probe Macronix 98715/98715A 10/100BaseTX o [2000/04/01] misc/17737 small Major repair of PicoBSD o [2000/04/01] bin/17739 Traceroute will not compile without IPSEC o [2000/04/01] ports/17744 ports postgresql cannot be packaged because it o [2000/04/02] ports/17747 ports Ports Update: korean/ami o [2000/04/02] kern/17751 wpaul rl driver loaded as module when it alread o [2000/04/02] ports/17753 ports Update port: mail/wanderlust-emacs o [2000/04/02] ports/17754 ports Update ports: mail/wanderlust-{mule,emacs o [2000/04/02] bin/17756 sshd ignores .hushlogin o [2000/04/02] kern/17758 green Make sl driver dynamicallly expandable. o [2000/04/02] ports/17763 ports update ports : libProplist and windowmake o [2000/04/02] bin/17764 wrong percentage completed in bad144 o [2000/04/03] ports/17769 ports New port: sgmltools 2.0.2 o [2000/04/03] ports/17771 ports new port: japanese/elisp-manual o [2000/04/03] bin/17772 TFTP can not handle big files (> 32MBytes o [2000/04/03] kern/17774 stray irq7 o [2000/04/03] kern/17775 4.0-STABLE: Adaptec-155-ATM at en0 causi o [2000/04/03] ports/17777 ports [PATCH] Postfix port to consistently use o [2000/04/03] docs/17780 doc if they ask for smbmount, they want shari o [2000/04/04] ports/17789 ports new port: devel/libxode o [2000/04/04] ports/17790 ports update port: japanese/emacs-manual o [2000/04/04] ports/17792 ports Update /security/stunnel port o [2000/04/04] kern/17796 pcm drivers failes to load for Neomagic o o [2000/04/04] ports/17798 ports ports/java/jdk: headers incorrectly check o [2000/04/04] ports/17799 ports JGNAT port o [2000/04/04] ports/17801 ports new port: devel/binutils11 o [2000/04/04] ports/17802 ports port update: devel/gcc11 o [2000/04/04] ports/17803 ports new port: devel/gdb11 o [2000/04/04] ports/17804 ports math/PDL upgrade: 2.0 -> 2.004 o [2000/04/04] ports/17807 ports Update port: astro/setiathome o [2000/04/05] bin/17810 pw coredumps when adding/deleting usernam o [2000/04/05] gnu/17812 gprof gives error: o [2000/04/05] bin/17818 ssh X11 forward breaks with X11 not in /u o [2000/04/05] kern/17819 adrian Build ports on nfs & union mount panics k o [2000/04/05] ports/17820 ports majordomo port should be updated to v. 1. o [2000/04/06] ports/17822 obrien www/netscape47-navigator.us port missing o [2000/04/06] ports/17823 ports new port: audio/streamripper o [2000/04/06] bin/17824 sheldonh [PATCH] /usr/bin/column has arithmetic ov o [2000/04/06] ports/17825 ports /misc/mc Makefile mistype o [2000/04/06] ports/17827 ports Update port: audio/timidity++ o [2000/04/06] bin/17830 /usr/bin/login called from command line d o [2000/04/06] kern/17831 FreeBSD 4.0 doesn't detect EpoX 7KXA prop o [2000/04/06] docs/17836 doc manpage for sigaction(2) is wrong o [2000/04/06] ports/17837 ports ImageMagick port busted o [2000/04/06] ports/17838 ports graphics/ImageMagick patch to overcome Xa o [2000/04/06] kern/17840 ASUSCOM_IPAC listed as "broken" in LINT c o [2000/04/07] misc/17848 Patches to remove support for CSRG libm o [2000/04/07] ports/17850 ports Update port: converters/mimepp to 1.2.4 o [2000/04/07] ports/17852 ports Update port: mail/glbiff to 0.3.2 o [2000/04/07] ports/17853 ports Update port: mail/xmailbox o [2000/04/07] ports/17854 ports Update port: net/gtksamba to gnosamba 0.3 o [2000/04/07] docs/17855 doc PPP Primer is out-of-date o [2000/04/07] misc/17856 After binary upgrade from 3.4 to 4.0 tcpd o [2000/04/07] misc/17857 During a sysinstall kernel sources say th o [2000/04/08] ports/17860 ports update of devel/doc++ o [2000/04/08] docs/17861 doc FAQ still needs 4.0 inserted in some plac o [2000/04/08] docs/17862 jim Handbook missing entry about changing she o [2000/04/08] docs/17869 doc Patch provided to update installation sec o [2000/04/08] kern/17872 arpintr() fix followup o [2000/04/08] kern/17874 Watchdog Timeout in vr device o [2000/04/09] bin/17875 [PATCH] /usr/bin/login logs errors in non o [2000/04/09] ports/17876 ports fix MASTER_SITE location o [2000/04/09] bin/17877 Cannot change login group with "pw usermo o [2000/04/09] docs/17880 doc ports section in handbook doesn't say ipv o [2000/04/09] ports/17882 ports New version of healthd o [2000/04/09] ports/17884 ports cannot compiled hylafax on 5.0-current o [2000/04/09] misc/17889 certain type of DNS queries seem to get d o [2000/04/09] ports/17891 ports update to teh grap port o [2000/04/09] ports/17892 ports update for net/binkd FreeBSD port o [2000/04/10] ports/17893 ports [PATCH] Cleanup of build process of the p o [2000/04/10] ports/17894 ports update of /usr/ports/sysutils/gtar/ o [2000/04/10] ports/17896 ports New port: p5-GD-Graph3d o [2000/04/10] ports/17897 ports transfig does not compile with XFree86-4. o [2000/04/10] ports/17901 ports tiny typo in Makefile for /usr/ports/www/ o [2000/04/10] ports/17902 ports out of date version number for PORTVERSIO o [2000/04/10] ports/17903 billf Allow CVS_UPDATE to be used with SUP_UPDA o [2000/04/10] conf/17904 rc.network IPX configuration missing 'ipx o [2000/04/10] i386/17906 le ethernet device doesn't work in 4.0 o [2000/04/10] kern/17907 Audio record levels are too low o [2000/04/10] ports/17908 ports Typo in x11-fm/gnomemc/Makefile 1483 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 Apr 10 11:35:48 2000 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 E918D37B755; Mon, 10 Apr 2000 11:35:47 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA10244; Mon, 10 Apr 2000 11:35:47 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Date: Mon, 10 Apr 2000 11:35:47 -0700 (PDT) From: Message-Id: <200004101835.LAA10244@freefall.freebsd.org> To: ari@suutari.iki.fi, asmodai@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/17840: ASUSCOM_IPAC listed as "broken" in LINT configuration file Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ASUSCOM_IPAC listed as "broken" in LINT configuration file State-Changed-From-To: open->closed State-Changed-By: asmodai State-Changed-When: Mon Apr 10 11:35:08 PDT 2000 State-Changed-Why: Fixed in 4 and 5's LINT based on Ari's confirmation. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 10 11:54:27 2000 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 86FAB37BC9C; Mon, 10 Apr 2000 11:54:25 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA12368; Mon, 10 Apr 2000 11:54:24 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Date: Mon, 10 Apr 2000 11:54:24 -0700 (PDT) From: Message-Id: <200004101854.LAA12368@freefall.freebsd.org> To: xaa+sendpr@dohd.cx, asmodai@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: conf/17710: /etc/defaults/make.conf doesn't contain NO_BIND Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: /etc/defaults/make.conf doesn't contain NO_BIND State-Changed-From-To: open->closed State-Changed-By: asmodai State-Changed-When: Mon Apr 10 11:53:39 PDT 2000 State-Changed-Why: Committed to both 4 and 5. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 10 12:20: 9 2000 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 71AA237B717 for ; Mon, 10 Apr 2000 12:20:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA15531; Mon, 10 Apr 2000 12:20:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 10 Apr 2000 12:20:04 -0700 (PDT) Message-Id: <200004101920.MAA15531@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Jeroen Ruigrok/Asmodai Subject: Re: kern/17767: /etc/group and comments Reply-To: Jeroen Ruigrok/Asmodai Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/17767; it has been noted by GNATS. From: Jeroen Ruigrok/Asmodai To: novikov@web2000.ru Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: kern/17767: /etc/group and comments Date: Mon, 10 Apr 2000 21:01:55 +0200 -On [20000403 12:01], root@web2000.ru (root@web2000.ru) wrote: > > Many programs e.g. proftpd asume /etc/group not to have any > comments and complain about malformed group file on startup. > >>How-To-Repeat: >>Fix: > > Remove comments from /etc/group It can also be argued otherwise that programs are supposed to ignore default comment characters from configuration files, such as the hash (#). -- Jeroen Ruigrok vd Werven/Asmodai asmodai@[wxs.nl|bart.nl|freebsd.org] Documentation nutter/C-rated Coder BSD: Technical excellence at its best The BSD Programmer's Documentation Project When Silence cries... Is it what I feel? Or is it what you really long to be..? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 10 12:25:13 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from smtp02.wxs.nl (smtp02.wxs.nl [195.121.6.60]) by hub.freebsd.org (Postfix) with ESMTP id 8DBE737B6B7; Mon, 10 Apr 2000 12:25:07 -0700 (PDT) (envelope-from asmodai@wxs.nl) Received: from daemon.ninth-circle.org ([195.121.60.174]) by smtp02.wxs.nl (Netscape Messaging Server 3.61) with ESMTP id AAA430A; Mon, 10 Apr 2000 21:24:59 +0200 Received: (from asmodai@localhost) by daemon.ninth-circle.org (8.9.3/8.9.3) id VAA67546; Mon, 10 Apr 2000 21:13:51 +0200 (CEST) (envelope-from asmodai) Date: Mon, 10 Apr 2000 21:13:50 +0200 From: Jeroen Ruigrok/Asmodai To: sheldonh@FreeBSD.org Cc: freebsd-bugs@FreeBSD.org, darrenr@FreeBSD.org Subject: Re: bin/17687: ipfilter is lacking behind the official version Message-ID: <20000410211350.F64452@daemon.ninth-circle.org> References: <200003301243.EAA16568@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <200003301243.EAA16568@freefall.freebsd.org>; from sheldonh@FreeBSD.org on Thu, Mar 30, 2000 at 04:43:30AM -0800 Organisation: Ninth-Circle Enterprises Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org -On [20000330 16:01], sheldonh@FreeBSD.org (sheldonh@FreeBSD.org) wrote: >Synopsis: ipfilter is lacking behind the official version > >Responsible-Changed-From-To: freebsd-bugs->darrenr >Responsible-Changed-By: sheldonh >Responsible-Changed-When: Thu Mar 30 04:43:05 PST 2000 >Responsible-Changed-Why: >Over to the ipfilter maintainer. Which in all actuality is Guido van Rooij (guido), at least in FreeBSD. -- Jeroen Ruigrok vd Werven/Asmodai asmodai@[wxs.nl|bart.nl|freebsd.org] Documentation nutter/C-rated Coder BSD: Technical excellence at its best The BSD Programmer's Documentation Project He laughs best that laughs last... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 10 12:30: 6 2000 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 5FA0E37B6FD for ; Mon, 10 Apr 2000 12:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA16813; Mon, 10 Apr 2000 12:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from ada.eu.org (marvin.enst.fr [137.194.161.2]) by hub.freebsd.org (Postfix) with ESMTP id 53B0337B923 for ; Mon, 10 Apr 2000 12:22:40 -0700 (PDT) (envelope-from root@ada.eu.org) Received: from antinea.enst.fr (antinea.enst.fr [137.194.160.145]) by ada.eu.org (Postfix) with ESMTP id D861C19076 for ; Mon, 10 Apr 2000 20:58:55 +0200 (CEST) Received: by antinea.enst.fr (Postfix, from userid 0) id 1FADE409; Mon, 10 Apr 2000 20:58:54 +0200 (CEST) Message-Id: <20000410185854.1FADE409@antinea.enst.fr> Date: Mon, 10 Apr 2000 20:58:54 +0200 (CEST) From: Samuel Tardieu Reply-To: Samuel Tardieu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/17909: Panic when removing a pccard which has a seen an IPv6 router advertisement Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17909 >Category: kern >Synopsis: Panic when removing a pccard which has a seen an IPv6 router advertisement >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Apr 10 12:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Samuel Tardieu >Release: FreeBSD 5.0-CURRENT i386 >Organization: ENST >Environment: -CURRENT from last week on a Compaq Armada V300 laptop. I am located on an IPv6 enabled network with routers doing advertisement on the Ethernet (another -CURRENT machine btw). >Description: If a PCMCIA card (3C589D, ep0 device) is present in the laptop and is removed after a router advertisement has been seen on the wire, the kernel will panic in the next call to nd6_timer. This is due to the fact that the prefix/router pair is still present with a reference to the now-unexisting interface. The panic occurs in in6ifa_ifpwithaddr, called from line 479 of nd6.c. The prefix structure clearly shows that the prefix/router pair has not been removed (prefix was 3ffe:403:104:a0::/64): (gdb) where #0 in6ifa_ifpwithaddr (ifp=0xc0936a00, addr=0xc09024b8) at ../../netinet6/in6.c:1339 #1 0xc01db173 in nd6_timer (ignored_arg=0x0) at ../../netinet6/nd6.c:479 #2 0xc0159c65 in softclock () at ../../kern/kern_timeout.c:131 (gdb) fr 1 #1 0xc01db173 in nd6_timer (ignored_arg=0x0) at ../../netinet6/nd6.c:479 (gdb) p *pr $4 = {ndpr_ifp = 0xc0936a00, ndpr_entry = {le_next = 0x0, le_prev = 0xc02a697c}, ndpr_prefix = {sin6_len = 28 '\034', sin6_family = 28 '\034', sin6_port = 0, sin6_flowinfo = 0, sin6_addr = { __u6_addr = { __u6_addr8 = "?þ\003\004\001\003\000 \000\000\000\000\000\000\000", __u6_addr16 = {65087, 1027, 769, 40960, 0, 0, 0, 0}, __u6_addr32 = { 67370559, 2684355329, 0, 0}}}, sin6_scope_id = 0}, ndpr_mask = { __u6_addr = {__u6_addr8 = "ÿÿÿÿÿÿÿÿ\000\000\000\000\000\000\000", __u6_addr16 = {65535, 65535, 65535, 65535, 0, 0, 0, 0}, __u6_addr32 = { 4294967295, 4294967295, 0, 0}}}, ndpr_addr = {__u6_addr = { __u6_addr8 = "?þ\003\004\001\003\000 \002`\bÿþC\177Ô", __u6_addr16 = { 65087, 1027, 769, 40960, 24578, 65288, 17406, 54399}, __u6_addr32 = { 67370559, 2684355329, 4278738946, 3565110270}}}, ndpr_vltime = 4294967295, ndpr_pltime = 4294967295, ndpr_expire = 0, ndpr_preferred = 0, ndpr_flags = {onlink = 1 '\001', autonomous = 1 '\001', reserved = 0 '\000'}, ndpr_advrtrs = {lh_first = 0xc09a9e70}, ndpr_plen = 64 '@', ndpr_stateflags = {onlink = 1 '\001'}} However, the interface is not valid anymore: (gdb) p *pr->ndpr_ifp $6 = {if_softc = 0xdeadc0de, if_name = 0xc029e200 "`ä)À°S", if_link = { tqe_next = 0xdeadc0de, tqe_prev = 0xc09c5000}, if_addrhead = { tqh_first = 0xdeadc0de, tqh_last = 0xdeadc0de}, if_pcount = -559038242, if_bpf = 0xdeadc0de, if_index = 49374, if_unit = -8531, if_timer = -16162, if_flags = -8531, if_ipending = -559038242, if_linkmib = 0xdeadc0de, if_linkmiblen = 3735929054, if_data = {ifi_type = 222 'Þ', ifi_physical = 192 'À', ifi_addrlen = 173 '­', ifi_hdrlen = 222 'Þ', ifi_recvquota = 222 'Þ', ifi_xmitquota = 192 'À', ifi_mtu = 3735929054, ifi_metric = 0, ifi_baudrate = 10000000, ifi_ipackets = 1739, ifi_ierrors = 0, ifi_opackets = 26, ifi_oerrors = 0, ifi_collisions = 0, ifi_ibytes = 310488, ifi_obytes = 2035, ifi_imcasts = 1698, ifi_omcasts = 3, ifi_iqdrops = 0, ifi_noproto = 0, ifi_hwassist = 0, ifi_unused = 0, ifi_lastchange = {tv_sec = 955392108, tv_usec = 92647}}, if_multiaddrs = {lh_first = 0xc092fb80}, if_amcount = 0, if_output = 0xc0193d64 , if_start = 0xc0132fd4 , if_done = 0, if_ioctl = 0xc0133c28 , if_watchdog = 0xc0133d28 , if_poll_recv = 0, if_poll_xmit = 0, if_poll_intren = 0, if_poll_slowinput = 0, if_init = 0xc0132d94 , if_resolvemulti = 0xc0194900 , if_snd = {ifq_head = 0x0, ifq_tail = 0x0, ifq_len = 0, ifq_maxlen = 50, ifq_drops = 0}, if_poll_slowq = 0x0, if_prefixhead = {tqh_first = 0x0, tqh_last = 0xc0936ad0}} >How-To-Repeat: Put an Ethernet card in a laptop on an IPv6 enabled network with router advertisements, wait for a global address to be assigned, then remove the card (or suspend the laptop, this should has the same effect when it resumes as the interface has been brought down when suspending). In fact, if you have a way to completely remove an interface, you should be able to reproduce this without a laptop. >Fix: It looks to me that removing the prefix/router associations bound to an interface when the interface is brought down is the right thing to do. Those pairs are useless when the interface is down, even if present. >Release-Note: >Audit-Trail: >Unformatted: root To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 10 12:40: 7 2000 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 3543E37B5C6 for ; Mon, 10 Apr 2000 12:40:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA18019; Mon, 10 Apr 2000 12:40:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 10 Apr 2000 12:40:04 -0700 (PDT) Message-Id: <200004101940.MAA18019@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Jeroen Ruigrok/Asmodai Subject: Re: kern/17871: starting to accumulate undeletable directories Reply-To: Jeroen Ruigrok/Asmodai Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/17871; it has been noted by GNATS. From: Jeroen Ruigrok/Asmodai To: jay.krell@cornell.edu Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: kern/17871: starting to accumulate undeletable directories Date: Mon, 10 Apr 2000 20:57:54 +0200 -On [20000409 08:00], jay.krell@cornell.edu (jay.krell@cornell.edu) wrote: > >jayk-bsd1# ls -l >drwxr-xr-x 5 jayk jayk 512 Apr 8 13:15 delete >drwxr-xr-x 3 jayk jayk 512 Apr 8 20:18 delete2 >drwxr-xr-x 3 jayk jayk 512 Apr 8 20:21 delete3 What does ls -ailosF say? -- Jeroen Ruigrok vd Werven/Asmodai asmodai@[wxs.nl|bart.nl|freebsd.org] Documentation nutter/C-rated Coder BSD: Technical excellence at its best The BSD Programmer's Documentation Project By thy words thou shalt be condemned... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 10 13:14:28 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from smtp01.wxs.nl (smtp01.wxs.nl [195.121.6.61]) by hub.freebsd.org (Postfix) with ESMTP id 7D8DB37B80F for ; Mon, 10 Apr 2000 13:14:19 -0700 (PDT) (envelope-from asmodai@wxs.nl) Received: from daemon.ninth-circle.org ([195.121.60.174]) by smtp01.wxs.nl (Netscape Messaging Server 3.61) with ESMTP id AAA500C; Mon, 10 Apr 2000 22:14:10 +0200 Received: (from asmodai@localhost) by daemon.ninth-circle.org (8.9.3/8.9.3) id WAA68275; Mon, 10 Apr 2000 22:12:53 +0200 (CEST) (envelope-from asmodai) Date: Mon, 10 Apr 2000 22:12:52 +0200 From: Jeroen Ruigrok/Asmodai To: Sheldon Hearn Cc: Phil Homewood , Colin Phipps , freebsd-bugs@FreeBSD.ORG Subject: Re: gnu/16942: send-pr(1) creates unsafe temp files Message-ID: <20000410221252.H64452@daemon.ninth-circle.org> References: <20000306095747.R27456@mincom.com> <31707.952327165@axl.ops.uunet.co.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <31707.952327165@axl.ops.uunet.co.za>; from sheldonh@uunet.co.za on Mon, Mar 06, 2000 at 09:19:25AM +0200 Organisation: Ninth-Circle Enterprises Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org -On [20000306 12:00], Sheldon Hearn (sheldonh@uunet.co.za) wrote: > >On Mon, 06 Mar 2000 09:57:48 +1000, Phil Homewood wrote: > >> Looking over the patch in 16942, I like it better too. Suggest >> going with that one and throwing mine out the window. :) > >All the more reason to wait and see which one the maintainers themselves >adopt, no? :-) Don't expect the GNATS prokect to adapt the changes btw. They are not very receptive of changes. -- Jeroen Ruigrok vd Werven/Asmodai asmodai@[wxs.nl|bart.nl|freebsd.org] Documentation nutter/C-rated Coder BSD: Technical excellence at its best The BSD Programmer's Documentation Project Man is the measure of all things... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 10 14: 0: 7 2000 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 4896337BAD5 for ; Mon, 10 Apr 2000 14:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA07379; Mon, 10 Apr 2000 14:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from anarcat.dyndns.org (phobos.IRO.UMontreal.CA [132.204.20.20]) by hub.freebsd.org (Postfix) with ESMTP id 8968237B6A9 for ; Mon, 10 Apr 2000 13:52:06 -0700 (PDT) (envelope-from spidey@anarcat.dyndns.org) Received: by anarcat.dyndns.org (Postfix, from userid 1000) id 4E0C219BC; Mon, 10 Apr 2000 16:51:13 -0400 (EDT) Message-Id: <20000410205113.4E0C219BC@anarcat.dyndns.org> Date: Mon, 10 Apr 2000 16:51:13 -0400 (EDT) From: The AnarCat Reply-To: The AnarCat To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/17910: Do not allow 'operators' to drop to single user via shutdown Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17910 >Category: bin >Synopsis: Do not allow 'operators' to drop to single user via shutdown >Confidential: yes >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Apr 10 14:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Anarcat >Release: FreeBSD 3.4-STABLE i386 >Organization: >Environment: FreeBSD 3.4-1999.11.01 >Description: The shutdown(8) utility can be used to stop the system so that it drops to single-user modem, by any user in the operator group. This situation may not be desirable in the case of "public" workstations. For example, say you have some workstations of which the only access is through the keyboard and monitor. You do not wish to have any user have root access on these boxes. A user may shutdown(8) the machine, if he's got the permissions (operator group membership in the default setup) but should never have single-user access (this also implies that the console is marked "secure" in /etc/ttys, of course). >How-To-Repeat: User john is in the "operator" group: login: john password: $ shutdown now [single user mode] >Fix: Patch to sbin/shutdown.c: *** /usr/src/sbin/shutdown/shutdown.c.orig Thu Sep 9 22:09:39 1999 --- /usr/src/sbin/shutdown/shutdown.c Mon Apr 10 16:33:27 2000 *************** *** 163,168 **** --- 163,172 ---- if (nosync != NULL && !oflag) usage("-n requires -o"); + /* do not allow anyone else than root to drop to single user */ + if ((!dohalt) && (!doreboot) && (getuid() != 0)) + usage("only root can drop to single user"); + getoffset(*argv++); if (*argv) { >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 Apr 10 14:30: 8 2000 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 BE5ED37B5B8 for ; Mon, 10 Apr 2000 14:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA10527; Mon, 10 Apr 2000 14:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 10 Apr 2000 14:30:02 -0700 (PDT) Message-Id: <200004102130.OAA10527@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Brooks Davis Subject: Re: bin/17910: Do not allow 'operators' to drop to single user via shutdown Reply-To: Brooks Davis Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/17910; it has been noted by GNATS. From: Brooks Davis To: The AnarCat Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/17910: Do not allow 'operators' to drop to single user via shutdown Date: Mon, 10 Apr 2000 14:26:40 -0700 On Mon, Apr 10, 2000 at 04:51:13PM -0400, The AnarCat wrote: > > >Description: > > The shutdown(8) utility can be used to stop the system so that > it drops to single-user modem, by any user in the operator group. This > situation may not be desirable in the case of "public" workstations. > > For example, say you have some workstations of which the only access is > through the keyboard and monitor. You do not wish to have any user have > root access on these boxes. A user may shutdown(8) the machine, if he's > got the permissions (operator group membership in the default setup) but > should never have single-user access (this also implies that the console > is marked "secure" in /etc/ttys, of course). You already metioned the real solution. Just remove secure from /etc/ttys. In any case, it is delusional to think a machine you provide physical access to is secure. Root is only a floppy disk (or, at most, a few case screws and a jumper) away. Breaking shutdown won't really help since you can go to single user at the boot prompt. -- Brooks -- Any statement of the form "X is the one, true Y" is FALSE. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 10 16:24:54 2000 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 DC9C037B80B for ; Mon, 10 Apr 2000 16:24:51 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA19972; Mon, 10 Apr 2000 16:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from gto.networkphysics.com (DNS1.networkphysics.com [63.194.71.40]) by hub.freebsd.org (Postfix) with ESMTP id 67EA937B764 for ; Mon, 10 Apr 2000 16:12:28 -0700 (PDT) (envelope-from pavel@NetworkPhysics.COM) Received: from cyclone.networkphysics.com (cyclone.networkphysics.com [10.1.0.46]) by gto.networkphysics.com (8.9.3/8.9.3) with ESMTP id PAA34294 for ; Mon, 10 Apr 2000 15:49:22 -0700 (PDT) (envelope-from pavel@NetworkPhysics.COM) Received: (from pavel@localhost) by cyclone.networkphysics.com (8.9.3/8.9.3) id PAA00657; Mon, 10 Apr 2000 15:49:22 -0700 (PDT) (envelope-from pavel@NetworkPhysics.COM) Message-Id: <200004102249.PAA00657@cyclone.networkphysics.com> Date: Mon, 10 Apr 2000 15:49:22 -0700 (PDT) From: Tom Pavel Reply-To: pavel@alum.mit.edu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/17911: unitialized var in netgraph msg code Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17911 >Category: kern >Synopsis: unitialized var in netgraph msg code >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 Apr 10 16:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Tom Pavel >Release: FreeBSD 3.4-RELEASE i386 >Organization: Network Physics, Inc. >Environment: Netgraph code in 3.4 or 3-STABLE (same bug in current). Using: $FreeBSD: src/sys/netgraph/ng_base.c,v 1.6.2.9 1999/12/08 19:44:03 julian Exp $ running on i386: cyclone[44]% uname -a FreeBSD cyclone.networkphysics.com 3.4-RELEASE FreeBSD 3.4-RELEASE #7: Mon Apr 10 12:03:55 PDT 2000 root@cyclone.networkphysics.com:/usr/src/sys/compile/NGTEST i386 >Description: The "off" variable in the NGM_ASCII2BINARY case of ng_generic_msg() is unitialized. This can lead to a kernel panic in strtol() (from e.g. ng_int32_parse()) if the variable happens to be initialized to a (nonzero) nonsensical value. >How-To-Repeat: Hook up some netgraph modules, send a bunch of ngctl msg commands with numeric arguments, and wait for the kernel stack to churn a bit. >Fix: --- /sys/netgraph/ng_base.c Wed Dec 8 11:44:03 1999 +++ ng_base.c Mon Apr 10 12:03:19 2000 @@ -1519,7 +1519,7 @@ const struct ng_cmdlist *c; const struct ng_parse_type *argstype; struct ng_mesg *rp, *ascii, *binary; - int off; + int off = 0; /* Data area must contain at least a struct ng_mesg + '\0' */ ascii = (struct ng_mesg *)msg->data; Tom Pavel Network Physics pavel@networkphysics.com / pavel@alum.mit.edu >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 Apr 10 17:48:58 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from orion.ac.hmc.edu (Orion.AC.HMC.Edu [134.173.32.20]) by hub.freebsd.org (Postfix) with ESMTP id AACC437B8C7 for ; Mon, 10 Apr 2000 17:48:51 -0700 (PDT) (envelope-from brdavis@orion.ac.hmc.edu) Received: (from brdavis@localhost) by orion.ac.hmc.edu (8.8.8/8.8.8) id RAA10541; Mon, 10 Apr 2000 17:48:49 -0700 (PDT) Date: Mon, 10 Apr 2000 17:48:43 -0700 From: Brooks Davis To: Spidey Cc: bugs@freebsd.org Subject: Re: bin/17910: Do not allow 'operators' to drop to single user via shutdown Message-ID: <20000410174843.A6634@orion.ac.hmc.edu> References: <20000410205113.4E0C219BC@anarcat.dyndns.org> <20000410142640.A16425@orion.ac.hmc.edu> <14578.29173.529447.273595@anarcat.dyndns.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre4i In-Reply-To: <14578.29173.529447.273595@anarcat.dyndns.org>; from beaupran@iro.umontreal.ca on Mon, Apr 10, 2000 at 08:29:41PM -0400 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Apr 10, 2000 at 08:29:41PM -0400, Spidey wrote: > Oh. The system asks the root password on single-user shutdown when the > console is marked as insecure? That is great. I think it solves it all. From /etc/ttys: # If console is marked "insecure", then init will ask for the root password # when going to single-user mode. You do that by removing the secure flag. If you're happy with this solution, please reply and ask that the PR be closed (I can't do it.) > I found it weird that this was all wide open like that. :)) Giving out operator perms is probalby not the best idea. If nothing else, a user in group operator can read any file on the system if they are willing to take the time to do it. Hopefully some of these problems will be lessened by the capabilities code from the TrustedBSD project (http://www.TrustedBSD.org/). For now, if you need to give out operator perms, you'll have to expect to close related holes yourself. -- Brooks -- Any statement of the form "X is the one, true Y" is FALSE. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 10 17:50: 5 2000 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 E703237B845 for ; Mon, 10 Apr 2000 17:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA27251; Mon, 10 Apr 2000 17:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from rr.com (rdu25-22-143.nc.rr.com [24.25.22.143]) by hub.freebsd.org (Postfix) with ESMTP id 4179C37B541 for ; Mon, 10 Apr 2000 17:49:35 -0700 (PDT) (envelope-from rhh@rr.com) Received: (from rhh@localhost) by rr.com (8.9.3/8.9.3) id UAA13808; Mon, 10 Apr 2000 20:48:48 -0400 (EDT) (envelope-from rhh) Message-Id: <200004110048.UAA13808@rr.com> Date: Mon, 10 Apr 2000 20:48:48 -0400 (EDT) From: aa8vb@ipass.net Reply-To: aa8vb@ipass.net To: FreeBSD-gnats-submit@freebsd.org Cc: aa8vb@ipass.net X-Send-Pr-Version: 3.2 Subject: i386/17914: float-to-double core dump on 3.4R Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17914 >Category: i386 >Synopsis: float-to-double core dump on 3.4R >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 Apr 10 17:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Randall Hopper >Release: FreeBSD 3.4-RELEASE i386 >Organization: self >Environment: Stock 3.4-RELEASE (gcc 2.7.2.3 as shipped) >Description: #include main() { float f = FLT_MAX; double d; f = f * 2; d = f; } Delete the "d=f" line and it doesn't core. Put it in and it does (floating-point exception). From this it appears there may be a bug in the float-to-double promotion when f is Inf (or, at least I'd expect that f is Inf). Note that the core dump does not occur when the Inf is generated, but only when it is promoted to a double. I first noticed this by trying to printf the value of f after f=f*2 and got the same core-dump behavior (due to float-to-double arg promotion). >How-To-Repeat: Paste the above snippet into a .c file, compile with cc -o tst tst.c, and execute. >Fix: Unknown. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 10 18:20: 6 2000 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 0399037B803 for ; Mon, 10 Apr 2000 18:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA30126; Mon, 10 Apr 2000 18:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 482AE37B5E0 for ; Mon, 10 Apr 2000 18:11:02 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA29422; Mon, 10 Apr 2000 18:11:02 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004110111.SAA29422@freefall.freebsd.org> Date: Mon, 10 Apr 2000 18:11:02 -0700 (PDT) From: kyle@rageout.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/17915: pcm0 direct DMA issues. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17915 >Category: i386 >Synopsis: pcm0 direct DMA issues. >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Apr 10 18:20:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Kyle Patrick >Release: 5.0-current, 4.0-STABLE >Organization: >Environment: FreeBSD violent.rageout.org 4.0-STABLE FreeBSD 4.0-STABLE #0: Sat Apr 8 11:19:52 EDT 2000 kyle@violent.rageout.org:/usr/src/sys/compile/VIOLENT i386 >Description: 4.0-STABLE & 5.0-CURRENT (build from 4/09/2000) pcm0 driver does not seam to support any app that uses a direct DMA, ie(quake3) etc. Soundcards tried: SB16- non-pnp sb32-awe32, soundblaster vibra16 >How-To-Repeat: Use direct DMA access with the new PCM driver. (no sound output) >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 10 19: 3:34 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from anarcat.dyndns.org (phobos.IRO.UMontreal.CA [132.204.20.20]) by hub.freebsd.org (Postfix) with ESMTP id 0DF9037B829 for ; Mon, 10 Apr 2000 19:03:29 -0700 (PDT) (envelope-from spidey@anarcat.dyndns.org) Received: by anarcat.dyndns.org (Postfix, from userid 1000) id 6924F1BF5; Mon, 10 Apr 2000 22:02:16 -0400 (EDT) From: Spidey MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14578.34727.921383.875698@anarcat.dyndns.org> Date: Mon, 10 Apr 2000 22:02:15 -0400 (EDT) To: Brooks Davis Cc: bugs@freebsd.org Subject: Re: bin/17910: Do not allow 'operators' to drop to single user via shutdown In-Reply-To: <20000410174843.A6634@orion.ac.hmc.edu> References: <20000410205113.4E0C219BC@anarcat.dyndns.org> <20000410142640.A16425@orion.ac.hmc.edu> <14578.29173.529447.273595@anarcat.dyndns.org> <20000410174843.A6634@orion.ac.hmc.edu> X-Mailer: VM 6.72 under 21.1 (patch 8) "Bryce Canyon" XEmacs Lucid Reply-To: beaupran@iro.umontreal.ca Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'm happy with the solution. I just don't know how to "ask that the PR be closed". I just send another PR? Or do I write to FBSD-gnats-whatever? Yes, I though about the problems of having "operator" users... But my users are unlikely to be so wise, for now.. The shutdown thing was too obvious. A simple typo gave single-user mode in my setup (my console is "secure"). What "code" in TrustedBSD will change that? Thanks again --- At 17:48 of April 10, Big Brother made Brooks Davis write: > On Mon, Apr 10, 2000 at 08:29:41PM -0400, Spidey wrote: > > Oh. The system asks the root password on single-user shutdown when the > > console is marked as insecure? That is great. I think it solves it all. > > >From /etc/ttys: > > # If console is marked "insecure", then init will ask for the root password > # when going to single-user mode. > > You do that by removing the secure flag. > > If you're happy with this solution, please reply and ask that the PR be > closed (I can't do it.) > > > I found it weird that this was all wide open like that. :)) > > Giving out operator perms is probalby not the best idea. If nothing > else, a user in group operator can read any file on the system if they > are willing to take the time to do it. Hopefully some of these problems > will be lessened by the capabilities code from the TrustedBSD project > (http://www.TrustedBSD.org/). For now, if you need to give out operator > perms, you'll have to expect to close related holes yourself. > > -- Brooks > > -- > Any statement of the form "X is the one, true Y" is FALSE. -- Si l'image donne l'illusion de savoir C'est que l'adage pretend que pour croire, L'important ne serait que de voir Lofofora To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 10 20:40: 6 2000 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 CF82D37B8C7 for ; Mon, 10 Apr 2000 20:40:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA43415; Mon, 10 Apr 2000 20:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 10 Apr 2000 20:40:03 -0700 (PDT) Message-Id: <200004110340.UAA43415@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: lioux@uol.com.br Subject: Re: kern/17453: Added sys/pci/ device identification for Aureal Sound Cards Reply-To: lioux@uol.com.br Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/17453; it has been noted by GNATS. From: lioux@uol.com.br To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: kern/17453: Added sys/pci/ device identification for Aureal Sound Cards Date: Tue, 11 Apr 2000 00:31:38 -0300 I would like this PR to be close. I had a little chat with the DEV wiz and I this PR is no longer necessary. :) -- Thanks mferreira To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 10 20:50: 4 2000 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 F2BC337B9C5 for ; Mon, 10 Apr 2000 20:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA44113; Mon, 10 Apr 2000 20:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 10 Apr 2000 20:50:02 -0700 (PDT) Message-Id: <200004110350.UAA44113@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Kevin Day Subject: Re: i386/17914: float-to-double core dump on 3.4R Reply-To: Kevin Day Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/17914; it has been noted by GNATS. From: Kevin Day To: aa8vb@ipass.net Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: i386/17914: float-to-double core dump on 3.4R Date: Mon, 10 Apr 2000 22:47:51 -0500 (CDT) > #include > > main() > { > float f = FLT_MAX; > double d; > f = f * 2; > d = f; > } > > Delete the "d=f" line and it doesn't core. Put it in and it does > (floating-point exception). > > From this it appears there may be a bug in the float-to-double > promotion when f is Inf (or, at least I'd expect that f is Inf). > > Note that the core dump does not occur when the Inf is generated, > but only when it is promoted to a double. > > I first noticed this by trying to printf the value of f after f=f*2 > and got the same core-dump behavior (due to float-to-double arg > promotion). See 'man setfpmask'. The default behavior in 3.4 was to cause a SIGFPE if you do anything that causes an 'overflow' to be generated from the FPU. I admit this is weird that it's doing it here, but I don't claim to understand what happens in a case like this. :) (4.0 and higher changed their defaults to ignore certain exceptions) Kevin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 10 21:40: 5 2000 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 E70DA37B595 for ; Mon, 10 Apr 2000 21:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA48579; Mon, 10 Apr 2000 21:40:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 10 Apr 2000 21:40:04 -0700 (PDT) Message-Id: <200004110440.VAA48579@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Bruce Evans Subject: Re: i386/17914: float-to-double core dump on 3.4R Reply-To: Bruce Evans Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/17914; it has been noted by GNATS. From: Bruce Evans To: aa8vb@ipass.net Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: i386/17914: float-to-double core dump on 3.4R Date: Tue, 11 Apr 2000 14:39:21 +1000 (EST) On Mon, 10 Apr 2000 aa8vb@ipass.net wrote: > >Description: > > #include > > main() > { > float f = FLT_MAX; > double d; > f = f * 2; > d = f; > } > > Delete the "d=f" line and it doesn't core. Put it in and it does > (floating-point exception). > > From this it appears there may be a bug in the float-to-double > promotion when f is Inf (or, at least I'd expect that f is Inf). No. "f * 2" gives undefined behaviour since it overflows. For FreeBSD-3.4 on i386's, the actual behaviour is to leave the operands on the FP stack and cause a SIGFPE on the next FP instruction after the one that overflowed. > Note that the core dump does not occur when the Inf is generated, > but only when it is promoted to a double. Inf is not generated. The operands are left on the FP stack for the SIGFPE handler to fix up. This behaviour is easy to see using gdb ("display/i $pc", "stepi" and "info float"). Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 10 21:50: 9 2000 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 6AAFF37B8C2 for ; Mon, 10 Apr 2000 21:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA49174; Mon, 10 Apr 2000 21:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D47D237B595 for ; Mon, 10 Apr 2000 21:41:32 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA48667; Mon, 10 Apr 2000 21:41:32 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004110441.VAA48667@freefall.freebsd.org> Date: Mon, 10 Apr 2000 21:41:32 -0700 (PDT) From: pir-freebsd@pir.net To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/17920: ata/ad driver HARD ERROR failure with internal disk on an NCR laptop Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17920 >Category: kern >Synopsis: ata/ad driver HARD ERROR failure with internal disk on an NCR laptop >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 Apr 10 21:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Peter Radcliffe >Release: 4.0-STABLE as of 2000-4-7 >Organization: >Environment: FreeBSD foop 4.0-STABLE FreeBSD 4.0-STABLE #5: Mon Apr 10 19:01:25 EDT 2000 pir@peem:/usr/src/sys/compile/WD i386 >Description: hardware: NEC Versa V/50 laptop. 4.0 ATA driver fails with a HARD ERROR on the internal IDE disk. From the 4.0-R install floppies the ATA controller is recognised during boot and then during device probe a pair of hard errors in the debug screen; ad0: HARD READ ERROR blk# 0 status 51 error=04 ad0: reading primary partition stable: error reading fsbn: 0 ad0: HARD READ ERROR blk# 0 status 51 error=04 ad0: reading primary partition stable: error reading fsbn: 0 I did the install by installing a minimal 3.4-PAO, which worked fine, and then a manual installation of 4.0 via NFS (sysinstall wouldn't recognise wd0 during a floppy install with a custom wdc kernel on kern.flp). I built a kernel on a 4.0-S machine using wdc instead of ata which works perfectly; wdc0 at port 0x1f0-0x1f7 irq 14 on isa0 wdc0: unit 0 (wd0): wd0: 328MB (672525 sectors), 915 cyls, 15 heads, 49 S/T, 512 B/S wdc0: driver is using old-style compatability shims If I build an ATA kernel and try to boot from it I get; ad0: 320MB [915/15/49] at ata0-master using BIOSPIO Mounting root from ufs:/dev/ad0s1a ad0: HARD ERROR blk# 0 status=51 error=04 ad0: reading primary partition stable: error reading fsbn 0 It was suggested that this could be the pio problem, but the messages I've found imply it is already trying to use pio mode. >How-To-Repeat: boot this laptop from 4.0-R install floppies. >Fix: :/ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 10 23:10: 5 2000 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 7BD3E37B7E7 for ; Mon, 10 Apr 2000 23:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA56831; Mon, 10 Apr 2000 23:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from ada.eu.org (marvin.enst.fr [137.194.161.2]) by hub.freebsd.org (Postfix) with ESMTP id C6CC337B511 for ; Mon, 10 Apr 2000 23:08:40 -0700 (PDT) (envelope-from sam@ada.eu.org) Received: from antinea.enst.fr (antinea.enst.fr [137.194.160.145]) by ada.eu.org (Postfix) with ESMTP id 8E1031905C for ; Tue, 11 Apr 2000 08:08:36 +0200 (CEST) Received: by antinea.enst.fr (Postfix, from userid 1000) id CF7964CD; Tue, 11 Apr 2000 08:08:35 +0200 (CEST) Message-Id: <20000411060835.CF7964CD@antinea.enst.fr> Date: Tue, 11 Apr 2000 08:08:35 +0200 (CEST) From: Samuel Tardieu Reply-To: Samuel Tardieu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/17922: send-pr should be upgraded Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17922 >Category: bin >Synopsis: send-pr should be upgraded >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Apr 10 23:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Samuel Tardieu >Release: FreeBSD 5.0-CURRENT i386 >Organization: TELECOM Paris >Environment: >Description: It looks like send-pr comes from GNATS 3.2. On the WWW site , one can read: There is a lot of confusion about the status of GNATS. The last official release of GNATS was version 3.2 in 1993. However, GNATS 3.2 is really broken, don't use it. Many major advances have been made to GNATS in the last couple of years, including multiple database support, customized fields, and comprehensive WWW and Tk based front-ends. Switching to GNATS 3.113, released 1999-11-30, eases the use of send-pr for both FreeBSD and other sites, with only one shell script. >How-To-Repeat: >Fix: Use GNATS 3.113. >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 Apr 10 23:20: 6 2000 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 9E12237B843 for ; Mon, 10 Apr 2000 23:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA58338; Mon, 10 Apr 2000 23:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5479037B596 for ; Mon, 10 Apr 2000 23:12:43 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA57107; Mon, 10 Apr 2000 23:12:43 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004110612.XAA57107@freefall.freebsd.org> Date: Mon, 10 Apr 2000 23:12:43 -0700 (PDT) From: phiber@phiber.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/17923: SB16 ISA-PnP sometimes produces loud static with pcm driver Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17923 >Category: kern >Synopsis: SB16 ISA-PnP sometimes produces loud static with pcm driver >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 Apr 10 23:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mark Abene >Release: 4.0-RELEASE >Organization: Crossbar Security, Inc. >Environment: FreeBSD ziggurat.phiber.com 4.0-RELEASE FreeBSD 4.0-RELEASE #3: Sun Apr 9 00:01:28 EDT 2000 root@ziggurat.phiber.com:/usr/src/sys/compile/ZIGGURAT alpha >Description: I'm using an Alpha PC164 with an original SB16 ISA-PnP card. When playing mp3's, with either xmms 1.0.1 or mpg123q, I randomly get LOUD static instead of the expected output. If the song starts fine, it will play fine in its entirety. The problem happens at random when you first try to play an mp3. If you stop it and try again, it usually plays just fine. I'm simply doing a "device pcm" in my kernel config file. The card is detected and initialized just fine. dmesg produces: sbc0: at port 0x220-0x22f,0x330-0x331,0x388-0x38b irq 5 drq 1,3 on isa0 sbc0: setting card to irq 5, drq 1, 3 sbc0: interrupting at ISA irq 5 pcm0: on sbc0 For what it's worth, I reported this problem on the freebsd-alpha mailing list, and another user said he has the identical problem on an *intel* box with the same soundcard, so this may not be alpha specific. >How-To-Repeat: Play a series of mp3's with xmms. It will eventually hit a song and play LOUD static. Stopping it and hitting play again, and typically it will then play fine. Or, play the same mp3 repeatedly with mpg123. On average, 1 out of 5 times it will screech static and has to be interrupted. >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 Apr 11 2:14:34 2000 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 0EF5C37B64B; Tue, 11 Apr 2000 02:14:32 -0700 (PDT) (envelope-from roberto@FreeBSD.org) Received: (from roberto@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA78858; Tue, 11 Apr 2000 02:14:31 -0700 (PDT) (envelope-from roberto@FreeBSD.org) Date: Tue, 11 Apr 2000 02:14:31 -0700 (PDT) From: Message-Id: <200004110914.CAA78858@freefall.freebsd.org> To: roberto@FreeBSD.org, freebsd-bugs@FreeBSD.org, phk@FreeBSD.org Subject: Re: kern/17878: Jail user can change priority of outside processes Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Jail user can change priority of outside processes Responsible-Changed-From-To: freebsd-bugs->phk Responsible-Changed-By: roberto Responsible-Changed-When: Tue Apr 11 02:13:57 PDT 2000 Responsible-Changed-Why: jail is Poul-Henning'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 Apr 11 4:10: 6 2000 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 9753A37BA3E for ; Tue, 11 Apr 2000 04:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA91485; Tue, 11 Apr 2000 04:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.surf1.de (mail.Surf1.de [194.25.165.21]) by hub.freebsd.org (Postfix) with ESMTP id C4E4537B8EC for ; Tue, 11 Apr 2000 04:04:10 -0700 (PDT) (envelope-from alex@cichlids.com) Received: from cichlids.com (pC19F544E.dip0.t-ipconnect.de [193.159.84.78]) by mail.surf1.de (8.9.3/8.9.3) with ESMTP id MAA07360 for ; Tue, 11 Apr 2000 12:03:46 +0200 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by cichlids.com (Postfix) with ESMTP id 4BDC0AC2C for ; Tue, 11 Apr 2000 13:07:08 +0200 (CEST) Received: (from alex@localhost) by cichlids.cichlids.com (8.9.3/8.9.3) id NAA04498; Tue, 11 Apr 2000 13:04:06 +0200 (CEST) (envelope-from alex) Message-Id: <200004111104.NAA04498@cichlids.cichlids.com> Date: Tue, 11 Apr 2000 13:04:06 +0200 (CEST) From: alex@big.endian.de Reply-To: alex@cichlids.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/17924: ld -lF bug Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17924 >Category: bin >Synopsis: ld -lF bug >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 Apr 11 04:10:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Alexander Langer >Release: FreeBSD 5.0-CURRENT i386 >Organization: fu >Environment: HEAD >Description: ls -lF adds two slashes at the end of a directory: alex:~ $ ls -dlF / drwxr-xr-x 22 root wheel 1024 4 Apr 22:57 // >How-To-Repeat: see above. >Fix: This is only a bug report, since I really have no time to fix it now. this is kinda trivial to fix, so someone else might want to do it. I'll do in three weeks, if noone else did it until then. Alex >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 Apr 11 4:12:15 2000 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 D24F337B8EC; Tue, 11 Apr 2000 04:12:13 -0700 (PDT) (envelope-from roberto@FreeBSD.org) Received: (from roberto@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA91807; Tue, 11 Apr 2000 04:12:13 -0700 (PDT) (envelope-from roberto@FreeBSD.org) Date: Tue, 11 Apr 2000 04:12:13 -0700 (PDT) From: Message-Id: <200004111112.EAA91807@freefall.freebsd.org> To: sam@ada.eu.org, roberto@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/17879: moused -E default value is unusable Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: moused -E default value is unusable State-Changed-From-To: open->closed State-Changed-By: roberto State-Changed-When: Tue Apr 11 04:11:35 PDT 2000 State-Changed-Why: Patch applied in revisions 1.44 and 1.37.2.4 (5.0-CURRENT and RELENG_4). Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 4:40:12 2000 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 E861C37BB02 for ; Tue, 11 Apr 2000 04:40:09 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA94585; Tue, 11 Apr 2000 04:40:09 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 11 Apr 2000 04:40:09 -0700 (PDT) Message-Id: <200004111140.EAA94585@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Jay Krell" Subject: Re: kern/17871: starting to accumulate undeletable directories Reply-To: "Jay Krell" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/17871; it has been noted by GNATS. From: "Jay Krell" To: "Jeroen Ruigrok/Asmodai" Cc: Subject: Re: kern/17871: starting to accumulate undeletable directories Date: Tue, 11 Apr 2000 04:40:52 -0700 This file system caused repeated kernel panics. It was a new file system (like a day old), and I've been able to "sloppily repro" this is a lot, "just" by reinstall BSD from scratch, ftp over a FreeBSDCvsRepository.tar.gz, tar xvfz it, and try to rm -rf it, in parallel to the tar xvfz, build and fetch ports, hours to days of this (mainly of fetching and building ports and cvsuping the repository, only once per reinstall tar xvfz'ing the repository), and it always goes bad, with 3.4 Release, 3.4-Current, 4.0-Release, and 4.0-Current. I've given up on FreeBSD for now and am giving Linux a shot. Maybe it's a hardware problem.. I've had repeated file system corruption and hangs and panics with newly fresh BSD installs. The file system has been formatted over. What's ls -ailosF? Sorry, - Jay -----Original Message----- From: Jeroen Ruigrok/Asmodai To: jay.krell@cornell.edu Cc: freebsd-gnats-submit@FreeBSD.org Date: Monday, April 10, 2000 12:27 PM Subject: Re: kern/17871: starting to accumulate undeletable directories >-On [20000409 08:00], jay.krell@cornell.edu (jay.krell@cornell.edu) wrote: >> >>jayk-bsd1# ls -l >>drwxr-xr-x 5 jayk jayk 512 Apr 8 13:15 delete >>drwxr-xr-x 3 jayk jayk 512 Apr 8 20:18 delete2 >>drwxr-xr-x 3 jayk jayk 512 Apr 8 20:21 delete3 > >What does ls -ailosF say? > >-- >Jeroen Ruigrok vd Werven/Asmodai asmodai@[wxs.nl|bart.nl|freebsd.org] >Documentation nutter/C-rated Coder BSD: Technical excellence at its best >The BSD Programmer's Documentation Project >By thy words thou shalt be condemned... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 5:30: 5 2000 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 C957D37B6CB for ; Tue, 11 Apr 2000 05:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA99053; Tue, 11 Apr 2000 05:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from radiac.mine.nu (h186n2fls20o974.telia.com [212.181.170.186]) by hub.freebsd.org (Postfix) with ESMTP id ADB9337B6CB for ; Tue, 11 Apr 2000 05:24:51 -0700 (PDT) (envelope-from ps@radiac.mine.nu) Received: (from ps@localhost) by radiac.mine.nu (8.9.3/8.9.3) id OAA18505; Tue, 11 Apr 2000 14:25:13 +0200 (CEST) (envelope-from ps) Message-Id: <200004111225.OAA18505@radiac.mine.nu> Date: Tue, 11 Apr 2000 14:25:13 +0200 (CEST) From: Patrik Sundberg Reply-To: ps@radiac.mine.nu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: i386/17926: psm device problems with apm resume Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17926 >Category: i386 >Synopsis: psm device problems with apm resume >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Apr 11 05:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Patrik Sundberg >Release: FreeBSD 4.0-STABLE i386 >Organization: none >Environment: FreeBSD radiac.mine.nu 4.0-STABLE FreeBSD 4.0-STABLE #9: Sat Apr 1 05:43:35 CEST 2000 root@radiac.mine.nu:/usr/src/sys/compile/RADIAC i386 >Description: After an apm resume I always get this message: Apr 11 13:38:10 radiac /kernel: psmintr: out of sync (0080 != 0000). and I have to restart moused in order to get my mouse working again. >How-To-Repeat: use a ps/2 mouse with moused - let your computer go to standby or suspended mode and then resume. >Fix: unknown.. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 5:40: 7 2000 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 D9DB537B9DF for ; Tue, 11 Apr 2000 05:40:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA99726; Tue, 11 Apr 2000 05:40:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 11 Apr 2000 05:40:04 -0700 (PDT) Message-Id: <200004111240.FAA99726@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Alexander Langer Subject: Re: bin/17924: ld -lF bug Reply-To: Alexander Langer Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/17924; it has been noted by GNATS. From: Alexander Langer To: Anatoly Vorobey Cc: freebsd-gnats-submit@freebsd.org Subject: Re: bin/17924: ld -lF bug Date: Tue, 11 Apr 2000 14:30:13 +0200 Thus spake Anatoly Vorobey (mellon@pobox.com): > > ls -lF adds two slashes at the end of a directory: > I don't know that this is a bug. '/' is the name of the "file", > and the other '/' is the mode char. To "fix" this, one would have > to special-case the root directory. No. It's not a special case. it's a bug: alex:~ $ ls -ldF Mail drwx------ 8 alex alex 512 11 Apr 12:32 Mail/ alex:~ $ ls -ldF Mail/ drwx------ 8 alex alex 512 11 Apr 12:32 Mail// Alex -- I need a new ~/.sig. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 5:50: 5 2000 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 26C6F37B64B for ; Tue, 11 Apr 2000 05:50:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA00975; Tue, 11 Apr 2000 05:50:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 11 Apr 2000 05:50:04 -0700 (PDT) Message-Id: <200004111250.FAA00975@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: bin/17922: send-pr should be upgraded Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/17922; it has been noted by GNATS. From: Sheldon Hearn To: Samuel Tardieu Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/17922: send-pr should be upgraded Date: Tue, 11 Apr 2000 14:46:30 +0200 On Tue, 11 Apr 2000 08:08:35 +0200, Samuel Tardieu wrote: > It looks like send-pr comes from GNATS 3.2. On the WWW site > , one can read: Could you give us an indication of what's changed in the send-pr supplied with GNATS 3.113? 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 Apr 11 5:51:22 2000 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 7FADF37B52D; Tue, 11 Apr 2000 05:51:20 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA01250; Tue, 11 Apr 2000 05:51:20 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 11 Apr 2000 05:51:20 -0700 (PDT) From: Message-Id: <200004111251.FAA01250@freefall.freebsd.org> To: beaupran@iro.umontreal.ca, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/17910: Do not allow 'operators' to drop to single user via shutdown Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Do not allow 'operators' to drop to single user via shutdown State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Tue Apr 11 05:50:36 PDT 2000 State-Changed-Why: Asked and answered, closed at the originator's request. :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 5:53:18 2000 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 644EF37B5DE; Tue, 11 Apr 2000 05:53:17 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA01488; Tue, 11 Apr 2000 05:53:17 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 11 Apr 2000 05:53:17 -0700 (PDT) From: Message-Id: <200004111253.FAA01488@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, sos@FreeBSD.org Subject: Re: kern/17920: ata/ad driver HARD ERROR failure with internal disk on an NCR laptop Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ata/ad driver HARD ERROR failure with internal disk on an NCR laptop Responsible-Changed-From-To: freebsd-bugs->sos Responsible-Changed-By: sheldonh Responsible-Changed-When: Tue Apr 11 05:52:45 PDT 2000 Responsible-Changed-Why: Ah, an ata-related PR with a datapoint. Perhaps Soren can help. :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 5:59:25 2000 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 8E5ED37B5DE; Tue, 11 Apr 2000 05:59:24 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA02272; Tue, 11 Apr 2000 05:59:24 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 11 Apr 2000 05:59:24 -0700 (PDT) From: Message-Id: <200004111259.FAA02272@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, cg@FreeBSD.org Subject: Re: kern/17923: SB16 ISA-PnP sometimes produces loud static with pcm driver Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: SB16 ISA-PnP sometimes produces loud static with pcm driver Responsible-Changed-From-To: freebsd-bugs->cg Responsible-Changed-By: sheldonh Responsible-Changed-When: Tue Apr 11 05:58:34 PDT 2000 Responsible-Changed-Why: Over to the driver's maintainer. I've got a feeling that this was recently fixed in -CURRENT, in which case you might need to wait for the fix to be merged onto the RELENG_4 branch. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 6: 2:19 2000 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 1AB2437B52D; Tue, 11 Apr 2000 06:02:18 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA02649; Tue, 11 Apr 2000 06:02:16 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 11 Apr 2000 06:02:16 -0700 (PDT) From: Message-Id: <200004111302.GAA02649@freefall.freebsd.org> To: alex@cichlids.com, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/17924: ld -lF bug Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ld -lF bug State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Tue Apr 11 06:00:32 PDT 2000 State-Changed-Why: I can't find another UNIX flavour that _doesn't_ show the root directory (/) as "//" when asked to list it with a type indicator (also /). This isn't a bug at all. Have a look at the manual page for ls(1), particularly its description of the -F flag. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 6: 3: 8 2000 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 585C137BA09; Tue, 11 Apr 2000 06:03:07 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA02762; Tue, 11 Apr 2000 06:03:07 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 11 Apr 2000 06:03:07 -0700 (PDT) From: Message-Id: <200004111303.GAA02762@freefall.freebsd.org> To: lioux@uol.com.br, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/17453: Added sys/pci/ device identification for Aureal Sound Cards Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Added sys/pci/ device identification for Aureal Sound Cards State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Tue Apr 11 06:02:42 PDT 2000 State-Changed-Why: Closed as per originator's request. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 6: 4:48 2000 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 292D437BA20; Tue, 11 Apr 2000 06:04:47 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA02936; Tue, 11 Apr 2000 06:04:47 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 11 Apr 2000 06:04:47 -0700 (PDT) From: Message-Id: <200004111304.GAA02936@freefall.freebsd.org> To: aa8vb@ipass.net, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/17914: float-to-double core dump on 3.4R Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: float-to-double core dump on 3.4R State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Tue Apr 11 06:04:16 PDT 2000 State-Changed-Why: Asked and answered. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 6: 8:37 2000 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 BE60B37BA09; Tue, 11 Apr 2000 06:08:35 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA03394; Tue, 11 Apr 2000 06:08:35 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 11 Apr 2000 06:08:35 -0700 (PDT) From: Message-Id: <200004111308.GAA03394@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, archie@FreeBSD.org Subject: Re: kern/17911: unitialized var in netgraph msg code Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: unitialized var in netgraph msg code Responsible-Changed-From-To: freebsd-bugs->archie Responsible-Changed-By: sheldonh Responsible-Changed-When: Tue Apr 11 06:08:06 PDT 2000 Responsible-Changed-Why: Over to the currently active netgraph person. :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 6:20: 7 2000 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 C718037B616 for ; Tue, 11 Apr 2000 06:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA04747; Tue, 11 Apr 2000 06:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 11 Apr 2000 06:20:03 -0700 (PDT) Message-Id: <200004111320.GAA04747@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Samuel Tardieu Subject: Re: bin/17922: send-pr should be upgraded Reply-To: Samuel Tardieu Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/17922; it has been noted by GNATS. From: Samuel Tardieu To: Sheldon Hearn Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/17922: send-pr should be upgraded Date: Tue, 11 Apr 2000 15:16:31 +0200 On 11/04, Sheldon Hearn wrote: | Could you give us an indication of what's changed in the send-pr | supplied with GNATS 3.113? >From what I can see in the diff: - better handling of the TMPDIR variable in case it has a trailing / - better handling of what to do if a user has no $LOGNAME and no $USER - allow a submitter to Cc: other addresses by using "-c addresses" - allow a submitter to set the severity from command-line with "-s severity" - add a new header field X-GNATS-Notify to ask for notification or not - trie to include system, architecture and machine description Sam To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 6:20:10 2000 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 1C0C737B6CB for ; Tue, 11 Apr 2000 06:20:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA04755; Tue, 11 Apr 2000 06:20:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 11 Apr 2000 06:20:05 -0700 (PDT) Message-Id: <200004111320.GAA04755@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Samuel Tardieu Subject: Re: bin/17922: send-pr should be upgraded Reply-To: Samuel Tardieu Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/17922; it has been noted by GNATS. From: Samuel Tardieu To: Sheldon Hearn Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/17922: send-pr should be upgraded Date: Tue, 11 Apr 2000 15:18:54 +0200 I must add that one bug has been recently discovered in this send-pr. The fix is: --- send-pr.sh.orig Tue Apr 11 15:18:15 2000 +++ send-pr.sh Tue Apr 11 15:18:24 2000 @@ -329,7 +329,7 @@ To: $GNATS_ADDR Subject: From: $FROM -Reply-To: $REPLYTO +Reply-To: $REPLY_TO Cc: $CC X-send-pr-version: $VERSION X-GNATS-Notify: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 6:22:52 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from axl.ops.uunet.co.za (axl.ops.uunet.co.za [196.31.1.175]) by hub.freebsd.org (Postfix) with ESMTP id 758D437BA09 for ; Tue, 11 Apr 2000 06:22:47 -0700 (PDT) (envelope-from sheldonh@axl.ops.uunet.co.za) Received: from sheldonh (helo=axl.ops.uunet.co.za) by axl.ops.uunet.co.za with local-esmtp (Exim 3.13 #1) id 12f0cc-00023N-00; Tue, 11 Apr 2000 15:22:26 +0200 From: Sheldon Hearn To: Alexander Langer Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: bin/17924: ld -lF bug In-reply-to: Your message of "Tue, 11 Apr 2000 05:40:04 MST." <200004111240.FAA99726@freefall.freebsd.org> Date: Tue, 11 Apr 2000 15:22:26 +0200 Message-ID: <7896.955459346@axl.ops.uunet.co.za> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, 11 Apr 2000 05:40:04 MST, Alexander Langer wrote: > No. It's not a special case. it's a bug: > > alex:~ $ ls -ldF Mail > drwx------ 8 alex alex 512 11 Apr 12:32 Mail/ > alex:~ $ ls -ldF Mail/ > drwx------ 8 alex alex 512 11 Apr 12:32 Mail// And again I say it: I can't find another UNIX flavour that doesn't do this. It's expected behaviour. Can you provide an example of a modern UNIX system that does _not_ do this? 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 Apr 11 6:25: 4 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from mail.surf1.de (mail.Surf1.de [194.25.165.21]) by hub.freebsd.org (Postfix) with ESMTP id 504DB37BA71; Tue, 11 Apr 2000 06:24:59 -0700 (PDT) (envelope-from alex@cichlids.com) Received: from cichlids.com (pC19F544E.dip0.t-ipconnect.de [193.159.84.78]) by mail.surf1.de (8.9.3/8.9.3) with ESMTP id OAA04865; Tue, 11 Apr 2000 14:24:16 +0200 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by cichlids.com (Postfix) with ESMTP id 7B711AC2C; Tue, 11 Apr 2000 15:27:14 +0200 (CEST) Received: (from alex@localhost) by cichlids.cichlids.com (8.9.3/8.9.3) id PAA07332; Tue, 11 Apr 2000 15:24:12 +0200 (CEST) (envelope-from alex) Date: Tue, 11 Apr 2000 15:24:11 +0200 From: Alexander Langer To: sheldonh@FreeBSD.ORG Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: bin/17924: ld -lF bug Message-ID: <20000411152411.A7193@cichlids.cichlids.com> References: <200004111302.GAA02649@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200004111302.GAA02649@freefall.freebsd.org>; from sheldonh@FreeBSD.ORG on Tue, Apr 11, 2000 at 06:02:16AM -0700 X-PGP-Fingerprint: 44 28 CA 4C 46 5B D3 A8 A8 E3 BA F3 4E 60 7D 7F X-Verwirrung: Dieser Header dient der allgemeinen Verwirrung. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thus spake sheldonh@FreeBSD.ORG (sheldonh@FreeBSD.ORG): > I can't find another UNIX flavour that _doesn't_ show the root > directory (/) as "//" when asked to list it with a type That's true (just checked). But this doesn't mean it's not wrong. :) > indicator (also /). This isn't a bug at all. Have a look at > the manual page for ls(1), particularly its description of the > -F flag. What I really wonder is is the difference between ls -ldF Mail and Mail/ then. The manpage says, it adds an /, but if this / is already there, why should it add one more? Ok. It's not logical, but UNIX never has been logical. Hiding, Alex -- I need a new ~/.sig. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 6:26:40 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from mail.surf1.de (mail.Surf1.de [194.25.165.21]) by hub.freebsd.org (Postfix) with ESMTP id 22C2C37BA5D for ; Tue, 11 Apr 2000 06:26:38 -0700 (PDT) (envelope-from alex@cichlids.com) Received: from cichlids.com (pC19F544E.dip0.t-ipconnect.de [193.159.84.78]) by mail.surf1.de (8.9.3/8.9.3) with ESMTP id OAA05278; Tue, 11 Apr 2000 14:26:04 +0200 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by cichlids.com (Postfix) with ESMTP id 7FFA3AC2C; Tue, 11 Apr 2000 15:29:16 +0200 (CEST) Received: (from alex@localhost) by cichlids.cichlids.com (8.9.3/8.9.3) id PAA07390; Tue, 11 Apr 2000 15:26:14 +0200 (CEST) (envelope-from alex) Date: Tue, 11 Apr 2000 15:26:14 +0200 From: Alexander Langer To: Samuel Tardieu Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: bin/17922: send-pr should be upgraded Message-ID: <20000411152614.B7193@cichlids.cichlids.com> References: <200004111320.GAA04747@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200004111320.GAA04747@freefall.freebsd.org>; from sam@inf.enst.fr on Tue, Apr 11, 2000 at 06:20:03AM -0700 X-PGP-Fingerprint: 44 28 CA 4C 46 5B D3 A8 A8 E3 BA F3 4E 60 7D 7F X-Verwirrung: Dieser Header dient der allgemeinen Verwirrung. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thus spake Samuel Tardieu (sam@inf.enst.fr): > - allow a submitter to set the severity from command-line with "-s severity" I've added someting like this using env-vars. not only for severity. > - add a new header field X-GNATS-Notify to ask for notification or not this needs an update of the GNATSd, too, which is bad. > - trie to include system, architecture and machine description We had this earlier, but removed this. Alex -- I need a new ~/.sig. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 6:30: 5 2000 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 2385437BA21 for ; Tue, 11 Apr 2000 06:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA05925; Tue, 11 Apr 2000 06:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 11 Apr 2000 06:30:03 -0700 (PDT) Message-Id: <200004111330.GAA05925@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: i386/17926: psm device problems with apm resume Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/17926; it has been noted by GNATS. From: Sheldon Hearn To: imp@FreeBSD.org, yokota@FreeBSD.org Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: i386/17926: psm device problems with apm resume Date: Tue, 11 Apr 2000 15:25:00 +0200 On Tue, 11 Apr 2000 14:25:13 +0200, Patrik Sundberg wrote: > >Number: 17926 > >Category: i386 > >Synopsis: psm device problems with apm resume Hi gentlemen, Could either of you take a look at this? I haven't assigned the PR, since I'm uncertain which of the two of you is best qualified to look at it. :-) > >Description: > > After an apm resume I always get this message: > Apr 11 13:38:10 radiac /kernel: psmintr: out of sync (0080 != 0000). > > and I have to restart moused in order to get my mouse working > again. > > >How-To-Repeat: > > use a ps/2 mouse with moused - let your computer go to standby > or suspended mode and then resume. 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 Apr 11 6:30: 7 2000 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 680FA37BA8A for ; Tue, 11 Apr 2000 06:30:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA05930; Tue, 11 Apr 2000 06:30:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 11 Apr 2000 06:30:04 -0700 (PDT) Message-Id: <200004111330.GAA05930@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: kern/17909: Panic when removing a pccard which has a seen an IPv6 router advertisement Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/17909; it has been noted by GNATS. From: Sheldon Hearn To: imp@FreeBSD.org, shin@FreeBSD.org Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: kern/17909: Panic when removing a pccard which has a seen an IPv6 router advertisement Date: Tue, 11 Apr 2000 15:27:41 +0200 On Mon, 10 Apr 2000 20:58:54 +0200, Samuel Tardieu wrote: > >Number: 17909 > >Category: kern > >Synopsis: Panic when removing a pccard which has a seen an IPv6 router advertisement Hi gents, I'm contacting you because you are Mr Laptop (Warner) and Mr IPv6 (Inoue-san) respectively and I'm not sure where this one falls. :-) Thanks, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 6:30:25 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from axl.ops.uunet.co.za (axl.ops.uunet.co.za [196.31.1.175]) by hub.freebsd.org (Postfix) with ESMTP id 9BBE737BA8A for ; Tue, 11 Apr 2000 06:30:18 -0700 (PDT) (envelope-from sheldonh@axl.ops.uunet.co.za) Received: from sheldonh (helo=axl.ops.uunet.co.za) by axl.ops.uunet.co.za with local-esmtp (Exim 3.13 #1) id 12f0k3-00025e-00; Tue, 11 Apr 2000 15:30:07 +0200 From: Sheldon Hearn To: Bill Fumerola Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: i386/17906: le ethernet device doesn't work in 4.0 In-reply-to: Your message of "Mon, 10 Apr 2000 10:00:04 MST." <200004101700.KAA97359@freefall.freebsd.org> Date: Tue, 11 Apr 2000 15:30:07 +0200 Message-ID: <8037.955459807@axl.ops.uunet.co.za> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, 10 Apr 2000 10:00:04 MST, Bill Fumerola wrote: > The neat thing about panics is that they have messages. When your machine > is configuered right, they even have backtraces. > > Getting this to work obviously isn't important enough to send us those. Bill, please. If you can't resist the urge to be unnecessarily sarcastic in your replies, leave freebsd-bugs alone. I'm copying this one to the list, since my private pleas for you to tone it down are always dismissed. 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 Apr 11 6:34:18 2000 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 EB79837BA25; Tue, 11 Apr 2000 06:34:16 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA12108; Tue, 11 Apr 2000 06:34:16 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 11 Apr 2000 06:34:16 -0700 (PDT) From: Message-Id: <200004111334.GAA12108@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, cg@FreeBSD.org Subject: Re: kern/17907: Audio record levels are too low Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Audio record levels are too low Responsible-Changed-From-To: freebsd-bugs->cg Responsible-Changed-By: sheldonh Responsible-Changed-When: Tue Apr 11 06:34:00 PDT 2000 Responsible-Changed-Why: Over to the maintainer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 6:37:55 2000 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 243B737B948; Tue, 11 Apr 2000 06:37:54 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA30036; Tue, 11 Apr 2000 06:37:53 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 11 Apr 2000 06:37:53 -0700 (PDT) From: Message-Id: <200004111337.GAA30036@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, dillon@FreeBSD.org Subject: Re: kern/17905: 4.0-SNAP keep on crashing every 3 days Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: 4.0-SNAP keep on crashing every 3 days Responsible-Changed-From-To: freebsd-bugs->dillon Responsible-Changed-By: sheldonh Responsible-Changed-When: Tue Apr 11 06:36:57 PDT 2000 Responsible-Changed-Why: Matt, could you put your Mr. VM hat on and take a look? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 6:53:24 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from axl.ops.uunet.co.za (axl.ops.uunet.co.za [196.31.1.175]) by hub.freebsd.org (Postfix) with ESMTP id 2420537B7E0 for ; Tue, 11 Apr 2000 06:53:21 -0700 (PDT) (envelope-from sheldonh@axl.ops.uunet.co.za) Received: from sheldonh (helo=axl.ops.uunet.co.za) by axl.ops.uunet.co.za with local-esmtp (Exim 3.13 #1) id 12f16P-0002Er-00; Tue, 11 Apr 2000 15:53:13 +0200 From: Sheldon Hearn To: Alexander Langer Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: bin/17924: ld -lF bug In-reply-to: Your message of "Tue, 11 Apr 2000 15:24:11 +0200." <20000411152411.A7193@cichlids.cichlids.com> Date: Tue, 11 Apr 2000 15:53:13 +0200 Message-ID: <8608.955461193@axl.ops.uunet.co.za> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, 11 Apr 2000 15:24:11 +0200, Alexander Langer wrote: > What I really wonder is is the difference between ls -ldF Mail and > Mail/ then. > > The manpage says, it adds an /, but if this / is already there, why > should it add one more? -F Display a slash (/) immediately after each pathname that is a directory, [...] You specified a directory name ending in a slash. The trailing slash in a directory name is legal. The ls(1) utility takes this legal representation of the directory's name and adds a slash to indicate that it's a directory. It's logical in a pleasantly twisted sort of way. :-) 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 Apr 11 7: 0: 5 2000 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 3AE8E37BA36 for ; Tue, 11 Apr 2000 07:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA76166; Tue, 11 Apr 2000 07:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 11 Apr 2000 07:00:04 -0700 (PDT) Message-Id: <200004111400.HAA76166@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: conf/17904: rc.network IPX configuration missing 'ipx' parm for ifconfig Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR conf/17904; it has been noted by GNATS. From: Sheldon Hearn To: jeg@hawk.circa.ufl.edu Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: conf/17904: rc.network IPX configuration missing 'ipx' parm for ifconfig Date: Tue, 11 Apr 2000 15:51:01 +0200 On Mon, 10 Apr 2000 07:30:24 MST, jeg@hawk.circa.ufl.edu wrote: > ifconfig_fxp0_ipx="0x00010010" ^^^ You left out the address family (pointed out to me by someone else). The ifconfig variables in rc.conf always include the address family, so you'd want something like... ifconfig_fxp0_ipx="ipx 0x0010010" That said, I don't see much help for ipx stuff in the rc.conf(5) manual page, nor in defaults/rc.conf . :-( 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 Apr 11 7:10: 3 2000 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 2556337BA46 for ; Tue, 11 Apr 2000 07:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA77280; Tue, 11 Apr 2000 07:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 11 Apr 2000 07:10:02 -0700 (PDT) Message-Id: <200004111410.HAA77280@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: i386/17900: 3Com 3C589D and 3CCE589ET doesn't during install of 4.0-RELEASE Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/17900; it has been noted by GNATS. From: Sheldon Hearn To: eraxpma@verkstad.net Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: i386/17900: 3Com 3C589D and 3CCE589ET doesn't during install of 4.0-RELEASE Date: Tue, 11 Apr 2000 16:09:02 +0200 On Mon, 10 Apr 2000 07:05:39 MST, eraxpma@verkstad.net wrote: > >How-To-Repeat: > Boot 4.0-RELEASE floppies on (Thinkpad 560Z) laptop. Default pc-card > io range and irq options 1 or 2 (line 2 and 3). I tried nfs installation. > Can't ping anything on VT4. What revision of /etc/pccard.conf are you using? There appears to have been support for both your cards for quite a while. Could you show us your /etc/rc.conf and the output of dmesg(8) while you're at it? 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 Apr 11 7:11:34 2000 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 B481737BA09; Tue, 11 Apr 2000 07:11:32 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA77563; Tue, 11 Apr 2000 07:11:32 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 11 Apr 2000 07:11:32 -0700 (PDT) From: Message-Id: <200004111411.HAA77563@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, davidn@FreeBSD.org Subject: Re: bin/17877: Cannot change login group with "pw usermod -g" (on FreeBSD 4.0 only) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Cannot change login group with "pw usermod -g" (on FreeBSD 4.0 only) Responsible-Changed-From-To: freebsd-bugs->davidn Responsible-Changed-By: sheldonh Responsible-Changed-When: Tue Apr 11 07:11:09 PDT 2000 Responsible-Changed-Why: David, could you take a look at this one? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 7:35:53 2000 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 565BE37B645; Tue, 11 Apr 2000 07:35:52 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA84092; Tue, 11 Apr 2000 07:35:52 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 11 Apr 2000 07:35:52 -0700 (PDT) From: Message-Id: <200004111435.HAA84092@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, brian@FreeBSD.org Subject: Re: conf/17865: example ppp filters to keep NetBIOS from keeping link up Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: example ppp filters to keep NetBIOS from keeping link up Responsible-Changed-From-To: freebsd-bugs->brian Responsible-Changed-By: sheldonh Responsible-Changed-When: Tue Apr 11 07:35:19 PDT 2000 Responsible-Changed-Why: Over to Mr. Somers, the ppp man. :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 7:56:37 2000 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 4265337B954; Tue, 11 Apr 2000 07:56:36 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA86524; Tue, 11 Apr 2000 07:56:35 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 11 Apr 2000 07:56:35 -0700 (PDT) From: Message-Id: <200004111456.HAA86524@freefall.freebsd.org> To: purple05@hotmail.com, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/17856: After binary upgrade from 3.4 to 4.0 tcpdump doesnt fully work Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: After binary upgrade from 3.4 to 4.0 tcpdump doesnt fully work State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Tue Apr 11 07:55:17 PDT 2000 State-Changed-Why: This is covered in the ERRATA, which numerous documents relating to installation of FreeBSD encourage you to read. :-) No matter, go have a look now: http://www.freebsd.org/releases/4.0R/errata.html A fix is included. ;-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 8:30: 8 2000 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 E9EDC37BA33 for ; Tue, 11 Apr 2000 08:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA91277; Tue, 11 Apr 2000 08:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from thrush.omix.com (thrush.omix.com [206.40.77.44]) by hub.freebsd.org (Postfix) with ESMTP id 17ADC37B9C5 for ; Tue, 11 Apr 2000 08:26:50 -0700 (PDT) (envelope-from byron@thrush.omix.com) Received: (from byron@localhost) by thrush.omix.com (8.9.3/8.9.2) id IAA94047; Tue, 11 Apr 2000 08:29:22 -0700 (PDT) (envelope-from byron) Message-Id: <200004111529.IAA94047@thrush.omix.com> Date: Tue, 11 Apr 2000 08:29:22 -0700 (PDT) From: byron@omix.com Reply-To: byron@omix.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: conf/17929: pccardd uses /etc/pccard.conf.sample when man page says /etc/pccard.conf Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17929 >Category: conf >Synopsis: pccardd uses /etc/pccard.conf.sample when man page says /etc/pccard.conf >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: Tue Apr 11 08:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Byron Brummer (aka Zenin) >Release: FreeBSD 4.0-RELEASE i386 >Organization: >Environment: ThinkPad 600 laptop. >Description: The man page for pccard(8) says the default configuration file is /etc/pccard.conf, which is false. /etc/defaults/rc.conf changes the config to be /etc/pccard.conf.sample, effectively changing the default for all practical use. As the file is marked .sample and there is no man page for pccard.conf.sample, I assumed it was the same as the /etc/ppp/ppp.shells.sample and similar files (such as those often placed into /usr/local/etc/rc.d/*.sample). That is, the intension is that the file must be copied into place before it's usable; that it's just a sample file, not the real thing. I was wrong. /etc/defaults/rc.conf "magically" changes this perception, breaking the .sample convention used throughout the system, and causing a great amount of confusion when none of my changes in /etc/pccard.conf had any effect. This wasn't the case in earlier releases and it shouldn't be the case now, IMHO. >How-To-Repeat: Copy /etc/pccard.conf.sample to /etc/pccard.conf as one would expect to be the way to do things. Change something in /etc/pccard.conf and watch pccardd simply ignore your changes. >Fix: Set the pccard_conf variable in /etc/defaults/rc.conf to point to /etc/pccard.conf. Either copy or better yet move /etc/pccard.conf.sample to /etc/pccard.conf. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 8:50:12 2000 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 9D8EA37BA49 for ; Tue, 11 Apr 2000 08:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA93579; Tue, 11 Apr 2000 08:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from horsey.gshapiro.net (horsey.gshapiro.net [209.220.147.178]) by hub.freebsd.org (Postfix) with ESMTP id D5F8B37B632 for ; Tue, 11 Apr 2000 08:48:28 -0700 (PDT) (envelope-from gshapiro@gshapiro.net) Received: from monkeyboy.gshapiro.net (natted.Sendmail.COM [63.211.143.38]) by horsey.gshapiro.net (8.10.1/8.10.1) with ESMTP id e3BFmMT96510 (using TLSv1/SSLv3 with cipher EDH-RSA-DES-CBC3-SHA (192 bits) verified OK) for ; Tue, 11 Apr 2000 08:48:24 -0700 (PDT) Received: (from gshapiro@localhost) by monkeyboy.gshapiro.net (8.10.1.Beta1/8.10.1.Beta1) id e3BFm9v10053; Tue, 11 Apr 2000 08:48:09 -0700 (PDT) Message-Id: <200004111548.e3BFm9v10053@monkeyboy.gshapiro.net> Date: Tue, 11 Apr 2000 08:48:09 -0700 (PDT) From: gshapiro+FreeBSD-gnats@gshapiro.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: i386/17930: Patch to MFC WaveLAN WEP into 3.4-STABLE Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17930 >Category: i386 >Synopsis: Patch to MFC WaveLAN WEP into 3.4-STABLE >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Apr 11 08:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Gregory Neil Shapiro >Release: FreeBSD 3.4-STABLE i386 >Organization: >Environment: 3.4-STABLE with Lucent WaveLAN Gold PCMCIA card. >Description: FreeBSD-4.0 includes WEP support for the WaveLAN cards. I'd like to see this support included in 3.4-STABLE. >How-To-Repeat: >Fix: The patch below takes the changes done to the HEAD (when 4.0 was the head) and MFC's them to 3.4-STABLE. The patches have been working fine for me. --- if_wavelan_ieee.h Mon Apr 10 11:13:49 2000 +++ /usr/src/sys/i386/include/if_wavelan_ieee.h Mon Apr 10 10:45:53 2000 @@ -185,6 +185,8 @@ #define WI_RID_WDS_ADDR5 0xFC15 /* port 1 MAC of WDS link node */ #define WI_RID_WDS_ADDR6 0xFC16 /* port 1 MAC of WDS link node */ #define WI_RID_MCAST_PM_BUF 0xFC17 /* PM buffering of mcast */ +#define WI_RID_ENCRYPTION 0xFC20 /* enable/disable WEP */ +#define WI_RID_AUTHTYPE 0xFC21 /* specify authentication type */ /* * Network parameters, dynamic configuration entities @@ -216,7 +218,20 @@ #define WI_RID_TX_RATE4 0xFCA2 #define WI_RID_TX_RATE5 0xFCA3 #define WI_RID_TX_RATE6 0xFCA4 +#define WI_RID_DEFLT_CRYPT_KEYS 0xFCB0 +#define WI_RID_TX_CRYPT_KEY 0xFCB1 #define WI_RID_TICK_TIME 0xFCE0 + +struct wi_key { + u_int16_t wi_keylen; + u_int8_t wi_keydat[14]; +}; + +struct wi_ltv_keys { + u_int16_t wi_len; + u_int16_t wi_type; + struct wi_key wi_keys[4]; +}; /* * NIC information --- if_wi.c Mon Apr 10 11:13:55 2000 +++ /usr/src/sys/i386/isa/if_wi.c Mon Apr 10 10:48:36 2000 @@ -344,6 +344,14 @@ wi_read_record(sc, &gen); sc->wi_channel = gen.wi_val; + /* + * Find out if we support WEP on this card. + */ + gen.wi_type = WI_RID_WEP_AVAIL; + gen.wi_len = 2; + wi_read_record(sc, &gen); + sc->wi_has_wep = gen.wi_val; + bzero((char *)&sc->wi_stats, sizeof(sc->wi_stats)); wi_init(sc); @@ -975,6 +983,16 @@ case WI_RID_MAX_SLEEP: sc->wi_max_sleep = wreq->wi_val[0]; break; + case WI_RID_ENCRYPTION: + sc->wi_use_wep = wreq->wi_val[0]; + break; + case WI_RID_TX_CRYPT_KEY: + sc->wi_tx_key = wreq->wi_val[0]; + break; + case WI_RID_DEFLT_CRYPT_KEYS: + bcopy((char *)wreq, (char *)&sc->wi_keys, + sizeof(struct wi_ltv_keys)); + break; default: break; } @@ -1042,6 +1060,9 @@ bcopy((char *)&sc->wi_stats, (char *)&wreq.wi_val, sizeof(sc->wi_stats)); wreq.wi_len = (sizeof(sc->wi_stats) / 2) + 1; + } else if (wreq.wi_type == WI_RID_DEFLT_CRYPT_KEYS) { + bcopy((char *)&sc->wi_keys, (char *)&wreq, + sizeof(struct wi_ltv_keys)); } else { if (wi_read_record(sc, (struct wi_ltv_gen *)&wreq)) { error = EINVAL; @@ -1137,6 +1158,15 @@ bcopy((char *)&sc->arpcom.ac_enaddr, (char *)&mac.wi_mac_addr, ETHER_ADDR_LEN); wi_write_record(sc, (struct wi_ltv_gen *)&mac); + + /* Configure WEP. */ + if (sc->wi_has_wep) { + WI_SETVAL(WI_RID_ENCRYPTION, sc->wi_use_wep); + WI_SETVAL(WI_RID_TX_CRYPT_KEY, sc->wi_tx_key); + sc->wi_keys.wi_len = (sizeof(struct wi_ltv_keys) / 2) + 1; + sc->wi_keys.wi_type = WI_RID_DEFLT_CRYPT_KEYS; + wi_write_record(sc, (struct wi_ltv_gen *)&sc->wi_keys); + } /* Initialize promisc mode. */ if (ifp->if_flags & IFF_PROMISC) { --- if_wireg.h Mon Apr 10 11:14:01 2000 +++ /usr/src/sys/i386/isa/if_wireg.h Mon Apr 10 10:49:27 2000 @@ -56,6 +56,27 @@ u_int32_t wi_rx_msg_in_bad_msg_frags; }; +/* + * Encryption controls. We can enable or disable encryption as + * well as specify up to 4 encryption keys. We can also specify + * which of the four keys will be used for transmit encryption. + */ +#define WI_RID_ENCRYPTION 0xFC20 +#define WI_RID_AUTHTYPE 0xFC21 +#define WI_RID_DEFLT_CRYPT_KEYS 0xFCB0 +#define WI_RID_TX_CRYPT_KEY 0xFCB1 +#define WI_RID_WEP_AVAIL 0xFD4F +struct wi_key { + u_int16_t wi_keylen; + u_int8_t wi_keydat[14]; +}; + +struct wi_ltv_keys { + u_int16_t wi_len; + u_int16_t wi_type; + struct wi_key wi_keys[4]; +}; + struct wi_softc { struct arpcom arpcom; struct ifmedia ifmedia; @@ -79,7 +100,11 @@ char wi_node_name[32]; char wi_net_name[32]; char wi_ibss_name[32]; - u_int8_t wi_txbuf[1536]; + u_int8_t wi_txbuf[1596]; + int wi_has_wep; + int wi_use_wep; + int wi_tx_key; + struct wi_ltv_keys wi_keys; struct wi_counters wi_stats; struct callout_handle wi_stat_ch; }; --- wicontrol.8 Mon Apr 10 11:14:09 2000 +++ /usr/src/usr.sbin/wicontrol/wicontrol.8 Mon Apr 10 10:50:28 2000 @@ -58,6 +58,13 @@ .Nm wicontrol .Fl i Ar iface Fl d Ar max data length .Nm wicontrol +.Fl i Ar iface Fl e Ar 0|1 +.Nm wicontrol +.Fl i Ar iface Fl k Ar key +.Op Fl v Ar 1|2|3|4 +.Nm wicontrol +.Fl i Ar iface Fl T Ar 1|2|3|4 +.Nm wicontrol .Fl i Ar iface Fl r Ar RTS threshold .Nm wicontrol .Fl i Ar iface Fl f Ar frequency @@ -202,6 +209,34 @@ .Ar max data length can be any number from 350 to 2304. The default is 2304. +.It Fl i Ar iface Fl e Ar 0|1 +Enable or disable WEP encryption. Permitted values are +.Ar 0 +(encryption disabled) or +.Ar 1 +(encryption enabled). Encryption is off by default. +.It Fl i Ar iface Fl k Ar key "[-v 1|2|3|4]" +Set WEP encryption keys. There are four default encryption keys +that can be programmed. A specific key can be set using +the +.Fl v +flag. If the +.Fl v +flag is not specified, the first key will be set. Encryption keys +can either be normal text (i.e. "hello") or a series of hexadecimal +digits (i.e. "0x1234512345"). For +WaveLAN Turbo Silver cards, the key is restricted to 40 bits, hence +the key can be either a 5 character text string or 10 hex digits. +For WaveLAN Turbo Gold cards, the key can be up to 128 bits, +which means the key can be specified as either a 16 character text +string or 32 hex digits. +.Pp +Note: currently, the field in the structure used to program the key +into the NIC is only 14 bytes long, not 16. I'm not sure how this is +supposed to allow 128 bits of key info for the gold cards. +.It Fl i Ar iface Fl T Ar 1|2|3|4 +Specify which of the four WEP encryption keys will be used to +encrypt transmitted packets. .It Fl i Ar iface Fl r Ar RTS threshold Set the RTS/CTS threshold for a given interface. This controls the --- wicontrol.c Mon Apr 10 11:14:13 2000 +++ /usr/src/usr.sbin/wicontrol/wicontrol.c Mon Apr 10 10:52:51 2000 @@ -70,6 +70,8 @@ static void wi_printbool __P((struct wi_req *)); static void wi_printhex __P((struct wi_req *)); static void wi_dumpinfo __P((char *)); +static void wi_setkeys __P((char *, char *, int)); +static void wi_printkeys __P((struct wi_req *)); static void usage __P((char *)); static void wi_getval(iface, wreq) @@ -236,6 +238,111 @@ return; } +static int wi_hex2int(c) + char c; +{ + if (c >= '0' && c <= '9') + return (c - '0'); + if (c >= 'A' && c <= 'F') + return (c - 'A' + 10); + if (c >= 'a' && c <= 'f') + return (c - 'a' + 10); + + return (0); +} + +static void wi_str2key(s, k) + char *s; + struct wi_key *k; +{ + int n, i; + char *p; + + /* Is this a hex string? */ + if (s[0] == '0' && (s[1] == 'x' || s[1] == 'X')) { + /* Yes, convert to int. */ + n = 0; + p = (char *)&k->wi_keydat[0]; + for (i = 2; i < strlen(s); i+= 2) { + *p++ = (wi_hex2int(s[i]) << 4) + wi_hex2int(s[i + 1]); + n++; + } + k->wi_keylen = n; + } else { + /* No, just copy it in. */ + bcopy(s, k->wi_keydat, strlen(s)); + k->wi_keylen = strlen(s); + } + + return; +} + +static void wi_setkeys(iface, key, idx) + char *iface; + char *key; + int idx; +{ + struct wi_req wreq; + struct wi_ltv_keys *keys; + struct wi_key *k; + + bzero((char *)&wreq, sizeof(wreq)); + wreq.wi_len = WI_MAX_DATALEN; + wreq.wi_type = WI_RID_WEP_AVAIL; + + wi_getval(iface, &wreq); + if (wreq.wi_val[0] == 0) + err(1, "no WEP option available on this card"); + + bzero((char *)&wreq, sizeof(wreq)); + wreq.wi_len = WI_MAX_DATALEN; + wreq.wi_type = WI_RID_DEFLT_CRYPT_KEYS; + + wi_getval(iface, &wreq); + keys = (struct wi_ltv_keys *)&wreq; + + if (strlen(key) > 14) { + err(1, "encryption key must be no " + "more than 14 characters long"); + } + + if (idx > 3) + err(1, "only 4 encryption keys available"); + + k = &keys->wi_keys[idx]; + wi_str2key(key, k); + + wreq.wi_len = (sizeof(struct wi_ltv_keys) / 2) + 1; + wreq.wi_type = WI_RID_DEFLT_CRYPT_KEYS; + wi_setval(iface, &wreq); + + return; +} + +static void wi_printkeys(wreq) + struct wi_req *wreq; +{ + int i, j; + struct wi_key *k; + struct wi_ltv_keys *keys; + char *ptr; + + keys = (struct wi_ltv_keys *)wreq; + + for (i = 0; i < 4; i++) { + k = &keys->wi_keys[i]; + ptr = (char *)k->wi_keydat; + for (j = 0; j < k->wi_keylen; j++) { + if (ptr[i] == '\0') + ptr[i] = ' '; + } + ptr[j] = '\0'; + printf("[ %s ]", ptr); + } + + return; +}; + void wi_printwords(wreq) struct wi_req *wreq; { @@ -283,6 +390,7 @@ #define WI_BOOL 0x02 #define WI_WORDS 0x03 #define WI_HEXBYTES 0x04 +#define WI_KEYSTRUCT 0x05 struct wi_table { int wi_code; @@ -304,7 +412,8 @@ { WI_RID_PROMISC, WI_BOOL, "Promiscuous mode:\t\t\t" }, { WI_RID_PORTTYPE, WI_WORDS, "Port type (1=BSS, 3=ad-hoc):\t\t"}, { WI_RID_MAC_NODE, WI_HEXBYTES, "MAC address:\t\t\t\t"}, - { WI_RID_TX_RATE, WI_WORDS, "TX rate:\t\t\t\t"}, + { WI_RID_TX_RATE, WI_WORDS, "TX rate (selection):\t\t\t"}, + { WI_RID_CUR_TX_RATE, WI_WORDS, "TX rate (actual speed):\t\t\t"}, { WI_RID_RTS_THRESH, WI_WORDS, "RTS/CTS handshake threshold:\t\t"}, { WI_RID_CREATE_IBSS, WI_BOOL, "Create IBSS:\t\t\t\t" }, { WI_RID_SYSTEM_SCALE, WI_WORDS, "Access point density:\t\t\t" }, @@ -313,13 +422,28 @@ { 0, NULL } }; +static struct wi_table wi_crypt_table[] = { + { WI_RID_ENCRYPTION, WI_BOOL, "WEP encryption:\t\t\t\t" }, + { WI_RID_TX_CRYPT_KEY, WI_WORDS, "TX encryption key:\t\t\t" }, + { WI_RID_DEFLT_CRYPT_KEYS, WI_KEYSTRUCT, "Encryption keys:\t\t\t" }, + { 0, NULL } +}; + static void wi_dumpinfo(iface) char *iface; { struct wi_req wreq; - int i; + int i, has_wep; struct wi_table *w; + bzero((char *)&wreq, sizeof(wreq)); + + wreq.wi_len = WI_MAX_DATALEN; + wreq.wi_type = WI_RID_WEP_AVAIL; + + wi_getval(iface, &wreq); + has_wep = wreq.wi_val[0]; + w = wi_table; for (i = 0; w[i].wi_type; i++) { @@ -345,10 +469,45 @@ break; default: break; } printf("\n"); } + if (has_wep) { + w = wi_crypt_table; + for (i = 0; w[i].wi_type; i++) { + bzero((char *)&wreq, sizeof(wreq)); + + wreq.wi_len = WI_MAX_DATALEN; + wreq.wi_type = w[i].wi_code; + + wi_getval(iface, &wreq); + printf("%s", w[i].wi_str); + switch(w[i].wi_type) { + case WI_STRING: + wi_printstr(&wreq); + break; + case WI_WORDS: + if (wreq.wi_type == WI_RID_TX_CRYPT_KEY) + wreq.wi_val[0]++; + wi_printwords(&wreq); + break; + case WI_BOOL: + wi_printbool(&wreq); + break; + case WI_HEXBYTES: + wi_printhex(&wreq); + break; + case WI_KEYSTRUCT: + wi_printkeys(&wreq); + break; + default: + break; + } + printf("\n"); + } + } + return; } @@ -426,11 +585,14 @@ fprintf(stderr, "\t%s -i iface -p port type\n", p); fprintf(stderr, "\t%s -i iface -a access point density\n", p); fprintf(stderr, "\t%s -i iface -m mac address\n", p); + fprintf(stderr, "\t%s -i iface -e 0|1\n", p); + fprintf(stderr, "\t%s -i iface -k encryption key [-v 1|2|3|4]\n", p); fprintf(stderr, "\t%s -i iface -d max data length\n", p); fprintf(stderr, "\t%s -i iface -r RTS threshold\n", p); fprintf(stderr, "\t%s -i iface -f frequency\n", p); fprintf(stderr, "\t%s -i iface -P 0|1t\n", p); fprintf(stderr, "\t%s -i iface -S max sleep duration\n", p); + fprintf(stderr, "\t%s -i iface -T 1|2|3|4\n", p); exit(1); } @@ -442,9 +604,11 @@ int ch; char *iface = NULL; char *p = argv[0]; + char *key = NULL; + int modifier = 0; while((ch = getopt(argc, argv, - "hoc:d:f:i:p:r:q:t:n:s:m:P:S:")) != -1) { + "hoc:d:e:f:i:k:p:r:q:t:n:s:m:v:P:S:T:")) != -1) { switch(ch) { case 'o': wi_dumpstats(iface); @@ -461,10 +625,17 @@ wi_setword(iface, WI_RID_MAX_DATALEN, atoi(optarg)); exit(0); break; + case 'e': + wi_setword(iface, WI_RID_ENCRYPTION, atoi(optarg)); + exit(0); + break; case 'f': wi_setword(iface, WI_RID_OWN_CHNL, atoi(optarg)); exit(0); break; + case 'k': + key = optarg; + break; case 'p': wi_setword(iface, WI_RID_PORTTYPE, atoi(optarg)); exit(0); @@ -497,10 +668,19 @@ wi_setword(iface, WI_RID_MAX_SLEEP, atoi(optarg)); exit(0); break; + case 'T': + wi_setword(iface, + WI_RID_TX_CRYPT_KEY, atoi(optarg) - 1); + exit(0); + break; case 'P': wi_setword(iface, WI_RID_PM_ENABLED, atoi(optarg)); exit(0); break; + case 'v': + modifier = atoi(optarg); + modifier--; + break; case 'h': default: usage(p); @@ -510,6 +690,11 @@ if (iface == NULL) usage(p); + + if (key != NULL) { + wi_setkeys(iface, key, modifier); + exit(0); + } wi_dumpinfo(iface); >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 Apr 11 9: 0: 8 2000 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 F234E37BA05 for ; Tue, 11 Apr 2000 09:00:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA95006; Tue, 11 Apr 2000 09:00:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 11 Apr 2000 09:00:06 -0700 (PDT) Message-Id: <200004111600.JAA95006@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Warner Losh Subject: Re: i386/17926: psm device problems with apm resume Reply-To: Warner Losh Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/17926; it has been noted by GNATS. From: Warner Losh To: Sheldon Hearn Cc: yokota@FreeBSD.org, FreeBSD-gnats-submit@FreeBSD.org Subject: Re: i386/17926: psm device problems with apm resume Date: Tue, 11 Apr 2000 09:54:23 -0600 In message <7959.955459500@axl.ops.uunet.co.za> Sheldon Hearn writes: : Could either of you take a look at this? I haven't assigned the PR, : since I'm uncertain which of the two of you is best qualified to look at : it. :-) This is a case of the psm device not coming back on reset. yokota-san likely is best to look at it. Likely all that is needed is to make the reset on resume default. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 9: 0: 9 2000 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 A153A37B9C5 for ; Tue, 11 Apr 2000 09:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA94999; Tue, 11 Apr 2000 09:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 11 Apr 2000 09:00:04 -0700 (PDT) Message-Id: <200004111600.JAA94999@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Warner Losh Subject: Re: kern/17909: Panic when removing a pccard which has a seen an IPv6 router advertisement Reply-To: Warner Losh Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/17909; it has been noted by GNATS. From: Warner Losh To: Sheldon Hearn Cc: shin@FreeBSD.org, FreeBSD-gnats-submit@FreeBSD.org Subject: Re: kern/17909: Panic when removing a pccard which has a seen an IPv6 router advertisement Date: Tue, 11 Apr 2000 09:53:18 -0600 In message <7991.955459661@axl.ops.uunet.co.za> Sheldon Hearn writes: : : : On Mon, 10 Apr 2000 20:58:54 +0200, Samuel Tardieu wrote: : : > >Number: 17909 : > >Category: kern : > >Synopsis: Panic when removing a pccard which has a seen an IPv6 router advertisement : : Hi gents, : : I'm contacting you because you are Mr Laptop (Warner) and Mr IPv6 : (Inoue-san) respectively and I'm not sure where this one falls. :-) I'd say it is a if_detach issue, which inoue-san likely is more qualified to look at. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 9:37:25 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from eastwood.aldigital.algroup.co.uk (eastwood.aldigital.algroup.co.uk [194.128.162.193]) by hub.freebsd.org (Postfix) with ESMTP id 8591937BACF for ; Tue, 11 Apr 2000 09:37:17 -0700 (PDT) (envelope-from adam@algroup.co.uk) Received: from algroup.co.uk ([192.168.192.2]) by eastwood.aldigital.algroup.co.uk (8.8.8/8.6.12) with ESMTP id QAA08216; Tue, 11 Apr 2000 16:37:11 GMT Message-ID: <38F354BA.F633075A@algroup.co.uk> Date: Tue, 11 Apr 2000 17:37:14 +0100 From: Adam Laurie X-Mailer: Mozilla 4.7 [en-gb] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-bugs@freebsd.org Subject: freebsd 3.4 disklabel bug Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org FreeBSD stranger.aldigital.co.uk 3.4-RELEASE FreeBSD 3.4-RELEASE #1: Mon Apr 10 14:57:49 GMT 2000 root@stranger.aldigital.co.uk:/usr/src/sys/compile/STRANGER i386 ...on an IDE drive, it wrongly decides to use 1 more cylinder than it actually has: root@stranger /root# disklabel -r wd1 # /dev/rwd1c: type: ESDI disk: wd1s1 label: flags: bytes/sector: 512 sectors/track: 63 tracks/cylinder: 255 sectors/cylinder: 16065 cylinders: 2491 sectors/unit: 40032696 rpm: 3600 interleave: 1 trackskew: 0 cylinderskew: 0 headswitch: 0 # milliseconds track-to-track seek: 0 # milliseconds drivedata: 0 8 partitions: # size offset fstype [fsize bsize bps/cpg] c: 40032696 0 unused 0 0 # (Cyl. 0 - 2491*) e: 40032696 0 4.2BSD 1024 8192 16 # (Cyl. 0 - 2491*) note that it thinks it has 2491 cylinders, but then uses 0 - 2491, i.e. 2492. This will go unnoticed if your offending partition is swap, as it doesn't try to write to swap until it errr... swaps. However, if you have a 2nd hard disk, and you allocate the entire disk, you will be unable to newfs it (from dmesg): wd1e: hard error writing fsbn 40031999 (wd1 bn 40031999; cn 2491 tn 223 sn 35) (status 51 error 10) Setting it to this: # size offset fstype [fsize bsize bps/cpg] c: 40032696 0 unused 0 0 # (Cyl. 0 - 2491*) e: 40016631 0 4.2BSD 1024 8192 16 # (Cyl. 0 - 2490*) cures the problem. Apologies if this is already known... I'm not a regular subscriber to this list... cheers, Adam -- Adam Laurie Tel: +44 (181) 742 0755 A.L. Digital Ltd. Fax: +44 (181) 742 5995 Voysey House Barley Mow Passage http://www.aldigital.co.uk London W4 4GB mailto:adam@algroup.co.uk UNITED KINGDOM PGP key on keyservers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 9:50: 8 2000 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 9E07937BB65 for ; Tue, 11 Apr 2000 09:50:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA01712; Tue, 11 Apr 2000 09:50:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from libagent.cs.technion.ac.il (libagent.cs.technion.ac.il [132.68.32.100]) by hub.freebsd.org (Postfix) with ESMTP id 6BD6F37B7B7 for ; Tue, 11 Apr 2000 09:45:35 -0700 (PDT) (envelope-from libagent@cs.technion.ac.il) Received: (from libagent@localhost) by libagent.cs.technion.ac.il (8.9.3/8.9.3) id SAA42900; Tue, 11 Apr 2000 18:48:39 +0200 (IST) (envelope-from libagent) Message-Id: <200004111648.SAA42900@libagent.cs.technion.ac.il> Date: Tue, 11 Apr 2000 18:48:39 +0200 (IST) From: Library Book Extensions Reply-To: libagent@cs.technion.ac.il To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: gnu/17935: Perl on the RELENG_3 branch uses bogus configuration. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17935 >Category: gnu >Synopsis: Perl in RELENG_3 uses a config file from 4-current. >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 Apr 11 09:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Library Book Extensions >Release: FreeBSD 3.4-RELEASE i386 >Organization: >Environment: This seems to affect RELENG_3 since the MFC of $Id: config.SH-elf.i386,v 1.11 1999/05/02 15:29:42 markm Exp $ >Description: Perl on RELENG_3, after the MFC of $Id: config.SH-elf.i386,v 1.11 1999/05/02 15:29:42 markm Exp $ (in directory src/gnu/usr.bin/perl/libperl) uses a bogus config. Perl believes it was built on a 4-current machine, using egcs, and not on a 3.x machine using gcc 2.7.2.x, even if one rebuilds it from source (by doing 'make' in src/gnu/usr.bin/perl/). I'm not sure what the exact implications are, but I suspect it affects dynamically loaded modules compiled with the native 3.x compiler. >How-To-Repeat: Just check the output of perl -V on a 3.x system built after 1999/05/02 15:29:42. >Fix: Probably generate a new config file. Depending on the implications (which I'm not yet sure of) an entry in ERRATA.TXT may be in order. I don't really know what to feed perl's Configure with to get the correct config file. 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 Apr 11 10:20: 6 2000 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 3A97437B8EC for ; Tue, 11 Apr 2000 10:20:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA05939; Tue, 11 Apr 2000 10:20:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 11 Apr 2000 10:20:04 -0700 (PDT) Message-Id: <200004111720.KAA05939@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Brooks Davis Subject: Re: conf/17929: pccardd uses /etc/pccard.conf.sample when man page says /etc/pccard.conf Reply-To: Brooks Davis Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR conf/17929; it has been noted by GNATS. From: Brooks Davis To: byron@omix.com Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: conf/17929: pccardd uses /etc/pccard.conf.sample when man page says /etc/pccard.conf Date: Tue, 11 Apr 2000 10:15:51 -0700 On Tue, Apr 11, 2000 at 08:29:22AM -0700, byron@omix.com wrote: > >Description: > > The man page for pccard(8) says the default configuration file is > /etc/pccard.conf, which is false. /etc/defaults/rc.conf changes > the config to be /etc/pccard.conf.sample, effectively changing the > default for all practical use. > > As the file is marked .sample and there is no man page for > pccard.conf.sample, I assumed it was the same as the > /etc/ppp/ppp.shells.sample and similar files (such as those > often placed into /usr/local/etc/rc.d/*.sample). That is, the > intension is that the file must be copied into place before it's > usable; that it's just a sample file, not the real thing. > > I was wrong. > > /etc/defaults/rc.conf "magically" changes this perception, breaking > the .sample convention used throughout the system, and causing a > great amount of confusion when none of my changes in > /etc/pccard.conf had any effect. > > This wasn't the case in earlier releases and it shouldn't be the > case now, IMHO. This PR is obsolete. The new configuration method in -current makes the system read /etc/defaults/pccard.conf which in turn read /etc/pccard.conf to provide override support. This is the solution which should be adopted in 4.0. -- Brooks -- Any statement of the form "X is the one, true Y" is FALSE. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 10:20: 8 2000 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 D8F5C37BB73 for ; Tue, 11 Apr 2000 10:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA05934; Tue, 11 Apr 2000 10:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 11 Apr 2000 10:20:02 -0700 (PDT) Message-Id: <200004111720.KAA05934@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Jeroen Ruigrok/Asmodai Subject: Re: kern/17871: starting to accumulate undeletable directories Reply-To: Jeroen Ruigrok/Asmodai Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/17871; it has been noted by GNATS. From: Jeroen Ruigrok/Asmodai To: Jay Krell Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: kern/17871: starting to accumulate undeletable directories Date: Tue, 11 Apr 2000 19:12:03 +0200 -On [20000411 16:00], Jay Krell (jay.krell@cornell.edu) wrote: >This file system caused repeated kernel panics. It was a new file system >(like a day old), and I've been able to "sloppily repro" this is a lot, >"just" by reinstall BSD from scratch, ftp over a >FreeBSDCvsRepository.tar.gz, tar xvfz it, and try to rm -rf it, in parallel >to the tar xvfz, build and fetch ports, hours to days of this (mainly of >fetching and building ports and cvsuping the repository, only once per >reinstall tar xvfz'ing the repository), and it always goes bad, with 3.4 >Release, 3.4-Current, 4.0-Release, and 4.0-Current. I've given up on FreeBSD >for now and am giving Linux a shot. Maybe it's a hardware problem.. I really think it is some sort of hardware, because the above described steps/procedures are what I do, day in, day out, on all kinds of hardware. Sorry to hear you don't consider FreeBSD anymore. But its your free choice. =) >I've had repeated file system corruption and hangs and panics with newly >fresh BSD installs. Hmmm, that starts to sound like your memory might be flakey. I had one FreeBSD host which gave me a lot of filesystem panics until I replaced the memory. It is now one of the most stable servers we have deployed. >The file system has been formatted over. What's ls -ailosF? You used ls -l to look at the delete directories. aiosF are additional flags giving all information, inode information, flags on files/directories and type determining. Read the previous sentence as basic troubleshooting/bug tracking. I am going to close this PR since we cannot get any more information about this from your system, since you already formatted it. A word of warning though, if you use _any_ bug reporting utility, be it a commercial firm, or an Open Source Project, people are going to want you to do some testing and reporting. See it like this, if they had your system and it gave the same problems you described, wouldn't you think they would've fixed it before unleashing it on the unsuspecting user? Now, they don't have your system, thus you are _required_ to do some `dirty' work in order for the other guys to solve your problems, if it is confirmed to be a problem in the software and not in the hardware. Kind regards, -- Jeroen Ruigrok vd Werven/Asmodai asmodai@[wxs.nl|bart.nl|freebsd.org] Documentation nutter/C-rated Coder BSD: Technical excellence at its best The BSD Programmer's Documentation Project I realise that nothing's as it seems... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 10:30: 5 2000 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 07DA637B7B7 for ; Tue, 11 Apr 2000 10:30:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA08012; Tue, 11 Apr 2000 10:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 11 Apr 2000 10:30:03 -0700 (PDT) Message-Id: <200004111730.KAA08012@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: byron@omix.com (Byron Brummer) Subject: Re: conf/17929: pccardd uses /etc/pccard.conf.sample when man page says /etc/pccard.conf Reply-To: byron@omix.com (Byron Brummer) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR conf/17929; it has been noted by GNATS. From: byron@omix.com (Byron Brummer) To: Brooks Davis Cc: byron@omix.com, FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: conf/17929: pccardd uses /etc/pccard.conf.sample when man page says /etc/pccard.conf Date: Tue, 11 Apr 2000 10:23:33 -0700 (PDT) Brooks Davis wrote: > On Tue, Apr 11, 2000 at 08:29:22AM -0700, byron@omix.com wrote: > > The man page for pccard(8) says the default configuration file is > > /etc/pccard.conf, which is false. /etc/defaults/rc.conf changes > > the config to be /etc/pccard.conf.sample, effectively changing the > > default for all practical use. >snip< > This PR is obsolete. The new configuration method in -current makes the > system read /etc/defaults/pccard.conf which in turn read > /etc/pccard.conf to provide override support. This is the solution > which should be adopted in 4.0. How recently was this done? 4.0-RELEASE isn't all that old. Has the above been moved to -stable? -Byron To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 10:50:10 2000 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 7EC1537BC0D for ; Tue, 11 Apr 2000 10:50:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA10379; Tue, 11 Apr 2000 10:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 11 Apr 2000 10:50:03 -0700 (PDT) Message-Id: <200004111750.KAA10379@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Brooks Davis Subject: Re: conf/17929: pccardd uses /etc/pccard.conf.sample when man page says /etc/pccard.conf Reply-To: Brooks Davis Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR conf/17929; it has been noted by GNATS. From: Brooks Davis To: Byron Brummer Cc: FreeBSD-gnats-submit@FreeBSD.ORG, imp@FreeBSD.ORG, iwasaki@FreeBSD.ORG Subject: Re: conf/17929: pccardd uses /etc/pccard.conf.sample when man page says /etc/pccard.conf Date: Tue, 11 Apr 2000 10:39:57 -0700 On Tue, Apr 11, 2000 at 10:23:33AM -0700, Byron Brummer wrote: > Brooks Davis wrote: > > On Tue, Apr 11, 2000 at 08:29:22AM -0700, byron@omix.com wrote: > > > The man page for pccard(8) says the default configuration file is > > > /etc/pccard.conf, which is false. /etc/defaults/rc.conf changes > > > the config to be /etc/pccard.conf.sample, effectively changing the > > > default for all practical use. > >snip< > > This PR is obsolete. The new configuration method in -current makes the > > system read /etc/defaults/pccard.conf which in turn read > > /etc/pccard.conf to provide override support. This is the solution > > which should be adopted in 4.0. > > How recently was this done? 4.0-RELEASE isn't all that old. Has > the above been moved to -stable? It was done on April 3. I suspect it will be merged, but it hasn't been yet. I've CCed the PC Card maintainers for a definitive answer. -- Brooks -- Any statement of the form "X is the one, true Y" is FALSE. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 10:50:11 2000 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 BCA7237BC11 for ; Tue, 11 Apr 2000 10:50:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA10414; Tue, 11 Apr 2000 10:50:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 11 Apr 2000 10:50:04 -0700 (PDT) Message-Id: <200004111750.KAA10414@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Warner Losh Subject: Re: conf/17929: pccardd uses /etc/pccard.conf.sample when man page says /etc/pccard.conf Reply-To: Warner Losh Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR conf/17929; it has been noted by GNATS. From: Warner Losh To: Brooks Davis Cc: Byron Brummer , FreeBSD-gnats-submit@FreeBSD.ORG, iwasaki@FreeBSD.ORG Subject: Re: conf/17929: pccardd uses /etc/pccard.conf.sample when man page says /etc/pccard.conf Date: Tue, 11 Apr 2000 11:41:47 -0600 In message <20000411103957.B20344@orion.ac.hmc.edu> Brooks Davis writes: : It was done on April 3. I suspect it will be merged, but it hasn't been : yet. I've CCed the PC Card maintainers for a definitive answer. I think that the best thing to do is wait for iwasaki-san to clear his queue of patches, then do one mega back commit all at once. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 11: 1:38 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from anarcat.dyndns.org (phobos.IRO.UMontreal.CA [132.204.20.20]) by hub.freebsd.org (Postfix) with ESMTP id B969C37B797 for ; Tue, 11 Apr 2000 11:01:32 -0700 (PDT) (envelope-from spidey@anarcat.dyndns.org) Received: by anarcat.dyndns.org (Postfix, from userid 1000) id 57EEC1BF8; Tue, 11 Apr 2000 14:01:23 -0400 (EDT) From: Spidey MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14579.26739.139020.783963@anarcat.dyndns.org> Date: Tue, 11 Apr 2000 14:01:23 -0400 (EDT) To: Brooks Davis Cc: bugs@freebsd.org Subject: Re: bin/17910: Do not allow 'operators' to drop to single user via shutdown In-Reply-To: <20000410174843.A6634@orion.ac.hmc.edu> References: <20000410205113.4E0C219BC@anarcat.dyndns.org> <20000410142640.A16425@orion.ac.hmc.edu> <14578.29173.529447.273595@anarcat.dyndns.org> <20000410174843.A6634@orion.ac.hmc.edu> X-Mailer: VM 6.72 under 21.1 (patch 8) "Bryce Canyon" XEmacs Lucid Reply-To: beaupran@iro.umontreal.ca Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Ok. I'm happy with the "solution" (which is to change nothing). :) I agree to close the PR. It was a mistake. --- At 17:48 of April 10, Big Brother made Brooks Davis write: > On Mon, Apr 10, 2000 at 08:29:41PM -0400, Spidey wrote: > > Oh. The system asks the root password on single-user shutdown when the > > console is marked as insecure? That is great. I think it solves it all. > > >From /etc/ttys: > > # If console is marked "insecure", then init will ask for the root password > # when going to single-user mode. > > You do that by removing the secure flag. > > If you're happy with this solution, please reply and ask that the PR be > closed (I can't do it.) > > > I found it weird that this was all wide open like that. :)) > > Giving out operator perms is probalby not the best idea. If nothing > else, a user in group operator can read any file on the system if they > are willing to take the time to do it. Hopefully some of these problems > will be lessened by the capabilities code from the TrustedBSD project > (http://www.TrustedBSD.org/). For now, if you need to give out operator > perms, you'll have to expect to close related holes yourself. > > -- Brooks > > -- > Any statement of the form "X is the one, true Y" is FALSE. -- Si l'image donne l'illusion de savoir C'est que l'adage pretend que pour croire, L'important ne serait que de voir Lofofora To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 11:31:16 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by hub.freebsd.org (Postfix) with ESMTP id AFB4537BAE8 for ; Tue, 11 Apr 2000 11:31:14 -0700 (PDT) (envelope-from billf@jade.chc-chimes.com) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id 8F7C51C4A; Tue, 11 Apr 2000 14:31:13 -0400 (EDT) Date: Tue, 11 Apr 2000 14:31:13 -0400 From: Bill Fumerola To: Sheldon Hearn Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: i386/17906: le ethernet device doesn't work in 4.0 Message-ID: <20000411143113.Z23367@jade.chc-chimes.com> References: <200004101700.KAA97359@freefall.freebsd.org> <8037.955459807@axl.ops.uunet.co.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <8037.955459807@axl.ops.uunet.co.za>; from sheldonh@uunet.co.za on Tue, Apr 11, 2000 at 03:30:07PM +0200 X-Operating-System: FreeBSD 3.2-RELEASE i386 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Apr 11, 2000 at 03:30:07PM +0200, Sheldon Hearn wrote: > Bill, please. If you can't resist the urge to be unnecessarily > sarcastic in your replies, leave freebsd-bugs alone. > > I'm copying this one to the list, since my private pleas for you to tone > it down are always dismissed. Is there a charge for your babysitting services or do you provide them for free? This may suprise people who send in bugs, but I(we?) actually do read the bug reports and when I think they have enough detail I actually look in the code to see what could cause that. Obviously this is easier with something further then "it paniced". -- Bill Fumerola - Network Architect Computer Horizons Corp - CVM e-mail: billf@chc-chimes.com / billf@FreeBSD.org Office: 800-252-2421 x128 / Cell: 248-761-7272 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 11:50: 8 2000 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 71ED837BBC4 for ; Tue, 11 Apr 2000 11:50:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA18003; Tue, 11 Apr 2000 11:50:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 11 Apr 2000 11:50:04 -0700 (PDT) Message-Id: <200004111850.LAA18003@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Jay Krell" Subject: Re: kern/17871: starting to accumulate undeletable directories Reply-To: "Jay Krell" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/17871; it has been noted by GNATS. From: "Jay Krell" To: "Jeroen Ruigrok/Asmodai" Cc: Subject: Re: kern/17871: starting to accumulate undeletable directories Date: Tue, 11 Apr 2000 11:48:12 -0700 I know, I know. I just wish a symbolic callstack was automatically dumped to a text file, or a core file I could easily get a call stack from, or I'd be dumped into a nice gui debugger with matching sources and symbols when a panic happened. That's the amount of work I'm used to having to do.. Other operating systems have worked ok on this hardward, but that doesn't prove anything. - Jay -----Original Message----- From: Jeroen Ruigrok/Asmodai To: Jay Krell Cc: freebsd-gnats-submit@FreeBSD.org Date: Tuesday, April 11, 2000 10:12 AM Subject: Re: kern/17871: starting to accumulate undeletable directories >-On [20000411 16:00], Jay Krell (jay.krell@cornell.edu) wrote: >>This file system caused repeated kernel panics. It was a new file system >>(like a day old), and I've been able to "sloppily repro" this is a lot, >>"just" by reinstall BSD from scratch, ftp over a >>FreeBSDCvsRepository.tar.gz, tar xvfz it, and try to rm -rf it, in parallel >>to the tar xvfz, build and fetch ports, hours to days of this (mainly of >>fetching and building ports and cvsuping the repository, only once per >>reinstall tar xvfz'ing the repository), and it always goes bad, with 3.4 >>Release, 3.4-Current, 4.0-Release, and 4.0-Current. I've given up on FreeBSD >>for now and am giving Linux a shot. Maybe it's a hardware problem.. > >I really think it is some sort of hardware, because the above described >steps/procedures are what I do, day in, day out, on all kinds of >hardware. > >Sorry to hear you don't consider FreeBSD anymore. >But its your free choice. =) > > >>I've had repeated file system corruption and hangs and panics with newly >>fresh BSD installs. > >Hmmm, that starts to sound like your memory might be flakey. I had one >FreeBSD host which gave me a lot of filesystem panics until I replaced >the memory. It is now one of the most stable servers we have deployed. > >>The file system has been formatted over. What's ls -ailosF? > >You used ls -l to look at the delete directories. aiosF are additional >flags giving all information, inode information, flags on >files/directories and type determining. Read the previous sentence as >basic troubleshooting/bug tracking. > >I am going to close this PR since we cannot get any more information >about this from your system, since you already formatted it. A word of >warning though, if you use _any_ bug reporting utility, be it a >commercial firm, or an Open Source Project, people are going to want you >to do some testing and reporting. See it like this, if they had your >system and it gave the same problems you described, wouldn't you think >they would've fixed it before unleashing it on the unsuspecting user? > >Now, they don't have your system, thus you are _required_ to do some >`dirty' work in order for the other guys to solve your problems, if it >is confirmed to be a problem in the software and not in the hardware. > >Kind regards, > >-- >Jeroen Ruigrok vd Werven/Asmodai asmodai@[wxs.nl|bart.nl|freebsd.org] >Documentation nutter/C-rated Coder BSD: Technical excellence at its best >The BSD Programmer's Documentation Project >I realise that nothing's as it seems... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 16:20: 6 2000 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 0FF6937BB06 for ; Tue, 11 Apr 2000 16:20:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA50708; Tue, 11 Apr 2000 16:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 11 Apr 2000 16:20:03 -0700 (PDT) Message-Id: <200004112320.QAA50708@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Randall Hopper Subject: Re: i386/17914: float-to-double core dump on 3.4R Reply-To: Randall Hopper Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/17914; it has been noted by GNATS. From: Randall Hopper To: Kevin Day , Bruce Evans Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: i386/17914: float-to-double core dump on 3.4R Date: Tue, 11 Apr 2000 19:06:52 -0400 Bruce Evans: |> float f = FLT_MAX; |> double d; |> f = f * 2; |> d = f; |> |> Delete the "d=f" line and it doesn't core. Put it in and it does |> (floating-point exception). |> |> From this it appears there may be a bug in the float-to-double |> promotion when f is Inf (or, at least I'd expect that f is Inf). | |No. "f * 2" gives undefined behaviour since it overflows. For FreeBSD-3.4 |on i386's, the actual behaviour is to leave the operands on the FP stack |and cause a SIGFPE on the next FP instruction after the one that overflowed. | |> Note that the core dump does not occur when the Inf is generated, |> but only when it is promoted to a double. | |Inf is not generated. The operands are left on the FP stack for the SIGFPE |handler to fix up. This behaviour is easy to see using gdb ("display/i $pc", |"stepi" and "info float"). Ok, thanks for your clarification. That seems like very odd behavior to wait until the "next" floating point instruction before signaling the exception for the prior. That could potentially be pages away in the instruction stream. Intuitively it seems like a bug (like waiting for a while before tripping a divide by zero fault). But I'll trust that you know more about the issues involved here than I do. Thanks for the reply, Randall To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 16:50: 5 2000 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 39ACC37B7C4 for ; Tue, 11 Apr 2000 16:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA53221; Tue, 11 Apr 2000 16:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 11 Apr 2000 16:50:03 -0700 (PDT) Message-Id: <200004112350.QAA53221@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Randall Hopper Subject: Re: i386/17914: float-to-double core dump on 3.4R Reply-To: Randall Hopper Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/17914; it has been noted by GNATS. From: Randall Hopper To: Kevin Day , Bruce Evans , Thomas David Rivers Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: i386/17914: float-to-double core dump on 3.4R Date: Tue, 11 Apr 2000 19:42:02 -0400 Randall Hopper: |Ok, thanks for your clarification. That seems like very odd behavior to |wait until the "next" floating point instruction before signaling the |exception for the prior. That could potentially be pages away in the |instruction stream. Thomas David Rivers: |> Intuitively it seems like a bug (like waiting for a while before |> tripping a divide by zero fault). But I'll trust that you know more |> about the issues involved here than I do. | | It's how the fpu works in the x86 chip; an artifact of when the | FPU was a different chip. | | Some x86 compilers can be told to emit an extra instruction (kinda | like a dummy floating pt. instruction) so that any except can be | caught synchronously; but when you do this, it *really* slows down | floating point operations. Ok, thank you. That makes sense. I understand the behavior now. Randall. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 17:17:44 2000 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 BC6DF37BA79; Tue, 11 Apr 2000 17:17:42 -0700 (PDT) (envelope-from shin@FreeBSD.org) Received: (from shin@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA56095; Tue, 11 Apr 2000 17:17:41 -0700 (PDT) (envelope-from shin@FreeBSD.org) Date: Tue, 11 Apr 2000 17:17:41 -0700 (PDT) From: Message-Id: <200004120017.RAA56095@freefall.freebsd.org> To: shin@FreeBSD.org, freebsd-bugs@FreeBSD.org, shin@FreeBSD.org Subject: Re: kern/17909: Panic when removing a pccard which has a seen an IPv6 router advertisement Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Panic when removing a pccard which has a seen an IPv6 router advertisement Responsible-Changed-From-To: freebsd-bugs->shin Responsible-Changed-By: shin Responsible-Changed-When: Tue Apr 11 17:17:11 PDT 2000 Responsible-Changed-Why: I'll look at it. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 17:20: 7 2000 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 8FEC337B80D for ; Tue, 11 Apr 2000 17:20:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA56354; Tue, 11 Apr 2000 17:20:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 11 Apr 2000 17:20:04 -0700 (PDT) Message-Id: <200004120020.RAA56354@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Bill Fenner Subject: Re: misc/17889: certain type of DNS queries seem to get dropped by DNS server Reply-To: Bill Fenner Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/17889; it has been noted by GNATS. From: Bill Fenner To: adrian.roy@bigfoot.com Cc: freebsd-gnats-submit@freebsd.org Subject: Re: misc/17889: certain type of DNS queries seem to get dropped by DNS server Date: Tue, 11 Apr 2000 17:12:41 -0700 >I check the DNS server and it is saying that there was a DNS query from the >4.0 machine looking for info on the 3.3 machine. It says the DNS query was >of type 28, and that it was invalid, and that it will be dropped. This is a query for an IPv6 address. Does it really drop it, or does it reply with an empty reply? Here's what happens when I telnet to my 4.0 box ("emachine.attlabs.att.com") from my 3.4 box ("mango.attlabs.att.com"): % tcpdump -s 1500 udp port domain tcpdump: listening on dc0 17:02:28.499255 emachine.attlabs.att.com.1206 > mp-dns.attlabs.att.com.domain: 33870+ PTR? 114.2.197.135.in-addr.arpa. (44) 17:02:28.501048 mp-dns.attlabs.att.com.domain > emachine.attlabs.att.com.1206: 33870* 1/7/7 PTR mango.attlabs.att.com. (371) (DF) 17:02:28.501915 emachine.attlabs.att.com.1207 > mp-dns.attlabs.att.com.domain: 33871+ AAAA? mango.attlabs.att.com. (39) 17:02:28.502909 mp-dns.attlabs.att.com.domain > emachine.attlabs.att.com.1207: 33871* 0/1/0 (106) (DF) 17:02:28.503140 emachine.attlabs.att.com.1208 > mp-dns.attlabs.att.com.domain: 33872+ AAAA? mango.attlabs.att.com.attlabs.att.com. (55) 17:02:28.504185 mp-dns.attlabs.att.com.domain > emachine.attlabs.att.com.1208: 33872 NXDomain* 0/1/0 (122) (DF) 17:02:28.504554 emachine.attlabs.att.com.1209 > mp-dns.attlabs.att.com.domain: 33873+ AAAA? mango.attlabs.att.com. (39) 17:02:28.505574 mp-dns.attlabs.att.com.domain > emachine.attlabs.att.com.1209: 33873* 0/1/0 (106) (DF) 17:02:28.505736 emachine.attlabs.att.com.1210 > mp-dns.attlabs.att.com.domain: 33874+ AAAA? mango.attlabs.att.com.attlabs.att.com. (55) 17:02:28.506769 mp-dns.attlabs.att.com.domain > emachine.attlabs.att.com.1210: 33874 NXDomain* 0/1/0 (122) (DF) 17:02:28.507112 emachine.attlabs.att.com.1211 > mp-dns.attlabs.att.com.domain: 33875+ A? mango.attlabs.att.com. (39) 17:02:28.509445 mp-dns.attlabs.att.com.domain > emachine.attlabs.att.com.1211: 33875* 1/11/10 A 135.197.2.114 (494) (DF) If all of those AAAA? queries had to time out because the server was dropping them instead of replying that it had no information, that would explain why it takes so long. I recommend: 1) Running that same tcpdump on your 4.0 machine to see what is going on 2) Trying a dig to see how your name server handles queries for aaaa records; "dig @nameserver aaaa some.host.name.". It should reply with an empty answer section. 3) If the name server is really dropping the queries instead of replying to them, report this bug to the authors. Meanwhile, you could work around the problem by using one of your FreeBSD boxes as a name server instead of your NT box; FreeBSD comes with a working name server. Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 17:44:15 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from hsw.generalresources.com (z12.generalresources.com [210.242.169.12]) by hub.freebsd.org (Postfix) with ESMTP id 8B40437B886 for ; Tue, 11 Apr 2000 17:44:12 -0700 (PDT) (envelope-from hsw@hsw.generalresources.com) Received: from hsw.generalresources.com (hsw@localhost [127.0.0.1]) by hsw.generalresources.com (8.9.3/8.9.3) with ESMTP id IAA37144 for ; Wed, 12 Apr 2000 08:43:40 +0800 (CST) (envelope-from hsw@hsw.generalresources.com) Message-Id: <200004120043.IAA37144@hsw.generalresources.com> From: Christopher Hall Reply-To: Christopher Hall To: freebsd-bugs@FreeBSD.ORG Subject: Re: ports/17612: x11-fonts/intlfonts crashes X (Big5 encoding) In-Reply-To: Message from Christopher Hall of "Wed, 05 Apr 2000 12:44:07 +0800." <200004050444.MAA73201@hsw.generalresources.com> Date: Wed, 12 Apr 2000 08:43:40 +0800 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I received a reply from GNU saying they have applied the patch. Please close this PR. In message <200004050444.MAA73201@hsw.generalresources.com>, Christopher Hall writes: > >I have sent the patch to gnu, perhaps we can just wait for them to >incorporate it into their dist file, so it is probably not necessary >to add it to this port. > >--- >Christopher Hall > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-bugs" in the body of the message > --- Christopher Hall To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 18:40: 6 2000 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 0EC7637BC37 for ; Tue, 11 Apr 2000 18:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA66351; Tue, 11 Apr 2000 18:40:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EE27837BB46 for ; Tue, 11 Apr 2000 18:33:50 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA65648; Tue, 11 Apr 2000 18:33:49 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004120133.SAA65648@freefall.freebsd.org> Date: Tue, 11 Apr 2000 18:33:49 -0700 (PDT) From: msmith@netapp.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: bin/17939: routed calls ntohs twice on the same field Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17939 >Category: bin >Synopsis: routed calls ntohs twice on the same field >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 Apr 11 18:40:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mark Smith >Release: 3.4 >Organization: Network Appliance >Environment: >Description: In sbin/routed/rdisc.c, parse_ad() is called as follows: parse_ad(from.sin_addr.s_addr, wp[0], wp[1], ntohs(p->ad.icmp_ad_life), ifp); Thus, when we are in parse_ad() the 4th arg (life) is already in host order. Down at the bottom of parse_ad() we have this: new_drp->dr_life = ntohs(life); It looks to me like this call to ntohs() ends up converting it back to network order. This causes routed to use the wrong value when it uses dr_life elsewhere. >How-To-Repeat: This was found by code inspection. The default value for life is 1800 which is 2055 when byte swapped so most people probably never noticed. >Fix: Don't call ntohs() in parse_ad(). >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 Apr 11 19:50: 6 2000 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 3F4FF37BAC0 for ; Tue, 11 Apr 2000 19:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA74346; Tue, 11 Apr 2000 19:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 14F5A37B77E for ; Tue, 11 Apr 2000 19:47:29 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA74032; Tue, 11 Apr 2000 19:47:27 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004120247.TAA74032@freefall.freebsd.org> Date: Tue, 11 Apr 2000 19:47:27 -0700 (PDT) From: swchui@hutchcity.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/17940: Cannot recongize the scsi card AIC-7899 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17940 >Category: i386 >Synopsis: Cannot recongize the scsi card AIC-7899 >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 Apr 11 19:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Kelvin Chui >Release: 3.3 >Organization: HOME >Environment: FreeBSD home.com.hk 3.3-RELEASE FreeBSD 3.3-RELEASE #0: Tue Mar 28 01:25:50 CST 2000 swchui@hutchcity.com:/usr/src/sys/compile/HOME i386 >Description: As I have install the FreeBSD in a new machine Dell 2450 and with scis card info "AIC-7899", and the add-in card is "AHA-2940UW/OF" and "AHA-2944UW/OF". It seem that the kernel cannot recognize the cards and HD.. with message "No hard disks found ....." >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 Tue Apr 11 20:20: 5 2000 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 7604337BB1E for ; Tue, 11 Apr 2000 20:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA77755; Tue, 11 Apr 2000 20:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 11 Apr 2000 20:20:03 -0700 (PDT) Message-Id: <200004120320.UAA77755@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Matthew Jacob Subject: Re: i386/17940: Cannot recongize the scsi card AIC-7899 Reply-To: Matthew Jacob Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/17940; it has been noted by GNATS. From: Matthew Jacob To: swchui@hutchcity.com Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: i386/17940: Cannot recongize the scsi card AIC-7899 Date: Tue, 11 Apr 2000 20:10:30 -0700 (PDT) 3.3 didn't support this. Upgrade your system to one that does. On Tue, 11 Apr 2000 swchui@hutchcity.com wrote: > > >Number: 17940 > >Category: i386 > >Synopsis: Cannot recongize the scsi card AIC-7899 > >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 Apr 11 19:50:01 PDT 2000 > >Closed-Date: > >Last-Modified: > >Originator: Kelvin Chui > >Release: 3.3 > >Organization: > HOME > >Environment: > FreeBSD home.com.hk 3.3-RELEASE FreeBSD 3.3-RELEASE #0: Tue Mar 28 01:25:50 CST 2000 swchui@hutchcity.com:/usr/src/sys/compile/HOME > i386 > >Description: > As I have install the FreeBSD in a new machine Dell 2450 and with scis card info "AIC-7899", and the add-in card is "AHA-2940UW/OF" and > "AHA-2944UW/OF". It seem that the kernel cannot recognize the cards and HD.. with message "No hard disks found ....." > >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 > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 11 22:30: 9 2000 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 312F137BC6D for ; Tue, 11 Apr 2000 22:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA94293; Tue, 11 Apr 2000 22:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 27E1D37B795 for ; Tue, 11 Apr 2000 22:25:07 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA93664; Tue, 11 Apr 2000 22:25:06 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004120525.WAA93664@freefall.freebsd.org> Date: Tue, 11 Apr 2000 22:25:06 -0700 (PDT) From: robert@superior.net To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/17944: xl0 fails to build in kernel in 4.0-STABLE 4/12/2000 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17944 >Category: kern >Synopsis: xl0 fails to build in kernel in 4.0-STABLE 4/12/2000 >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 Apr 11 22:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Robert Blayzor >Release: 4.0-STABLE >Organization: BiznessOnline.com >Environment: FreeBSD vortex.superior.net 4.0-RELEASE FreeBSD 4.0-RELEASE #0: Mon Mar 20 22:50:22 GMT 2000 root@monster.cdrom.com:/usr/src/sys/compile/GENERIC i386 >Description: When specifying device in kernel config file: device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'') make depend will fail with error: ../../pci/if_xl.c:133: miibus_if.h: No such file or directory mkdep: compile failed *** Error code 1 >How-To-Repeat: cvsup recent 4.0-stable release. Specify xl device build and build kernel. >Fix: Possible renamed file in /usr/src/sys/dev/mii Should miibus_if.m (which is what exists) be renamed to miibus_if.h ? >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 Apr 12 1: 0: 6 2000 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 077E737BA28 for ; Wed, 12 Apr 2000 01:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA17281; Wed, 12 Apr 2000 01:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from rat-thing.netizen.com.au (rat-thing.netizen.com.au [203.30.75.120]) by hub.freebsd.org (Postfix) with ESMTP id F0DE037B9DF for ; Wed, 12 Apr 2000 00:51:09 -0700 (PDT) (envelope-from benno@rat-thing.netizen.com.au) Received: (from root@localhost) by rat-thing.netizen.com.au (8.9.3/8.9.3) id RAA10149; Wed, 12 Apr 2000 17:51:13 +1000 (EST) (envelope-from benno) Message-Id: <200004120751.RAA10149@rat-thing.netizen.com.au> Date: Wed, 12 Apr 2000 17:51:13 +1000 (EST) From: benno@netizen.com.au Reply-To: benno@netizen.com.au To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/17945: Makefile in /usr/src/sbin/mount_msdos does not honour LIBDATADIR Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17945 >Category: bin >Synopsis: [patch] Makefile in /usr/src/sbin/mount_msdos does not honour LIBDATADIR >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 Apr 12 01:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Benno Rice >Release: FreeBSD 5.0-CURRENT i386 >Organization: Netizen Pty Ltd >Environment: FreeBSD rat-thing.netizen.com.au 5.0-CURRENT FreeBSD 5.0-CURRENT #11: Wed Mar 15 14:04:47 EST 2000 benno@rat-thing.netizen.com.au:/usr/src/sys/compile/RATTHING i386 >Description: The Makefile for mount_msdos does not honour LIBDATADIR in generating it's TABDIR variable. >How-To-Repeat: cd /usr/src/sbin/mount_msdos setenv LIBDATADIR /tmp make clean make depend make all make install >Fix: --- Makefile Sat Jan 15 04:39:20 2000 +++ Makefile.new Wed Apr 12 17:48:22 2000 @@ -12,7 +12,7 @@ CFLAGS+= -I${MOUNT} .PATH: ${MOUNT} -TABDIR= ${DESTDIR}/usr/libdata/msdosfs +TABDIR= ${DESTDIR}${LIBDATADIR}/msdosfs TABLES= iso22dos koi2dos afterinstall: >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 Apr 12 1: 5:12 2000 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 660EA37BAF3; Wed, 12 Apr 2000 01:05:11 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA17928; Wed, 12 Apr 2000 01:05:11 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 12 Apr 2000 01:05:11 -0700 (PDT) From: Message-Id: <200004120805.BAA17928@freefall.freebsd.org> To: dmitry@asbaikaltv.ru, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/17858: pnp isa ed device problem on 4.0-RELEASE Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: pnp isa ed device problem on 4.0-RELEASE State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Wed Apr 12 01:04:35 PDT 2000 State-Changed-Why: Closed on originator's request. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 12 1: 7: 0 2000 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 B44B337BA18; Wed, 12 Apr 2000 01:06:58 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA18241; Wed, 12 Apr 2000 01:06:58 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 12 Apr 2000 01:06:58 -0700 (PDT) From: Message-Id: <200004120806.BAA18241@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, yokota@FreeBSD.org Subject: Re: i386/17926: psm device problems with apm resume Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: psm device problems with apm resume Responsible-Changed-From-To: freebsd-bugs->yokota Responsible-Changed-By: sheldonh Responsible-Changed-When: Wed Apr 12 01:06:14 PDT 2000 Responsible-Changed-Why: Warner reckons that Kazu might be able to tackle this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 12 1:13:15 2000 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 C19D937B899; Wed, 12 Apr 2000 01:13:14 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA19262; Wed, 12 Apr 2000 01:13:14 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 12 Apr 2000 01:13:14 -0700 (PDT) From: Message-Id: <200004120813.BAA19262@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, sheldonh@FreeBSD.org Subject: Re: conf/17904: rc.network IPX configuration missing 'ipx' parm for ifconfig Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: rc.network IPX configuration missing 'ipx' parm for ifconfig Responsible-Changed-From-To: freebsd-bugs->sheldonh Responsible-Changed-By: sheldonh Responsible-Changed-When: Wed Apr 12 01:10:43 PDT 2000 Responsible-Changed-Why: While the originator is happy with the response we gave him (missing protocol family), something needs to be done to make it clear that _ipx in the rc.conf variable name does not obviate the need to specify the protocol family. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 12 1:50: 5 2000 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 2F08C37B941 for ; Wed, 12 Apr 2000 01:50:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA23563; Wed, 12 Apr 2000 01:50:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 12 Apr 2000 01:50:04 -0700 (PDT) Message-Id: <200004120850.BAA23563@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Samuel Tardieu Subject: Re: kern/17944: xl0 fails to build in kernel in 4.0-STABLE 4/12/2000 Reply-To: Samuel Tardieu Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/17944; it has been noted by GNATS. From: Samuel Tardieu To: robert@superior.net Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: kern/17944: xl0 fails to build in kernel in 4.0-STABLE 4/12/2000 Date: Wed, 12 Apr 2000 10:48:52 +0200 | ../../pci/if_xl.c:133: miibus_if.h: No such file or directory | mkdep: compile failed | *** Error code 1 Did you enable the "miibus" device? This is required for PIC Ethernet cards. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 12 2:21:48 2000 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 75E6637B83F; Wed, 12 Apr 2000 02:21:47 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA30915; Wed, 12 Apr 2000 02:21:47 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 12 Apr 2000 02:21:47 -0700 (PDT) From: Message-Id: <200004120921.CAA30915@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, sheldonh@FreeBSD.org Subject: Re: bin/17945: [patch] Makefile in /usr/src/sbin/mount_msdos does not honour LIBDATADIR Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [patch] Makefile in /usr/src/sbin/mount_msdos does not honour LIBDATADIR Responsible-Changed-From-To: freebsd-bugs->sheldonh Responsible-Changed-By: sheldonh Responsible-Changed-When: Wed Apr 12 02:21:20 PDT 2000 Responsible-Changed-Why: I'll commit this as soon as it's made it through a ``make world'' on my box. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 12 2:22:47 2000 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 BEF6337B99E; Wed, 12 Apr 2000 02:22:46 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA31081; Wed, 12 Apr 2000 02:22:46 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 12 Apr 2000 02:22:46 -0700 (PDT) From: Message-Id: <200004120922.CAA31081@freefall.freebsd.org> To: robert@superior.net, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/17944: xl0 fails to build in kernel in 4.0-STABLE 4/12/2000 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: xl0 fails to build in kernel in 4.0-STABLE 4/12/2000 State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Wed Apr 12 02:22:28 PDT 2000 State-Changed-Why: See the SYNOPSIS section of the xl(4) manual page. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 12 2:38:39 2000 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 5B1EB37B6B1; Wed, 12 Apr 2000 02:38:38 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA33039; Wed, 12 Apr 2000 02:38:38 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 12 Apr 2000 02:38:38 -0700 (PDT) From: Message-Id: <200004120938.CAA33039@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, sheldonh@FreeBSD.org Subject: Re: bin/17939: routed calls ntohs twice on the same field Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: routed calls ntohs twice on the same field Responsible-Changed-From-To: freebsd-bugs->sheldonh Responsible-Changed-By: sheldonh Responsible-Changed-When: Wed Apr 12 02:37:48 PDT 2000 Responsible-Changed-Why: I've mailed the author (Vernon Schryver ) and am awaiting his feedback. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 12 2:51:10 2000 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 40ED837BB5E; Wed, 12 Apr 2000 02:51:09 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA34556; Wed, 12 Apr 2000 02:51:08 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 12 Apr 2000 02:51:08 -0700 (PDT) From: Message-Id: <200004120951.CAA34556@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, markm@FreeBSD.org Subject: Re: gnu/17935: Perl in RELENG_3 uses a config file from 4-current. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Perl in RELENG_3 uses a config file from 4-current. Responsible-Changed-From-To: freebsd-bugs->markm Responsible-Changed-By: sheldonh Responsible-Changed-When: Wed Apr 12 02:50:41 PDT 2000 Responsible-Changed-Why: Mark was the author of rev 1.10.2.1 and will know what to do. :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 12 2:54: 0 2000 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 12D3D37BCBF; Wed, 12 Apr 2000 02:53:59 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA34937; Wed, 12 Apr 2000 02:53:58 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 12 Apr 2000 02:53:58 -0700 (PDT) From: Message-Id: <200004120953.CAA34937@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, n_hibma@FreeBSD.org Subject: Re: kern/17815: The ethernet in the D-Link DSB-H4E is not recognised Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: The ethernet in the D-Link DSB-H4E is not recognised Responsible-Changed-From-To: freebsd-bugs->n_hibma Responsible-Changed-By: sheldonh Responsible-Changed-When: Wed Apr 12 02:53:46 PDT 2000 Responsible-Changed-Why: Over to Mr. USB. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 12 3:20: 8 2000 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 B7D2437B9A5 for ; Wed, 12 Apr 2000 03:20:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA40804; Wed, 12 Apr 2000 03:20:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 12 Apr 2000 03:20:05 -0700 (PDT) Message-Id: <200004121020.DAA40804@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: kern/17829: The dc driver is seriously broken Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/17829; it has been noted by GNATS. From: Sheldon Hearn To: wpaul@FreeBSD.org Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: kern/17829: The dc driver is seriously broken Date: Wed, 12 Apr 2000 12:12:43 +0200 On Thu, 06 Apr 2000 08:24:11 MST, matt@thebiz.net wrote: > >Number: 17829 > >Category: kern > >Synopsis: The dc driver is seriously broken Hi Bill, What do you think about the originator's suggestion to disable dc(4) in GENERIC? 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 Apr 12 3:42:56 2000 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 908D037B8B7; Wed, 12 Apr 2000 03:42:55 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA43313; Wed, 12 Apr 2000 03:42:55 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 12 Apr 2000 03:42:55 -0700 (PDT) From: Message-Id: <200004121042.DAA43313@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, sheldonh@FreeBSD.org Subject: Re: bin/17875: [PATCH] /usr/bin/login logs errors in non-error situations Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] /usr/bin/login logs errors in non-error situations Responsible-Changed-From-To: freebsd-bugs->sheldonh Responsible-Changed-By: sheldonh Responsible-Changed-When: Wed Apr 12 03:42:38 PDT 2000 Responsible-Changed-Why: I'll take this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 12 4:25:50 2000 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 9F73537B83B; Wed, 12 Apr 2000 04:25:49 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA50668; Wed, 12 Apr 2000 04:25:49 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 12 Apr 2000 04:25:49 -0700 (PDT) From: Message-Id: <200004121125.EAA50668@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, sos@FreeBSD.org Subject: Re: kern/17839: ad driver and SMP kernel panic (vinum may be involved) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ad driver and SMP kernel panic (vinum may be involved) Responsible-Changed-From-To: freebsd-bugs->sos Responsible-Changed-By: sheldonh Responsible-Changed-When: Wed Apr 12 04:25:13 PDT 2000 Responsible-Changed-Why: Over to the ata driver's maintainer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 12 4:30: 5 2000 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 46FCC37BAFA for ; Wed, 12 Apr 2000 04:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA51091; Wed, 12 Apr 2000 04:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 12 Apr 2000 04:30:03 -0700 (PDT) Message-Id: <200004121130.EAA51091@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: kern/17842: Erratic user time reports for long running processes Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/17842; it has been noted by GNATS. From: Sheldon Hearn To: kees@echelon.nl Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: kern/17842: Erratic user time reports for long running processes Date: Wed, 12 Apr 2000 13:29:11 +0200 On Fri, 07 Apr 2000 12:42:59 +0200, Kees Hendrikse wrote: > Tested on a stock 3.4-RELEASE, also tested on a stock 2.2.6-RELEASE. > Probably a bug present in all releases of FreeBSD. I've been running the program for more than 48 hours without an ANOMALY lines being printed. I'm using 5.0-CURRENT. Does this happen when you _don't_ run it with a high nice scheduling parameter? If so, then I suspect this may be fixed in 4.0-RELEASE as well. 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 Apr 12 4:31:24 2000 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 7DFBF37B562; Wed, 12 Apr 2000 04:31:23 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA51354; Wed, 12 Apr 2000 04:31:23 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 12 Apr 2000 04:31:23 -0700 (PDT) From: Message-Id: <200004121131.EAA51354@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, wpaul@FreeBSD.org Subject: Re: i386/17930: Patch to MFC WaveLAN WEP into 3.4-STABLE Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Patch to MFC WaveLAN WEP into 3.4-STABLE Responsible-Changed-From-To: freebsd-bugs->wpaul Responsible-Changed-By: sheldonh Responsible-Changed-When: Wed Apr 12 04:30:45 PDT 2000 Responsible-Changed-Why: Left as a reminder for Bill, who introduced WEP support in CURRENT. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 12 8:30:10 2000 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 D5F4637B6C3 for ; Wed, 12 Apr 2000 08:30:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA46956; Wed, 12 Apr 2000 08:30:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 12 Apr 2000 08:30:04 -0700 (PDT) Message-Id: <200004121530.IAA46956@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Mattias Pettersson Subject: Re: i386/17900: 3Com 3C589D and 3CCE589ET doesn't during install of 4.0-RELEASE Reply-To: Mattias Pettersson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/17900; it has been noted by GNATS. From: Mattias Pettersson To: Sheldon Hearn Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: i386/17900: 3Com 3C589D and 3CCE589ET doesn't during install of 4.0-RELEASE Date: Wed, 12 Apr 2000 17:31:19 +0200 Sheldon Hearn wrote: > > On Mon, 10 Apr 2000 07:05:39 MST, eraxpma@verkstad.net wrote: > > > >How-To-Repeat: > > Boot 4.0-RELEASE floppies on (Thinkpad 560Z) laptop. Default pc-card > > io range and irq options 1 or 2 (line 2 and 3). I tried nfs installation. > > Can't ping anything on VT4. > > What revision of /etc/pccard.conf are you using? There appears to have > been support for both your cards for quite a while. Could you show us > your /etc/rc.conf and the output of dmesg(8) while you're at it? > > Ciao, > Sheldon. First of all, this happened during UPGRADE from the kern and mfsroot floppies, so it's running /stand/sysinstall. I have not access to dmesg or netstat and things. Excerpt from the console during boot: pcic0: at port 0x3e0 iomem 0xd0000 irq 10 on isa0 pcic0: management irq 10 pccard0: on pcic0 pccard1: on pcic0 pccard: card inserted, slot 0 On VT2: DEBUG: ioctl(3, TIOCCONS, NULL) = 0 (success) ep0: <3Com Etherlink III 3C589> at port 0x240-0x24f irq 11 slot 0 on pccard0 ep0: Ethernet address 00:10:5a:2d:52:e6 logger: not found /etc/pccard_ether: not found #ifconfig -au ep0: flags=8843 mtu 1500 inet 10.50.0.18 netmask 0xffff0000 broadcast 10.50.255.255 ether 00:10:5a:2d:52:e6 media: 10baseT/UTP supported media: 10base2/BNC 10baseT/UTP 10base5/AUI #tcpdump -n tcpdump: listening on ep0 ^C 0 packets received by filter 0 packets dropped by kernel I can ping my own interface address, but nothing else. Card gets activated, since led is lit. Is pccard.conf really used when booting off installation floppies? What I then have is the one from 3.4, but do the installation rely on what's on the hard drive? /Mattias To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 12 8:59:13 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from aaz.links.ru (aaz.links.ru [193.125.152.37]) by hub.freebsd.org (Postfix) with ESMTP id 3462937BCB0 for ; Wed, 12 Apr 2000 08:57:56 -0700 (PDT) (envelope-from babolo@links.ru) Received: (from babolo@localhost) by aaz.links.ru (8.9.3/8.9.3) id TAA08605; Wed, 12 Apr 2000 19:56:24 +0400 (MSD) Message-Id: <200004121556.TAA08605@aaz.links.ru> Subject: Re: bin/17924: ld -lF bug In-Reply-To: <8608.955461193@axl.ops.uunet.co.za> from "Sheldon Hearn" at "Apr 11, 0 03:53:13 pm" To: sheldonh@uunet.co.za (Sheldon Hearn) Date: Wed, 12 Apr 2000 19:56:24 +0400 (MSD) Cc: alex@big.endian.de, freebsd-bugs@FreeBSD.ORG From: "Aleksandr A.Babaylov" MIME-Version: 1.0 Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: 8bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Sheldon Hearn writes: > On Tue, 11 Apr 2000 15:24:11 +0200, Alexander Langer wrote: > > What I really wonder is is the difference between ls -ldF Mail and > > Mail/ then. > > > > The manpage says, it adds an /, but if this / is already there, why > > should it add one more? > > -F Display a slash (/) immediately after each pathname that is a > directory, [...] > > You specified a directory name ending in a slash. The trailing slash in > a directory name is legal. The ls(1) utility takes this legal > representation of the directory's name and adds a slash to indicate that > it's a directory. > > It's logical in a pleasantly twisted sort of way. :-) Just curious: 0skiv~(138)>/bin/ls -dl Mail// Mail/// Mail//// Mail///// Mail////// Mail/////// Mail//////// drwx------ 4 babolo wheel 512 30 ÍÁÒ 15:09 Mail// drwx------ 4 babolo wheel 512 30 ÍÁÒ 15:09 Mail/// drwx------ 4 babolo wheel 512 30 ÍÁÒ 15:09 Mail//// drwx------ 4 babolo wheel 512 30 ÍÁÒ 15:09 Mail///// drwx------ 4 babolo wheel 512 30 ÍÁÒ 15:09 Mail////// drwx------ 4 babolo wheel 512 30 ÍÁÒ 15:09 Mail/////// drwx------ 4 babolo wheel 512 30 ÍÁÒ 15:09 Mail//////// 0skiv~(139)> -- @BABOLO http://links.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 12 9: 3: 2 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from mail.surf1.de (mail.Surf1.de [194.25.165.21]) by hub.freebsd.org (Postfix) with ESMTP id 6338537BCC2 for ; Wed, 12 Apr 2000 09:02:34 -0700 (PDT) (envelope-from alex@cichlids.com) Received: from cichlids.com (pC19F547B.dip0.t-ipconnect.de [193.159.84.123]) by mail.surf1.de (8.9.3/8.9.3) with ESMTP id RAA15049; Wed, 12 Apr 2000 17:01:40 +0200 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by cichlids.com (Postfix) with ESMTP id E52F4AC2C; Wed, 12 Apr 2000 18:04:58 +0200 (CEST) Received: (from alex@localhost) by cichlids.cichlids.com (8.9.3/8.9.3) id SAA04964; Wed, 12 Apr 2000 18:01:51 +0200 (CEST) (envelope-from alex) Date: Wed, 12 Apr 2000 18:01:51 +0200 From: Alexander Langer To: "Aleksandr A.Babaylov" Cc: Sheldon Hearn , freebsd-bugs@FreeBSD.ORG Subject: Re: bin/17924: ld -lF bug Message-ID: <20000412180151.A4944@cichlids.cichlids.com> References: <8608.955461193@axl.ops.uunet.co.za> <200004121556.TAA08605@aaz.links.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200004121556.TAA08605@aaz.links.ru>; from babolo@links.ru on Wed, Apr 12, 2000 at 07:56:24PM +0400 X-PGP-Fingerprint: 44 28 CA 4C 46 5B D3 A8 A8 E3 BA F3 4E 60 7D 7F X-Verwirrung: Dieser Header dient der allgemeinen Verwirrung. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thus spake Aleksandr A.Babaylov (babolo@links.ru): > Just curious: > 0skiv~(138)>/bin/ls -dl Mail// Mail/// Mail//// Mail///// Mail////// Mail/////// Mail//////// you forgot -F ;-) in fact, this is interesting with color-ls on Linux, where all of the first slashes are the name's color, too, and then the latter is the directory-marker-color :) Alex -- I need a new ~/.sig. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 12 9:18:52 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from aaz.links.ru (aaz.links.ru [193.125.152.37]) by hub.freebsd.org (Postfix) with ESMTP id 8CFAA37BBF8 for ; Wed, 12 Apr 2000 09:16:36 -0700 (PDT) (envelope-from babolo@links.ru) Received: (from babolo@localhost) by aaz.links.ru (8.9.3/8.9.3) id UAA09489; Wed, 12 Apr 2000 20:15:30 +0400 (MSD) Message-Id: <200004121615.UAA09489@aaz.links.ru> Subject: Re: freebsd 3.4 disklabel bug In-Reply-To: <38F354BA.F633075A@algroup.co.uk> from "Adam Laurie" at "Apr 11, 0 05:37:14 pm" To: adam@algroup.co.uk (Adam Laurie) Date: Wed, 12 Apr 2000 20:15:30 +0400 (MSD) Cc: freebsd-bugs@FreeBSD.ORG From: "Aleksandr A.Babaylov" 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 Adam Laurie writes: > FreeBSD stranger.aldigital.co.uk 3.4-RELEASE FreeBSD 3.4-RELEASE #1: Mon > Apr 10 14:57:49 GMT 2000 > root@stranger.aldigital.co.uk:/usr/src/sys/compile/STRANGER i386 > > > ...on an IDE drive, it wrongly decides to use 1 more cylinder than it > actually has: > > root@stranger /root# disklabel -r wd1 > # /dev/rwd1c: > type: ESDI > disk: wd1s1 > label: > flags: > bytes/sector: 512 > sectors/track: 63 > tracks/cylinder: 255 > sectors/cylinder: 16065 > cylinders: 2491 > sectors/unit: 40032696 > rpm: 3600 > interleave: 1 > trackskew: 0 > cylinderskew: 0 > headswitch: 0 # milliseconds > track-to-track seek: 0 # milliseconds > drivedata: 0 > > 8 partitions: > # size offset fstype [fsize bsize bps/cpg] > c: 40032696 0 unused 0 0 # (Cyl. 0 - > 2491*) > e: 40032696 0 4.2BSD 1024 8192 16 # (Cyl. 0 - > 2491*) ------^ asterick mean that not full cylinder 0skiv~(1)>dc 16065 2491 *p 40017915 40032696 40017915 -p 14781 so 2491 cylinders full and part of one more cylinder. > note that it thinks it has 2491 cylinders, but then uses 0 - 2491, i.e. > 2492. > > This will go unnoticed if your offending partition is swap, as it > doesn't try to write to swap until it errr... swaps. However, if you > have a 2nd hard disk, and you allocate the entire disk, you will be > unable to newfs it (from dmesg): > > wd1e: hard error writing fsbn 40031999 (wd1 bn 40031999; cn 2491 tn > 223 sn 35) (status 51 error 10) what dmesg say about disk size? I often use disks in such a way - with not full last cylinder. It needs apply right -t -u -c to use whole disk. > Setting it to this: > > # size offset fstype [fsize bsize bps/cpg] > c: 40032696 0 unused 0 0 # (Cyl. 0 - > 2491*) > e: 40016631 0 4.2BSD 1024 8192 16 # (Cyl. 0 - > 2490*) what about e: 40031999 0 ? may be full disk size is 40032000? > cures the problem. > > Apologies if this is already known... I'm not a regular subscriber to > this list... -- @BABOLO http://links.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 12 9:30: 7 2000 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 46A2537BCAA for ; Wed, 12 Apr 2000 09:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA53871; Wed, 12 Apr 2000 09:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6482B37BDC2 for ; Wed, 12 Apr 2000 09:23:05 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA52782; Wed, 12 Apr 2000 09:23:04 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004121623.JAA52782@freefall.freebsd.org> Date: Wed, 12 Apr 2000 09:23:04 -0700 (PDT) From: tomas@sdxnet.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/17956: system crash Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17956 >Category: kern >Synopsis: system crash >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 Apr 12 09:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: tomas hruz >Release: 3.2 >Organization: >Environment: FreeBSD ioc.ba.sdxnet.com 3.2-RELEASE FreeBSD 3.2-RELEASE #0: Tue May 18 04:05:08 GMT 1999 jkh@cathair:/usr/src/sys/compile/GENERIC i386 >Description: system crasches after forced umount of floppy and pwd >How-To-Repeat: mount -t msdos /dev/fd0 /mnt cd /mnt umount -f /dev/fd0 pwd >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 Apr 12 10: 2:20 2000 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 1961C37B876 for ; Wed, 12 Apr 2000 10:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA56718; Wed, 12 Apr 2000 10:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 12 Apr 2000 10:00:01 -0700 (PDT) Message-Id: <200004121700.KAA56718@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "David J. MacKenzie" Subject: Re: i386/16474: SCSI (AHA-2940UW) CDROM install freezes Reply-To: "David J. MacKenzie" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/16474; it has been noted by GNATS. From: "David J. MacKenzie" To: freebsd-gnats-submit@FreeBSD.org, stevel@communicom.net, djm@web.us.uu.net Cc: Subject: Re: i386/16474: SCSI (AHA-2940UW) CDROM install freezes Date: Wed, 12 Apr 2000 12:56:46 -0400 I just installed 4.0 on a system with an Adaptec 2940U with BIOS v1.23. It booted from CD, but BSD's probe didn't detect the CD-ROM drive (cd0), even though it found the two SCSI disks on the same controller (da0 and da1). Booting from floppy didn't help. My workaround was to put the CD in another computer (running Linux) and export it via NFS, and install over NFS. I'm using an Epox Athlon motherboard. Once BSD was installed, it found the CD-ROM drive (a Yamaha CRW4416S CD-RW) and I can use it without problems (I'm using the generic kernel). So, maybe this is a little progress, or maybe my motherboard or Adaptec BIOS version just let it get a little farther. What happens if you mount the CD under another OS and make floppies from floppies/kern.flp and floppies/mfsroot.flp, and boot from them--does it still freeze? Can you remove the SCSI controller and try it, or is it integrated into the motherboard? (You might not have any hard disks at that point, but it would show whether the SCSI controller was the reason for it freezing up.) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 12 10: 2:29 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from aaz.links.ru (aaz.links.ru [193.125.152.37]) by hub.freebsd.org (Postfix) with ESMTP id 2394437BDBC for ; Wed, 12 Apr 2000 10:01:52 -0700 (PDT) (envelope-from babolo@links.ru) Received: (from babolo@localhost) by aaz.links.ru (8.9.3/8.9.3) id VAA11161; Wed, 12 Apr 2000 21:01:28 +0400 (MSD) Message-Id: <200004121701.VAA11161@aaz.links.ru> Subject: Re: bin/17924: ld -lF bug In-Reply-To: <20000412180151.A4944@cichlids.cichlids.com> from "Alexander Langer" at "Apr 12, 0 06:01:51 pm" To: alex@big.endian.de (Alexander Langer) Date: Wed, 12 Apr 2000 21:01:28 +0400 (MSD) Cc: babolo@links.ru, sheldonh@uunet.co.za, freebsd-bugs@FreeBSD.ORG From: "Aleksandr A.Babaylov" 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 Alexander Langer writes: > Thus spake Aleksandr A.Babaylov (babolo@links.ru): > > Just curious: > > 0skiv~(138)>/bin/ls -dl Mail// Mail/// Mail//// Mail///// Mail////// Mail/////// Mail//////// > you forgot -F ;-) No > in fact, this is interesting with color-ls on Linux, where all of the > first slashes are the name's color, too, and then the latter is the > directory-marker-color :) Yes, you suply name/+ and it is the name with any / number in it. -- @BABOLO http://links.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 12 10:15:56 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from eastwood.aldigital.algroup.co.uk (eastwood.aldigital.algroup.co.uk [194.128.162.193]) by hub.freebsd.org (Postfix) with ESMTP id DA11E37BB6F for ; Wed, 12 Apr 2000 10:14:46 -0700 (PDT) (envelope-from adam@algroup.co.uk) Received: from algroup.co.uk ([192.168.192.2]) by eastwood.aldigital.algroup.co.uk (8.8.8/8.6.12) with ESMTP id RAA13037; Wed, 12 Apr 2000 17:13:52 GMT Message-ID: <38F4AE9F.54FC3672@algroup.co.uk> Date: Wed, 12 Apr 2000 18:13:03 +0100 From: Adam Laurie X-Mailer: Mozilla 4.7 [en-gb] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: "Aleksandr A.Babaylov" Cc: freebsd-bugs@FreeBSD.ORG, Most Worshipful System Administrators Subject: Re: freebsd 3.4 disklabel bug References: <200004121615.UAA09489@aaz.links.ru> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "Aleksandr A.Babaylov" wrote: > > > 8 partitions: > > # size offset fstype [fsize bsize bps/cpg] > > c: 40032696 0 unused 0 0 # (Cyl. 0 - > > 2491*) > > e: 40032696 0 4.2BSD 1024 8192 16 # (Cyl. 0 - > > 2491*) > ------^ asterick mean that not full cylinder Ah! > 0skiv~(1)>dc > 16065 2491 *p > 40017915 > 40032696 40017915 -p > 14781 > so 2491 cylinders full and part of one more cylinder. OK. > > > note that it thinks it has 2491 cylinders, but then uses 0 - 2491, i.e. > > 2492. > > > > This will go unnoticed if your offending partition is swap, as it > > doesn't try to write to swap until it errr... swaps. However, if you > > have a 2nd hard disk, and you allocate the entire disk, you will be > > unable to newfs it (from dmesg): > > > > wd1e: hard error writing fsbn 40031999 (wd1 bn 40031999; cn 2491 tn > > 223 sn 35) (status 51 error 10) > what dmesg say about disk size? > I often use disks in such a way - with not full last cylinder. > It needs apply right -t -u -c to use whole disk. > > > Setting it to this: > > > > # size offset fstype [fsize bsize bps/cpg] > > c: 40032696 0 unused 0 0 # (Cyl. 0 - > > 2491*) > > e: 40016631 0 4.2BSD 1024 8192 16 # (Cyl. 0 - > > 2490*) > what about > e: 40031999 0 ? > may be full disk size is 40032000? I think we tried lower numbers than that and the error followed to a lower number - I'm not sure what newfs is trying to write there, as it fails right at the beginning of the process, not at the end. Sorry to be vague, but we've shipped the machines now, so I don't have access to them to do any further testing... However, the automatic setup processes most definitely fail, so the block count is wrong even if the cylinder* is correct - I may have been able to squeeze some more space out of it by playing with block counts, but I was happy in this case to simply drop it by a whole cylinder. We're getting some more in shortly so I'll see if we can get more info... cheers, Adam -- Adam Laurie Tel: +44 (181) 742 0755 A.L. Digital Ltd. Fax: +44 (181) 742 5995 Voysey House Barley Mow Passage http://www.aldigital.co.uk London W4 4GB mailto:adam@algroup.co.uk UNITED KINGDOM PGP key on keyservers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 12 10:20: 5 2000 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 8571A37BDFA for ; Wed, 12 Apr 2000 10:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA58542; Wed, 12 Apr 2000 10:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from earth.web.us.uu.net (earth.web.us.uu.net [208.212.208.4]) by hub.freebsd.org (Postfix) with ESMTP id CD5C137BD4F for ; Wed, 12 Apr 2000 10:18:21 -0700 (PDT) (envelope-from djm@earth.web.us.uu.net) Received: (from djm@localhost) by earth.web.us.uu.net (8.9.3/8.9.3) id NAA01001; Wed, 12 Apr 2000 13:16:44 -0400 (EDT) (envelope-from djm) Message-Id: <200004121716.NAA01001@earth.web.us.uu.net> Date: Wed, 12 Apr 2000 13:16:44 -0400 (EDT) From: "David J. MacKenzie" Reply-To: djm@earth.web.us.uu.net To: FreeBSD-gnats-submit@freebsd.org Cc: djm@web.us.uu.net X-Send-Pr-Version: 3.2 Subject: misc/17957: installer navigation is confusing Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17957 >Category: misc >Synopsis: installer navigation is confusing >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: Wed Apr 12 10:20:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: David J. MacKenzie >Release: FreeBSD 4.0-RELEASE i386 >Organization: UUNET >Environment: x86 PC >Description: The 4.0 installer program (what gets run from mfsroot.flp) seems to use a tree-structured model for navigation, I've inferred. Some of the submenus involve backtracking to a previous menu when done. This structure, combined with the quirky mappings of the return and space keys, left me continually unsure of how to proceed. I was never sure whether I was about to cancel and undo what I'd just selected, and sometimes I'd get trapped into what seemed like an infinite loop between several menus. Some of the menus have OK and cancel buttons PLUS an "Exit to previous menu" selection, if I recall correctly, and you can't actually move the cursor over the OK button; you seem to have to press return over one of the main selections. I was very relieved and a bit surprised when I miraculously made it all the way through the process. >How-To-Repeat: (Try to) install FreeBSD 4.0 on a PC. I've been installing various Unix systems for over 10 years, and this is probably the most confusing installer I've run across. >Fix: A much better model would be a linear one, in which it's always clear how to proceed to the next step in installation. I wouldn't mind if I have to tab over to the OK or cancel button and press return to get out of a given menu, even if it requires a few more keystrokes; it would be way less confusing. The Red Hat and Mandrake Linux installers (not to mention Windows) are much easier to navigate. >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 Apr 12 12:53:12 2000 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 9D7FA37BEBA for ; Wed, 12 Apr 2000 12:50:46 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA72868; Wed, 12 Apr 2000 12:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from narcissus.net (narcissus.net [209.73.230.146]) by hub.freebsd.org (Postfix) with ESMTP id 42E8837BD6C for ; Wed, 12 Apr 2000 12:35:59 -0700 (PDT) (envelope-from ben@narcissus.net) Received: by narcissus.net (Postfix, from userid 1000) id 7C88FA0; Wed, 12 Apr 2000 15:24:01 -0400 (EDT) Message-Id: <20000412192401.7C88FA0@narcissus.net> Date: Wed, 12 Apr 2000 15:24:01 -0400 (EDT) From: ben@narcissus.net Reply-To: ben@narcissus.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/17958: pkg_delete runs away when given path with trailing / Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17958 >Category: bin >Synopsis: pkg_delete runs away when given path with trailing / >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 Apr 12 12:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Ben Rosengart >Release: FreeBSD 4.0-STABLE i386 >Organization: Blue Dingo >Environment: I cvsupped and rebuilt this system yesterday evening (around midnight GMT). >Description: When running "pkg_delete w3m-ssl-0.1.7/", pkg_delete consumes 100% of the CPU and does not complete. I tried three times, with the same result. The fourth time, I deleted the trailing slash, and pkg_delete worked fine. I then tried the same with another package, but it deleted fine even with the slash. However, I am able to reproduce the problem with w3m-ssl. >How-To-Repeat: cd /usr/ports/www/w3m-ssl make install cd /var/db/pkg pkg_delete w3m-ssl-0.1.7/ >Fix: Workaround is to not use the trailing slash, I'd guess the fix has something to do with the new code that was recently added to pkg_delete to handle trailing slashes. ;-) >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 Apr 12 13:52:34 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from erouter0.it-datacntr.louisville.edu (erouter0.it-datacntr.louisville.edu [136.165.1.36]) by hub.freebsd.org (Postfix) with ESMTP id 0EB6337B7B0 for ; Wed, 12 Apr 2000 13:52:24 -0700 (PDT) (envelope-from k.stevenson@louisville.edu) Received: from osaka.louisville.edu (osaka.louisville.edu [136.165.1.114]) by erouter0.it-datacntr.louisville.edu (Postfix) with ESMTP id C76A52545A for ; Wed, 12 Apr 2000 16:25:01 -0400 (EDT) Received: by osaka.louisville.edu (Postfix, from userid 15) id 99F8318616; Wed, 12 Apr 2000 16:24:55 -0400 (EDT) Date: Wed, 12 Apr 2000 16:24:55 -0400 From: Keith Stevenson To: freebsd-bugs@freebsd.org Subject: Re: gnu/17935: Perl on the RELENG_3 branch uses bogus configuration. Message-ID: <20000412162455.A75639@osaka.louisville.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I somehow messed up sending this the first time. Regards, --Keith Stevenson-- ----- Forwarded message from Keith Stevenson ----- The following patch against /usr/src/gnu/usr.bin/perl/libperl/config.SH-elf.i386 is probably a step in the right direction. I really don't think that the bogus information hurts anything though. I just makes debugging a bit more confusing. Regards, --Keith Stevenson-- -- Keith Stevenson System Programmer - Data Center Services - University of Louisville k.stevenson@louisville.edu PGP key fingerprint = 4B 29 A8 95 A8 82 EA A2 29 CE 68 DE FC EE B6 A0 --- /usr/src/gnu/usr.bin/perl/libperl/config.SH-elf.i386 Sun Aug 29 10:34:12 1999 +++ config.sh Wed Apr 12 10:18:18 2000 @@ -1,22 +1,22 @@ #!/bin/sh # -# $FreeBSD: src/gnu/usr.bin/perl/libperl/config.SH-elf.i386,v 1.10.2.3 1999/08/29 14:34:12 peter Exp $ +# $FreeBSD$ # # Package name : perl5 # Source directory : . -# Configuration time: $Date: 1999/05/05 19:42:40 $ +# Configuration time: $Date$ # Configured by : markm -# Target system : freebsd 3.0-current #0: +# Target system : freebsd 3.4-stable #0: Author='' -Date='$Date: 1999/05/05 19:42:40 $' +Date='$Date$' Header='' -Id='$FreeBSD: src/gnu/usr.bin/perl/libperl/config.SH-elf.i386,v 1.10.2.3 1999/08/29 14:34:12 peter Exp $' +Id='$Id$' Locker='' Mcc='Mcc' -RCSfile='$RCSfile: config.SH-elf.i386,v $' -Revision='$Revision: 1.10.2.2 $' +RCSfile='$RCSfile$' +Revision='$Revision$' Source='' State='' _a='.a' @@ -47,10 +47,10 @@ cccdlflags='-DPIC -fpic' ccdlflags=' ' ccflags='' -ccsymbols='__ELF__=1 __FreeBSD__=4 __FreeBSD_cc_version=400002 __GNUC_MINOR__=91 __GNUC__=2 cpu=i386 machine=i386 system=FreeBSD system=unix' +ccsymbols='__ELF__=1 __FreeBSD__=3 __FreeBSD_cc_version=340000 __GNUC_MINOR__=7 __GNUC__=2 cpu=i386 machine=i386 system=FreeBSD system=unix' cf_by='markm' cf_email='markm@freebsd.org' -cf_time='$Date: 1999/05/05 19:42:40 $' +cf_time='$Date$ chgrp='' chmod='' chown='' @@ -323,7 +323,7 @@ full_ar='/usr/bin/ar' full_csh='/bin/csh' full_sed='/usr/bin/sed' -gccversion='egcs-2.91.66 19990314 (egcs-1.1.2 release)' +gccversion='2.7.2.3' gidtype='gid_t' glibpth='/usr/lib' grep='grep' @@ -473,7 +473,7 @@ optimize=${CFLAGS:-''} orderlib='false' osname='freebsd' -osvers='4.0-current' +osvers='3.4-stable' package='perl5' pager='/usr/bin/more' passcat='cat /etc/passwd' @@ -595,6 +595,7 @@ config_arg9='-Ulocincpth=' config_arg10='-Uloclibpth=' config_arg11='-Dpager=more' +config_argc=11 PATCHLEVEL=5 SUBVERSION=3 CONFIG=true ----- End forwarded message ----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 12 15:20:11 2000 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 CC93B37B6FE; Wed, 12 Apr 2000 15:20:10 -0700 (PDT) (envelope-from semenu@FreeBSD.org) Received: (from semenu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA88984; Wed, 12 Apr 2000 15:20:09 -0700 (PDT) (envelope-from semenu@FreeBSD.org) Date: Wed, 12 Apr 2000 15:20:09 -0700 (PDT) From: Message-Id: <200004122220.PAA88984@freefall.freebsd.org> To: fanf@demon.net, semenu@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/11518: ../../pci/if_tx.c:1376: warning: no previous prototype for `dump_phy_regs' Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ../../pci/if_tx.c:1376: warning: no previous prototype for `dump_phy_regs' State-Changed-From-To: open->closed State-Changed-By: semenu State-Changed-When: Wed Apr 12 15:19:24 PDT 2000 State-Changed-Why: Fixed. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 12 15:22:56 2000 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 BB0D737B9E8; Wed, 12 Apr 2000 15:22:55 -0700 (PDT) (envelope-from semenu@FreeBSD.org) Received: (from semenu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA89394; Wed, 12 Apr 2000 15:22:55 -0700 (PDT) (envelope-from semenu@FreeBSD.org) Date: Wed, 12 Apr 2000 15:22:55 -0700 (PDT) From: Message-Id: <200004122222.PAA89394@freefall.freebsd.org> To: spam@sporty.org, semenu@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/9742: tx driver for smc autodetects fine, but network comes up only after 1 packet is sent outbound Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: tx driver for smc autodetects fine, but network comes up only after 1 packet is sent outbound State-Changed-From-To: open->closed State-Changed-By: semenu State-Changed-When: Wed Apr 12 15:21:47 PDT 2000 State-Changed-Why: Fixed. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 12 15:50: 5 2000 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 0179437B646 for ; Wed, 12 Apr 2000 15:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA91795; Wed, 12 Apr 2000 15:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C188B37B82A for ; Wed, 12 Apr 2000 15:42:46 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA91162; Wed, 12 Apr 2000 15:42:46 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004122242.PAA91162@freefall.freebsd.org> Date: Wed, 12 Apr 2000 15:42:46 -0700 (PDT) From: jacobsm@gate.net To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/17961: Fatal Trap 12. Page fault while in kernel mode Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17961 >Category: kern >Synopsis: Fatal Trap 12. Page fault while in kernel mode >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 Apr 12 15:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mark Jacobs >Release: 4.0 Stable >Organization: NA >Environment: FreeBSD primary.jacobs.org 4.0-STABLE FreeBSD 4.0-STABLE #0 Wed Apr 12 17:20:32 EDT 2000 root@primary.jacobsm.org;/usr/src/sys/compile/MAIN i386 >Description: Running coldsync 1.1.7 with Handspring Visor causes Fatal Trap 12 and system reboots. Kernel debug shows pagefault in /dev/usb/ugen.c:1216 switch (sce->edesc->bmAttributes & US_XFERTYPE) { print s $1 = 0 print sce $2 = (struct ugen_endpoint *) 0x4008c840 print sce->edesc Cannot access memory at address 0x4008c844 >How-To-Repeat: Attach Visor Cradle to USB port, press hotsync button. Run coldsync -p /dev/ugen0 Press hotsync button again kernel panic, reboot >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 Apr 12 16:40: 5 2000 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 5757A37B6F2 for ; Wed, 12 Apr 2000 16:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA96913; Wed, 12 Apr 2000 16:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 12 Apr 2000 16:40:02 -0700 (PDT) Message-Id: <200004122340.QAA96913@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Matthew D. Fuller" Subject: Re: bin/17958: pkg_delete runs away when given path with trailing / Reply-To: "Matthew D. Fuller" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/17958; it has been noted by GNATS. From: "Matthew D. Fuller" To: ben@narcissus.net Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/17958: pkg_delete runs away when given path with trailing / Date: Wed, 12 Apr 2000 18:30:40 -0500 On Wed, Apr 12, 2000 at 03:24:01PM -0400, a little birdie told me that ben@narcissus.net remarked > > When running "pkg_delete w3m-ssl-0.1.7/", pkg_delete consumes 100% of > the CPU and does not complete. I tried three times, with the same result. > The fourth time, I deleted the trailing slash, and pkg_delete worked fine. Icky. I wrote some of the code to do that, I'll take a look at it tonite if someone hasn't already. -- Matthew Fuller (MF4839) | fullermd@over-yonder.net Unix Systems Administrator | fullermd@futuresouth.com Specializing in FreeBSD | http://www.over-yonder.net/ "The only reason I'm burning my candle at both ends, is because I haven't figured out how to light the middle yet" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 12 17: 0: 5 2000 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 0860537B910 for ; Wed, 12 Apr 2000 17:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA98443; Wed, 12 Apr 2000 17:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 298A237B766 for ; Wed, 12 Apr 2000 16:50:41 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA97680; Wed, 12 Apr 2000 16:50:40 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004122350.QAA97680@freefall.freebsd.org> Date: Wed, 12 Apr 2000 16:50:40 -0700 (PDT) From: mkiernan@avantgo.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/17962: default release names need updating in src/release/Makefile Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17962 >Category: misc >Synopsis: default release names need updating in src/release/Makefile >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 Apr 12 17:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Michael Kiernan >Release: 3.4 and 4.0 >Organization: >Environment: n/a >Description: The "BASE" variable in src/release/Makefile needs to be updated at both the head of the tree (still set to 4.0 instead of 5.0) and on the releng-3 branch (still set to 3.2 instead of 3.4). >How-To-Repeat: n/a >Fix: n/a >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 Apr 12 18: 0: 8 2000 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 73F8237BB6F for ; Wed, 12 Apr 2000 18:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA04602; Wed, 12 Apr 2000 18:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 12 Apr 2000 18:00:03 -0700 (PDT) Message-Id: <200004130100.SAA04602@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Matthew D. Fuller" Subject: Re: bin/17958: pkg_delete runs away when given path with trailing / Reply-To: "Matthew D. Fuller" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/17958; it has been noted by GNATS. From: "Matthew D. Fuller" To: ben@narcissus.net Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/17958: pkg_delete runs away when given path with trailing / Date: Wed, 12 Apr 2000 19:52:06 -0500 On Wed, Apr 12, 2000 at 03:24:01PM -0400 I heard the voice of ben@narcissus.net, and lo! it spake thus: > > When running "pkg_delete w3m-ssl-0.1.7/", pkg_delete consumes 100% of > the CPU and does not complete. I tried three times, with the same result. > The fourth time, I deleted the trailing slash, and pkg_delete worked fine. OK, found it. It's freaking out on an isalpha() test in the loop because the second char is a number, not a letter. The test is designed to allow 'pkg_delete /var/db/pkg/foo-a.b/' by removing the leading directories, by continuing to whack off /'s until there no longer is one there. In retrospect, I'm not sure why it's using the second char, but a quick test with the first char doesn't work either. This patch appears to make it work for me. pkg_info included in the patch as well. Notes: 1 - This should be revisited sometime to figure out why I did this the way I did. It doesn't work the more 'logical' way, and I know I did it for good reason, I just don't remember it. 2 - pkg_info and pkg_delete code has possibly gratuitous style differences, and should be re-styled closer together sometime, just for aesthetics. I won't say which style I like better, because it's the one that's frowned upon ;) 3 - This presently requies that all packages have pass either isalpha() or isdigit() for the second char. I *THINK* all packages pass that criterion, but then, I previously thought they'd all pass isalpha(), so I could be wrong again. Index: delete/main.c =================================================================== RCS file: /usr/cvs/src/usr.sbin/pkg_install/delete/main.c,v retrieving revision 1.17 diff -u -r1.17 main.c --- main.c 2000/02/18 07:00:01 1.17 +++ main.c 2000/04/13 00:41:47 @@ -84,7 +84,8 @@ /* Get all the remaining package names, if any */ while (*argv) { if ((pkgs_split = rindex(*argv, (int)'/')) != NULL) { - while (!isalpha(*(pkgs_split + 1))) { + while ((!isalpha(*(pkgs_split + 1))) + && (!isdigit(*(pkgs_split+1)))) { *pkgs_split = '\0'; if ((pkgs_split = rindex(*argv, (int) '/')) == NULL) pkgs_split = *argv; Index: info/main.c =================================================================== RCS file: /usr/cvs/src/usr.sbin/pkg_install/info/main.c,v retrieving revision 1.22 diff -u -r1.22 main.c --- main.c 2000/01/18 01:45:54 1.22 +++ main.c 2000/04/13 00:41:48 @@ -148,7 +148,8 @@ { if( (pkgs_split = rindex(*argv, (int) '/')) != NULL ) { - while( !isalpha(*(pkgs_split+1)) ) + while( (!isalpha(*(pkgs_split+1))) + && (!isdigit(*(pkgs_split+1))) ) { *pkgs_split = '\0'; if ( (pkgs_split = rindex(*argv, (int) '/')) == NULL) -- Matthew Fuller (MF4839) | fullermd@over-yonder.net Unix Systems Administrator | fullermd@futuresouth.com Specializing in FreeBSD | http://www.over-yonder.net/ "The only reason I'm burning my candle at both ends, is because I haven't figured out how to light the middle yet" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 12 19:20: 9 2000 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 2381337BCAA for ; Wed, 12 Apr 2000 19:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA12580; Wed, 12 Apr 2000 19:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AC0DE37BB97 for ; Wed, 12 Apr 2000 19:18:39 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA12378; Wed, 12 Apr 2000 19:18:39 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004130218.TAA12378@freefall.freebsd.org> Date: Wed, 12 Apr 2000 19:18:39 -0700 (PDT) From: brian@pocketscience.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: bin/17963: NATD appears to memory leak when a connection fails from the internal network to the external network. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17963 >Category: bin >Synopsis: NATD appears to memory leak when a connection fails from the internal network to the external network. >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 Apr 12 19:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Brian Nelson >Release: 3.4-STABLE >Organization: PocketScience, Inc >Environment: FreeBSD vpn1.pocketmail.com 3.4-STABLE FreeBSD 3.4-STABLE #0: Wed Apr 12 11:14:46 PDT 2000 notgod@vpn1.pocketmail.com:/usr/src/sys/compile/VPN i386 >Description: In production, we are making several connection attempts to do AOL polling. Some are getting a failure to connect (actually, a significant number are). Since we have noticed this behavior (a bug on our end), we have also noticed that natd memory leaks, actually pretty significantly. We're pulling ~50k connections/hour. It takes ~16 hours for the daemon to leak enough that the network dies on the machine, until you restart natd. >How-To-Repeat: Set up natd. from an internal machine, make several network connections that get dropped on the remote end (not denied, but connection timeouts) >Fix: None at this time. >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 Apr 12 20:20: 5 2000 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 97EA437BAE5 for ; Wed, 12 Apr 2000 20:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA17348; Wed, 12 Apr 2000 20:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2A9C737BAC3 for ; Wed, 12 Apr 2000 20:16:13 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA17121; Wed, 12 Apr 2000 20:16:12 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004130316.UAA17121@freefall.freebsd.org> Date: Wed, 12 Apr 2000 20:16:12 -0700 (PDT) From: locke@mcs.net To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/17965: vr (MII-bus version in 4.0 ONLY) driver lock-up problems Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17965 >Category: kern >Synopsis: vr (MII-bus version in 4.0 ONLY) driver lock-up problems >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 Apr 12 20:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Peter Johnson >Release: 4.0-STABLE >Organization: >Environment: FreeBSD matrix.bilogic.org 4.0-STABLE FreeBSD 4.0-STABLE #15: Wed Apr 12 21:39:05 CDT 2000 >Description: Moderate to heavy traffic load on the vr card can periodically cause the network to completely freeze up (all connections die, everything unreachable with ping, etc) for about 10-30 secs. Also, the following message appears in the system log: vr0: watchdog timeout If the network stays down for longer than 10 secs or so, multiple copies of the above message appear in the system log (I got up to 20+ once). Also, I have also seen the "rx error: unknown rx error" message in syslog (see kern/17866), but that is much less frequent than the "watchdog timeout" message. >How-To-Repeat: Any sort of moderate to heavy traffic load (Samba, FTP, etc) can cause the card to lock up for a relatively short period of time (10-20 secs). >Fix: Get to a pre-MII-bus version by doing the following: Back out /src/sys/pci/if_vr.c to version 1.17 Back out /src/sys/pci/if_vrreg.h to version 1.6 Recompile kernel. Reboot (there might be syslog messages about miibus conflicts.. haven't tried to track them down yet, they're probably due to not removing mii bus from my kernel config). >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 Apr 12 22: 0: 5 2000 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 4634937B81F for ; Wed, 12 Apr 2000 22:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA27453; Wed, 12 Apr 2000 22:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from rat-thing.netizen.com.au (rat-thing.netizen.com.au [203.30.75.120]) by hub.freebsd.org (Postfix) with ESMTP id 78FA837BAF9 for ; Wed, 12 Apr 2000 21:52:36 -0700 (PDT) (envelope-from benno@rat-thing.netizen.com.au) Received: (from root@localhost) by rat-thing.netizen.com.au (8.9.3/8.9.3) id OAA25298; Thu, 13 Apr 2000 14:52:34 +1000 (EST) (envelope-from benno) Message-Id: <200004130452.OAA25298@rat-thing.netizen.com.au> Date: Thu, 13 Apr 2000 14:52:34 +1000 (EST) From: benno@netizen.com.au Reply-To: benno@netizen.com.au To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: conf/17967: etc/Makefile attempts to build whatis databases even if NOMAN Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17967 >Category: conf >Synopsis: etc/Makefile attempts to build whatis databases even if NOMAN is defined >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 Apr 12 22:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Benno Rice >Release: FreeBSD 5.0-CURRENT i386 >Organization: Netizen Pty Ltd >Environment: FreeBSD rat-thing.netizen.com.au 5.0-CURRENT FreeBSD 5.0-CURRENT #11: Wed Mar 15 14:04:47 EST 2000 benno@rat-thing.netizen.com.au:/usr/src/sys/compile/RATTHING i386 >Description: The 'distribution' target in etc/Makefile attempts to cd to share/man and run make makedb even if NOMAN is defined. >How-To-Repeat: setenv NOMAN true cd /usr/src/etc make distribution >Fix: --- Makefile Thu Apr 13 14:49:14 2000 +++ Makefile.new Thu Apr 13 14:49:05 2000 @@ -129,7 +129,9 @@ (cd ${.CURDIR}/..; \ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${FREEBSD} \ ${DESTDIR}/) +.if !defined(NOMAN) (cd ${.CURDIR}/../share/man; ${MAKE} makedb; ) +.endif distrib-dirs: mtree -deU -f ${.CURDIR}/mtree/BSD.root.dist -p ${DESTDIR}/ >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 Apr 13 0: 1: 9 2000 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 9B9D937BD01; Thu, 13 Apr 2000 00:01:08 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA41703; Thu, 13 Apr 2000 00:01:08 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Thu, 13 Apr 2000 00:01:08 -0700 (PDT) From: Message-Id: <200004130701.AAA41703@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, imp@FreeBSD.org Subject: Re: i386/17900: 3Com 3C589D and 3CCE589ET doesn't during install of 4.0-RELEASE Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: 3Com 3C589D and 3CCE589ET doesn't during install of 4.0-RELEASE Responsible-Changed-From-To: freebsd-bugs->imp Responsible-Changed-By: sheldonh Responsible-Changed-When: Thu Apr 13 00:00:39 PDT 2000 Responsible-Changed-Why: The feedback provided by the originator makes this look like Warner's baby. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 13 0: 6:54 2000 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 0D93837BB4F; Thu, 13 Apr 2000 00:06:52 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA42386; Thu, 13 Apr 2000 00:06:51 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Thu, 13 Apr 2000 00:06:51 -0700 (PDT) From: Message-Id: <200004130706.AAA42386@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, n_hibma@FreeBSD.org Subject: Re: kern/17870: 4.0-release consistently crashes a couple seconds into the MFSROOT floppy boot process (kern.flp seems OK) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: 4.0-release consistently crashes a couple seconds into the MFSROOT floppy boot process (kern.flp seems OK) Responsible-Changed-From-To: freebsd-bugs->n_hibma Responsible-Changed-By: sheldonh Responsible-Changed-When: Thu Apr 13 00:06:03 PDT 2000 Responsible-Changed-Why: Nick, the originator's feedback makes this look like a USB problem at install-time. Can you take a look? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 13 0:50: 5 2000 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 BBC8037BA4A for ; Thu, 13 Apr 2000 00:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA47023; Thu, 13 Apr 2000 00:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 13 Apr 2000 00:50:03 -0700 (PDT) Message-Id: <200004130750.AAA47023@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Bill Fenner Subject: Re: bin/3170: vi freaks and dump core if user doesn't exist Reply-To: Bill Fenner Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/3170; it has been noted by GNATS. From: Bill Fenner To: mellon@pobox.com Cc: freebsd-gnats-submit@freebsd.org Subject: Re: bin/3170: vi freaks and dump core if user doesn't exist Date: Thu, 13 Apr 2000 00:47:07 -0700 vi must be running while you delete the user. i.e. user exists, runs vi on an existing file (but don't make changes), delete user, make a change, vi dies. Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 13 1: 0: 4 2000 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 8FE6437BB2B for ; Thu, 13 Apr 2000 01:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA48219; Thu, 13 Apr 2000 01:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 13 Apr 2000 01:00:03 -0700 (PDT) Message-Id: <200004130800.BAA48219@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Bill Fenner Subject: Re: bin/17818: ssh X11 forward breaks with X11 not in /usr Reply-To: Bill Fenner Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/17818; it has been noted by GNATS. From: Bill Fenner To: bfischer@techfak.uni-bielefeld.de Cc: freebsd-gnats-submit@freebsd.org Subject: Re: bin/17818: ssh X11 forward breaks with X11 not in /usr Date: Thu, 13 Apr 2000 00:51:00 -0700 Workaround: set XAuthLocation in /etc/ssh/sshd_config . Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 13 2: 0:36 2000 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 CE77437BA03; Thu, 13 Apr 2000 02:00:34 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA68077; Thu, 13 Apr 2000 02:00:34 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Thu, 13 Apr 2000 02:00:34 -0700 (PDT) From: Message-Id: <200004130900.CAA68077@freefall.freebsd.org> To: tomas@sdxnet.com, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/17956: system crash Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: system crash State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Thu Apr 13 02:00:23 PDT 2000 State-Changed-Why: Duplicate of numerous other PRs containing much more detail on the problem. The short answer is "be aware of the problem and don't do that". The long answer is that it's a lot of work to fix. :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 13 2:26:52 2000 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 9A34F37BD20; Thu, 13 Apr 2000 02:26:51 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA72948; Thu, 13 Apr 2000 02:26:51 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Thu, 13 Apr 2000 02:26:51 -0700 (PDT) From: Message-Id: <200004130926.CAA72948@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, n_hibma@FreeBSD.org Subject: Re: kern/17961: Fatal Trap 12. Page fault while in kernel mode Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Fatal Trap 12. Page fault while in kernel mode Responsible-Changed-From-To: freebsd-bugs->n_hibma Responsible-Changed-By: sheldonh Responsible-Changed-When: Thu Apr 13 02:26:23 PDT 2000 Responsible-Changed-Why: Over to Mr. USB. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 13 2:50: 5 2000 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 DC27E37BD41 for ; Thu, 13 Apr 2000 02:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA75655; Thu, 13 Apr 2000 02:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 13 Apr 2000 02:50:03 -0700 (PDT) Message-Id: <200004130950.CAA75655@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Bjoern Fischer Subject: Re: bin/17818: ssh X11 forward breaks with X11 not in /usr Reply-To: Bjoern Fischer Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/17818; it has been noted by GNATS. From: Bjoern Fischer To: Bill Fenner Cc: freebsd-gnats-submit@freebsd.org Subject: Re: bin/17818: ssh X11 forward breaks with X11 not in /usr Date: Thu, 13 Apr 2000 10:45:54 +0200 On Thu, Apr 13, 2000 at 12:51:00AM -0700, Bill Fenner wrote: >=20 > Workaround: set XAuthLocation in /etc/ssh/sshd_config . Uh, thanks. Maybe this info should be added to the man page. Bj=F6rn --=20 -----BEGIN GEEK CODE BLOCK----- GCS d--(+) s++: a- C+++(-) UB++++OSI++++$ P+++(-) L---(++) !E W- N+ o>+ K- !w !O !M !V PS++ PE- PGP++ t+++ !5 X++ tv- b+++ D++ G e+ h-- y+=20 ------END GEEK CODE BLOCK------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 13 4: 5:13 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from heart.ne.jp (ns.numata.aomori.aomori.jp [210.164.220.226]) by hub.freebsd.org (Postfix) with ESMTP id 7254237B582 for ; Thu, 13 Apr 2000 04:05:09 -0700 (PDT) (envelope-from issei@guru.gr.jp) Received: from localhost (konbu.guru.gr.jp [210.164.220.228]) by heart.ne.jp (8.9.3/8.9.3) with ESMTP id UAA26610; Thu, 13 Apr 2000 20:04:55 +0900 (JST) To: wpaul@skynet.ctr.columbia.edu Cc: bugs@freebsd.org Subject: Re: kern/17866: vr0 hung up From: Issei Numata In-Reply-To: <200004101524.LAA24995@skynet.ctr.columbia.edu> References: <20000410202748O.issei@guru.gr.jp> <200004101524.LAA24995@skynet.ctr.columbia.edu> X-Mailer: Mew version 1.94.1 on XEmacs 21.1 (Canyonlands) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20000413200610Q.issei@guru.gr.jp> Date: Thu, 13 Apr 2000 20:06:10 +0900 X-Dispatcher: imput version 20000113(IM136) Lines: 30 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org wpaul> No, look. It can be a switch, or a hub, or a 10/100 hub. The last case wpaul> is special: it's sort of a mix between a hub and a switch in that there wpaul> are only two fabrics, one for 10mbps and one for 100mbps. However all wpaul> the 10mbps links and all the 100mbps are shared. So you usually don't wpaul> use full duplex. Your comment belong to different order. If I remember rightly, the performace is ultra extreamly slow like a snail, like a `1 base` or like a `0.1 base'. wpaul> *All* problem reports must include details. Always. And you haven't wpaul> told me yet what happens when you try the patch I gave you. Yes I understand, then I have one question for you. Do you have any idea to attach NIC to my PC and power on switch from remote distant (about 3000 miles) place? I'd like to patch and try to tell you full story and explain what happend. But I can't. I'm now not in Japan. I'm now in Hong Kong. I'm writing this mail via low-band telnet. So, it is difficult for me to write may word in mail. In previous mail for you, I explained my situations to you. I'm embarrassed for your complaint. Please wait a few days until I'll return. I explain everything for you. That is the reason why I send mail for only you. I would like to do that, but I cant. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 13 6:30: 5 2000 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 3F6B237BD39 for ; Thu, 13 Apr 2000 06:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA99592; Thu, 13 Apr 2000 06:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 278EE37B598 for ; Thu, 13 Apr 2000 06:21:25 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA98815; Thu, 13 Apr 2000 06:21:24 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004131321.GAA98815@freefall.freebsd.org> Date: Thu, 13 Apr 2000 06:21:24 -0700 (PDT) From: dragona@interaccess.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/17971: cannot boot 4.0 floppies to install Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17971 >Category: kern >Synopsis: cannot boot 4.0 floppies to install >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 Apr 13 06:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Derek Ragona >Release: 4.0 >Organization: Computing Innovations >Environment: >Description: When I try to boot the 4.0 floppy the bootstrap, auto-discovery dosn't find the floppy drive, from which the bootstrap loaded. It identifies the two hard drives, but not the floppy. This is on a Pentium 60 PC, with an adaptec 2840 SCSI card, two SCSI hard drives, two SCSI CD-ROM drives, a SCSI tape drive. The floppy disk drive is a standard 3.5" 1.44 MB Teac floppy. This problem has existed in versions 3.x as well. >How-To-Repeat: Put the boot floppy in the drive, and reboot the PC. >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 Apr 13 7:40:10 2000 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 A3C7D37BD8B for ; Thu, 13 Apr 2000 07:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA73787; Thu, 13 Apr 2000 07:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3C68737B82C for ; Thu, 13 Apr 2000 07:31:35 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA72945; Thu, 13 Apr 2000 07:31:35 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004131431.HAA72945@freefall.freebsd.org> Date: Thu, 13 Apr 2000 07:31:35 -0700 (PDT) From: dot@dotat.at To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/17974: [PATCH] mailwrapper manual page mentions NetBSD in a silly context Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17974 >Category: misc >Synopsis: [PATCH] mailwrapper manual page mentions NetBSD in a silly context >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 Apr 13 07:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Tony Finch >Release: FreeBSD-4.0-RELEASE >Organization: >Environment: >Description: The manual page for mailwrapper is written for NetBSD and assumes that it is being viewed on that system, so some of the phrasing isn't appropriate for FreeBSD. >How-To-Repeat: >Fix: --- /usr/src/usr.sbin/mailwrapper/mailwrapper.8 Wed Mar 1 14:07:59 2000 +++ mailwrapper.8 Thu Apr 13 15:29:20 2000 @@ -52,7 +52,7 @@ .Pp Times have changed, however. On a modern -.Nx +.Ux system, the administrator may wish to use one of several available MTAs. .Pp >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 Apr 13 8:10: 6 2000 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 01FCF37B849 for ; Thu, 13 Apr 2000 08:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA77423; Thu, 13 Apr 2000 08:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 13 Apr 2000 08:10:02 -0700 (PDT) Message-Id: <200004131510.IAA77423@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ruslan Ermilov Subject: Re: bin/17963: NATD appears to memory leak when a connection fails from the internal network to the external network. Reply-To: Ruslan Ermilov Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/17963; it has been noted by GNATS. From: Ruslan Ermilov To: brian@pocketscience.com Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: bin/17963: NATD appears to memory leak when a connection fails from the internal network to the external network. Date: Thu, 13 Apr 2000 18:04:38 +0300 On Wed, Apr 12, 2000 at 07:18:39PM -0700, brian@pocketscience.com wrote: > > In production, we are making several connection attempts to do AOL > polling. Some are getting a failure to connect (actually, a > significant number are). Since we have noticed this behavior (a bug > on our end), we have also noticed that natd memory leaks, actually > pretty significantly. > > We're pulling ~50k connections/hour. It takes ~16 hours for the > daemon to leak enough that the network dies on the machine, until > you restart natd. > Are these TCP connections? (I will assume that they are below). Are these connections to the same remote machine/port? Are these connections from the same local machine/port? > >How-To-Repeat: > Set up natd. > > from an internal machine, make several network connections that get > dropped on the remote end (not denied, but connection timeouts) > It is unclear what do you mean. Do these connections get established, and then single-dropped by the remote end, or not established at all? In the first case, turning on and tuning a system-wide TCP keepalive on the client side might help. Do you have it enabled? What are the values of net.inet.tcp.*keep* MIB variables? Did you try running natd(8) with -log option, and monitoring the memory usage by `tail -f /var/log/alias.log'? -- Ruslan Ermilov Sysadmin and DBA of the ru@ucb.crimea.ua United Commercial Bank, ru@FreeBSD.org FreeBSD committer, +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 Apr 13 11: 0: 7 2000 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 2812237BC7F for ; Thu, 13 Apr 2000 11:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA95911; Thu, 13 Apr 2000 11:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 11D5337B6DE for ; Thu, 13 Apr 2000 10:51:02 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA94247; Thu, 13 Apr 2000 10:51:01 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004131751.KAA94247@freefall.freebsd.org> Date: Thu, 13 Apr 2000 10:51:01 -0700 (PDT) From: atovar@austin.rr.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/17983: Minikernel build instructions do not work Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17983 >Category: misc >Synopsis: Minikernel build instructions do not work >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: Thu Apr 13 11:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Argenis Tovar >Release: 4.0-RELEASE >Organization: Compaq` >Environment: FreeBSD wormhole.startrek.com 4.0-RELEASE FreeBSD 4.0-RELEASE #7: Mon Apr 10 19:46:50 CDT 2000 kroot@wormhole.startrek.com:/usr/src/sys/compile/MYKERNEL i386 >Description: The instructions found in "11.3.8.1 Before the Disaster" in the handbook are outdated. Error include syntax errors, and warnings complaining about controller, disk, etc. not used anymore, and to use 'device' instead. How do I build a minikernel so I can fit it in one floppy? >How-To-Repeat: Follow the instructions in 11.3.8.1 (FreeBSD handbook) >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 Apr 13 11:40:11 2000 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 DA59437BBF7 for ; Thu, 13 Apr 2000 11:40:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA05314; Thu, 13 Apr 2000 11:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from relay01.chello.nl (smtp.chello.nl [212.83.68.144]) by hub.freebsd.org (Postfix) with ESMTP id 2B48237B88D for ; Thu, 13 Apr 2000 11:33:33 -0700 (PDT) (envelope-from wkb@chello.nl) Received: from chello.nl ([213.46.78.184]) by relay01.chello.nl (InterMail vK.4.02.00.00 201-232-116 license 99c8f334c649856e3f2cdadc4054e412) with ESMTP id <20000413183326.FNHR11608.relay01@chello.nl> for ; Thu, 13 Apr 2000 20:33:26 +0200 Received: (from wkb@localhost) by chello.nl (8.9.3/8.9.3) id UAA01216; Thu, 13 Apr 2000 20:33:24 +0200 (CEST) (envelope-from wkb) Message-Id: <200004131833.UAA01216@chello.nl> Date: Thu, 13 Apr 2000 20:33:24 +0200 (CEST) From: wkb@chello.nl Reply-To: wkb@chello.nl To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: i386/17984: float to double coredump on 3.4-stable Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17984 >Category: i386 >Synopsis: coredumps due to incorrect FP 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: Thu Apr 13 11:40:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Wilko Bulte >Release: FreeBSD 3.4-STABLE i386 >Organization: Private FreeBSD site - The Netherlands >Environment: Any i386 3.4-stable box. >Description: float to double conversions don't work right. NOTE: this was taken of the -stable mailing list to mark the problem in the PR database. Original posters: Randall Hopper (problem) "Sean O'Connell" (patch) >How-To-Repeat: main() { float f = FLT_MAX; double d; f = f * 2; d = f; } Delete the "d=f" line and it doesn't core. Put it in and it does (floating-point exception). >Fix: Here's the fix, from 4.0, that Sean sent me. --- npx.h.releng_3 Wed Apr 12 16:28:38 2000 +++ npx.h Wed Apr 12 16:33:36 2000 @@ -85,54 +85,24 @@ u_char sv_pad[64]; /* padding; used by emulators */ }; -/* Intel prefers long real (53 bit) precision */ -#define __iBCS_NPXCW__ 0x262 -/* wfj prefers temporary real (64 bit) precision */ -#define __386BSD_NPXCW__ 0x362 /* - * bde prefers 53 bit precision and all exceptions masked. - * - * The standard control word from finit is 0x37F, giving: + * The hardware default control word for i387's and later coprocessors is + * 0x37F, giving: * * round to nearest * 64-bit precision * all exceptions masked. * - * Now I want: + * We modify the affine mode bit and precision bits in this to give: * * affine mode for 287's (if they work at all) (1 in bitfield 1<<12) * 53-bit precision (2 in bitfield 3<<8) - * overflow exception unmasked (0 in bitfield 1<<3) - * zero divide exception unmasked (0 in bitfield 1<<2) - * invalid-operand exception unmasked (0 in bitfield 1<<0). * * 64-bit precision often gives bad results with high level languages * because it makes the results of calculations depend on whether * intermediate values are stored in memory or in FPU registers. - * - * The "Intel" and wfj control words have: - * - * underflow exception unmasked (0 in bitfield 1<<4) - * - * but that causes an unexpected exception in the test program 'paranoia' - * and makes denormals useless (DBL_MIN / 2 underflows). It doesn't make - * a lot of sense to trap underflow without trapping denormals. - * - * Later I will want the IEEE default of all exceptions masked. See the - * 0.0 math manpage for why this is better. The 0.1 math manpage is empty. */ -#define __BDE_NPXCW__ 0x1272 -#define __BETTER_BDE_NPXCW__ 0x127f - -#ifdef __BROKEN_NPXCW__ -#ifdef __FreeBSD__ -#define __INITIAL_NPXCW__ __386BSD_NPXCW__ -#else -#define __INITIAL_NPXCW__ __iBCS_NPXCW__ -#endif -#else -#define __INITIAL_NPXCW__ __BDE_NPXCW__ -#endif +#define __INITIAL_NPXCW__ 0x127F #ifdef KERNEL extern struct proc *npxproc; >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 Apr 13 11:50: 9 2000 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 C5AE237BDB2 for ; Thu, 13 Apr 2000 11:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA06540; Thu, 13 Apr 2000 11:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 13 Apr 2000 11:50:03 -0700 (PDT) Message-Id: <200004131850.LAA06540@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Wilko Bulte Subject: Re: i386/17984: coredumps due to incorrect FP handling Reply-To: Wilko Bulte Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/17984; it has been noted by GNATS. From: Wilko Bulte To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: i386/17984: coredumps due to incorrect FP handling Date: Thu, 13 Apr 2000 20:47:42 +0200 Forgot to mention I tested this on my 3.4-stable machine and the Linux Acrobat4 now runs stable, no coredumps anymore W/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 13 13:30: 7 2000 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 8B26137BDD1 for ; Thu, 13 Apr 2000 13:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA22742; Thu, 13 Apr 2000 13:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from caribbean.sea-incorporated.com (caribbean.sea-incorporated.com [209.74.10.130]) by hub.freebsd.org (Postfix) with ESMTP id 3286B37B95B for ; Thu, 13 Apr 2000 13:20:05 -0700 (PDT) (envelope-from geoff@caribbean.sea-incorporated.com) Received: (from geoff@localhost) by caribbean.sea-incorporated.com (8.9.3/8.9.3) id PAA57090; Thu, 13 Apr 2000 15:54:02 -0400 (EDT) (envelope-from geoff) Message-Id: <200004131954.PAA57090@caribbean.sea-incorporated.com> Date: Thu, 13 Apr 2000 15:54:02 -0400 (EDT) From: "Geoffrey C. Speicher" Reply-To: geoff@caribbean.sea-incorporated.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: i386/17991: linux module doesn't implement pread/pwrite Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17991 >Category: i386 >Synopsis: linux module doesn't implement pread/pwrite >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Apr 13 13:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Geoffrey C. Speicher >Release: FreeBSD 3.2-RELEASE i386 >Organization: Software Engineering Associates, Inc. >Environment: FreeBSD baltic.sea-incorporated.com 4.0-STABLE FreeBSD 4.0-STABLE #2: Wed Apr 12 14:22:44 GMT 2000 geoff@baltic.sea-incorporated.com:/usr/src/sys/compile/GENERIC i386 >Description: The Linux module doesn't implement pread/pwrite syscalls, which are now required by glibc and the new InterBase 6.0 beta kit for Linux. >How-To-Repeat: N/A >Fix: Apply following patches to files in /usr/src/sys/i386/linux/ then make linux_sysent.c and rebuild Linux module: *** /usr/src/sys/i386/linux/linux_dummy.c.orig Wed Apr 12 10:00:43 2000 --- /usr/src/sys/i386/linux/linux_dummy.c Wed Apr 12 10:00:59 2000 *************** *** 98,105 **** DUMMY(rt_sigpending); DUMMY(rt_sigtimedwait); DUMMY(rt_sigqueueinfo); - DUMMY(pread); - DUMMY(pwrite); DUMMY(capget); DUMMY(capset); DUMMY(sendfile); --- 98,103 ---- *** /usr/src/sys/i386/linux/linux_file.c.orig Wed Apr 12 16:53:09 2000 --- /usr/src/sys/i386/linux/linux_file.c Wed Apr 12 17:09:44 2000 *************** *** 891,893 **** --- 891,930 ---- bsd.fd = uap->fd; return fsync(p, &bsd); } + + int + linux_pread(struct proc *p, struct linux_pread_args *args) + { + struct pread_args /* { + int fd; + void *buf; + size_t nbyte; + int pad; + off_t offset; + } */ bsd; + + bsd.fd = args->d; + bsd.buf = args->buf; + bsd.nbyte = args->nbytes; + bsd.offset = args->offset; + return pread(p, &bsd); + } + + int + linux_pwrite(struct proc *p, struct linux_pwrite_args *args) + { + struct pwrite_args /* { + int fd; + const void *buf; + size_t nbyte; + int pad; + off_t offset; + } */ bsd; + + bsd.fd = args->d; + bsd.buf = args->buf; + bsd.nbyte = args->nbytes; + bsd.offset = args->offset; + return pwrite(p, &bsd); + } + *** /usr/src/sys/i386/linux/syscalls.master.orig Wed Apr 12 09:58:26 2000 --- /usr/src/sys/i386/linux/syscalls.master Wed Apr 12 16:52:34 2000 *************** *** 265,272 **** 178 STD LINUX { int linux_rt_sigqueueinfo(void); } 179 STD LINUX { int linux_rt_sigsuspend(linux_sigset_t *newset, \ size_t sigsetsize); } ! 180 STD LINUX { int linux_pread(void); } ! 181 STD LINUX { int linux_pwrite(void); } 182 STD LINUX { int linux_chown(char *path, int uid, int gid); } 183 STD LINUX { int linux_getcwd(char *buf, unsigned long bufsize); } 184 STD LINUX { int linux_capget(void); } --- 265,274 ---- 178 STD LINUX { int linux_rt_sigqueueinfo(void); } 179 STD LINUX { int linux_rt_sigsuspend(linux_sigset_t *newset, \ size_t sigsetsize); } ! 180 STD LINUX { int linux_pread(int d, char *buf, \ ! u_int nbytes, off_t offset); } ! 181 STD LINUX { int linux_pwrite(int d, const char *buf, \ ! u_int nbytes, off_t offset); } 182 STD LINUX { int linux_chown(char *path, int uid, int gid); } 183 STD LINUX { int linux_getcwd(char *buf, unsigned long bufsize); } 184 STD LINUX { int linux_capget(void); } >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 Apr 13 13:40: 5 2000 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 AF2E837BB77 for ; Thu, 13 Apr 2000 13:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA23860; Thu, 13 Apr 2000 13:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 13 Apr 2000 13:40:02 -0700 (PDT) Message-Id: <200004132040.NAA23860@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Brian Nelson Subject: Re: bin/17963: NATD appears to memory leak when a connection fails from the internal network to the external network. Reply-To: Brian Nelson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/17963; it has been noted by GNATS. From: Brian Nelson To: Ruslan Ermilov Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: bin/17963: NATD appears to memory leak when a connection fails from the internal network to the external network. Date: Thu, 13 Apr 2000 13:34:15 -0700 Ruslan Ermilov wrote: > > On Wed, Apr 12, 2000 at 07:18:39PM -0700, brian@pocketscience.com wrote: > > > > In production, we are making several connection attempts to do AOL > > polling. Some are getting a failure to connect (actually, a > > significant number are). Since we have noticed this behavior (a bug > > on our end), we have also noticed that natd memory leaks, actually > > pretty significantly. > > > > We're pulling ~50k connections/hour. It takes ~16 hours for the > > daemon to leak enough that the network dies on the machine, until > > you restart natd. > > > Are these TCP connections? (I will assume that they are below). > Are these connections to the same remote machine/port? > Are these connections from the same local machine/port? Yes, I am sorry, they are TCP connections. They are all connecting to americaonline.aol.com (this is DNS load-balanced) port 5190 (aol in /etc/services) The local port changes, since it's ~ 100 processes each on 7 internal machines. > > > >How-To-Repeat: > > Set up natd. > > > > from an internal machine, make several network connections that get > > dropped on the remote end (not denied, but connection timeouts) > > > It is unclear what do you mean. Do these connections get established, > and then single-dropped by the remote end, or not established at all? > In the first case, turning on and tuning a system-wide TCP keepalive > on the client side might help. Do you have it enabled? What are the > values of net.inet.tcp.*keep* MIB variables? They're never established. Theyfail to successfully connect. a tcpdump shows a lot of syn's and very few fin's. The client machines are Solaris, so I am not sure how to do any TCP tuning. > > Did you try running natd(8) with -log option, and monitoring the > memory usage by `tail -f /var/log/alias.log'? I will see if I can do this. On another note, I added a ipfw rule to state all these connections, and now it's not leakign the way it was before. (ipfw add 50 allow tcp from any to any 5190 keep-state) Please note, I am not a TCP hacker, and I am learning these things as I go along. I totally appreciate your help here, friend. thank you so much. > > -- > Ruslan Ermilov Sysadmin and DBA of the > ru@ucb.crimea.ua United Commercial Bank, > ru@FreeBSD.org FreeBSD committer, > +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 Apr 13 14: 3:24 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from skynet.ctr.columbia.edu (skynet.ctr.columbia.edu [128.59.64.70]) by hub.freebsd.org (Postfix) with SMTP id CCEFA37B579 for ; Thu, 13 Apr 2000 14:03:15 -0700 (PDT) (envelope-from wpaul@skynet.ctr.columbia.edu) Received: (from wpaul@localhost) by skynet.ctr.columbia.edu (8.6.12/8.6.9) id RAA29981; Thu, 13 Apr 2000 17:06:47 -0400 From: Bill Paul Message-Id: <200004132106.RAA29981@skynet.ctr.columbia.edu> Subject: Re: kern/17965: vr (MII-bus version in 4.0 ONLY) driver lock-up problems To: locke@mcs.net Date: Thu, 13 Apr 2000 17:06:45 -0400 (EDT) Cc: bugs@freebsd.org In-Reply-To: <200004130316.UAA17121@freefall.freebsd.org> from "locke@mcs.net" at Apr 12, 2000 08:16:12 pm X-Mailer: ELM [version 2.4 PL24] Content-Type: text Content-Length: 4314 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Of all the gin joints in all the towns in all the world, locke@mcs.net had to walk into mine and say: > Moderate to heavy traffic load on the vr card can periodically cause > the network to completely freeze up (all connections die, everything > unreachable with ping, etc) for about 10-30 secs. Also, the following > message appears in the system log: > vr0: watchdog timeout The only thing I can come up with is that polling the MII bus while the chip is transmitting might be confusing it. (This driver uses the bitbang MII access method, which requires reading lots of registers.) I'm including a patch for if_vr.c and if_vrreg.h which should drastically cut down on the register accesses. This *may* help, but I need you to test it to be sure. To apply this patch: - Save this message to a file, e.g. /tmp/vr.patch - cd /sys/pci - diff < /tmp/vr.patch - Compile a new kernel (or recompile and reload the if_vr.ko module). -Bill -- ============================================================================= -Bill Paul (212) 854-6020 | System Manager, Master of Unix-Fu Work: wpaul@ctr.columbia.edu | Center for Telecommunications Research Home: wpaul@skynet.ctr.columbia.edu | Columbia University, New York City ============================================================================= "It is not I who am crazy; it is I who am mad!" - Ren Hoek, "Space Madness" ============================================================================= *** if_vr.c.orig Sat Apr 8 17:26:18 2000 --- if_vr.c Thu Apr 13 20:58:36 2000 *************** *** 948,956 **** m_adj(m_new, sizeof(u_int64_t)); c->vr_mbuf = m_new; - c->vr_ptr->vr_status = VR_RXSTAT; c->vr_ptr->vr_data = vtophys(mtod(m_new, caddr_t)); c->vr_ptr->vr_ctl = VR_RXCTL | VR_RXLEN; return(0); } --- 948,956 ---- m_adj(m_new, sizeof(u_int64_t)); c->vr_mbuf = m_new; c->vr_ptr->vr_data = vtophys(mtod(m_new, caddr_t)); c->vr_ptr->vr_ctl = VR_RXCTL | VR_RXLEN; + c->vr_ptr->vr_status = VR_RXSTAT; return(0); } *************** *** 1014,1021 **** printf("unknown rx error\n"); break; } ! vr_newbuf(sc, cur_rx, m); ! continue; } /* No errors; receive the packet. */ --- 1014,1021 ---- printf("unknown rx error\n"); break; } ! vr_init(sc); ! return; } /* No errors; receive the packet. */ *************** *** 1187,1192 **** --- 1187,1221 ---- sc = xsc; mii = device_get_softc(sc->vr_miibus); + + if (sc->vr_link == 0) + mii_tick(mii); + + if (sc->vr_link) { + if (CSR_READ_1(sc, VR_MIISTAT) & VR_MIISTAT_LINKFAULT) { + VR_CLRBIT(sc, VR_MIICMD, VR_MIICMD_AUTOPOLL); + VR_SETBIT(sc, VR_MIICMD, VR_MIICMD_DIRECTPGM); + sc->vr_link = 0; + mii_tick(mii); + sc->vr_stat_ch = timeout(vr_tick, sc, hz); + splx(s); + return; + } else { + VR_SETBIT(sc, VR_MIICMD, VR_MIICMD_AUTOPOLL); + VR_CLRBIT(sc, VR_MIICMD, VR_MIICMD_DIRECTPGM); + } + } + + if (sc->vr_link == 0) { + mii_pollstat(mii); + if (mii->mii_media_status & IFM_ACTIVE && + IFM_SUBTYPE(mii->mii_media_active) != IFM_NONE) { + sc->vr_link++; + VR_SETBIT(sc, VR_MIICMD, VR_MIICMD_AUTOPOLL); + VR_CLRBIT(sc, VR_MIICMD, VR_MIICMD_DIRECTPGM); + } + } + mii_tick(mii); sc->vr_stat_ch = timeout(vr_tick, sc, hz); *************** *** 1317,1322 **** --- 1346,1353 ---- if (m_head->m_len < VR_MIN_FRAMELEN) { m_new->m_pkthdr.len += VR_MIN_FRAMELEN - m_new->m_len; m_new->m_len = m_new->m_pkthdr.len; + bzero(mtod(m_new, char *) + m_new->m_pkthdr.len, + VR_MIN_FRAMELEN - m_new->m_pkthdr.len); } f = c->vr_ptr; f->vr_data = vtophys(mtod(m_new, caddr_t)); *************** *** 1482,1487 **** --- 1513,1519 ---- CSR_WRITE_2(sc, VR_IMR, VR_INTRS); mii_mediachg(mii); + sc->vr_link = 0; ifp->if_flags |= IFF_RUNNING; ifp->if_flags &= ~IFF_OACTIVE; *** if_vrreg.h.orig Thu Apr 13 21:01:09 2000 --- if_vrreg.h Thu Apr 13 17:57:15 2000 *************** *** 404,409 **** --- 404,410 ---- struct vr_type *vr_info; /* Rhine adapter info */ u_int8_t vr_unit; /* interface number */ u_int8_t vr_type; + u_int8_t vr_link; struct vr_list_data *vr_ldata; struct vr_chain_data vr_cdata; struct callout_handle vr_stat_ch; To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 13 14:10: 5 2000 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 E56EA37BB77 for ; Thu, 13 Apr 2000 14:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA27895; Thu, 13 Apr 2000 14:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 19A3E37B680 for ; Thu, 13 Apr 2000 14:01:50 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA26766; Thu, 13 Apr 2000 14:01:50 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004132101.OAA26766@freefall.freebsd.org> Date: Thu, 13 Apr 2000 14:01:50 -0700 (PDT) From: gelderen@systemics.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/17992: Missing pccard.conf entry for IBM 56K PCCARD modem. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17992 >Category: kern >Synopsis: Missing pccard.conf entry for IBM 56K PCCARD modem. >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Apr 13 14:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Jeroen C. van Gelderen >Release: 4-STABLE >Organization: >Environment: FreeBSD intefix.ai 4.0-STABLE FreeBSD 4.0-STABLE #0: Wed Mar 29 20:34:21 AST 2000 gelderen@grolsch.ai:/export/freebsd4/src/sys/compile/INTEFIX i386 >Description: No card in database for "IBM"("56K PC Card Modem") >How-To-Repeat: >Fix: Paste this: card "IBM" "56K PC Card Modem" config 0x22 "sio2" ? insert logger -t pccard:$device -s 56K PC Card Modem inserted remove logger -t pccard:$device -s 56K PC Card Modem removed Tested and running ok with PPP on /dev/cuaa2 . >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 Apr 13 14:20: 5 2000 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 F17E437BA9F for ; Thu, 13 Apr 2000 14:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA28800; Thu, 13 Apr 2000 14:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from privatecube.privatelabs.com (silvercube.silverpix.com [198.143.31.30]) by hub.freebsd.org (Postfix) with ESMTP id 20BFE37B680; Thu, 13 Apr 2000 14:12:07 -0700 (PDT) (envelope-from mi@privatelabs.com) Received: from misha.privatelabs.com (root@misha.privatelabs.com [198.143.31.6]) by privatecube.privatelabs.com (8.9.2/8.9.2) with ESMTP id RAA26380; Thu, 13 Apr 2000 17:10:55 -0400 (EDT) Received: (from mi@localhost) by misha.privatelabs.com (8.9.3/8.9.3) id RAA27613; Thu, 13 Apr 2000 17:11:50 -0400 (EDT) (envelope-from mi) Message-Id: <200004132111.RAA27613@misha.privatelabs.com> Date: Thu, 13 Apr 2000 17:11:50 -0400 (EDT) From: Mikhail Teterin Reply-To: mi@privatelabs.com To: FreeBSD-gnats-submit@freebsd.org Cc: peter@freebsd.org X-Send-Pr-Version: 3.2 Subject: conf/17993: improving on the default /etc/amd.map Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17993 >Category: conf >Synopsis: improving on the default /etc/amd.map >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Apr 13 14:20:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mikhail Teterin >Release: FreeBSD 4.0-STABLE i386 >Organization: Virtual Estates, Inc. >Environment: >Description: Currently, the default amd.map will cause amd to mount the filesystems using NFS even if the requested host is the same. The change below will make it use symboliic link to the / when the machine is local. One can still use /net/localhost if NFS mount is essential... Putting a reference to http://www.cs.columbia.edu/~ezk/am-utils/ into amd(8) and amd.conf(5) would A Very Good Thing (SM). >How-To-Repeat: >Fix: This can probably be expressed even better, but it works for me... --- amd.map Mon Mar 20 16:32:44 2000 +++ amd.map Thu Apr 13 17:01:10 2000 @@ -2,3 +2,5 @@ # -/defaults type:=host;fs:=${autodir}/${rhost}/host;rhost:=${key} -* opts:=rw,grpid,resvport,vers=2,proto=udp,nosuid,nodev +/defaults opts:=rw,grpid,resvport,vers=2,proto=udp,nosuid,nodev + +* host==${key};type:=link;fs:=/ \ + host!=${key};type:=host;fs:=${autodir}/${rhost}/host;rhost:=${key}; >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 Apr 13 17: 2: 8 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.ews.uiuc.edu (mx1.ews.uiuc.edu [130.126.161.237]) by hub.freebsd.org (Postfix) with ESMTP id C3B4937BAC6 for ; Thu, 13 Apr 2000 17:02:05 -0700 (PDT) (envelope-from locke@mcs.net) Received: from pete.mcs.net (isr4186.urh.uiuc.edu [130.126.208.202]) by mx1.ews.uiuc.edu (8.9.3/8.9.3) with ESMTP id TAA07651; Thu, 13 Apr 2000 19:01:54 -0500 (CDT) Message-Id: <4.3.1.2.20000413185330.022f58f0@popmail.mcs.net> X-Sender: locke@popmail.mcs.net X-Mailer: QUALCOMM Windows Eudora Version 4.3.1 Date: Thu, 13 Apr 2000 19:01:54 -0500 To: Bill Paul From: Peter Johnson Subject: Re: kern/17965: vr (MII-bus version in 4.0 ONLY) driver lock-up problems Cc: bugs@freebsd.org In-Reply-To: <200004132106.RAA29981@skynet.ctr.columbia.edu> References: <200004130316.UAA17121@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At 05:06 PM 4/13/2000 -0400, Bill Paul wrote: >Of all the gin joints in all the towns in all the world, locke@mcs.net >had to walk into mine and say: > > > Moderate to heavy traffic load on the vr card can periodically cause > > the network to completely freeze up (all connections die, everything > > unreachable with ping, etc) for about 10-30 secs. Also, the following > > message appears in the system log: > > vr0: watchdog timeout > >The only thing I can come up with is that polling the MII bus while >the chip is transmitting might be confusing it. (This driver uses >the bitbang MII access method, which requires reading lots of registers.) >I'm including a patch for if_vr.c and if_vrreg.h which should drastically >cut down on the register accesses. This *may* help, but I need you to >test it to be sure. No, unfortunately, it didn't help. My test has been to download and then subsequently upload a 62 MB file using FTP from my FreeBSD server to my workstation, plugged into the same switch. With the non-MII-bus drivers this transfer completes with no problem. Even with the patch, the download locked up the link after about 40 meg had been transferred; it came back and finished after about 20 secs, and the "watchdog timeout" message appeared in the system log. More details on my network setup if this would help: - D-Link DFE-530TX card - NetGear FS108 Fast Ethernet switch Both my workstation and my server have the D-Link cards, both are plugged into this switch at FDX 100-mbit. Thanks, Peter Johnson locke@mcs.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 13 18:29:44 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from skynet.ctr.columbia.edu (skynet.ctr.columbia.edu [128.59.64.70]) by hub.freebsd.org (Postfix) with SMTP id 7B60B37BE2F for ; Thu, 13 Apr 2000 18:29:31 -0700 (PDT) (envelope-from wpaul@skynet.ctr.columbia.edu) Received: (from wpaul@localhost) by skynet.ctr.columbia.edu (8.6.12/8.6.9) id VAA00372; Thu, 13 Apr 2000 21:33:10 -0400 From: Bill Paul Message-Id: <200004140133.VAA00372@skynet.ctr.columbia.edu> Subject: Re: kern/17965: vr (MII-bus version in 4.0 ONLY) driver To: locke@mcs.net (Peter Johnson) Date: Thu, 13 Apr 2000 21:33:08 -0400 (EDT) Cc: bugs@freebsd.org In-Reply-To: <4.3.1.2.20000413185330.022f58f0@popmail.mcs.net> from "Peter Johnson" at Apr 13, 2000 07:01:54 pm X-Mailer: ELM [version 2.4 PL24] Content-Type: text Content-Length: 1755 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Of all the gin joints in all the towns in all the world, Peter Johnson had to walk into mine and say: > > No, unfortunately, it didn't help. > > My test has been to download and then subsequently upload a 62 MB file > using FTP from my FreeBSD server to my workstation, plugged into the same > switch. With the non-MII-bus drivers this transfer completes with no > problem. Even with the patch, the download locked up the link after about > 40 meg had been transferred; it came back and finished after about 20 secs, > and the "watchdog timeout" message appeared in the system log. Hm. I'm running out of ideas. I still think it could be the polling, but I'm not certain how to test this theory. One way to do it would be to comment out all of the contents of the vr_tick() routine, and then manually set the media with ifconfig. If the problem persists after you do that, then it has to be something else, which would really tick me off since I have no idea what it could be. Of course if it turns out it is the polling, then I'll still be mad since I'm not sure how to fix it. Anyway, if you can try that, I would appreciate it. I'll have to see if I can think up a better way to debug this. -Bill -- ============================================================================= -Bill Paul (212) 854-6020 | System Manager, Master of Unix-Fu Work: wpaul@ctr.columbia.edu | Center for Telecommunications Research Home: wpaul@skynet.ctr.columbia.edu | Columbia University, New York City ============================================================================= "It is not I who am crazy; it is I who am mad!" - Ren Hoek, "Space Madness" ============================================================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 13 18:50: 5 2000 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 556B437BE29 for ; Thu, 13 Apr 2000 18:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA69614; Thu, 13 Apr 2000 18:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D6D4337BE23 for ; Thu, 13 Apr 2000 18:40:23 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA68677; Thu, 13 Apr 2000 18:40:23 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004140140.SAA68677@freefall.freebsd.org> Date: Thu, 13 Apr 2000 18:40:23 -0700 (PDT) From: boxiao63@hotmail.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/17999: freebsd 4.0 crashes every a few hours with page fault in kernel Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17999 >Category: kern >Synopsis: freebsd 4.0 crashes every a few hours with page fault in kernel >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 Apr 13 18:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: boxiao >Release: 4.0 >Organization: >Environment: i downgraged to 3.4 so can not give this. >Description: both stacked generic kernel and home made kernel crashes with kernal page fault. I didnt catch all the addresses. it fly by too quickly. >How-To-Repeat: do nothing. just wait. >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 Apr 13 20: 2:32 2000 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 7945537B610; Thu, 13 Apr 2000 20:02:31 -0700 (PDT) (envelope-from jkoshy@FreeBSD.org) Received: (from jkoshy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA76466; Thu, 13 Apr 2000 20:02:31 -0700 (PDT) (envelope-from jkoshy@FreeBSD.org) Date: Thu, 13 Apr 2000 20:02:31 -0700 (PDT) From: Message-Id: <200004140302.UAA76466@freefall.freebsd.org> To: jkoshy@FreeBSD.org, freebsd-bugs@FreeBSD.org, imp@FreeBSD.org Subject: Re: kern/17992: Missing pccard.conf entry for IBM 56K PCCARD modem. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Missing pccard.conf entry for IBM 56K PCCARD modem. Responsible-Changed-From-To: freebsd-bugs->imp Responsible-Changed-By: jkoshy Responsible-Changed-When: Thu Apr 13 20:01:51 PDT 2000 Responsible-Changed-Why: Over to maintainer of pccard.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 13 20:49:58 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.ews.uiuc.edu (mx1.ews.uiuc.edu [130.126.161.237]) by hub.freebsd.org (Postfix) with ESMTP id D37A137B7D1 for ; Thu, 13 Apr 2000 20:49:55 -0700 (PDT) (envelope-from locke@mcs.net) Received: from pete.mcs.net (isr4186.urh.uiuc.edu [130.126.208.202]) by mx1.ews.uiuc.edu (8.9.3/8.9.3) with ESMTP id WAA16267; Thu, 13 Apr 2000 22:49:45 -0500 (CDT) Message-Id: <4.3.1.2.20000413224421.025bc9c0@popmail.mcs.net> X-Sender: locke@popmail.mcs.net X-Mailer: QUALCOMM Windows Eudora Version 4.3.1 Date: Thu, 13 Apr 2000 22:49:45 -0500 To: Bill Paul From: Peter Johnson Subject: Re: kern/17965: vr (MII-bus version in 4.0 ONLY) driver Cc: bugs@freebsd.org In-Reply-To: <200004140133.VAA00372@skynet.ctr.columbia.edu> References: <4.3.1.2.20000413185330.022f58f0@popmail.mcs.net> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At 09:33 PM 4/13/2000 -0400, Bill Paul wrote: >Of all the gin joints in all the towns in all the world, Peter Johnson >had to walk into mine and say: > > > > > No, unfortunately, it didn't help. > > > > My test has been to download and then subsequently upload a 62 MB file > > using FTP from my FreeBSD server to my workstation, plugged into the same > > switch. With the non-MII-bus drivers this transfer completes with no > > problem. Even with the patch, the download locked up the link after about > > 40 meg had been transferred; it came back and finished after about 20 > secs, > > and the "watchdog timeout" message appeared in the system log. > >Hm. I'm running out of ideas. I still think it could be the polling, >but I'm not certain how to test this theory. One way to do it would be >to comment out all of the contents of the vr_tick() routine, and then >manually set the media with ifconfig. If the problem persists after >you do that, then it has to be something else, which would really tick >me off since I have no idea what it could be. Of course if it turns >out it is the polling, then I'll still be mad since I'm not sure how >to fix it. Yes, the problem persists after commenting out the entire contents of the vr_tick() routine. In fact, it made it worse :(. You didn't specify whether to use the patched version or the unpatched version, so I used the patched version. If you want me to try the unpatched version with vr_tick() commented out, I can do that as well. Interestingly, I did not have to manually set the media with ifconfig; autodetect seemed to work fine (I tested it both with autodetection and after setting it manually: both had the same problems we've been seeing). >Anyway, if you can try that, I would appreciate it. I'll have to see >if I can think up a better way to debug this. I'll try to help as much as I can. Peter Johnson locke@mcs.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 13 21:19: 2 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from area51.v-wave.com (area51.v-wave.com [24.108.26.39]) by hub.freebsd.org (Postfix) with SMTP id 8E3D637BE0A for ; Thu, 13 Apr 2000 21:19:00 -0700 (PDT) (envelope-from flatline@area51.v-wave.com) Received: (qmail 29198 invoked by uid 1001); 14 Apr 2000 04:18:55 -0000 Date: Thu, 13 Apr 2000 22:18:55 -0600 From: Chris Wasser To: Peter Johnson Cc: Bill Paul , bugs@FreeBSD.ORG Subject: Re: kern/17965: vr (MII-bus version in 4.0 ONLY) driver lock-up problems Message-ID: <20000413221855.B29133@area51.v-wave.com> References: <200004130316.UAA17121@freefall.freebsd.org> <200004132106.RAA29981@skynet.ctr.columbia.edu> <4.3.1.2.20000413185330.022f58f0@popmail.mcs.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <4.3.1.2.20000413185330.022f58f0@popmail.mcs.net>; from locke@mcs.net on Thu, Apr 13, 2000 at 07:01:54PM -0500 X-Operating-System: FreeBSD 4.0-STABLE Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Apr 13, 2000 at 07:01:54PM -0500, Peter Johnson wrote: > My test has been to download and then subsequently upload a 62 MB file > using FTP from my FreeBSD server to my workstation, plugged into the same > switch. With the non-MII-bus drivers this transfer completes with no > problem. Even with the patch, the download locked up the link after about > 40 meg had been transferred; it came back and finished after about 20 secs, > and the "watchdog timeout" message appeared in the system log. I'm running into similar problems with the dc driver under 4.0 (miibus is in the kernel) and xl driver. The xl driver ended up locking the machine and the dc driver gets TX underrun errors. (tested with a 3c905C-TX and a LC82C115 PNIC II) Both cards were tested using a 7GB tarball transferred via stock ftp client. I've tried multiple cards thinking maybe the ones I tried originally were bad, made no difference. At first it tells me it's increasing the TX threshold then finally that it's using store-and-forward method and getting abysmal preformance on 100Base-TX full-duplex switched network (also getting output errors listed in netstat) .. I haven't tried again with the xl driver after it seized the entire machine forcing hard reboot. It should be noted that both these cards preform as they should on my 3.3-STABLE machines. Thankfully, a generous soul has decided to take pity on me and we're trying to work it out via private email, but I felt I should add my 2 cents as it's somewhat related. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 13 21:58:46 2000 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 E602C37B5FE; Thu, 13 Apr 2000 21:58:44 -0700 (PDT) (envelope-from jkoshy@FreeBSD.org) Received: (from jkoshy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA86480; Thu, 13 Apr 2000 21:58:43 -0700 (PDT) (envelope-from jkoshy@FreeBSD.org) Date: Thu, 13 Apr 2000 21:58:43 -0700 (PDT) From: Message-Id: <200004140458.VAA86480@freefall.freebsd.org> To: jkoshy@FreeBSD.org, freebsd-bugs@FreeBSD.org, imp@FreeBSD.org Subject: Re: misc/13400: D-Link 660 pccard entry in pccard.conf.sample doesn't work Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: D-Link 660 pccard entry in pccard.conf.sample doesn't work Responsible-Changed-From-To: freebsd-bugs->imp Responsible-Changed-By: jkoshy Responsible-Changed-When: Thu Apr 13 21:58:07 PDT 2000 Responsible-Changed-Why: Over to maintainer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 13 21:59: 7 2000 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 9F80937B64C; Thu, 13 Apr 2000 21:59:06 -0700 (PDT) (envelope-from jkoshy@FreeBSD.org) Received: (from jkoshy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA86561; Thu, 13 Apr 2000 21:59:05 -0700 (PDT) (envelope-from jkoshy@FreeBSD.org) Date: Thu, 13 Apr 2000 21:59:05 -0700 (PDT) From: Message-Id: <200004140459.VAA86561@freefall.freebsd.org> To: jkoshy@FreeBSD.org, freebsd-bugs@FreeBSD.org, imp@FreeBSD.org Subject: Re: conf/14297: [Patch] pccard.conf for corega Ether PCC-T compatible PCMCIA Ethernet Card Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [Patch] pccard.conf for corega Ether PCC-T compatible PCMCIA Ethernet Card Responsible-Changed-From-To: freebsd-bugs->imp Responsible-Changed-By: jkoshy Responsible-Changed-When: Thu Apr 13 21:58:45 PDT 2000 Responsible-Changed-Why: Over to maintainer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 13 22: 0:28 2000 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 07D5237BE50; Thu, 13 Apr 2000 22:00:27 -0700 (PDT) (envelope-from jkoshy@FreeBSD.org) Received: (from jkoshy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA86734; Thu, 13 Apr 2000 22:00:25 -0700 (PDT) (envelope-from jkoshy@FreeBSD.org) Date: Thu, 13 Apr 2000 22:00:25 -0700 (PDT) From: Message-Id: <200004140500.WAA86734@freefall.freebsd.org> To: jkoshy@FreeBSD.org, freebsd-bugs@FreeBSD.org, iwasaki@FreeBSD.org Subject: Re: conf/17929: pccardd uses /etc/pccard.conf.sample when man page says /etc/pccard.conf Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: pccardd uses /etc/pccard.conf.sample when man page says /etc/pccard.conf Responsible-Changed-From-To: freebsd-bugs->iwasaki Responsible-Changed-By: jkoshy Responsible-Changed-When: Thu Apr 13 21:59:06 PDT 2000 Responsible-Changed-Why: Over to maintainer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 13 22:30: 9 2000 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 A135337BE2F for ; Thu, 13 Apr 2000 22:30:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA91989; Thu, 13 Apr 2000 22:30:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 13 Apr 2000 22:30:04 -0700 (PDT) Message-Id: <200004140530.WAA91989@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Rahul Dhesi Subject: Re: kern/17122: crash due to: softdep_disk_write_com Reply-To: Rahul Dhesi Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/17122; it has been noted by GNATS. From: Rahul Dhesi To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: kern/17122: crash due to: softdep_disk_write_com Date: Thu, 13 Apr 2000 22:27:52 -0700 I swapped machines, by moving the crash-prone OS configuration to a different box. Now only was I now using all different hardware, but also, the motherboard brand and SCSI host adaptor brand were now different. The crashes continued. Then I rebuilt the kernel omitting softupdates. The crashes stopped. The final conclusion is that the bug is probably either in softupdates or in the way it interacts with some other OS component. And the bug is probably triggered by the way the squid proxy cache does I/O. Rahul To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 13 23:24: 1 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from ns.itga.com.au (ns.itga.com.au [202.53.40.210]) by hub.freebsd.org (Postfix) with ESMTP id E470137B697 for ; Thu, 13 Apr 2000 23:23:57 -0700 (PDT) (envelope-from gnb@itga.com.au) Received: from lightning.itga.com.au (lightning.itga.com.au [192.168.71.20]) by ns.itga.com.au (8.9.3/8.9.3) with ESMTP id QAA05957; Fri, 14 Apr 2000 16:23:55 +1000 (EST) (envelope-from gnb@itga.com.au) Received: from itga.com.au (lightning.itga.com.au [192.168.71.20]) by lightning.itga.com.au (8.9.3/8.9.3) with ESMTP id QAA04267; Fri, 14 Apr 2000 16:23:54 +1000 (EST) Message-Id: <200004140623.QAA04267@lightning.itga.com.au> X-Mailer: exmh version 2.0.1 12/23/97 From: Gregory Bond To: Rahul Dhesi Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: kern/17122: crash due to: softdep_disk_write_com In-reply-to: Your message of Thu, 13 Apr 2000 22:30:04 -0700. Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 14 Apr 2000 16:23:54 +1000 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > The final conclusion is that the bug is probably either in softupdates > or in the way it interacts with some other OS component. And the bug is > probably triggered by the way the squid proxy cache does I/O. FWIW we run a not-very-heavily-loaded Squid cache on a softupdates-enabled partition on a PPro machine doing nothing else. We have had 1 inexplained crash in a couple of months - no backtrace, no panic, no crashdump, just a reboot. I've got dumps and DDB enabled into a debugging kernel if it happens again.... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 13 23:38:46 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from yellow.rahul.net (yellow.rahul.net [192.160.13.18]) by hub.freebsd.org (Postfix) with ESMTP id 7623237B6BC for ; Thu, 13 Apr 2000 23:38:45 -0700 (PDT) (envelope-from dhesi@rahul.net) Received: by yellow.rahul.net (Postfix, from userid 104) id 55EB77C79; Thu, 13 Apr 2000 23:38:45 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by yellow.rahul.net (Postfix) with ESMTP id 49B507C52; Thu, 13 Apr 2000 23:38:45 -0700 (PDT) Date: Thu, 13 Apr 2000 23:38:45 -0700 (PDT) From: Rahul Dhesi To: Gregory Bond Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: kern/17122: crash due to: softdep_disk_write_com In-Reply-To: <200004140623.QAA04267@lightning.itga.com.au> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In my case the machine does many things: squid proxy cache incoming and outgoing mail NFS service for exported mail file system general-purpose shell access for users recursive name service for PPP users authoritative name service for one busy DNS zone Rahul To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 14 0:40: 6 2000 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 51A3237B6F5 for ; Fri, 14 Apr 2000 00:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA09680; Fri, 14 Apr 2000 00:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 14 Apr 2000 00:40:03 -0700 (PDT) Message-Id: <200004140740.AAA09680@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ruslan Ermilov Subject: Re: bin/17963: NATD appears to memory leak when a connection fails from the internal network to the external network. Reply-To: Ruslan Ermilov Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/17963; it has been noted by GNATS. From: Ruslan Ermilov To: Brian Nelson Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: bin/17963: NATD appears to memory leak when a connection fails from the internal network to the external network. Date: Fri, 14 Apr 2000 10:33:22 +0300 On Thu, Apr 13, 2000 at 01:34:15PM -0700, Brian Nelson wrote: > Ruslan Ermilov wrote: > > > > On Wed, Apr 12, 2000 at 07:18:39PM -0700, brian@pocketscience.com wrote: > > > > > > In production, we are making several connection attempts to do AOL > > > polling. Some are getting a failure to connect (actually, a > > > significant number are). Since we have noticed this behavior (a bug > > > on our end), we have also noticed that natd memory leaks, actually > > > pretty significantly. > > > > > > We're pulling ~50k connections/hour. It takes ~16 hours for the > > > daemon to leak enough that the network dies on the machine, until > > > you restart natd. > > > > > Are these TCP connections? (I will assume that they are below). > > Are these connections to the same remote machine/port? > > Are these connections from the same local machine/port? > > Yes, I am sorry, they are TCP connections. > They are all connecting to americaonline.aol.com (this is DNS > load-balanced) port 5190 (aol in /etc/services) > The local port changes, since it's ~ 100 processes each on 7 internal > machines. > > > > > > >How-To-Repeat: > > > Set up natd. > > > > > > from an internal machine, make several network connections that get > > > dropped on the remote end (not denied, but connection timeouts) > > > > > It is unclear what do you mean. Do these connections get established, > > and then single-dropped by the remote end, or not established at all? > > In the first case, turning on and tuning a system-wide TCP keepalive > > on the client side might help. Do you have it enabled? What are the > > values of net.inet.tcp.*keep* MIB variables? > > They're never established. Theyfail to successfully connect. a tcpdump > shows a lot of syn's and very few fin's. The client machines are > Solaris, so I am not sure how to do any TCP tuning. > Probably, I have a solution for you, but I need to know some details. Who (in the normal circumstances) closes the connection (sends FIN)? Client or server? Also, I would like to take a look on a tcpdump(1) log of one of these failing connections (without your keep-state rule for ipfw(8)). The failing connection should be: client sends SYN and never gots neither RST nor SYN-ACK back from the server. Cheers, -- Ruslan Ermilov Sysadmin and DBA of the ru@ucb.crimea.ua United Commercial Bank, ru@FreeBSD.org FreeBSD committer, +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 Fri Apr 14 1: 0: 4 2000 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 5257A37BDE6 for ; Fri, 14 Apr 2000 01:00:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA11651; Fri, 14 Apr 2000 01:00:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6ADFE37B6D0 for ; Fri, 14 Apr 2000 00:56:18 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA11334; Fri, 14 Apr 2000 00:56:18 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004140756.AAA11334@freefall.freebsd.org> Date: Fri, 14 Apr 2000 00:56:18 -0700 (PDT) From: rorsten@ualberta.ca To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/18001: PCM - Yamaha OPL-SAx doesn't have treble/bass in mixer. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 18001 >Category: kern >Synopsis: PCM - Yamaha OPL-SAx doesn't have treble/bass in mixer. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Apr 14 01:00:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Reid Orsten >Release: 4.0-RELEASE >Organization: >Environment: FreeBSD dhcp-204-107.henday.ualberta.ca 4.0-RELEASE FreeBSD 4.0-RELEASE #5: Thu Apr 13 18:56:43 MDT 2000 root@dhcp-204-107.henday.ualberta.ca:/usr/src/sys/compile/XMONKEYX i386 >Description: This is on a ThinkPad 310ED. in the kernel, this is simply the line "device pcm" and it works. The man page says the opl-sax "Works perfectly in all modes." It does, as long as you dont mind it sounding really tinny because the bass and treble are zeroed and do not appear in the mixer. These work perfectly in Win9x, Redhat, Mandrake, and Slackware at least. >How-To-Repeat: compile a kernel with the line: device pcm on a computer with a Yamaha OPL-SAx PnP sound card. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 14 1: 5:31 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from tyo01.freecom.ne.jp (mail1.freecom.ne.jp [210.235.164.61]) by hub.freebsd.org (Postfix) with SMTP id D7D2837B551 for ; Fri, 14 Apr 2000 01:05:21 -0700 (PDT) (envelope-from seet@mx3.freecom.ne.jp) Received: (qmail 28906 invoked from network); 14 Apr 2000 08:08:58 -0000 Received: from 1cust142.tnt1.osa1.da.uu.net (HELO smtp3.freecom.ne.jp) (63.12.70.142) by mail1.freecom.ne.jp with SMTP; 14 Apr 2000 08:08:58 -0000 Message-ID: <200004141703.1136@seet.mx3.freecom.ne.jp> Date: Fri, 14 Apr 2000 17:03:27 +0900 From: =?ISO-2022-JP?B?GyRCJTUlaSVqITwlXiVzNmRCQE86JE5OIj1QRCUbKEI=?= To: seet@mx3.freecom.ne.jp Subject: =?ISO-2022-JP?B?GyRCIXo/NzUsJSohPCVXJXM1LUcwIzMjMCVdJSQlcyVIGyhC?= =?ISO-2022-JP?B?GyRCTDVOQSU1ITwlUyU5IXobKEI=?= MIME-Version: 1.0 Content-Type: text/plain; charset="iso-2022-jp" Content-Transfer-Encoding: 7bit X-Mailer: Gen Mail 0.9b Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org $B"!"!!~(B $B!c%5%i%j!<%^%s6dB@O:$NN"=PD%!&A49qHG!d(B $B!~"!"!(B $B"!(B $B"!(B $B"!"!!~(B $B?75,%*!<%W%s5-G0#3#0%]%$%s%HL5NA%5!<%S%9(B $B!~"!"!(B $BFMA3$N%a!<%k$r$*5v$72<$5$$!#(B $B$3$NEY!"A49q3FCO$K=;$s$G$$$k=w$N;R$NIt20$r#2#4;~4V%j%"%k%?%$%`$KGA$1$k(B $B!I(B $B%5%i%j!<%^%s6dB@O:$NN"=PD%!&A49qHG(B $B!I$H$$$&2h4|E*$JHVAH$r(B $B#47n#1#3F|$K%*!<%W%s$9$k;v$K$J$j$^$7$?!#(B $B!!!!!!!!!!!!!!!!!!!!!!!!!!(B $B!Z2f!9$O$D$$$K$d$j$^$7$?![(B $BA49q3FCO$K=;$s$G$$$k=w$N;R$NIt20$K%+%a%i@_CV$9$k;v$K@.8y$7$?$N$G$9(B $B!!!!!!!!!!!!!!!!!!!!(B $B!z$3$3$,B>$H$O7hDjE*$K0c$$$^$9!*!*(B $B"-!!!!!!!!!!!!"-!!!!!!!!!!!!"-(B $B(.(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(/(B $B$^$:!"$"$J$?<+?H$,HVAHFb$N%5%i%j!<%^%s6dB@O:$K$J$j$+$o$j!"(B $B$"$J$?<+?H$,Mh$NGA$-%5%$%H$H$OA4$/0[$J$C$?BN83$,$G$-$k$3$H$G$7$g$&!#(B $B?75,%*!<%W%s$K$D$-!"!J=PD%7PHq$H$7$F!K:#$J$i!"%I%+!A%s$HL5NA$G(B $B#3#0%]%$%s%H!J#3!%#0#0#01_AjEv!K$r%5!<%S%9Cf!*!*(B $B$5$"!":#$9$02<5-$X5^$4$&!*!*(B http://www1.sphere.ne.jp/cube/salary3/ ---------------------------------------------------------- $B@?$K62$lF~$j$^$9$,!"$3$N%a!<%k$,I,MW$N$J$$J}$O$9$0$K:o=|$7$F2<$5$$!#(B $B6=L#$NM-$kJ}!"I,MW$JJ}$N$_$,8fMw$K$J$C$F2<$5$$!#(B ---------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 14 2:20: 7 2000 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 D5A9237B5F5 for ; Fri, 14 Apr 2000 02:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA22204; Fri, 14 Apr 2000 02:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 14 Apr 2000 02:20:02 -0700 (PDT) Message-Id: <200004140920.CAA22204@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ruslan Ermilov Subject: Re: bin/17963: NATD appears to memory leak when a connection fails from the internal network to the external network. Reply-To: Ruslan Ermilov Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/17963; it has been noted by GNATS. From: Ruslan Ermilov To: brian@pocketscience.com, brian@FreeBSD.org, cmott@scientech.com, net@FreeBSD.org Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: bin/17963: NATD appears to memory leak when a connection fails from the internal network to the external network. Date: Fri, 14 Apr 2000 12:17:59 +0300 --ZGiS0Q5IWpPtfppv Content-Type: text/plain; charset=us-ascii On Wed, Apr 12, 2000 at 07:18:39PM -0700, brian@pocketscience.com wrote: > [...] > from an internal machine, make several network connections that get > dropped on the remote end (not denied, but connection timeouts) > Please try the following patch. It is for RELENG_3 (latest) sources. Extract patch to the currrent directory, then follow instructions: # mv ./p /tmp # cd /usr/src/lib/libalias # patch data.tcp->state.out != ALIAS_TCP_STATE_CONNECTED) { + if (link->data.tcp->state.out != ALIAS_TCP_STATE_CONNECTED) link->expire_time = TCP_EXPIRE_DEAD; - } else { + else link->expire_time = TCP_EXPIRE_SINGLEDEAD; - } - link->data.tcp->state.in = state; break; case ALIAS_TCP_STATE_CONNECTED: - link->expire_time = TCP_EXPIRE_CONNECTED; - /*FALLTHROUGH*/ - case ALIAS_TCP_STATE_NOT_CONNECTED: - link->data.tcp->state.in = state; + if (link->data.tcp->state.out == ALIAS_TCP_STATE_CONNECTED) + link->expire_time = TCP_EXPIRE_CONNECTED; break; default: abort(); } + link->data.tcp->state.in = state; } @@ -1563,22 +1560,19 @@ SetStateOut(struct alias_link *link, int /* TCP output state */ switch (state) { case ALIAS_TCP_STATE_DISCONNECTED: - if (link->data.tcp->state.in != ALIAS_TCP_STATE_CONNECTED) { + if (link->data.tcp->state.in != ALIAS_TCP_STATE_CONNECTED) link->expire_time = TCP_EXPIRE_DEAD; - } else { + else link->expire_time = TCP_EXPIRE_SINGLEDEAD; - } - link->data.tcp->state.out = state; break; case ALIAS_TCP_STATE_CONNECTED: - link->expire_time = TCP_EXPIRE_CONNECTED; - /*FALLTHROUGH*/ - case ALIAS_TCP_STATE_NOT_CONNECTED: - link->data.tcp->state.out = state; + if (link->data.tcp->state.in == ALIAS_TCP_STATE_CONNECTED) + link->expire_time = TCP_EXPIRE_CONNECTED; break; default: abort(); } + link->data.tcp->state.out = state; } --ZGiS0Q5IWpPtfppv-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 14 2:54:29 2000 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 A7CDC37BE88; Fri, 14 Apr 2000 02:54:28 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA25848; Fri, 14 Apr 2000 02:54:28 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Fri, 14 Apr 2000 02:54:28 -0700 (PDT) From: Message-Id: <200004140954.CAA25848@freefall.freebsd.org> To: dot@dotat.at, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/17974: [PATCH] mailwrapper manual page mentions NetBSD in a silly context Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] mailwrapper manual page mentions NetBSD in a silly context State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Fri Apr 14 02:54:10 PDT 2000 State-Changed-Why: Duplicate of PR 17954. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 14 3: 6:26 2000 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 F271C37BDE6; Fri, 14 Apr 2000 03:06:24 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA27578; Fri, 14 Apr 2000 03:06:25 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Fri, 14 Apr 2000 03:06:25 -0700 (PDT) From: Message-Id: <200004141006.DAA27578@freefall.freebsd.org> To: boxiao63@hotmail.com, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/17999: freebsd 4.0 crashes every a few hours with page fault in kernel Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: freebsd 4.0 crashes every a few hours with page fault in kernel State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Fri Apr 14 03:04:54 PDT 2000 State-Changed-Why: No dmesg(8) output, no description of hardware, nothing. Please either try different hardware if you suspect your hardware (since this obviously isn't a problem that affects everyone) or submit a PR with more detail. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 14 3:23: 9 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from solaris.matti.ee (solaris.matti.ee [194.126.98.135]) by hub.freebsd.org (Postfix) with ESMTP id 3225537B749 for ; Fri, 14 Apr 2000 03:23:07 -0700 (PDT) (envelope-from vallo@matti.ee) Received: from myhakas.matti.ee (myhakas.matti.ee [194.126.114.87]) by solaris.matti.ee (Postfix) with ESMTP id 7F1DF2CE5B; Fri, 14 Apr 2000 12:23:02 +0200 (EET) Received: by myhakas.matti.ee (Postfix, from userid 1000) id 7D4D81C57D7; Fri, 14 Apr 2000 12:23:03 +0200 (EET) Date: Fri, 14 Apr 2000 12:23:03 +0200 From: Vallo Kallaste To: Gregory Bond Cc: Rahul Dhesi , freebsd-bugs@FreeBSD.ORG Subject: Re: kern/17122: crash due to: softdep_disk_write_com Message-ID: <20000414122303.A15049@myhakas.matti.ee> Reply-To: vallo@matti.ee References: <200004140623.QAA04267@lightning.itga.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200004140623.QAA04267@lightning.itga.com.au>; from gnb@itga.com.au on Fri, Apr 14, 2000 at 04:23:54PM +1000 Organization: =?UTF-8?Q?AS_Matti_B=C3=BCrootehnika?= Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Apr 14, 2000 at 04:23:54PM +1000, Gregory Bond wrote: > > The final conclusion is that the bug is probably either in softupdates > > or in the way it interacts with some other OS component. And the bug is > > probably triggered by the way the squid proxy cache does I/O. > > FWIW we run a not-very-heavily-loaded Squid cache on a softupdates-enabled > partition on a PPro machine doing nothing else. We have had 1 inexplained > crash in a couple of months - no backtrace, no panic, no crashdump, just a > reboot. Does the 3-stable counts as well? I have our squid cache box crashing in the same way after three weeks of uptime usually. No panic, no DDB prompt, just silent reboot. It's P-II/233, Intel BX chipset, AHA-2940U2W with two disks, fxp ethernet driver. Runs squid, mysql and several virtual http servers. Actually has almost no load because of small userbase. Softupdates enabled on all but / filesystem. I'll try to disable softupdates completely, we'll see.. -- Vallo Kallaste vallo@matti.ee To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 14 5:10: 5 2000 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 014AE37BEA1 for ; Fri, 14 Apr 2000 05:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA44040; Fri, 14 Apr 2000 05:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 251DE37BE92 for ; Fri, 14 Apr 2000 05:09:49 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA44005; Fri, 14 Apr 2000 05:09:49 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004141209.FAA44005@freefall.freebsd.org> Date: Fri, 14 Apr 2000 05:09:49 -0700 (PDT) From: tomas@sdxnet.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/18002: system crasch when writing to write-protected floppy Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 18002 >Category: kern >Synopsis: system crasch when writing to write-protected floppy >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 Apr 14 05:10:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: tomas hruz >Release: RELEASE 3.2 >Organization: >Environment: FreeBSD srv.ba.sdxnet.com 3.2-RELEASE FreeBSD 3.2-RELEASE #3: Tue Nov 30 16:02:36 GMT 1999 vlado@srv.ba.sdxnet.com:/usr/src/sys/compile/SRV i386 >Description: System crashes when a write protected floppy is mounted than written to and unmounted. >How-To-Repeat: mount -t msdos /dev/fd0 /mnt (floppy is write protected) cp /mnt umount /mnt >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 14 7:15:46 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id 8BCB237BED3 for ; Fri, 14 Apr 2000 07:15:44 -0700 (PDT) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.9.3/8.9.3) id KAA65395; Fri, 14 Apr 2000 10:15:41 -0400 (EDT) (envelope-from wollman) Date: Fri, 14 Apr 2000 10:15:41 -0400 (EDT) From: Garrett Wollman Message-Id: <200004141415.KAA65395@khavrinen.lcs.mit.edu> To: Rahul Dhesi Cc: Gregory Bond , freebsd-bugs@FreeBSD.ORG Subject: Re: kern/17122: crash due to: softdep_disk_write_com In-Reply-To: References: <200004140623.QAA04267@lightning.itga.com.au> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org < said: > In my case the machine does many things: > squid proxy cache > incoming and outgoing mail [...] ftp5.freebsd.org/cvsup3.freebsd.org runs 4.0-stable with soft updates on all partitions, is a multiprocessor machine, and has a Gigabit Ethernet network interface. I've not seen it crash since I enabled soft updates. So this sounds like something peculiar to your operational situation. -GAWollman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 14 7:20:47 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.40.131]) by hub.freebsd.org (Postfix) with ESMTP id 15FBB37BEDC for ; Fri, 14 Apr 2000 07:20:42 -0700 (PDT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost.freebsd.dk [127.0.0.1]) by critter.freebsd.dk (8.9.3/8.9.3) with ESMTP id QAA00760; Fri, 14 Apr 2000 16:19:58 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: Garrett Wollman Cc: Rahul Dhesi , Gregory Bond , freebsd-bugs@FreeBSD.ORG Subject: Re: kern/17122: crash due to: softdep_disk_write_com In-reply-to: Your message of "Fri, 14 Apr 2000 10:15:41 EDT." <200004141415.KAA65395@khavrinen.lcs.mit.edu> Date: Fri, 14 Apr 2000 16:19:58 +0200 Message-ID: <758.955721998@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <200004141415.KAA65395@khavrinen.lcs.mit.edu>, Garrett Wollman write s: >< said: > >> In my case the machine does many things: >> squid proxy cache >> incoming and outgoing mail >[...] > >ftp5.freebsd.org/cvsup3.freebsd.org runs 4.0-stable with soft updates >on all partitions, is a multiprocessor machine, and has a Gigabit >Ethernet network interface. I've not seen it crash since I enabled >soft updates. > >So this sounds like something peculiar to your operational situation. "Absence of evidence is not evidence of absence." Poul-Henning -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD coreteam member | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 14 7:49: 2 2000 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 AFF9937BECA; Fri, 14 Apr 2000 07:49:00 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA31658; Fri, 14 Apr 2000 07:49:00 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Fri, 14 Apr 2000 07:49:00 -0700 (PDT) From: Message-Id: <200004141449.HAA31658@freefall.freebsd.org> To: tomas@sdxnet.com, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/18002: system crasch when writing to write-protected floppy Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: system crasch when writing to write-protected floppy State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Fri Apr 14 07:48:38 PDT 2000 State-Changed-Why: Duplicate of numerous other PRs containing much more detail on the problem. The short answer is "be aware of the problem and don't do that". The long answer is that it's a lot of work to fix. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 14 10:27:31 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from apotheosis.org.za (apotheosis.org.za [137.158.128.27]) by hub.freebsd.org (Postfix) with ESMTP id 83C7C37BF2C for ; Fri, 14 Apr 2000 10:27:09 -0700 (PDT) (envelope-from mwest@uct.ac.za) Date: Fri, 14 Apr 2000 19:25:43 +0200 From: Matthew West To: Rahul Dhesi Cc: Gregory Bond , freebsd-bugs@FreeBSD.ORG Subject: Re: kern/17122: crash due to: softdep_disk_write_com Message-ID: <20000414192543.A94912@apotheosis.org.za> References: <200004140623.QAA04267@lightning.itga.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: ; from "Rahul Dhesi" on Thu, Apr 13, 2000 at 11:38:45PM Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Apr 13, 2000 at 11:38:45PM -0700, Rahul Dhesi wrote: > In my case the machine does many things: > squid proxy cache > incoming and outgoing mail > NFS service for exported mail file system > general-purpose shell access for users > recursive name service for PPP users > authoritative name service for one busy DNS zone We have several FreeBSD machines running quite smoothly with softupdates enabled, under varying loads. The only time softupdates proved to cause instability was on our (heavily loaded) NFS server. Disabling softupdates made the crashes go away. The problem existed in 3.4-RELEASE and is still present in 4.0-RELEASE. -- mwest@uct.ac.za To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 14 11:50: 8 2000 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 97A2F37BE34 for ; Fri, 14 Apr 2000 11:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA65866; Fri, 14 Apr 2000 11:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from borderware.com (gateway.borderware.com [207.236.65.226]) by hub.freebsd.org (Postfix) with ESMTP id 54BC337B749 for ; Fri, 14 Apr 2000 11:42:34 -0700 (PDT) (envelope-from dchapes@borderware.com) Received: by gateway.borderware.com id <117127>; Fri, 14 Apr 2000 14:40:58 -0400 Message-Id: <00Apr14.144058edt.117127@gateway.borderware.com> Date: Fri, 14 Apr 2000 14:42:18 -0400 (EDT) From: Dave Chapeskie Reply-To: Dave Chapeskie , dchapes@ddm.on.ca To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: kern/18012: vnode_free_list corruption, "free vnode isn't" panic Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 18012 >Category: kern >Synopsis: vnode_free_list corruption, "free vnode isn't" panic >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 Apr 14 11:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dave Chapeskie >Release: FreeBSD 3.4-STABLE i386 >Organization: BorderWare Technologies Inc. >Environment: Multiple machines running FreeBSD 3.3, FreeBSD 3.4, or FreeBSD >Description: I've been seeing a rash of "free vnode isn't" panics lately. Some machines were panicing several times a day. Along with this we saw occasional "object inconsistent state: RPC: %d, RC: %d" messages. I was able to replicate the problem by running multiple (~8 on a pentium 200 system with 32 MB of RAM) copies of each of the attached simple shell scripts (with all output redirected to /dev/null). It would often panic within 10-20 minutes. I tracked the problem down to a race between getnewvnode() recycling a vnode and vhold(). I found that vhold() was calling vbusy() for a vnode with the VDOOMED flag set. This is bad since getnewvnode() removes the vnode from the free list before setting this flag so vbusy() is calling TAILQ_REMOVE for a vnode that is not on the free list. This can easily result in corruption of the free list pointers causing future getnewvnode() calls to find active vnodes that it thinks are on the free list. I added a panic in vbusy() if VDOOMED is set and this hit quite often during my tests. Typically the call chain looked something like: ffs_truncate ffs_indirtrunc getblk bgetvp vhold vbusy panic With ffs_truncate often being called due to rename(2) or unlink(2). I managed to solve the problem here by adding a VOP_ISLOCKED(vp) check to getnewvnode() and skipping such vnodes instead of trying to recycle them. From my searches of the mailing lists it appears I'm not the first one to think of this but apparently this isn't guaranteed to work for all files system types. I just know it works for the FFS problems I was seeing. At a minimum I'd highly recommend that someone commit a panic to vbusy() for vnodes with VDOOMED set since letting it continue if that flag is set can and does result in the corruption of the vnode_free_list. I'd also recommend the addition of the VOP_ISLOCKED() check to getnewvnode() even if it doesn't work for all file system types it will help in some (most?) cases. A patch for CURRENT is attached. >How-To-Repeat: Running simultaneous multiple copies of the following simple scripts: #!/bin/sh cd /var/log while true; do mkdir copy; cp * copy mkdir copy/2; mv copy/* copy/2 rm -rf copy done #!/bin/sh FS="/tmp /var /usr" while true; do for f in $FS; do find -x $f -type f -print | xargs -n 4 head -1 done done #!/bin/sh while true; do ps -aux; ps -ajx done >Fix: diff -u -t -r1.253 vfs_subr.c --- kern/vfs_subr.c 2000/03/20 11:28:45 1.253 +++ kern/vfs_subr.c 2000/04/14 18:01:52 @@ -467,6 +467,8 @@ for (vp = TAILQ_FIRST(&vnode_tobefree_list); vp; vp = nvp) { nvp = TAILQ_NEXT(vp, v_freelist); + if (!simple_lock_try(&vp->v_interlock)) + continue; TAILQ_REMOVE(&vnode_tobefree_list, vp, v_freelist); if (vp->v_flag & VAGE) { TAILQ_INSERT_HEAD(&vnode_free_list, vp, v_freelist); @@ -478,6 +480,7 @@ if (vp->v_usecount) panic("tobe free vnode isn't"); freevnodes++; + simple_unlock(&tvp->v_interlock); } if (wantfreevnodes && freevnodes < wantfreevnodes) { @@ -507,6 +510,10 @@ /* Don't recycle if active in the namecache */ simple_unlock(&vp->v_interlock); continue; + } else if (VOP_ISLOCKED(vp)) + TAILQ_REMOVE(&vnode_free_list, vp, v_freelist); + TAILQ_INSERT_TAIL(&vnode_tmp_list, vp, v_freelist); + continue; } else { break; } @@ -2613,6 +2620,10 @@ int s; s = splbio(); + if (vp->v_flag & VDOOMED) { + vprint("vbusy", vp); + panic("vbusy on VDOOMED vnode"); + } simple_lock(&vnode_free_list_slock); if (vp->v_flag & VTBFREE) { TAILQ_REMOVE(&vnode_tobefree_list, vp, v_freelist); >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 Apr 14 12: 0: 9 2000 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 6A18B37B5FD for ; Fri, 14 Apr 2000 12:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA67224; Fri, 14 Apr 2000 12:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 14 Apr 2000 12:00:03 -0700 (PDT) Message-Id: <200004141900.MAA67224@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Andre Albsmeier Subject: Re: bin/16941: routed: possible netmask problem between fxp0:192.168.1.4/32 and fxp0:192.168.1.0/24 Reply-To: Andre Albsmeier Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/16941; it has been noted by GNATS. From: Andre Albsmeier To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: bin/16941: routed: possible netmask problem between fxp0:192.168.1.4/32 and fxp0:192.168.1.0/24 Date: Fri, 14 Apr 2000 20:58:11 +0200 Today I compiled an older routed without the changes of Feb 17th and the problem persists. I assume that something somwhere else has changed and makes routed emit the error message. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 14 12:20:20 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from imo-d08.mx.aol.com (imo-d08.mx.aol.com [205.188.157.40]) by hub.freebsd.org (Postfix) with ESMTP id 9DA7137B5F2 for ; Fri, 14 Apr 2000 12:20:18 -0700 (PDT) (envelope-from GoldieLox463@aol.com) Received: from GoldieLox463@aol.com by imo-d08.mx.aol.com (mail_out_v26.6.) id n.3f.363a08b (4339) for ; Fri, 14 Apr 2000 15:20:11 -0400 (EDT) From: GoldieLox463@aol.com Message-ID: <3f.363a08b.2628c96b@aol.com> Date: Fri, 14 Apr 2000 15:20:11 EDT Subject: Passwords To: freebsd-bugs@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: AOL 5.0 for Windows sub 68 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Ok, I got this guys name, atate, and phone number but all I want is his passwaord, How can I get it?? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 14 12:50: 6 2000 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 0AB2E37BE6A for ; Fri, 14 Apr 2000 12:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA72395; Fri, 14 Apr 2000 12:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 707EE37B559 for ; Fri, 14 Apr 2000 12:41:43 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA71393; Fri, 14 Apr 2000 12:41:43 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004141941.MAA71393@freefall.freebsd.org> Date: Fri, 14 Apr 2000 12:41:43 -0700 (PDT) From: matt@thebiz.net To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/18014: Machine doesn't boot without keyboard attached Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 18014 >Category: misc >Synopsis: Machine doesn't boot without keyboard attached >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Apr 14 12:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Matthew Zahorik >Release: 4.0-RELEASE >Organization: BiznessOnline.com >Environment: >Description: When you remove the keyboard on an Alpha DS10 the boot program waits forever, stuck on either ischar() or getchar() in boot/common/boot.c >How-To-Repeat: Remove the keyboard from an Alpha DS10 - do not have anything attached to the serial console. Attempt to boot. >Fix: I just commented out the bit of code that calls getchar/ischar and counts down from 9 in boot/common/boot.c, and set yes = 1; and installed a new loader (I use netboot - I'm fairly certain this will reproduce on diskboot - never tried though) I don't get the chance to interrupt the boot process, but the machines now boot fine (: >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 Apr 14 14:30: 8 2000 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 3D08937B560 for ; Fri, 14 Apr 2000 14:30:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA83766; Fri, 14 Apr 2000 14:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 14 Apr 2000 14:30:03 -0700 (PDT) Message-Id: <200004142130.OAA83766@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Brian Nelson Subject: Re: bin/17963: NATD appears to memory leak when a connection fails from the internal network to the external network. Reply-To: Brian Nelson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/17963; it has been noted by GNATS. From: Brian Nelson To: Ruslan Ermilov Cc: brian@FreeBSD.org, cmott@scientech.com, net@FreeBSD.org, freebsd-gnats-submit@FreeBSD.org Subject: Re: bin/17963: NATD appears to memory leak when a connection fails from the internal network to the external network. Date: Fri, 14 Apr 2000 14:25:12 -0700 This seems to have worked! been running for hours, and we're still at ~600k. Thanks a lot for your help! is this going into -current or -stable any time soon? Ruslan Ermilov wrote: > > On Wed, Apr 12, 2000 at 07:18:39PM -0700, brian@pocketscience.com wrote: > > > [...] > > from an internal machine, make several network connections that get > > dropped on the remote end (not denied, but connection timeouts) > > > Please try the following patch. It is for RELENG_3 (latest) sources. > Extract patch to the currrent directory, then follow instructions: > > # mv ./p /tmp > # cd /usr/src/lib/libalias > # patch # make clean all install # build/install new library > # cd /usr/src/sbin/natd > # make clean all install # build/install natd with new library > > BACKGROUND > > The problem was that the TCP link's timeout was set to TCP_EXPIRE_CONNECTED > (86400 secs) right after the first SYN from the client (or from the server > for incoming connections). With this change, this huge timeout value will > only be applied to ESTABLISHED connections, i.e. only after SYN was seen > from both client and server side. TCP links corresponding to failed TCP > connections (those which never receive neither SYN-ACK nor RST from server), > will be dropped after TCP_EXPIRE_INITIAL (300 seconds) timeout. > > Cheers, > -- > Ruslan Ermilov Sysadmin and DBA of the > ru@ucb.crimea.ua United Commercial Bank, > ru@FreeBSD.org FreeBSD committer, > +380.652.247.647 Simferopol, Ukraine > > http://www.FreeBSD.org The Power To Serve > http://www.oracle.com Enabling The Information Age > > ------------------------------------------------------------------------ > > pName: p > Type: Plain Text (text/plain) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 14 17: 9: 1 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from security1.noc.flyingcroc.net (security1.noc.flyingcroc.net [207.246.128.54]) by hub.freebsd.org (Postfix) with ESMTP id DECD237B8B2 for ; Fri, 14 Apr 2000 17:08:56 -0700 (PDT) (envelope-from todd@flyingcroc.net) Received: from localhost (todd@localhost) by security1.noc.flyingcroc.net (8.9.3/8.9.3) with ESMTP id MAA43420; Fri, 14 Apr 2000 12:27:53 -0700 (PDT) (envelope-from todd@flyingcroc.net) X-Authentication-Warning: security1.noc.flyingcroc.net: todd owned process doing -bs Date: Fri, 14 Apr 2000 12:27:53 -0700 (PDT) From: Todd Backman X-Sender: todd@security1.noc.flyingcroc.net To: GoldieLox463@aol.com Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: Passwords In-Reply-To: <3f.363a08b.2628c96b@aol.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 try typing "qwerty" in for the passwd. It might take 10,000 or so trys, but be persistent. You will eventually get results... - Todd On Fri, 14 Apr 2000 GoldieLox463@aol.com wrote: > Ok, I got this guys name, atate, and phone number but all I want is his > passwaord, How can I get 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 Apr 15 1:20:17 2000 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 2174237B87A for ; Sat, 15 Apr 2000 01:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA74794; Sat, 15 Apr 2000 01:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 15 Apr 2000 01:20:01 -0700 (PDT) Message-Id: <200004150820.BAA74794@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: NOKUBI Hirotaka Subject: Re: kern/16021: To support SMP on NEC PC98, call mp_probe() after pmap_bootstrap() Reply-To: NOKUBI Hirotaka Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/16021; it has been noted by GNATS. From: NOKUBI Hirotaka To: freebsd-gnats-submit@freebsd.org Cc: nokubi@ff.iij4u.or.jp Subject: Re: kern/16021: To support SMP on NEC PC98, call mp_probe() after pmap_bootstrap() Date: Sat, 15 Apr 2000 17:15:06 +0900 Would someone commit this? I'll attach a patch for newer revision files. If there is problem, suspicion or suggestion, tell me about it. I'll seek solution. Thanks. ---- NOKUBI Hirotaka Fingerprint20 = DEBC 0793 7CD6 92F1 0A1F A792 9E2F EEEE A41B 171D Index: i386/i386/machdep.c =================================================================== RCS file: /home/ncvs/src/sys/i386/i386/machdep.c,v retrieving revision 1.388 diff -u -u -r1.388 machdep.c --- machdep.c 2000/03/30 07:16:59 1.388 +++ machdep.c 2000/04/15 07:37:01 @@ -1599,9 +1599,6 @@ #ifdef SMP /* make hole for AP bootstrap code */ physmap[1] = mp_bootaddress(physmap[1] / 1024); - - /* look for the MP hardware - needed for apic addresses */ - mp_probe(); #endif /* @@ -1662,6 +1659,11 @@ /* call pmap initialization to make new kernel address space */ pmap_bootstrap(first, 0); + +#ifdef SMP + /* look for the MP hardware - needed for apic addresses */ + mp_probe(); +#endif /* * Size up each available chunk of physical memory. Index: i386/i386/mp_machdep.c =================================================================== RCS file: /home/ncvs/src/sys/i386/i386/mp_machdep.c,v retrieving revision 1.116 diff -u -u -r1.116 mp_machdep.c --- mp_machdep.c 2000/03/28 07:16:15 1.116 +++ mp_machdep.c 2000/04/15 07:37:01 @@ -392,7 +392,7 @@ found: /* calculate needed resources */ - mpfps = (mpfps_t)x; + mpfps = (mpfps_t)(x + KERNBASE); if (mptable_pass1()) panic("you must reconfigure your kernel"); @@ -691,12 +691,12 @@ {MCA, "MCA"}, {UNKNOWN_BUSTYPE, "---"}, {ISA, "ISA"}, + {ISA, "NEC98"}, {MCA, "MCA"}, {UNKNOWN_BUSTYPE, "---"}, {UNKNOWN_BUSTYPE, "---"}, {UNKNOWN_BUSTYPE, "---"}, {UNKNOWN_BUSTYPE, "---"}, - {UNKNOWN_BUSTYPE, "---"}, {PCI, "PCI"}, {UNKNOWN_BUSTYPE, "---"}, {UNKNOWN_BUSTYPE, "---"}, @@ -758,6 +758,8 @@ int count; int type; int mustpanic; + int i, j; + struct globaldata *gd; POSTCODE(MPTABLE_PASS1_POST); @@ -792,6 +794,15 @@ if ((cth = mpfps->pap) == 0) panic("MP Configuration Table Header MISSING!"); + if (cth >= (mpcth_t)0x100000) { + pmap_enter(kernel_pmap, (vm_offset_t)CADDR1, + trunc_page((vm_offset_t)cth), VM_PROT_READ, TRUE); + /* XXX do not support MPCT across page boundary */ + cth = (mpcth_t)(CADDR1 + ((int)cth & PAGE_MASK)); + } else { + cth = (mpcth_t)((u_int)cth + KERNBASE); + } + cpu_apic_address = (vm_offset_t) cth->apic_address; /* walk the table, recording info of interest */ @@ -858,6 +869,46 @@ --mp_naps; /* subtract the BSP */ + if (cpu_apic_address == 0) + panic("pmap_bootstrap: no local apic!"); + + /* local apic is mapped on last page */ + SMPpt[NPTEPG - 1] = (pt_entry_t)(PG_V | PG_RW | PG_N | /*pgeflag |*/ + (cpu_apic_address & PG_FRAME)); + + for (i = 0; i < mp_napics; i++) { + for (j = 0; j < mp_napics; j++) { + /* same page frame as a previous IO apic? */ + if (((vm_offset_t)SMPpt[NPTEPG-2-j] & PG_FRAME) == + (io_apic_address[0] & PG_FRAME)) { + ioapic[i] = (ioapic_t *)((u_int)SMP_prvspace + + (NPTEPG-2-j)*PAGE_SIZE); + break; + } + /* use this slot if available */ + if (((vm_offset_t)SMPpt[NPTEPG-2-j] & PG_FRAME) == 0) { + SMPpt[NPTEPG-2-j] = (pt_entry_t)(PG_V | PG_RW | + /*pgeflag |*/ (io_apic_address[i] & PG_FRAME)); + ioapic[i] = (ioapic_t *)((u_int)SMP_prvspace + + (NPTEPG-2-j)*PAGE_SIZE); + break; + } + } + } + + /* BSP does this itself, AP's get it pre-set */ + gd = &SMP_prvspace[0].globaldata; + gd->gd_prv_CMAP1 = &SMPpt[1]; + gd->gd_prv_CMAP2 = &SMPpt[2]; + gd->gd_prv_CMAP3 = &SMPpt[3]; + gd->gd_prv_PMAP1 = &SMPpt[4]; + gd->gd_prv_CADDR1 = SMP_prvspace[0].CPAGE1; + gd->gd_prv_CADDR2 = SMP_prvspace[0].CPAGE2; + gd->gd_prv_CADDR3 = SMP_prvspace[0].CPAGE3; + gd->gd_prv_PADDR1 = (unsigned *)SMP_prvspace[0].PPAGE1; + + invltlb(); + return mustpanic; } @@ -915,6 +966,15 @@ if ((cth = mpfps->pap) == 0) panic("MP Configuration Table Header MISSING!"); + + if (cth >= (mpcth_t)0x100000) { + pmap_enter(kernel_pmap, (vm_offset_t)CADDR1, + trunc_page((vm_offset_t)cth), VM_PROT_READ, TRUE); + /* XXX do not support MPCT across page boundary */ + cth = (mpcth_t)(CADDR1 + ((int)cth & PAGE_MASK)); + } else { + cth = (mpcth_t)((u_int)cth + KERNBASE); + } /* walk the table, recording info of interest */ totalSize = cth->base_table_length - sizeof(struct MPCTH); Index: i386/i386/pmap.c =================================================================== RCS file: /home/ncvs/src/sys/i386/i386/pmap.c,v retrieving revision 1.252 diff -u -u -r1.252 pmap.c --- pmap.c 2000/03/16 08:51:49 1.252 +++ pmap.c 2000/04/15 07:37:02 @@ -283,10 +283,6 @@ { vm_offset_t va; pt_entry_t *pte; -#ifdef SMP - int i, j; - struct globaldata *gd; -#endif avail_start = firstaddr; @@ -412,46 +408,6 @@ invltlb(); #endif } -#endif - -#ifdef SMP - if (cpu_apic_address == 0) - panic("pmap_bootstrap: no local apic!"); - - /* local apic is mapped on last page */ - SMPpt[NPTEPG - 1] = (pt_entry_t)(PG_V | PG_RW | PG_N | pgeflag | - (cpu_apic_address & PG_FRAME)); - - for (i = 0; i < mp_napics; i++) { - for (j = 0; j < mp_napics; j++) { - /* same page frame as a previous IO apic? */ - if (((vm_offset_t)SMPpt[NPTEPG-2-j] & PG_FRAME) == - (io_apic_address[0] & PG_FRAME)) { - ioapic[i] = (ioapic_t *)((u_int)SMP_prvspace - + (NPTEPG-2-j)*PAGE_SIZE); - break; - } - /* use this slot if available */ - if (((vm_offset_t)SMPpt[NPTEPG-2-j] & PG_FRAME) == 0) { - SMPpt[NPTEPG-2-j] = (pt_entry_t)(PG_V | PG_RW | - pgeflag | (io_apic_address[i] & PG_FRAME)); - ioapic[i] = (ioapic_t *)((u_int)SMP_prvspace - + (NPTEPG-2-j)*PAGE_SIZE); - break; - } - } - } - - /* BSP does this itself, AP's get it pre-set */ - gd = &SMP_prvspace[0].globaldata; - gd->gd_prv_CMAP1 = &SMPpt[1]; - gd->gd_prv_CMAP2 = &SMPpt[2]; - gd->gd_prv_CMAP3 = &SMPpt[3]; - gd->gd_prv_PMAP1 = &SMPpt[4]; - gd->gd_prv_CADDR1 = SMP_prvspace[0].CPAGE1; - gd->gd_prv_CADDR2 = SMP_prvspace[0].CPAGE2; - gd->gd_prv_CADDR3 = SMP_prvspace[0].CPAGE3; - gd->gd_prv_PADDR1 = (unsigned *)SMP_prvspace[0].PPAGE1; #endif invltlb(); Index: i386/include/smp.h =================================================================== RCS file: /home/ncvs/src/sys/i386/include/smp.h,v retrieving revision 1.51 diff -u -u -r1.51 smp.h --- smp.h 2000/03/28 18:06:38 1.51 +++ smp.h 2000/04/15 07:37:03 @@ -34,6 +34,7 @@ #ifndef LOCORE +#ifndef PC98 /* * For sending values to POST displays. * XXX FIXME: where does this really belong, isa.h/isa.c perhaps? @@ -47,7 +48,11 @@ #define POSTCODE_HI(X) current_postcode &= 0x0f, \ current_postcode |= (((X) << 4) & 0xf0), \ outb(0x80, current_postcode) - +#else +#define POSTCODE(X) +#define POSTCODE_LO(X) +#define POSTCODE_HI(X) +#endif #include Index: pc98/i386/machdep.c =================================================================== RCS file: /home/ncvs/src/sys/pc98/i386/machdep.c,v retrieving revision 1.155 diff -u -u -r1.155 machdep.c --- machdep.c 2000/03/30 07:17:05 1.155 +++ machdep.c 2000/04/15 07:37:20 @@ -1475,14 +1475,14 @@ } #endif + /* call pmap initialization to make new kernel address space */ + pmap_bootstrap (first, 0); + #ifdef SMP /* look for the MP hardware - needed for apic addresses */ mp_probe(); #endif - /* call pmap initialization to make new kernel address space */ - pmap_bootstrap (first, 0); - /* * Size up each available chunk of physical memory. */ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Apr 15 3:14:22 2000 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 B0E1737B74E; Sat, 15 Apr 2000 03:14:20 -0700 (PDT) (envelope-from adrian@FreeBSD.org) Received: (from adrian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA85932; Sat, 15 Apr 2000 03:14:20 -0700 (PDT) (envelope-from adrian@FreeBSD.org) Date: Sat, 15 Apr 2000 03:14:20 -0700 (PDT) From: Message-Id: <200004151014.DAA85932@freefall.freebsd.org> To: adrian@FreeBSD.org, freebsd-bugs@FreeBSD.org, adrian@FreeBSD.org Subject: Re: kern/18012: vnode_free_list corruption, "free vnode isn't" panic Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: vnode_free_list corruption, "free vnode isn't" panic Responsible-Changed-From-To: freebsd-bugs->adrian Responsible-Changed-By: adrian Responsible-Changed-When: Sat Apr 15 03:13:42 PDT 2000 Responsible-Changed-Why: I'll take this one, although dillon also expressed interest. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Apr 15 5:28:36 2000 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 AE3DA37B695; Sat, 15 Apr 2000 05:28:35 -0700 (PDT) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA01300; Sat, 15 Apr 2000 05:28:35 -0700 (PDT) (envelope-from phantom@FreeBSD.org) Date: Sat, 15 Apr 2000 05:28:35 -0700 (PDT) From: Message-Id: <200004151228.FAA01300@freefall.freebsd.org> To: evanc@synapse.net, phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: conf/5292: master.passwd -- /nonexistent vs. /sbin/nologin, & expansion Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: master.passwd -- /nonexistent vs. /sbin/nologin, & expansion State-Changed-From-To: open->closed State-Changed-By: phantom State-Changed-When: Sat Apr 15 05:27:38 PDT 2000 State-Changed-Why: Fixed by steve at Jun/1998 Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Apr 15 6:21: 3 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from ewok.creative.net.au (fuzzy.aussie.com.au [203.30.44.82]) by hub.freebsd.org (Postfix) with SMTP id 34E3537B91E for ; Sat, 15 Apr 2000 06:21:00 -0700 (PDT) (envelope-from freebsd@ewok.creative.net.au) Received: (qmail 53958 invoked by uid 1008); 15 Apr 2000 13:20:54 -0000 Date: Sat, 15 Apr 2000 21:20:54 +0800 From: Adrian Chadd To: Matthew West Cc: Rahul Dhesi , Gregory Bond , freebsd-bugs@FreeBSD.ORG Subject: Re: kern/17122: crash due to: softdep_disk_write_com Message-ID: <20000415212053.A52908@ewok.creative.net.au> References: <200004140623.QAA04267@lightning.itga.com.au> <20000414192543.A94912@apotheosis.org.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <20000414192543.A94912@apotheosis.org.za>; from Matthew West on Fri, Apr 14, 2000 at 07:25:43PM +0200 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Apr 14, 2000, Matthew West wrote: > On Thu, Apr 13, 2000 at 11:38:45PM -0700, Rahul Dhesi wrote: > > In my case the machine does many things: > > squid proxy cache > > incoming and outgoing mail > > NFS service for exported mail file system > > general-purpose shell access for users > > recursive name service for PPP users > > authoritative name service for one busy DNS zone > > We have several FreeBSD machines running quite smoothly with softupdates > enabled, under varying loads. The only time softupdates proved to cause > instability was on our (heavily loaded) NFS server. Disabling softupdates > made the crashes go away. The problem existed in 3.4-RELEASE and is still > present in 4.0-RELEASE. > Squid has some interesting UFS access patterns. How loaded is your squid? Pull up the cachemgr script, and email me the output of the general runtime statistics. If your squid is cycling through objects at a high rate it is probably confusing softupdates. Adrian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Apr 15 12:30: 8 2000 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 8212337B746 for ; Sat, 15 Apr 2000 12:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA05827; Sat, 15 Apr 2000 12:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.tellique.de (big-gw.tellique.de [195.126.133.179]) by hub.freebsd.org (Postfix) with ESMTP id 4B21937B5A7 for ; Sat, 15 Apr 2000 12:29:43 -0700 (PDT) (envelope-from bn@mail.tellique.de) Received: (from bn@localhost) by mail.tellique.de (8.8.7/8.8.8) id VAA23075; Sat, 15 Apr 2000 21:29:37 +0200 Message-Id: <200004151929.VAA23075@mail.tellique.de> Date: Sat, 15 Apr 100 21:29:37 +0200 (CEST) From: Boris Nikolaus To: FreeBSD-gnats-submit@freebsd.org Subject: kern/18024: when printing through gs: panic: lockmgr: not exclusive lock holder Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 18024 >Category: kern >Synopsis: when printing through gs: panic: lockmgr: not exclusive lock ho >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 Apr 15 12:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Boris Nikolaus >Release: FreeBSD 4.0-STABLE i386 >Organization: >Environment: From dmesg(1): ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: Generic chipset (EPP/NIBBLE) in COMPATIBLE mode ppi0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port plip0: on ppbus0 From config file: # Parallel-Port Bus device ppc0 at isa? irq 7 device ppbus device lpt device ppi device plip options DEBUG_LOCKS # Extra debugging code for locks # added to find the lockmgr panic From /etc/printcap: lp|ps|HP-Destjet 500:\ :sh:\ :lp=/dev/lpt0:sd=/var/spool/output/lpd:lf=/var/log/lpd-errs:\ :pl#64:of=/usr/local/libexec/lpd/magicfilter-lp: /usr/local/libexec/lpd/magicfilter-lp: #!/usr/bin/perl # treat LF as CR+LF printf("\033&k2G") || exit 2; # read first two characters read(STDIN, $first, 2) || exit 2; if ($first eq "%!") { # it is postscript; use ghostscript to convert open(OUT, "|/usr/local/bin/gs -dSAFER -dNOPAUSE -q -sDEVICE=djet500 -sOu tputFile=- -"); select OUT; } # print file to printer (or ghostscript) print $first; while (read(STDIN, $buf, 4096)) { print $buf; } if ($first ne "%!") { print "\f"; } exit 0; >Description: When printing a PostScript file, the kernel panics immediately after printing: % lpr test.ps % panic: lockmgr: pid 221, not exclusive lock holder 219 unlocking Debugger("panic") Stopped at Debugger+0x35: movb $0,0xc02fc980 db> trace Debugger(c0290143) at Debugger+0x35 panic(c028f340,dd,c028f320,db,40080040) at panic+0x70 debuglockmgr(c327b838,6,0,c7a0a700,c0292ad0) at debuglockmgr+0x29c brelse(c327b810,c0948b80,10,0,0) at brelse+0x5b7 PPBUS_WRITE(c094a800,2,2000,c7a0a700,c094a800) at PPBUS_WRITE+0x1e50 spec_vnoperate(c841ae20,c0ae9700,c841ae0c,c022f139,c841ae20) at spec_vnoperate+0 x6e4 ufs_itimes(...) at ufs_itimes+0x250a ufs_vnoperatespec(...) at ufs_vnoperatespec+0x15 vn_close(...) at vn_close+0x40 debug_vn_lock(...) at debug_vnlock+0xb4 fdrop(...) at fdrop+0xb9 closef(...) at closef+0x9b fdfree(...) at fdfree+0x30 exit1(...) at exit1+0x189 exit1(...) at exit1 syscall(2f,2f,2f,0,ffffffff) at syscall+0x176 Xint0x80_syscall() at Xint0x80_syscall+0x26 db> ps pid proc addr uid ppid pgrp flag stat wmesg wchan cmd 221 c7a0a700 c8419000 1 1 219 006004 2 gs 211 ... db> When converting the file by hand and printing the result, everything works fine: % gs -dSAFER -dNOPAUSE -q -sDEVICE=djet500 -sOutputFile=- - test.djet5 00 % lpr test.djet500 % [ no panic ] I've no idea, why this works and the other panics. >How-To-Repeat: On my machine the crash occurs whenever I print a PostScript file. I have no way to check if it occurs everywhere using my config or magicfilter or ... If you need further information (memory dumps after the panic or some config parameters) don't hesitate to ask me: bn@tellique.de >Fix: You can get around this bug by converting the postscript file before printing (s. a.). >Release-Note: >Audit-Trail: >Unformatted: lder To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Apr 15 19:50: 9 2000 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 C107537B818 for ; Sat, 15 Apr 2000 19:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA09928; Sat, 15 Apr 2000 19:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from starbug.ugh.net.au (starbug.ugh.net.au [203.31.238.37]) by hub.freebsd.org (Postfix) with ESMTP id E3B4037B736 for ; Sat, 15 Apr 2000 19:47:29 -0700 (PDT) (envelope-from root@ugh.net.au) Received: by starbug.ugh.net.au (Postfix, from userid 0) id 95336A818; Sun, 16 Apr 2000 12:47:28 +1000 (EST) Message-Id: <20000416024728.95336A818@starbug.ugh.net.au> Date: Sun, 16 Apr 2000 12:47:28 +1000 (EST) From: andrew@ugh.net.au Reply-To: andrew@ugh.net.au To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/18030: [PATCH] pkg_version thinks 4.04 > 4.1 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 18030 >Category: bin >Synopsis: [PATCH] pkg_version thinks 4.04 > 4.1 >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 Apr 15 19:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Andrew >Release: FreeBSD 4.0-STABLE i386 >Organization: UgH! >Environment: 4.0-STABLE as of yesterday >Description: pkg_version thinks 4.04 > 4.1. It does this becasue it splits version numbers up as if they were . delimited. It then tries to comapre each group. The second comparison is 04 <=> 1. Perl treats 04 as 4 and so it becomes bigger. >How-To-Repeat: Run pkg_version with an old port (such as analog 4.04) installed. >Fix: Force a . on the front of the numbers. This seems to work. I have also changed the variables $p1 and $p2 to my from local as per perlsub(1) and changed a little bit of indenting to make it more logical (IMHO) and closer to style(9). --- pkg_version.pl.orig Mon Dec 6 13:19:16 1999 +++ pkg_version.pl Sun Apr 16 12:32:36 2000 @@ -57,36 +57,39 @@ # This function returns -1, 0, or 1, in the same manner as <=> or cmp. # sub CompareVersions { - local($v1, $v2); + my($v1, $v2); $v1 = $_[0]; $v2 = $_[1]; # Short-cut in case of equality if ($v1 eq $v2) { - return 0; + return 0; } # Loop over different components (the parts separated by dots). # If any component differs, we have the basis for an inequality. while (1) { - ($p1, $v1) = split(/\./, $v1, 2); - ($p2, $v2) = split(/\./, $v2, 2); + ($p1, $v1) = split(/\./, $v1, 2); + ($p2, $v2) = split(/\./, $v2, 2); - # If we\'re out of components, they\'re equal (this probably won\'t - # happen, since the short-cut case above should get this). - if (($p1 eq "") && ($p2 eq "")) { - return 0; - } - # Check for numeric inequality. We assume here that (for example) - # 3.09 < 3.10. - elsif ($p1 != $p2) { - return $p1 <=> $p2; - } - # Check for string inequality, given numeric equality. This - # handles version numbers of the form 3.4j < 3.4k. - elsif ($p1 ne $p2) { - return $p1 cmp $p2; - } + # If we\'re out of components, they\'re equal (this probably won\'t + # happen, since the short-cut case above should get this). + if (($p1 eq "") && ($p2 eq "")) { + return 0; + } + # Check for numeric inequality. We assume here that (for example) + # 3.09 < 3.10. We force a . on the front of $p1 and $p2 so that + # 4.1 > 4.04 + elsif ($p1 != $p2) { + $p1 = '.' . $p1; + $p2 = '.' . $p2; + return $p1 <=> $p2; + } + # Check for string inequality, given numeric equality. This + # handles version numbers of the form 3.4j < 3.4k. + elsif ($p1 ne $p2) { + return $p1 cmp $p2; + } } } >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 Apr 15 20:10: 5 2000 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 1FCF837B8A0 for ; Sat, 15 Apr 2000 20:10:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA12404; Sat, 15 Apr 2000 20:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 15 Apr 2000 20:10:03 -0700 (PDT) Message-Id: <200004160310.UAA12404@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Garrett Wollman Subject: bin/18030: [PATCH] pkg_version thinks 4.04 > 4.1 Reply-To: Garrett Wollman Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/18030; it has been noted by GNATS. From: Garrett Wollman To: andrew@ugh.net.au Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: bin/18030: [PATCH] pkg_version thinks 4.04 > 4.1 Date: Sat, 15 Apr 2000 23:09:00 -0400 (EDT) <> Synopsis: [PATCH] pkg_version thinks 4.04 > 4.1 That's because it is. Version numbers, by tradition, are not reals; 4.10 comes nine revisions after 4.1. -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 Sat Apr 15 20:20: 6 2000 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 AC9E737B8B2 for ; Sat, 15 Apr 2000 20:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA13864; Sat, 15 Apr 2000 20:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from feral.com (feral.com [192.67.166.1]) by hub.freebsd.org (Postfix) with ESMTP id EC1A837B7B5 for ; Sat, 15 Apr 2000 20:15:57 -0700 (PDT) (envelope-from mjacob@farrago.feral.com) Received: from farrago.feral.com (farrago [192.67.166.23]) by feral.com (8.9.3/8.9.3) with ESMTP id UAA08739 for ; Sat, 15 Apr 2000 20:15:46 -0700 Received: (from mjacob@localhost) by farrago.feral.com (8.9.3/8.9.1) id UAA00393; Sat, 15 Apr 2000 20:15:57 -0700 (PDT) (envelope-from mjacob) Message-Id: <200004160315.UAA00393@farrago.feral.com> Date: Sat, 15 Apr 2000 20:15:57 -0700 (PDT) From: mjacob@feral.com Reply-To: mjacob@feral.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/18031: panic attempting to use AIO on alpha Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 18031 >Category: kern >Synopsis: alpha system panics cpu_fork during AIO call >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Apr 15 20:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Matthew Jacob >Release: FreeBSD 5.0-CURRENT alpha >Organization: Feral Software >Environment: See release above. Standard PC164 system with VFS_AIO optioned in. >Description: Running an app that does aio_writes to a file- in this case a raw device, panics in cpu_fork panic: cpu_fork: curproc panic Stopped at Debugger+0x2c: ldq ra,0(sp) <0xfffffe000a371bd0> db> t Debugger() at Debugger+0x2c panic() at panic+0x100 cpu_fork() at cpu_fork+0x140 vm_fork() at vm_fork+0x20c fork1() at fork1+0xa34 aio_newproc() at aio_newproc+0x24 aio_init_aioinfo() at aio_init_aioinfo+0x194 aio_aqueue() at aio_aqueue+0x34 aio_write() at aio_write+0x54 syscall() at syscall+0x244 XentSys() at XentSys+0x50 (null)() at 0x120006e94 db> c syncing disks... 10 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1: dev:MFS0, flags:01020024, blkno:131136, lblkno:131136 2: dev:MFS0, flags:01020024, blkno:65600, lblkno:65600 giving up on 2 buffers Uptime: 34m51s dumping to dev #ad/1, offset 488656 Core dump and source to go with it available on request- heck, gdb -k even works on it. I just don't have time chase this myself. >How-To-Repeat: See above >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message