From owner-freebsd-bugs Sun Jul 5 00:51:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA01959 for freebsd-bugs-outgoing; Sun, 5 Jul 1998 00:51:41 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA01944 for ; Sun, 5 Jul 1998 00:51:35 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA27630; Sun, 5 Jul 1998 00:50:01 -0700 (PDT) Received: from roma.coe.ufrj.br (jonny@roma.coe.ufrj.br [146.164.53.65]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA01900 for ; Sun, 5 Jul 1998 00:51:20 -0700 (PDT) (envelope-from jonny@jonny.eng.br) Received: (from jonny@localhost) by roma.coe.ufrj.br (8.8.8/8.8.8) id EAA03831; Sun, 5 Jul 1998 04:51:20 -0300 (EST) (envelope-from jonny) Message-Id: <199807050751.EAA03831@roma.coe.ufrj.br> Date: Sun, 5 Jul 1998 04:51:20 -0300 (EST) From: Joao Carlos Mendes Luis Reply-To: jonny@jonny.eng.br To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: kern/7169: accton on a append-only file Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7169 >Category: kern >Synopsis: cannot use accton on a append-only file >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 Jul 5 00:50:00 PDT 1998 >Last-Modified: >Originator: Joao Carlos Mendes Luis >Organization: COPPE/UFRJ >Release: FreeBSD 2.2.6-STABLE i386 >Environment: FreeBSD-stable (but bug is probably present in -current also) >Description: I want to raise the security of my system, making heavy use of securelevel and file flags. All log files should be append-only, ie, flagged sappend. This worked for most files, but not for accounting files (accton). acct(2) is returning EPERM for an append-only file as argument. >How-To-Repeat: $ chflags sappend /var/account/acct $ accton /var/account/acct >Fix: I don't have enough knowledge to fix, but the bug seems to be in the kern_acct.c file. I've sent a message about this to -hackers list, and received this answer. ... Message-Id: <199807041545.RAA13938@semyam.dinoco.de> cc: Joao Carlos Mendes Luis , seggers@semyam.dinoco.de To: hackers@FreeBSD.ORG Subject: Re: accton on a append-only file ? Date: Sat, 04 Jul 1998 17:45:36 +0200 From: Stefan Eggers > I've created the /var/account/acct file with sappend,sunlink flags, > but accton return EPERM. If I run accton before setting those flags, > This seems to be a bug, but I still have much to learn from VFS To me, too. It is because kern_acct.c in 2.2-stable opens the file for writing, not for appending. There is the problem: /* * If accounting is to be started to a file, open that file for * writing and make sure it's a 'normal'. */ if (uap->path != NULL) { NDINIT(&nd, LOOKUP, NOFOLLOW, UIO_USERSPACE, uap->path, p); error = vn_open(&nd, FWRITE, 0); if (error) return (error); Unless there is already a PR for this (check the PR database on the FreeBSD web pages) I'd suggest sending in a new one. > before searching for the culprit myself. Does it deserve a send-pr, > even without patches ? I think it's as easy as adding FAPPEND to the mode. The only problem is making sure that it has no unexpected side effects. If you like quote this email in the PR to point at a possible way to fix it. Stefan. -- Stefan Eggers Lu4 yao2 zhi1 ma3 li4, Max-Slevogt-Str. 1 ri4 jiu3 jian4 ren2 xin1. 51109 Koeln Federal Republic of Germany ... Taking a quick look at ufs_vnops.c, it really seems that a FWRITE|O_APPEND in the vnopen() call will fix, but again I'm not aware of possible problems. I've tested it at home, and it worked, but it would be much better if it was revised by a real FS hacker. >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 Jul 5 13:40:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA00331 for freebsd-bugs-outgoing; Sun, 5 Jul 1998 13:40:20 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA00292 for ; Sun, 5 Jul 1998 13:40:08 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA00604; Sun, 5 Jul 1998 13:40:06 -0700 (PDT) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA23801; Sun, 5 Jul 1998 13:30:23 -0700 (PDT) (envelope-from nobody) Message-Id: <199807052030.NAA23801@hub.freebsd.org> Date: Sun, 5 Jul 1998 13:30:23 -0700 (PDT) From: seva@alex-ua.com To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: kern/7177: Support for "Video Highway Xtreme" tv-tuner card with SECAM tuner (bt848 driver) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7177 >Category: kern >Synopsis: Support for "Video Highway Xtreme" tv-tuner card with SECAM tuner (bt848 driver) >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: Sun Jul 5 13:40:06 PDT 1998 >Last-Modified: >Originator: Vsevolod Lobko >Organization: Concern Alex >Release: 3.0-CURRENT >Environment: FreeBSD sevasoft.alex-ua.com 3.0-CURRENT FreeBSD 3.0-CURRENT #0: Sun Jul 5 22:44:59 EEST 1998 root@sevasoft.alex-ua.com:/usr/src/sys/compile/SEVASOFT.30 i386 >Description: Patches to bktr driver for support of "Video Highway Xtreme" (Aims Lab, Inc) tv-tuner card with SECAM tuner This patches add new tuner description "PHILIPS FI1236 SECAM FM" and driver option "BKTR_USE_PLL" for single crystal mode of BT848A chip This work for me with config options: device bktr0 options OVERRIDE_CARD=2 options OVERRIDE_TUNER=11 options BKTR_USE_PLL >How-To-Repeat: Use "Video Highway Xtreme" tv-tuner card >Fix: Apply patch from ftp://bug.alex-ua.com/pub/FreeBSD/patches/VHX.patch >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 Jul 5 13:40:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA00375 for freebsd-bugs-outgoing; Sun, 5 Jul 1998 13:40:25 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA00286 for ; Sun, 5 Jul 1998 13:40:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA00594; Sun, 5 Jul 1998 13:40:05 -0700 (PDT) Date: Sun, 5 Jul 1998 13:40:05 -0700 (PDT) Message-Id: <199807052040.NAA00594@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Niall Smart Subject: Re: bin/7137 Reply-To: Niall Smart Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/7137; it has been noted by GNATS. From: Niall Smart To: Poul-Henning Kamp Cc: tarush@mindspring.com, freebsd-gnats-submit@freebsd.org Subject: Re: bin/7137 Date: Sun, 5 Jul 1998 18:15:53 +0000 On Jul 2, 9:20pm, Poul-Henning Kamp wrote: } Subject: Re: bin/7137 > > You yell and bicker about somebody who actually DOES something, > rather than go home, test the patch on -stable and supply an > independent confirmation that it is OK. I was yelling and bickering about PR's which still apply to -stable being closed, anyway, the patch works unmodified on -stable: Index: ac.c =================================================================== RCS file: /cvs/src/usr.sbin/ac/ac.c,v retrieving revision 1.4.2.4 diff -C2 -r1.4.2.4 ac.c *** ac.c 1998/06/04 21:44:32 1.4.2.4 --- ac.c 1998/07/05 17:15:34 *************** *** 504,513 **** default: /* ! * if they came in on tty[p-y]*, then it is only * a login session if the ut_host field is non-empty */ if (*usr.ut_name) { if (strncmp(usr.ut_line, "tty", 3) != 0 || ! strchr("pqrstuvwxy", usr.ut_line[3]) == 0 || *usr.ut_host != '\0') head = log_in(head, &usr); --- 504,513 ---- default: /* ! * if they came in on tty[p-sP-S]*, then it is only * a login session if the ut_host field is non-empty */ if (*usr.ut_name) { if (strncmp(usr.ut_line, "tty", 3) != 0 || ! strchr("pqrsPQRS", usr.ut_line[3]) == 0 || *usr.ut_host != '\0') head = log_in(head, &usr); > I don't care what size patch it is, I don't commit to -stable without > testing it, and since I don't have a machine nor time to do so, I don't > commit to -stable. Then don't close the PR's, mark them suspended and prefix the synopsis to [MFC] or [STABLE] or something. Niall -- Niall Smart. PGP: finger njs3@motmot.doc.ic.ac.uk FreeBSD: Turning PC's into Workstations: www.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jul 5 13:40:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA00377 for freebsd-bugs-outgoing; Sun, 5 Jul 1998 13:40:25 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA00284 for ; Sun, 5 Jul 1998 13:40:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA00589; Sun, 5 Jul 1998 13:40:04 -0700 (PDT) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA21131; Sun, 5 Jul 1998 09:46:04 -0700 (PDT) (envelope-from nobody) Message-Id: <199807051646.JAA21131@hub.freebsd.org> Date: Sun, 5 Jul 1998 09:46:04 -0700 (PDT) From: tomdean@ix.netcom.com To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: kern/7176: Cannot access fd0 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7176 >Category: kern >Synopsis: Cannot access fd0 >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 Jul 5 13:40:04 PDT 1998 >Last-Modified: >Originator: tom dean >Organization: >Release: FreeBSD 3.0-CURRENT #0: Fri Jun 19 09:15:17 PDT 1998 >Environment: FreeBSD celebris 3.0-CURRENT FreeBSD 3.0-CURRENT #0: Fri Jun 19 09:15:17 PDT 1998 root@celebris:/usr/src/sys/compile/CELEBRIS-SMP i386 >Description: I am getting errors in accessing fd0. I can boot a FreeBSD floppy. DOS has no problem with the device. I never see or hear FreeBSD access the device. I am running FreeBSD 3.0-CURRENT #0: Fri Jun 19 09:15:17 PDT 1998 The only IDE storage device is the floppy. There are 3 SCSI disks and a SCSI CD. The SCSI controller is a NCR PCI device. >How-To-Repeat: mount /dev/fd0a /mnt >Fix: >Audit-Trail: >Unformatted: >From dmesg: fdc0 at 0x3f0-0x3f7 irq 6 drq 2 on isa fdc0: FIFO enabled, 8 bytes threshold fd0: 1.44MB 3.5in fd0: 1.44MB 3.5in With a floppy disk I can mount on another system, I get: # mount /dev/fd0a /mnt /dev/fd0 on /mnt: Input/output error and, dmesg has: fd0: recal failed ST0 70 cyl 0 fd0: recal failed ST0 70 cyl 0 fd0: recal failed ST0 70 cyl 0 fd0: recal failed ST0 70 cyl 0 fd0c: hard error reading fsbn 16 of 16-31 (No status) The LED on the drive does not light, and, drive is not accessed, the heads are not heard to move. With NO floppy in the drive, # mount /dev/fd0a /mnt /dev/fd0a on /mnt: Input/output error and, dmesg has: fd0: recal failed ST0 70 cyl 0 fd0: recal failed ST0 70 cyl 0 fd0: recal failed ST0 70 cyl 0 fd0: recal failed ST0 70 cyl 0 fd0c: hard error reading fsbn 16 of 16-31 (No status) The LED on the drive does not light, and, drive is not accessed, the heads are not heard to move. Is there a problem with the fd driver? Is there an updated driver? I have: sys/i386/conf/ controller fdc0 at isa? port "IO_FD1" bio irq 6 drq 2 vector fdintr disk fd0 at fdc0 drive 0 sys/i386/isa/fd.c * from: @(#)fd.c 7.4 (Berkeley) 5/25/91 * $Id: fd.c,v 1.114 1998/06/07 19:40:39 dfr Exp $ sys/i386/isa/fdc.h * $Id: fdc.h,v 1.9 1997/09/17 20:16:16 tegge Exp $ sys/i386/isa/fdreg.h * $Id: fdreg.h,v 1.10 1997/02/22 09:36:11 peter Exp $ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jul 5 20:40:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA23764 for freebsd-bugs-outgoing; Sun, 5 Jul 1998 20:40:09 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA23752 for ; Sun, 5 Jul 1998 20:40:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA10943; Sun, 5 Jul 1998 20:40:01 -0700 (PDT) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA23183; Sun, 5 Jul 1998 20:30:55 -0700 (PDT) (envelope-from nobody) Message-Id: <199807060330.UAA23183@hub.freebsd.org> Date: Sun, 5 Jul 1998 20:30:55 -0700 (PDT) From: lcremean@tidalwave.net To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: kern/7178: IDE Western Digital hard disk detection errors Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7178 >Category: kern >Synopsis: IDE Western Digital hard disk detection errors >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 Jul 5 20:40:01 PDT 1998 >Last-Modified: >Originator: Lee Cremeans >Organization: N/A >Release: 2.2.6-RELEASE >Environment: FreeBSD 2.2.6-RELEASE install floppy >Description: (this is being reported for a friend, Chris Eslinger ) On a system with a Fujitsu 4.3 GB (master) and a Mitsumi ATAPI CD-ROM (slave)on the primary port, and two Western Digitals on the secondary (31600 as master, 31200 as slave), sometimes the 31200 will not be detected correctly--it either says it's using fake geometry values, or detects no model numbers and 0xFFFF for all the geometry parameters. This does not happen in OSes other than FreeBSD. >How-To-Repeat: Not known...I gather that it happens every time the boot floppy is used. >Fix: N/A >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 Jul 6 06:06:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA05467 for freebsd-bugs-outgoing; Mon, 6 Jul 1998 06:06:24 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from gw.mark-itt.ru (gw.MARK-ITT.ru [193.124.1.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA05339; Mon, 6 Jul 1998 06:06:00 -0700 (PDT) (envelope-from volodya@ieeu.udm.ru) Received: from ieeu.udm.ru (IEEU.udm.ru [193.125.187.169]) by gw.mark-itt.ru (8.8.8/MARK-ITT) with ESMTP id SAA23463 ;Mon, 6 Jul 1998 18:08:19 +0500 (KSD) Received: from ieeu-nt by ieeu.udm.ru with SMTP id SAA18660; (8.8.7/vak/1.9) Mon, 6 Jul 1998 18:05:15 +0500 (SAMST) From: "Vladimir Shirokov" To: Cc: Subject: Need help with printer accounting Date: Sun, 19 Jul 1998 18:07:32 +0400 Message-ID: <01bdb31e$9298a530$050aa8c0@ieeu-nt.ieeu.udm.ru> MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.71.1712.3 X-MimeOLE: Produced By Microsoft MimeOLE V4.71.1712.3 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi. I use 3.0-SNAP of FreeBSD (for information) and have a little question: how I can start acoounting for my print server. I must count a number of pages, printed from network (samba server) from Microsoft word text editor for any user. I have /var/accounting directory, but all files are zero length. My /etc/printcap looks: lp|local line printer:\ :pc=500:af=/var/log/printlog:mx#0:sf:sh:rg=print :lp=/dev/lpt0:sd=/var/spool/output/lpd:lf=/var/log/lpd-errs: May be I must use filter, but I don't know how to do it. Command "pac -Plp" shows: > pac alex Login pages/feet runs price alex 0.00 0 $ 0.00 I will be very happy if anyone can help me with this problem. Regards, V. Shirokov To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 6 06:40:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA09810 for freebsd-bugs-outgoing; Mon, 6 Jul 1998 06:40:11 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA09793 for ; Mon, 6 Jul 1998 06:40:08 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA29208; Mon, 6 Jul 1998 06:40:01 -0700 (PDT) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA09012; Mon, 6 Jul 1998 06:33:33 -0700 (PDT) (envelope-from nobody) Message-Id: <199807061333.GAA09012@hub.freebsd.org> Date: Mon, 6 Jul 1998 06:33:33 -0700 (PDT) From: davidh@wr.com.au To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: bin/7184: /usr/games/robots fails to write high score table in 3.0-980520-SNAP Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7184 >Category: bin >Synopsis: /usr/games/robots fails to write high score table in 3.0-980520-SNAP >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 Jul 6 06:40:01 PDT 1998 >Last-Modified: >Originator: David Hobley >Organization: >Release: 3.0-980520-SNAP >Environment: FreeBSD ishtar 3.0-980520-SNAP FreeBSD 3.0-980520-SNAP #0: Tue Jun 30 08:05:31 EST 1998 davidh@ishtar.wr.com.au:/usr/src/sys/compile/ISHTAR i386 >Description: In this snapshot, /var/games/robots_roll is not group writable, so after finishing a game of robots, it fails to update the score and a nasty error appears. >How-To-Repeat: Play a game of robots and when you die look at the error. >Fix: make /var/games/robots_roll group writable. >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 Jul 6 07:50:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA21040 for freebsd-bugs-outgoing; Mon, 6 Jul 1998 07:50:15 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA21029 for ; Mon, 6 Jul 1998 07:50:08 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA13887; Mon, 6 Jul 1998 07:50:01 -0700 (PDT) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA20673; Mon, 6 Jul 1998 07:46:24 -0700 (PDT) (envelope-from nobody) Message-Id: <199807061446.HAA20673@hub.freebsd.org> Date: Mon, 6 Jul 1998 07:46:24 -0700 (PDT) From: chris@bb.cc.wa.us To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: misc/7187: The files in /pub/FreeBSD/incoming are marked read only. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7187 >Category: misc >Synopsis: The files in /pub/FreeBSD/incoming are marked read only. >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Jul 6 07:50:00 PDT 1998 >Last-Modified: >Originator: Chris Coleman >Organization: BBCC >Release: N/A >Environment: >Description: >How-To-Repeat: Try to download a file from ftp://ftp.freebsd.org/pub/FreeBSD/incoming >Fix: give read access to everything in /pub/FreeBSD/incoming. Maybe put a script in crontab or daily that keeps this current. >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 Jul 6 11:31:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA26188 for freebsd-bugs-outgoing; Mon, 6 Jul 1998 11:31:23 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA26175 for ; Mon, 6 Jul 1998 11:31:19 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA20305 for freebsd-bugs; Mon, 6 Jul 1998 11:00:25 -0700 (PDT) Date: Mon, 6 Jul 1998 11:00:25 -0700 (PDT) Message-Id: <199807061800.LAA20305@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list Subject: Current problem reports Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Current FreeBSD problem reports The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. Bugs can be in one of several states: o - open A problem report has been submitted, no sanity checking performed. a - analyzed The report has been examined by a team member and evaluated. f - feedback The problem has been solved, and the originator has been given a patch or a fix has been committed. The PR remains in this state pending a response from the originator. s - suspended The problem is not being worked on. This is a prime candidate for somebody who is looking for a project to do. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested. Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- a [1995/01/11] i386/105 bde Distributed libm (msun) has non-standard o [1996/06/05] kern/1293 Fatal trap 12: page fault while in kernel s [1996/07/15] bin/1387 Group file errors cause absolute havoc [P o [1996/10/08] kern/1744 peter run queue or proc list smashed 4 times in f [1996/10/28] kern/1919 se access to files/directories fails, gives o [1996/12/20] bin/2258 wollman route add/delete [network] xxx.yyy.zzz.0 o [1997/01/03] conf/2367 gibbs Buslogic SCSI driver bad probe of 742A EI f [1997/02/11] kern/2717 Panic with daily script (find) o [1997/03/08] kern/2923 panic: vm_fault: fault on nofault entry, o [1997/05/01] i386/3462 yokota using a PS/2 mouse causes kernel trap in o [1997/05/24] kern/3674 peter NFS in 2.2 RELEASE hangs. o [1997/06/01] kern/3752 peter NFS dirs under -current still have proble o [1997/06/01] kern/3753 peter "make" hangs when building in an NFS dir o [1997/06/25] kern/3949 sos The WD controller probe can fail when it o [1997/07/03] kern/4021 peter Local mount of a local NFS exported direc o [1997/07/31] kern/4200 peter NFS: "vm_fault: fault on nofault entry" w o [1997/08/11] kern/4273 kernel page faults with heavy disk access o [1997/08/12] kern/4289 kernel panic: vm_fault: fault on nofault o [1997/08/18] kern/4332 gibbs System crash after SCSI DAT tape access. o [1997/08/18] bin/4333 gibbs Dump backup utility completely crashes th o [1997/08/20] kern/4345 Kernel panic is caused by passing file de o [1997/09/02] kern/4453 2.2.2 lockup on restart with ASUS-TX97 mo o [1997/10/01] kern/4673 Two panics, now crash dumps, always in re o [1997/10/25] kern/4849 2.2.5-RELEASE does not detect TI PCI-1130 o [1997/10/25] kern/4851 adaptec 2940U hangs system if scsi tape d o [1997/10/27] kern/4864 Boot Failure in FreeBSD 2.2.5 RELEASE, ma o [1997/10/28] misc/4876 SCSI hard disks die too often o [1997/11/07] kern/4968 No flow control setting seems to make the o [1997/11/09] kern/4995 atalk.diff.2.2 patch to 2.2.5-RELEASE bre o [1997/11/10] kern/4996 peter NFS crash, possibly related to file bigge o [1997/11/20] kern/5117 panic: biodone: buffer not busy o [1997/11/23] kern/5130 Kernel panic GPF imediatly on loading ker s [1997/11/24] bin/5139 portmap does not find interfaces correctl o [1997/11/25] bin/5148 peter mode of file and access on NFS mounted p f [1997/12/04] i386/5223 mount_msdos /dev/fd0.1440 /mnt and failur f [1997/12/21] kern/5355 Fix for NULLFS problems s [1998/01/15] i386/5493 [PATCH] aic6330.c: kernel freeze when I a o [1998/01/26] bin/5572 A major time step blows cron up, runs tho o [1998/01/28] kern/5592 ffs_inode_hash_lock can get permanently l o [1998/01/28] i386/5594 System not bootable when bad partition ty o [1998/02/03] kern/5641 running processes at the IDLE priority (i o [1998/02/10] kern/5702 problem with address network routing o [1998/02/10] kern/5703 CDROM Media Error triggers complete syste o [1998/02/10] kern/5709 Fatal trap 12: page fault in kernel mode o [1998/02/12] bin/5732 2.2.5 Won't install using partition creat o [1998/02/16] kern/5766 kernel panic(s) in 2.2-STABLE o [1998/03/01] kern/5886 2.2-STABLE crashes when unmounting a busy o [1998/03/01] kern/5895 Kernal dumps caused by fork? o [1998/03/02] kern/5898 2.2-stable kernel panics pmap_relase: fre o [1998/03/13] kern/5994 Kernel Panics on FreeBSD-3.0 current SMP o [1998/03/14] kern/6006 cy driver panics machine when a user dial o [1998/03/22] kern/6102 panic: biodone: buffer not busy o [1998/03/23] bin/6121 peter gethostbyname(3) no longer returns NO_DAT o [1998/03/25] kern/6133 optical drive with 1024-byte (1k) sectors o [1998/03/27] kern/6147 syncronus ufs does not sync o [1998/03/29] bin/6168 tn3270 gets undefined symbol error on sta o [1998/04/05] i386/6219 wine causes system crash o [1998/04/11] kern/6274 panic: handle_workitem_freeblocks: block o [1998/04/19] kern/6349 luigi Luigi's sound driver stall wihen it outpu o [1998/04/24] ports/6405 ports vrweb port does not build; ignores local o [1998/04/30] kern/6465 File contents are zeroed after reboot f [1998/05/08] bin/6552 syslog stops working o [1998/05/13] bin/6627 TCP-based RPC denial-of-service attack s [1998/05/13] kern/6630 [PATCH] Fix for Cyrix I8254 bug s [1998/05/15] bin/6649 imp normal users can initiate gigantic ping f o [1998/05/19] kern/6689 kern_physio.c splits requests breaking cd o [1998/05/19] i386/6693 gibbs computer hang for timeout in scsi control f [1998/05/19] kern/6694 Network hangs, with "No buffers available o [1998/05/23] kern/6732 PCCARD kernel panic in sio driver s [1998/06/03] kern/6853 peter Having an inactive de0 in system leads to o [1998/06/06] misc/6873 FreeBSD 2.2.6 freezes o [1998/06/08] conf/6896 gibbs cannot boot installation diskette with AH o [1998/06/11] kern/6914 FreeBSD 2.2.6-RELEASE and NFS is UNSTABLE o [1998/06/14] i386/6944 icu_ipl.s does has a case commented as ca o [1998/06/16] kern/6964 Problems with cam-980520 code in FreeBSD- o [1998/06/16] ports/6969 jfitz cyrus won't compile o [1998/06/19] ports/6998 ports Istall (2.2.5) does not find CDROM device o [1998/06/22] kern/7024 gibbs SCSI problem with FreeBSD 2.2.6-RELEASE a o [1998/06/23] kern/7028 Panic in vinvalbuf when appending/looking o [1998/06/24] kern/7042 No buffer space available o [1998/07/06] bin/7185 The XFree86 3.3.2 Matrox Millenium fails 81 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1995/03/02] misc/229 bde acos() core dump a [1995/03/20] kern/260 davidg msync and munmap don't bother to update m s [1995/05/16] kern/425 arp entries not getting removed when inte f [1995/06/17] kern/527 dufault dump causes assertion in ncr.c o [1995/07/02] kern/579 bde sio: RS_IBUFSIZE at 256 bytes serial line s [1995/07/29] kern/638 Transmitted packets not passed to bpf in o [1995/10/18] bin/786 wpaul Problem with NIS and large group maps a [1996/02/17] bin/1030 cracauer /bin/sh does not pass environment variabl s [1996/03/06] kern/1067 panic: ufs_lock: recursive lock not expec o [1996/05/24] misc/1247 yokota Conflicting header files f [1996/05/26] kern/1256 ZNYX 314 mysterously looses packets o [1996/06/07] kern/1301 davidg DEC FDDI/PCI Adapter: halt code = 6 (DMA f [1996/06/12] bin/1315 des ls(1) s [1996/07/19] docs/1402 doc sh(1) manual f [1996/08/03] bin/1461 Incorrect address binding of Kerberized r o [1996/08/04] kern/1467 gibbs scsi_prevent causing tape problems on clo o [1996/08/18] kern/1512 dg Use of madvise may may cause bad memory m f [1996/08/22] kern/1533 dyson Machine can be panicked by a userland pro o [1996/09/19] bin/1650 telnet encryption with char-mode and asci s [1996/09/21] kern/1661 ft driver hangs uninterruptably at "bavai o [1996/09/29] kern/1689 wollman TCP extensions throttles distant connecti o [1996/10/01] bin/1702 phk installing of tcl manpages fails from mak o [1996/10/04] kern/1723 gibbs kernel fault when doing scsi reprobe o [1996/10/04] kern/1724 gibbs HP colorado T4000S tape drive hangs syste o [1996/10/04] kern/1726 panic in kmem_malloc (dump available) o [1996/10/15] kern/1812 dg vnodes are left in a locked state o [1996/10/15] kern/1814 cy driver gets deadlocked sometimes o [1996/10/20] kern/1848 breakpoints may be set in shared librarie f [1996/10/21] kern/1856 peter read-only nfs mount: panic leaf should be a [1996/10/22] ports/1866 wosch popclient flushes remote mailbox even wit s [1996/10/26] bin/1892 install(1) removes target file s [1996/11/08] gnu/1981 ypserv handles null key incorrectly o [1996/11/13] ports/2000 asami obsolete software in distfiles directory a [1996/11/13] bin/2001 vi confused about lines to display a [1996/11/14] kern/2014 sos Console keyboard lockup problem o [1996/11/18] kern/2053 peter de0 driver don't work at 100M for Compex s [1996/12/03] kern/2142 FP mask not saved for signal handlers s [1996/12/22] ports/2268 ports libc from linux emulator does not use /et o [1996/12/22] kern/2270 Hayes ESP serial card locks system as of a [1996/12/30] kern/2325 quota.user enlarged, no boot on 2.2-BETA o [1996/12/30] kern/2330 changing root device to sd0a - ncr0: abor o [1997/01/07] gnu/2394 tar will extract files even if -C command o [1997/01/08] kern/2425 amd driver does not reprobe devices. o [1997/01/09] bin/2430 mountd stops on loading if subnet mask is o [1997/01/09] i386/2431 tegge panic: get_pv_entry: cannot get a pv_entr o [1997/01/12] i386/2471 Sound: Reset failed - Can't reopen device o [1997/01/13] misc/2479 sos NEC CD-ROM NOT RECOGNIZED; MATROX MISTIQU o [1997/01/13] bin/2489 steve gnats mangles sections o [1997/01/16] kern/2507 Renaming DOS directories with "mv" causes o [1997/01/20] bin/2541 tegge cd (using /bin/sh) may leave you in the w o [1997/01/20] kern/2545 se < sd0(ncr0:6:0): COMMAND FAILED ==> Not a [1997/01/21] bin/2549 sos cdcontrol refuses to play audio CDs from o [1997/02/02] kern/2640 2.2-RELENG leaks memory (router/pppd serv s [1997/02/03] kern/2647 changing existing route to -static crashe o [1997/02/05] kern/2667 wollman bpfattach can hang the system o [1997/02/05] bin/2671 Run-away processes using all CPU time a [1997/02/06] kern/2675 lkmcioctl() is not consistent and careful o [1997/02/07] kern/2690 asami When Using ccd in a mirror mode, file cre o [1997/02/08] kern/2695 sio1 (16540 serial port) is not recognize o [1997/02/09] kern/2698 After rewind I cannot read a tape; blocks o [1997/02/12] kern/2719 added support for magneto-optical SCSI di o [1997/02/14] bin/2736 No boot block if no FreeBSD partitions on o [1997/02/15] kern/2742 panic: leaf should be empty o [1997/02/15] bin/2747 davidn cannot submit at jobs from within an at j o [1997/02/16] gnu/2749 peter cvs export using remote cvs fails - CVS/T o [1997/02/17] kern/2751 asami 2GB limitation on CCD device partitions s o [1997/02/18] bin/2762 Precedence mistake in libncurses o [1997/02/19] kern/2768 ktrace(1) -i dumps corrupted trace data o [1997/02/19] bin/2769 fsck needs several runs to clean up bad/d o [1997/02/19] kern/2770 panic: vm_fault: fault on nofault entry o [1997/02/19] kern/2771 panic: bad dir o [1997/02/19] kern/2773 peter bad dir panic o [1997/02/20] bin/2785 wpaul callbootd uses an unitialized variable o [1997/02/20] gnu/2786 gcc version 2.7.2.1 C compiler slows down o [1997/02/21] misc/2793 libc_r make fscanf failure o [1997/02/22] kern/2800 DDS large data writing probrem o [1997/02/25] kern/2815 Custom Kernel crashes o [1997/03/01] kern/2840 mlock+minherit+fork+munlock causes panics o [1997/03/03] i386/2853 sos syscons beeps even if beeping screen is n o [1997/03/03] kern/2858 peter FreeBSD NFS client can't mount filesystem o [1997/03/04] kern/2873 the od0 devies does not handle a Maxoptix o [1997/03/07] bin/2915 the "-fstype ufs" option of "find" seems o [1997/03/08] kern/2919 vm_fault: fault on nofault entry, addr: f o [1997/03/11] bin/2948 can't dump 640MB optical disks o [1997/03/12] kern/2965 st0 hang/fail on reading 4mm DAT tape for o [1997/03/12] bin/2969 csh and/or builtin printf has problems wi o [1997/03/12] bin/2973 output of iostat is wrong. o [1997/03/15] kern/2991 RTF_LLINFO routes remain when interface i o [1997/03/18] kern/3021 panic after sync during reboot o [1997/03/21] kern/3054 ahasty OPL3 sound off by one note o [1997/03/21] bin/3055 umount -f does not work o [1997/03/28] i386/3130 yokota Dell Latitude keyboard lock up o [1997/04/01] bin/3170 vi freaks and dump core if user doesn't e o [1997/04/05] kern/3201 peter de0 not re-enabled after hub down o [1997/04/05] ports/3205 jmz Mtools-3.0 attempts to flock() a disk par o [1997/04/06] kern/3216 panic: pmap_zero_page: CMAP busy o [1997/04/06] kern/3219 sppp or arnet gets looped after connectio o [1997/04/09] kern/3244 ipfw flush closes connections o [1997/04/10] bin/3246 mtree -c should escape whitespace and spe o [1997/04/15] bin/3305 Can't do encrypted rlogin into self o [1997/04/18] kern/3327 using gdb may cause hanging processes. o [1997/04/19] bin/3355 se ncrcontrol fails when -DFAILSAFE in kerne o [1997/04/25] kern/3381 peter 2.2.x kernel panic on traversing and remo o [1997/04/25] kern/3384 telldir-seekdir can cause livelock o [1997/04/28] bin/3406 rich Fresh Internet Install - Permissions on f o [1997/05/01] gnu/3441 C++ exceptions don't work in shared libra o [1997/05/01] kern/3463 netstat -I packet count increase on sl0 w o [1997/05/03] bin/3478 pwd_mkdb and passwd o [1997/05/04] i386/3502 Merge of if_ix* and if_ie* broke EE/16 su o [1997/05/06] bin/3524 rlogin doesn't read $HOSTALIASES for non- o [1997/05/07] kern/3527 peter if_de.c doesn't recognize Kingston card p o [1997/05/09] kern/3564 using MPU401 driver pagefaults kernel o [1997/05/09] kern/3569 ex0 driver doesn't work with EtherExpress o [1997/05/11] misc/3578 defining CXXFLAGS in /etc/make.conf or en o [1997/05/12] kern/3579 peter de driver doesn't support newer SMC 9332 o [1997/05/12] kern/3581 intermittent trap 12 in lockstatus() o [1997/05/12] kern/3582 panic: bad dir (mangled entry) in 2.2-STA o [1997/05/13] conf/3591 parts in rc.local have no effects in rc.* s [1997/05/25] kern/3685 [PATCH] panic: fdesc attr o [1997/05/30] conf/3725 Cirrus Logic PCMCIA Controller Support o [1997/05/30] kern/3726 peter process hangs in 2.2-stable when working o [1997/05/30] kern/3727 SCSI II tape support broken o [1997/06/01] conf/3750 phk Potential improvements to rc.firewall o [1997/06/03] kern/3771 NFS hangs when writing to local FS re-mou o [1997/06/04] i386/3779 changing cursor to blinking block causes o [1997/06/07] conf/3807 mitsumi cd-rom fx800 (8x cd-rom) is not r o [1997/06/08] gnu/3810 cvs can't handle multiple multiple-path d o [1997/06/16] misc/3883 @+netgroup entries break +NIS-user entrie o [1997/06/18] kern/3899 df while unmounting floppy crashes 2.2.2 o [1997/06/19] kern/3909 joerg A patch supporting some new worm drivers o [1997/06/19] gnu/3910 sort(1) of 2.2.1R doesn't work in special o [1997/06/28] misc/3980 peter access via NFS fails during mount-operati o [1997/06/29] bin/3982 /usr/include/arpa/tftp.h has bug preventi o [1997/06/29] bin/3986 rdist seg faults when target machine is d o [1997/07/02] kern/4012 peter 2.2-RELEASE/Digital UNIX NFSv3 0 length f o [1997/07/02] misc/4013 boot floppy hangs if IDE ZIP Drive presen o [1997/07/04] kern/4032 gibbs During recovery from scsi errors, incorre s [1997/07/06] gnu/4042 gdb stackframe in static library shows no o [1997/07/07] ports/4050 jfitz mrtg: rateup dumps core with malloc_optio o [1997/07/12] bin/4078 sos Typed password to log in on console and i o [1997/07/17] kern/4115 peter SunOS NFS file has wrong owner if creator o [1997/07/26] bin/4176 restore gets confused when run over pipe o [1997/07/27] ports/4179 fenner lmbench-1.1 dumps core after asking for m o [1997/07/28] kern/4186 peter nfsiod, panic, page fault in kernel mode o [1997/07/30] kern/4194 peter kernel pci driver for Digital 21041 Ether o [1997/08/04] i386/4226 Floating point exception for double preci o [1997/08/06] kern/4240 kernel fails to recognise 2nd serial port o [1997/08/08] conf/4252 peter sendmail doesn't use smrsh by default o [1997/08/09] kern/4256 gibbs ahc driver: kernel goes to strange state o [1997/08/10] kern/4260 EOF handling in st(4) is broken o [1997/08/10] kern/4265 Panic in dsinit when multiple FreeBSD sli o [1997/08/10] kern/4270 ch driver does not use bounce buffers o [1997/08/11] bin/4276 Security problem with DNS resolution o [1997/08/12] kern/4284 le0 goes OACTIVE after some time o [1997/08/13] kern/4295 SL/IP difficulties between 2.2.1 & 2.2.2 o [1997/08/16] kern/4312 arp table gets messed up, syslog "gateway o [1997/08/17] kern/4327 peter NFS over TCP reconnect problem s [1997/08/19] kern/4338 New device driver (Cyclades Cyclom-Z) o [1997/08/21] bin/4353 fetch -m changes modified date o [1997/08/22] bin/4357 wosch bug in adduser script causes duplicate UI o [1997/08/23] bin/4366 bad144 crashes if checking over 2gb o [1997/08/25] docs/4381 mount -t msdos causes panic:vm_fault o [1997/08/25] kern/4382 CURRENT kernel has a "free vnode isn't" p o [1997/08/27] ports/4405 jfitz ascend-radius port is out-of-date o [1997/09/02] kern/4454 X drops characters/locks up keyboard when o [1997/09/03] bin/4460 lpd hangs exiting (IE in ps table) o [1997/09/07] kern/4487 Kernel panic executing a directory o [1997/09/08] bin/4497 Reverse DNS fails for some CIDR *.IN-ADDR o [1997/09/09] kern/4505 Support for Gravis UltraSound PnP card o [1997/09/10] kern/4508 peter nfs3 data integrity problems o [1997/09/11] kern/4513 System lockup appears to be VM related. o [1997/09/14] i386/4533 Server with Cyclom-Y PCI card rebooted at o [1997/09/14] kern/4544 Linux emulator problems when MAXDSIZ is i a [1997/09/18] bin/4568 simple /bin/sh script produces wrong resu o [1997/09/19] bin/4582 integer overflow in 'sa -km' o [1997/09/19] bin/4585 termcap search fails too early o [1997/09/20] kern/4588 peter NFS access locks up o [1997/09/21] kern/4600 peter nfs lookups might give incorrect result o [1997/09/26] conf/4634 peter Sendmail Problem o [1997/09/27] bin/4638 telnet tries to resolve numerical IP addr o [1997/09/30] kern/4663 checkalias panic o [1997/10/01] kern/4666 dfr umount -f doesn't seem to work o [1997/10/01] bin/4672 rdist does not do hard links right when t o [1997/10/03] bin/4683 restore doesn't correctly handle "sparse" o [1997/10/05] docs/4691 no documentation for mk_cmds(1) o [1997/10/14] kern/4768 netatalk won't start with multicast error o [1997/10/15] kern/4772 ATAPI CD (bootable) causes kernel panic o [1997/10/16] ports/4773 torstenb Error in posting news items to INN server o [1997/10/16] kern/4774 trying to use IBCS2 shared libraries cras o [1997/10/16] kern/4782 Under certain conditions, several krsh's o [1997/10/18] bin/4795 glitch in /bin/sh cd command o [1997/10/18] ports/4798 jmz setuid-root Xserver problem o [1997/10/24] kern/4843 48 meg double fault moved to 64 meg in 2. o [1997/10/25] bin/4850 peter Named crashes with "rm_datum: DB_F_ACTIVE o [1997/10/26] kern/4859 SMP kernel panics with timeout table full o [1997/10/27] ports/4865 ports xdm doesn't set env variables o [1997/10/28] bin/4884 the version of amd in 2.2.5-RELEASE appea o [1997/10/31] bin/4907 Oct 33* Daylight Savings Time ends; clock o [1997/10/31] kern/4909 de ethernet driver is crazy on 100base o [1997/11/01] bin/4913 peter Large mail messages can cause mail.local o [1997/11/03] kern/4927 kernel does not check any quota and permi o [1997/11/04] bin/4939 uuxqt unable to execute rnews program o [1997/11/05] kern/4945 continued failure to use the Adaptec 1460 o [1997/11/05] bin/4949 rpc.rquotad stat()s fs with quota file in o [1997/11/09] kern/4990 peter NFS hangs under FastEthernet. 1024 Bytes o [1997/11/10] bin/4998 peter mail and more do not work well with being o [1997/11/10] misc/5001 During installation sc0 device is require o [1997/11/10] misc/5005 f2c is buggy and seriously outdated (agai o [1997/11/11] bin/5008 libc_r not working at static linking o [1997/11/15] conf/5062 login.access not evaluated correctly o [1997/11/18] bin/5084 wrong "term" for internal shell o [1997/11/18] kern/5085 System crash during mount command for CD o [1997/11/20] bin/5105 mount_cd9660 or mount -t cd9660 fails to o [1997/11/20] misc/5107 rebuilding of whatis database does not ca o [1997/11/22] gnu/5126 C++ compiler bug (assembly output) o [1997/11/23] i386/5128 Adaptec 2940U Timeouts with QUANTUM disk s [1997/12/02] bin/5189 rcmd(3) only allows one hardcoded connect s [1997/12/02] conf/5191 [PATCH] fsck during boot fails due to lac s [1997/12/03] misc/5207 Examples for /etc are not in /usr/share/e o [1997/12/06] kern/5244 F00F workaround dosn't always work on SMP o [1997/12/13] kern/5285 quotas do not work properly with setuid p s [1997/12/14] bin/5297 make incompatibility with System V style o [1997/12/19] misc/5343 booteasy problem o [1997/12/19] kern/5347 peter DEC (de0) ethernet card has no buffers af a [1997/12/21] docs/5358 doc USWC write posting must be turned off on o [1997/12/30] kern/5396 fdesc fs crashes system o [1997/12/31] i386/5401 peter de0 selects wrong media when reconnected f [1998/01/08] kern/5456 After writing more than 100MB to SCSI Exa s [1998/01/15] bin/5497 [PATCH] Rbootd cannot boot my hp9000s340 f [1998/01/15] misc/5499 when setting up the partition for free bs o [1998/01/15] bin/5500 "invalid hostname" is logged instead of I o [1998/01/16] kern/5513 luigi new PnP code is BAD (soundcards) s [1998/01/19] kern/5522 [PATCH] ip_input.c & ip_output.c problems o [1998/01/20] ports/5530 asami fetch (in make fetch stage) do not use pa o [1998/01/22] bin/5548 syslogd core dumps when signaled o [1998/01/22] misc/5552 RE: Linux append=reboot=bios parameter im o [1998/01/26] misc/5574 bootpd gets timezone incorrectly o [1998/01/27] kern/5587 session id gets dropped o [1998/01/29] kern/5598 Support for magneto-optic SCSI devices wi s [1998/01/30] bin/5604 setenv(3) function has memory leak, other o [1998/01/30] kern/5606 Kernel Panic running Linux Binary without o [1998/01/31] kern/5611 bind does not check sockaddr->sin_family o [1998/02/01] kern/5618 kernel memory leak in routetbl. o [1998/02/01] kern/5624 dumping to tape causes scsi bus reset o [1998/02/04] kern/5643 NCR 810/815 do not handle rewind correctl o [1998/02/05] bin/5661 /sbin/dump never finishes o [1998/02/06] misc/5673 2.2-980204-SNAP installer runs out of dis o [1998/02/09] bin/5693 groff -mm or groff -mmm ??? o [1998/02/10] i386/5698 LPIP causes spurious reboots o [1998/02/11] misc/5722 Brazil can't decide on daylight savings o [1998/02/12] kern/5728 peter NFS hangs o [1998/02/12] kern/5731 peter executables wedge on "vmopar" when built o [1998/02/12] bin/5733 cp -r cannot copy un-writable directories o [1998/02/15] i386/5760 3.0-CURRENT freezes at mount root stage o o [1998/02/17] gnu/5767 man leaves partially formatted cat pages f [1998/02/17] ports/5770 asami PKG_NAME on ports japanese/expect is *NO o [1998/02/19] kern/5794 Kernel Panic o [1998/02/23] ports/5825 ports cd-write 1.4 fails to read tracks. o [1998/02/23] kern/5827 kernel panics in current (3.0) o [1998/02/24] kern/5839 vm_page_unwire: invalid wire count: 0 o [1998/02/25] docs/5842 description of -c and -o conn in mount_nf o [1998/02/25] bin/5845 in sh, set -- `getopt ...` always returns o [1998/02/25] ports/5850 me xemacs-20.3 contains bad send-pr o [1998/02/25] misc/5852 Page fault or error caused by writing to o [1998/02/25] bin/5854 host -l MX or NS core dumps o [1998/02/27] bin/5867 peter pppd or FreeBSD ? o [1998/02/28] kern/5877 sb_cc counts control data as well as data o [1998/03/01] kern/5890 peter NFS server Side say NFSERR_BAD_COOKIE (rm o [1998/03/01] kern/5896 FreeBSD host can't network-write to other o [1998/03/02] kern/5904 panic: newfs o [1998/03/06] ports/5933 ports emacsserver (19.34b) hostname in /tmp/ese o [1998/03/09] bin/5959 Cannot set up clocal gettys o [1998/03/09] bin/5961 dup2 wrapper in libc_r is incomplete o [1998/03/10] kern/5965 FreeBSD TCP/IP connectivity get buried by o [1998/03/10] kern/5969 non-root user can reboot/lock up system o [1998/03/10] ports/5970 ports psmisc ports uploaded to freebsd.org:/pub o [1998/03/10] kern/5974 -current VM oddities o [1998/03/11] kern/5975 can't boot freebsd: fatal trap12: page fa o [1998/03/11] kern/5979 julian sd.c doesn't validate all mode sense 4 va o [1998/03/12] kern/5991 panic: free vnode isn't o [1998/03/14] conf/6002 peter /etc/mail/sendmail.cf.addtions seems to l o [1998/03/14] bin/6004 cron in -CURRENT sometimes fails to proce o [1998/03/14] bin/6005 -CURRENT cron dies after short periods of o [1998/03/16] kern/6035 The system "sort-of" hangs when playing b o [1998/03/19] kern/6066 lnc driver does not work correctly with A o [1998/03/19] bin/6071 2.2.6-980315-BETA up grade option problem o [1998/03/20] bin/6074 Incremental dumps are backing up unchange o [1998/03/21] bin/6087 sh doesn't work properly on certain confi o [1998/03/22] kern/6099 LPIP to slow machine causes hang o [1998/03/22] kern/6103 panic: ffs_valloc: dup alloc o [1998/03/28] bin/6162 kinit does not default to the current use o [1998/03/30] ports/6180 max youbin port has root-exploitable security o [1998/04/01] kern/6191 SCSI driver error o [1998/04/02] ports/6195 msmith wrong font path in vncserver o [1998/04/02] kern/6197 3com905 Seriously broken o [1998/04/03] kern/6203 kernel panics with "blkfree: freeing free o [1998/04/03] conf/6205 NFS/NIS freak out o [1998/04/04] kern/6212 Two bugs with MFS filesystems fixed, one o [1998/04/07] kern/6238 luigi Sound-driver patch for MAD16 (OPTi 928,92 o [1998/04/07] kern/6242 vnode disk driver too unstable in -STABLE o [1998/04/08] kern/6251 peter ktrace very broken when logging over NFS o [1998/04/08] kern/6252 ide cdrom hangs system when on same bus a o [1998/04/09] kern/6253 Atapi wait for command phase too short. o [1998/04/10] kern/6267 dg panic: pmap_dispose_proc: upage already m o [1998/04/11] kern/6277 mouse operation weird in -current o [1998/04/13] ports/6288 se KDE port glitches o [1998/04/14] kern/6300 System locks up in SMP mode when accessin f [1998/04/15] misc/6310 des explicit cast needed in floatpoint.h for o [1998/04/16] bin/6317 with -8E flags telnet still goes to comma o [1998/04/17] kern/6336 peter NFSv3 should support files >2GB, but does o [1998/04/17] misc/6340 missing the terminfo, which causes librar o [1998/04/18] kern/6344 cy driver is outdated o [1998/04/19] kern/6351 DPT RAID controller stops working under h s [1998/04/19] bin/6353 How about upgrading from amd to am-utils? o [1998/04/20] i386/6368 Stallion Easyio 8 port not detected using o [1998/04/22] bin/6383 csh - when ctrl-d is pressed, file is chm o [1998/04/25] kern/6412 peter NFS sends packets from the wrong interfac o [1998/04/30] misc/6472 jb [PATCH] _thread_flockfile() hangs process a [1998/05/01] kern/6481 se Patches for VIA Socket 7 chipsets o [1998/05/02] ports/6484 ports xemacs hangs o [1998/05/03] kern/6506 system will not soft reboot f [1998/05/05] kern/6525 Coral-Draw 5 CD crashes 2.2.6-STABLE a [1998/05/06] bin/6536 pppd doesn't restore drainwait for tty s [1998/05/06] bin/6539 [PATCH] bmake version of perl5 available o [1998/05/07] misc/6549 steve You dont always get notified when someone o [1998/05/08] bin/6557 /bin/sh is broken o [1998/05/10] kern/6574 ipfw crash with DIAGANOSTICS o [1998/05/10] bin/6577 /bin/sh environment variables not set in o [1998/05/11] kern/6587 SMP idle cpl breaks signal forwarding o [1998/05/11] kern/6589 system panick'd with May 4th kernel o [1998/05/11] ports/6591 ports KDE starts /usr/bin/kzip instead of /usr/ o [1998/05/12] kern/6603 ncr driver hangs under high load o [1998/05/12] bin/6609 gmp.h not installed o [1998/05/15] kern/6650 joerg Replugging PS/2 keyboard causes a panic o [1998/05/17] kern/6670 PANIC on boot with FreeBSD 3.0 (same comp s [1998/05/19] kern/6686 [STABLE] -stable does not support large I o [1998/05/20] kern/6706 mount_msdos+mount_null+mc=panic f [1998/05/21] kern/6710 Quiting PPP paniced my machine o [1998/05/21] ports/6715 jraynard ElectricFence fails to work on -current o [1998/05/25] kern/6751 audio cd play suddenly stops. o [1998/05/25] kern/6755 peter Tulip (if_de) driver buggy in -current o [1998/05/27] kern/6771 peter panic: Bad nfs svc reply s [1998/05/27] misc/6773 [PATCH] tempnam.c security problems s [1998/05/29] bin/6790 [PATCH] make(1) coredumps in debugging mo s [1998/05/30] bin/6799 [THREAD,SCSI] problem with open(2) in lib o [1998/06/01] ports/6821 ports wwwoffle-2.1 port (second posting) o [1998/06/01] misc/6824 peter Intel EtherExpress 100+, 2.2.6 NFS troubl s [1998/06/02] bin/6830 make(1) exhibits confusing and non-standa o [1998/06/03] ports/6851 ports apply DFN-CERT#34784 to CGIParse.c o [1998/06/03] kern/6852 -stable doesn't build s [1998/06/04] kern/6854 ahasty [PATCH] probing brooktree849 capture card o [1998/06/04] kern/6858 inetd in realloc(): warning: junk pointer o [1998/06/04] bin/6860 chgrp missing from /sbin o [1998/06/04] misc/6861 [PATCH] netboot error f [1998/06/05] kern/6865 OS crashes when exiting shell with suspen o [1998/06/05] conf/6871 ${LIBDIR} not setted correctly when using o [1998/06/05] conf/6872 Wrong csu lib built when setting BINFORMA o [1998/06/08] ports/6897 ports kde port doesn't compile w/o slight modif o [1998/06/09] ports/6902 ports xemacs package broken (motif dependency) o [1998/06/10] kern/6908 kernel crash from user land o [1998/06/12] ports/6929 ports fxtv-0.47 fails to build on AccelX server o [1998/06/12] ports/6930 imp socks5 port broken by /usr/lib/aout chang o [1998/06/14] conf/6947 allow ip address for natd_interface in rc o [1998/06/15] misc/6956 panic: Going nowhere without my init when o [1998/06/16] kern/6966 AHC driver fails to read SEEPROM on Iwill o [1998/06/18] ports/6986 ports LaTeX vs. teTeX ; xdvi, xdvik vs. teTeX o [1998/06/19] bin/6994 The netstat(1) -s generates wrong output f [1998/06/19] i386/6996 Occasional complete lockup of 2.2.5R o [1998/06/19] i386/7003 Problem with 3com ethernet 3c509a adaptor s [1998/06/22] bin/7019 [security] pwd.db almost always contains o [1998/06/22] ports/7026 ports corrections to the perl5 port s [1998/06/23] bin/7033 Same process notified multiple times o [1998/06/23] ports/7034 ports new port o [1998/06/24] kern/7038 shimon Kernel panic caused by DPT driver (Got a s [1998/06/24] bin/7043 the fstat command doesn't know ISOFS, MSD s [1998/06/24] conf/7054 [PATCH] bad default value of ${fs} for ty o [1998/06/24] i386/7057 3Com 3C509 locks up, or has >1000ms rtt u s [1998/06/24] bin/7059 sh dumps core on this script o [1998/06/24] ports/7061 ports fspclient's grab command fails (and remov s [1998/06/26] docs/7079 doc [PATCH] FAQ 10.15 on IP multicast routing o [1998/06/27] ports/7090 ports xlock manhandles crypt(3) API. o [1998/06/29] ports/7118 ports ifmail 2.13 port has tty lock files in wr f [1998/07/01] kern/7141 Kernel freezes, gdb, high memory load o [1998/07/05] ports/7167 ports elm cannot pgp for more than one recipien o [1998/07/05] kern/7169 cannot use accton on a append-only file o [1998/07/05] ports/7175 ports pkg_delete mgetty-1.1.14 deletes its conf o [1998/07/05] kern/7178 IDE Western Digital hard disk detection e o [1998/07/06] ports/7182 ports www/netscape4-navigator cant fetch fortif 388 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- s [1995/01/14] bin/115 systat iostat display doesn't scale high s [1995/05/13] bin/401 Add REMOTE_* variables s [1995/05/23] i386/440 want vidcontrol option to apply settings a [1995/05/27] gnu/450 scrappy tar --exclude -c doesn't work s [1995/06/15] bin/517 Bad group change with 'install' o [1995/07/09] misc/605 wpaul NIS: get*bynis routine problems s [1995/08/05] gnu/655 ld -r of shared objects worked in 1.1.5, s [1995/08/07] bin/658 ifconfig alias has to be separately given s [1995/09/26] kern/742 syslog errors accessing Mac hard disks [p s [1995/10/03] kern/765 umount -f can`t umount a NFS filesystem i s [1995/11/20] kern/831 one minor complaint about the kernel visu s [1995/11/27] bin/841 stale nfs mounts cannot be umounted o [1995/11/30] bin/854 dg swapinfo shows incorrect information for o [1995/12/17] kern/900 dg ext2fs triggers divide by zero trap in vn s [1996/01/21] bin/961 'more $file', incorrect CRLF compacting. s [1996/01/28] kern/975 getrusage returns negative deltas a [1996/01/30] bin/981 fenner clnt_broadcast() is not aware of aliases s [1996/02/07] bin/999 /usr/share/mk/sys.mk missing common $(RM) s [1996/03/20] kern/1090 iostat displays incorrect sps count s [1996/03/20] bin/1093 route's diagnostic is weird o [1996/04/06] kern/1119 dg Mounted EXT2FS partition is not cleanly u o [1996/05/15] bin/1206 cracauer /bin/sh + emacs + ^G = ruined terminal s [1996/06/11] bin/1312 automounter hangs on boot s [1996/06/13] bin/1320 dump limits blocksize to 32K s [1996/06/18] i386/1331 [PATCH] changes and bug in ft driver s [1996/07/07] bin/1375 jraynard Extraneous warning from mv(1) [PATCH] o [1996/07/21] ports/1416 ports cflow(1) doesn't parse GNU C __attribute_ o [1996/07/24] misc/1428 ncurses doesn't always display ALTCHARSET a [1996/08/07] ports/1470 asami need more info in the ports structure s [1996/08/17] bin/1502 [PATCH] vmstat 'avm' field merges with pr o [1996/08/19] kern/1514 dg mlock fails on readonly regions o [1996/08/20] kern/1516 dg vm_fault.c contains dead code or too many o [1996/08/21] ports/1520 erich sudo dosn't recognise certain passwords a a [1996/09/04] bin/1565 Moving a file to it's link completely rem o [1996/09/06] bin/1577 peter mail -f foo does not look in current dire s [1996/09/08] bin/1589 [PATCH] ftp fails to flush output o [1996/09/14] gnu/1611 phk groff should use "system-wide" papersize a [1996/09/18] bin/1642 pkg_install Makefiles could be simplified s [1996/09/19] kern/1654 [PATCH] In procfs, vattr doesn't contain o [1996/09/23] i386/1671 joerg s2 map in pcvt isn't ISO 8859-1 and claim o [1996/09/29] docs/1691 doc ppp server doc submission o [1996/10/02] kern/1711 joerg kernel logging of signaled processes shou s [1996/10/13] kern/1788 wollman netstat gives negative numbers for tcp by s [1996/10/13] misc/1791 syslimits.h does not allow overriding def o [1996/10/14] ports/1804 ports pkg_create hangs if the packing list has o [1996/10/20] bin/1849 gdb sets library breakpoints on the wrong o [1996/10/20] docs/1855 joerg Addition to LINT o [1996/10/23] bin/1872 automounter (amd) cannot ls directories w s [1996/10/24] bin/1881 file(1) misidentifies Sun3/m68k executabl s [1996/11/01] bin/1941 danny wtmp and monthly rotation s [1996/11/01] bin/1943 route(8) args s [1996/11/02] bin/1945 Out of date code/comments in dd o [1996/11/04] i386/1953 sos syscons savers have no default timeout s [1996/11/04] gnu/1961 [PATCH] uucp logging files are in /var/sp s [1996/11/06] bin/1970 csh limtail() bug s [1996/11/09] bin/1985 pkg_delete outputs confusing message when s [1996/11/16] bin/2036 cpio size wraparound s [1996/11/19] bin/2061 DEBUG_FLAGS in bsd.lib.mk is broken s [1996/11/22] bin/2090 clients may bind to FreeBSD ypserv refusi o [1996/11/25] misc/2105 jmg bsd.lib.mk has problems with STRIP and IN o [1996/11/26] i386/2108 sos [ATAPI] wcd driver may hang under certain o [1996/11/28] kern/2118 sos writing to virtual consoles fails to disp s [1996/11/28] bin/2119 [PATCH] mount lies to child about argv0, s [1996/12/02] bin/2137 vm statistics are bad o [1996/12/03] conf/2146 jkh wrong /dev for COM2 during installation v o [1996/12/07] ports/2169 pst zephyr port disagrees with Kerberos causi o [1996/12/08] bin/2184 peter sendmail has lots of trouble with local d a [1996/12/10] ports/2190 asami need cross-reference to xpdf from X11 por s [1996/12/12] kern/2199 joerg [PATCH] Got a lots of "Target Busy" messa s [1996/12/14] kern/2214 File System gets corrupted when mounting s [1996/12/14] bin/2216 [PATCH] Ada specs not being compiled into s [1996/12/17] i386/2234 fbsdboot.exe does not turn off floppy dri o [1996/12/17] i386/2239 jmg some interrupts take too long (i.e. BT946 a [1996/12/21] bin/2265 guido su(1) does not call skeyaccess() o [1996/12/24] kern/2273 dufault support for POSIX.4 / POSIX.1a RT-schedul s [1996/12/26] bin/2291 [PATCH?] race condition in /etc/master.pa s [1996/12/27] kern/2298 Support for DSR/DCD swapping on serial po a [1996/12/27] misc/2302 markm new crypt() including SHS and an extendab o [1996/12/29] bin/2315 peter tail segfaults on NFS permission denied s [1996/12/30] kern/2327 [PATCH] `Green' saver for pcvt o [1997/01/06] bin/2387 [PATCH] virtual hosting patches for inetd o [1997/01/07] kern/2393 filesystems not unmounted following shutd o [1997/01/07] bin/2410 pppd(8): failing PAP doesn't force line d o [1997/01/10] bin/2442 davidn setusershell()/endusershell() missing o [1997/01/11] bin/2448 steve [MFC] semctl() not portable -- freebsd re o [1997/01/12] kern/2462 sos screen saver dosn't capture key strokes o [1997/01/14] kern/2492 AIMS Lab RadioTrack driver for FreeBSD 2. o [1997/01/15] bin/2499 des fetch ftp://bla bla doesn't bail in disk o [1997/01/16] i386/2514 jkh BootEasy binary is OLD in in FBSD install o [1997/01/17] bin/2518 /usr/bin/tar is out of date o [1997/01/21] bin/2547 fetch command fail to get file o [1997/01/21] bin/2556 Patch for calendar.c o [1997/01/26] misc/2596 dd refuses to respond to SIGkill o [1997/01/26] i386/2598 ep0 in EISA mode hangs if ep0-device (ISA o [1997/01/28] bin/2603 dufault Added POSIX.4/POSIX.1b constants in unist o [1997/01/28] bin/2604 dufault Added POSIX.4/POSIX.1b shm_open()/shm_unl o [1997/01/29] misc/2617 Utility submission - upsmon - UPS monitor o [1997/01/31] bin/2630 [PATCH] xargs does excessive and inconsis o [1997/02/02] gnu/2637 tar dumped core with -g option. a [1997/02/02] bin/2641 wpaul login_access.c doesn't work with NIS by d o [1997/02/04] bin/2660 When selecting BSD to boot from system ha o [1997/02/05] bin/2668 modification suggested for rarpd o [1997/02/05] bin/2672 Problem with telnetd o [1997/02/07] kern/2686 struct igmpmsg in s o [1997/02/10] bin/2703 jmg vipw doesn't allow you to edit master.pas o [1997/02/10] kern/2704 Occasional failure to detect wdc1 on boot o [1997/02/11] conf/2709 FBSD 2.1.6 X-Server installation setup ut o [1997/02/11] kern/2715 MSDOS-FS 1024/2048 byte/sector media supp o [1997/02/11] kern/2716 od.c/sd.c non 512 byte/sector support imp o [1997/02/13] i386/2729 "make tags" in sys/kern produces barely u o [1997/02/14] bin/2734 jkh pkg_* uses relative paths to executables o [1997/02/14] bin/2735 jkh Add signature support (both MD5 and PGP) o [1997/02/14] bin/2737 yppasswd fails to change password on a su o [1997/02/15] misc/2745 fenner PR querry web form doesn't sort correctly o [1997/02/23] kern/2806 new kernel tags script o [1997/02/26] conf/2822 ftp install specifying URL confusing o [1997/02/27] gnu/2827 after make world genclass is not installe o [1997/03/02] bin/2851 script(1) sets argv[0] of the started she o [1997/03/03] kern/2857 DE500 board exhibits capture effect o [1997/03/03] bin/2859 /usr/bin/quota seems to choke on long gro o [1997/03/03] kern/2865 peter NFS client hangs on umount, ls, df when N o [1997/03/05] kern/2886 fenner mbuf leak in multicast code o [1997/03/06] docs/2897 steve send-pr categories should be explained so o [1997/03/06] bin/2898 fenner arp -a -n buglet o [1997/03/09] i386/2924 sos syscons X keyboard gets stuck in capsmode o [1997/03/10] bin/2934 sh(1) has problems with $ENV o [1997/03/10] bin/2938 Add -b, -l, and -f options to du(1) o [1997/03/11] ports/2949 asami bsd.port.mk needs something like FETCH_EN a [1997/03/13] bin/2977 After enabling moused and vidcontrol and o [1997/03/14] ports/2988 joerg vga font is not built o [1997/03/15] ports/2993 hoek qmail-port-take2-proff.tar.gz in incoming o [1997/03/17] ports/3012 obrien qmailanalog port in incoming o [1997/03/18] conf/3023 By default users have no write permission o [1997/03/18] misc/3024 make reinstall in /usr/src requires writa o [1997/03/22] kern/3061 route does not accept -genmask o [1997/03/31] gnu/3157 Patches to gas and gdb to support MMX ext o [1997/04/01] ports/3169 ports nn port broken o [1997/04/06] bin/3211 ctm uses mktemp()> o [1997/04/06] bin/3212 the pkg_* tools use mktemp() o [1997/04/07] bin/3221 rpc.rusersd : can't communicate with SunO o [1997/04/07] misc/3225 uucpd.c should normalize host names as lo o [1997/04/08] misc/3237 SCRIPTS addition to bsd.prog.mk o [1997/04/09] bin/3242 incorrect prototype for initgroups o [1997/04/10] bin/3251 xsysinfo stops refreshing and wastes CPU o [1997/04/10] kern/3253 scsiconf.c: make ZIP disks use optical dr s [1997/04/13] conf/3272 imp $@ is deprecated I believe, so use ${.TAR o [1997/04/14] kern/3281 errors when "rm -r"-ing in a mounted ext2 o [1997/04/14] kern/3282 ext2fs causes fs-unmount at shutdown/rebo o [1997/04/14] bin/3284 [PATCH] symorder(1): -t option doesn´t wo o [1997/04/14] bin/3286 [PATCH] missing error checking in mount_m o [1997/04/14] kern/3287 [PATCH] missing symbols in /usr/src/sys/i o [1997/04/15] kern/3299 /dev/console hangs o [1997/04/17] bin/3314 /etc/daily did not run on April 6, 1997 o [1997/04/17] ports/3318 ports New port: jigsaw (Java-based HTTP server) o [1997/04/18] ports/3322 markm setlocale problem in lang/perl5 o [1997/04/25] ports/3383 ports kaffe core dumps if LD_LIBRARY_PATH not s o [1997/04/25] bin/3386 kernel 'config' wrapper 'doconfig' ala Di o [1997/04/27] bin/3399 mv of symbolic link can move directory in o [1997/04/29] bin/3416 ibcs emulation problems o [1997/04/29] bin/3418 pkg_create doesn't always create gzip'ed o [1997/05/01] ports/3455 jmz mtools-3.6.tgz could have a better mtools o [1997/05/02] kern/3475 gdb(ptrace?) cause create/modify times on o [1997/05/05] i386/3504 [PATCH] New features (and manpage) for ne o [1997/05/05] bin/3506 [PATCH] more did not show iso-8859-n char o [1997/05/05] bin/3508 FreeBSD 2.2.1 do not view SCSI disk at sw o [1997/05/06] docs/3522 Man pages close(2) misses fcntl lock info o [1997/05/08] kern/3546 ktrace works even if no read permission o [1997/05/08] gnu/3552 the -L option of tar does not work proper o [1997/05/09] bin/3556 Bug with -i option in /usr/bin/lpr o [1997/05/09] bin/3558 make reinstall collapses on install-info s [1997/05/09] kern/3571 Mounted ext2 prevents umount of filesyste o [1997/05/11] conf/3577 eBones and OBJLINK=yes fails to build o [1997/05/12] kern/3584 cleanup TCP_REASS macro in tcp_input.c o [1997/05/13] conf/3590 doc FAQ gives bad reccomendation re: xdm o [1997/05/16] bin/3608 Telnet in linemode will break apart long o [1997/05/17] kern/3611 Internal CPU cache on CyrixiInstead DX2 d o [1997/05/18] gnu/3616 permissions of /usr/libexec/uucp/uuxqt no o [1997/05/20] bin/3638 /bin/w can't handle long /dev/{tty,cua}xx o [1997/05/20] docs/3645 torstenb TCP_wrappers package doesn't mention wher s [1997/05/21] bin/3648 roberto [PATCH] find(1) extension for file flags o [1997/05/21] ports/3657 ports Port of NCSA HyperNews submitted as p5-hy s [1997/05/22] kern/3667 [PATCH] make vn LKM'able. s [1997/05/30] docs/3720 doc Addition for supported Hardware o [1997/05/31] ports/3729 scrappy pgsql dies when initiated o [1997/06/01] conf/3751 Improvements to /etc/rc{,.network,.pccard o [1997/06/02] bin/3762 dufault Bogus return values from rtprio(1) o [1997/06/04] bin/3778 ypbind -S domainname,server1,... does not o [1997/06/07] bin/3805 single process tftpd o [1997/06/09] bin/3826 KerberosIV sometimes hangs rcp o [1997/06/10] kern/3836 Cannot remove HUGE directory o [1997/06/10] bin/3837 dufault new feature for rtprio o [1997/06/12] kern/3853 netboot/ns8390.c breaks NS datasheet o [1997/06/13] bin/3859 Setting the $0 variable in perl dosnt do o [1997/06/14] bin/3866 rcs2log fails with eastern timezones o [1997/06/15] kern/3879 peter Can't export mounted ext2fs via NFS o [1997/06/16] conf/3886 peter install does not build sendmail host stat o [1997/06/17] ports/3892 itojun new port: www/webxref (cross-reference ge o [1997/06/18] kern/3901 Multicast for Intel 10/100 Ethernet Card o [1997/06/19] misc/3912 ctags(1) cannot trace some macro correctl o [1997/06/23] kern/3938 peter Problem about mmap() over NFS o [1997/06/24] kern/3944 if_le doesnt receive ether multicast pack o [1997/06/25] kern/3948 nonworking t/tcp server side a [1997/06/25] kern/3953 kern-config: options PANIC_REBOOT_WAIT_TI o [1997/06/26] bin/3957 Makefile dependency error in amd o [1997/06/26] ports/3958 obrien a2ps fails if used according to man o [1997/06/26] i386/3962 print disk internal cache size during pro o [1997/06/27] kern/3968 Hardware probes die on Peak SBCs. o [1997/06/29] ports/3983 fenner New port: psf toolkit o [1997/07/02] ports/4014 ports package/port installation obeys roots uma o [1997/07/07] kern/4051 pppd connect 'chat ...' broken s [1997/07/07] kern/4052 VJ compression drops packets with IP+TCP o [1997/07/08] misc/4063 2.2.2R Installation fails if Jaz drive sp o [1997/07/13] ports/4083 ache netscape wrapper doesn't hand off args co o [1997/07/18] bin/4116 davidn Kerberized login as .root fails to o [1997/07/19] bin/4120 Partition sysid prevents extended DOS par o [1997/07/20] ports/4127 ports netscape-3.01: get rid of bogus error mes o [1997/07/23] kern/4153 New tcp initial send sequence number code s [1997/07/23] bin/4154 wish /bin/sleep handled fractions of a se s [1997/07/24] bin/4157 [PATCH] netstat atalk output should print o [1997/07/24] bin/4163 ftp core dumps after hitting control-C s [1997/07/26] bin/4172 suggest reconnection option added to fetc s [1997/07/28] kern/4184 [PATCH] minor nits in sys/netatalk o [1997/07/31] conf/4201 jkh Installing only X-User does not install c s [1997/07/31] bin/4204 [PATCH] ac printed wrong report about tty o [1997/08/03] kern/4221 Kernel mode pppd doesen't update wtmp on o [1997/08/04] conf/4229 Ethernet interface unreachable on bootup o [1997/08/06] ports/4232 scrappy Boot-time start of postgressql postmaster o [1997/08/06] bin/4238 chpass only occasionally works in conjunc o [1997/08/07] kern/4243 file locking doesn't work for pipe o [1997/08/07] bin/4247 modification to /etc/security for FreeBSD o [1997/08/08] misc/4249 wpaul ypchsh doesn't care about changing a user a [1997/08/09] kern/4255 SMP kernel freezes on machines with >2 CP a [1997/08/09] kern/4257 itojun scsi RESERVATION CONFLICT support needed f [1997/08/10] ports/4264 ports mftp get a Segmentation fault o [1997/08/12] ports/4281 ports Compress pcl graphics files - this is an o [1997/08/12] misc/4285 SDL RISCom/N2 (ISA) a [1997/08/13] gnu/4290 ache man wrong viewed koi8-r manpages and neqn o [1997/08/13] kern/4297 dufault SIGEV_NONE and SIGEV_SIGNAL go in signal. o [1997/08/13] i386/4300 msmith The initial timeout on open("/dev/lpt0".. o [1997/08/14] ports/4304 ports Recommendation re. Ports Collection o [1997/08/22] ports/4356 erich sudo shouldn't block signals in tgetpass( o [1997/08/23] conf/4363 kernel build depend on make obj o [1997/08/26] ports/4391 ports New port: VPCE o [1997/08/26] misc/4395 if exists(secure) in /usr/src/Makefile is o [1997/08/28] ports/4412 ports New port: YaTeX (in print and japanese) o [1997/08/29] kern/4413 No way to unmount a floppy that goes bad o [1997/08/29] misc/4414 be.iso.kbd errors in mapping o [1997/08/29] bin/4419 man can display the same man page twice o [1997/08/29] bin/4420 find -exedir doesn't chdir for first entr o [1997/09/03] bin/4459 bde No prototype for moncontrol(3) and monsta o [1997/09/04] misc/4468 dlopen is not available from static execu o [1997/09/07] bin/4484 peter sendmail is barfing o [1997/09/13] kern/4528 processes hang if the mount_portal proces a [1997/09/14] i386/4538 sos byteswapped ATAPI id strings o [1997/09/14] bin/4545 f77 will only call `cc', no com-line opti f [1997/09/15] i386/4547 asc.c and pcaudio.c should use selrecord o [1997/09/16] bin/4553 man fails to open manpage if ./man exists o [1997/09/16] misc/4556 make can't build executable from single F o [1997/09/17] ports/4565 torstenb News port: ircII-current (ircII-2.9a8/col o [1997/09/18] conf/4572 /etc/rc.network loads ipfirewall lkm rega o [1997/09/21] kern/4597 Patch to pass NPX status word in signal c o [1997/09/21] kern/4601 Contrib: userconfig patch to edit SCSI co o [1997/09/25] bin/4629 calendar doesn't print all dates sometime o [1997/09/28] misc/4646 Can't fixit with an NFS-mounted CD. o [1997/09/29] conf/4654 Need to do post-ifconfig commands o [1997/10/02] kern/4680 lkm version of vn.c o [1997/10/03] kern/4685 Some SCSI retry messages formatted differ o [1997/10/04] bin/4688 peter sys/utsname.h SYS_NMLN 32 too small o [1997/10/05] bin/4695 pstat error o [1997/10/05] bin/4696 ping hangs on certain unresolvable hosts o [1997/10/05] bin/4697 make doesn't handle dependencies with for o [1997/10/12] gnu/4748 cc -Wformat too sensitive a [1997/10/15] ports/4770 ports New port: Xitami HTTP Server o [1997/10/15] gnu/4771 diff to correct misleading total bytes in a [1997/10/19] ports/4808 andreas Broken password.c in backend/libpq for Fr o [1997/10/22] bin/4828 ypxfr makes false assumption about RPC ca o [1997/10/23] docs/4833 Manual page missing for pccardc o [1997/10/23] kern/4837 bad error return from rmdir() with msdos a [1997/10/23] ports/4839 ports New port - spin - Verification system for o [1997/10/24] kern/4845 Boot complains about disk slices in FAT p o [1997/10/24] kern/4847 pccard stuff fails after running Win95 wi o [1997/10/25] kern/4856 netatalk cannot register own host o [1997/11/01] bin/4915 peter NFS mounts to linux machine can hang syst o [1997/11/02] bin/4923 vi leaves the screen in standout mode o [1997/11/03] ports/4928 asami no 'update' target in /usr/ports/Makefile s [1997/11/04] ports/4937 mph A looks-nice audio level meter port is no o [1997/11/07] ports/4967 ports I have ported Carl DeClerck's mserver-0.2 o [1997/11/07] bin/4969 cdcontrol plays incorrect audio tracks in o [1997/11/07] ports/4974 dburr New port: YODL, Yet Oneother Document Lan o [1997/11/08] bin/4975 quotaon while server very busy causes loc o [1997/11/08] ports/4980 dburr NEW PORT: netscape3-us (Netscape Nav with o [1997/11/09] ports/4985 dburr NEW PORT: www/htmlpp htmlpp-3.9, a WWW au o [1997/11/09] kern/4992 SCSI disk scheduling disabled in 2.2.5 o [1997/11/10] kern/4997 DDB_UNATTENDED doesn't always work o [1997/11/10] misc/4999 Entering '?' at first boot prompt in inst o [1997/11/11] kern/5009 ibcs2 emulation o [1997/11/11] kern/5011 rndcontrol -s 8 causes kernel panic o [1997/11/11] docs/5016 make -j4 fails in share/doc/usd/13.viref o [1997/11/13] bin/5031 lpr does not remove original file if -s i o [1997/11/13] ports/5034 ports (tcsh) blocked write on named pipe sticks o [1997/11/14] kern/5038 FreeBSD can't read MS Joliet CDs. o [1997/11/14] gnu/5039 libdialog fails to resore terminal o [1997/11/14] kern/5040 Support for "SCSI-0" devices o [1997/11/14] ports/5045 ports freebsd.ftp.markers for xearth is out of o [1997/11/14] bin/5047 ipfw(8) IP address resolving problem if o o [1997/11/14] kern/5048 Calling shutdown(fd,1) multiple times wil o [1997/11/15] bin/5052 peter upgrade BIND o [1997/11/15] kern/5059 peter mountd, nfsd, etc. fail when lp0 defined o [1997/11/15] kern/5060 ahasty Kernel doesn't compile with mss o [1997/11/15] misc/5064 A dos2bsd conversion utility in C. o [1997/11/17] docs/5070 doc new FAQ entries o [1997/11/17] bin/5072 /usr/bin/fetch parses a URL incorrectly o [1997/11/17] bin/5073 'host -t mx' coredumps o [1997/11/18] misc/5081 sysinstall glitches o [1997/11/18] misc/5082 Permit upgrade of multi-disk system, or d o [1997/11/20] kern/5108 pmap_release panics with 'freeing held pa o [1997/11/20] bin/5109 patch to ftpd, new option to limit number o [1997/11/20] kern/5110 kernel crash & core in pmap_testbit durin a [1997/11/23] ports/5131 ports New math port: SuperLU o [1997/11/23] bin/5134 cdcontrol will eject a mounted CDROM s [1997/11/25] misc/5147 [PATCH] a shell script to help -CURRENT u o [1997/11/26] misc/5153 jkh release file checksums in wrong file o [1997/11/26] ports/5158 ports thot editor port doesn't install template s [1997/11/28] bin/5173 [PATCH] restore ought to deal with root s s [1997/11/30] i386/5182 bde [PATCH] A patch support high speed serial o [1997/12/03] ports/5200 ports new port-package for pgpmoose o [1997/12/03] ports/5201 ports new port-package for fidogate o [1997/12/03] ports/5202 ports new port-package for pathalias o [1997/12/03] conf/5213 ahasty My SB AWE64 isn't being recognized. f [1997/12/05] kern/5231 Mounted MS-DOS floppy disk writes unrelia o [1997/12/06] misc/5239 jkh ata + atapi & /stand/sysinstall & dos o [1997/12/06] ports/5240 ports Incorrect path in pkfonts (fix) o [1997/12/07] ports/5245 ports new port, bugsx game s [1997/12/08] bin/5253 ache [PATCH] catgets(3) and catclose(3) don't o [1997/12/09] bin/5263 sh bug (with example) s [1997/12/11] kern/5274 gibbs [PATCH] mt comp 0/1 does not work, with f s [1997/12/11] kern/5275 [PATCH] Added volume (barcode) support to o [1997/12/14] conf/5292 master.passwd -- /nonexistent vs. /sbin/n a [1997/12/14] ports/5295 ports New Math port: umfpack s [1997/12/14] bin/5296 slattach fails creating pidfile with ioct f [1997/12/15] ports/5302 ache webcopy port doesnt work? o [1997/12/15] ports/5309 ports New port: sls-1.00 [category misc] o [1997/12/15] ports/5312 ports New math port xwpl a [1997/12/19] docs/5346 doc Discrepancy between dump(8) man page and o [1997/12/22] kern/5362 peter mount incorrectly reports / as an NFS exp o [1997/12/28] ports/5393 ports DOOMSRC port & package o [1997/12/30] ports/5397 ports upload of new port (fly) f [1997/12/30] i386/5398 silo overflows running o [1997/12/30] docs/5399 doc Missing detail of - or -- flags to sh(1) o [1998/01/02] bin/5410 pkg_info options s [1998/01/03] bin/5419 [PATCH] timed rejects valid networks with o [1998/01/08] kern/5429 Ethernet collision during file transfers s [1998/01/08] kern/5435 [PATCH] if_fe.c for old Gateway Communica s [1998/01/08] bin/5444 [PATCH] ypserv uses wrong dns lookup orde o [1998/01/08] ports/5446 se KDE port does not install using make in / s [1998/01/08] bin/5451 roberto [PATCH] halt/reboot does not execute /etc o [1998/01/08] ports/5463 ports No spell check in pico editor because /us o [1998/01/09] ports/5472 erich xmmix-1.2 prot won't compile - "SOUND_VER o [1998/01/10] ports/5475 ports abacus sentry o [1998/01/11] bin/5483 Login(1) clears utmp entry s [1998/01/15] docs/5487 doc Adding documentation for scsi(8) usage wi o [1998/01/15] kern/5502 nfsd process usage doesn't get accounted o [1998/01/15] ports/5504 ports New port sidplay (category audio) o [1998/01/15] kern/5508 SCSI Message sd0: COMMAND FAILED (4 28) @ o [1998/01/15] ports/5509 ports submit new port xruskb-1.5.1 s [1998/01/16] kern/5510 sos [PATCH] Incomplete ATAPI diagnostic at bo o [1998/01/18] kern/5517 Recursive NULLFS mount causes ufs_ihashge o [1998/01/19] misc/5525 bde gid and uid in struct pwd are ints, when s [1998/01/20] misc/5531 [SUBMISSION] new library function abs2rel s [1998/01/20] kern/5532 [PATCH] Dropped packet counts are inaccur o [1998/01/21] bin/5537 vi dumps core with dodgy exrc file o [1998/01/21] misc/5539 ftp problems with ftp.freebsd.org ? "Tran o [1998/01/21] bin/5541 ppp -alias (2.2.5-STABLE) has troubles wi o [1998/01/22] docs/5545 doc http://www.freebsd.org/handbook/handbook3 o [1998/01/22] bin/5549 Kernel Problem o [1998/01/24] i386/5559 PC-Card joystick ports were not supported o [1998/01/25] bin/5567 trying to mount a joliet filesystem cdrom o [1998/01/26] bin/5569 Problems with 'moused'. o [1998/01/26] ports/5570 ports new port, rise 0.3.3 o [1998/01/26] kern/5577 bde Unnecessary disk I/O and noatime ffs fixe a [1998/01/28] bin/5591 Trouble with LD_PRELOAD environment varia o [1998/01/28] bin/5596 killall's diagnostics bogus o [1998/01/30] ports/5607 ports NEW PORT: timidity-luigi [category audio] o [1998/01/30] ports/5608 jfitz Ports change-request: Afterstep I18N o [1998/01/31] bin/5609 lpd cannot send long files to HP's JetDir o [1998/02/02] ports/5626 ports 'ldap' port eats all available CPU time o [1998/02/02] kern/5627 Tertiary/Quaternary IDE Ctlrs: A few kern o [1998/02/03] ports/5633 ports Submission of new port in 'lang' category a [1998/02/03] ports/5638 ports mail/bulk_mailer port update o [1998/02/04] bin/5650 fetch(1) manpage out of date WRT FTP URLs o [1998/02/04] bin/5651 fenner fetch(1) doesn't CD properly on FTPs o [1998/02/04] ports/5653 ports New port of ICI language o [1998/02/05] misc/5659 2.2.5 Install doesn't copy kernel a [1998/02/05] ports/5660 ports New port type1inst o [1998/02/05] misc/5662 sysinstall generates short dev names for o [1998/02/06] bin/5666 ifconfig fails to add alias a [1998/02/06] ports/5667 ports I have ported the VICE 0.13.0 Commodore e o [1998/02/06] kern/5672 Crash from scsi aborted command 'Overlapp o [1998/02/07] ports/5675 ports New port in category devel: DOC++ o [1998/02/07] docs/5676 commenting in ftphosts is not documented o [1998/02/09] kern/5689 sysctl vm.vmmeter - bogus and unsupported o [1998/02/10] ports/5706 ports New port: ja-dvi2dvi-1.0 (japanese/dvi2dv o [1998/02/10] bin/5711 bin/cat code cleanup o [1998/02/10] bin/5712 /bin/chio code cleaup and option added o [1998/02/10] bin/5717 pw -D -g "" returns error o [1998/02/10] bin/5718 pkg_delete refuses to run as non-root o [1998/02/11] bin/5721 "more" coredumps when sent two signals o [1998/02/14] bin/5745 [PATCH] Add /usr/local/share/mk to defaul o [1998/02/14] bin/5746 bootparamd will not netboot sun 3 compute o [1998/02/14] bin/5747 ld.so error message o [1998/02/15] bin/5758 sys/resources.h doesn't include sys/time. o [1998/02/17] kern/5768 Shutdown aborts syncing, when sync isn't o [1998/02/17] ports/5771 ports New port: Stuttgart Neural Network Simula s [1998/02/17] misc/5772 peter nfsstat does not work o [1998/02/17] ports/5776 ports New compression port: lzo o [1998/02/18] i386/5779 BOUNCE_BUFFERS option in LINT needs modif o [1998/02/18] i386/5784 ibcs2 emulation not handling ioctl(..FION a [1998/02/18] misc/5786 definition of speed_t in termios.h is not o [1998/02/19] ports/5788 ports pcemu harddisk-access fixes o [1998/02/19] kern/5789 wcd0 requires ATAPI_STATIC o [1998/02/19] kern/5795 Panic: "bremfree: removing a buffer when o [1998/02/20] kern/5800 incorporate -current pppd driver into -st o [1998/02/20] misc/5803 "tab" function from "ee" not compatible w o [1998/02/21] ports/5811 ports netatalk ioctl(SIOCADDMULTI) failure o [1998/02/21] misc/5813 strsignal() missing a [1998/02/22] ports/5814 ports New package XShodou o [1998/02/22] ports/5821 ports Port of Swish-E, a Web site indexer o [1998/02/25] gnu/5841 installmost or install (world) of tmac fa o [1998/02/25] bin/5847 Makeworld fails if CXXFLAGS is set. o [1998/02/25] docs/5848 [PATCH] Update web.mk to handle SGML file o [1998/02/25] docs/5851 Mention /etc/hosts.lpd et. al. in Handboo o [1998/02/25] misc/5855 /etc/services is out of date with IANA o [1998/02/26] bin/5857 non-functional lpr/lpr o [1998/02/26] ports/5859 ports xxgdb port doesn't recognize the -k optio o [1998/02/26] kern/5863 Kernel support for sorted SHUTDOWN & SHUT o [1998/02/27] ports/5868 jfitz MSQL isn't PREFIX clean and PLIST wrong o [1998/03/01] bin/5880 df -t does not support devfs o [1998/03/01] ports/5884 ports New port: icqjava-0.981a (net/icqjava) o [1998/03/01] ports/5885 ports New port: dc20ctrl-0.4 (graphics/dc20ctrl o [1998/03/02] bin/5901 new version of `fmt' o [1998/03/03] bin/5912 kinit exits if no user name specified o [1998/03/04] ports/5920 andreas lyx's ``configure'' disables the use of m o [1998/03/06] kern/5931 dma errors in syslog with GUS-max o [1998/03/06] i386/5932 perfmon kernel code should check for non- o [1998/03/07] conf/5936 Add hostname to C shell prompt o [1998/03/08] bin/5944 cvs doesn't work correct. o [1998/03/08] ports/5946 ports New port biology/molmol o [1998/03/10] kern/5964 peter nfsd send interface selection seems broke o [1998/03/10] bin/5966 vi's spanish message catalog does not use o [1998/03/10] kern/5967 upg from 2.1.7.1/2.2.1 to 2.2.5-stable (a o [1998/03/10] ports/5972 ports x11/fvwm95 requiring gsm, and rplay is a o [1998/03/11] gnu/5982 no error exit code from tar on child fail o [1998/03/12] gnu/5992 cvs y2k o [1998/03/13] bin/5996 more(1) '-#' broken (obsolete) and h)elp o [1998/03/13] bin/6000 kadmin ank uses bad default expiration of o [1998/03/14] docs/6003 Two problems in atc(6) man page o [1998/03/15] bin/6015 indent(1) breaks source with backslash ne o [1998/03/15] ports/6017 ports new port: yacl o [1998/03/15] ports/6018 ports new port: ml-3.3 a [1998/03/15] ports/6020 ports new port: Xfstt-0.9.7 o [1998/03/15] ports/6027 max New Port: tgif2tex o [1998/03/15] ports/6029 kuriyama New Ports: jvim+onew o [1998/03/16] kern/6032 poor TCP performance using FDDI over long o [1998/03/16] docs/6036 doc New handbook section 10.4.3.4 - si driver o [1998/03/16] bin/6037 inconsistency between kbdcontrol(1) and s s [1998/03/18] ports/6053 kuriyama new port request: korean/hanIM o [1998/03/18] kern/6056 de driver support for DS 21143 incomplete o [1998/03/18] ports/6057 ports xperfmon++-1.40 package fails XtRealloc() o [1998/03/18] misc/6060 peter Sendmail executable, not doing MASQUERADE o [1998/03/18] bin/6064 Script to update files installed by /usr/ o [1998/03/19] i386/6067 boot.help pushes kernel list off screen o [1998/03/20] ports/6078 ports Documentation concerning logging suggests o [1998/03/21] ports/6085 ports New port: pavuk-0.8 o [1998/03/22] conf/6096 /sys/i386/conf/LINT: edit(???) sound_conf o [1998/03/22] i386/6098 FreeBSD only uses 16M of 48M on Compaq De o [1998/03/22] gnu/6107 gdb should support PRINTF_HAS_LONG_LONG o [1998/03/23] ports/6113 ports new port: rinfo-1.2 o [1998/03/23] i386/6115 msdosfs incorrect compute cluster or root o [1998/03/23] ports/6120 ports New port: xtetris-2.6 o [1998/03/25] gnu/6130 "dialog" command cuts off chars from menu f [1998/03/26] bin/6140 des Add '-H' and '-P' options to ls(1), fix m o [1998/03/27] bin/6144 telnet for 8-bit data path o [1998/03/27] ports/6151 ports New port: xrus-1.5.2 o [1998/03/28] ports/6153 ports New port: flick o [1998/03/28] ports/6155 ports new port: emulators/vice, Versatile Commo o [1998/03/28] bin/6156 Patches to make dump understand ENOSPC o [1998/03/28] bin/6161 2.2.6 kerberos servers are awfully visibl o [1998/03/29] ports/6170 ports another squid ports o [1998/03/29] ports/6171 ports New port: xtron-1.1a o [1998/03/29] misc/6172 markm Why is /ftp.freebsd.org/pub/FreeBSD/CTM/p o [1998/03/30] ports/6176 ports running architextSearch (excite) under li o [1998/03/30] ports/6181 ports New port: xoj-1.0 o [1998/03/31] bin/6183 quota hangups o [1998/03/31] kern/6184 No error if resulting file pos in lseek i o [1998/04/01] bin/6187 peter mounting nfs directories with -b can caus o [1998/04/01] bin/6188 screensaver permanently active when no bo o [1998/04/01] kern/6192 kernel patches for netatalk break FDDI su o [1998/04/01] ports/6194 ports New port: mirrormagic-1.3 o [1998/04/02] bin/6198 demangling C++ names breaks the Cygnus -f o [1998/04/03] bin/6200 flex can be upgraded o [1998/04/03] bin/6202 No way to detect removable media. o [1998/04/03] bin/6206 Enhancements to the shutdown program o [1998/04/03] ports/6207 ports new port request: korean/ftghostscript5 o [1998/04/04] kern/6213 peter NFS-mounted swap (via vnconfig) easily cr o [1998/04/04] bin/6214 ping sometimes cannot be killed with a Co o [1998/04/05] conf/6220 Too few ttyv devices in the -RELEASE syst s [1998/04/06] bin/6223 PST/DST bug in /bin/date o [1998/04/06] bin/6227 as doesn't handle this instruction o [1998/04/06] bin/6228 Syslogd not working according to manpage o [1998/04/06] ports/6230 ports gfont_mkgdf calls wrong interpreter o [1998/04/06] bin/6234 ypserv -d is broken o [1998/04/07] ports/6235 ports New port: scwm-icon o [1998/04/07] ports/6236 ports New port: scwm o [1998/04/07] kern/6247 Gravis UltraSound Classic no longer works o [1998/04/09] kern/6255 SI driver fix for Jet ISA memory size o [1998/04/09] kern/6256 SI driver - new T225 download code o [1998/04/10] ports/6262 ports New port of bulk_mailer 1.9 o [1998/04/10] i386/6269 Included is a patch to support AMD Write- o [1998/04/10] i386/6270 options.i386 update for AMD write-allocat o [1998/04/10] misc/6271 jkh Install program can no longer write out p o [1998/04/14] docs/6295 doc Reference to nonexistent file in Device D o [1998/04/14] kern/6296 IP_HDRINCL sockets force header fields to a [1998/04/14] kern/6299 vmstat -i does not show PnP device interr o [1998/04/15] ports/6305 ports New ports collection: ja-libslang o [1998/04/15] ports/6306 ports New ports collection: ja-slrn o [1998/04/15] docs/6307 doc sgmlfmt not `make -jN' ready s [1998/04/15] bin/6308 [PATCH] date(1) -v argument cannot vary s o [1998/04/15] ports/6311 ports New port: gsfonts o [1998/04/15] ports/6312 ports New port: ghostscript-3.33 s [1998/04/15] bin/6314 [PATCH] /usr/sbin/ac modification s [1998/04/16] ports/6315 kuriyama new port request: korean/htm o [1998/04/16] kern/6318 pppd does not update wtmp on hangup o [1998/04/16] misc/6320 Sometimes nohup isn't good enough. a [1998/04/16] ports/6321 ports can't run any version of PostgreSQL on 2. o [1998/04/17] ports/6331 ports New port: libshhopt-1.1.3 o [1998/04/17] bin/6332 bde /usr/include/time.h doesn't compile with o [1998/04/17] conf/6334 -DALLLANG should be moved from src/Makefi o [1998/04/17] gnu/6338 Gnu tar not working properly with the -G o [1998/04/18] conf/6346 Kernel version strings need to relate to a [1998/04/19] ports/6355 ports New port o [1998/04/20] bin/6359 routed does sent router discovry solicita o [1998/04/20] ports/6361 ports New ports collection: GNU Pascal Compiler s [1998/04/20] bin/6371 [PATCH?] fetch(1) uses HTTP_PROXY for ftp o [1998/04/21] conf/6376 jkh can't reset /stand/sysinstall into initia o [1998/04/23] ports/6393 ports patch for multimedia-2.1.tar.gz f [1998/04/23] bin/6399 [PATCH] When using "-u" mount doesn't sta o [1998/04/23] bin/6401 user error while mounting causes panic o [1998/04/23] kern/6402 another machine can change my own permane a [1998/04/25] ports/6413 jseger new ports for lynx2.8rel.3 (modified for a [1998/04/25] ports/6414 ports new ports for ja-color-lynx2.8rel.3 (modi a [1998/04/25] ports/6415 ports new ports for ja-lynx2.8.1dev.7 (modified a [1998/04/25] ports/6416 ports new ports for ja-color-lynx2.8.1dev.7 (mo a [1998/04/25] ports/6417 ports new ports for ja-libslang-1.0.3 (modified a [1998/04/27] kern/6432 IFF_NOARP does not affect ethernet interf o [1998/04/28] ports/6434 se [PATCH] mediatool in x11/kdelibs cause kw o [1998/04/28] ports/6445 ports New port for `fhist' o [1998/04/29] docs/6455 doc bootptab.5 uses both man macros and mdoc o [1998/04/30] kern/6464 tcpdump doesn't recognize tun0 when it's o [1998/05/01] ports/6473 ports New port: libshhmsg-1.3.3 o [1998/05/01] ports/6474 ports New port: libxalloc-1.0.2 o [1998/05/03] kern/6495 Need pci_unmap_mem and pci_unmap_port rou o [1998/05/03] ports/6504 ports New port of `C Interfaces and Implementat o [1998/05/03] kern/6505 panic: cannot mount root on sd1 o [1998/05/04] docs/6508 doc sgmlfmt does not expand relative URLs s [1998/05/04] bin/6509 [ALMOST PATCH] Allow dd to seek/skip to o o [1998/05/04] docs/6510 steve GNATS doesn't expand freebsd-doc s [1998/05/05] bin/6521 [MAYBE PATCH] "rmdir -p x/y/z/" fails s [1998/05/05] bin/6529 [ALMOST PATCH] potential timing problem w o [1998/05/06] misc/6537 jkh New improved motd, take 2 o [1998/05/07] ports/6541 ports New port: math/dc o [1998/05/07] kern/6544 ahasty Only get one channel through sound card o [1998/05/07] ports/6546 ache 3line ansi prompt in tcsh: cursor disappe o [1998/05/09] conf/6559 jkh Upgrade processing clobber's ~root/{.cshr o [1998/05/09] i386/6560 yokota Console does not reset to primary screen o [1998/05/09] ports/6563 se minor problems with KDE ports o [1998/05/09] docs/6564 doc need more references in fetch(1) o [1998/05/09] ports/6565 ports new port o [1998/05/10] ports/6570 ports port of java CUP parser o [1998/05/11] i386/6595 Old IP address persistent after change o [1998/05/11] ports/6598 ports new port for FreeBSD - asmodem o [1998/05/12] ports/6604 ports New port: web500gw, an HTTP - LDAP gatewa o [1998/05/12] ports/6606 ports package add of perl-5.00404 fails w/3.0 S o [1998/05/12] misc/6612 bsd.man.mk can't handle man pages with ": o [1998/05/12] ports/6613 ports ports/lang/perl5 fails to install by addi o [1998/05/13] ports/6622 ports IIJ-PPP current version o [1998/05/13] kern/6623 non-root user can crash system if disconn o [1998/05/13] conf/6624 davidn One class with nologin=/etc/nologin: reje o [1998/05/15] ports/6645 ports Updated port: mysql s [1998/05/15] docs/6647 doc ftpd: man page at variance with code (e.g o [1998/05/15] kern/6651 peter Possible NFS deadlock clue f [1998/05/16] bin/6653 The rc script sometimes produces errors w o [1998/05/16] ports/6657 ports new port for perl/Tk 800.004 s [1998/05/16] bin/6658 [PATCH] -stable getcwd(3) performs unnece o [1998/05/17] ports/6666 ports Update port: ja-netscape-4.05 s [1998/05/17] kern/6668 [PATCH] new driver: Virtual Ethernet driv s [1998/05/18] bin/6676 [PATCH] natd doesn't respond to signals w o [1998/05/18] docs/6681 doc docu. addition o [1998/05/19] ports/6687 ports New port, ktelnet v0.6 o [1998/05/19] ports/6688 ports New port: kbiff v0.6 o [1998/05/19] ports/6699 ports Generic NQS port (new) o [1998/05/20] kern/6702 luigi tsleep and new snd (pcm0) o [1998/05/20] ports/6704 ports New port: gtk-- o [1998/05/21] ports/6709 ports New port kmessage s [1998/05/21] conf/6711 [PATCH ?] I've seen that fortune before o [1998/05/23] ports/6728 ports New port ktranslator o [1998/05/24] ports/6743 ports diff to upgrade tkrat to tkrat1.1 o [1998/05/24] docs/6745 doc man page for ftpd o [1998/05/25] misc/6752 jkh sysinstall w/o cd9660 fs loaded can't mou s [1998/05/25] kern/6758 mount_portal fails because kernal refuses a [1998/05/26] misc/6759 phk buggy code in libdisk.a's disk.c o [1998/05/26] kern/6760 can't compile kernel w/o networking s [1998/05/26] docs/6764 doc limits references to sysctl o [1998/05/26] kern/6769 peter panic: nfs rcvunlock o [1998/05/28] ports/6776 ports New port - xqf o [1998/05/28] ports/6777 ports New port - qstat s [1998/05/29] kern/6781 [PATCH] exabyte changer doesn't grok LUNs s [1998/05/29] bin/6785 place for all the default dump flags s [1998/05/29] bin/6787 race condition in pw command a [1998/05/29] ports/6791 ports New Port, TinyMUX s [1998/05/29] i386/6792 eivind [PATCH][STABLE]Backported PnP support for o [1998/05/29] bin/6795 steve send-pr does not parse problem reports co o [1998/05/31] ports/6806 ports /usr/ports/graphics/killustrator doesn't f [1998/05/31] ports/6813 fenner patched audio module for vat port o [1998/06/01] ports/6815 ports ssh lookup ignores second IP address s [1998/06/01] kern/6819 [PATCH] pci_unmap_int (pci/pci.c) does no o [1998/06/01] kern/6820 cd9660_mount NULL pointer deref for no CD s [1998/06/02] bin/6832 [PATCH] Allows PINGing from any address o o [1998/06/02] ports/6838 ports Enable lj4dith driver by default s [1998/06/02] kern/6843 sos [PATCH] to enable reading digital audio s o [1998/06/04] ports/6862 ports Cyrus upgraded to 1.5.10 o [1998/06/06] kern/6874 accounting prevents transition to multi u o [1998/06/06] ports/6882 ports Perl5 in 3.0-980518-SNAP o [1998/06/08] ports/6895 ports Status of lsof in 3.0-980518-SNAP o [1998/06/11] ports/6915 ports Apache-FP for apache v1.3.0 o [1998/06/11] ports/6917 hoek New port: qmail MTA o [1998/06/11] bin/6919 can not run multiple instances of /sbin/r o [1998/06/12] ports/6934 dburr New port of ucspi-tcp 0.80 o [1998/06/13] misc/6936 sysinstall: install from MS-DOS MO divece o [1998/06/13] bin/6937 [PATCH] rc.firewall can't be run from net o [1998/06/13] ports/6938 dburr Addition of V GUI to ports collection o [1998/06/13] bin/6939 restore does not set the correct uid on d o [1998/06/13] ports/6942 ports New port, mrouted-beta o [1998/06/14] ports/6943 ports new ports submitted o [1998/06/15] ports/6954 vanilla New port: CJK f [1998/06/15] ports/6961 stb netatalk needs tweek for 3.0 multicasting o [1998/06/15] bin/6963 msgs -p can give misleading errors o [1998/06/16] gnu/6965 grep -a dosn't work o [1998/06/16] ports/6970 ports mule and family build faulure o [1998/06/16] ports/6971 imp Socks5 ports old o [1998/06/17] ports/6978 ports New port: extension fonts for enscript o [1998/06/18] kern/6981 CD unmount w/o CD in drive can cause pani o [1998/06/18] ports/6985 dburr New port: battalion-1.4 o [1998/06/18] ports/6987 dima make package for ssh-1.2.25 now fails. s [1998/06/19] bin/6995 [patch] Minor flaw in fdformat s [1998/06/19] bin/6997 [patch] vnconfig "open" error message con o [1998/06/19] conf/6999 Mismatch in rc.conf "accounting" keyword o [1998/06/19] ports/7001 ports new port de/webalizer o [1998/06/20] ports/7004 ports sysutils/cdrecord depends on mkisofs, is a [1998/06/20] ports/7005 ports Submitting RealAudio Player 3.0 as a new o [1998/06/20] ports/7006 itojun hylafax port improved s [1998/06/21] bin/7011 [patch] Improvements to ls to help Emacs o [1998/06/21] ports/7013 ports SANE v0.73 cannot be pkg_deleted due to i s [1998/06/21] kern/7014 [PATCH][STABLE] Add support for SiS 5591 o [1998/06/21] ports/7018 ports New port: xmball-5.4.4 o [1998/06/22] bin/7020 jkh pkg_*'s error handling is broken o [1998/06/22] bin/7021 asami Size estimation patches to pkg_* o [1998/06/22] bin/7022 asami changes to bsd.port.mk to accompany PR bi o [1998/06/22] bin/7023 asami bsd.port.(%|subdir.).mk patches for size o [1998/06/23] kern/7029 gibbs cdrecord and aic7880 troubles o [1998/06/23] ports/7030 ports New port: bogged-1.0.0 f [1998/06/23] i386/7031 Our RocketPort port does not support DEVF o [1998/06/23] ports/7032 dburr new port : mkhybrid 1.12 o [1998/06/24] misc/7039 jb sigwait doesn't init the return value. s [1998/06/24] kern/7044 [PATCH] WaveLAN (2.4G, ISA, full-length b o [1998/06/24] ports/7045 ports Fixed port: guavac s [1998/06/24] i386/7052 amd_map_program and NIS problem s [1998/06/24] bin/7055 steve [mfc] multiple syslog-forwarding will for o [1998/06/24] ports/7062 ports pidentd partialy broken in current s [1998/06/24] bin/7063 mount fails if $PWD does not exist o [1998/06/25] docs/7065 webmasterFreeBSD webpages -> applications, port br s [1998/06/25] bin/7068 /usr/bin/perl: library path addition o [1998/06/25] ports/7071 ports jove 4.16: Clicking button 1 causes xterm o [1998/06/25] ports/7074 ports [New Ports] Xtt0.6 a TrueType X servers o [1998/06/26] ports/7076 ports New port: xmlink-5.4.4 o [1998/06/26] ports/7077 ports The default archie host "archie.sura.net" s [1998/06/26] bin/7081 [patch] lpr stuff doesn't deal with RM an s [1998/06/26] kern/7085 [patch] maybe_resched() priority check co o [1998/06/27] ports/7086 ports Port: ja-p5-jcode.pl o [1998/06/28] ports/7094 ports New port of xbomber game s [1998/06/28] kern/7095 [stable] Gravis MAX in 2.2.6 suffers from o [1998/06/28] ports/7096 ports update port: ja-vfxdvik-20c (dvi viewer f o [1998/06/28] ports/7097 ports New port: bb-1.2 o [1998/06/28] ports/7099 ports GNU readline support for SPICE port. s [1998/06/28] i386/7100 integrate pcvt configuration into the /et s [1998/06/28] bin/7101 /sbin/ipfw unexpected variant treatment o o [1998/06/28] ports/7106 ports New port: xwpick-2.20 o [1998/06/29] ports/7110 ache "popper" reports a negative 'bytes left o s [1998/06/29] bin/7117 flex -I option is broken o [1998/06/29] ports/7120 ports New port: biology/hmmer o [1998/06/29] ports/7121 ports new port: txt2html-1.25 (take two) o [1998/06/30] ports/7128 ports New port: Raster3D-2.4f o [1998/06/30] ports/7130 ports Japanese translation of perl5 manual o [1998/06/30] ports/7133 markm upgrade SSLeay to 0.9.0b s [1998/06/30] gnu/7135 [PATCH] It's not easy to build a cvs bina s [1998/07/01] bin/7136 kerberized telnetd doesn't use gettytab % o [1998/07/01] ports/7139 ports Adding a new port to the collection. o [1998/07/01] ports/7140 ports new port: htdig o [1998/07/01] ports/7143 ports New port: pp-0.01 s [1998/07/02] kern/7144 WaveLAN interface moves packets to uper l o [1998/07/02] ports/7145 hoek new qmail port (including all necessary f s [1998/07/02] kern/7146 The PCCARD doesnt recognize cards in top o [1998/07/02] ports/7149 ports New port: xdigger-1.0.6 o [1998/07/02] ports/7150 ports `elftoaout': new port o [1998/07/03] ports/7153 jseger New version of xscreensaver o [1998/07/04] ports/7158 ports New port: spellcast-1.1 o [1998/07/04] i386/7159 Unknown option OVERRIDE_CARD (bt848 drive o [1998/07/04] ports/7160 ports xsysinfo does not report interrupt state o [1998/07/04] ports/7163 ports new port: p5-Set-IntSpan o [1998/07/04] ports/7164 ports new port: p5-News-Newsrc o [1998/07/05] docs/7172 doc Explain confusing mount behavior in man p o [1998/07/05] kern/7176 Cannot access fd0 o [1998/07/05] kern/7177 Support for "Video Highway Xtreme" tv-tun o [1998/07/05] ports/7179 ports Update port: games/xlines o [1998/07/05] docs/7180 doc msync(2) man page off by one error? o [1998/07/06] ports/7183 ports New port: GYVE - GNU Yellow Vector Editor o [1998/07/06] bin/7184 /usr/games/robots fails to write high sco o [1998/07/06] ports/7186 ports New port: coolmail (xbiff clone) o [1998/07/06] misc/7187 The files in /pub/FreeBSD/incoming are ma 728 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 Jul 6 11:45:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA28032 for freebsd-bugs-outgoing; Mon, 6 Jul 1998 11:45:20 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA27737; Mon, 6 Jul 1998 11:41:46 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) From: "Justin T. Gibbs" Received: (from gibbs@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA22301; Mon, 6 Jul 1998 11:41:38 -0700 (PDT) Date: Mon, 6 Jul 1998 11:41:38 -0700 (PDT) Message-Id: <199807061841.LAA22301@freefall.freebsd.org> To: jose@we.lc.ehu.es, gibbs@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG, gibbs@FreeBSD.ORG Subject: Re: kern/6966 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: AHC driver fails to read SEEPROM on Iwill PIILS mb (AIC7880 embedded) State-Changed-From-To: open-closed State-Changed-By: gibbs State-Changed-When: Mon Jul 6 11:40:58 PDT 1998 State-Changed-Why: Fixed in rev 1.41.2.9 of sys/pci/aic7870.c Responsible-Changed-From-To: freebsd-bugs->gibbs Responsible-Changed-By: gibbs Responsible-Changed-When: Mon Jul 6 11:40:58 PDT 1998 Responsible-Changed-Why: My driver. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 6 13:10:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA10431 for freebsd-bugs-outgoing; Mon, 6 Jul 1998 13:10:46 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA10318 for ; Mon, 6 Jul 1998 13:10:12 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA25660; Mon, 6 Jul 1998 13:10:01 -0700 (PDT) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA10173; Mon, 6 Jul 1998 13:09:22 -0700 (PDT) (envelope-from nobody) Message-Id: <199807062009.NAA10173@hub.freebsd.org> Date: Mon, 6 Jul 1998 13:09:22 -0700 (PDT) From: dancy@franz.com To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: bin/7189: ld doesn't look for libxxx.so Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7189 >Category: bin >Synopsis: ld doesn't look for libxxx.so >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 Jul 6 13:10:00 PDT 1998 >Last-Modified: >Originator: Ahmon Dancy >Organization: Franz Inc. >Release: 3.0-980222-SNAP >Environment: FreeBSD pig.franz.com 3.0-980222-SNAP FreeBSD 3.0-980222-SNAP #4: Tue May 12 16:24:24 PDT 1998 root@pig.franz.com:/usr/src/sys/compile/PIG i386 >Description: I have a complaint from one of our developers about the way 'ld' looks for shared libraries. Currently it looks for libXXX.so.M.n. We think it should also accept libXXXX.so (Without version numbers). >How-To-Repeat: >Fix: Modification of /usr/src/gnu/usr.bin/ld/shlib.c >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 Jul 6 13:30:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA13271 for freebsd-bugs-outgoing; Mon, 6 Jul 1998 13:30:19 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA13178; Mon, 6 Jul 1998 13:30:08 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA26533; Mon, 6 Jul 1998 13:30:00 -0700 (PDT) Date: Mon, 6 Jul 1998 13:30:00 -0700 (PDT) Message-Id: <199807062030.NAA26533@freefall.freebsd.org> To: chris@bb.cc.wa.us, jkh@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: misc/7187 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: The files in /pub/FreeBSD/incoming are marked read only. State-Changed-From-To: open-closed State-Changed-By: jkh State-Changed-When: Mon Jul 6 13:29:42 PDT 1998 State-Changed-Why: This is not a bug - it's what's now necessary to defeat warez traders To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 6 14:30:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA22442 for freebsd-bugs-outgoing; Mon, 6 Jul 1998 14:30:20 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA22370 for ; Mon, 6 Jul 1998 14:30:12 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA28368; Mon, 6 Jul 1998 14:30:01 -0700 (PDT) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA22304; Mon, 6 Jul 1998 14:30:02 -0700 (PDT) (envelope-from nobody) Message-Id: <199807062130.OAA22304@hub.freebsd.org> Date: Mon, 6 Jul 1998 14:30:02 -0700 (PDT) From: nludban@salientsystems.com To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: misc/7190: "Invalid partition table" after new install with multiple BSD slices Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7190 >Category: misc >Synopsis: "Invalid partition table" after new install with multiple BSD slices >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 Jul 6 14:30:00 PDT 1998 >Last-Modified: >Originator: Neil Ludban >Organization: Salient Systems >Release: 2.2.6-RELEASE >Environment: New install off 2.2.6-RELEASE CD (no uname output since it's now running a custom kernel) >Description: Did a custom install and split a 2G scsi disk into (2) 1G slices to get around the 8 partitions/slice limit. sysinstall marked both slices active, and the standard boot loader halted with "Invalid partion table" error. Was able to boot the system using a floppy. >How-To-Repeat: >Fix: Booted with a floppy, then used fdisk -a to set partition 1 active, and it also set partion 2 inactive. System now boots without any problems. >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 Jul 6 14:40:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA24260 for freebsd-bugs-outgoing; Mon, 6 Jul 1998 14:40:16 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA24199 for ; Mon, 6 Jul 1998 14:40:10 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA28632; Mon, 6 Jul 1998 14:40:01 -0700 (PDT) Received: from denali.lart.net (denali.lart.net [205.240.209.210]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA23921 for ; Mon, 6 Jul 1998 14:38:10 -0700 (PDT) (envelope-from sthomas@denali.lart.net) Received: (from sthomas@localhost) by denali.lart.net (8.8.8/8.8.8) id VAA00378; Mon, 6 Jul 1998 21:37:35 GMT (envelope-from sthomas) Message-Id: <199807062137.VAA00378@denali.lart.net> Date: Mon, 6 Jul 1998 21:37:35 GMT From: sthomas@lart.net Reply-To: sthomas@lart.net To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited when not routing Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7191 >Category: kern >Synopsis: ICMP source-route prohibited received from non-router >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 Jul 6 14:40:00 PDT 1998 >Last-Modified: >Originator: Sam Thomas >Organization: Netowrk Operations, Verio Inc. >Release: FreeBSD 2.2.6-RELEASE (PAO) i386 >Environment: Jul 1 04:03:09 rainier /kernel: attempted source route from 205.240.209.213 to +198.32.136.64 Jul 5 14:06:41 rainier /kernel: attempted source route from 205.240.209.210 to +205.238.48.1 USER PID %CPU %MEM VSZ RSS TT STAT STARTED TIME COMMAND sthomas 1160 76.9 3.0 732 300 v0- RN 22May98 65171:14.37 ./rc5des root 1 0.0 0.8 408 76 ?? Is 21May98 0:00.54 /sbin/init -- root 2 0.0 0.2 0 12 ?? DL 21May98 0:17.87 (pagedaemon) root 3 0.0 0.2 0 12 ?? DL 21May98 0:02.50 (vmdaemon) root 4 0.0 0.2 0 12 ?? DL 21May98 31:50.84 (update) root 37 0.0 0.0 2164 0 con- IW - 0:00.00 (pccardd) root 86 0.0 2.9 204 292 ?? Ss 21May98 1:44.72 syslogd root 130 0.0 0.0 180 0 ?? IWs - 0:00.00 (inetd) root 133 0.0 2.0 332 192 ?? Is 21May98 4:25.98 cron root 200 0.0 0.0 180 0 v1 IWs+ - 0:00.00 (getty) root 201 0.0 0.0 180 0 v2 IWs+ - 0:00.00 (getty) sthomas 9675 0.0 8.8 660 892 v0 Ds 19Jun98 0:02.09 -tcsh (tcsh) sthomas 5072 0.0 2.7 640 272 v0 R+ 8:28PM 0:00.02 ps -aux root 0 0.0 0.1 0 0 ?? DLs 21May98 0:18.20 (swapper) sthomas 5073 0.0 8.8 660 892 v0 RV 1Jan70 0:00.00 -tcsh (tcsh) hosts on network: 205.240.209.209 sierra (router) 205.240.209.210 denali FreeBSD-2.2.6-RELEASE 205.240.209.211 fuji NeXTStation NeXTStep 3.3 205.240.209.212 rainier FreeBSD-2.2.6-PAO 205.240.209.213 k2 OpenBSD 2.1 (sparc) 205.240.209.214 acaoncagua OpenBSD 2.1 (sparc) rainier's kernel config: # # Sample Laptop Configuration # for lenlen.ntc.keio.ac.jp (Toshiba Libretto 50CT) # Tatsumi Hosokawa # # Note: wlp and scc drivers are not configured without # without installing these drivers (because they make # the size of sys.patch in PAO-boot.flp larger). # machine "i386" #cpu "I386_CPU" cpu "I486_CPU" #cpu "I586_CPU" #cpu "I686_CPU" ident RAINIER maxusers 64 options GPL_MATH_EMULATE #Support for x87 emulation options INET #InterNETworking options FFS #Berkeley Fast Filesystem options NFS #Network Filesystem options MFS #Memory Filesystem options MSDOSFS #MSDOS Filesystem options "CD9660" #ISO 9660 Filesystem options PROCFS #Process filesystem options "COMPAT_43" #Compatible with BSD 4.3 [KEEP THIS!] #options "SCSI_DELAY=15" #Be pessimistic about Joe SCSI device #options BOUNCE_BUFFERS #include support for DMA bounce buffers options UCONSOLE #Allow users to grab the console options FAILSAFE #Be conservative options USERCONFIG #boot -c editor options VISUAL_USERCONFIG #visual boot -c editor options SYSVSHM options SYSVSEM options SYSVMSG # laptop-specific configuration options LAPTOP # If your laptop have not had Windoze95-Ready BIOS, please update it. # Such old BIOS'es sometimes have critical bugs at 32-bit protected # mode APM BIOS interface (which have not used by Windoze 3.1). # PC-card suspend/resume support (experimental) options APM_PCCARD_RESUME options PCIC_RESUME_RESET # Keep power for serial cards when the system suspends # (If your machine hangs up when you try to suspend the system with # FAX/Modem PCMCIA card, uncomment this option). #options SIO_SUSP_KEEP_PWR # Detach SCSI devices when the SCSI card is removed #options SCSI_DETACH # Japanese version of WaveLAN PCMCIA uses 2.4GHz band instead of 915MHz # band that US version uses. If you want to use Japanese version of # WaveLAN, uncomment this line, or edit the corresponding config entry # of /etc/pccard.conf. #options "WAVELAN_PCMCIA_24" # Suspend the system when the battery status is "Low" #options "APM_BATT_LOW_SUSPEND" # If you want to use NTP on laptop machines, uncomment the following # option. Current APM implementation affects NTP client. #options "APM_NO_CLOCK_ADJUST" # Some X-servers cannot survive suspend/resume on laptop. # This option kicks her when the system is resumed from suspended mode. #options SYSCONS_VTY_RESUME config kernel root on wd0 controller isa0 #controller eisa0 #controller pci0 # Dont remove these two lines! pseudo-device card 1 device pcic0 at isa? port 0x3e0 irq 5 vector pcicintr #device pcic1 at isa? port 0x3e2 # for HiNote Ultra II #device pcic1 at isa? port 0x3e4 # If your machine says that PC-cards are inserted and removed frequently # even if you don't insert or remove the cards, please try to specify # the IRQ of PCIC explicitly. #options "PCIC_IRQ=12" # for machines with serial trackball #options "PCIC_IRQ=0" # zero means no IRQ mode # Some PCMCIA-PCI bridge has peculiar I/O address (default: 0x3e0). # If you want to specify I/O address explicitly, uncomment and edit the # following line (for example, I/O address of PCMCIA bridge of SOTEC # Winbook Quattro/V is 0x3000). To know this value, please read the # manual of your laptop or device property of PCMCIA bridge from # Windows95's device control panel. #options "PCIC_IO=0x3000" # for Sotec Winbook Quattro/V # This option might be usefule for those who has a PCI-ISA bridge that # is capable of IRQ routing and BIOS that properly configures it. # Assumes this condition, one could possibly use IRQ9 and IRQ10, which # CLPD6701 Interrupt Deserializer cannot handle. # We can't blindly assume this condition, this option is turned off by # default. #options "PCIC_CLPD6832_NO_EXPLICIT_ISA_IRQ" controller fdc0 at isa? port "IO_FD1" bio irq 6 drq 2 vector fdintr disk fd0 at fdc0 drive 0 disk fd1 at fdc0 drive 1 tape ft0 at fdc0 drive 2 controller wdc0 at isa? port "IO_WD1" bio irq 14 vector wdintr disk wd0 at wdc0 drive 0 controller wdc1 at isa? port "IO_WD2" bio irq 15 vector wdintr disk wd1 at wdc1 drive 0 #controller wdc2 at isa? disable port "IO_WD2" bio irq 15 vector wdintr #disk wd2 at wdc2 drive 0 #controller wdc3 at isa? disable port "IO_WD2" bio irq 15 vector wdintr #disk wd3 at wdc3 drive 0 options ATAPI #Enable ATAPI support for IDE bus options ATAPI_STATIC #Don't do it as an LKM #device wcd0 #IDE CD-ROM #device wfd0 #LS-120 #controller ncr0 #controller ahb0 #controller ahc0 #controller bt0 at isa? port "IO_BT0" bio irq ? vector bt_isa_intr #controller uha0 at isa? port "IO_UHA0" bio irq ? drq 5 vector uhaintr #controller aha0 at isa? port "IO_AHA0" bio irq ? drq 5 vector ahaintr #controller aic0 at isa? port 0x340 bio irq 11 vector aicintr #controller nca0 at isa? port 0x1f88 bio irq 10 vector ncaintr #controller nca1 at isa? port 0x350 bio irq 5 vector ncaintr #controller sea0 at isa? bio irq 5 iomem 0xc8000 iosiz 0x2000 vector seaintr #controller spc0 at isa? port 0x320 bio irq 11 iomem 0xd0000 flags 0x01 vector spcintr # Future domain and Q-logic PC-card SCSI drivers # ported from NetBSD/pc98 (based on NetBSD 1.2) #options SCSI_LOW # XXX: for ncv? and stg? driver #controller ncv0 at isa? port 0x320 bio irq 5 vector ncvintr #controller stg0 at isa? port 0x320 bio irq 5 vector stgintr #controller scbus0 #device sd0 #device od0 #See LINT for possible `od' options #device st0 #device cd0 #Only need one of these, the code dynamically grows #device wt0 at isa? port 0x300 bio irq 5 drq 1 vector wtintr #device mcd0 at isa? port 0x300 bio irq 10 vector mcdintr #controller matcd0 at isa? port 0x230 bio #device scd0 at isa? port 0x230 bio # syscons is the default console driver, resembling an SCO console device sc0 at isa? port "IO_KBD" tty irq 1 vector scintr # Enable this and PCVT_FREEBSD for pcvt vt220 compatible console driver #device vt0 at isa? port "IO_KBD" tty irq 1 vector pcrint #options "PCVT_FREEBSD=210" # pcvt running on FreeBSD 2.1 options XSERVER # include code for XFree86 # If you have a ThinkPAD, uncomment this along with the rest of the PCVT lines #options PCVT_SCANSET=2 # IBM keyboards are non-std # Mandatory, don't remove device npx0 at isa? port "IO_NPX" flags 0x01 irq 13 vector npxintr # # Laptop support (see LINT for more options) # device apm0 at isa? # Advanced Power Management options APM_BROKEN_STATCLOCK # Workaround some buggy APM BIOS device sio0 at isa? port "IO_COM1" tty irq 4 vector siointr device sio1 at isa? port "IO_COM2" tty irq 3 vector siointr #device sio2 at isa? port "IO_COM3" tty irq 5 vector siointr #device sio3 at isa? disable port "IO_COM4" tty irq 9 vector siointr #device sio4 at isa? disable port "IO_COM3" tty irq 5 vector siointr device lpt0 at isa? port? tty irq 7 vector lptintr #device lpt1 at isa? port? tty #device mse0 at isa? port 0x23c tty irq 5 vector mseintr #device psm0 at isa? disable port "IO_KBD" conflicts tty irq 12 vector psmintr device psm0 at isa? port "IO_KBD" conflicts tty irq 12 vector psmintr # Order is important here due to intrusive probes, do *not* alphabetize # this list of network interfaces until the probes have been fixed. # Right now it appears that the ie0 must be probed before ep0. See # revision 1.20 of this file. #device de0 #device fxp0 #device vx0 #device cnw0 at isa? port 0x300 net irq 5 vector cnwintr #device cnw1 at isa? disable port 0x300 net irq 5 vector cnwintr #device ed0 at isa? port 0x280 net irq 5 iomem 0xd8000 vector edintr #device ed1 at isa? disable port 0x300 net irq 5 iomem 0xd8000 vector edintr #device ie0 at isa? port 0x360 net irq 7 iomem 0xd0000 vector ieintr device ep0 at isa? port 0x300 net irq 10 vector epintr #device ep1 at isa? disable port 0x300 net irq 10 vector epintr #device fe0 at isa? port 0x300 net irq 10 vector feintr #device fe1 at isa? disable port 0x300 net irq 10 vector feintr #device ix0 at isa? port 0x300 net irq 10 iomem 0xd0000 iosiz 32768 vector ixintr #device le0 at isa? port 0x300 net irq 5 iomem 0xd0000 vector le_intr #device lnc0 at isa? port 0x280 net irq 10 drq 0 vector lncintr #device sn0 at isa? port 0x300 net irq 10 vector snintr #device sn1 at isa? disable port 0x300 net irq 10 vector snintr #device wlp0 at isa? port 0x300 net irq 11 vector wlpintr #device wlp1 at isa? disable port 0x300 net irq 11 vector wlpintr # do not enable ze0 and zp0 (these devices are obsolete) ##device ze0 at isa? port 0x300 net irq 5 iomem 0xd8000 vector zeintr ##device zp0 at isa? port 0x300 net irq 10 iomem 0xd8000 vector zpintr # IBM Smart Capture PCMCIA card #device scc0 at isa? port 0x240 irq 10 iomem 0xd4000 vector sccintr #device scc1 at isa? disable port 0x244 irq 11 iomem 0xd8000 vector sccintr # Hitachi microcomputer system Speach Synthesizer card #device hss0 at isa? port? #device hss1 at isa? port? # PCMCIA Joystick #device joy0 at isa? port "IO_GAME" pseudo-device loop pseudo-device ether pseudo-device log #pseudo-device sl 1 # DHCP uses BPF (Berkeley Packet Filter) pseudo-device bpfilter 4 # ijppp uses tun instead of ppp device #pseudo-device ppp 1 #pseudo-device tun 1 pseudo-device pty 64 pseudo-device gzip # Exec gzipped a.out's pseudo-device vn #Vnode driver (turns a file into a device) options DDB # KTRACE enables the system-call tracing facility ktrace(2). # This adds 4 KB bloat to your kernel, and slightly increases # the costs of each syscall. #options KTRACE #kernel tracing >Description: numerous machines on local network...when one attempts to LSR traceroute, the other (rainier) generates ICMP Source Route Prohibited packets, and sends them to first machine, even though rainier is not a router, and has never been a router. problem does not occur when rainier attempts to LSR traceroute, however >How-To-Repeat: run traceroute with -g from any box but rainier on local network >Fix: unknown >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 6 15:30:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA03020 for freebsd-bugs-outgoing; Mon, 6 Jul 1998 15:30:25 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA02955 for ; Mon, 6 Jul 1998 15:30:10 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA00817; Mon, 6 Jul 1998 15:30:01 -0700 (PDT) Date: Mon, 6 Jul 1998 15:30:01 -0700 (PDT) Message-Id: <199807062230.PAA00817@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Niall Smart Subject: Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited when not routing Reply-To: Niall Smart Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/7191; it has been noted by GNATS. From: Niall Smart To: sthomas@lart.net, FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited when not routing Date: Mon, 6 Jul 1998 23:21:42 +0000 On Jul 6, 9:37pm, sthomas@lart.net wrote: } Subject: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited when n > > Jul 1 04:03:09 rainier /kernel: attempted source route from 205.240.209.213 to > +198.32.136.64 > > numerous machines on local network...when one attempts to > LSR traceroute, the other (rainier) generates ICMP Source Route Prohibited > packets, and sends them to first machine, even though rainier is not a > router, and has never been a router. problem does not occur when rainier > attempts to LSR traceroute, however This is not a bug; its a feature designed to increase the security of your system. Loose and struct source routing can be used to determine the initial sequence numbers for a TCP connection trivially, which is a bad thing. If you are sure you understand the implications, you can enable them by modifying the net.inet.ip.accept_sourceroute sysctl thus: sysctl -w net.inet.ip.accept_sourceroute=1 Niall -- Niall Smart. PGP: finger njs3@motmot.doc.ic.ac.uk FreeBSD: Turning PC's into Workstations: www.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 6 15:38:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA04276 for freebsd-bugs-outgoing; Mon, 6 Jul 1998 15:38:31 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from indigo.ie (root@ts01-62.waterford.indigo.ie [194.125.139.125]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA04259; Mon, 6 Jul 1998 15:38:19 -0700 (PDT) (envelope-from rotel@indigo.ie) Received: (from nsmart@localhost) by indigo.ie (8.8.8/8.8.7) id XAA01618; Mon, 6 Jul 1998 23:10:27 +0100 (IST) (envelope-from rotel@indigo.ie) From: Niall Smart Message-Id: <199807062210.XAA01618@indigo.ie> Date: Mon, 6 Jul 1998 23:10:25 +0000 In-Reply-To: rotel@indigo.ie "Re: Load related wd problem" (Jul 6, 10:13pm) Reply-To: rotel@indigo.ie X-Mailer: Mail User's Shell (7.2.6 beta(3) 11/17/96) To: rotel@indigo.ie, Tony Holmes , freebsd-stable@FreeBSD.ORG, freebsd-current@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: Load related wd problem Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Jul 6, 10:13pm, rotel@indigo.ie wrote: } Subject: Re: Load related wd problem > > > > When the IDE disks are under heavy load, they will take down the system with > > no warning. This occurs across all versions - it find it easy to duplicate > > the problem - on a web server, while the http server is up, I will do some > > custom processing on the log files (cat, grepping, etc.) which hits the IDE > > disks hard. After a time (usually after 10-15 minutes) the system hangs > > and can only be rescued with a hard reset. > > I saw a PR go on a while back for a similar problem, it was some > problem about using one variable for all disks instead of one each, > I can't remember the details. Anyway, I'm not sure if it was even > committed, but it might be worth searching freebsd.org to see if > you can find it, sorry I can't be more help. Damnit, I've searched GNATS, freebsd-bugs and freebsd-hackers and reviewed the changelog for wd.c and I can't find it. Does anyone else remember this? Sorry for the amount of cross-posting, but if the original patch was correct then its important. Niall -- Niall Smart. PGP: finger njs3@motmot.doc.ic.ac.uk FreeBSD: Turning PC's into Workstations: www.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 6 17:04:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA15875 for freebsd-bugs-outgoing; Mon, 6 Jul 1998 17:04:39 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA15862; Mon, 6 Jul 1998 17:04:33 -0700 (PDT) (envelope-from markm@FreeBSD.org) From: Mark Murray Received: (from markm@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA04017; Mon, 6 Jul 1998 17:04:23 -0700 (PDT) Date: Mon, 6 Jul 1998 17:04:23 -0700 (PDT) Message-Id: <199807070004.RAA04017@freefall.freebsd.org> To: sjr@home.net, markm@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG, markm@FreeBSD.ORG Subject: Re: bin/6539 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] bmake version of perl5 available State-Changed-From-To: suspended-feedback State-Changed-By: markm State-Changed-When: Mon Jul 6 16:59:23 PDT 1998 State-Changed-Why: I am going to follow this one through to committal. There are some problems; 1) Please go through the supplied (bmaked) tarball and remove the contrib/perl5 directory - please rather supply this as a set of minimalist patches to make the software FreeBSD-aware. 2) If any files need creaing (config.h springs to mind) then please rather put that in src/usr.bin/include/. M . Responsible-Changed-From-To: freebsd-bugs->markm Responsible-Changed-By: markm Responsible-Changed-When: Mon Jul 6 16:59:23 PDT 1998 Responsible-Changed-Why: I am going to fiollow this through to committal. Please note that I am currently on vacation, and I will not be giving this my undivided attention. I will be able to do this properly starting from the end of July. Thanks! M To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 6 17:50:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA20430 for freebsd-bugs-outgoing; Mon, 6 Jul 1998 17:50:16 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA20423 for ; Mon, 6 Jul 1998 17:50:12 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA05283; Mon, 6 Jul 1998 17:50:02 -0700 (PDT) Date: Mon, 6 Jul 1998 17:50:02 -0700 (PDT) Message-Id: <199807070050.RAA05283@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: "Gary Palmer" Subject: Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited when not routing Reply-To: "Gary Palmer" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/7191; it has been noted by GNATS. From: "Gary Palmer" To: Niall Smart Cc: freebsd-gnats-submit@freebsd.org Subject: Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited when not routing Date: Mon, 06 Jul 1998 20:40:31 -0400 Niall Smart wrote in message ID <199807062230.PAA00817@freefall.freebsd.org>: > The following reply was made to PR kern/7191; it has been noted by GNATS. > This is not a bug; its a feature designed to increase the security of your > system. Loose and struct source routing can be used to determine the > initial sequence numbers for a TCP connection trivially, which is a bad > thing. If you are sure you understand the implications, you can enable > them by modifying the net.inet.ip.accept_sourceroute sysctl thus: > > sysctl -w net.inet.ip.accept_sourceroute=1 Err. Yes, but why is the FreeBSD box sending ICMP messages when the packets should not be being seen by the BSD box in the first place? I think the submitter needs to double check his routing tables. I can't think why the BSD box will be seeing the packets in the first place otherwise. Gary -- Gary Palmer FreeBSD Core Team Member FreeBSD: Turning PC's into workstations. See http://www.FreeBSD.ORG/ for info To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 6 19:02:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA23611 for freebsd-bugs-outgoing; Mon, 6 Jul 1998 19:02:26 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from alpha.xerox.com (omega.Xerox.COM [13.1.64.95]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id TAA23520; Mon, 6 Jul 1998 19:02:03 -0700 (PDT) (envelope-from fenner@parc.xerox.com) Received: from crevenia.parc.xerox.com ([13.2.116.11]) by alpha.xerox.com with SMTP id <40765(1)>; Mon, 6 Jul 1998 18:32:44 PDT Received: from localhost by crevenia.parc.xerox.com with SMTP id <177515>; Mon, 6 Jul 1998 18:32:41 -0700 To: "Gary Palmer" cc: freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited when not routing In-reply-to: Your message of "Mon, 06 Jul 98 17:50:02 PDT." <199807070050.RAA05283@freefall.freebsd.org> Date: Mon, 6 Jul 1998 18:32:37 PDT From: Bill Fenner Message-Id: <98Jul6.183241pdt.177515@crevenia.parc.xerox.com> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <199807070050.RAA05283@freefall.freebsd.org> you write: > Err. Yes, but why is the FreeBSD box sending ICMP messages when the > packets should not be being seen by the BSD box in the first place? I I think the FreeBSD box was in part of the source route (e.g. traceroute -g somewhere freebsdbox). Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 6 19:30:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA28402 for freebsd-bugs-outgoing; Mon, 6 Jul 1998 19:30:19 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA28380 for ; Mon, 6 Jul 1998 19:30:11 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA07786; Mon, 6 Jul 1998 19:30:01 -0700 (PDT) Date: Mon, 6 Jul 1998 19:30:01 -0700 (PDT) Message-Id: <199807070230.TAA07786@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Niall Smart Subject: Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited when not routing Reply-To: Niall Smart Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/7191; it has been noted by GNATS. From: Niall Smart To: "Gary Palmer" , Niall Smart Cc: freebsd-gnats-submit@freebsd.org, sthomas@lart.net Subject: Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited when not routing Date: Tue, 7 Jul 1998 03:24:50 +0000 On Jul 6, 8:40pm, "Gary Palmer" wrote: } Subject: Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited wh > Niall Smart wrote in message ID > > Err. Yes, but why is the FreeBSD box sending ICMP messages when the > packets should not be being seen by the BSD box in the first place? I > think the submitter needs to double check his routing tables. I can't > think why the BSD box will be seeing the packets in the first place > otherwise. Ah, sorry, I read it a bit too quickly, who exactly is the originator source routing through? Niall -- Niall Smart. PGP: finger njs3@motmot.doc.ic.ac.uk FreeBSD: Turning PC's into Workstations: www.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 02:38:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA27839 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 02:38:56 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA27823; Tue, 7 Jul 1998 02:38:42 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA19978; Tue, 7 Jul 1998 02:38:30 -0700 (PDT) Date: Tue, 7 Jul 1998 02:38:30 -0700 (PDT) Message-Id: <199807070938.CAA19978@freefall.freebsd.org> To: sthomas@lart.net, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7191 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ICMP source-route prohibited received from non-router State-Changed-From-To: open-closed State-Changed-By: phk State-Changed-When: Tue Jul 7 02:37:36 PDT 1998 State-Changed-Why: FreeBSD seems to do what is expected from it, but why the source routes are there in the first place seems to be the problem. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 02:40:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA28135 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 02:40:04 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA28077; Tue, 7 Jul 1998 02:39:56 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA20083; Tue, 7 Jul 1998 02:39:45 -0700 (PDT) Date: Tue, 7 Jul 1998 02:39:45 -0700 (PDT) Message-Id: <199807070939.CAA20083@freefall.freebsd.org> To: nludban@salientsystems.com, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: misc/7190 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: "Invalid partition table" after new install with multiple BSD slices State-Changed-From-To: open-suspended State-Changed-By: phk State-Changed-When: Tue Jul 7 02:39:09 PDT 1998 State-Changed-Why: Yeah, well, I guess it is a bug, but the short version is: Don't do that then. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 02:41:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA28364 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 02:41:22 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA28351; Tue, 7 Jul 1998 02:41:17 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA20179; Tue, 7 Jul 1998 02:41:04 -0700 (PDT) Date: Tue, 7 Jul 1998 02:41:04 -0700 (PDT) Message-Id: <199807070941.CAA20179@freefall.freebsd.org> To: dancy@franz.com, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/7189 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ld doesn't look for libxxx.so State-Changed-From-To: open-closed State-Changed-By: phk State-Changed-When: Tue Jul 7 02:40:22 PDT 1998 State-Changed-Why: How would you tell which version of library you expect then ? This clearly seem like a bad idea to me . To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 02:42:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA28438 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 02:42:03 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA28413; Tue, 7 Jul 1998 02:41:52 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA20267; Tue, 7 Jul 1998 02:41:40 -0700 (PDT) Date: Tue, 7 Jul 1998 02:41:40 -0700 (PDT) Message-Id: <199807070941.CAA20267@freefall.freebsd.org> To: davidh@wr.com.au, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/7185 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: The XFree86 3.3.2 Matrox Millenium fails to start State-Changed-From-To: open-closed State-Changed-By: phk State-Changed-When: Tue Jul 7 02:41:27 PDT 1998 State-Changed-Why: no, it doesn't belong here, www.xfree86.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 02:43:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA28620 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 02:43:07 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA28586; Tue, 7 Jul 1998 02:42:56 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA20366; Tue, 7 Jul 1998 02:42:44 -0700 (PDT) Date: Tue, 7 Jul 1998 02:42:44 -0700 (PDT) Message-Id: <199807070942.CAA20366@freefall.freebsd.org> To: davidh@wr.com.au, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/7184 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: /usr/games/robots fails to write high score table in 3.0-980520-SNAP State-Changed-From-To: open-suspended State-Changed-By: phk State-Changed-When: Tue Jul 7 02:42:10 PDT 1998 State-Changed-Why: awaiting fix & committer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 02:48:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA29265 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 02:48:38 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA29256; Tue, 7 Jul 1998 02:48:32 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA20646; Tue, 7 Jul 1998 02:48:20 -0700 (PDT) Date: Tue, 7 Jul 1998 02:48:20 -0700 (PDT) Message-Id: <199807070948.CAA20646@freefall.freebsd.org> To: phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG, sos@FreeBSD.ORG Subject: Re: kern/7178 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: IDE Western Digital hard disk detection errors Responsible-Changed-From-To: freebsd-bugs->sos Responsible-Changed-By: phk Responsible-Changed-When: Tue Jul 7 02:48:02 PDT 1998 Responsible-Changed-Why: Soren, this sounds like one for you... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 02:49:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA29360 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 02:49:45 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA29342; Tue, 7 Jul 1998 02:49:36 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA20748; Tue, 7 Jul 1998 02:49:24 -0700 (PDT) Date: Tue, 7 Jul 1998 02:49:24 -0700 (PDT) Message-Id: <199807070949.CAA20748@freefall.freebsd.org> To: seva@alex-ua.com, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG, ahasty@FreeBSD.ORG Subject: Re: kern/7177 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Old Synopsis: Support for "Video Highway Xtreme" tv-tuner card with SECAM tuner (bt848 driver) New Synopsis: [PATCH] Support for "Video Highway Xtreme" tv-tuner card with SECAM tuner (bt848 driver) State-Changed-From-To: open-suspended State-Changed-By: phk State-Changed-When: Tue Jul 7 02:48:42 PDT 1998 State-Changed-Why: over to mr tv Responsible-Changed-From-To: freebsd-bugs->ahasty Responsible-Changed-By: phk Responsible-Changed-When: Tue Jul 7 02:48:42 PDT 1998 Responsible-Changed-Why: . To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 02:51:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA29581 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 02:51:23 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA29572; Tue, 7 Jul 1998 02:51:07 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA20845; Tue, 7 Jul 1998 02:50:55 -0700 (PDT) Date: Tue, 7 Jul 1998 02:50:55 -0700 (PDT) Message-Id: <199807070950.CAA20845@freefall.freebsd.org> To: tomdean@ix.netcom.com, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG, joerg@FreeBSD.ORG Subject: Re: kern/7176 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Cannot access fd0 State-Changed-From-To: open-suspended State-Changed-By: phk State-Changed-When: Tue Jul 7 02:50:22 PDT 1998 State-Changed-Why: Joerg, you're into floppy drives, yes ? Responsible-Changed-From-To: freebsd-bugs->joerg Responsible-Changed-By: phk Responsible-Changed-When: Tue Jul 7 02:50:22 PDT 1998 Responsible-Changed-Why: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 02:53:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA00164 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 02:53:42 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA00103; Tue, 7 Jul 1998 02:53:33 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA20998; Tue, 7 Jul 1998 02:53:21 -0700 (PDT) Date: Tue, 7 Jul 1998 02:53:21 -0700 (PDT) Message-Id: <199807070953.CAA20998@freefall.freebsd.org> To: jonny@jonny.eng.br, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7169 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: cannot use accton on a append-only file State-Changed-From-To: open-suspended State-Changed-By: phk State-Changed-When: Tue Jul 7 02:52:57 PDT 1998 State-Changed-Why: awaiting fix & committer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 02:57:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA00436 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 02:57:09 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA00430; Tue, 7 Jul 1998 02:57:02 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA21108; Tue, 7 Jul 1998 02:56:51 -0700 (PDT) Date: Tue, 7 Jul 1998 02:56:51 -0700 (PDT) Message-Id: <199807070956.CAA21108@freefall.freebsd.org> To: seva@alex-ua.com, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG, ahasty@FreeBSD.ORG Subject: Re: i386/7159 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Old Synopsis: Unknown option OVERRIDE_CARD (bt848 driver) New Synopsis: [PATCH] Unknown option OVERRIDE_CARD (bt848 driver) State-Changed-From-To: open-suspended State-Changed-By: phk State-Changed-When: Tue Jul 7 02:56:29 PDT 1998 State-Changed-Why: Mr tv Responsible-Changed-From-To: freebsd-bugs->ahasty Responsible-Changed-By: phk Responsible-Changed-When: Tue Jul 7 02:56:29 PDT 1998 Responsible-Changed-Why: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 05:02:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA15316 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 05:02:18 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA15306; Tue, 7 Jul 1998 05:02:07 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA25517; Tue, 7 Jul 1998 05:01:54 -0700 (PDT) Date: Tue, 7 Jul 1998 05:01:54 -0700 (PDT) Message-Id: <199807071201.FAA25517@freefall.freebsd.org> To: fullermd@futuresouth.com, jkh@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/6963 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: msgs -p can give misleading errors State-Changed-From-To: open-closed State-Changed-By: jkh State-Changed-When: Tue Jul 7 05:01:41 PDT 1998 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 05:10:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA16480 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 05:10:17 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA16462 for ; Tue, 7 Jul 1998 05:10:13 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA25847; Tue, 7 Jul 1998 05:10:01 -0700 (PDT) Date: Tue, 7 Jul 1998 05:10:01 -0700 (PDT) Message-Id: <199807071210.FAA25847@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Samuel S Thomas Subject: Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited when not routing Reply-To: Samuel S Thomas Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/7191; it has been noted by GNATS. From: Samuel S Thomas To: rotel@indigo.ie, FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited when not routing Date: Tue, 7 Jul 1998 12:11:06 +0000 > This is not a bug; This *IS* a bug... I beg you to read the RFC's (I'll dig up numbers if you need) its a feature designed to increase the security of your > system. that's fine, but I assure you that the system has no business in the source-routing of other systems on the network Loose and struct source routing can be used to determine the > initial sequence numbers for a TCP connection trivially, which is a bad > thing. If you are sure you understand the implications, you can enable > them by modifying the net.inet.ip.accept_sourceroute sysctl thus: I am quite clear on the implications...my concern is that the LSR packets were neither originating from, nor destined to the machine generating the ICMP Source-route prohibited messages. > sysctl -w net.inet.ip.accept_sourceroute=1 > > Niall > > -- > Niall Smart. PGP: finger njs3@motmot.doc.ic.ac.uk > FreeBSD: Turning PC's into Workstations: www.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 05:17:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA17032 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 05:17:12 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from k2.lart.net (k2.lart.net [205.240.209.213]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA17006; Tue, 7 Jul 1998 05:17:05 -0700 (PDT) (envelope-from sthomas@k2.lart.net) Received: (from sthomas@localhost) by k2.lart.net (8.8.7/8.8.7) id MAA07003; Tue, 7 Jul 1998 12:22:26 GMT Message-ID: <19980707122225.C13836@lart.net> Date: Tue, 7 Jul 1998 12:22:25 +0000 From: Samuel S Thomas To: Poul-Henning Kamp , freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7191 References: <199807070938.CAA19978@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1 In-Reply-To: <199807070938.CAA19978@freefall.freebsd.org>; from Poul-Henning Kamp on Tue, Jul 07, 1998 at 02:38:30AM -0700 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org please re-open this, as you have not investigated the matter in the slightest, and seem to have false conceptions as to the real problem. I have sent data clearly definig the problem, which should hopefully clearly explain the situation to you. On Tue, Jul 07, 1998 at 02:38:30AM -0700, Poul-Henning Kamp wrote: > Synopsis: ICMP source-route prohibited received from non-router > > State-Changed-From-To: open-closed > State-Changed-By: phk > State-Changed-When: Tue Jul 7 02:37:36 PDT 1998 > State-Changed-Why: > FreeBSD seems to do what is expected from it, but why the source routes > are there in the first place seems to be the problem. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 05:20:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA17738 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 05:20:23 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA17725 for ; Tue, 7 Jul 1998 05:20:17 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA26175; Tue, 7 Jul 1998 05:20:04 -0700 (PDT) Date: Tue, 7 Jul 1998 05:20:04 -0700 (PDT) Message-Id: <199807071220.FAA26175@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Samuel S Thomas Subject: Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited when not routing Reply-To: Samuel S Thomas Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/7191; it has been noted by GNATS. From: Samuel S Thomas To: rotel@indigo.ie, Gary Palmer Cc: freebsd-gnats-submit@freebsd.org Subject: Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited when not routing Date: Tue, 7 Jul 1998 12:20:05 +0000 There seems to be some confusion about the problem I reported, I'll attempt to clarify. assume three machines of signifigace on the network: router: 205.240.209.209 rainier (offender): 205.240.209.212 any other machine :205.240.209.208/28 member netstat -rn Routing tables Internet: Destination Gateway Flags Refs Use Mtu Interface default 205.240.209.209 UGS 1 5123 - le0 127 127.0.0.1 UGRS 0 0 - lo0 127.0.0.1 127.0.0.1 UH 2 78 - lo0 205.240.209.208 link#1 UC 0 0 - le0 205.240.209.209 0:0:93:b4:2:be UHL 1 0 - le0 205.240.209.210 0:40:5:50:4b:32 UHL 0 80 - le0 205.240.209.211 0:0:f:0:70:fb UHL 2 2622 - le0 205.240.209.213 127.0.0.1 UGHS 1 1031 - lo0 224 link#1 UCS 0 0 - le0 Encap: Source address/netmask Port Destination address/netmask Port Proto SA(Address/SPI/Proto) So, clearly it would route through 205.240.209.209... traceroute -g 205.238.48.1 www.infoseek.com traceroute to guide-p.infoseek.com (204.162.96.21), 30 hops max, 48 byte packets 1 rainier.lart.net (205.240.209.212) 3.453 ms !S 3.118 ms !S 2.844 ms !S why is rainier.lart.net not minding its own business? ifconfig -a ... le0: flags=8863 inet 205.240.209.213 netmask 0xfffffff0 broadcast 205.240.209.223 ... On Tue, Jul 07, 1998 at 03:24:50AM +0000, Niall Smart wrote: > On Jul 6, 8:40pm, "Gary Palmer" wrote: > } Subject: Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited wh > > Niall Smart wrote in message ID > > > > Err. Yes, but why is the FreeBSD box sending ICMP messages when the > > packets should not be being seen by the BSD box in the first place? I > > think the submitter needs to double check his routing tables. I can't > > think why the BSD box will be seeing the packets in the first place > > otherwise. > > Ah, sorry, I read it a bit too quickly, who exactly is the originator > source routing through? > > Niall > > -- > Niall Smart. PGP: finger njs3@motmot.doc.ic.ac.uk > FreeBSD: Turning PC's into Workstations: www.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 05:53:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA21112 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 05:53:08 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from critter.freebsd.dk (critter.freebsd.dk [195.8.129.14]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA21096 for ; Tue, 7 Jul 1998 05:53:04 -0700 (PDT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.8.7/8.8.5) with ESMTP id OAA02563; Tue, 7 Jul 1998 14:50:33 +0200 (CEST) To: Samuel S Thomas cc: freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited when not routing In-reply-to: Your message of "Tue, 07 Jul 1998 05:20:04 PDT." <199807071220.FAA26175@freefall.freebsd.org> Date: Tue, 07 Jul 1998 14:50:33 +0200 Message-ID: <2561.899815833@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org do you by anychance have two ethernet cards with the same MAC address ? It happened to me some years ago... Could also be a defect card of course. -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." "ttyv0" -- What UNIX calls a $20K state-of-the-art, 3D, hi-res color terminal To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 06:09:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA23276 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 06:09:09 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from k2.lart.net (k2.lart.net [205.240.209.213]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA23271 for ; Tue, 7 Jul 1998 06:09:06 -0700 (PDT) (envelope-from sthomas@k2.lart.net) Received: (from sthomas@localhost) by k2.lart.net (8.8.7/8.8.7) id NAA02857; Tue, 7 Jul 1998 13:09:20 GMT Message-ID: <19980707130918.F13836@lart.net> Date: Tue, 7 Jul 1998 13:09:18 +0000 From: Samuel S Thomas To: Poul-Henning Kamp Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited when not routing References: <199807071220.FAA26175@freefall.freebsd.org> <2561.899815833@critter.freebsd.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1 In-Reply-To: <2561.899815833@critter.freebsd.dk>; from Poul-Henning Kamp on Tue, Jul 07, 1998 at 02:50:33PM +0200 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > do you by anychance have two ethernet cards with the same MAC address ? nope, all machines on the network have different ethernet hardware, excluding the two SparcStations. here's the 2 Sun boxen: le0 at sbus0 slot 0 offset 0xc00000 pri 5: address 08:00:20:0c:87:e3 le0 at sbus0 slot 0 offset 0xc00000 pri 5: address 08:00:20:0c:87:e3 the remaining machines are as following: Denali: intel hardware with DEC21140 ethernet rainier: intel hardware with 3Com ethernet fuji: NeXT hardware with odball ethernet proteon router with ethernet address l0:0:93:b4:2:be that matches nothing else on the network > It happened to me some years ago... > > Could also be a defect card of course. defect card would not excuse the kernel generating ICMP messages without verifying destination address. this is clearly a layer 2(TCP/IP 4-layer model) or layer 3 (7-layer OSI model) problem. > -- > Poul-Henning Kamp FreeBSD coreteam member > phk@FreeBSD.ORG "Real hackers run -current on their laptop." > "ttyv0" -- What UNIX calls a $20K state-of-the-art, 3D, hi-res color terminal To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 06:16:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA23901 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 06:16:57 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from k2.lart.net (k2.lart.net [205.240.209.213]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA23895 for ; Tue, 7 Jul 1998 06:16:54 -0700 (PDT) (envelope-from sthomas@k2.lart.net) Received: (from sthomas@localhost) by k2.lart.net (8.8.7/8.8.7) id NAA27513; Tue, 7 Jul 1998 13:22:15 GMT Message-ID: <19980707132214.G13836@lart.net> Date: Tue, 7 Jul 1998 13:22:14 +0000 From: Samuel S Thomas To: freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited when not routing References: <199807071220.FAA26175@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1 In-Reply-To: <199807071220.FAA26175@freefall.freebsd.org>; from Samuel S Thomas on Tue, Jul 07, 1998 at 05:20:04AM -0700 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org here is TCPdump showing the offending box (fuji.lart.net) responding to source routed packets that it *should* have no interest in: 13:17:31.259509 denali.lart.net.32939 > iad0.verio.net.33435: udp 12 [ttl 1] 13:17:31.260505 rainier.lart.net > denali.lart.net: icmp: iad0.verio.net unreachable - source route failed 13:17:31.261054 sierra.lart.net > denali.lart.net: icmp: time exceeded in-transit 13:17:31.267582 denali.lart.net.32939 > iad0.verio.net.33436: udp 12 [ttl 1] 13:17:31.268445 rainier.lart.net > denali.lart.net: icmp: iad0.verio.net unreachable - source route failed 13:17:31.268647 denali.lart.net.32939 > iad0.verio.net.33437: udp 12 [ttl 1] 13:17:31.269067 sierra.lart.net > denali.lart.net: icmp: time exceeded in-transit 13:17:31.269849 rainier.lart.net > denali.lart.net: icmp: iad0.verio.net unreachable - source route failed 13:17:31.270620 sierra.lart.net > denali.lart.net: icmp: time exceeded in-transit To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 06:20:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA24396 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 06:20:19 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA24386 for ; Tue, 7 Jul 1998 06:20:15 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA27641; Tue, 7 Jul 1998 06:20:01 -0700 (PDT) Date: Tue, 7 Jul 1998 06:20:01 -0700 (PDT) Message-Id: <199807071320.GAA27641@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Niall Smart Subject: Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited when not routing Reply-To: Niall Smart Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/7191; it has been noted by GNATS. From: Niall Smart To: Samuel S Thomas , rotel@indigo.ie, FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited when not routing Date: Tue, 7 Jul 1998 14:11:26 +0000 On Jul 7, 12:11pm, Samuel S Thomas wrote: } Subject: Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited wh > > This is not a bug; > > This *IS* a bug... I beg you to read the RFC's (I'll dig up numbers if > you need) > > its a feature designed to increase the security of your > > system. > > that's fine, but I assure you that the system has no business in the > source-routing of other systems on the network Yes, my apologies, I replied too hastily. Is it possible for you to run "tcpdump -ttvvne udp or icmp" on one of the hosts while this is happening? Niall -- Niall Smart. PGP: finger njs3@motmot.doc.ic.ac.uk FreeBSD: Turning PC's into Workstations: www.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 06:20:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA24400 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 06:20:20 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from critter.freebsd.dk (critter.freebsd.dk [195.8.129.14]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA24385 for ; Tue, 7 Jul 1998 06:20:14 -0700 (PDT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.8.7/8.8.5) with ESMTP id PAA02674; Tue, 7 Jul 1998 15:16:48 +0200 (CEST) To: Samuel S Thomas cc: freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited when not routing In-reply-to: Your message of "Tue, 07 Jul 1998 13:09:18 -0000." <19980707130918.F13836@lart.net> Date: Tue, 07 Jul 1998 15:16:48 +0200 Message-ID: <2672.899817408@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <19980707130918.F13836@lart.net>, Samuel S Thomas writes: >> do you by anychance have two ethernet cards with the same MAC address ? >nope, all machines on the network have different ethernet hardware, >excluding the two SparcStations. > >here's the 2 Sun boxen: >le0 at sbus0 slot 0 offset 0xc00000 pri 5: address 08:00:20:0c:87:e3 >le0 at sbus0 slot 0 offset 0xc00000 pri 5: address 08:00:20:0c:87:e3 Uhm, they look identical to me... -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." "ttyv0" -- What UNIX calls a $20K state-of-the-art, 3D, hi-res color terminal To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 06:40:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA27592 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 06:40:21 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA27587 for ; Tue, 7 Jul 1998 06:40:15 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA28248; Tue, 7 Jul 1998 06:40:01 -0700 (PDT) Date: Tue, 7 Jul 1998 06:40:01 -0700 (PDT) Message-Id: <199807071340.GAA28248@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Samuel S Thomas Subject: Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited when not routing Reply-To: Samuel S Thomas Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/7191; it has been noted by GNATS. From: Samuel S Thomas To: rotel@indigo.ie, FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited when not routing Date: Tue, 7 Jul 1998 13:41:51 +0000 > Yes, my apologies, I replied too hastily. Is it possible for you > to run "tcpdump -ttvvne udp or icmp" on one of the hosts while this > is happening? My appologies for rude tone. I can be a right bastard when I know I'm right. ;-) here's the dump you requested (run on a third-party observer on the network): 899818304.137459 0:40:5:50:4b:32 0:0:93:b4:2:be 0800 62: 205.240.209.210.32985 > 205.238.48.1.33435: udp 12 [ttl 1] (id 32986, optlen=8 NOP LSRR{#205.238.52.46}) 899818304.138573 0:a0:24:b0:27:75 0:40:5:50:4b:32 0800 78: 205.240.209.212 > 205.240.209.210: icmp: 205.238.48.1 unreachable - source route failed (ttl 255, id 11571) 899818304.138868 0:0:93:b4:2:be 0:40:5:50:4b:32 0800 78: 205.240.209.209 > 205.240.209.210: icmp: time exceeded in-transit (ttl 59, id 11496) 899818304.139004 0:40:5:50:4b:32 8:0:20:c:87:e3 0800 88: 205.240.209.210.1028 > 205.240.209.213.53: 54252+ (46) (ttl 64, id 54) 899818304.147297 8:0:20:c:87:e3 0:40:5:50:4b:32 0800 216: 205.240.209.213.53 > 205.240.209.210.1028: 54252* q: 212.209.240.2 1/2/2 . (174) (ttl 64, id 215) 899818304.148499 0:40:5:50:4b:32 0:0:93:b4:2:be 0800 62: 205.240.209.210.32985 > 205.238.48.1.33436: udp 12 [ttl 1] (id 32987, optlen=8 NOP LSRR{#205.238.52.46}) 899818304.149502 0:a0:24:b0:27:75 0:40:5:50:4b:32 0800 78: 205.240.209.212 > 205.240.209.210: icmp: 205.238.48.1 unreachable - source route failed (ttl 255, id 11572) 899818304.149963 0:0:93:b4:2:be 0:40:5:50:4b:32 0800 78: 205.240.209.209 > 205.240.209.210: icmp: time exceeded in-transit (ttl 59, id 11497) 899818304.150122 0:40:5:50:4b:32 0:0:93:b4:2:be 0800 62: 205.240.209.210.32985 > 205.238.48.1.33437: udp 12 [ttl 1] (id 32988, optlen=8 NOP LSRR{#205.238.52.46}) 899818304.151123 0:a0:24:b0:27:75 0:40:5:50:4b:32 0800 78: 205.240.209.212 > 205.240.209.210: icmp: 205.238.48.1 unreachable - source route failed (ttl 255, id 11573) 899818304.151530 0:0:93:b4:2:be 0:40:5:50:4b:32 0800 78: 205.240.209.209 > 205.240.209.210: icmp: time exceeded in-transit (ttl 59, id 11498) It's plenty messy (vi set to wrap at col72 for email), but I think it clearly shows the problem (and lack of MAC address tricks) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 06:46:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA28261 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 06:46:37 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from k2.lart.net (k2.lart.net [205.240.209.213]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA28251 for ; Tue, 7 Jul 1998 06:46:33 -0700 (PDT) (envelope-from sthomas@k2.lart.net) Received: (from sthomas@localhost) by k2.lart.net (8.8.7/8.8.7) id NAA14675; Tue, 7 Jul 1998 13:47:14 GMT Message-ID: <19980707134712.B1918@lart.net> Date: Tue, 7 Jul 1998 13:47:13 +0000 From: Samuel S Thomas To: Poul-Henning Kamp Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited when not routing References: <19980707130918.F13836@lart.net> <2672.899817408@critter.freebsd.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1 In-Reply-To: <2672.899817408@critter.freebsd.dk>; from Poul-Henning Kamp on Tue, Jul 07, 1998 at 03:16:48PM +0200 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Jul 07, 1998 at 03:16:48PM +0200, Poul-Henning Kamp wrote: > In message <19980707130918.F13836@lart.net>, Samuel S Thomas writes: > >> do you by anychance have two ethernet cards with the same MAC address ? > >nope, all machines on the network have different ethernet hardware, > >excluding the two SparcStations. > > > >here's the 2 Sun boxen: > >le0 at sbus0 slot 0 offset 0xc00000 pri 5: address 08:00:20:0c:87:e3 > >le0 at sbus0 slot 0 offset 0xc00000 pri 5: address 08:00:20:0c:87:e3 > > Uhm, they look identical to me... that's because of dfo (dumb fscking operator) error...can't copy/paste correctly on the NeXT after using X. the correct addresses are: sierra.lart.net (205.240.209.209) at 0:0:93:b4:2:be denali.lart.net (205.240.209.210) at 0:40:5:50:4b:32 rainier.lart.net (205.240.209.212) at 0:a0:24:b0:27:75 aconcagua.lart.net (205.240.209.214) at 8:0:20:1d:9e:73 k2.lart.net (205.240.209.213) at 8:0:20:c:87:e3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 06:52:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA29039 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 06:52:14 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from implode.root.com (implode.root.com [198.145.90.17]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA29004; Tue, 7 Jul 1998 06:52:04 -0700 (PDT) (envelope-from root@implode.root.com) Received: from implode.root.com (localhost [127.0.0.1]) by implode.root.com (8.8.5/8.8.5) with ESMTP id GAA24068; Tue, 7 Jul 1998 06:52:07 -0700 (PDT) Message-Id: <199807071352.GAA24068@implode.root.com> To: Samuel S Thomas cc: Poul-Henning Kamp , freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7191 In-reply-to: Your message of "Tue, 07 Jul 1998 12:22:25 -0000." <19980707122225.C13836@lart.net> From: David Greenman Reply-To: dg@root.com Date: Tue, 07 Jul 1998 06:52:07 -0700 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >please re-open this, as you have not investigated the matter in the >slightest, and seem to have false conceptions as to the real problem. I >have sent data clearly definig the problem, which should hopefully >clearly explain the situation to you. The "rainer" machine's interface appears to either be in promiscuous mode or perhaps might be defective. Based on your packet dumps, rainer shouldn't be seeing the packets since they are not broadcasts and the destination address is not that machine. What type of network interface is in rainer? -DG David Greenman Co-founder/Principal Architect, The FreeBSD Project To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 06:58:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA29778 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 06:58:49 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from k2.lart.net (k2.lart.net [205.240.209.213]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA29744; Tue, 7 Jul 1998 06:58:36 -0700 (PDT) (envelope-from sthomas@k2.lart.net) Received: (from sthomas@localhost) by k2.lart.net (8.8.7/8.8.7) id OAA26881; Tue, 7 Jul 1998 14:04:16 GMT Message-ID: <19980707140415.C1918@lart.net> Date: Tue, 7 Jul 1998 14:04:15 +0000 From: Samuel S Thomas To: dg@root.com Cc: Poul-Henning Kamp , freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7191 References: <19980707122225.C13836@lart.net> <199807071352.GAA24068@implode.root.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1 In-Reply-To: <199807071352.GAA24068@implode.root.com>; from David Greenman on Tue, Jul 07, 1998 at 06:52:07AM -0700 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Jul 07, 1998 at 06:52:07AM -0700, David Greenman wrote: > >please re-open this, as you have not investigated the matter in the > >slightest, and seem to have false conceptions as to the real problem. I > >have sent data clearly definig the problem, which should hopefully > >clearly explain the situation to you. > > The "rainer" machine's interface appears to either be in promiscuous mode > or perhaps might be defective. Based on your packet dumps, rainer shouldn't > be seeing the packets since they are not broadcasts and the destination > address is not that machine. What type of network interface is in rainer? rainier has a 3Com 3c589c ethernet card. it is running PAO-980430. rfc1122 still states that a host must determine if it is the destination of a packet before further processing of such packet. even if it was promiscuous, this should be caught long before a reply is generated. This would break networks where, for instance, a FreeBSD box was acting as a DHCP server. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 07:00:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA00225 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 07:00:40 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from implode.root.com (implode.root.com [198.145.90.17]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA00163; Tue, 7 Jul 1998 07:00:19 -0700 (PDT) (envelope-from root@implode.root.com) Received: from implode.root.com (localhost [127.0.0.1]) by implode.root.com (8.8.5/8.8.5) with ESMTP id HAA24173; Tue, 7 Jul 1998 07:00:17 -0700 (PDT) Message-Id: <199807071400.HAA24173@implode.root.com> To: Samuel S Thomas cc: Poul-Henning Kamp , freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7191 In-reply-to: Your message of "Tue, 07 Jul 1998 14:04:15 -0000." <19980707140415.C1918@lart.net> From: David Greenman Reply-To: dg@root.com Date: Tue, 07 Jul 1998 07:00:17 -0700 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >On Tue, Jul 07, 1998 at 06:52:07AM -0700, David Greenman wrote: >> >please re-open this, as you have not investigated the matter in the >> >slightest, and seem to have false conceptions as to the real problem. I >> >have sent data clearly definig the problem, which should hopefully >> >clearly explain the situation to you. >> >> The "rainer" machine's interface appears to either be in promiscuous mode >> or perhaps might be defective. Based on your packet dumps, rainer shouldn't >> be seeing the packets since they are not broadcasts and the destination >> address is not that machine. What type of network interface is in rainer? > >rainier has a 3Com 3c589c ethernet card. it is running PAO-980430. I'd suggest talking to the PAO people about that then. -DG David Greenman Co-founder/Principal Architect, The FreeBSD Project To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 07:08:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA01409 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 07:08:00 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from critter.freebsd.dk (critter.freebsd.dk [195.8.129.14]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA01403 for ; Tue, 7 Jul 1998 07:07:57 -0700 (PDT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.8.7/8.8.5) with ESMTP id QAA02813; Tue, 7 Jul 1998 16:05:05 +0200 (CEST) To: Samuel S Thomas cc: freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited when not routing In-reply-to: Your message of "Tue, 07 Jul 1998 13:47:13 -0000." <19980707134712.B1918@lart.net> Date: Tue, 07 Jul 1998 16:05:05 +0200 Message-ID: <2811.899820305@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <19980707134712.B1918@lart.net>, Samuel S Thomas writes: >On Tue, Jul 07, 1998 at 03:16:48PM +0200, Poul-Henning Kamp wrote: >> In message <19980707130918.F13836@lart.net>, Samuel S Thomas writes: >> >> do you by anychance have two ethernet cards with the same MAC address ? >> >nope, all machines on the network have different ethernet hardware, >> >excluding the two SparcStations. >> > >> >here's the 2 Sun boxen: >> >le0 at sbus0 slot 0 offset 0xc00000 pri 5: address 08:00:20:0c:87:e3 >> >le0 at sbus0 slot 0 offset 0xc00000 pri 5: address 08:00:20:0c:87:e3 >> >> Uhm, they look identical to me... > > that's because of dfo (dumb fscking operator) error...can't >copy/paste correctly on the NeXT after using X. the correct addresses >are: > >sierra.lart.net (205.240.209.209) at 0:0:93:b4:2:be >denali.lart.net (205.240.209.210) at 0:40:5:50:4b:32 >rainier.lart.net (205.240.209.212) at 0:a0:24:b0:27:75 >aconcagua.lart.net (205.240.209.214) at 8:0:20:1d:9e:73 >k2.lart.net (205.240.209.213) at 8:0:20:c:87:e3 My only guess then is that the le0 driver or the hardware doesn't filter the ethernet source address correctly. If you're a C programmer of any rank you can easily plug a test into the le0 driver for this hypothesis... -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." "ttyv0" -- What UNIX calls a $20K state-of-the-art, 3D, hi-res color terminal To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 07:09:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA01661 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 07:09:07 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from critter.freebsd.dk (critter.freebsd.dk [195.8.129.14]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA01654 for ; Tue, 7 Jul 1998 07:09:00 -0700 (PDT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.8.7/8.8.5) with ESMTP id QAA02848; Tue, 7 Jul 1998 16:06:41 +0200 (CEST) To: Samuel S Thomas cc: dg@root.com, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7191 In-reply-to: Your message of "Tue, 07 Jul 1998 14:04:15 -0000." <19980707140415.C1918@lart.net> Date: Tue, 07 Jul 1998 16:06:41 +0200 Message-ID: <2846.899820401@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <19980707140415.C1918@lart.net>, Samuel S Thomas writes: >On Tue, Jul 07, 1998 at 06:52:07AM -0700, David Greenman wrote: >> >please re-open this, as you have not investigated the matter in the >> >slightest, and seem to have false conceptions as to the real problem. I >> >have sent data clearly definig the problem, which should hopefully >> >clearly explain the situation to you. >> >> The "rainer" machine's interface appears to either be in promiscuous mode >> or perhaps might be defective. Based on your packet dumps, rainer shouldn't >> be seeing the packets since they are not broadcasts and the destination >> address is not that machine. What type of network interface is in rainer? > >rainier has a 3Com 3c589c ethernet card. it is running PAO-980430. >rfc1122 still states that a host must determine if it is the destination >of a packet before further processing of such packet. even if it was >promiscuous, this should be caught long before a reply is generated. >This would break networks where, for instance, a FreeBSD box was acting >as a DHCP server. Hmm, I added a check to the vx0 3com driver some time back for exactly that problem, the chip received all packets (to be able to hear multicast ?), you may need to do the same thing in this driver. -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." "ttyv0" -- What UNIX calls a $20K state-of-the-art, 3D, hi-res color terminal To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 07:19:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA02829 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 07:19:45 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from implode.root.com (implode.root.com [198.145.90.17]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA02821 for ; Tue, 7 Jul 1998 07:19:41 -0700 (PDT) (envelope-from root@implode.root.com) Received: from implode.root.com (localhost [127.0.0.1]) by implode.root.com (8.8.5/8.8.5) with ESMTP id HAA24496; Tue, 7 Jul 1998 07:14:33 -0700 (PDT) Message-Id: <199807071414.HAA24496@implode.root.com> To: Samuel S Thomas cc: Poul-Henning Kamp , freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited when not routing In-reply-to: Your message of "Tue, 07 Jul 1998 13:09:18 -0000." <19980707130918.F13836@lart.net> From: David Greenman Reply-To: dg@root.com Date: Tue, 07 Jul 1998 07:14:33 -0700 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >> It happened to me some years ago... >> >> Could also be a defect card of course. > >defect card would not excuse the kernel generating ICMP messages without >verifying destination address. this is clearly a layer 2(TCP/IP 4-layer >model) or layer 3 (7-layer OSI model) problem. No, it's not that clear. First of all, since the IP source/destination of the packets is never that of the intermediate routers one can't compare against that. The problem is that the machine is seeing the packets in the first place. FreeBSD, and all other Unixes that I know about, only verify the destination MAC address as being 'this host' when the interface is put into promiscuous mode. Otherwise it assumes that the hardware is properly filtering the packets. For whatever reason, the interface is passing packets that it should not be passing and there is no way to tell the difference between that and a machine deliberating sending the packets to the host as if to be routed. It is probably a bug that source route IP options are processed at all when a machine isn't configured for IP forwarding. While fixing this would supress your warnings, it wouldn't fix the real problem which is why the machine is seeing the packets in the first place. -DG David Greenman Co-founder/Principal Architect, The FreeBSD Project To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 07:37:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA06018 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 07:37:02 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA05928; Tue, 7 Jul 1998 07:36:47 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA27998; Tue, 7 Jul 1998 07:36:33 -0700 (PDT) Date: Tue, 7 Jul 1998 07:36:33 -0700 (PDT) Message-Id: <199807071436.HAA27998@freefall.freebsd.org> To: sthomas@lart.net, jkh@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7191 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ICMP source-route prohibited received from non-router State-Changed-From-To: closed-open State-Changed-By: jkh State-Changed-When: Tue Jul 7 07:36:11 PDT 1998 State-Changed-Why: As is our policy, any closed PR in dispute gets reopened. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 07:38:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA06539 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 07:38:25 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA06513; Tue, 7 Jul 1998 07:38:11 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id HAA00848; Tue, 7 Jul 1998 07:37:42 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: Samuel S Thomas cc: Poul-Henning Kamp , freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7191 In-reply-to: Your message of "Tue, 07 Jul 1998 12:22:25 -0000." <19980707122225.C13836@lart.net> Date: Tue, 07 Jul 1998 07:37:42 -0700 Message-ID: <845.899822262@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > please re-open this, as you have not investigated the matter in the > slightest, and seem to have false conceptions as to the real problem. I > have sent data clearly definig the problem, which should hopefully > clearly explain the situation to you. Sorry, I've reopened the bug report as per our policy of keeping anything in dispute in open status. - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 07:43:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA07089 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 07:43:06 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from sparky.franz.com (sparky.franz.com [192.132.95.33]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA07068; Tue, 7 Jul 1998 07:42:48 -0700 (PDT) (envelope-from dancy@franz.com) Received: from ultra.franz.com by sparky.franz.com (8.8.8/FI-2.0) id HAA13960; Tue, 7 Jul 1998 07:42:47 -0700 (PDT) Received: from ultra by ultra.franz.com (SMI-8.6/FI-2.0) id HAA08567; Tue, 7 Jul 1998 07:42:46 -0700 Message-Id: <199807071442.HAA08567@ultra.franz.com> To: Poul-Henning Kamp cc: freebsd-bugs@FreeBSD.ORG Subject: Re: bin/7189 In-reply-to: Your message of "Tue, 07 Jul 1998 02:41:04 PDT." <199807070941.CAA20179@freefall.freebsd.org> Date: Tue, 07 Jul 1998 07:42:46 -0700 From: Ahmon Dancy Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >> Synopsis: ld doesn't look for libxxx.so >> >> State-Changed-From-To: open-closed >> State-Changed-By: phk >> State-Changed-When: Tue Jul 7 02:40:22 PDT 1998 >> State-Changed-Why: >> How would you tell which version of library you expect then ? >> This clearly seem like a bad idea to me >> . Wait! It works on the other operating systems, though! I agree that it should use a version number if available.. but, if it doesn't find a libxxx.so.m.n, it should accept a libxxx.so if it finds one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 07:52:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA08758 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 07:52:47 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from k2.lart.net (k2.lart.net [205.240.209.213]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA08746 for ; Tue, 7 Jul 1998 07:52:41 -0700 (PDT) (envelope-from sthomas@k2.lart.net) Received: (from sthomas@localhost) by k2.lart.net (8.8.7/8.8.7) id OAA16626; Tue, 7 Jul 1998 14:58:03 GMT Message-ID: <19980707145802.D1918@lart.net> Date: Tue, 7 Jul 1998 14:58:02 +0000 From: Samuel S Thomas To: dg@root.com Cc: Poul-Henning Kamp , freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited when not routing References: <19980707130918.F13836@lart.net> <199807071414.HAA24496@implode.root.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1 In-Reply-To: <199807071414.HAA24496@implode.root.com>; from David Greenman on Tue, Jul 07, 1998 at 07:14:33AM -0700 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > It is probably a bug that source route IP options are processed at all > when a machine isn't configured for IP forwarding. While fixing this would > supress your warnings, it wouldn't fix the real problem which is why the > machine is seeing the packets in the first place. This is exactly my point. This is mentioned fairly clearly in rfc1122, also. I will agree to work with the PAO people on determining how those packets are getting to the IP layer without being discarded by the interface, so long as you core kernel-hacker types agree that the kernel should know whether or not it's routing, and check IP src/dst addresses accordingly. Fair enough? There does appear to be a check in their if_ep.c, though... I'll be the first to admit that my C hacking skills have gone unused for the past 3 years, and are a bit rusty in deference to my TCP/IP and routing skills, but it seems to me that this code should work as advertised. I'll need to kill a tree to get much deeper into it, though. #if NBPFILTER > 0 if (ifp->if_bpf) { bpf_mtap(ifp, top); /* * Note that the interface cannot be in promiscuous mode if there are * no BPF listeners. And if we are in promiscuous mode, we have to * check if this packet is really ours. */ eh = mtod(top, struct ether_header *); if ((ifp->if_flags & IFF_PROMISC) && (eh->ether_dhost[0] & 1) == 0 && bcmp(eh->ether_dhost, sc->arpcom.ac_enaddr, sizeof(eh->ether_dhost)) != 0 && bcmp(eh->ether_dhost, etherbroadcastaddr, sizeof(eh->ether_dhost)) != 0) { if (sc->top) { m_freem(sc->top); sc->top = 0; } ep_fset(F_RX_FIRST); #ifdef EP_LOCAL_STATS sc->rx_bpf_disc++; #endif while (inw(BASE + EP_STATUS) & S_COMMAND_IN_PROGRESS); outw(BASE + EP_COMMAND, SET_RX_EARLY_THRESH | RX_INIT_EARLY_THRESH); return; } } #endif To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 08:16:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA11699 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 08:16:19 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from implode.root.com (implode.root.com [198.145.90.17]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA11572 for ; Tue, 7 Jul 1998 08:15:52 -0700 (PDT) (envelope-from root@implode.root.com) Received: from implode.root.com (localhost [127.0.0.1]) by implode.root.com (8.8.5/8.8.5) with ESMTP id IAA25223; Tue, 7 Jul 1998 08:10:47 -0700 (PDT) Message-Id: <199807071510.IAA25223@implode.root.com> To: Samuel S Thomas cc: Poul-Henning Kamp , freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited when not routing In-reply-to: Your message of "Tue, 07 Jul 1998 14:58:02 -0000." <19980707145802.D1918@lart.net> From: David Greenman Reply-To: dg@root.com Date: Tue, 07 Jul 1998 08:10:47 -0700 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >> It is probably a bug that source route IP options are processed at all >> when a machine isn't configured for IP forwarding. While fixing this would >> supress your warnings, it wouldn't fix the real problem which is why the >> machine is seeing the packets in the first place. > >This is exactly my point. This is mentioned fairly clearly in rfc1122, >also. I will agree to work with the PAO people on determining how those >packets are getting to the IP layer without being discarded by the >interface, so long as you core kernel-hacker types agree that the kernel >should know whether or not it's routing, and check IP src/dst addresses >accordingly. Fair enough? You deleted the first part of what I said which was that checking source/ destination IP address doesn't work at this point since it will never match for routers. The IP address is of course checked when the destination is the local machine. I should also like to point out that when IP forwarding is disabled, FreeBSD doesn't forward source routed packets where the destination is not the local machine. It does process the source route IP options prior to discarding the packet in the !ipforward case, however, and that is why the console message comes out and also why the ICMP message is sent. I'll fix this in a few minutes. > There does appear to be a check in their if_ep.c, though... That check is only for promiscuous mode. This tells us that bogus packets are getting through even though promiscuous mode [apparantly] isn't enabled. -DG David Greenman Co-founder/Principal Architect, The FreeBSD Project To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 08:24:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA13262 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 08:24:45 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from implode.root.com (implode.root.com [198.145.90.17]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA13251 for ; Tue, 7 Jul 1998 08:24:29 -0700 (PDT) (envelope-from root@implode.root.com) Received: from implode.root.com (localhost [127.0.0.1]) by implode.root.com (8.8.5/8.8.5) with ESMTP id IAA25300; Tue, 7 Jul 1998 08:19:23 -0700 (PDT) Message-Id: <199807071519.IAA25300@implode.root.com> To: Samuel S Thomas cc: Poul-Henning Kamp , freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited when not routing In-reply-to: Your message of "Tue, 07 Jul 1998 14:58:02 -0000." <19980707145802.D1918@lart.net> From: David Greenman Reply-To: dg@root.com Date: Tue, 07 Jul 1998 08:19:23 -0700 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This should supress the console message and bogus ICMP response when IP forwarding isn't enabled. Please test. -DG David Greenman Co-founder/Principal Architect, The FreeBSD Project Index: ip_input.c =================================================================== RCS file: /home/ncvs/src/sys/netinet/ip_input.c,v retrieving revision 1.50.2.13 diff -c -r1.50.2.13 ip_input.c *** ip_input.c 1998/02/26 17:17:09 1.50.2.13 --- ip_input.c 1998/07/07 15:17:48 *************** *** 953,968 **** } if (!ip_dosourceroute) { ! char buf[4*sizeof "123"]; nosourcerouting: ! strcpy(buf, inet_ntoa(ip->ip_dst)); ! log(LOG_WARNING, ! "attempted source route from %s to %s\n", ! inet_ntoa(ip->ip_src), buf); ! type = ICMP_UNREACH; ! code = ICMP_UNREACH_SRCFAIL; ! goto bad; } /* --- 953,971 ---- } if (!ip_dosourceroute) { ! if (ipforwarding) { ! char buf[16]; /* aaa.bbb.ccc.ddd\0 */ nosourcerouting: ! strcpy(buf, inet_ntoa(ip->ip_dst)); ! log(LOG_WARNING, ! "attempted source route from %s to %s\n", ! inet_ntoa(ip->ip_src), buf); ! type = ICMP_UNREACH; ! code = ICMP_UNREACH_SRCFAIL; ! goto bad; ! } ! break; } /* To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 09:18:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA21652 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 09:18:09 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from k2.lart.net (k2.lart.net [205.240.209.213]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA21571 for ; Tue, 7 Jul 1998 09:18:03 -0700 (PDT) (envelope-from sthomas@k2.lart.net) Received: (from sthomas@localhost) by k2.lart.net (8.8.7/8.8.7) id QAA24802; Tue, 7 Jul 1998 16:23:25 GMT Message-ID: <19980707162324.A13902@lart.net> Date: Tue, 7 Jul 1998 16:23:24 +0000 From: Samuel S Thomas To: dg@root.com Cc: Poul-Henning Kamp , freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited when not routing References: <19980707145802.D1918@lart.net> <199807071519.IAA25300@implode.root.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1 In-Reply-To: <199807071519.IAA25300@implode.root.com>; from David Greenman on Tue, Jul 07, 1998 at 08:19:23AM -0700 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org have patched, compile should only take 3 or 4 days ;-) (486sx33 laptop...yawn) will test this at work, also...have a few FreeBSD boxes lying about that I can play with. btw, after scrolling through the if_ep.c code again with my bloodshot eyes, it does appear that it may be setting the card up as promiscuous for multicast. is there a way to disable multicast to test that theory? (only handbook/faq info I could find cheerfully states that it's enabled by default) much thanks, Sam p.s. (what's with the change in buf[] definition? trying to spare the extra cycles? ;-) On Tue, Jul 07, 1998 at 08:19:23AM -0700, David Greenman wrote: > This should supress the console message and bogus ICMP response when > IP forwarding isn't enabled. Please test. > > -DG > > David Greenman > Co-founder/Principal Architect, The FreeBSD Project To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 09:32:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA24377 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 09:32:34 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from implode.root.com (implode.root.com [198.145.90.17]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA24372 for ; Tue, 7 Jul 1998 09:32:32 -0700 (PDT) (envelope-from root@implode.root.com) Received: from implode.root.com (localhost [127.0.0.1]) by implode.root.com (8.8.5/8.8.5) with ESMTP id JAA26661; Tue, 7 Jul 1998 09:27:02 -0700 (PDT) Message-Id: <199807071627.JAA26661@implode.root.com> To: Samuel S Thomas cc: Poul-Henning Kamp , freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited when not routing In-reply-to: Your message of "Tue, 07 Jul 1998 16:23:24 -0000." <19980707162324.A13902@lart.net> From: David Greenman Reply-To: dg@root.com Date: Tue, 07 Jul 1998 09:27:01 -0700 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >have patched, compile should only take 3 or 4 days ;-) (486sx33 >laptop...yawn) will test this at work, also...have a few FreeBSD boxes Don't bother. It doesn't work correctly. The code thinks that the packet is local and ends up generating a ICMP port-unreachable...which is quite bogus. I think I know what is wrong, but the fix is ugly. >lying about that I can play with. btw, after scrolling through the >if_ep.c code again with my bloodshot eyes, it does appear that it may be >setting the card up as promiscuous for multicast. is there a way to >disable multicast to test that theory? (only handbook/faq info I could >find cheerfully states that it's enabled by default) There should be a device flag to enable all multicasts; it should not be necessary to set promiscuous mode. >p.s. (what's with the change in buf[] definition? trying to spare the >extra cycles? ;-) Code readability. -DG David Greenman Co-founder/Principal Architect, The FreeBSD Project To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 09:46:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA25835 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 09:46:25 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from alpha.xerox.com (omega.Xerox.COM [13.1.64.95]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id JAA25829 for ; Tue, 7 Jul 1998 09:46:24 -0700 (PDT) (envelope-from fenner@parc.xerox.com) Received: from crevenia.parc.xerox.com ([13.2.116.11]) by alpha.xerox.com with SMTP id <40772(2)>; Tue, 7 Jul 1998 09:45:46 PDT Received: by crevenia.parc.xerox.com id <177515>; Tue, 7 Jul 1998 09:42:59 -0700 From: Bill Fenner To: dg@root.com, sthomas@lart.net Subject: Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited when not routing Cc: freebsd-bugs@FreeBSD.ORG, phk@critter.freebsd.dk Message-Id: <98Jul7.094259pdt.177515@crevenia.parc.xerox.com> Date: Tue, 7 Jul 1998 09:42:56 PDT Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'm not sure I agree the ICMP message is bogus. It's true that RFC1122 says that ICMP source route failed errors are only returned for incomplete (i.e. in-transit) source routes, but it also says that complete source routes MUST be passed up to the transport layer. Since we're not passing the packet up to the transport layer, it makes sense to send some kind of ICMP error. Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 09:48:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA26069 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 09:48:06 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from implode.root.com (implode.root.com [198.145.90.17]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA26023 for ; Tue, 7 Jul 1998 09:48:00 -0700 (PDT) (envelope-from root@implode.root.com) Received: from implode.root.com (localhost [127.0.0.1]) by implode.root.com (8.8.5/8.8.5) with ESMTP id JAA26863; Tue, 7 Jul 1998 09:42:55 -0700 (PDT) Message-Id: <199807071642.JAA26863@implode.root.com> To: Samuel S Thomas cc: Poul-Henning Kamp , freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited when not routing From: David Greenman Reply-To: dg@root.com Date: Tue, 07 Jul 1998 09:42:55 -0700 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I said: > Don't bother. It doesn't work correctly. The code thinks that the packet >is local and ends up generating a ICMP port-unreachable...which is quite >bogus. I think I know what is wrong, but the fix is ugly. Okay, a working fix is attached. Sorry about the last one. -DG David Greenman Co-founder/Principal Architect, The FreeBSD Project Index: ip_input.c =================================================================== RCS file: /home/ncvs/src/sys/netinet/ip_input.c,v retrieving revision 1.50.2.13 diff -c -r1.50.2.13 ip_input.c *** ip_input.c 1998/02/26 17:17:09 1.50.2.13 --- ip_input.c 1998/07/07 16:34:10 *************** *** 953,968 **** } if (!ip_dosourceroute) { ! char buf[4*sizeof "123"]; ! nosourcerouting: ! strcpy(buf, inet_ntoa(ip->ip_dst)); ! log(LOG_WARNING, ! "attempted source route from %s to %s\n", ! inet_ntoa(ip->ip_src), buf); ! type = ICMP_UNREACH; ! code = ICMP_UNREACH_SRCFAIL; ! goto bad; } /* --- 953,979 ---- } if (!ip_dosourceroute) { ! if (ipforwarding) { ! char buf[16]; /* aaa.bbb.ccc.ddd\0 */ ! /* ! * Acting as a router, so generate ICMP ! */ nosourcerouting: ! strcpy(buf, inet_ntoa(ip->ip_dst)); ! log(LOG_WARNING, ! "attempted source route from %s to %s\n", ! inet_ntoa(ip->ip_src), buf); ! type = ICMP_UNREACH; ! code = ICMP_UNREACH_SRCFAIL; ! goto bad; ! } else { ! /* ! * Not acting as a router, so silently drop. ! */ ! ipstat.ips_cantforward++; ! m_freem(m); ! return (1); ! } } /* To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 09:53:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA26584 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 09:53:28 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from implode.root.com (implode.root.com [198.145.90.17]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA26576 for ; Tue, 7 Jul 1998 09:53:26 -0700 (PDT) (envelope-from root@implode.root.com) Received: from implode.root.com (localhost [127.0.0.1]) by implode.root.com (8.8.5/8.8.5) with ESMTP id JAA27173; Tue, 7 Jul 1998 09:52:32 -0700 (PDT) Message-Id: <199807071652.JAA27173@implode.root.com> To: Bill Fenner cc: sthomas@lart.net, freebsd-bugs@FreeBSD.ORG, phk@critter.freebsd.dk Subject: Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited when not routing In-reply-to: Your message of "Tue, 07 Jul 1998 09:42:56 PDT." <98Jul7.094259pdt.177515@crevenia.parc.xerox.com> From: David Greenman Reply-To: dg@root.com Date: Tue, 07 Jul 1998 09:52:32 -0700 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >I'm not sure I agree the ICMP message is bogus. It's true that RFC1122 >says that ICMP source route failed errors are only returned for >incomplete (i.e. in-transit) source routes, but it also says that >complete source routes MUST be passed up to the transport layer. Since >we're not passing the packet up to the transport layer, it makes sense >to send some kind of ICMP error. ...but hosts shouldn't send ICMP unreachables: A host MUST silently discard an incoming datagram that is not destined for the host. An incoming datagram is destined for the host if the datagram's destination address field is: So if ipforwarding is 0, and the packet isn't for the local machine, then it must be silently discarded. -DG David Greenman Co-founder/Principal Architect, The FreeBSD Project To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 10:36:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA03574 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 10:36:02 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from alpha.xerox.com (omega.Xerox.COM [13.1.64.95]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id KAA03556 for ; Tue, 7 Jul 1998 10:35:57 -0700 (PDT) (envelope-from fenner@parc.xerox.com) Received: from crevenia.parc.xerox.com ([13.2.116.11]) by alpha.xerox.com with SMTP id <40774(2)>; Tue, 7 Jul 1998 10:35:20 PDT Received: from localhost by crevenia.parc.xerox.com with SMTP id <177515>; Tue, 7 Jul 1998 10:35:14 -0700 To: dg@root.com cc: Bill Fenner , sthomas@lart.net, freebsd-bugs@FreeBSD.ORG, phk@critter.freebsd.dk Subject: Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited when not routing In-reply-to: Your message of "Tue, 07 Jul 98 09:52:32 PDT." <199807071652.JAA27173@implode.root.com> Date: Tue, 7 Jul 1998 10:35:04 PDT From: Bill Fenner Message-Id: <98Jul7.103514pdt.177515@crevenia.parc.xerox.com> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I was under the impression that the packet *was* for the local machine, we were just discarding it since we're not accepting source routes. Having read more of the thread, it sounds like the ethernet driver is giving IP packets that it shouldn't, so you're right. Sorry for my confusion. Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 11:27:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA11633 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 11:27:01 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from istari.home.net (cc158233-a.catv1.md.home.com [24.3.25.17]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA11604; Tue, 7 Jul 1998 11:26:49 -0700 (PDT) (envelope-from sjr@home.net) Received: (from sjr@localhost) by istari.home.net (8.8.8/8.8.6) id OAA06100; Tue, 7 Jul 1998 14:26:16 -0400 (EDT) Date: Tue, 7 Jul 1998 14:26:16 -0400 (EDT) From: "Stephen J. Roznowski" Message-Id: <199807071826.OAA06100@istari.home.net> To: markm@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/6539 In-Reply-To: Mail from 'Mark Murray ' dated: Mon, 6 Jul 1998 17:04:23 -0700 (PDT) Cc: peter@netplex.com.au Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > From: Mark Murray > Date: Mon, 6 Jul 1998 17:04:23 -0700 (PDT) > Subject: Re: bin/6539 > > Synopsis: [PATCH] bmake version of perl5 available > > State-Changed-From-To: suspended-feedback > State-Changed-By: markm > State-Changed-When: Mon Jul 6 16:59:23 PDT 1998 > State-Changed-Why: > I am going to follow this one through to committal. > > There are some problems; 1) Please go through the supplied (bmaked) tarball > and remove the contrib/perl5 directory - please rather supply this as a > set of minimalist patches to make the software FreeBSD-aware. 2) If any files > need creaing (config.h springs to mind) then please rather put that in > src/usr.bin/include/. I'm confused by this message. Last I heard, Peter Wemm (peter@netplex.com.au) was going to do something on this -- I made a (feeble) offer to try to help if I could. This message sounds like you don't want perl5 under the contrib tree. I would think that it belongs there like the rest of the contrib software.... Just for the record, Peter sent the following problems (with the tar file): - it uses sdbm and dbm rather than the libc db - the contrib/perl5 sources appear to be fairly modified, and have been configured at least. The configure run doesn't appear to match the per5 port's settings or patches. - there doesn't seem to be any solution to adding perl modules with MakeMaker.. We need a way to be able to build and install modules, preferably being able to load them from /usr/local as well as /usr/libdata to avoid duplication. - it would be nice to be able to link it with other things in the base that want to use it, such as nvi.. - a make include file would be really nice, it could automate the building a good deal of the bundled modules as well as be usable by the ports system for the stack of CPAN modules there. To which I added: - you currently can't install man pages with ":"s in them [PR misc/6612] So, where do we go from here? Thanks, -SR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 12:04:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA16990 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 12:04:50 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from indigo.ie (nsmart@ts01-45.waterford.indigo.ie [194.125.139.108]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA16984 for ; Tue, 7 Jul 1998 12:04:45 -0700 (PDT) (envelope-from rotel@indigo.ie) Received: (from nsmart@localhost) by indigo.ie (8.8.8/8.8.7) id TAA03556; Tue, 7 Jul 1998 19:55:33 +0100 (IST) (envelope-from rotel@indigo.ie) From: Niall Smart Message-Id: <199807071855.TAA03556@indigo.ie> Date: Tue, 7 Jul 1998 19:55:33 +0000 In-Reply-To: David Greenman "Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited when not routing" (Jul 7, 9:42am) Reply-To: rotel@indigo.ie X-Mailer: Mail User's Shell (7.2.6 beta(3) 11/17/96) To: dg@root.com, Samuel S Thomas Subject: Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited when not routing Cc: Poul-Henning Kamp , freebsd-bugs@FreeBSD.ORG Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Jul 7, 9:42am, David Greenman wrote: } Subject: Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited wh > > if (!ip_dosourceroute) { > ! if (ipforwarding) { > ! char buf[16]; /* aaa.bbb.ccc.ddd\0 */ > ! /* > ! * Acting as a router, so generate ICMP > ! */ > nosourcerouting: > ! strcpy(buf, inet_ntoa(ip->ip_dst)); > ! log(LOG_WARNING, > ! "attempted source route from %s to %s\n", > ! inet_ntoa(ip->ip_src), buf); > ! type = ICMP_UNREACH; > ! code = ICMP_UNREACH_SRCFAIL; > ! goto bad; > ! } else { > ! /* > ! * Not acting as a router, so silently drop. > ! */ > ! ipstat.ips_cantforward++; > ! m_freem(m); > ! return (1); > ! } Hi, Does this patch mean that if a machine receives a source routed packet which is destined for it then it will be silently dropped if source routing is disabled? Shouldn't we log such occurences? Niall -- Niall Smart. PGP: finger njs3@motmot.doc.ic.ac.uk FreeBSD: Turning PC's into Workstations: www.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 12:27:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA20455 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 12:27:35 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from implode.root.com (implode.root.com [198.145.90.17]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA20397 for ; Tue, 7 Jul 1998 12:27:10 -0700 (PDT) (envelope-from root@implode.root.com) Received: from implode.root.com (localhost [127.0.0.1]) by implode.root.com (8.8.5/8.8.5) with ESMTP id MAA01531; Tue, 7 Jul 1998 12:20:49 -0700 (PDT) Message-Id: <199807071920.MAA01531@implode.root.com> To: rotel@indigo.ie cc: Samuel S Thomas , Poul-Henning Kamp , freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7191: FreeBSD 2.2.6 generates Source-route prohibited when not routing In-reply-to: Your message of "Tue, 07 Jul 1998 19:55:33 -0000." <199807071855.TAA03556@indigo.ie> From: David Greenman Reply-To: dg@root.com Date: Tue, 07 Jul 1998 12:20:49 -0700 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Does this patch mean that if a machine receives a source routed >packet which is destined for it then it will be silently dropped >if source routing is disabled? No, that is handled by code before this which sends the appropriate ICMP message to the peer. >Shouldn't we log such occurences? I actually think logging stuff like this on a host is a waste since legitimate utilities like traceroute can generate LSR packets. Logging this actually makes one vulnerable to syslogd attacks by simply sending a flood of LSR packets to the host. If people really want to log these sorts of failures then they should configure their firewall appropriately. -DG David Greenman Co-founder/Principal Architect, The FreeBSD Project To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 13:10:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA27008 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 13:10:23 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA26984 for ; Tue, 7 Jul 1998 13:10:17 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA08842; Tue, 7 Jul 1998 13:10:01 -0700 (PDT) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA26120; Tue, 7 Jul 1998 13:05:41 -0700 (PDT) (envelope-from nobody) Message-Id: <199807072005.NAA26120@hub.freebsd.org> Date: Tue, 7 Jul 1998 13:05:41 -0700 (PDT) From: gallatin@cs.duke.edu To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: i386/7201: (cpu == CPU_686) in pmap.c shoud also apply to CPU_PII, pmap_setdevram() disabled in wrong place Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7201 >Category: i386 >Synopsis: (cpu == CPU_686) in pmap.c shoud also apply to CPU_PII, pmap_setdevram() disabled in wrong place >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Jul 7 13:10:01 PDT 1998 >Last-Modified: >Originator: Andrew Gallatin >Organization: Duke University, Department of Computer Science >Release: FreeBSD 3.0-CURRENT >Environment: FreeBSD ladybug 3.0-CURRENT FreeBSD 3.0-CURRENT #10: Tue Jul 7 15:18:52 EDT 1998 gallatin@grasshopper.cs.duke.edu:/usr/src/sys/compile/TPZ i386 >Description: o Many Pentium Pro class features in pmap.c are enabled if cpu == CPU_686. With the recent addition of the CPU_PII, the CPU_PII cpu needs to be added to those tests. o The dangerous call to pmap_setdevram() which enables write combining on video cards in P6/PII machines is already disabled in vga_probe(). Others may want to enable write combining on other devices (like Myrinet cards) -- the immediate return in pmap_setdevram() should go away. >How-To-Repeat: Try enabling WC on a memory mapped PCI device on a PII ;-) >Fix: Index: pmap.c =================================================================== RCS file: /scratch/freebsd-cvs/src/sys/i386/i386/pmap.c,v retrieving revision 1.202 diff -c -r1.202 pmap.c *** pmap.c 1998/05/21 07:47:34 1.202 --- pmap.c 1998/07/07 18:42:08 *************** *** 458,464 **** { int i; ! if (cpu == CPU_686) { for(i = 0; i < NPPROVMTRR; i++) { PPro_vmtrr[i].base = rdmsr(PPRO_VMTRRphysBase0 + i * 2); PPro_vmtrr[i].mask = rdmsr(PPRO_VMTRRphysMask0 + i * 2); --- 458,464 ---- { int i; ! if ((cpu == CPU_686) || (cpu == CPU_PII)) { for(i = 0; i < NPPROVMTRR; i++) { PPro_vmtrr[i].base = rdmsr(PPRO_VMTRRphysBase0 + i * 2); PPro_vmtrr[i].mask = rdmsr(PPRO_VMTRRphysMask0 + i * 2); *************** *** 471,477 **** { int i; ! if (cpu == CPU_686) { wbinvd(); for(i = 0; i < NPPROVMTRR; i++) { wrmsr(PPRO_VMTRRphysBase0 + i * 2, PPro_vmtrr[i].base); --- 471,477 ---- { int i; ! if ((cpu == CPU_686) || (cpu == CPU_PII)) { wbinvd(); for(i = 0; i < NPPROVMTRR; i++) { wrmsr(PPRO_VMTRRphysBase0 + i * 2, PPro_vmtrr[i].base); *************** *** 483,489 **** void pmap_setvidram(void) { ! if (cpu == CPU_686) { wbinvd(); /* * Set memory between 0-640K to be WB --- 483,489 ---- void pmap_setvidram(void) { ! if ((cpu == CPU_686) || (cpu == CPU_PII)) { wbinvd(); /* * Set memory between 0-640K to be WB *************** *** 505,512 **** unsigned long long base; unsigned long long mask; ! return; ! if (cpu != CPU_686) return; free = -1; --- 505,511 ---- unsigned long long base; unsigned long long mask; ! if ((cpu != CPU_686) && (cpu != CPU_PII)) return; free = -1; *************** *** 2799,2805 **** cpu_invlpg(&prv_CPAGE3); #if defined(I686_CPU) ! if (cpu == CPU_686) i686_pagezero(&prv_CPAGE3); else #endif --- 2798,2804 ---- cpu_invlpg(&prv_CPAGE3); #if defined(I686_CPU) ! if ((cpu == CPU_686) || (cpu == CPU_PII)) i686_pagezero(&prv_CPAGE3); else #endif *************** *** 2820,2826 **** } #if defined(I686_CPU) ! if (cpu == CPU_686) i686_pagezero(CADDR2); else #endif --- 2819,2825 ---- } #if defined(I686_CPU) ! if ((cpu == CPU_686) || (cpu == CPU_PII)) i686_pagezero(CADDR2); else #endif >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 Jul 7 14:20:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA05488 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 14:20:21 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA05478 for ; Tue, 7 Jul 1998 14:20:17 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA11090; Tue, 7 Jul 1998 14:20:01 -0700 (PDT) Received: from gateman.zeus.leitch.com (gateman.zeus.leitch.com [204.187.61.193]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA04888 for ; Tue, 7 Jul 1998 14:15:48 -0700 (PDT) (envelope-from woods@tap.zeus.leitch.com) Received: from zeus.leitch.com (tap.zeus.leitch.com [204.187.61.10]) by gateman.zeus.leitch.com (8.8.5/8.7.3/1.0) with ESMTP id RAA22429 for ; Tue, 7 Jul 1998 17:14:18 -0400 (EDT) Received: from brain.zeus.leitch.com (brain.zeus.leitch.com [204.187.61.32]) by zeus.leitch.com (8.7.5/8.7.3/1.0) with ESMTP id RAA29414 for ; Tue, 7 Jul 1998 17:14:17 -0400 (EDT) Received: (from woods@localhost) by brain.zeus.leitch.com (8.8.8/8.8.8) id RAA24363; Tue, 7 Jul 1998 17:14:17 -0400 (EDT) (envelope-from woods@tap.zeus.leitch.com) Message-Id: <199807072114.RAA24363@brain.zeus.leitch.com> Date: Tue, 7 Jul 1998 17:14:17 -0400 (EDT) From: woods@zeus.leitch.com Reply-To: woods@zeus.leitch.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: i386/7202: boot.8 manual page doesn't mention that COMCONSOLE hardcodes the kernel Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7202 >Category: i386 >Synopsis: boot.8 manual page doesn't mention that COMCONSOLE hardcodes the kernel >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 Jul 7 14:20:01 PDT 1998 >Last-Modified: >Originator: Greg A. Woods >Organization: Planix, Inc.; Toronto, Ontario; Canada >Release: FreeBSD 2.2.6-STABLE i386 >Environment: FreeBSD brain.zeus.leitch.com 2.2.6-STABLE FreeBSD 2.2.6-STABLE #0: Mon Apr 6 15:05:13 EDT 1998 woods@brain.zeus.leitch.com:/var/work.d/Leitch-BSD-2.2/sys/compile/BRAIN i386 >Description: The '-h' option cannot toggle the kernel from a serial console if the kernel was built with COMCONSOLE >How-To-Repeat: Try using the boot '-h' option to toggle to the keyboard from the serial console when booting a kernel compiled with COMCONSOLE and observe that it has no effect. >Fix: Something like the following wording seems more appropriate: === cd /usr/src/sbin/reboot/ === /usr/bin/cvs diff -c boot_i386.8 Index: boot_i386.8 =================================================================== RCS file: /cvs/Leitch/FreeBSD-2.2/sbin/reboot/boot_i386.8,v retrieving revision 1.1.1.2 diff -c -r1.1.1.2 boot_i386.8 *** boot_i386.8 1998/03/31 22:40:09 1.1.1.2 --- boot_i386.8 1998/04/20 19:10:00 *************** *** 166,172 **** option to force the kernel to use the serial port as its console device. Alternatively, if you boot from the serial port, you can use this option to force the kernel to use the internal display ! as the console instead. .It Fl P probe the keyboard. If no keyboard is found, the .Fl D --- 166,174 ---- option to force the kernel to use the serial port as its console device. Alternatively, if you boot from the serial port, you can use this option to force the kernel to use the internal display ! as the console instead. This option has no effect if the kernel was ! compiled with ! .Em options COMCONSOLE . .It Fl P probe the keyboard. If no keyboard is found, the .Fl D === Exit status: 1 >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 15:19:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA12031 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 15:19:54 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: (from markm@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA12020; Tue, 7 Jul 1998 15:19:45 -0700 (PDT) (envelope-from markm) From: Mark Murray Message-Id: <199807072219.PAA12020@hub.freebsd.org> Subject: Re: bin/6539 In-Reply-To: <199807071826.OAA06100@istari.home.net> from "Stephen J. Roznowski" at "Jul 7, 98 02:26:16 pm" To: sjr@home.net (Stephen J. Roznowski) Date: Tue, 7 Jul 1998 15:19:45 -0700 (PDT) Cc: markm@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG, peter@netplex.com.au X-Mailer: ELM [version 2.4ME+ PL32 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > I'm confused by this message. Last I heard, Peter Wemm (peter@netplex.com.au) > was going to do something on this -- I made a (feeble) offer to try to help > if I could. Jordan has asked me to take charge of it. > This message sounds like you don't want perl5 under the contrib tree. I > would think that it belongs there like the rest of the contrib software.... You misread me :-). We want the perl5 that is in the contrib/ tree to be as unmodified as possible, only having those mods that are necessary. You submussion was full of binaries, created files and so forth. The created files should be created as a part of the build process, not stored in the contrib/perl5/* area. > Just for the record, Peter sent the following problems (with the tar file): > > - it uses sdbm and dbm rather than the libc db This is also true and relevant. > - the contrib/perl5 sources appear to be fairly modified, > and have been configured at least. The configure run > doesn't appear to match the per5 port's settings or patches. Yup. This should not be done. All the build stuff should happen in the /usr/obj area. > - there doesn't seem to be any solution to adding perl > modules with MakeMaker.. We need a way to be able to build > and install modules, preferably being able to load them > from /usr/local as well as /usr/libdata to avoid duplication. Agreed. > - it would be nice to be able to link it with other things > in the base that want to use it, such as nvi.. - a > make include file would be really nice, it > could automate the building a good deal of the bundled > modules as well as be usable by the ports system for the > stack of CPAN modules there. Yes. > To which I added: > > - you currently can't install man pages with ":"s in them > [PR misc/6612] True. > So, where do we go from here? I'll be back home in South Africa at the end of July. I'll so some serious hacking on it then. In the meanwhile, if you could address some of these problems, I would be grateful. M To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jul 7 15:40:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA13663 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 15:40:22 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA13649 for ; Tue, 7 Jul 1998 15:40:18 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA13416; Tue, 7 Jul 1998 15:40:02 -0700 (PDT) Received: from vinson.ca.sandia.gov (vinson.ca.sandia.gov [146.246.243.200]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA13450 for ; Tue, 7 Jul 1998 15:38:07 -0700 (PDT) (envelope-from bmah@vinson.ca.sandia.gov) Received: (from bmah@localhost) by vinson.ca.sandia.gov (8.8.8/8.8.8) id PAA09782; Tue, 7 Jul 1998 15:37:39 -0700 (PDT) (envelope-from bmah) Message-Id: <199807072237.PAA09782@vinson.ca.sandia.gov> Date: Tue, 7 Jul 1998 15:37:39 -0700 (PDT) From: bmah@ca.sandia.gov Reply-To: bmah@ca.sandia.gov To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: bin/7203: [PATCH] fetch -o - file:/path/name doesn't go to stdout Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7203 >Category: bin >Synopsis: [PATCH] fetch -o - file:/path/name doesn't go to stdout >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Jul 7 15:40:01 PDT 1998 >Last-Modified: >Originator: Bruce A. Mah >Organization: Sandia National Laboratories >Release: FreeBSD 2.2.6-RELEASE i386 >Environment: Observed on 2.2.6-RELEASE, but it appears that all versions of fetch(1) in the CVS tree have this problem. >Description: "fetch -o - url://file/name" generally retrieves the URL to stdout. However, in the case of "file:/" URLs, fetch(1) creates a file called "-" in the current directory, containing the file contents. >How-To-Repeat: fetch -o - /etc/hosts cat ./- >Fix: *** fetch.h.orig Tue Jul 7 15:06:41 1998 --- fetch.h Tue Jul 7 15:06:55 1998 *************** *** 36,41 **** --- 36,42 ---- #define BUFFER_SIZE 1024 #define FETCH_VERSION "fetch/1.0" #define PATH_CP "/bin/cp" + #define PATH_CAT "/bin/cat" struct fetch_state { const char *fs_status; *** file.c.orig Tue Jul 7 15:07:56 1998 --- file.c Tue Jul 7 15:13:18 1998 *************** *** 98,112 **** file_retrieve(struct fetch_state *fs) { struct stat sb; ! /* XXX - this seems bogus to me! */ ! if (access(fs->fs_outputfile, F_OK) == 0) { ! errno = EEXIST; ! warn("%s", fs->fs_outputfile); ! return EX_USAGE; } ! if (fs->fs_linkfile) { fs->fs_status = "checking path"; if (stat(fs->fs_proto, &sb) == -1) { warn("non-unexistent"); --- 98,116 ---- file_retrieve(struct fetch_state *fs) { struct stat sb; + int to_stdout; ! to_stdout = (strcmp(fs->fs_outputfile, "-") == 0); ! if (!to_stdout) { ! /* XXX - this seems bogus to me! */ ! if (access(fs->fs_outputfile, F_OK) == 0) { ! errno = EEXIST; ! warn("%s", fs->fs_outputfile); ! return EX_USAGE; ! } } ! if ((fs->fs_linkfile) && (!to_stdout)) { fs->fs_status = "checking path"; if (stat(fs->fs_proto, &sb) == -1) { warn("non-unexistent"); *************** *** 128,136 **** warn("fork"); return EX_TEMPFAIL; } else if (pid == 0) { ! execl(PATH_CP, "cp", "-p", fs->fs_proto, ! fs->fs_outputfile, (char *)0); ! warn("execl: " PATH_CP); fflush(stderr); _exit(EX_OSERR); } else { --- 132,146 ---- warn("fork"); return EX_TEMPFAIL; } else if (pid == 0) { ! if (to_stdout) { ! execl(PATH_CAT, "cat", fs->fs_proto, ! (char *)0); ! warn("execl: " PATH_CAT); ! } else { ! execl(PATH_CP, "cp", "-p", fs->fs_proto, ! fs->fs_outputfile, (char *)0); ! warn("execl: " PATH_CP); ! } fflush(stderr); _exit(EX_OSERR); } else { >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 Jul 7 18:00:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA07376 for freebsd-bugs-outgoing; Tue, 7 Jul 1998 18:00:55 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freebie.lemis.com (freebie.lemis.com [139.130.136.133] (may be forged)) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA07352; Tue, 7 Jul 1998 18:00:44 -0700 (PDT) (envelope-from grog@freebie.lemis.com) Received: (from grog@localhost) by freebie.lemis.com (8.9.0/8.9.0) id KAA14668; Wed, 8 Jul 1998 10:30:41 +0930 (CST) Message-ID: <19980708103041.R7792@freebie.lemis.com> Date: Wed, 8 Jul 1998 10:30:41 +0930 From: Greg Lehey To: Ahmon Dancy , Poul-Henning Kamp Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: bin/7189 References: <199807070941.CAA20179@freefall.freebsd.org> <199807071442.HAA08567@ultra.franz.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <199807071442.HAA08567@ultra.franz.com>; from Ahmon Dancy on Tue, Jul 07, 1998 at 07:42:46AM -0700 WWW-Home-Page: http://www.lemis.com/~grog Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-41-739-7062 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tuesday, 7 July 1998 at 7:42:46 -0700, Ahmon Dancy wrote: >>> Synopsis: ld doesn't look for libxxx.so >>> >>> State-Changed-From-To: open-closed >>> State-Changed-By: phk >>> State-Changed-When: Tue Jul 7 02:40:22 PDT 1998 >>> State-Changed-Why: >>> How would you tell which version of library you expect then ? >>> This clearly seem like a bad idea to me >>> . > > Wait! It works on the other operating systems, though! I agree that > it should use a version number if available.. but, if it doesn't find > a libxxx.so.m.n, it should accept a libxxx.so if it finds one. Agreed. Why is this a bad idea, Poul-Henning? Greg -- See complete headers for address and phone numbers finger grog@lemis.com for PGP public key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jul 8 02:30:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA09335 for freebsd-bugs-outgoing; Wed, 8 Jul 1998 02:30:43 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA09201 for ; Wed, 8 Jul 1998 02:30:26 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA02176; Wed, 8 Jul 1998 02:30:04 -0700 (PDT) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA08501; Wed, 8 Jul 1998 02:28:51 -0700 (PDT) (envelope-from nobody) Message-Id: <199807080928.CAA08501@hub.freebsd.org> Date: Wed, 8 Jul 1998 02:28:51 -0700 (PDT) From: girgen@partitur.se To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: bin/7209: /usr/src/secure/lib/libcrypt/Makefile refers to unknown var BINFORMAT Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7209 >Category: bin >Synopsis: /usr/src/secure/lib/libcrypt/Makefile refers to unknown var BINFORMAT >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Jul 8 02:30:04 PDT 1998 >Last-Modified: >Originator: Palle Girgensohn >Organization: Partitur >Release: 2.2-stable >Environment: FreeBSD trumpet.partitur.se 2.2.6-STABLE FreeBSD 2.2.6-STABLE #0: Tue Apr 28 09:17:47 CEST 1998 kudo@trumpet.partitur.se:/usr/src/sys/compile/PALLETRUMPET i386 >Description: When doing make on a src tree with the international security distribution, there seems to be a need for the variable BINFORMAT to be set to 'elf' or 'aout' somewhere, I presume make.conf is a good place? Maybe this would be mentioned somewhere? Or am I missing something? The problem first arises in /usr/src/secure/lib/libcrypt/Makefile >How-To-Repeat: set MAKE_KERBEROS4= yes in make.conf do: cvsup /usr/share/examples/cvsup/stable-supfile cvsup /usr/share/examples/cvsup/security-supfile cd /usr/src make clean >Fix: add BINFORMAT= to the default make.conf? with suggestion to which should be chosen, elf or aout. >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 Jul 8 03:40:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA26541 for freebsd-bugs-outgoing; Wed, 8 Jul 1998 03:40:18 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA26463 for ; Wed, 8 Jul 1998 03:40:09 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA00365; Wed, 8 Jul 1998 03:40:08 -0700 (PDT) Date: Wed, 8 Jul 1998 03:40:08 -0700 (PDT) Message-Id: <199807081040.DAA00365@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: "Jose M. Alcaide" Subject: Re: bin/5966: vi's spanish message catalog does not use ISO-8859-1 characters Reply-To: "Jose M. Alcaide" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/5966; it has been noted by GNATS. From: "Jose M. Alcaide" To: freebsd-gnats-submit@freebsd.org, jose@we.lc.ehu.es Cc: Subject: Re: bin/5966: vi's spanish message catalog does not use ISO-8859-1 characters Date: Wed, 08 Jul 1998 12:25:03 +0200 This is a multi-part message in MIME format. --------------3FBAC3809B1EEA53F9532A1F Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit As this PR continues open, and FreeBSD 2.2.7 will be released soon, I'm sending the two files "spanish.base" and "spanish" that should replace the so named files in src/contrib/nvi/catalog. Then, this PR could be closed. I'm sending the two files as MIME attachments. -- JM ----------------------------------------------------------------------- Jose M. Alcaide | mailto:jose@we.lc.ehu.es Universidad del Pais Vasco | http://www.we.lc.ehu.es/~jose Dpto. de Electricidad y Electronica | Facultad de Ciencias - Campus de Lejona | Tel.: +34-944647700 x2624 48940 Lejona (Vizcaya) - SPAIN | Fax: +34-944858139 ----------------------------------------------------------------------- "Go ahead... make my day." - H. Callahan --------------3FBAC3809B1EEA53F9532A1F Content-Type: text/plain; charset=iso-8859-1; name="spanish.base" Content-Transfer-Encoding: 8bit Content-Disposition: inline; filename="spanish.base" 002 "Desbordamiento de longitud de línea" 003 "no se puede borrar la línea %lu" 004 "no se puede añadir la línea %lu" 005 "no se puede insertar en la línea %lu" 006 "no se puede guardar la línea %lu" 007 "no se puede obtener la última línea" 008 "Error: no se puede recuperar la línea %lu" 009 "Archivo de log" 010 "No se realiza log, no se puede deshacer" 011 "No hay cambios para deshacer" 012 "No se realiza log, no se puede deshacer" 013 "No se realiza log, no se puede remontar hacia adelante" 014 "No hay cambios para rehacer" 015 "%s/%d: error de log" 016 "La entrada y salida estándar de Vi debe ser una terminal" 017 "Marcar %s: no determinado" 018 "Marcar %s: se borró la línea" 019 "Marcar %s: la posición del cursor ya no existe" 020 "Error: " 021 "nuevo archivo" 022 "nombre cambiado" 023 "modificado" 024 "no modificado" 025 "DESTRABADO" 026 "lectura solamente" 027 "línea %lu de %lu [%ld%%]" 028 "archivo vacío" 029 "línea %lu" 030 "El archivo %s no es un catálogo de mensajes" 031 "No se puede determinar la opción por omisión %s" 032 "Uso: %s" 033 "determinar: no hay opción %s: 'determinar todo' establece todos los valores de opción" 034 "determinar: [no] hay opción %s no tiene valor" 035 "determinar: opción %s no es booleano" 036 "determinar: opción %s: %s" 037 "determinar: opción %s: %s: desbordamiento de valores" 038 "determinar: opción %s: %s es un número ilegal" 039 "determinar: opción %s no es booleano" 040 "Las columnas en pantalla son demasiado pequeñas, menos de %d" 041 "Las columnas en pantalla son demasiado grandes, más de %d" 042 "Las líneas en pantalla son demasiado pequeñas, menos de %d" 043 "Las líneas en pantalla son demasiado grandes, más de %d" 044 "La opción lisp no está implementada" 045 "mensajes no desconectados: %s" 046 "mensajes no conectados: %s" 048 "La opción de párrafo debe estar en dos grupos de caracteres" 049 "La opción de sección debe estar en dos grupos de caracteres" 053 "El buffer por omisión está vacío" 054 "El buffer %s está vacío" 055 "Los archivos con nuevas líneas en el nombre son irrecuperables" 056 "Las modificaciones no pueden recuperarse si la sesión falla" 057 "Copiando archivo para recuperación..." 058 "Preservación fracasada: %s" 059 "Las modificaciones no pueden recuperarse si la sesión falla" 060 "Archivo de respaldo fracasado: %s" 061 "Copiando archivo para recuperación..." 062 "Información sobre identificación del usuario %u no encontrada" 063 "No se puede trabar archivo de recuperación" 064 "Desbordamiento de buffer de archivo de recuperación" 065 "Archivo de recuperación" 066 "%s: archivo de recuperación defectuoso" 067 "%s: archivo de recuperación defectuoso" 068 "No hay archivos denominados %s, que usted pueda leer, para recuperar" 069 "Existen versiones más antiguas de este archivo que usted puede recuperar" 070 "Existen otros archivos que usted puede recuperar" 071 "no envía email: %s" 072 "Archivo vacío; no hay nada para buscar" 073 "Se alcanzó el final del archivo sin encontrar el patrón" 074 "No hay patrón anterior de búsqueda" 075 "No se encontró el patrón" 076 " Se alcanzó el principio del archivo sin encontrar el patrón" 077 "Búsqueda reiniciada" 078 "Buscando..." 079 "No se encontró ningún carácter no imprimible" 080 "Nombre de comando desconocido" 082 "%s: comando no disponible en modalidad ex" 083 "La cuenta no puede ser cero" 084 "%s: mala especificación de línea" 085 "Error interno de tabla de sintaxis (%s: %s)" 086 "Uso: %s" 087 "%s: buffer temporario no liberado" 088 "Desplazamiento de marcador a antes de la línea 1" 089 "Desplazamiento de marcador más allá del final del archivo" 090 "@ con rango que corre cuando se cambia el archivo/la pantalla" 091 "Comando global/v que corre cuando se cambia el archivo/la pantalla" 092 "Comando Ex fracasado: comandos pendientes descartados" 093 "Comando Ex fracasado: teclas mapeadas descartadas" 094 "La segunda dirección es más pequeña que la primera" 095 "No se suministra nombre de marca" 096 "\\ no es seguido por / o ?" 097 "Referencia a un número de línea menor que 0" 098 "El comando %s es desconocido" 099 "Desbordamiento de valor de dirección" 100 "Subdesbordamiento de valor de dirección" 101 "Combinación de dirección ilegal" 102 "Dirección ilegal: sólo %lu líneas en el archivo" 103 "Dirección ilegal: el archivo está vacío" 104 "El comando %s no permite una dirección de 0" 105 "No hay abreviaturas para visualizar" 106 "Las abreviaturas deben terminar con un carácter de \"palabra\" " 107 "Las abreviaturas no pueden contener tabs o espacios" 108 "Las abreviaturas no pueden mezclar caracteres palabra/no-palabra, salvo al final" 109 "\"%s\" no es una abreviatura" 110 "Comando Vi fracasado: teclas mapeadas descartadas" 111 "No hay más archivos para editar" 112 "No hay archivos anteriores para editar" 113 "No hay archivos anteriores para rebobinar" 114 "No hay lista de archivos para visualizar" 115 "No hay un comando anterior para reemplazar a \"!\"" 116 "No hay nombre de archivo para sustituir por %%" 117 "No hay nombre de archivo para sustituir por #" 118 "Error: execl: %s" 119 "Error de E/S: %s" 120 "Archivo modificado desde la última escritura completa; escribir o usar ! para alterar" 121 "No se puede encontrar la ubicación del directorio inicial" 122 "Nuevo directorio actual: %s" 123 "No hay buffers sueltos para visualizar" 124 "El comando %s no puede usarse como parte de un comando global o v" 125 "%s/%s: sin fuente: no le pertenece a usted o a raíz" 126 "%s/%s: sin fuente: no le pertenece a usted" 127 "%s/%s: sin fuente: puede ser escrito por un usuario que no sea el propietario" 128 "%s: sin fuente: no le pertenece a usted o a raíz" 129 "%s: sin fuente: no le pertenece a usted" 130 "%s: sin fuente: puede ser escrito por un usuario que no sea el propietario" 131 "No hay líneas siguientes para unir" 132 "No hay anotaciones de mapa de entrada" 133 "No hay anotaciones de mapa de comando" 134 "El carácter %s no puede remapearse" 135 "\"%s\" no está mapeado actualmente" 136 "Marca de nombres debe ser un sólo carácter" 137 "%s existe, no está escrito; usar ! para alterar" 138 "Nuevo archivo exrc: %s" 139 "La línea de destino se encuentra dentro del rango de movimiento" 140 "El comando abierto requiere que se determine la opción abierta" 141 "El comando abierto no se ha implementado aún" 142 "No es posible preservar este archivo" 143 "Archivo preservado" 144 "%s: expandido a demasiados nombres de archivo" 145 "Sólo pueden leerse los archivos regulares y los conductos nombrados" 146 "%s: traba de lectura no disponible" 147 "Leyendo..." 148 "%s: %lu líneas, %lu caracteres" 149 "No hay pantallas de fondo para mostrar" 150 "El comando de script sólo está disponible en modalidad vi" 151 "No hay comando para ejecutar" 152 "opción de ancho de desplazamiento en 0" 153 "Desbordamiento de cuenta" 154 "Subdesbordamiento de cuenta" 155 "Expresión regular especificada; marcador r no tiene significado" 156 "Los marcadores #, l y p no pueden combinarse con el marcador c en la modalidad vi" 157 "No se encontró coincidencia" 158 "No se ingresó un identificador anterior" 159 "Se encontraron menos de %s anotaciones en la pila de identificadores; usar :visualizar i[dentificadores]" 160 "No hay archivo %s en la pila de identificadores al que se pueda volver; usar :visualizar i[dentificadores]" 161 "Presionar Intro para continuar: " 162 "%s: no se encontró el identificador" 163 "%s: identificador corrompido en %s" 164 "%s: el número de línea del identificador es posterior al final del archivo" 165 "La pila de identificadores está vacía" 166 "%s: patrón de búsqueda no encontrado" 167 "%d archivos más para editar" 168 "El buffer %s está vacío" 169 "¿Confirmar cambio? [n]" 170 "Interrumpido" 171 "No hay buffer anterior para ejecutar" 172 "No hay expresión regular anterior" 173 "El comando %s requiere que se haya leído un archivo" 174 "Uso: %s" 175 "El comando visual requiere que se determine la opción abierta" 177 "Archivo vacío" 178 "No hay búsqueda F, f, T o t anterior" 179 "%s no se encontró" 180 "No hay archivo anterior para editar" 181 "El cursor no está en un número" 182 "El número resultante es demasiado grande" 183 " El número resultante es demasiado pequeño" 184 "No hay carácter coincidente en esta línea" 185 "No se encontró un carácter coincidente" 186 "No hay caracteres para reemplazar" 187 "No hay otra pantalla a la que se pueda pasar" 188 "Caracteres después de cadena de búsqueda, desplazamiento de línea y/o comando z" 189 "No hay patrón anterior de búsqueda" 190 "Búsqueda vuelve a la posición inicial" 191 "Se superó el límite de expansión de abreviatura: se descartaron caracteres" 192 "Carácter ilegal; mencionar para entrar" 193 "Ya se encuentra al principio de la inserción" 194 "No hay más caracteres para borrar" 195 "Movimiento más allá del final del archivo" 196 "Movimiento más allá del final de la línea" 197 "No hay movimiento del cursor" 198 "Ya se encuentra al principio del archivo" 199 "Movimiento más allá del principio del archivo" 200 "Ya se encuentra en la primera columna" 201 "Los buffers deben especificarse antes del comando" 202 "Ya se encuentra al final del archivo" 203 "Ya se encuentra al final de la línea" 204 "%s no es un comando vi" 205 "Uso: %s" 206 "No hay caracteres para borrar" 207 "El comando Q requiere la interfase de terminal ex" 208 "No hay comando para repetir" 209 "El archivo está vacío" 209 "El archivo está vacío" 210 "%s no puede usarse como comando de movimiento" 211 "Ya se encuentra en modalidad de comando" 212 "El cursor no se encuentra en una palabra" 214 "El valor de opción de Windows es demasiado grande, el máx. es %u" 215 "Añadir" 216 "Cambiar" 217 "Comando" 218 "Insertar" 219 "Reemplazar" 220 "El movimiento va más allá del final de la pantalla" 221 "El movimiento va más allá del principio de la pantalla" 222 "La pantalla debe tener más de %d líneas para dividirse" 223 "No hay pantallas de fondo" 224 "No hay pantalla de fondo editando un archivo denominado %s" 225 "No se puede poner fondo a la única pantalla que se visualiza" 226 "La pantalla sólo puede reducirse a %d hileras" 227 "La pantalla no puede reducirse" 228 "La pantalla no puede aumentarse" 230 "Esta pantalla no puede suspenderse" 231 "Interrumpido: teclas mapeadas descartadas" 232 "vi: buffer temporario no liberado" 233 "Esta terminal no tiene tecla %s" 234 "Sólo un buffer puede especificarse" 235 "Número mayor que %lu" 236 "Interrumpido" 237 "No se puede crear archivo temporario" 238 "Advertencia: %s no es un archivo regular" 239 "%s ya se encuentra trabado, la sesión es de lectura solamente" 240 "%s: eliminar" 241 "%s: cerrar" 242 "%s: eliminar" 243 "%s: eliminar" 244 "Archivo de lectura solamente, no escrito; usar ! para alterar" 245 " Archivo de lectura solamente, no escrito" 246 "%s existe, no escrito; usar ! para alterar" 247 "%s existe, no escrito" 248 "Archivo parcial, no escrito; usar ! para alterar" 249 "Archivo parcial, no escrito" 250 "%s: archivo modificado más recientemente que esta copia; usar ! para alterar" 251 "%s: archivo modificado más recientemente que esta copia" 252 "%s: la traba de escritura no estaba disponible" 253 "Escribiendo..." 254 "%s: ADVERTENCIA: ARCHIVO TRUNCADO" 255 "Ya se encuentra en el primer identificador de este grupo" 256 "%s: nuevo archivo: %lu líneas, %lu caracteres" 257 "%s: %lu líneas, %lu caracteres" 258 "%s expandido a demasiados nombres de archivos" 259 "%s: no es un archivo regular" 260 "%s: no le pertenece" 261 "%s: accesible por un usuario que no sea el propietario" 262 "Archivo modificado desde la última escritura completa; escribir o usar ! para alterar" 263 "Archivo modificado desde la última escritura completa; escribir o usar :editar! para alterar" 264 "Archivo modificado desde la última escritura completa; escribir o usar ! para alterar" 265 "El archivo es temporario; al salir se descartarán las modificaciones" 266 "Archivo de lectura solamente, las modificaciones no se autoescriben" 267 "Se reinició el log" 268 "confirmar? [snq]" 269 "Presionar cualquier tecla para continuar: " 270 "Presionar cualquier tecla para continuar [: para ingresar más comandos ex]: " 271 "Presionar cualquier tecla para continuar [q para salir]: " 272 "Esta forma de %s requiere la interfase terminal ex" 273 "Ingresando en la modalidad de entrada ex." 274 "Comando fracasado, no hay archivo leído aun." 275 " cont?" 276 "Evento inesperado de carácter" 277 "Evento inesperado de final de archivo" 278 "No hay coincidencias para consulta" 279 "Evento inesperado de interrupción" 280 "Evento inesperado de salida" 281 "Evento inesperado de repintura" 282 "Ya se encuentra en el último identificador de este grupo" 283 "El comando %s requiere la interfase terminal ex" 284 "Esta forma de %s no se encuentra soportada cuando se determina la opción de edición segura" 285 "Evento inesperado de cadena" 286 "Evento inesperado de tiempo excedido" 287 "Evento inesperado de escritura" 289 "Las expansiones de shell no se encuentran soportadas cuando se determina la opción de edición segura" 290 "El comando %s no se encuentra soportado cuando se determina la opción de edición segura" 291 "determinar: la opción %s puede no estar desconectada" 292 "El monitor es demasiado pequeño." 293 "agregado" 294 "cambiado" 295 "borrado" 296 "unido" 297 "movido" 298 "desplazado" 299 "arrancado" 300 "línea" 301 "líneas" 302 "Vi no se cargó con un intérprete Tcl" 303 "Archivo modificado desde la última escritura." 304 "Expansión de shell fracasada" 304 "Expansión de shell fracasada" 305 "No hay opción de edición %s especificada" 306 "Vi no se cargó con un intérprete Perl" 307 "No hay comando ex para ejecutar" 308 "Ingresar para ejecutar un comando, :q para salir" 309 "Usar \"cscope ayuda\" para obtener ayuda" 310 "No hay conexiones cscope corriendo" 311 "%s: tipo de búsqueda desconocido: usar uno de %s" 312 "%d: no existe esta sesión cscope" 313 "determinar: la opción %s no puede conectarse nunca" 314 "determinar: la opción %s no puede determinarse nunca en 0" 315 "%s: añadido: %lu líneas, %lu caracteres" 316 "Evento inesperado de modificación de tamaño" 317 "%d archivos para editar" --------------3FBAC3809B1EEA53F9532A1F Content-Type: text/plain; charset=iso-8859-1; name="spanish" Content-Transfer-Encoding: 8bit Content-Disposition: inline; filename="spanish" VI_MESSAGE_CATALOG Desbordamiento de longitud de líneaX no se puede borrar la línea %luX no se puede añadir la línea %luX no se puede insertar en la línea %luX no se puede guardar la línea %luX no se puede obtener la última líneaX Error: no se puede recuperar la línea %luX Archivo de logX No se realiza log, no se puede deshacerX No hay cambios para deshacerX No se realiza log, no se puede deshacerX No se realiza log, no se puede remontar hacia adelanteX No hay cambios para rehacerX %s/%d: error de logX La entrada y salida estándar de Vi debe ser una terminalX Marcar %s: no determinadoX Marcar %s: se borró la líneaX Marcar %s: la posición del cursor ya no existeX Error: X nuevo archivoX nombre cambiadoX modificadoX no modificadoX DESTRABADOX lectura solamenteX línea %lu de %lu [%ld%%]X archivo vacíoX línea %luX El archivo %s no es un catálogo de mensajesX No se puede determinar la opción por omisión %sX Uso: %sX determinar: no hay opción %s: 'determinar todo' establece todos los valores de opciónX determinar: [no] hay opción %s no tiene valorX determinar: opción %s no es booleanoX determinar: opción %s: %sX determinar: opción %s: %s: desbordamiento de valoresX determinar: opción %s: %s es un número ilegalX determinar: opción %s no es booleanoX Las columnas en pantalla son demasiado pequeñas, menos de %dX Las columnas en pantalla son demasiado grandes, más de %dX Las líneas en pantalla son demasiado pequeñas, menos de %dX Las líneas en pantalla son demasiado grandes, más de %dX La opción lisp no está implementadaX mensajes no desconectados: %sX mensajes no conectados: %sX La opción de párrafo debe estar en dos grupos de caracteresX La opción de sección debe estar en dos grupos de caracteresX El buffer por omisión está vacíoX El buffer %s está vacíoX Los archivos con nuevas líneas en el nombre son irrecuperablesX Las modificaciones no pueden recuperarse si la sesión fallaX Copiando archivo para recuperación...X Preservación fracasada: %sX Las modificaciones no pueden recuperarse si la sesión fallaX Archivo de respaldo fracasado: %sX Copiando archivo para recuperación...X Información sobre identificación del usuario %u no encontradaX No se puede trabar archivo de recuperaciónX Desbordamiento de buffer de archivo de recuperaciónX Archivo de recuperaciónX %s: archivo de recuperación defectuosoX %s: archivo de recuperación defectuosoX No hay archivos denominados %s, que usted pueda leer, para recuperarX Existen versiones más antiguas de este archivo que usted puede recuperarX Existen otros archivos que usted puede recuperarX no envía email: %sX Archivo vacío; no hay nada para buscarX Se alcanzó el final del archivo sin encontrar el patrónX No hay patrón anterior de búsquedaX No se encontró el patrónX Se alcanzó el principio del archivo sin encontrar el patrónX Búsqueda reiniciadaX Buscando...X No se encontró ningún carácter no imprimibleX Nombre de comando desconocidoX %s: comando no disponible en modalidad exX La cuenta no puede ser ceroX %s: mala especificación de líneaX Error interno de tabla de sintaxis (%s: %s)X Uso: %sX %s: buffer temporario no liberadoX Desplazamiento de marcador a antes de la línea 1X Desplazamiento de marcador más allá del final del archivoX @ con rango que corre cuando se cambia el archivo/la pantallaX Comando global/v que corre cuando se cambia el archivo/la pantallaX Comando Ex fracasado: comandos pendientes descartadosX Comando Ex fracasado: teclas mapeadas descartadasX La segunda dirección es más pequeña que la primeraX No se suministra nombre de marcaX \\ no es seguido por / o ?X Referencia a un número de línea menor que 0X El comando %s es desconocidoX Desbordamiento de valor de direcciónX Subdesbordamiento de valor de direcciónX Combinación de dirección ilegalX Dirección ilegal: sólo %lu líneas en el archivoX Dirección ilegal: el archivo está vacíoX El comando %s no permite una dirección de 0X No hay abreviaturas para visualizarX Las abreviaturas deben terminar con un carácter de \"palabra\" X Las abreviaturas no pueden contener tabs o espaciosX Las abreviaturas no pueden mezclar caracteres palabra/no-palabra, salvo al finalX \"%s\" no es una abreviaturaX Comando Vi fracasado: teclas mapeadas descartadasX No hay más archivos para editarX No hay archivos anteriores para editarX No hay archivos anteriores para rebobinarX No hay lista de archivos para visualizarX No hay un comando anterior para reemplazar a \"!\"X No hay nombre de archivo para sustituir por %%X No hay nombre de archivo para sustituir por #X Error: execl: %sX Error de E/S: %sX Archivo modificado desde la última escritura completa; escribir o usar ! para alterarX No se puede encontrar la ubicación del directorio inicialX Nuevo directorio actual: %sX No hay buffers sueltos para visualizarX El comando %s no puede usarse como parte de un comando global o vX %s/%s: sin fuente: no le pertenece a usted o a raízX %s/%s: sin fuente: no le pertenece a ustedX %s/%s: sin fuente: puede ser escrito por un usuario que no sea el propietarioX %s: sin fuente: no le pertenece a usted o a raízX %s: sin fuente: no le pertenece a ustedX %s: sin fuente: puede ser escrito por un usuario que no sea el propietarioX No hay líneas siguientes para unirX No hay anotaciones de mapa de entradaX No hay anotaciones de mapa de comandoX El carácter %s no puede remapearseX \"%s\" no está mapeado actualmenteX Marca de nombres debe ser un sólo carácterX %s existe, no está escrito; usar ! para alterarX Nuevo archivo exrc: %sX La línea de destino se encuentra dentro del rango de movimientoX El comando abierto requiere que se determine la opción abiertaX El comando abierto no se ha implementado aúnX No es posible preservar este archivoX Archivo preservadoX %s: expandido a demasiados nombres de archivoX Sólo pueden leerse los archivos regulares y los conductos nombradosX %s: traba de lectura no disponibleX Leyendo...X %s: %lu líneas, %lu caracteresX No hay pantallas de fondo para mostrarX El comando de script sólo está disponible en modalidad viX No hay comando para ejecutarX opción de ancho de desplazamiento en 0X Desbordamiento de cuentaX Subdesbordamiento de cuentaX Expresión regular especificada; marcador r no tiene significadoX Los marcadores #, l y p no pueden combinarse con el marcador c en la modalidad viX No se encontró coincidenciaX No se ingresó un identificador anteriorX Se encontraron menos de %s anotaciones en la pila de identificadores; usar :visualizar i[dentificadores]X No hay archivo %s en la pila de identificadores al que se pueda volver; usar :visualizar i[dentificadores]" Presionar Intro para continuar: X %s: no se encontró el identificadorX %s: identificador corrompido en %sX %s: el número de línea del identificador es posterior al final del archivoX La pila de identificadores está vacíaX %s: patrón de búsqueda no encontradoX %d archivos más para editarX El buffer %s está vacíoX ¿Confirmar cambio? [n]X InterrumpidoX No hay buffer anterior para ejecutarX No hay expresión regular anteriorX El comando %s requiere que se haya leído un archivoX Uso: %sX El comando visual requiere que se determine la opción abiertaX Archivo vacíoX No hay búsqueda F, f, T o t anteriorX %s no se encontróX No hay archivo anterior para editarX El cursor no está en un númeroX El número resultante es demasiado grandeX El número resultante es demasiado pequeñoX No hay carácter coincidente en esta líneaX No se encontró un carácter coincidenteX No hay caracteres para reemplazarX No hay otra pantalla a la que se pueda pasarX Caracteres después de cadena de búsqueda, desplazamiento de línea y/o comando zX No hay patrón anterior de búsquedaX Búsqueda vuelve a la posición inicialX Se superó el límite de expansión de abreviatura: se descartaron caracteresX Carácter ilegal; mencionar para entrarX Ya se encuentra al principio de la inserciónX No hay más caracteres para borrarX Movimiento más allá del final del archivoX Movimiento más allá del final de la líneaX No hay movimiento del cursorX Ya se encuentra al principio del archivoX Movimiento más allá del principio del archivoX Ya se encuentra en la primera columnaX Los buffers deben especificarse antes del comandoX Ya se encuentra al final del archivoX Ya se encuentra al final de la líneaX %s no es un comando viX Uso: %sX No hay caracteres para borrarX El comando Q requiere la interfase de terminal exX No hay comando para repetirX El archivo está vacíoX %s no puede usarse como comando de movimientoX Ya se encuentra en modalidad de comandoX El cursor no se encuentra en una palabraX El valor de opción de Windows es demasiado grande, el máx. es %uX AñadirX CambiarX ComandoX InsertarX ReemplazarX El movimiento va más allá del final de la pantallaX El movimiento va más allá del principio de la pantallaX La pantalla debe tener más de %d líneas para dividirseX No hay pantallas de fondoX No hay pantalla de fondo editando un archivo denominado %sX No se puede poner fondo a la única pantalla que se visualizaX La pantalla sólo puede reducirse a %d hilerasX La pantalla no puede reducirseX La pantalla no puede aumentarseX Esta pantalla no puede suspenderseX Interrumpido: teclas mapeadas descartadasX vi: buffer temporario no liberadoX Esta terminal no tiene tecla %sX Sólo un buffer puede especificarseX Número mayor que %luX InterrumpidoX No se puede crear archivo temporarioX Advertencia: %s no es un archivo regularX %s ya se encuentra trabado, la sesión es de lectura solamenteX %s: eliminarX %s: cerrarX %s: eliminarX %s: eliminarX Archivo de lectura solamente, no escrito; usar ! para alterarX Archivo de lectura solamente, no escritoX %s existe, no escrito; usar ! para alterarX %s existe, no escritoX Archivo parcial, no escrito; usar ! para alterarX Archivo parcial, no escritoX %s: archivo modificado más recientemente que esta copia; usar ! para alterarX %s: archivo modificado más recientemente que esta copiaX %s: la traba de escritura no estaba disponibleX Escribiendo...X %s: ADVERTENCIA: ARCHIVO TRUNCADOX Ya se encuentra en el primer identificador de este grupoX %s: nuevo archivo: %lu líneas, %lu caracteresX %s: %lu líneas, %lu caracteresX %s expandido a demasiados nombres de archivosX %s: no es un archivo regularX %s: no le perteneceX %s: accesible por un usuario que no sea el propietarioX Archivo modificado desde la última escritura completa; escribir o usar ! para alterarX Archivo modificado desde la última escritura completa; escribir o usar :editar! para alterarX Archivo modificado desde la última escritura completa; escribir o usar ! para alterarX El archivo es temporario; al salir se descartarán las modificacionesX Archivo de lectura solamente, las modificaciones no se autoescribenX Se reinició el logX confirmar? [snq]X Presionar cualquier tecla para continuar: X Presionar cualquier tecla para continuar [: para ingresar más comandos ex]: X Presionar cualquier tecla para continuar [q para salir]: X Esta forma de %s requiere la interfase terminal exX Ingresando en la modalidad de entrada ex.X Comando fracasado, no hay archivo leído aun.X cont?X Evento inesperado de carácterX Evento inesperado de final de archivoX No hay coincidencias para consultaX Evento inesperado de interrupciónX Evento inesperado de salidaX Evento inesperado de repinturaX Ya se encuentra en el último identificador de este grupoX El comando %s requiere la interfase terminal exX Esta forma de %s no se encuentra soportada cuando se determina la opción de edición seguraX Evento inesperado de cadenaX Evento inesperado de tiempo excedidoX Evento inesperado de escrituraX Las expansiones de shell no se encuentran soportadas cuando se determina la opción de edición seguraX El comando %s no se encuentra soportado cuando se determina la opción de edición seguraX determinar: la opción %s puede no estar desconectadaX El monitor es demasiado pequeño.X agregadoX cambiadoX borradoX unidoX movidoX desplazadoX arrancadoX líneaX líneasX Vi no se cargó con un intérprete TclX Archivo modificado desde la última escritura.X Expansión de shell fracasadaX No hay opción de edición %s especificadaX Vi no se cargó con un intérprete PerlX No hay comando ex para ejecutarX Ingresar para ejecutar un comando, :q para salirX Usar \"cscope ayuda\" para obtener ayudaX No hay conexiones cscope corriendoX %s: tipo de búsqueda desconocido: usar uno de %sX %d: no existe esta sesión cscopeX determinar: la opción %s no puede conectarse nuncaX determinar: la opción %s no puede determinarse nunca en 0X %s: añadido: %lu líneas, %lu caracteresX Evento inesperado de modificación de tamañoX %d archivos para editarX --------------3FBAC3809B1EEA53F9532A1F-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jul 8 03:40:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA26588 for freebsd-bugs-outgoing; Wed, 8 Jul 1998 03:40:23 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA26457 for ; Wed, 8 Jul 1998 03:40:09 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA00360; Wed, 8 Jul 1998 03:40:07 -0700 (PDT) Received: from polaris.we.lc.ehu.es (polaris.we.lc.ehu.es [158.227.6.43]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id CAA15450 for ; Wed, 8 Jul 1998 02:47:28 -0700 (PDT) (envelope-from jose@we.lc.ehu.es) Received: from defiant.we.lc.ehu.es by polaris.we.lc.ehu.es (SMI-8.6/SMI-SVR4) id KAA02778; Wed, 8 Jul 1998 10:57:34 +0200 Received: (from jose@localhost) by defiant.we.lc.ehu.es (8.8.8/8.8.8) id KAA17654; Wed, 8 Jul 1998 10:57:34 +0200 (CEST) (envelope-from jose@we.lc.ehu.es) Message-Id: <199807080857.KAA17654@defiant.we.lc.ehu.es> Date: Wed, 8 Jul 1998 10:57:34 +0200 (CEST) From: jose@we.lc.ehu.es (Jose M. Alcaide) Reply-To: jose@we.lc.ehu.es To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: misc/7211: [patch] cosmetic changes to Spanish LC_TIME strings Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7211 >Category: misc >Synopsis: [patch] cosmetic changes to Spanish LC_TIME strings >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 Jul 8 03:40:07 PDT 1998 >Last-Modified: >Originator: Jose M. Alcaide >Organization: Universidad del Pais Vasco - Dept. de Electronica >Release: FreeBSD 2.2.6-STABLE i386 >Environment: FreeBSD defiant.we.lc.ehu.es 2.2.6-STABLE FreeBSD 2.2.6-STABLE #0: Wed Jun 17 12:24:27 CEST 1998 jose@defiant.we.lc.ehu.es:/usr/src/sys/compile/DEFIANT i386 >Description: The file share/timedef/data/es_ES.ISO_8859-1.src (which I submitted some months ago and was incorporated to FreeBSD) has capitalized weekdays names, but this is not correct according to the rules of the Spanish language. Also, the patch applies a small change to the "date_fmt" string, adding a comma between the year and the hour. >How-To-Repeat: LANG=es_ES.ISO_8859-1; export LANG date >Fix: Apply the following patch from /usr/src: --------------------- BEGIN -------------------------- *** share/timedef/data/es_ES.ISO_8859-1.src Sat Jan 24 14:11:39 1998 --- share/timedef/data/es_ES.ISO_8859-1.src~ Wed Jul 8 10:16:42 1998 *************** *** 35,57 **** # # Short weekdays names # ! Dom ! Lun ! Mar ! Mié ! Jue ! Vie ! Sáb # # Long weekdays names # ! Domingo ! Lunes ! Martes ! Miércoles ! Jueves ! Viernes ! Sábado # # X_fmt # --- 35,57 ---- # # Short weekdays names # ! dom ! lun ! mar ! mié ! jue ! vie ! sáb # # Long weekdays names # ! domingo ! lunes ! martes ! miércoles ! jueves ! viernes ! sábado # # X_fmt # *************** *** 75,78 **** # # date_fmt # ! %A, %e de %B de %Y %X %Z --- 75,78 ---- # # date_fmt # ! %A, %e de %B de %Y, %X %Z ---------------------------- END OF PATCH --------------------------- >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 Jul 8 03:52:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA28969 for freebsd-bugs-outgoing; Wed, 8 Jul 1998 03:52:15 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA28865; Wed, 8 Jul 1998 03:51:53 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA00583; Wed, 8 Jul 1998 03:51:50 -0700 (PDT) Date: Wed, 8 Jul 1998 03:51:50 -0700 (PDT) Message-Id: <199807081051.DAA00583@freefall.freebsd.org> To: girgen@partitur.se, jkh@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/7209 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: /usr/src/secure/lib/libcrypt/Makefile refers to unknown var BINFORMAT State-Changed-From-To: open-closed State-Changed-By: jkh State-Changed-When: Wed Jul 8 03:51:27 PDT 1998 State-Changed-Why: BINFORMAT is actually meaningless in 2.2.x. It doesn't need to be documented. :) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jul 8 05:27:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA19081 for freebsd-bugs-outgoing; Wed, 8 Jul 1998 05:27:16 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from bastuba.partitur.se (bastuba.partitur.se [193.219.246.194]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA19044; Wed, 8 Jul 1998 05:27:09 -0700 (PDT) (envelope-from girgen@partitur.se) Received: from solist. (solist.partitur.se [193.219.246.204]) by bastuba.partitur.se (8.8.8/8.8.8) with SMTP id OAA03564; Wed, 8 Jul 1998 14:27:02 +0200 (CEST) (envelope-from girgen@partitur.se) Received: from partitur.se by solist. (SMI-8.6/SMI-SVR4) id OAA29113; Wed, 8 Jul 1998 14:25:35 +0200 Message-ID: <35A3653F.3B0E5BB5@partitur.se> Date: Wed, 08 Jul 1998 14:25:35 +0200 From: Palle Girgensohn Organization: Partitur X-Mailer: Mozilla 4.05 [en] (X11; I; SunOS 5.6 sun4u) MIME-Version: 1.0 To: "Jordan K. Hubbard" CC: freebsd-bugs@FreeBSD.ORG Subject: Re: bin/7209 References: <199807081051.DAA00583@freefall.freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Jordan K. Hubbard wrote: > > Synopsis: /usr/src/secure/lib/libcrypt/Makefile refers to unknown var BINFORMAT > > State-Changed-From-To: open-closed > State-Changed-By: jkh > State-Changed-When: Wed Jul 8 03:51:27 PDT 1998 > State-Changed-Why: > BINFORMAT is actually meaningless in 2.2.x. It doesn't need to > be documented. :) but make fails without it, so it's obvioulsy not quite meaningless. :) this is for international version of libcrypt, everthing cvsupped today. /Palle To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jul 8 05:58:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA23815 for freebsd-bugs-outgoing; Wed, 8 Jul 1998 05:58:35 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA23791; Wed, 8 Jul 1998 05:58:26 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id FAA05919; Wed, 8 Jul 1998 05:57:59 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: Palle Girgensohn cc: "Jordan K. Hubbard" , freebsd-bugs@FreeBSD.ORG Subject: Re: bin/7209 In-reply-to: Your message of "Wed, 08 Jul 1998 14:25:35 +0200." <35A3653F.3B0E5BB5@partitur.se> Date: Wed, 08 Jul 1998 05:57:59 -0700 Message-ID: <5915.899902679@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Really, in 2.2? I don't even see any reference to it in that branch. > Jordan K. Hubbard wrote: > > > > Synopsis: /usr/src/secure/lib/libcrypt/Makefile refers to unknown var BINFO RMAT > > > > State-Changed-From-To: open-closed > > State-Changed-By: jkh > > State-Changed-When: Wed Jul 8 03:51:27 PDT 1998 > > State-Changed-Why: > > BINFORMAT is actually meaningless in 2.2.x. It doesn't need to > > be documented. :) > > but make fails without it, so it's obvioulsy not quite meaningless. :) > > this is for international version of libcrypt, everthing cvsupped today. > > /Palle To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jul 8 08:51:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA17710 for freebsd-bugs-outgoing; Wed, 8 Jul 1998 08:51:50 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from hades.dcs.napier.ac.uk (hades.dcs.napier.ac.uk [146.176.161.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA17705 for ; Wed, 8 Jul 1998 08:51:48 -0700 (PDT) (envelope-from bsc4093@hades.dcs.napier.ac.uk) Received: from artemis.dcs.napier.ac.uk (artemis [146.176.161.5]) by hades.dcs.napier.ac.uk (8.7.3/8.7.3) with ESMTP id QAA21232 for ; Wed, 8 Jul 1998 16:49:28 +0100 (BST) Received: (from bsc4093@localhost) by artemis.dcs.napier.ac.uk (8.7.3/8.7.3) id QAA18323; Wed, 8 Jul 1998 16:49:26 +0100 (BST) Date: Wed, 8 Jul 1998 16:49:26 +0100 (BST) From: Robin Carey To: freebsd-bugs@FreeBSD.ORG Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org O/S: FreeBSD-2.2.6 Bug 1: Pointed out to me by a friend. 1) "mount_msdos /dev/fd0a /floppy/" 2) "umount /floppy/": not currently mounted 3) "umount /floppy": not currently mounted The only way to unmount the FS is with: umount /dev/fd0a ------ Bug 2: Friend + myself. -----8<------ # include # include # include typedef double REAL; # define DIG DBL_DIG int main (void) { REAL a = (REAL) 0.00015; REAL b = (REAL) 20000.0; REAL d = a * b; unsigned l = (unsigned) d; printf ("a=%.*f b=%.*f\n", DIG, (double)a, DIG, (double)b); printf ("d=%.*f, l=%d\n", DIG, (double)d, l); exit (EXIT_SUCCESS); } -----8<------ The above program printf(3)'s "d" as 3.0000..... However, "d" is actually going to be 2.9999..... as demonstrated by the fact that "l" is 2 (due to inexact digital representation of exact floating point numbers). So the bug, or what I would call a bug, is the fact that printf(3) is displaying incorrect information. Cheers... PS Could someone please ask the maintainer of the MicroEMACS package to configure it to use advisory file locking (flock()) instead of "_xlk" directory method (which prevents the editor being used for sys admin applications). I'm pretty sure it's just a Makefile flag or something equally trivial (but haven't checked) ... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jul 8 08:53:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA18016 for freebsd-bugs-outgoing; Wed, 8 Jul 1998 08:53:31 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA18005; Wed, 8 Jul 1998 08:53:27 -0700 (PDT) (envelope-from nectar@FreeBSD.org) From: Jacques Vidrine Received: (from nectar@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA09964; Wed, 8 Jul 1998 08:53:25 -0700 (PDT) Date: Wed, 8 Jul 1998 08:53:25 -0700 (PDT) Message-Id: <199807081553.IAA09964@freefall.freebsd.org> To: nectar@NECTAR.COM, nectar@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: conf/6947 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: allow ip address for natd_interface in rc.conf/rc.network State-Changed-From-To: open-closed State-Changed-By: nectar State-Changed-When: Wed Jul 8 08:52:15 PDT 1998 State-Changed-Why: patch committed in revision 1.28 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jul 8 09:00:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA18997 for freebsd-bugs-outgoing; Wed, 8 Jul 1998 09:00:11 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA18909 for ; Wed, 8 Jul 1998 09:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA10171; Wed, 8 Jul 1998 09:00:02 -0700 (PDT) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA17559; Wed, 8 Jul 1998 08:50:32 -0700 (PDT) (envelope-from nobody) Message-Id: <199807081550.IAA17559@hub.freebsd.org> Date: Wed, 8 Jul 1998 08:50:32 -0700 (PDT) From: sysadmin@greeves.mfn.org To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: misc/7214: named-xfer dies (silently) when attempting to transfer files with particular CNAME records Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7214 >Category: misc >Synopsis: named-xfer dies (silently) when attempting to transfer files with particular CNAME records >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jul 8 09:00:01 PDT 1998 >Last-Modified: >Originator: J.A. Terranson >Organization: Missouri FreeNet >Release: 2.2.5R >Environment: measl@ns1$ uname -a FreeBSD ns1.mfn.org 2.2.5-RELEASE FreeBSD 2.2.5-RELEASE #0: Tue Jul 7 17:50:53 CDT 1998 root@sycophant.mfn.org:/usr/src/sys/compile/NS1 i386 measl@ns1$ >Description: named-xfer will silently die when attempting to transfer the attached (odd, but perfectly rfc-legal) db file. If the CNAME reference at the bottom is removed, named-xfer will complete successfully. --------------------------------------------------------------------------------------------------------- @ IN SOA ns1.mfn.org. sysadmin.mfn.org. ( 980101 ; serial 10800 ; 3 hr refresh 3600 ; 1 hr retry 604800 ; 1 week expiration 86400 ) ; 1 day ttl ; ; Name Servers ; IN NS ns1 ns1.mfn.org. IN A 204.238.179.6 IN NS ns2 ns2.mfn.org. IN A 204.238.179.201 ; ;MX ; IN MX 10 greeves.mfn.org. ; ; host table ; localhost IN A 127.0.0.1 sebastion.mfn.org. IN A 204.238.179.1 greeves.mfn.org. IN A 204.238.179.35 ; ; aliases ; mfn.org. IN CNAME greeves.mfn.org. >How-To-Repeat: use above file >Fix: Workaround: If this type of reference is needed, then secondary dns services will break. Use 2 primary servers under these conditions. >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 Jul 8 10:40:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA02500 for freebsd-bugs-outgoing; Wed, 8 Jul 1998 10:40:05 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA02495 for ; Wed, 8 Jul 1998 10:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA13137; Wed, 8 Jul 1998 10:40:01 -0700 (PDT) Date: Wed, 8 Jul 1998 10:40:01 -0700 (PDT) Message-Id: <199807081740.KAA13137@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Bill Fenner Subject: Re: misc/7214: named-xfer dies (silently) when attempting to transfer files with particular CNAME records Reply-To: Bill Fenner Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/7214; it has been noted by GNATS. From: Bill Fenner To: freebsd-gnats-submit@freebsd.org, sysadmin@greeves.mfn.org Cc: Subject: Re: misc/7214: named-xfer dies (silently) when attempting to transfer files with particular CNAME records Date: Wed, 8 Jul 1998 10:37:43 PDT >perfectly rfc-legal Not quite. RFC 1034 says: If a CNAME RR is present at a node, no other data should be present and since you have SOA and NS records for mfn.org, you may not have a CNAME for it. Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jul 8 11:42:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA09671 for freebsd-bugs-outgoing; Wed, 8 Jul 1998 11:42:58 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from indigo.ie (nsmart@ts01-54.waterford.indigo.ie [194.125.139.117]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA09657 for ; Wed, 8 Jul 1998 11:42:54 -0700 (PDT) (envelope-from rotel@indigo.ie) Received: (from nsmart@localhost) by indigo.ie (8.8.8/8.8.7) id TAA00925; Wed, 8 Jul 1998 19:38:15 +0100 (IST) (envelope-from rotel@indigo.ie) From: Niall Smart Message-Id: <199807081838.TAA00925@indigo.ie> Date: Wed, 8 Jul 1998 19:38:15 +0000 In-Reply-To: Robin Carey "" (Jul 8, 4:49pm) Reply-To: rotel@indigo.ie X-Mailer: Mail User's Shell (7.2.6 beta(3) 11/17/96) To: Robin Carey , freebsd-bugs@FreeBSD.ORG Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Jul 8, 4:49pm, Robin Carey wrote: > Bug 1: Pointed out to me by a friend. > > 1) "mount_msdos /dev/fd0a /floppy/" > 2) "umount /floppy/": not currently mounted > 3) "umount /floppy": not currently mounted Yes, this is a rather annoying bug that I've encountered before; it also exists in another form: [root@ginseng ~]# mount /floppy/ mount: /floppy/: unknown special file or file system. [root@ginseng ~]# mount /floppy [root@ginseng ~]# I'll send in a patch later. > Bug 2: Friend + myself. > > typedef double REAL; > # define DIG DBL_DIG The bug is in your understanding of meaning of the DBL_DIG macro; see http://www.dinkumware.com/htm_cl/float.html. Change the above to: #define DIG DBL_MANT_DIG and try again. Niall -- Niall Smart. PGP: finger njs3@motmot.doc.ic.ac.uk FreeBSD: Turning PC's into Workstations: www.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jul 8 13:00:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA20433 for freebsd-bugs-outgoing; Wed, 8 Jul 1998 13:00:08 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA20379 for ; Wed, 8 Jul 1998 13:00:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA17240; Wed, 8 Jul 1998 13:00:02 -0700 (PDT) Received: from indigo.ie (nsmart@ts01-54.waterford.indigo.ie [194.125.139.117]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA19271 for ; Wed, 8 Jul 1998 12:52:32 -0700 (PDT) (envelope-from nsmart@indigo.ie) Received: (from nsmart@localhost) by indigo.ie (8.8.8/8.8.7) id UAA01556; Wed, 8 Jul 1998 20:48:12 +0100 (IST) (envelope-from nsmart) Message-Id: <199807081948.UAA01556@indigo.ie> Date: Wed, 8 Jul 1998 20:48:12 +0100 (IST) From: rotel@indigo.ie Reply-To: rotel@indigo.ie To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: bin/7218: /etc/security does not detect uid 0 correctly Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7218 >Category: bin >Synopsis: /etc/security does not detect uid 0 correctly >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jul 8 13:00:01 PDT 1998 >Last-Modified: >Originator: Niall Smart >Organization: >Release: FreeBSD 2.2.6-STABLE i386 >Environment: >Description: Michal Listos originally submitted this. The /etc/security script does not detect uid's of zero correctly because it uses a string mode comparison thus new root users with the uid specified as "00" will not be detected. Doh. OpenBSD's /etc/security looks very complete if anyone fancies merging some of their good ideas. >How-To-Repeat: >Fix: *** security~ Sat Jun 27 12:13:59 1998 --- security Wed Jul 8 20:38:28 1998 *************** *** 52,54 **** echo "checking for uids of 0:" ! awk 'BEGIN {FS=":"} $3=="0" {print $1,$3}' /etc/master.passwd --- 52,54 ---- echo "checking for uids of 0:" ! awk -F: '$3 == 0 {print $1,$3}' /etc/master.passwd >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 Jul 8 14:31:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA01323 for freebsd-bugs-outgoing; Wed, 8 Jul 1998 14:31:08 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.15.68.22]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA01318 for ; Wed, 8 Jul 1998 14:31:04 -0700 (PDT) (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id HAA14372; Thu, 9 Jul 1998 07:30:53 +1000 Date: Thu, 9 Jul 1998 07:30:53 +1000 From: Bruce Evans Message-Id: <199807082130.HAA14372@godzilla.zeta.org.au> To: freebsd-bugs@FreeBSD.ORG, r.carey@dcs.napier.ac.uk, rotel@indigo.ie Subject: mount, floating point Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >> 1) "mount_msdos /dev/fd0a /floppy/" Don't do that. Use `mount -t msdos ...'. mount(8) calls realpath() to canonicalize the path, while mount_msdos(8) passes the path unchanged to mount(2). The path is stored by the kernel and if it is non-canonical then it may confuse things later. >> 2) "umount /floppy/": not currently mounted >> 3) "umount /floppy": not currently mounted It does confuse things later :-). I think (2) should work but (3) shouldn't. umount already does one stat() too many, at least for umount -f (the stat() may hang on nfs mount points before giving unmount() a chance). realpath() would be more likely to hang. >> typedef double REAL; >> # define DIG DBL_DIG > >The bug is in your understanding of meaning of the DBL_DIG macro; >see http://www.dinkumware.com/htm_cl/float.html. Change the above >to: > >#define DIG DBL_MANT_DIG > >and try again. DBL_MANT_DIG is irrelevant (it's for base 2). Try (DBL_DIG + 2). Assuming that printf gets this right (I think it does) then the exact value is d = 2.999...5x... where `5x' occurs DBL_DIG = 15 digits to the right of the decimal point. l = (unsigned)d is 2 because the assignment rounes towards 0, while printf in %.15f format gives 3.000... because printf rounds to neares and the value is a bit closer to precisely 3 than it is to 2.999...999 (DBL_DIG 9's). Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jul 8 15:45:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA10383 for freebsd-bugs-outgoing; Wed, 8 Jul 1998 15:45:04 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: (from alex@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA10355; Wed, 8 Jul 1998 15:44:57 -0700 (PDT) (envelope-from alex) Date: Wed, 8 Jul 1998 15:44:57 -0700 (PDT) From: Alex Nash Message-Id: <199807082244.PAA10355@hub.freebsd.org> To: rotel@indigo.ie, alex, freebsd-bugs Subject: Re: bin/7218 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: /etc/security does not detect uid 0 correctly State-Changed-From-To: open-closed State-Changed-By: alex State-Changed-When: Wed Jul 8 15:43:08 PDT 1998 State-Changed-Why: Fixed in rev 1.25 (-current) and rev 1.16.2.6 (2.2.6-STABLE). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jul 8 18:50:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA02881 for freebsd-bugs-outgoing; Wed, 8 Jul 1998 18:50:10 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA02874 for ; Wed, 8 Jul 1998 18:50:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA25668; Wed, 8 Jul 1998 18:50:01 -0700 (PDT) Received: from oak.oakwood.k12.oh.us (root@oak.oakwood.k12.oh.us [156.63.171.72]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA01478 for ; Wed, 8 Jul 1998 18:40:31 -0700 (PDT) (envelope-from mwhite@oak.oakwood.k12.oh.us) Received: (from root@localhost) by oak.oakwood.k12.oh.us (8.8.8/8.8.7) id VAA19362 for FreeBSD-gnats-submit@freebsd.org; Wed, 8 Jul 1998 21:40:36 -0400 (EDT) (envelope-from mwhite) Message-Id: <199807090140.VAA19362@oak.oakwood.k12.oh.us> Date: Wed, 8 Jul 1998 21:40:36 -0400 (EDT) From: Matt White To: FreeBSD-gnats-submit@FreeBSD.ORG Subject: i386/7224: Reboot in buildworld Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7224 >Category: i386 >Synopsis: System reboots during make bulidworld on -STABLE >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 Jul 8 18:50:00 PDT 1998 >Last-Modified: >Originator: Matt White >Organization: Oakwood Schools >Release: FreeBSD 2.2.6-STABLE i386 >Environment: AMD K6-266 64MB SDRAM 3Com 3c905 NIC (vx0) FreeBSD 2.2.6-STABLE >Description: When I attempt to run "make buildworld" from /usr/src the system will reboot after about 20 minutes. I have tried this in both single and multi-user with the same results. Here's a bit of a script I made during the last attempt in single-user mode: /usr/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-common.c -o c-common.o cc -O -pipe -DFREEBSD_AOUT -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config -DFREEBSD_NATIVE -DDEFAULT_TARGET_VERSION=\"2.7.2.1\" -DDEFAULT_TARGET_MACHINE=\"i And at that point it reboots. Acutally, I get a crash dump (error type 12 in ld, the dump wasn't written to the file (of course) so I can't be more specific at this point. If you want to know more please write me and I'll do it again and write down the dump.), and the system attempts to sync the disks before rebooting. The sync fails, and the system reboots anyways. Luckily the only files that have been damaged in the failed sync are the ones that it was working on at the time so I haven't lost any data at this point. I cvsupped last night (July 7th) around 10:30pm CDT. >How-To-Repeat: Attempt to bulid the world in both single and multi-user mode >Fix: No known fix at this time. >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 Jul 8 23:05:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA03308 for freebsd-bugs-outgoing; Wed, 8 Jul 1998 23:05:25 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from Server-UNIX.orland.u91.k12.me.us (root@Server-UNIX.orland.u91.k12.me.us [169.244.111.67]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA03293 for ; Wed, 8 Jul 1998 23:05:12 -0700 (PDT) (envelope-from netmonger@genesis.ispace.com) Received: from Celeris (Droobie@56k-port4035.ime.net [209.90.195.45]) by Server-UNIX.orland.u91.k12.me.us (8.8.7/8.8.7) with SMTP id CAA06463 for ; Thu, 9 Jul 1998 02:05:04 -0400 (EDT) Message-Id: <199807090605.CAA06463@Server-UNIX.orland.u91.k12.me.us> X-Comment: Sent Via FreeBSD 3.0-971104TBN-SNAP (Network_Host-Celeris). X-Sender: netmonger@genesis.ispace.com X-Mailer: QUALCOMM Windows Eudora Pro Version 4.0.1 Date: Thu, 09 Jul 1998 02:03:42 -0400 To: freebsd-bugs@FreeBSD.ORG From: Drew Baxter Subject: Re: PCMCIA Support with 3C589B Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org While Acer/TI's Extensa 393C is a decent laptop, it also carries the PCI-1250 Cardbus controller. Good part is, Acer is stupid and doesn't know that DOS Doesnt suppport PNP automatically. Course, if you go into the bios and pick WinNT (which has limited PNP support) then the card works. However, my settings of 300 irq 10 must be off a little somehow, because I'm not getting a machine or a connection. I'd blame the machine I'm trying to FTP install from, but I doubt that's the case. There is plainly no activity on my status lights of my hub. We're using 3.0-980520-SNAP here. Any assistance would be appreciated. --- Drew "Droobie" Baxter Network Admin/Professional Computer Nerd(TM) OneEX: The OneNetwork Exchange 207-942-0275 http://www.droo.orland.me.us To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jul 8 23:06:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA03429 for freebsd-bugs-outgoing; Wed, 8 Jul 1998 23:06:44 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA03419; Wed, 8 Jul 1998 23:06:35 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA09582; Wed, 8 Jul 1998 23:06:28 -0700 (PDT) Date: Wed, 8 Jul 1998 23:06:28 -0700 (PDT) Message-Id: <199807090606.XAA09582@freefall.freebsd.org> To: sthomas@lart.net, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7191 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ICMP source-route prohibited received from non-router State-Changed-From-To: open-closed State-Changed-By: phk State-Changed-When: Wed Jul 8 23:05:30 PDT 1998 State-Changed-Why: fixed by dg in src/sys/netinet/ip_input 1.96 The 3com driver problem should be taken to the pao people To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jul 8 23:21:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA04696 for freebsd-bugs-outgoing; Wed, 8 Jul 1998 23:21:48 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA04687; Wed, 8 Jul 1998 23:21:42 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA10291; Wed, 8 Jul 1998 23:21:35 -0700 (PDT) Date: Wed, 8 Jul 1998 23:21:35 -0700 (PDT) Message-Id: <199807090621.XAA10291@freefall.freebsd.org> To: gallatin@cs.duke.edu, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: i386/7201 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: (cpu == CPU_686) in pmap.c shoud also apply to CPU_PII, pmap_setdevram() disabled in wrong place State-Changed-From-To: open-feedback State-Changed-By: phk State-Changed-When: Wed Jul 8 23:20:30 PDT 1998 State-Changed-Why: I think the test should be done on the cpu_class variable instead and please don't mix two issues in the same PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jul 8 23:25:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA04983 for freebsd-bugs-outgoing; Wed, 8 Jul 1998 23:25:01 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA04975; Wed, 8 Jul 1998 23:24:54 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA10507; Wed, 8 Jul 1998 23:24:48 -0700 (PDT) Date: Wed, 8 Jul 1998 23:24:48 -0700 (PDT) Message-Id: <199807090624.XAA10507@freefall.freebsd.org> To: woods@zeus.leitch.com, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: i386/7202 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: boot.8 manual page doesn't mention that COMCONSOLE hardcodes the kernel State-Changed-From-To: open-closed State-Changed-By: phk State-Changed-When: Wed Jul 8 23:24:29 PDT 1998 State-Changed-Why: committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jul 8 23:26:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA05146 for freebsd-bugs-outgoing; Wed, 8 Jul 1998 23:26:30 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA05139; Wed, 8 Jul 1998 23:26:23 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA10619; Wed, 8 Jul 1998 23:26:16 -0700 (PDT) Date: Wed, 8 Jul 1998 23:26:16 -0700 (PDT) Message-Id: <199807090626.XAA10619@freefall.freebsd.org> To: bmah@ca.sandia.gov, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/7203 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] fetch -o - file:/path/name doesn't go to stdout State-Changed-From-To: open-suspended State-Changed-By: phk State-Changed-When: Wed Jul 8 23:25:59 PDT 1998 State-Changed-Why: awaiting committer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jul 8 23:28:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA05415 for freebsd-bugs-outgoing; Wed, 8 Jul 1998 23:28:17 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA05377; Wed, 8 Jul 1998 23:28:04 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA10758; Wed, 8 Jul 1998 23:27:57 -0700 (PDT) Date: Wed, 8 Jul 1998 23:27:57 -0700 (PDT) Message-Id: <199807090627.XAA10758@freefall.freebsd.org> To: akiyama@kme.mei.co.jp, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7210 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] od(4) bug fixes and enhancements, including LF-D100 DVD-RAM drive support. State-Changed-From-To: open-closed State-Changed-By: phk State-Changed-When: Wed Jul 8 23:27:12 PDT 1998 State-Changed-Why: please don't mix three so different things in the same patch please resubmit as three PRs To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jul 8 23:31:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA05837 for freebsd-bugs-outgoing; Wed, 8 Jul 1998 23:31:20 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA05805; Wed, 8 Jul 1998 23:31:04 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA10951; Wed, 8 Jul 1998 23:30:57 -0700 (PDT) Date: Wed, 8 Jul 1998 23:30:57 -0700 (PDT) Message-Id: <199807090630.XAA10951@freefall.freebsd.org> To: jose@we.lc.ehu.es, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: misc/7211 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [patch] cosmetic changes to Spanish LC_TIME strings State-Changed-From-To: open-closed State-Changed-By: phk State-Changed-When: Wed Jul 8 23:30:41 PDT 1998 State-Changed-Why: committed, thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jul 8 23:33:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA06050 for freebsd-bugs-outgoing; Wed, 8 Jul 1998 23:33:27 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA06038; Wed, 8 Jul 1998 23:33:17 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA11144; Wed, 8 Jul 1998 23:33:11 -0700 (PDT) Date: Wed, 8 Jul 1998 23:33:11 -0700 (PDT) Message-Id: <199807090633.XAA11144@freefall.freebsd.org> To: sysadmin@greeves.mfn.org, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: misc/7214 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: named-xfer dies (silently) when attempting to transfer files with particular CNAME records State-Changed-From-To: open-closed State-Changed-By: phk State-Changed-When: Wed Jul 8 23:32:13 PDT 1998 State-Changed-Why: in any case this is an issue that should be brought to the BIND maintainers, not FreeBSD To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jul 8 23:35:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA06284 for freebsd-bugs-outgoing; Wed, 8 Jul 1998 23:35:44 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA06247; Wed, 8 Jul 1998 23:35:11 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA11323; Wed, 8 Jul 1998 23:35:04 -0700 (PDT) Date: Wed, 8 Jul 1998 23:35:04 -0700 (PDT) Message-Id: <199807090635.XAA11323@freefall.freebsd.org> To: wscott@ichips.intel.com, phk@FreeBSD.ORG, gnats-admin@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: pending/7215 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Old Synopsis: 'man' program auth MANPATH needs help New Synopsis: [PATCH] 'man' program auth MANPATH needs help State-Changed-From-To: open-suspended State-Changed-By: phk State-Changed-When: Wed Jul 8 23:34:24 PDT 1998 State-Changed-Why: awaiting committer Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: phk Responsible-Changed-When: Wed Jul 8 23:34:24 PDT 1998 Responsible-Changed-Why: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jul 8 23:36:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA06469 for freebsd-bugs-outgoing; Wed, 8 Jul 1998 23:36:42 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA06463; Wed, 8 Jul 1998 23:36:35 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA11468; Wed, 8 Jul 1998 23:36:28 -0700 (PDT) Date: Wed, 8 Jul 1998 23:36:28 -0700 (PDT) Message-Id: <199807090636.XAA11468@freefall.freebsd.org> To: mwhite@oak.oakwood.k12.oh.us, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: i386/7224 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: System reboots during make bulidworld on -STABLE State-Changed-From-To: open-closed State-Changed-By: phk State-Changed-When: Wed Jul 8 23:35:56 PDT 1998 State-Changed-Why: I'm seriously suspecting hardware here. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jul 9 01:23:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA16460 for freebsd-bugs-outgoing; Thu, 9 Jul 1998 01:23:53 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA16422; Thu, 9 Jul 1998 01:23:46 -0700 (PDT) (envelope-from des@FreeBSD.org) From: "Dag-Erling C. Sm\xf8rgrav" Received: (from des@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA14576; Thu, 9 Jul 1998 01:23:39 -0700 (PDT) Date: Thu, 9 Jul 1998 01:23:39 -0700 (PDT) Message-Id: <199807090823.BAA14576@freefall.freebsd.org> To: akiyama@kme.mei.co.jp, des@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7210 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] od(4) bug fixes and enhancements, including LF-D100 DVD-RAM drive support. State-Changed-From-To: closed-suspended State-Changed-By: des State-Changed-When: Thu Jul 9 01:22:58 PDT 1998 State-Changed-Why: Perfectly valid PR awaiting committer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jul 9 01:24:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA16574 for freebsd-bugs-outgoing; Thu, 9 Jul 1998 01:24:15 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from oslo.geco-prakla.slb.com (geos01.oslo.geco-prakla.slb.com [134.32.44.131]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA16553; Thu, 9 Jul 1998 01:24:05 -0700 (PDT) (envelope-from smoergrd@oslo.geco-prakla.slb.com) Received: from sunw110.oslo.Geco-Prakla.slb.com (sunw110 [192.23.231.54]) by oslo.geco-prakla.slb.com (8.8.8/8.6.9) with SMTP id KAA06929 ; Thu, 9 Jul 1998 10:22:52 +0200 (MET DST) Received: by sunw110.oslo.Geco-Prakla.slb.com (SMI-8.6/SMI-SVR4) id KAA08937; Thu, 9 Jul 1998 10:22:51 +0200 To: Poul-Henning Kamp Cc: akiyama@kme.mei.co.jp, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7210 References: <199807090627.XAA10758@freefall.freebsd.org> Organization: Schlumberger Geco-Prakla X-Disclaimer: I speak only for myself. From: smoergrd@oslo.geco-prakla.slb.com (Dag-Erling Coidan Smørgrav) Date: 09 Jul 1998 10:22:50 +0200 In-Reply-To: Poul-Henning Kamp's message of Wed, 8 Jul 1998 23:27:57 -0700 (PDT) Message-ID: Lines: 18 X-Mailer: Gnus v5.3/Emacs 19.34 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Poul-Henning Kamp writes: > Synopsis: [PATCH] od(4) bug fixes and enhancements, including LF-D100 DVD-RAM drive support. > > State-Changed-From-To: open-closed > State-Changed-By: phk > State-Changed-When: Wed Jul 8 23:27:12 PDT 1998 > State-Changed-Why: > please don't mix three so different things in the same patch > please resubmit as three PRs Poul-Henning, as much as I appreciate the need to reduce the number of PRs, I think this was a little gratuitous. The patch fixes at least two serious (and related) bugs in the od driver, and should be treated a little more seriously. DES -- Dag-Erling Smørgrav - smoergrd@oslo.geco-prakla.slb.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jul 9 01:35:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA17743 for freebsd-bugs-outgoing; Thu, 9 Jul 1998 01:35:52 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from critter.freebsd.dk (critter.freebsd.dk [195.8.133.1] (may be forged)) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA17738 for ; Thu, 9 Jul 1998 01:35:49 -0700 (PDT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.8.7/8.8.5) with ESMTP id KAA06663; Thu, 9 Jul 1998 10:32:38 +0200 (CEST) To: smoergrd@oslo.geco-prakla.slb.com (Dag-Erling Coidan Smørgrav) cc: akiyama@kme.mei.co.jp, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7210 In-reply-to: Your message of "09 Jul 1998 10:22:50 +0200." Date: Thu, 09 Jul 1998 10:32:37 +0200 Message-ID: <6661.899973157@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message , Dag-Erling Coidan Smørgra v writes: >Poul-Henning Kamp writes: >> Synopsis: [PATCH] od(4) bug fixes and enhancements, including LF-D100 DVD-RAM drive support. >> >> State-Changed-From-To: open-closed >> State-Changed-By: phk >> State-Changed-When: Wed Jul 8 23:27:12 PDT 1998 >> State-Changed-Why: >> please don't mix three so different things in the same patch >> please resubmit as three PRs > >Poul-Henning, as much as I appreciate the need to reduce the number of >PRs, I think this was a little gratuitous. The patch fixes at least >two serious (and related) bugs in the od driver, and should be treated >a little more seriously. Yes, which I why I ask the submitter to split it for us. Experience has shown that "jumbo patches" never get touched, whereas patches that solve one problem only are much more likely to be fixed. there for the "please resubmit as three PRs" reply. -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." "ttyv0" -- What UNIX calls a $20K state-of-the-art, 3D, hi-res color terminal To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jul 9 02:42:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA22187 for freebsd-bugs-outgoing; Thu, 9 Jul 1998 02:42:59 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from oslo.geco-prakla.slb.com (geos01.oslo.geco-prakla.slb.com [134.32.44.131]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA22178; Thu, 9 Jul 1998 02:42:54 -0700 (PDT) (envelope-from smoergrd@oslo.geco-prakla.slb.com) Received: from sunw110.oslo.Geco-Prakla.slb.com (sunw110 [192.23.231.54]) by oslo.geco-prakla.slb.com (8.8.8/8.6.9) with SMTP id LAA11476 ; Thu, 9 Jul 1998 11:41:34 +0200 (MET DST) Received: by sunw110.oslo.Geco-Prakla.slb.com (SMI-8.6/SMI-SVR4) id LAA09884; Thu, 9 Jul 1998 11:41:33 +0200 To: "Jordan K. Hubbard" Cc: Palle Girgensohn , "Jordan K. Hubbard" , freebsd-bugs@FreeBSD.ORG Subject: Re: bin/7209 References: <5915.899902679@time.cdrom.com> Organization: Schlumberger Geco-Prakla X-Disclaimer: I speak only for myself. From: smoergrd@oslo.geco-prakla.slb.com (Dag-Erling Coidan Smørgrav) Date: 09 Jul 1998 11:41:32 +0200 In-Reply-To: "Jordan K. Hubbard"'s message of Wed, 08 Jul 1998 05:57:59 -0700 Message-ID: Lines: 13 X-Mailer: Gnus v5.3/Emacs 19.34 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "Jordan K. Hubbard" writes: > > Jordan K. Hubbard wrote: > > > BINFORMAT is actually meaningless in 2.2.x. It doesn't need to > > > be documented. :) > > but make fails without it, so it's obvioulsy not quite meaningless. :) > Really, in 2.2? I don't even see any reference to it in that branch. It turns out Palle forgot to add tag=RELENG_2_2 to his supfile, so everything is just peachy :) DES -- Dag-Erling Smørgrav - smoergrd@oslo.geco-prakla.slb.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jul 9 03:00:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA23469 for freebsd-bugs-outgoing; Thu, 9 Jul 1998 03:00:13 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA23460 for ; Thu, 9 Jul 1998 03:00:10 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA19147; Thu, 9 Jul 1998 03:00:02 -0700 (PDT) Date: Thu, 9 Jul 1998 03:00:02 -0700 (PDT) Message-Id: <199807091000.DAA19147@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: smoergrd@oslo.geco-prakla.slb.com (Dag-Erling Coidan Smørgrav) Subject: Re: i386/7201: (cpu == CPU_686) in pmap.c shoud also apply to CPU_PII, pmap_setdevram() disabled in wrong place Reply-To: smoergrd@oslo.geco-prakla.slb.com (Dag-Erling Coidan Smørgrav) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/7201; it has been noted by GNATS. From: smoergrd@oslo.geco-prakla.slb.com (Dag-Erling Coidan Smørgrav) To: gallatin@cs.duke.edu Cc: freebsd-gnats-submit@freebsd.org Subject: Re: i386/7201: (cpu == CPU_686) in pmap.c shoud also apply to CPU_PII, pmap_setdevram() disabled in wrong place Date: 09 Jul 1998 11:50:33 +0200 gallatin@cs.duke.edu writes: > o Many Pentium Pro class features in pmap.c are enabled if cpu == CPU_686. > With the recent addition of the CPU_PII, the CPU_PII cpu needs to be > added to those tests. Hmm, I should have checked this when I introduced the code to identify PII processors, so color me guilty. But as Poul-Henning remarked, these tests should check the CPU class and not the CPU model, so your fix is inadequate (or perhaps I should rather say that it is only a short-term fix - until the next 686-class CPU hits the market) I'll try to set aside some time to look into this. Thank you very much for pointing it out to us. DES (bad DES, baaaad DES) -- Dag-Erling Smørgrav - smoergrd@oslo.geco-prakla.slb.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jul 9 04:39:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA03177 for freebsd-bugs-outgoing; Thu, 9 Jul 1998 04:39:01 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA03170; Thu, 9 Jul 1998 04:38:59 -0700 (PDT) (envelope-from jkoshy@FreeBSD.org) From: Joseph Koshy Received: (from jkoshy@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA07802; Thu, 9 Jul 1998 04:38:51 -0700 (PDT) Date: Thu, 9 Jul 1998 04:38:51 -0700 (PDT) Message-Id: <199807091138.EAA07802@freefall.freebsd.org> To: adrian@virginia.edu, jkoshy@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: docs/5676 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: commenting in ftphosts is not documented State-Changed-From-To: open-closed State-Changed-By: jkoshy State-Changed-When: Thu Jul 9 04:35:38 PDT 1998 State-Changed-Why: Fixed in rev 1.22 of"ftpd.8", thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jul 9 04:42:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA03443 for freebsd-bugs-outgoing; Thu, 9 Jul 1998 04:42:02 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA03390; Thu, 9 Jul 1998 04:41:58 -0700 (PDT) (envelope-from jkoshy@FreeBSD.org) From: Joseph Koshy Received: (from jkoshy@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA08523; Thu, 9 Jul 1998 04:41:49 -0700 (PDT) Date: Thu, 9 Jul 1998 04:41:49 -0700 (PDT) Message-Id: <199807091141.EAA08523@freefall.freebsd.org> To: iwaki@jaist.ac.jp, jkoshy@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: docs/5842 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: description of -c and -o conn in mount_nfs disagrees with its real behaviour State-Changed-From-To: open-closed State-Changed-By: jkoshy State-Changed-When: Thu Jul 9 04:40:09 PDT 1998 State-Changed-Why: This PR is similar to docs/6905. A fix to the man page was committed to rev 1.13 of "mount_nfs.8". To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jul 9 05:20:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA06609 for freebsd-bugs-outgoing; Thu, 9 Jul 1998 05:20:17 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA06597 for ; Thu, 9 Jul 1998 05:20:11 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA15172; Thu, 9 Jul 1998 05:20:02 -0700 (PDT) Date: Thu, 9 Jul 1998 05:20:02 -0700 (PDT) Message-Id: <199807091220.FAA15172@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: smoergrd@oslo.geco-prakla.slb.com (Dag-Erling Coidan Smørgrav) Subject: Re: bin/7203: [PATCH] fetch -o - file:/path/name doesn't go to stdout Reply-To: smoergrd@oslo.geco-prakla.slb.com (Dag-Erling Coidan Smørgrav) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/7203; it has been noted by GNATS. From: smoergrd@oslo.geco-prakla.slb.com (Dag-Erling Coidan Smørgrav) To: bmah@ca.sandia.gov Cc: FreeBSD-gnats-submit@freebsd.org, jkh@freebsd.org Subject: Re: bin/7203: [PATCH] fetch -o - file:/path/name doesn't go to stdout Date: 09 Jul 1998 14:14:08 +0200 bmah@ca.sandia.gov writes: > "fetch -o - url://file/name" generally retrieves the URL to stdout. > However, in the case of "file:/" URLs, fetch(1) creates a file called > "-" in the current directory, containing the file contents. This is a result of fetch(1) trying to be smart instead of generic, and will go away when I rewrite fetch(1) to use the fetch(3) library. BTW Jordan, still no feedback from you... should I go ahead and import libfetch into the tree? I'm halfway through rewriting the FTP bits, if I get my lazy arse in gear I might finish that this weekend; then I can start hacking away on fetch(1)... DES -- Dag-Erling Smørgrav - smoergrd@oslo.geco-prakla.slb.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jul 9 05:41:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA08635 for freebsd-bugs-outgoing; Thu, 9 Jul 1998 05:41:43 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA08626; Thu, 9 Jul 1998 05:41:39 -0700 (PDT) (envelope-from des@FreeBSD.org) From: "Dag-Erling C. Sm\xf8rgrav" Received: (from des@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA19671; Thu, 9 Jul 1998 05:41:31 -0700 (PDT) Date: Thu, 9 Jul 1998 05:41:31 -0700 (PDT) Message-Id: <199807091241.FAA19671@freefall.freebsd.org> To: des@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG, des@FreeBSD.ORG Subject: Re: misc/7215 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Old Synopsis: [PATCH] 'man' program auth MANPATH needs help New Synopsis: [MFC] 'man' program auth MANPATH needs help Responsible-Changed-From-To: freebsd-bugs->des Responsible-Changed-By: des Responsible-Changed-When: Thu Jul 9 05:39:14 PDT 1998 Responsible-Changed-Why: So I'll remember to MFC. So To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jul 9 05:45:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA08984 for freebsd-bugs-outgoing; Thu, 9 Jul 1998 05:45:42 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from ifi.uio.no (0@ifi.uio.no [129.240.64.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA08968; Thu, 9 Jul 1998 05:45:37 -0700 (PDT) (envelope-from dag-erli@ifi.uio.no) Received: from hrotti.ifi.uio.no (2602@hrotti.ifi.uio.no [129.240.64.15]) by ifi.uio.no (8.8.8/8.8.7/ifi0.2) with ESMTP id OAA24461; Thu, 9 Jul 1998 14:45:34 +0200 (MET DST) Received: (from dag-erli@localhost) by hrotti.ifi.uio.no ; Thu, 9 Jul 1998 14:45:34 +0200 (MET DST) Mime-Version: 1.0 To: "Dag-Erling C. Sm\xf8rgrav" Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: misc/7215 References: <199807091241.FAA19671@freefall.freebsd.org> Organization: University of Oslo, Department of Informatics X-url: http://www.stud.ifi.uio.no/~dag-erli/ X-other-addresses: 'finger dag-erli@ifi.uio.no' for a list X-disclaimer-1: The views expressed in this article are mine alone, and do X-disclaimer-2: not necessarily coincide with those of any organisation or X-disclaimer-3: company with which am or have been affiliated. X-Stop-Spam: http://www.cauce.org/ From: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) Date: 09 Jul 1998 14:45:33 +0200 In-Reply-To: "Dag-Erling C. Sm\xf8rgrav"'s message of "Thu, 9 Jul 1998 05:41:31 -0700 (PDT)" Message-ID: Lines: 14 X-Mailer: Gnus v5.5/Emacs 19.34 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "Dag-Erling C. Sm\xf8rgrav" writes: > Responsible-Changed-From-To: freebsd-bugs->des > Responsible-Changed-By: des > Responsible-Changed-When: Thu Jul 9 05:39:14 PDT 1998 > Responsible-Changed-Why: > So I'll remember to MFC. > So Sorry about that, my ssh went down in flames and apparently I wasn't deft enough with kill to properly abort edit-pr. DES -- One two, one two, one two. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jul 9 08:30:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA28703 for freebsd-bugs-outgoing; Thu, 9 Jul 1998 08:30:21 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA28685 for ; Thu, 9 Jul 1998 08:30:13 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA26595; Thu, 9 Jul 1998 08:30:02 -0700 (PDT) Date: Thu, 9 Jul 1998 08:30:02 -0700 (PDT) Message-Id: <199807091530.IAA26595@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Andrew Gallatin Subject: Re: i386/7201: (cpu == CPU_686) in pmap.c shoud also apply to CPU_PII, pmap_setdevram() disabled in wrong place Reply-To: Andrew Gallatin Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/7201; it has been noted by GNATS. From: Andrew Gallatin To: smoergrd@oslo.geco-prakla.slb.com (Dag-Erling Coidan Smørgrav) Cc: freebsd-gnats-submit@freebsd.org Subject: Re: i386/7201: (cpu == CPU_686) in pmap.c shoud also apply to CPU_PII, pmap_setdevram() disabled in wrong place Date: Thu, 9 Jul 1998 11:25:28 -0400 (EDT) Dag-Erling Coidan Smørgrav writes: > gallatin@cs.duke.edu writes: > > o Many Pentium Pro class features in pmap.c are enabled if cpu == CPU_686. > > With the recent addition of the CPU_PII, the CPU_PII cpu needs to be > > added to those tests. > > Hmm, I should have checked this when I introduced the code to identify > PII processors, so color me guilty. But as Poul-Henning remarked, > these tests should check the CPU class and not the CPU model, so your > fix is inadequate (or perhaps I should rather say that it is only a > short-term fix - until the next 686-class CPU hits the market) > > I'll try to set aside some time to look into this. Thank you very much > for pointing it out to us. > > DES (bad DES, baaaad DES) > -- > Dag-Erling Smørgrav - smoergrd@oslo.geco-prakla.slb.com I'd considered that myself, but I don't know anything about the Cyrix 6x86MX, which is identified as a CPUCLASS_686 cpu in identcpu.c. I was concerned that the P.Pro/PII optimizations in pmap.c might not apply to the Cyrix chip... Its a lot cleaner if they do. Drew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jul 9 08:30:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA28704 for freebsd-bugs-outgoing; Thu, 9 Jul 1998 08:30:21 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA28687 for ; Thu, 9 Jul 1998 08:30:14 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA26600; Thu, 9 Jul 1998 08:30:04 -0700 (PDT) Date: Thu, 9 Jul 1998 08:30:04 -0700 (PDT) Message-Id: <199807091530.IAA26600@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: jher Subject: Re: kern/6858: inetd in realloc(): warning: junk pointer, too low to make sense. Reply-To: jher Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/6858; it has been noted by GNATS. From: jher To: freebsd-gnats-submit@freebsd.org, jher@io.com Cc: Subject: Re: kern/6858: inetd in realloc(): warning: junk pointer, too low to make sense. Date: Thu, 09 Jul 1998 10:27:18 -0500 Well the last idea suggested to me was replacing the ram. That did the trick. Granted it was 512M of ram and I replaced the first two sticks but now its not failing on the overnight cronjobs. Consider this case closed. -- Today is Setting Orange, day 44 in the season of Confusion, 3164. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jul 9 08:40:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA29886 for freebsd-bugs-outgoing; Thu, 9 Jul 1998 08:40:19 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA29863 for ; Thu, 9 Jul 1998 08:40:11 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA26833; Thu, 9 Jul 1998 08:40:01 -0700 (PDT) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA29258; Thu, 9 Jul 1998 08:34:40 -0700 (PDT) (envelope-from nobody) Message-Id: <199807091534.IAA29258@hub.freebsd.org> Date: Thu, 9 Jul 1998 08:34:40 -0700 (PDT) From: gallatin@cs.duke.edu To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: i386/7227: pmap_setdevram() disabled in wrong place Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7227 >Category: i386 >Synopsis: pmap_setdevram() disabled in wrong place >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Jul 9 08:40:00 PDT 1998 >Last-Modified: >Originator: Andrew Gallatin >Organization: Duke University, Department of Computer Science >Release: 3.0-CURRENT >Environment: FreeBSD grasshopper.cs.duke.edu 3.0-CURRENT FreeBSD 3.0-CURRENT #4: Wed Jul 8 19:58:49 EDT 1998 gallatin@grasshopper.cs.duke.edu:/usr/src/sys/compile/GRASSHOPPER i386 >Description: The dangerous call to pmap_setdevram() which enables write combining on video cards in P6/PII machines is already disabled in vga_probe(). Others may want to enable write combining on other devices (like Myrinet cards) -- the immediate return in pmap_setdevram() should go away. (broken out of i386/7201) >How-To-Repeat: Try enabling WC on a memory mapped PCI device on a PII ;-) >Fix: RCS file: /scratch/freebsd-cvs/src/sys/i386/i386/pmap.c,v retrieving revision 1.202 diff -c -r1.202 pmap.c *** pmap.c 1998/05/21 07:47:34 1.202 --- pmap.c 1998/07/09 15:27:37 *************** *** 505,511 **** unsigned long long base; unsigned long long mask; - return; if (cpu != CPU_686) return; --- 505,510 ---- >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 Jul 9 09:30:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA06792 for freebsd-bugs-outgoing; Thu, 9 Jul 1998 09:30:29 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA06759; Thu, 9 Jul 1998 09:30:17 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA28159; Thu, 9 Jul 1998 09:30:07 -0700 (PDT) Date: Thu, 9 Jul 1998 09:30:07 -0700 (PDT) Message-Id: <199807091630.JAA28159@freefall.freebsd.org> To: jher@io.com, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/6858 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: inetd in realloc(): warning: junk pointer, too low to make sense. State-Changed-From-To: open-closed State-Changed-By: phk State-Changed-When: Thu Jul 9 09:29:16 PDT 1998 State-Changed-Why: originator says hw bug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jul 9 11:07:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA23437 for freebsd-bugs-outgoing; Thu, 9 Jul 1998 11:07:40 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from alpha.xerox.com (omega.Xerox.COM [13.1.64.95]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id LAA23415; Thu, 9 Jul 1998 11:07:31 -0700 (PDT) (envelope-from fenner@parc.xerox.com) Received: from crevenia.parc.xerox.com ([13.2.116.11]) by alpha.xerox.com with SMTP id <40642(2)>; Thu, 9 Jul 1998 11:06:49 PDT Received: from localhost by crevenia.parc.xerox.com with SMTP id <177515>; Thu, 9 Jul 1998 11:06:37 -0700 To: Poul-Henning Kamp cc: jher@io.com, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/6858 In-reply-to: Your message of "Thu, 09 Jul 98 09:30:07 PDT." <199807091630.JAA28159@freefall.freebsd.org> Date: Thu, 9 Jul 1998 11:06:30 PDT From: Bill Fenner Message-Id: <98Jul9.110637pdt.177515@crevenia.parc.xerox.com> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <199807091630.JAA28159@freefall.freebsd.org> you write: >Synopsis: inetd in realloc(): warning: junk pointer, too low to make sense. > >originator says hw bug I don't know if I buy this - I've seen too many reports of this problem from too many people (and, in fact, I've seen it too). Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jul 9 11:37:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA00355 for freebsd-bugs-outgoing; Thu, 9 Jul 1998 11:37:44 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from critter.freebsd.dk (critter.freebsd.dk [195.8.129.14]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA00327 for ; Thu, 9 Jul 1998 11:37:37 -0700 (PDT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.8.7/8.8.5) with ESMTP id UAA00244; Thu, 9 Jul 1998 20:34:26 +0200 (CEST) To: Bill Fenner cc: jher@io.com, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/6858 In-reply-to: Your message of "Thu, 09 Jul 1998 11:06:30 PDT." <98Jul9.110637pdt.177515@crevenia.parc.xerox.com> Date: Thu, 09 Jul 1998 20:34:26 +0200 Message-ID: <242.900009266@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <98Jul9.110637pdt.177515@crevenia.parc.xerox.com>, Bill Fenner write s: >In message <199807091630.JAA28159@freefall.freebsd.org> you write: >>Synopsis: inetd in realloc(): warning: junk pointer, too low to make sense. >> >>originator says hw bug > >I don't know if I buy this - I've seen too many reports of this problem >from too many people (and, in fact, I've seen it too). In this case inetd was only one of the problems. inetd still have a memory management problem. -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." "ttyv0" -- What UNIX calls a $20K state-of-the-art, 3D, hi-res color terminal To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jul 9 11:53:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA03343 for freebsd-bugs-outgoing; Thu, 9 Jul 1998 11:53:31 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA03327 for ; Thu, 9 Jul 1998 11:53:29 -0700 (PDT) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.8.8/8.8.8) id OAA12521; Thu, 9 Jul 1998 14:49:15 -0400 (EDT) (envelope-from wollman) Date: Thu, 9 Jul 1998 14:49:15 -0400 (EDT) From: Garrett Wollman Message-Id: <199807091849.OAA12521@khavrinen.lcs.mit.edu> To: Poul-Henning Kamp Cc: Bill Fenner , jher@io.com, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/6858 In-Reply-To: <242.900009266@critter.freebsd.dk> References: <98Jul9.110637pdt.177515@crevenia.parc.xerox.com> <242.900009266@critter.freebsd.dk> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org < said: >> I don't know if I buy this - I've seen too many reports of this problem >> from too many people (and, in fact, I've seen it too). > In this case inetd was only one of the problems. > inetd still have a memory management problem. I don't necessarily believe this. I believe that the ``daemons dying'' problem of a few months ago is still with us, and it is silently corrupting the in-memory images of binaries which get swapped out in response to a memory shortage, and then fork. I was never able to determine the exact conditions which provoked it, but something was clearly wrong as recently as a June 6th kernel. (I could easily recognize this because my news transit box, when it was running diablo, would periodically fall over because cron stopped. -GAWollman -- Garrett A. Wollman | O Siem / We are all family / O Siem / We're all the same wollman@lcs.mit.edu | O Siem / The fires of freedom Opinions not those of| Dance in the burning flame MIT, LCS, CRS, or NSA| - Susan Aglukark and Chad Irschick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jul 9 12:00:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA04536 for freebsd-bugs-outgoing; Thu, 9 Jul 1998 12:00:16 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA04524 for ; Thu, 9 Jul 1998 12:00:13 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA02981; Thu, 9 Jul 1998 12:00:02 -0700 (PDT) Received: from whistle.com (s205m131.whistle.com [207.76.205.131]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA03294 for ; Thu, 9 Jul 1998 11:53:18 -0700 (PDT) (envelope-from archie@whistle.com) Received: (from smap@localhost) by whistle.com (8.7.5/8.6.12) id LAA15350 for ; Thu, 9 Jul 1998 11:52:48 -0700 (PDT) Received: from bubba.whistle.com(207.76.205.7) by whistle.com via smap (V1.3) id sma015346; Thu Jul 9 11:52:18 1998 Received: (from archie@localhost) by bubba.whistle.com (8.8.7/8.6.12) id LAA09846; Thu, 9 Jul 1998 11:52:18 -0700 (PDT) Message-Id: <199807091852.LAA09846@bubba.whistle.com> Date: Thu, 9 Jul 1998 11:52:18 -0700 (PDT) From: Archie Cobbs Reply-To: archie@whistle.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: bin/7228: at(1) does not accept long month names Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7228 >Category: bin >Synopsis: at(1) does not accept long month names >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 Jul 9 12:00:01 PDT 1998 >Last-Modified: >Originator: Archie Cobbs >Organization: Whistle Communications, Inc. >Release: FreeBSD 2.2.6-RELEASE i386 >Environment: 2.2.6 up through -current >Description: The "at" command accepts short month names like "jul" but not long ones like "july". >How-To-Repeat: $ at 1600 july 14 at: garbled time >Fix: Index: parsetime.c =================================================================== RCS file: /cvs/freebsd/src/usr.bin/at/parsetime.c,v retrieving revision 1.12 diff -c -r1.12 parsetime.c *** parsetime.c 1998/05/05 01:53:15 1.12 --- parsetime.c 1998/07/09 18:51:34 *************** *** 103,108 **** --- 103,120 ---- { "oct", OCT,0 }, { "nov", NOV,0 }, { "dec", DEC,0 }, + { "january", JAN,0 }, + { "february", FEB,0 }, + { "march", MAR,0 }, + { "april", APR,0 }, + { "may", MAY,0 }, + { "june", JUN,0 }, + { "july", JUL,0 }, + { "august", AUG,0 }, + { "september", SEP,0 }, + { "october", OCT,0 }, + { "november", NOV,0 }, + { "december", DEC,0 }, { "sunday", SUN, 0 }, { "sun", SUN, 0 }, { "monday", MON, 0 }, >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 Jul 9 12:48:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA13874 for freebsd-bugs-outgoing; Thu, 9 Jul 1998 12:48:30 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from 207.181.100.74 (stn-on1-10.netcom.ca [207.181.100.74]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id MAA13512; Thu, 9 Jul 1998 12:47:02 -0700 (PDT) (envelope-from dp3000@cheney.net) Date: Thu, 9 Jul 1998 12:47:02 -0700 (PDT) Message-Id: <199807091947.MAA13512@hub.freebsd.org> From: dp3000@cheney.net To: @FreeBSD.ORG Subject: Online Marketing X-Reply-To: xroma@netcom.ca Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org ONLINE MARKETING - THE NEXT GENERATION OF ADVERTISING/MARKETING Complete Online Marketing Solutions: At Estroco Technologies, we provide all the tools necessary to promote your business/organization. Whether your goal is: to have people come to your website, or to prospect for orders of products, we can help. Note all prices are in US$ funds. We provide the following solutions: 1. Bulk Email Services Let us send out your ad for you. It can be of any length, but must not be illegal in nature, or be of a pornographic nature. The list below, is a general pricing. We can customize how many you want sent out. 100,000 - 200 200,000 - 345 400,000 - 875 600,000 - 1,100 800,000 - 1,300 1,000,000 - 1,400 2,000,000 - 2,200 2. WebSite Search Engine Promotion One key factor for getting people to go to your website, is to have your site on search engines. The more search engines you are listed on, the more hits from your attended audience you'll receive. When including this option, we need the following criteria: - website to be submitted - keywords to be used(max. 25) - Title of Web Site - 30 word description Also, we allow multiple submissions, which will allow maximum exposure. As well, ever so often, sites will bump your listing down so it is a good idea to have the same site, submitted at least once a month, to guarantee to maintain your listing at the top. Our prices: 100 engines & directories - 15.00 200 engines & directories - 25.00 500 engines & directories - 45.00 3. Email Lists Ok. So you want to do your own bulk emailings. Well, we have our own bulk emailing lists, which are cleaned of remove requests, flames, etc. Also, we have much more on stock. 500,000 - 220.00 1,000,000 - 350.00 4. Targeted Mailings & Targeted Email Lists We also have targeted email addresses, and also can retrieve targeted email addresses. Minimum order of 5,000, due to the large work involved. Prices are per 5,000 @ 100.00. For Targeted Mailings prices are per 5,000 as well. Per 5,000 @ $200.00. 5. Web Page Design Let us create your web page, with state of the art design & graphics. To get started on this, you will need to send us a proposal, either by email, fax, or snail mail. If possible please send us a competitive price so we can work out and negotiate the web site to be designed. 6. Customized Graphics We can customize any graphics you desire. For example do you need customized pictures, a company logo, a banner, or any type of graphical illustration. We can do all. Contact us on what you need, and we will reply with a price quote. 7. Bulk Email Software We are distributors for one of the best bulk email packages out there. Express Mail Server transforms your computer into a powerful mail server. Let us show you the benefits of this amazing software. As well, you can receive a free 3-day fully-functional demo, which will give you time to actually try out the program package. the program retails regularly for: $299, but if you mention this ad, we will give it to you for $225. 8. Web Page Maintenance We also can maintain your web page, and make changes as you require them. The prices can be negotiated on this. For further info. please email us, or phone us. 9. Credit Card Merchant Account We have arrangements with a major credit card processor, which will allow you to obtain a pre-approved merchant account. You can then accept credit cards on your web-site, or be able to receive orders, form email messages sent out, etc. They also have various other services that they provide. Email us for more information. Do you have a deal to make with us?? Send us some info. on your proposal and we will look at it. If we want to go from there, we will negotiate fairly. We are always coming out with new services and products. Do you have any new ideas that we can add to our extensive list of products/services. Drop us a line, and we will certainly look over it. If there's something that's not here, we probably came out with it, or will come out with it. Just contact us and we will see what we can do. How to order or Contact us: As stated above, prices are in US. Funds. We accept as payment, check, money order, or bank transfer. For check's and money orders please send to our postal address. For bank transfer's please email, or phone us, for further instructions. To place an order, send a proposal, or to discuss anything with us: Postal Address: Estroco Technologies 32983 Wills Road Wainfleet, Ontario, Canada L0S 1V0 Email: xroma@netcom.ca Phone/Fax: (905) 899-3508 Thanks for your attention and time Note: if you don't wish to receive further mailings, please respond to our email address stating this, and you will not receive any mailings from us or will not be place on any email lists, etc. You will just be transferred to our permanent remove list, which will guarantee you receive no mailings form us, or any mailings form lists sold by us. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jul 9 15:40:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA07985 for freebsd-bugs-outgoing; Thu, 9 Jul 1998 15:40:28 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA07964 for ; Thu, 9 Jul 1998 15:40:18 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA08901; Thu, 9 Jul 1998 15:40:04 -0700 (PDT) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA06998; Thu, 9 Jul 1998 15:31:46 -0700 (PDT) (envelope-from nobody) Message-Id: <199807092231.PAA06998@hub.freebsd.org> Date: Thu, 9 Jul 1998 15:31:46 -0700 (PDT) From: cts@internetcds.com To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: misc/7229: /usr/include/pcap*.h isn't C++ safe. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7229 >Category: misc >Synopsis: /usr/include/pcap*.h isn't C++ safe. >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 Jul 9 15:40:01 PDT 1998 >Last-Modified: >Originator: Craig Spannring >Organization: InternetCDS >Release: 2.2.6 and 3.0 >Environment: FreeBSD backmaster.cdsnet.net 3.0-CURRENT FreeBSD 3.0-CURRENT #2: Tue May 5 20:30:34 PDT 1998 root@backmaster.cdsnet.net:/n/FreeBSD/3.0-back2/src/sys/compile/BACK2 i386 >Description: None of the header files for the packet capture library are suitable to include in a C++ file. They are missing the #ifdef __cplusplus extern "C" { #endif to give the declared functions C linkage >How-To-Repeat: Trying to compile this- #include #include main(int argc, char **argv) { pcap_t *cap = NULL; char errorBuf[4096]; cap = pcap_open_offline(argv[1], errorBuf); if (cap == NULL) { cout << "Error- " << errorBuf << endl; exit(1); } } as a C++ program will give this error- c++ tcpdump.cxx /var/tmp/ccR273601.o: Undefined symbol `_pcap_open_offline__FPcT0' referenced from text segment >Fix: Add the #ifdef __cplusplus extern "C" { #endif incantation to the begining of each of the pcap*.h files. >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 Jul 9 15:54:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA10388 for freebsd-bugs-outgoing; Thu, 9 Jul 1998 15:54:15 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA10360; Thu, 9 Jul 1998 15:54:06 -0700 (PDT) (envelope-from des@FreeBSD.org) From: "Dag-Erling C. Sm\xf8rgrav" Received: (from des@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA09367; Thu, 9 Jul 1998 15:53:54 -0700 (PDT) Date: Thu, 9 Jul 1998 15:53:54 -0700 (PDT) Message-Id: <199807092253.PAA09367@freefall.freebsd.org> To: archie@whistle.com, des@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG, des@FreeBSD.ORG Subject: Re: bin/7228 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Old Synopsis: at(1) does not accept long month names New Synopsis: [MFC] at(1) does not accept long month names State-Changed-From-To: open-feedback State-Changed-By: des State-Changed-When: Thu Jul 9 15:53:12 PDT 1998 State-Changed-Why: Fixed in -current. Responsible-Changed-From-To: freebsd-bugs->des Responsible-Changed-By: des Responsible-Changed-When: Thu Jul 9 15:53:12 PDT 1998 Responsible-Changed-Why: So I remember to MFC. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jul 9 16:10:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA12602 for freebsd-bugs-outgoing; Thu, 9 Jul 1998 16:10:14 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA12592 for ; Thu, 9 Jul 1998 16:10:13 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA09722; Thu, 9 Jul 1998 16:10:01 -0700 (PDT) Received: from www.RCousins.com ([209.31.225.65]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA11893 for ; Thu, 9 Jul 1998 16:04:18 -0700 (PDT) (envelope-from rec@rcousins.com) Received: (from rec@localhost) by www.RCousins.com (8.8.8/8.8.8) id QAA03280; Thu, 9 Jul 1998 16:04:11 -0700 (PDT) Message-Id: <199807092304.QAA03280@www.RCousins.com> Date: Thu, 9 Jul 1998 16:04:11 -0700 (PDT) From: rec@rcousins.com Reply-To: rec@rcousins.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: kern/7230: problem with SIOCGIFCONF Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7230 >Category: kern >Synopsis: problem with SIOCGIFCONF >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 Jul 9 16:10:01 PDT 1998 >Last-Modified: >Originator: Robert Cousus >Organization: >Release: FreeBSD 2.2.6-RELEASE i386 >Environment: K6 cpu, 128 megs RAM, 15 gigs Disk, 2 LAN ifces. >Description: SIOCGIFCONF does not return an array of struct ifreq with one entry per network interface. >How-To-Repeat: Compile and run the attached program to demonstrate the problem. (Note: program runs correctly under Solaris 2.5.1.) ----------------- #include #include #include #include #include #include char buffer[1<<12]; int main(int argc, char *argv[]) { int res; /* result from call */ int sock; /* socket file descriptor */ int i; /* loop variable */ struct ifconf ifconf; /* used in test below */ struct ifreq *ptr; /* pointer to walk buffer */ sock = socket(PF_INET, SOCK_DGRAM, 0); if (sock < 0) { perror("socket(PF_INET, SOCK_DGRAM, 0)"); exit(1); } ifconf.ifc_len = sizeof(buffer); /* establish size of buffer */ ifconf.ifc_buf = buffer; /* point to buffer */ res = ioctl(sock, SIOCGIFCONF, &ifconf); if (res < 0) { perror("ioctl(sock, SIOCGIFCONF, &ifconf)"); exit(1); } /* * At this point, the ifconf.ifc_len should tell how many bytes consumed * in the buffer and ifconf.ifc_req should point to an array of ifreq * structures. * /* * Test 1: The return value should be a multiple of sizeof(ifreq). */ if (ifconf.ifc_len % sizeof(struct ifreq)) { printf("Failed test1: %d %% %d = %d\n", ifconf.ifc_len, sizeof(struct ifreq), ifconf.ifc_len % sizeof(struct ifreq)); } /* * Test 2: We should be able to print out the names of all * interfaces by looping through the array. */ ptr = ifconf.ifc_req; /* point to beginning of array */ for (i = 0; i < (ifconf.ifc_len/sizeof(struct ifreq)); i++, ptr++) printf("Interface %d: %s\n", i, ptr->ifr_name); exit(0); } ----------------- >Fix: Unknown. >Audit-Trail: >Unformatted: Robert Cousins To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jul 9 16:57:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA18584 for freebsd-bugs-outgoing; Thu, 9 Jul 1998 16:57:08 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA18579; Thu, 9 Jul 1998 16:57:05 -0700 (PDT) (envelope-from fenner@FreeBSD.org) From: Bill Fenner Received: (from fenner@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA10870; Thu, 9 Jul 1998 16:56:53 -0700 (PDT) Date: Thu, 9 Jul 1998 16:56:53 -0700 (PDT) Message-Id: <199807092356.QAA10870@freefall.freebsd.org> To: rec@rcousins.com, fenner@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7230 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: problem with SIOCGIFCONF State-Changed-From-To: open-closed State-Changed-By: fenner State-Changed-When: Thu Jul 9 16:55:04 PDT 1998 State-Changed-Why: The SIOCGIFCONF interface changed in 4.3-Reno (when sa_len was introduced). The return value includes a list of struct ifreqs, but you have to check the size of the struct sockaddr inside the struct ifreq to see where the next ifreq starts. See, for example, the code on page 436 of _UNIX Network Programming, Volume 1_, second edition. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jul 9 18:30:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA00335 for freebsd-bugs-outgoing; Thu, 9 Jul 1998 18:30:34 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freebie.lemis.com (freebie.lemis.com [139.130.136.133] (may be forged)) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA29885; Thu, 9 Jul 1998 18:26:58 -0700 (PDT) (envelope-from grog@freebie.lemis.com) Received: (from grog@localhost) by freebie.lemis.com (8.9.0/8.9.0) id KAA16200; Fri, 10 Jul 1998 10:56:34 +0930 (CST) Message-ID: <19980710105634.K16065@freebie.lemis.com> Date: Fri, 10 Jul 1998 10:56:34 +0930 From: Greg Lehey To: Poul-Henning Kamp , jher@io.com, freebsd-bugs@FreeBSD.ORG Subject: inetd in realloc(): warning: junk pointer, too low to make sense (was: kern/6858) References: <199807091630.JAA28159@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <199807091630.JAA28159@freefall.freebsd.org>; from Poul-Henning Kamp on Thu, Jul 09, 1998 at 09:30:07AM -0700 WWW-Home-Page: http://www.lemis.com/~grog Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-41-739-7062 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thursday, 9 July 1998 at 9:30:07 -0700, Poul-Henning Kamp wrote: > Synopsis: inetd in realloc(): warning: junk pointer, too low to make sense. > > State-Changed-From-To: open-closed > State-Changed-By: phk > State-Changed-When: Thu Jul 9 09:29:16 PDT 1998 > State-Changed-Why: > originator says hw bug You've got to be joking! We discussed this at length, and we've seen that many people have had the problem. Now one person claims it's a hardware problem, and you close it. I can understand the desirability of keeping down the number of open PRs, but just closing them doesn't make the problem go away. Greg -- See complete headers for address and phone numbers finger grog@lemis.com for PGP public key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jul 10 02:00:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA10272 for freebsd-bugs-outgoing; Fri, 10 Jul 1998 02:00:09 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA10227 for ; Fri, 10 Jul 1998 02:00:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA00424; Fri, 10 Jul 1998 02:00:05 -0700 (PDT) Received: from news1.gtn.com (news1.gtn.com [194.77.0.15]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA13440 for ; Thu, 9 Jul 1998 20:46:57 -0700 (PDT) (envelope-from andreas@klemm.gtn.com) Received: (from uucp@localhost) by news1.gtn.com (8.8.6/8.8.6) with UUCP id FAA15841 for FreeBSD-gnats-submit@freebsd.org; Fri, 10 Jul 1998 05:45:10 +0200 (MET DST) Received: (from andreas@localhost) by klemm.gtn.com (8.8.8/8.8.8) id FAA29482; Fri, 10 Jul 1998 05:39:23 +0200 (CEST) (envelope-from andreas) Message-Id: <199807100339.FAA29482@klemm.gtn.com> Date: Fri, 10 Jul 1998 05:39:23 +0200 (CEST) From: Andreas Klemm Reply-To: andreas@klemm.gtn.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: misc/7232: Suggestion for FreeBSD installation dialog Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7232 >Category: misc >Synopsis: Suggestion for FreeBSD installation dialog >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Jul 10 02:00:05 PDT 1998 >Last-Modified: >Originator: Andreas Klemm >Organization: >Release: FreeBSD 3.0-CURRENT i386 >Environment: FreeBSD-current and -STABLE >Description: I would suggest to enhance the FreeBSD syinstall program with little but useful changes: 1) Add a menue to configure name resolving: Currently we only ask for *one* DNS Server in the network card installation dialogue. I'd suggest to ask for the *three* possible DNS server. I always have to change /etc/resolv.conf manually after a FreeBSD installation. I think this would be a simple change. Additionally we could perhaps think about making DNS configuration to a separate menue. We could ask the user for: domain name [ dom.ain.from.tcp_ip_setup ] 1. DNS Server [ first.dns.server ] 2. DNS Server [ second.dns.server ] 3. DNS Server [ third.dns.server ] Order of name resolving clickable: [ ] bind hosts (recommended) [ ] hosts bind 2) Add a menue to enable and configure the automounter. This could be an additional submenue, that would be presented - in the custom installation - in all other installations types if user decides, to setup the machine as a NFS client. From the Network or perhaps the new DNS setup menue we already know the domainname of the machine and could simply configure: amd_enable="YES" # Run amd service with $amd_flags (or NO). amd_flags="-a /net -c 1800 -k i386 -d my.domain -l syslog /host /etc/amd.map" ^^^^^^^^^ the real domain ! I think this wouldn't be hard to implement and should go into the next -STABLE and -current release. >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jul 10 05:27:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA01774 for freebsd-bugs-outgoing; Fri, 10 Jul 1998 05:27:49 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from such.srcc.msu.su (such.srcc.msu.su [158.250.26.146]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA01766 for ; Fri, 10 Jul 1998 05:27:43 -0700 (PDT) (envelope-from krotoff@such.srcc.msu.su) Received: (from krotoff@localhost) by such.srcc.msu.su (8.8.8/8.8.7) id QAA09555 for freebsd-bugs@freebsd.org; Fri, 10 Jul 1998 16:26:33 +0400 (MSD) (envelope-from krotoff) From: Alexander Krotoff Message-Id: <199807101226.QAA09555@such.srcc.msu.su> Subject: cplusplus ld demangling To: freebsd-bugs@FreeBSD.ORG Date: Fri, 10 Jul 1998 16:26:33 +0400 (MSD) X-Mailer: ELM [version 2.4ME+ PL31H (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I am using freebsd-2.2.6 with gcc-2.8.1 built with ports collection. 2.2.6 ld version supports c++ names demangling, but this feature do not work. As seems to me this problem could be fixex this way: diff -r1.1 /usr/src/gnu/usr.bin/ld/warnings.c 73c73 < saved_result = cplus_demangle (name[0] == '_' ? name + 1 : name, DMGL_PARAMS | DMGL_ANSI); --- > saved_result = cplus_demangle (name, DMGL_PARAMS | DMGL_ANSI); -ank To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jul 10 07:30:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA17484 for freebsd-bugs-outgoing; Fri, 10 Jul 1998 07:30:11 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA17444 for ; Fri, 10 Jul 1998 07:30:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA05708; Fri, 10 Jul 1998 07:30:01 -0700 (PDT) Received: from tim.xenologics.com (tim.xenologics.com [194.77.5.24]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA16124 for ; Fri, 10 Jul 1998 07:21:10 -0700 (PDT) (envelope-from seggers@semyam.dinoco.de) Received: (from uucp@localhost) by tim.xenologics.com (8.8.5/8.8.8) with UUCP id QAA28317 for FreeBSD-gnats-submit@freebsd.org; Fri, 10 Jul 1998 16:20:42 +0200 (MET DST) Received: (from seggers@localhost) by semyam.dinoco.de (8.8.8/8.8.8) id NAA07005; Fri, 10 Jul 1998 13:07:19 +0200 (CEST) (envelope-from seggers) Message-Id: <199807101107.NAA07005@semyam.dinoco.de> Date: Fri, 10 Jul 1998 13:07:19 +0200 (CEST) From: Stefan Eggers Reply-To: seggers@semyam.dinoco.de To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: seggers@semyam.dinoco.de X-Send-Pr-Version: 3.2 Subject: kern/7233: unnecessary code in -current VM Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7233 >Category: kern >Synopsis: unnecessary code in -current VM >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Jul 10 07:30:01 PDT 1998 >Last-Modified: >Originator: Stefan Eggers >Organization: none >Release: FreeBSD 2.2.6-STABLE i386 >Environment: The -current VM source. >Description: While reading the VM source for -current I found an unneces- sary test in an if/else construct. If something is known to be not 0 it is not 0 - no need to test again. ;-) It might save a few bytes in the code and also a few cycles once in a while I think. At least it is easier to read w/o rechecking the condition. >How-To-Repeat: N/A >Fix: Index: vm_pageout.c =================================================================== RCS file: /usr2/FreeBSD/CVSROOT/src/sys/vm/vm_pageout.c,v retrieving revision 1.122 diff -u -r1.122 vm_pageout.c --- vm_pageout.c 1998/06/02 05:39:13 1.122 +++ vm_pageout.c 1998/07/10 11:00:35 @@ -722,7 +722,7 @@ */ if (m->dirty == 0) { vm_page_test_dirty(m); - } else if (m->dirty != 0) { + } else { m->dirty = VM_PAGE_BITS_ALL; } >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 Jul 10 09:20:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA01652 for freebsd-bugs-outgoing; Fri, 10 Jul 1998 09:20:06 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA01601 for ; Fri, 10 Jul 1998 09:20:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA11346; Fri, 10 Jul 1998 09:20:01 -0700 (PDT) Received: from wit381007.student.utwente.nl (wit381007.student.utwente.nl [130.89.232.187]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA00890 for ; Fri, 10 Jul 1998 09:12:28 -0700 (PDT) (envelope-from scsprong@wit381007.student.utwente.nl) Received: (from scsprong@localhost) by wit381007.student.utwente.nl (8.8.8/8.8.7) id SAA21205; Fri, 10 Jul 1998 18:11:06 +0200 (CEST) (envelope-from scsprong) Message-Id: <199807101611.SAA21205@wit381007.student.utwente.nl> Date: Fri, 10 Jul 1998 18:11:06 +0200 (CEST) From: "S.C. Sprong" Reply-To: s.c.sprong@student.utwente.nl To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: kern/7234: keyboard problems during login immediately after boot Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7234 >Category: kern >Synopsis: keyboard problems during login immediately after boot >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 Jul 10 09:20:00 PDT 1998 >Last-Modified: >Originator: S.C. Sprong >Organization: >Release: FreeBSD 2.2.6-RELEASE i386 >Environment: The machine is a good quality Pentium with proven hardware (for the IBM PC clone world anyway). There are no silly overclockings or such. The relevant reatures for this problem are: - a rather old keyboard connected with a ~2 m elongation(?) cable and a db/ps2 convertor, which may or may not push this set-up out of spec. - rc.conf settings: keymap="us.iso" # keymap in /usr/share/syscons/keymaps/* (or NO). keyrate="fast" # keyboard rate to: slow, normal, fast (or NO). keybell="NO" # bell to duration.pitch or normal or visual (or NO). keychange="NO" # function keys default values (or NO). cursor="destructive" # cursor type {normal|blink|destructive} (or NO). scrnmap="NO" # screen map in /usr/share/syscons/scrnmaps/* (or NO). font8x16="iso-8x16" # font 8x16 from /usr/share/syscons/fonts/* (or NO). font8x14="iso-8x14" # font 8x14 from /usr/share/syscons/fonts/* (or NO). font8x8="iso-8x8" # - a custom rc.local with the following syscons twiddling: set terminals to 30 rows, iso latin characters if [ -f /usr/sbin/vidcontrol ]; then for tty in /dev/ttyv? do vidcontrol -f 8x14 iso-8x14.fnt <$tty vidcontrol VGA_80x30 <$tty done fi as suggested in the freebsd.misc newsgroup some time ago. >Description: Sometimes right after booting, the keyboard produces garbage non ASCII characters which make it impossible to login. There is no discernible pattern to this character mess. Ctl-D, Ctl-C, etc. don't work. Remote login reveals that the boot sequence has always completed successfully. Actions that update or display messages on the console, such as (remote) su root and (remote) kill -HUP 1, display correctly on the console (ttyv0), which suggests that the video part of syscons works. Unplugging or swapping the keyboard doesn't work. I have several brands of (elderly) keyboards, and this problem happened with all of them. At one time, login exited on signal 3, but this could be the result of my clumsy fiddling. The core dump is available on request. My suspicion is that some hardware timing (reset of the keyboard processor?) is sometimes off, which triggers a bug in the syscons device driver. As I started a private problem log with the installation of release 2.2.6, I do not know whether this problem occurred in earlier versions I used. >How-To-Repeat: This problem occurs infrequently, and is not repeatable. >Fix: The ability to completely reset the syscons driver would not be a luxury. A suggested workaround that I haven't tried yet is from problem report i386/3082: kbdcontrol -r fast >/dev/ttyv? which I shall try as soon as the opportunity arises. As a sidenote: kbd_mode, the suggested panacaea for all keyboard ills, has not had any effect whatsoever, for good or for bad. >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 Jul 10 10:40:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA12347 for freebsd-bugs-outgoing; Fri, 10 Jul 1998 10:40:08 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA12289 for ; Fri, 10 Jul 1998 10:40:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA19459; Fri, 10 Jul 1998 10:40:02 -0700 (PDT) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA11880; Fri, 10 Jul 1998 10:37:30 -0700 (PDT) (envelope-from nobody) Message-Id: <199807101737.KAA11880@hub.freebsd.org> Date: Fri, 10 Jul 1998 10:37:30 -0700 (PDT) From: srosenthal@northernlight.com To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: i386/7235: 3Com 3C905 ethernet card cannot be probed Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7235 >Category: i386 >Synopsis: 3Com 3C905 ethernet card cannot be probed >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Jul 10 10:40:00 PDT 1998 >Last-Modified: >Originator: Simon Rosenthal >Organization: Northern Light Technology >Release: 2.2.6 >Environment: FreeBSD beryl.nimbus.northernlight.com 2.2.6-RELEASE FreeBSD 2.2.6-RELEASE #0: Fri Jul 10 12:32:25 EDT 1998 root@beryl.nimbus.northernlight.com:/usr/src/sys/compile/BERYL i386 >Description: We have a very new 3Com Fast Etherlink XL 3C905B-TX card. (PCI). The probe by the vx driver was not seeing it. The console log showed that this model had a device ID which was not being recognized by the probe function in if_vx.pci.c I modified /sys/pci/if_vx.c to recognize the device id the cards was sending back; however, when the card was configured using ifconfig, the system would hang with a "Out of mbuf clusters - increase maxusers! "message. This still persisted when maxusers was increased to 64. The card was plugged into a 100mB hub. >How-To-Repeat: >Fix: We're working around it by using an older 3COM PCI card. I'd appreciate being notified of any fixes to the driver, though. Modified sys/pci/if_vx_pci.c to check for the new device id. diffs: 85c85 < if(device_id == 0x905510b7ul || device_id == 0x905010b7ul || device_id == 0x905110b7ul) --- > if(device_id == 0x905010b7ul || device_id == 0x905110b7ul) >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 Jul 10 13:00:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA00324 for freebsd-bugs-outgoing; Fri, 10 Jul 1998 13:00:07 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA00316 for ; Fri, 10 Jul 1998 13:00:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA22560; Fri, 10 Jul 1998 13:00:01 -0700 (PDT) Received: from backbus.mayn.de (backbus.mayn.de [194.95.209.4]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA29661 for ; Fri, 10 Jul 1998 12:57:14 -0700 (PDT) (envelope-from mkb@backbus.mayn.de) Received: (from mkb@localhost) by backbus.mayn.de (8.8.8/8.8.8) id VAA00400; Fri, 10 Jul 1998 21:57:07 +0200 (CEST) (envelope-from mkb) Message-Id: <199807101957.VAA00400@backbus.mayn.de> Date: Fri, 10 Jul 1998 21:57:07 +0200 (CEST) From: mkb@mayn.de Reply-To: mkb@mayn.de To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: kern/7237: NCR SCSI driver ch0 troubles Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7237 >Category: kern >Synopsis: NCR SCSI driver ch0 troubles >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jul 10 13:00:01 PDT 1998 >Last-Modified: >Originator: Matthias Buelow >Organization: GeFoekoM e.V. Wuerzburg/Germany >Release: FreeBSD 2.2-980503-SNAP i386 >Environment: FreeBSD 2.2-980503-SNAP #0: Fri Jul 10 21:18:08 CEST 1998 root@backbus:/usr/src/sys/compile/BACKBUS CPU: Pentium (48.58-MHz 586-class CPU) Origin = "GenuineIntel" Id = 0x515 Stepping=5 Features=0x1bf real memory = 16777216 (16384K bytes) avail memory = 14852096 (14504K bytes) Probing for devices on PCI bus 0: chip0 rev 3 on pci0:0:0 chip1 rev 3 on pci0:2:0 de0 rev 32 int a irq 11 on pci0:12:0 de0: SMC 9332BDT 21140A [10-100Mb/s] pass 2.0 de0: address 00:00:c0:f0:4f:f2 ncr0 rev 3 int a irq 15 on pci0:14:0 ncr0 waiting for scsi devices to settle new ccb @f02fa000. (ncr0:0:0): "IMPRIMIS 94241-7 6354" type 0 fixed SCSI 1 sd0(ncr0:0:0): Direct-Access 317MB (649502 512 byte sectors) new ccb @f0475c00. (ncr0:1:0): "SEAGATE ST43400N 1028" type 0 fixed SCSI 2 sd1(ncr0:1:0): Direct-Access sd1(ncr0:1:0): 10.0 MB/s (100 ns, offset 15) 2777MB (5688447 512 byte sectors) new ccb @f0475800. (ncr0:3:0): "HP C1557A U610" type 1 removable SCSI 2 st0(ncr0:3:0): Sequential-Access st0(ncr0:3:0): 10.0 MB/s (100 ns, offset 16) density code 0x25, variable blocks, write-enabled new ccb @f0475400. (ncr0:3:1): "HP C1557A U610" type 8 removable SCSI 2 ch0(ncr0:3:1): Medium-Changer 6 slots, 1 drive, 0 picker new ccb @f0475000. new ccb @f0476c00. new ccb @f0476800. new ccb @f0476400. new ccb @f0476000. new ccb @f0477c00. Probing for devices on the ISA bus: sc0 at 0x60-0x6f irq 1 on motherboard sc0: VGA mono <16 virtual consoles, flags=0x0> sio0 at 0x3f8-0x3ff irq 4 on isa sio0: type 16550A fdc0 at 0x3f0-0x3f7 irq 6 drq 2 on isa fdc0: FIFO enabled, 8 bytes threshold fd0: 1.44MB 3.5in npx0 flags 0x1 on motherboard npx0: INT 16 interface Intel Pentium F00F detected, installing workaround >Description: The HP C1557 changer is correctly identified, but several commands using the chio interface fail: # chio status chio: /dev/ch0: CHIOGSTATUS: Input/output error The kernel logs the following: Jul 10 21:40:10 backbus /kernel: ch0(ncr0:3:1): extraneous data discarded. Jul 10 21:40:10 backbus /kernel: ch0(ncr0:3:1): COMMAND FAILED (9 0) @f0475400. According to the taper's manual, the changer does understand the READ ELEMENT STATUS scsi command (0xb8), as defined in scsi_changer.h, so the error could be within the driver software. Some other chio commands work (move for example), but status does not. However, the Amanda network backup suite which we intend to run on the system makes heavy use of CHIOGSTATUS in it's chio changer method, so it doesn't work with the current setup. Tape is inserted, etc., and the streamer part of the HP taper seems to work properly. I have found an obviously related entry in the mailing lists archive, but not found a problem report in the database. The mailing list entry can be found at the following URL: http://www.freebsd.org/cgi/getmsg.cgi?fetch=1220314+1222457+/usr/local/www/db/text/1997/freebsd-questions/19971012.freebsd-questions >How-To-Repeat: Configure 2.2-STABLE kernel for ch0 and ncr: device ch0 #SCSI media changers controller ncr0 options SCSI_NCR_DEBUG (The SCSI_NCR_DEBUG flag has no effect on the problem status) Try a couple of chio commands, some work, the "status" command does not work: # chio status [error as shown above] >Fix: No fix is known. >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jul 10 13:10:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA01588 for freebsd-bugs-outgoing; Fri, 10 Jul 1998 13:10:11 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA01523 for ; Fri, 10 Jul 1998 13:10:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA22826; Fri, 10 Jul 1998 13:10:00 -0700 (PDT) Received: from tim.xenologics.com (tim.xenologics.com [194.77.5.24]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA00397 for ; Fri, 10 Jul 1998 13:01:24 -0700 (PDT) (envelope-from seggers@semyam.dinoco.de) Received: (from uucp@localhost) by tim.xenologics.com (8.8.5/8.8.8) with UUCP id VAA27546 for FreeBSD-gnats-submit@freebsd.org; Fri, 10 Jul 1998 21:56:38 +0200 (MET DST) Received: (from seggers@localhost) by semyam.dinoco.de (8.8.8/8.8.8) id VAA26625; Fri, 10 Jul 1998 21:54:38 +0200 (CEST) (envelope-from seggers) Message-Id: <199807101954.VAA26625@semyam.dinoco.de> Date: Fri, 10 Jul 1998 21:54:38 +0200 (CEST) From: Stefan Eggers Reply-To: seggers@semyam.dinoco.de To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: seggers@semyam.dinoco.de X-Send-Pr-Version: 3.2 Subject: kern/7238: Misleading comment in swap_pager.h Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7238 >Category: kern >Synopsis: Misleading comment in swap_pager.h >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Jul 10 13:10:00 PDT 1998 >Last-Modified: >Originator: Stefan Eggers >Organization: none >Release: FreeBSD 2.2.6-STABLE i386 >Environment: 2.2-current VM subsystem source from a few days ago. >Description: While reading the source I found an obsolete comment in a header file. See the diff for details. >How-To-Repeat: N/A >Fix: --- swap_pager.h.ORIG Wed Apr 29 06:28:02 1998 +++ swap_pager.h Fri Jul 10 21:52:07 1998 @@ -62,7 +62,7 @@ struct swblock { unsigned short swb_valid; /* bitmask for valid pages */ unsigned short swb_locked; /* block locked */ - daddr_t swb_block[SWB_NPAGES]; /* unfortunately int instead of daddr_t */ + daddr_t swb_block[SWB_NPAGES]; }; typedef struct swblock *sw_blk_t; >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 Jul 10 13:40:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA08031 for freebsd-bugs-outgoing; Fri, 10 Jul 1998 13:40:17 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA07983 for ; Fri, 10 Jul 1998 13:40:07 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA23627; Fri, 10 Jul 1998 13:40:01 -0700 (PDT) Received: from vulcan.tky.hut.fi (jkirma@vulcan.tky.hut.fi [130.233.19.89]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA06522 for ; Fri, 10 Jul 1998 13:32:20 -0700 (PDT) (envelope-from jkirma@vulcan.tky.hut.fi) Received: (from jkirma@localhost) by vulcan.tky.hut.fi (8.8.7/8.8.8) id XAA08920; Fri, 10 Jul 1998 23:32:16 +0300 (EEST) (envelope-from jkirma) Message-Id: <199807102032.XAA08920@vulcan.tky.hut.fi> Date: Fri, 10 Jul 1998 23:32:16 +0300 (EEST) From: jkirma@vulcan.tky.hut.fi Reply-To: jkirma@vulcan.tky.hut.fi To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: misc/7239: ping(8) and traceroute(8) may report erratic round-trip times Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7239 >Category: misc >Synopsis: ping(8) and traceroute(8) may report erratic round-trip times >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 Jul 10 13:40:01 PDT 1998 >Last-Modified: >Originator: Jari Kirma >Organization: >Release: FreeBSD 2.2.6-STABLE i386 >Environment: Contents of /var/run/dmesg.boot: Copyright (c) 1992-1998 FreeBSD Inc. Copyright (c) 1982, 1986, 1989, 1991, 1993 The Regents of the University of California. All rights reserved. FreeBSD 2.2.6-STABLE #0: Sun Jun 14 13:54:19 EEST 1998 jkirma@vulcan.tky.hut.fi:/usr/src/sys/compile/VULCAN CPU: Cyrix 6x86MX (166.28-MHz 686-class CPU) Origin = "CyrixInstead" Id = 0x600 DIR=0x451 Stepping=0 Revision=4 real memory = 134217728 (131072K bytes) avail memory = 129503232 (126468K bytes) Probing for devices on PCI bus 0: chip0 *generic PCI bridge (vendor=10b9 device=1531 subclass=0)* rev 178 on pci0: 0:0 chip1 *generic PCI bridge (vendor=10b9 device=1533 subclass=1)* rev 180 on pci0: 2:0 vga0 *VGA-compatible display device* rev 48 int a irq 15 on pci0:3:0 pci0:11: ACER Labs, device=0x5229, class=storage (ide) int a irq ?? [no drive r assigned] Probing for PnP devices: CSN 1 Vendor ID: CTL00e4 [0xe4008c0e] Serial 0x056e8049 Probing for devices on the ISA bus: sc0 at 0x60-0x6f irq 1 on motherboard sc0: VGA color *4 virtual consoles, flags=0x0* ed0 at 0x240-0x25f irq 10 maddr 0xc8000 msize 16384 on isa ed0: address 00:00:c0:83:02:af, type SMC8216T (16 bit) sio0 at 0x3f8-0x3ff irq 4 on isa sio0: type 16550A sio1 at 0x2f8-0x2ff irq 3 on isa sio1: type 16550A wdc0 at 0x1f0-0x1f7 irq 14 flags 0x80ff80ff on isa wdc0: unit 0 (wd0): *ST52520A*, 32-bit, multi-block-16 wd0: 2446MB (5009760 sectors), 4970 cyls, 16 heads, 63 S/T, 512 B/S wdc0: unit 1 (wd1): *ST3491A-XR*, 32-bit, multi-block-16 wd1: 408MB (836070 sectors), 899 cyls, 15 heads, 62 S/T, 512 B/S npx0 flags 0x7 on motherboard npx0: INT 16 interface sb0 at 0x220 irq 5 drq 1 on isa sb0: *SoundBlaster 16 4.16* sbxvi0 at 0x0 drq 5 on isa sbxvi0: *SoundBlaster 16 4.16* sbmidi0 at 0x330 on isa *SoundBlaster MPU-401* awe0 at 0x620 on isa AWE32 not found AWE32: not detected opl0 at 0x388 on isa opl0: *Yamaha OPL-3 FM* Related options at /sys/i386/conf/VULCAN: # NETWORKING OPTIONS options INET #Internet communications protocols pseudo-device ether #Generic Ethernet pseudo-device loop #Network loopback device Uptime: 10:35PM up 26 days, 7:53, 14 users, load averages: 0.13, 0.04, 0.01 Other potentially related information: The host clock is synchronised using xntpd. >Description: ping(8) and traceroute(8) produce erratic round-trip times for hosts closer than 10 ms from the host. Interestingly, the first round-trip time reported for a host by the process is always correct, and some of the following responses may be correct. Pinging loopback device and the host itself produce correct results. $ ping -c 5 localhost PING localhost (127.0.0.1): 56 data bytes 64 bytes from 127.0.0.1: icmp_seq=0 ttl=255 time=0.072 ms 64 bytes from 127.0.0.1: icmp_seq=1 ttl=255 time=0.063 ms 64 bytes from 127.0.0.1: icmp_seq=2 ttl=255 time=0.067 ms 64 bytes from 127.0.0.1: icmp_seq=3 ttl=255 time=0.078 ms 64 bytes from 127.0.0.1: icmp_seq=4 ttl=255 time=0.059 ms --- localhost ping statistics --- 5 packets transmitted, 5 packets received, 0% packet loss round-trip min/avg/max/stddev = 0.059/0.068/0.078/0.007 ms $ ping -c 5 vulcan PING vulcan.tky.hut.fi (130.233.19.89): 56 data bytes 64 bytes from 130.233.19.89: icmp_seq=0 ttl=255 time=0.067 ms 64 bytes from 130.233.19.89: icmp_seq=1 ttl=255 time=0.060 ms 64 bytes from 130.233.19.89: icmp_seq=2 ttl=255 time=0.050 ms 64 bytes from 130.233.19.89: icmp_seq=3 ttl=255 time=0.065 ms 64 bytes from 130.233.19.89: icmp_seq=4 ttl=255 time=0.050 ms --- vulcan.tky.hut.fi ping statistics --- 5 packets transmitted, 5 packets received, 0% packet loss round-trip min/avg/max/stddev = 0.050/0.058/0.067/0.007 ms $ traceroute localhost traceroute to localhost (127.0.0.1), 30 hops max, 40 byte packets 1 localhost (127.0.0.1) 0.157 ms 0.102 ms 0.061 ms $ traceroute vulcan traceroute to vulcan.tky.hut.fi (130.233.19.89), 30 hops max, 40 byte packets 1 vulcan (130.233.19.89) 0.157 ms 0.104 ms 0.092 ms Pinging another machine in the local network doesn't: $ ping -c 5 shadow PING shadow.tky.hut.fi (130.233.19.69): 56 data bytes 64 bytes from 130.233.19.69: icmp_seq=0 ttl=64 time=1.527 ms 64 bytes from 130.233.19.69: icmp_seq=1 ttl=64 time=0.217 ms 64 bytes from 130.233.19.69: icmp_seq=2 ttl=64 time=0.212 ms 64 bytes from 130.233.19.69: icmp_seq=3 ttl=64 time=0.213 ms 64 bytes from 130.233.19.69: icmp_seq=4 ttl=64 time=0.214 ms --- shadow.tky.hut.fi ping statistics --- 5 packets transmitted, 5 packets received, 0% packet loss round-trip min/avg/max/stddev = 0.212/0.477/1.527/0.525 ms $ traceroute -q 10 shadow traceroute to shadow.tky.hut.fi (130.233.19.69), 30 hops max, 40 byte packets 1 shadow (130.233.19.69) 0.825 ms 0.688 ms 0.709 ms 0.423 ms 0.274 ms 0.268 ms 0.420 ms 0.268 ms 0.267 ms 0.265 ms But instead, using single query per process invocation produces correct results! $ ping -c 1 shadow PING shadow.tky.hut.fi (130.233.19.69): 56 data bytes 64 bytes from 130.233.19.69: icmp_seq=0 ttl=64 time=0.837 ms --- shadow.tky.hut.fi ping statistics --- 1 packets transmitted, 1 packets received, 0% packet loss round-trip min/avg/max/stddev = 0.837/0.837/0.837/0.000 ms $ ping -c 1 shadow PING shadow.tky.hut.fi (130.233.19.69): 56 data bytes 64 bytes from 130.233.19.69: icmp_seq=0 ttl=64 time=0.746 ms --- shadow.tky.hut.fi ping statistics --- 1 packets transmitted, 1 packets received, 0% packet loss round-trip min/avg/max/stddev = 0.746/0.746/0.746/0.000 ms $ ping -c 1 shadow PING shadow.tky.hut.fi (130.233.19.69): 56 data bytes 64 bytes from 130.233.19.69: icmp_seq=0 ttl=64 time=3.142 ms --- shadow.tky.hut.fi ping statistics --- 1 packets transmitted, 1 packets received, 0% packet loss round-trip min/avg/max/stddev = 3.142/3.142/3.142/0.000 ms Machines that are just about 10 ms away seem to give mixed results: $ ping upper-gw.sunet.se PING upper-gw.sunet.se (193.10.85.17): 56 data bytes 64 bytes from 193.10.85.17: icmp_seq=0 ttl=247 time=14.634 ms 64 bytes from 193.10.85.17: icmp_seq=1 ttl=247 time=0.240 ms 64 bytes from 193.10.85.17: icmp_seq=2 ttl=247 time=0.233 ms 64 bytes from 193.10.85.17: icmp_seq=3 ttl=247 time=10.068 ms 64 bytes from 193.10.85.17: icmp_seq=4 ttl=247 time=0.236 ms 64 bytes from 193.10.85.17: icmp_seq=5 ttl=247 time=0.245 ms 64 bytes from 193.10.85.17: icmp_seq=6 ttl=247 time=10.073 ms 64 bytes from 193.10.85.17: icmp_seq=7 ttl=247 time=10.069 ms 64 bytes from 193.10.85.17: icmp_seq=8 ttl=247 time=0.264 ms 64 bytes from 193.10.85.17: icmp_seq=9 ttl=247 time=0.233 ms 64 bytes from 193.10.85.17: icmp_seq=10 ttl=247 time=0.235 ms 64 bytes from 193.10.85.17: icmp_seq=11 ttl=247 time=0.293 ms 64 bytes from 193.10.85.17: icmp_seq=12 ttl=247 time=0.237 ms 64 bytes from 193.10.85.17: icmp_seq=13 ttl=247 time=10.061 ms 64 bytes from 193.10.85.17: icmp_seq=14 ttl=247 time=0.239 ms 64 bytes from 193.10.85.17: icmp_seq=15 ttl=247 time=9.981 ms ^C --- upper-gw.sunet.se ping statistics --- 16 packets transmitted, 16 packets received, 0% packet loss round-trip min/avg/max/stddev = 0.233/4.209/14.634/5.223 ms $ traceroute -q 10 upper-gw.sunet.se traceroute to upper-gw.sunet.se (193.10.80.33), 30 hops max, 40 byte packets 1 trinet-gw (130.233.31.254) 2.491 ms 3.888 ms 0.292 ms 0.262 ms 7.737 ms 0.262 ms 7.790 ms 0.267 ms 0.285 ms 7.739 ms 2 hutnet-sw.hut.fi (130.233.248.254) 1.773 ms 0.274 ms 8.189 ms 0.265 ms 0.264 ms 0.411 ms 0.283 ms 4.922 ms 0.263 ms 0.263 ms 3 hutnet-gw-100m.hut.fi (130.233.0.125) 1.761 ms 0.273 ms 0.263 ms 0.275 ms 0.413 ms 0.267 ms 0.279 ms 0.261 ms 0.264 ms 0.262 ms 4 funet5-hut-a.hut.fi (130.233.0.98) 1.695 ms 0.273 ms 0.282 ms 7.346 ms 0.262 ms 0.411 ms 0.267 ms 0.264 ms 5.094 ms 0.262 ms 5 funet3-a10042-funet5.funet.fi (193.166.187.41) 18.600 ms 0.273 ms 0.264 ms 0.410 ms 5.498 ms 0.262 ms 0.263 ms 0.261 ms 0.261 ms 0.262 ms 6 funet3-a10042-funet5.funet.fi (193.166.187.41) 5.596 ms 0.271 ms 0.265 ms 0.276 ms 4.462 ms 0.268 ms 0.263 ms 0.276 ms 0.263 ms 0.260 ms 7 funet2-fe500-backbone.funet.fi (193.166.4.2) 6.477 ms funet1-a1002-funet2.funet.fi (128.214.231.13) 7.453 ms 0.437 ms 0.588 ms 0.267 ms 0.263 ms 0.262 ms 0.413 ms 0.265 ms 0.264 ms 8 193.10.252.49 (193.10.252.49) 6.817 ms 8.703 ms 9.415 ms 9.404 ms 9.455 ms 8.860 ms 9.131 ms 9.420 ms 9.427 ms 9.459 ms 9 upper-gw.sunet.se (193.10.252.66) 9.391 ms * 9.526 ms * 0.313 ms * 0.336 ms * 59.553 ms * Machines further away produce correct results: $ ping -c 5 freebsd.org PING freebsd.org (204.216.27.18): 56 data bytes 64 bytes from 204.216.27.18: icmp_seq=0 ttl=236 time=330.886 ms 64 bytes from 204.216.27.18: icmp_seq=1 ttl=236 time=350.094 ms 64 bytes from 204.216.27.18: icmp_seq=2 ttl=236 time=360.079 ms 64 bytes from 204.216.27.18: icmp_seq=3 ttl=236 time=320.086 ms 64 bytes from 204.216.27.18: icmp_seq=4 ttl=236 time=320.070 ms --- freebsd.org ping statistics --- 5 packets transmitted, 5 packets received, 0% packet loss round-trip min/avg/max/stddev = 320.070/336.243/360.079/16.195 ms $ traceroute -q 10 freebsd.org traceroute to freebsd.org (204.216.27.18), 30 hops max, 40 byte packets 1 trinet-gw (130.233.31.254) 1.087 ms 0.300 ms 0.264 ms 7.120 ms 0.263 ms 0.261 ms 0.421 ms 0.287 ms 5.643 ms 0.262 ms 2 hutnet-sw.hut.fi (130.233.248.254) 0.979 ms 0.678 ms 0.271 ms 0.286 ms 0.262 ms 3.301 ms 0.288 ms 0.265 ms 0.263 ms 0.275 ms 3 hutnet-gw-100m.hut.fi (130.233.0.125) 1.597 ms 0.866 ms 0.796 ms 0.223 m s 0.411 ms 2.219 ms 0.263 ms 0.262 ms 0.263 ms 0.279 ms 4 funet5-hut-a.hut.fi (130.233.0.98) 1.587 ms 1.084 ms 0.291 ms 0.264 ms 0.261 ms 0.433 ms 0.266 ms 0.263 ms 0.263 ms 0.261 ms 5 funet3-a10042-funet5.funet.fi (193.166.187.41) 6.012 ms 0.708 ms 0.290 ms 0.265 ms 0.410 ms 0.267 ms 0.263 ms 0.263 ms 0.262 ms 4.557 ms 6 funet2-fe500-backbone.funet.fi (193.166.4.2) 2.509 ms 4.907 ms 0.264 ms 0.261 ms 0.411 ms 0.293 ms 0.262 ms 6.559 ms 0.283 ms 0.263 ms 7 funet1-a1002-funet2.funet.fi (128.214.231.13) 1.577 ms 0.274 ms 0.266 ms 0.285 ms 0.410 ms 0.267 ms 5.540 ms 0.262 ms 0.262 ms 7.829 ms 8 193.10.252.49 (193.10.252.49) 9.359 ms 8.400 ms 9.432 ms 9.411 ms 0.297 ms 7.507 ms 9.384 ms 0.285 ms 0.361 ms 8.830 ms 9 us-gw.nordu.net (193.10.252.138) 109.366 ms 99.082 ms 109.376 ms 109.406 ms 106.718 ms 99.408 ms 109.402 ms 109.348 ms 99.423 ms 99.896 ms 10 Teleglobe.net (207.45.216.249) 109.389 ms 99.132 ms 109.402 ms 109.423 m s 106.676 ms 109.373 ms 99.336 ms 109.420 ms 109.412 ms 109.405 ms 11 gin-nyy-bb1.Teleglobe.net (207.45.201.33) 99.379 ms 109.031 ms 99.393 ms 100.198 ms 100.000 ms 109.382 ms 109.414 ms 109.406 ms 109.391 ms 169.414 ms 12 Teleglobe.net (207.45.223.2) 108.821 ms 109.101 ms 119.418 ms 119.356 ms 109.520 ms 116.651 ms 109.393 ms 119.391 ms 109.421 ms 119.382 ms 13 mae-e-1.e0.crl.com (192.41.177.104) 139.338 ms * 119.677 ms * 139.569 ms 139.386 ms 109.048 ms 149.814 ms 119.372 ms 139.419 ms 14 sfo-vva.x.atm.us.crl.net (165.113.50.65) 359.365 ms 319.888 ms 309.420 ms 349.365 ms * 339.402 ms 289.376 ms 259.390 ms 289.393 ms 319.445 ms 15 E0-CRL-SFO-02-E0X0.US.CRL.NET (165.113.55.2) 329.238 ms 318.816 ms 320.12 9 ms 339.422 ms 339.646 ms 309.319 ms 359.329 ms 339.576 ms 359.410 ms 33 9.309 ms 16 T1-CDROM-00-EX.US.CRL.NET (165.113.118.2) 306.572 ms 339.011 ms 349.364 m s 337.030 ms 369.337 ms 339.377 ms 369.366 ms 329.382 ms 319.397 ms 349.3 55 ms 17 hub.FreeBSD.ORG (204.216.27.18) 336.701 ms 358.804 ms 429.590 ms 319.359 ms 356.650 ms 299.518 ms 319.219 ms 323.537 ms 345.204 ms 389.333 ms In the test system, faulty values obviously cluster inside 0.2-0.4 ms range. Actual transmission of ICMP datagrams have been measured to happen within the network. Based on a rudimentary functionality testing of gettimeofday(2) with similar delays imposed between the measurements (using usleep(3) or idle loop), no failure have been noticed. This would suggest something being wrong in the protocol stack, no matter how eerie it sounds. ;) >How-To-Repeat: This bug is as far as I know, unrepeatable. Similar tests were conducted with another similarily configured FreeBSD 2.2.6 machine, without any failures. The problem has appeared sometime during (wild guess) two last weeks of machine uptime. >Fix: Unknown. >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jul 10 13:50:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA11989 for freebsd-bugs-outgoing; Fri, 10 Jul 1998 13:50:33 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA11888 for ; Fri, 10 Jul 1998 13:50:09 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA23916; Fri, 10 Jul 1998 13:50:01 -0700 (PDT) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA10345; Fri, 10 Jul 1998 13:46:37 -0700 (PDT) (envelope-from nobody) Message-Id: <199807102046.NAA10345@hub.freebsd.org> Date: Fri, 10 Jul 1998 13:46:37 -0700 (PDT) From: brianfeldman@hotmail.com To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: kern/7240: XF86_* servers crash w/ SIGBUS on 3.0-CURRENT (7/9 build) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7240 >Category: kern >Synopsis: XF86_* servers crash w/ SIGBUS on 3.0-CURRENT (7/9 build) >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jul 10 13:50:00 PDT 1998 >Last-Modified: >Originator: Brian Feldman >Organization: >Release: 3.0-CURRENT (7/9/98) >Environment: FreeBSD feldman.dyn.ml.org 3.0-CURRENT FreeBSD 3.0-CURRENT #0: Thu Jul 9 17:37:36 EDT 1998 green@feldman.dyn.ml.org:/usr/src/sys/compile/FELDMAN i386 >Description: XFree86 crashes. A lot. Sometimes it just locks up, sometimes it decides to give me a SIGBUS (no core, ARGH!) When locking up it thankfully doesn't take the entire computer down with it, but it does have to be killed and restarted. >How-To-Repeat: Get a FreeBSD 3.0-CURRENT system, as of 7/8 seems the earliest report of this problem/ a problem like this. Use XFree86, sit back and wait for crashes. >Fix: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jul 10 14:52:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA23785 for freebsd-bugs-outgoing; Fri, 10 Jul 1998 14:52:57 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: (from alex@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA23618; Fri, 10 Jul 1998 14:52:03 -0700 (PDT) (envelope-from alex) Date: Fri, 10 Jul 1998 14:52:03 -0700 (PDT) From: Alex Nash Message-Id: <199807102152.OAA23618@hub.freebsd.org> To: seggers@semyam.dinoco.de, alex, freebsd-bugs Subject: Re: kern/7238 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Misleading comment in swap_pager.h State-Changed-From-To: open-closed State-Changed-By: alex State-Changed-When: Fri Jul 10 14:50:15 PDT 1998 State-Changed-Why: Fixed in rev 1.22 of swap_pager.h. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jul 10 15:00:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA25334 for freebsd-bugs-outgoing; Fri, 10 Jul 1998 15:00:35 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from critter.freebsd.dk (critter.freebsd.dk [195.8.133.1] (may be forged)) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA25190 for ; Fri, 10 Jul 1998 15:00:07 -0700 (PDT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.8.7/8.8.5) with ESMTP id XAA01285; Fri, 10 Jul 1998 23:57:08 +0200 (CEST) To: Greg Lehey cc: jher@io.com, freebsd-bugs@FreeBSD.ORG Subject: Re: inetd in realloc(): warning: junk pointer, too low to make sense (was: kern/6858) In-reply-to: Your message of "Fri, 10 Jul 1998 10:56:34 +0930." <19980710105634.K16065@freebie.lemis.com> Date: Fri, 10 Jul 1998 23:57:08 +0200 Message-ID: <1283.900107828@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <19980710105634.K16065@freebie.lemis.com>, Greg Lehey writes: >On Thursday, 9 July 1998 at 9:30:07 -0700, Poul-Henning Kamp wrote: >> Synopsis: inetd in realloc(): warning: junk pointer, too low to make sense. >> >> State-Changed-From-To: open-closed >> State-Changed-By: phk >> State-Changed-When: Thu Jul 9 09:29:16 PDT 1998 >> State-Changed-Why: >> originator says hw bug > >You've got to be joking! We discussed this at length, and we've seen >that many people have had the problem. Now one person claims it's a >hardware problem, and you close it. > >I can understand the desirability of keeping down the number of open >PRs, but just closing them doesn't make the problem go away. I really wish people would read the entire audit-trail before they jump to conclusions, onto soap-boxes or out of windows. THANKYOU!!! -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." "ttyv0" -- What UNIX calls a $20K state-of-the-art, 3D, hi-res color terminal To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jul 10 15:50:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA05508 for freebsd-bugs-outgoing; Fri, 10 Jul 1998 15:50:22 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA05433 for ; Fri, 10 Jul 1998 15:50:09 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA29895; Fri, 10 Jul 1998 15:50:02 -0700 (PDT) Received: from gatekeeper.alcatel.com.au (gatekeeper.alcatel.com.au [203.17.66.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA04178 for ; Fri, 10 Jul 1998 15:42:30 -0700 (PDT) (envelope-from peter@vk2pj.alcatel.com.au) Received: from mfg1.cim.alcatel.com.au ("port 4415"@[139.188.23.1]) by gatekeeper.alcatel.com.au (PMDF V5.1-7 #U2695) with ESMTP id <01IZ9O1W35A800091Y@gatekeeper.alcatel.com.au> for FreeBSD-gnats-submit@freebsd.org; Sat, 11 Jul 1998 08:41:51 +1000 Received: from cbd.alcatel.com.au by cim.alcatel.com.au (PMDF V5.1-10 #U2695) with ESMTP id <01IZ9O1SY23K8WZQTC@cim.alcatel.com.au> for FreeBSD-gnats-submit@freebsd.org; Sat, 11 Jul 1998 08:41:48 +1000 Received: from vk2pj.alcatel.com.au ([139.188.118.2]) by cbd.alcatel.com.au (PMDF V5.1-7 #U2695) with ESMTP id <01IZ9O1LGGY88WWNUJ@cbd.alcatel.com.au> for FreeBSD-gnats-submit@freebsd.org; Sat, 11 Jul 1998 08:41:44 +1100 Received: (from peter@localhost) by vk2pj.alcatel.com.au (8.8.7/8.7.3) id IAA15036; Sat, 11 Jul 1998 08:41:33 +1000 (EST) Message-Id: <199807102241.IAA15036@vk2pj.alcatel.com.au> Date: Sat, 11 Jul 1998 08:41:33 +1000 (EST) From: peter.jeremyp@alcatel.com.au Reply-To: peter.jeremyp@alcatel.com.au To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: bin/7241: tcpdump does not work with parallel line IP Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7241 >Category: bin >Synopsis: tcpdump does not work with parallel line IP >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 Jul 10 15:50:01 PDT 1998 >Last-Modified: >Originator: Peter Jeremy >Organization: >Release: FreeBSD 2.2.5-RELEASE i386 >Environment: Two FreeBSD 2.2.5-RELEASE machines connected via parallel IP. There are no changes in 2.2.6-RELEASE so the same problem presumably occurs. >Description: The tcpdump supplied with 2.2.5-RELEASE (and 2.2.6-RELEASE) cannot handle parallel IP. The problem is that the LP code defines itself as DLT_NULL, which assumes a 4-byte header, although the LP interface uses a 2-byte header. Also, the m_len field in the mbuf passed to the bpfilter has been zeroed during the transmit prcess (3rd patch block in lpt.c below). The solution is to define a new interface protocol type `DLT_LPIP' which has the correct characteristics. >How-To-Repeat: Run tcpdump on an lp interface. The decode will be corrupted. >Fix: The following patch defines a new DLT_LPIP type and modifies the lp interface to use it. This patch should apply to either 2.2.6-RELEASE or 2.2.5-RELEASE. In the latter case, the last patch (to the tcpdump Makefile) will have 1 fuzz line. There may be offset lines with the lpt.c patch due to (unrelated) changed to fix the spl() problem previously corrected (kern/6099, i386/5698). Note that this patch includes changes to contrib software. I'm not certain of the correct procedure to apply FreeBSD changes to contrib software, so the following may need massaging. A copy of these patches have been forwarded to the tcpdump maintainer. diff -ur 2.2.6/contrib/libpcap/bpf/net/bpf.h 2.2.5/contrib/libpcap/bpf/net/bpf.h --- 2.2.6/contrib/libpcap/bpf/net/bpf.h Tue Aug 20 06:36:33 1996 +++ 2.2.5/contrib/libpcap/bpf/net/bpf.h Sun Jan 18 09:55:53 1998 @@ -165,6 +165,7 @@ #define DLT_PPP 9 /* Point-to-point Protocol */ #define DLT_FDDI 10 /* FDDI */ #define DLT_ATM_RFC1483 11 /* LLC/SNAP encapsulated atm */ +#define DLT_LPIP 12 /* Parallel port TCP/IP */ /* * The instruction encondings. diff -ur 2.2.6/contrib/libpcap/gencode.c 2.2.5/contrib/libpcap/gencode.c --- 2.2.6/contrib/libpcap/gencode.c Mon Dec 23 02:03:05 1996 +++ 2.2.5/contrib/libpcap/gencode.c Sun Jan 18 09:55:53 1998 @@ -513,6 +513,11 @@ off_linktype = 6; off_nl = 8; return; + + case DLT_LPIP: + off_linktype = 0; + off_nl = 2; + return; } bpf_error("unknown data link type 0x%x", linktype); /* NOTREACHED */ @@ -562,6 +567,7 @@ break; case DLT_NULL: + case DLT_LPIP: /* XXX */ if (proto == ETHERTYPE_IP) return (gen_cmp(0, BPF_W, (bpf_int32)htonl(AF_INET))); diff -ur 2.2.6/contrib/tcpdump/Makefile.in 2.2.5/contrib/tcpdump/Makefile.in --- 2.2.6/contrib/tcpdump/Makefile.in Tue Aug 20 06:34:03 1996 +++ 2.2.5/contrib/tcpdump/Makefile.in Sun Jan 18 09:55:53 1998 @@ -62,7 +62,7 @@ print-sl.c print-ppp.c print-rip.c print-snmp.c \ print-ntp.c print-null.c print-egp.c print-ospf.c \ print-fddi.c print-llc.c print-sunrpc.c print-wb.c \ - print-decnet.c print-isoclns.c print-ipx.c \ + print-decnet.c print-isoclns.c print-lpip.c print-ipx.c \ print-atm.c print-dvmrp.c print-pim.c print-krb.c \ util.c machdep.c bpf_dump.c parsenfsfh.c LOCALSRC = diff -ur 2.2.6/contrib/tcpdump/interface.h 2.2.5/contrib/tcpdump/interface.h --- 2.2.6/contrib/tcpdump/interface.h Wed Mar 4 18:57:52 1998 +++ 2.2.5/contrib/tcpdump/interface.h Sun Jan 18 09:55:53 1998 @@ -112,6 +103,7 @@ extern void ether_if_print(u_char *, const struct pcap_pkthdr *, const u_char *); extern void fddi_if_print(u_char *, const struct pcap_pkthdr *, const u_char*); +extern void lpip_if_print(u_char *, const struct pcap_pkthdr *, const u_char*); extern void null_if_print(u_char *, const struct pcap_pkthdr *, const u_char*); extern void ppp_if_print(u_char *, const struct pcap_pkthdr *, const u_char *); extern void sl_if_print(u_char *, const struct pcap_pkthdr *, const u_char *); diff -u /dev/null 2.2.5/contrib/tcpdump/print-lpip.c --- /dev/null Thu Jul 9 02:05:45 1998 +++ 2.2.5/contrib/tcpdump/print-lpip.c Sun Jun 29 14:25:25 1997 @@ -0,0 +1,118 @@ +/* + * Copyright (c) 1991, 1993, 1994, 1995, 1996 + * The Regents of the University of California. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that: (1) source code distributions + * retain the above copyright notice and this paragraph in its entirety, (2) + * distributions including binary code include the above copyright notice and + * this paragraph in its entirety in the documentation or other materials + * provided with the distribution, and (3) all advertising materials mentioning + * features or use of this software display the following acknowledgement: + * ``This product includes software developed by the University of California, + * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of + * the University nor the names of its contributors may be used to endorse + * or promote products derived from this software without specific prior + * written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ + +#ifndef lint +static char rcsid[] = + "@(#)$Header: print-lpip.c,v 1.1"; +#endif + +#include +#include +#include +#include +#include + +#if __STDC__ +struct mbuf; +struct rtentry; +#endif +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include + +#include "interface.h" +#include "addrtoname.h" +#include "pcap.h" + +#define LPIP_HDRLEN 2 + +static void +lpip_print(const u_char *p, const struct ip *ip, u_int length) +{ + u_int family; + + memcpy((char *)&family, (char *)p, sizeof(family)); + + if (nflag) { + /* XXX just dump the header */ + return; + } + switch (family) { + + case AF_INET: + printf("ip: "); + break; + + case AF_NS: + printf("ns: "); + break; + + default: + printf("AF %d: ", family); + break; + } +} + +void +lpip_if_print(u_char *user, const struct pcap_pkthdr *h, const u_char *p) +{ + u_int length = h->len; + u_int caplen = h->caplen; + const struct ip *ip; + + if (length < LPIP_HDRLEN || caplen < LPIP_HDRLEN) + return; + + ts_print(&h->ts); + + /* + * Some printers want to get back at the link level addresses, + * and/or check that they're not walking off the end of the packet. + * Rather than pass them all the way down, we set these globals. + */ + packetp = p; + snapend = p + caplen; + + length -= LPIP_HDRLEN; + + ip = (struct ip *)(p + LPIP_HDRLEN); + + if (eflag) + lpip_print(p, ip, length); + + ip_print((const u_char *)ip, length); + + if (xflag) + default_print((const u_char *)ip, caplen - LPIP_HDRLEN); + putchar('\n'); +} + diff -ur 2.2.6/contrib/tcpdump/tcpdump.c 2.2.5/contrib/tcpdump/tcpdump.c --- 2.2.6/contrib/tcpdump/tcpdump.c Tue Aug 20 06:34:12 1996 +++ 2.2.5/contrib/tcpdump/tcpdump.c Sun Jan 18 09:55:53 1998 @@ -97,6 +97,7 @@ { ppp_if_print, DLT_PPP }, { fddi_if_print, DLT_FDDI }, { null_if_print, DLT_NULL }, + { lpip_if_print, DLT_LPIP }, { atm_if_print, DLT_ATM_RFC1483 }, { NULL, 0 }, }; diff -ur 2.2.6/sys/i386/isa/lpt.c 2.2.5/sys/i386/isa/lpt.c --- 2.2.6/sys/i386/isa/lpt.c Sat Feb 28 15:18:12 1998 +++ 2.2.5/sys/i386/isa/lpt.c Fri Mar 27 19:08:19 1998 @@ -871,7 +882,7 @@ printf("lp%d: TCP/IP capable interface\n", unit); #if NBPFILTER > 0 - bpfattach(ifp, DLT_NULL, LPIPHDRLEN); + bpfattach(ifp, DLT_LPIP, LPIPHDRLEN); #endif } /* @@ -1139,6 +1153,7 @@ } #if NBPFILTER > 0 if (sc->sc_if.if_bpf) { + lprintf("r"); bpf_tap(&sc->sc_if, sc->sc_ifbuf, len); } #endif @@ -1308,7 +1323,8 @@ mm = m; do { cp = mtod(mm,u_char *); - while (mm->m_len--) + i = mm->m_len; + while (i--) if (lpoutbyte(*cp++, LPMAXSPIN2, lpt_data_port, lpt_stat_port)) goto end; } while ((mm = mm->m_next)); @@ -1341,6 +1357,7 @@ m0.m_len = 2; m0.m_data = (char *)&hdr; + lprintf("t"); bpf_mtap(ifp, &m0); } #endif diff -ur 2.2.6/sys/net/bpf.c 2.2.5/sys/net/bpf.c --- 2.2.6/sys/net/bpf.c Sat Oct 4 09:57:03 1997 +++ 2.2.5/sys/net/bpf.c Sat Jan 17 19:26:16 1998 @@ -170,7 +170,9 @@ */ switch (linktype) { + case DLT_NULL: case DLT_SLIP: + case DLT_LPIP: sockp->sa_family = AF_INET; hlen = 0; break; @@ -190,11 +192,6 @@ /* XXX 4(FORMAC)+6(dst)+6(src)+3(LLC)+5(SNAP) */ hlen = 24; #endif - break; - - case DLT_NULL: - sockp->sa_family = AF_UNSPEC; - hlen = 0; break; default: diff -ur 2.2.6/sys/net/bpf.h 2.2.5/sys/net/bpf.h --- 2.2.6/sys/net/bpf.h Tue Aug 20 06:28:25 1996 +++ 2.2.5/sys/net/bpf.h Sat Jan 17 19:26:17 1998 @@ -146,6 +146,7 @@ #define DLT_PPP 9 /* Point-to-point Protocol */ #define DLT_FDDI 10 /* FDDI */ #define DLT_ATM_RFC1483 11 /* LLC/SNAP encapsulated atm */ +#define DLT_LPIP 12 /* Parallel port TCP/IP */ /* * The instruction encodings. diff -ur 2.2.6/usr.sbin/tcpdump/tcpdump/Makefile 2.2.5/usr.sbin/tcpdump/tcpdump/Makefile --- 2.2.6/usr.sbin/tcpdump/tcpdump/Makefile Thu Jan 1 08:51:55 1998 +++ 2.2.5/usr.sbin/tcpdump/tcpdump/Makefile Sun Jan 18 09:55:54 1998 @@ -13,8 +13,8 @@ print-sl.c print-ppp.c print-rip.c print-snmp.c \ print-ntp.c print-null.c print-egp.c print-ospf.c \ print-fddi.c print-llc.c print-sunrpc.c print-wb.c \ - print-decnet.c print-isoclns.c print-ipx.c \ + print-decnet.c print-isoclns.c print-ipx.c print-lpip.c \ print-atm.c print-fr.c print-dvmrp.c print-pim.c print-krb.c \ util.c machdep.c bpf_dump.c parsenfsfh.c CLEANFILES+= version.c DPADD+= ${LIBL} ${LIBPCAP} >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 Jul 10 15:50:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA05509 for freebsd-bugs-outgoing; Fri, 10 Jul 1998 15:50:23 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA05435 for ; Fri, 10 Jul 1998 15:50:09 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA29904; Fri, 10 Jul 1998 15:50:03 -0700 (PDT) Received: from gatekeeper.alcatel.com.au (gatekeeper.alcatel.com.au [203.17.66.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA04211 for ; Fri, 10 Jul 1998 15:42:44 -0700 (PDT) (envelope-from peter@vk2pj.alcatel.com.au) Received: from mfg1.cim.alcatel.com.au ("port 4420"@[139.188.23.1]) by gatekeeper.alcatel.com.au (PMDF V5.1-7 #U2695) with ESMTP id <01IZ9O27TPHC0007YW@gatekeeper.alcatel.com.au> for FreeBSD-gnats-submit@freebsd.org; Sat, 11 Jul 1998 08:42:07 +1000 Received: from cbd.alcatel.com.au by cim.alcatel.com.au (PMDF V5.1-10 #23324) with ESMTP id <01IZ9O23SSZKCWJ4W4@cim.alcatel.com.au> for FreeBSD-gnats-submit@freebsd.org; Sat, 11 Jul 1998 08:42:04 +1000 Received: from vk2pj.alcatel.com.au ([139.188.118.2]) by cbd.alcatel.com.au (PMDF V5.1-7 #U2695) with ESMTP id <01IZ9O1YGIVK8WWOQK@cbd.alcatel.com.au> for FreeBSD-gnats-submit@freebsd.org; Sat, 11 Jul 1998 08:41:58 +1100 Received: (from peter@localhost) by vk2pj.alcatel.com.au (8.8.7/8.7.3) id IAA15123; Sat, 11 Jul 1998 08:41:51 +1000 (EST) Message-Id: <199807102241.IAA15123@vk2pj.alcatel.com.au> Date: Sat, 11 Jul 1998 08:41:51 +1000 (EST) From: peter.jeremyp@alcatel.com.au Reply-To: peter.jeremyp@alcatel.com.au To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: kern/7242: Clarification of comments in RTC header Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7242 >Category: kern >Synopsis: Clarification of comments in RTC header >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Jul 10 15:50:02 PDT 1998 >Last-Modified: >Originator: Peter Jeremy >Organization: >Release: FreeBSD 2.2.5-RELEASE i386 >Environment: Any FreeBSD 2.x (and maybe 3.x) >Description: The comments in sys/i386/isa/rtc.h are less clear than they could be. Adding the following reduces the requirement to refer to the MC146818 data sheet to determine the code behaviour. >How-To-Repeat: Look at the source and patch below. >Fix: The following is a patch to 2.2.5-RELEASE or 2.2.6-RELEASE which will clarify a number of comments. diff -ur 2.2.6/sys/i386/isa/rtc.h 2.2.5/sys/i386/isa/rtc.h --- 2.2.6/sys/i386/isa/rtc.h Tue Oct 10 01:00:39 1995 +++ 2.2.5/sys/i386/isa/rtc.h Sat Jan 17 19:26:14 1998 @@ -40,14 +40,8 @@ #ifndef _I386_ISA_RTC_H_ #define _I386_ISA_RTC_H_ 1 /* - * RTC Register locations + * MC146818 RTC Register locations */ #define RTC_SEC 0x00 /* seconds */ @@ -57,8 +57,9 @@ #define RTC_STATUSA 0x0a /* status register A */ #define RTCSA_TUP 0x80 /* time update, don't look now */ +#define RTCSA_RESET 0x70 /* reset divider */ #define RTCSA_DIVIDER 0x20 /* divider correct for 32768 Hz */ -#define RTCSA_8192 0x03 +#define RTCSA_8192 0x03 /* 8192 Hz interrupt */ #define RTCSA_4096 0x04 #define RTCSA_2048 0x05 #define RTCSA_1024 0x06 /* default for profiling */ @@ -70,17 +71,17 @@ #define RTCSA_NOPROF RTCSA_128 #define RTC_NOPROFRATE 128 #define RTCSA_64 0x0a -#define RTCSA_32 0x0b +#define RTCSA_32 0x0b /* 32Hz interrupt */ #define RTC_STATUSB 0x0b /* status register B */ -#define RTCSB_DST 0x01 /* Daylight Savings Time enable */ +#define RTCSB_DST 0x01 /* USA Daylight Savings Time enable */ #define RTCSB_24HR 0x02 /* 0 = 12 hours, 1 = 24 hours */ #define RTCSB_BCD 0x04 /* 0 = BCD, 1 = Binary coded time */ #define RTCSB_SQWE 0x08 /* 1 = output sqare wave at SQW pin */ #define RTCSB_UINTR 0x10 /* 1 = enable update-ended interrupt */ #define RTCSB_AINTR 0x20 /* 1 = enable alarm interrupt */ #define RTCSB_PINTR 0x40 /* 1 = enable periodic clock interrupt */ -#define RTCSB_HALT 0x80 /* stop clock updates */ +#define RTCSB_HALT 0x80 /* 1 = stop clock updates */ #define RTC_INTR 0x0c /* status register C (R) interrupt source */ #define RTCIR_UPDATE 0x10 /* update intr */ @@ -89,8 +90,9 @@ #define RTCIR_INT 0x80 /* interrupt output signal */ #define RTC_STATUSD 0x0d /* status register D (R) Lost Power */ -#define RTCSD_PWR 0x80 /* clock lost power */ +#define RTCSD_PWR 0x80 /* 0 = clock lost power */ +/* everything below here is CMOS RAM */ #define RTC_DIAG 0x0e /* status register E - bios diagnostic */ #define RTCDG_BITS "\020\010clock_battery\007ROM_cksum\006config_unit\005memory_size\004fixed_disk\003invalid_time" >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 Jul 11 01:02:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA09577 for freebsd-bugs-outgoing; Sat, 11 Jul 1998 01:02:15 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA09556; Sat, 11 Jul 1998 01:02:01 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA17941; Sat, 11 Jul 1998 01:01:53 -0700 (PDT) Date: Sat, 11 Jul 1998 01:01:53 -0700 (PDT) Message-Id: <199807110801.BAA17941@freefall.freebsd.org> To: peter.jeremyp@alcatel.com.au, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7242 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Clarification of comments in RTC header State-Changed-From-To: open-closed State-Changed-By: phk State-Changed-When: Sat Jul 11 01:01:24 PDT 1998 State-Changed-Why: committed with minor changes To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jul 11 01:08:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA09821 for freebsd-bugs-outgoing; Sat, 11 Jul 1998 01:08:01 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA09795; Sat, 11 Jul 1998 01:07:53 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA18197; Sat, 11 Jul 1998 01:07:45 -0700 (PDT) Date: Sat, 11 Jul 1998 01:07:45 -0700 (PDT) Message-Id: <199807110807.BAA18197@freefall.freebsd.org> To: jkirma@vulcan.tky.hut.fi, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: misc/7239 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ping(8) and traceroute(8) may report erratic round-trip times State-Changed-From-To: open-feedback State-Changed-By: phk State-Changed-When: Sat Jul 11 01:06:53 PDT 1998 State-Changed-Why: 10 msec jitter (even for the long times) indicates that something times out can you try a different ethernet card ? This could also be excessive collisions To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jul 11 01:10:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA09993 for freebsd-bugs-outgoing; Sat, 11 Jul 1998 01:10:02 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA09928; Sat, 11 Jul 1998 01:09:53 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA18282; Sat, 11 Jul 1998 01:09:46 -0700 (PDT) Date: Sat, 11 Jul 1998 01:09:46 -0700 (PDT) Message-Id: <199807110809.BAA18282@freefall.freebsd.org> To: mkb@mayn.de, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7237 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: NCR SCSI driver ch0 troubles State-Changed-From-To: open-suspended State-Changed-By: phk State-Changed-When: Sat Jul 11 01:08:56 PDT 1998 State-Changed-Why: awaiting fix & committer I would think that if the hardware lacks support for the "status" command, it will be hard to fix this problem. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jul 11 01:13:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA10196 for freebsd-bugs-outgoing; Sat, 11 Jul 1998 01:13:41 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA10189; Sat, 11 Jul 1998 01:13:35 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA18427; Sat, 11 Jul 1998 01:13:27 -0700 (PDT) Date: Sat, 11 Jul 1998 01:13:27 -0700 (PDT) Message-Id: <199807110813.BAA18427@freefall.freebsd.org> To: andreas@klemm.gtn.com, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: misc/7232 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Suggestion for FreeBSD installation dialog State-Changed-From-To: open-suspended State-Changed-By: phk State-Changed-When: Sat Jul 11 01:12:35 PDT 1998 State-Changed-Why: Awaiting patch && committer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jul 11 01:17:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA10603 for freebsd-bugs-outgoing; Sat, 11 Jul 1998 01:17:25 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA10590; Sat, 11 Jul 1998 01:17:18 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA18603; Sat, 11 Jul 1998 01:17:10 -0700 (PDT) Date: Sat, 11 Jul 1998 01:17:10 -0700 (PDT) Message-Id: <199807110817.BAA18603@freefall.freebsd.org> To: cts@internetcds.com, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: misc/7229 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: /usr/include/pcap*.h isn't C++ safe. State-Changed-From-To: open-feedback State-Changed-By: phk State-Changed-When: Sat Jul 11 01:16:53 PDT 1998 State-Changed-Why: could you please submit a tested patch ? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jul 11 01:23:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA11081 for freebsd-bugs-outgoing; Sat, 11 Jul 1998 01:23:04 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA11076; Sat, 11 Jul 1998 01:22:53 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA18793; Sat, 11 Jul 1998 01:22:45 -0700 (PDT) Date: Sat, 11 Jul 1998 01:22:45 -0700 (PDT) Message-Id: <199807110822.BAA18793@freefall.freebsd.org> To: peter.jeremyp@alcatel.com.au, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/7241 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: tcpdump does not work with parallel line IP State-Changed-From-To: open-feedback State-Changed-By: phk State-Changed-When: Sat Jul 11 01:21:58 PDT 1998 State-Changed-Why: does this work with both PLIP and CLPIP encapsulation ? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jul 11 01:30:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA11652 for freebsd-bugs-outgoing; Sat, 11 Jul 1998 01:30:36 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA11640; Sat, 11 Jul 1998 01:30:29 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA19092; Sat, 11 Jul 1998 01:30:21 -0700 (PDT) Date: Sat, 11 Jul 1998 01:30:21 -0700 (PDT) Message-Id: <199807110830.BAA19092@freefall.freebsd.org> To: gallatin@cs.duke.edu, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: i386/7227 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: pmap_setdevram() disabled in wrong place State-Changed-From-To: open-closed State-Changed-By: phk State-Changed-When: Sat Jul 11 01:29:56 PDT 1998 State-Changed-Why: fixed in src/sys/i386/i386/pmap.c 1.204 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jul 11 01:31:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA11749 for freebsd-bugs-outgoing; Sat, 11 Jul 1998 01:31:10 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA11720; Sat, 11 Jul 1998 01:31:02 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA19163; Sat, 11 Jul 1998 01:30:54 -0700 (PDT) Date: Sat, 11 Jul 1998 01:30:54 -0700 (PDT) Message-Id: <199807110830.BAA19163@freefall.freebsd.org> To: brianfeldman@hotmail.com, phk@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7240 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: XF86_* servers crash w/ SIGBUS on 3.0-CURRENT (7/9 build) State-Changed-From-To: open-closed State-Changed-By: phk State-Changed-When: Sat Jul 11 01:30:30 PDT 1998 State-Changed-Why: probably fixed in src/sys/i386/i386/pmap.c 1.204 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jul 11 02:10:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA14853 for freebsd-bugs-outgoing; Sat, 11 Jul 1998 02:10:17 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA14829 for ; Sat, 11 Jul 1998 02:10:09 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA19766; Sat, 11 Jul 1998 02:10:01 -0700 (PDT) Received: from news1.gtn.com (news1.gtn.com [192.109.159.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA13947 for ; Sat, 11 Jul 1998 02:01:04 -0700 (PDT) (envelope-from andreas@klemm.gtn.com) Received: (from uucp@localhost) by news1.gtn.com (8.8.6/8.8.6) with UUCP id LAA23842 for FreeBSD-gnats-submit@freebsd.org; Sat, 11 Jul 1998 11:00:07 +0200 (MET DST) Received: (from andreas@localhost) by klemm.gtn.com (8.8.8/8.8.8) id KAA02456; Sat, 11 Jul 1998 10:52:41 +0200 (CEST) (envelope-from andreas) Message-Id: <199807110852.KAA02456@klemm.gtn.com> Date: Sat, 11 Jul 1998 10:52:41 +0200 (CEST) From: Andreas Klemm Reply-To: andreas@klemm.gtn.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: kern/7245: processes die with signal 6, if machine out of swap, no recovery Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7245 >Category: kern >Synopsis: processes die with signal 6, if machine out of swap, no recovery >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 Jul 11 02:10:00 PDT 1998 >Last-Modified: >Originator: Andreas Klemm >Organization: >Release: FreeBSD 3.0-CURRENT i386 >Environment: FreeBSD-current since January 1998 as reported by Holm Tiffe >Description: When the machine is nearly out of swap (around 92% or 95%) then daemons start dying. The console under X11 isn't useable. Machine replies to ping's but a telnet via network in isn't possible, sine it reports: inetd in realloc(): error: junk pointer, too high to make sense. Here something from syslogd: Jul 11 10:16:38 titan /kernel: swap_pager: suggest more swap space: 156 MB Jul 11 10:16:53 titan su: andreas to root on /dev/ttyp1 Jul 11 10:18:23 titan /kernel: isppp0: phase terminate Jul 11 10:18:23 titan /kernel: isppp0: phase dead Jul 11 10:20:38 titan /kernel: isppp0: phase establish Jul 11 10:20:40 titan /kernel: isppp0: phase authenticate Jul 11 10:20:40 titan /kernel: isppp0: phase network Jul 11 10:21:26 titan /kernel: pid 14964 (inetd), uid 0: exited on signal 6 Jul 11 10:22:57 titan /kernel: swap_pager: out of swap space Jul 11 10:22:57 titan /kernel: pid 18354 (cc1), uid 0: exited on signal 6 (core dumped) Jul 11 10:22:57 titan /kernel: pid 18344 (cc1), uid 0: exited on signal 6 (core dumped) Jul 11 10:22:57 titan /kernel: pid 18351 (cc1), uid 0: exited on signal 6 (core dumped) Jul 11 10:22:57 titan /kernel: pid 18338 (cc1), uid 0: exited on signal 6 (core dumped) Jul 11 10:22:57 titan /kernel: pid 18319 (cc1), uid 0: exited on signal 6 (core dumped) Jul 11 10:22:57 titan /kernel: pid 18337 (cc1), uid 0: exited on signal 6 (core dumped) Jul 11 10:22:57 titan /kernel: pid 18345 (as), uid 0: exited on signal 6 (core d umped) Jul 11 10:22:57 titan /kernel: pid 18329 (cc1), uid 0: exited on signal 6 (core dumped) Jul 11 10:22:58 titan /kernel: pid 18341 (as), uid 0: exited on signal 6 (core d umped) Jul 11 10:22:58 titan /kernel: pid 18340 (as), uid 0: exited on signal 6 (core d umped) Jul 11 10:22:58 titan /kernel: pid 863 (top), uid 1000: exited on signal 6 Jul 11 10:22:58 titan /kernel: pid 18324 (as), uid 0: exited on signal 6 (core d umped) Jul 11 10:22:58 titan /kernel: pid 18343 (as), uid 0: exited on signal 6 (core d umped) Jul 11 10:22:58 titan /kernel: pid 18333 (as), uid 0: exited on signal 6 (core d umped) Jul 11 10:22:58 titan /kernel: pid 816 (XF86_SVGA), uid 0: exited on signal 6 Jul 11 10:23:05 titan /kernel: isppp0: phase terminate Jul 11 10:23:05 titan /kernel: isppp0: phase dead Jul 11 10:26:21 titan /kernel: pid 18359 (inetd), uid 0: exited on signal 6 Jul 11 10:26:21 titan inetd[203]: /usr/local/libexec/tcpd[18359]: exit status 0x 6 Jul 11 10:26:21 titan /kernel: pid 18360 (inetd), uid 0: exited on signal 6 Jul 11 10:26:21 titan inetd[203]: /usr/local/libexec/tcpd[18360]: exit status 0x 6 Jul 11 10:26:21 titan /kernel: pid 18361 (inetd), uid 0: exited on signal 6 Jul 11 10:26:21 titan inetd[203]: /usr/local/libexec/tcpd[18361]: exit status 0x 6 Jul 11 10:26:21 titan /kernel: pid 18362 (inetd), uid 0: exited on signal 6 Jul 11 10:26:21 titan inetd[203]: /usr/local/libexec/tcpd[18362]: exit status 0x6 And lot's more of this inetd messages .... This has already been discussed, in the -current mailinglist under the subject "dying daemons". But it's still not solved. >How-To-Repeat: Reduce your swap space, fire up netscape and such and perhaps a make -j 8 world and startup gimp and such ... I have a SMP machine with 2 PPro's 200, 80 MB, where I reduced the swap from: Device 1K-blocks Used Avail Capacity Type /dev/sd0s2b 67584 9848 57608 15% Interleaved /dev/sd1s1b 102400 9808 92464 10% Interleaved /dev/sd2s1b 102400 9728 92544 10% Interleaved Total 272000 29384 242616 11% to: /dev/sd0s2b 67584 9848 57608 ... >Fix: Sorry, no idea. >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jul 11 02:10:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA14869 for freebsd-bugs-outgoing; Sat, 11 Jul 1998 02:10:23 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA14834 for ; Sat, 11 Jul 1998 02:10:10 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA19778; Sat, 11 Jul 1998 02:10:02 -0700 (PDT) Received: from tim.xenologics.com (tim.xenologics.com [194.77.5.24]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA13952 for ; Sat, 11 Jul 1998 02:01:23 -0700 (PDT) (envelope-from seggers@semyam.dinoco.de) Received: (from uucp@localhost) by tim.xenologics.com (8.8.5/8.8.8) with UUCP id KAA28119 for FreeBSD-gnats-submit@freebsd.org; Sat, 11 Jul 1998 10:59:09 +0200 (MET DST) Received: (from seggers@localhost) by semyam.dinoco.de (8.8.8/8.8.8) id KAA01531; Sat, 11 Jul 1998 10:56:31 +0200 (CEST) (envelope-from seggers) Message-Id: <199807110856.KAA01531@semyam.dinoco.de> Date: Sat, 11 Jul 1998 10:56:31 +0200 (CEST) From: Stefan Eggers Reply-To: seggers@semyam.dinoco.de To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: seggers@semyam.dinoco.de X-Send-Pr-Version: 3.2 Subject: kern/7246: Another misleading comment in VM - vm_param.h Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7246 >Category: kern >Synopsis: Another misleading comment in VM - vm_param.h >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Jul 11 02:10:01 PDT 1998 >Last-Modified: >Originator: Stefan Eggers >Organization: none >Release: FreeBSD 2.2.6-STABLE i386 >Environment: -current source from a few days ago. >Description: There is a comment in vm_param.h which doesn't belong to the code still left in there. The macros it describes disapeared some- time since 4.4BSD lite. >How-To-Repeat: Read the source. >Fix: --- vm_param.h.ORIG Sat Feb 22 10:48:37 1997 +++ vm_param.h Sat Jul 11 10:48:51 1998 @@ -149,10 +149,6 @@ #define KERN_NO_ACCESS 8 #ifndef ASSEMBLER -/* - * Convert addresses to pages and vice versa. - * No rounding is used. - */ #ifdef KERNEL #define num_pages(x) \ ((vm_offset_t)((((vm_offset_t)(x)) + PAGE_MASK) >> PAGE_SHIFT)) >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 Jul 11 08:59:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA13545 for freebsd-bugs-outgoing; Sat, 11 Jul 1998 08:59:52 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA13540; Sat, 11 Jul 1998 08:59:44 -0700 (PDT) (envelope-from andreas@FreeBSD.org) From: Andreas Klemm Received: (from andreas@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA27604; Sat, 11 Jul 1998 08:59:34 -0700 (PDT) Date: Sat, 11 Jul 1998 08:59:34 -0700 (PDT) Message-Id: <199807111559.IAA27604@freefall.freebsd.org> To: xcejka00@stud.fee.vutbr.cz, andreas@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: gnu/6130 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: "dialog" command cuts off chars from menu items State-Changed-From-To: open-closed State-Changed-By: andreas State-Changed-When: Sat Jul 11 08:58:37 PDT 1998 State-Changed-Why: Has been fixed weeks ago. Failure was due to too long lines in the dialogue. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jul 11 09:10:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA14624 for freebsd-bugs-outgoing; Sat, 11 Jul 1998 09:10:15 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA14618 for ; Sat, 11 Jul 1998 09:10:12 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA28024; Sat, 11 Jul 1998 09:10:01 -0700 (PDT) Date: Sat, 11 Jul 1998 09:10:01 -0700 (PDT) Message-Id: <199807111610.JAA28024@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Peter Cornelius Subject: Re: misc/6992: 'cc: Internal compiler error: program as got fatal signal 11' when making world Reply-To: Peter Cornelius Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/6992; it has been noted by GNATS. From: Peter Cornelius To: Christoph Kukulies , jkh@FreeBSD.ORG Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: misc/6992: 'cc: Internal compiler error: program as got fatal signal 11' when making world Date: Sat, 11 Jul 1998 18:02:58 +0200 Hello again, thanks for the replies, and please excuse for the delay, I had to recover from a moderate earth quake 8-S On Fri, Jun 19, 1998 at 02:54:55PM +0200, Christoph Kukulies wrote: > Just FYI - your problem may be different - I once had a hell of > a time getting a system to get through a make world although > it ran continously with light load for days w/o problems. > > It was a newly bought system and I brought it back to the local computer > store where I bought it. I proved them that it was memory that was causing > the world build process to fail. I connected a similar system to the > disks and ran make world fine in a couple of hours. > > Then we connected the same disk(s) back to the faulty system and the > problems where there again. The vendor finally swapped all (64MB that were) > memory and it worked. > > It's hard to convince a computer dealer that hist hardware is faulty > when he says "look here, NT runs just fine on it". > > make world is a hardware burn in process which hardware vendors should > make to their duty :-) On Fri, Jun 19, 1998 at 07:53:02 -0700, Jordan K. Hubbard wrote: > State-Changed-From-To: open-closed > State-Changed-By: jkh > State-Changed-When: Fri Jun 19 16:52:09 MEST 1998 > State-Changed-Why: > This is indicative of a hardware failure, not an OS problem. > Verify that your cache is good, your ram speed settings and > voltages are correct, etc. Well... As Jordan Hubbard told me, I verified. And after a "quick last reboot" the earth seemed to have shifted (at least for my computer). I not really recently, but more or less, acquired 64 MB of additional ram that was in there for a short while with little problems (a couple of minor X crashes, gimp and such), but no real probs until make world. The tricky bit was that the former 32 MB stayed in the same machine, so it seemed to "work". I swapped banks, no "real" probs, I stuck the "new" ram into an nt box, all seemed fine (as in Christph's case). Also, the "new" rams are part of a charge of six in total all the others of which work fine. But in all cases, never the "new" rams were on their own. Then I removed my old ram (should there be a memory limit for that motherboard ???), and after a couple of seconds I was in for a couple of days of root partition repair (who the fffflame put that tape on top of the monitor, anyways?? I told you.). With some hot air, the modules flew back to where they came from, and after some ten days or so, I received a couple of new ones with no comment (...) Now, my world survives. (...) Thanks again for your help & patience, 'til the next "bug", Peter. --- Peter Cornelius To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jul 11 09:20:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA15330 for freebsd-bugs-outgoing; Sat, 11 Jul 1998 09:20:15 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA15325 for ; Sat, 11 Jul 1998 09:20:11 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA28275; Sat, 11 Jul 1998 09:20:01 -0700 (PDT) Date: Sat, 11 Jul 1998 09:20:01 -0700 (PDT) Message-Id: <199807111620.JAA28275@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Peter Cornelius Subject: Re: kern/6991 Reply-To: Peter Cornelius Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/6991; it has been noted by GNATS. From: Peter Cornelius To: "Jordan K. Hubbard" Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: kern/6991 Date: Sat, 11 Jul 1998 18:15:00 +0200 Re... Thanks for the reply. Please excuse the delay. On Fri, Jun 19, 1998 at 07:52:02AM -0700, Jordan K. Hubbard wrote: > Synopsis: Kernel build: don't know how to make ../../cfs/cfs_namecache.c > Remove vcfs - it is not a standard component and requires manual > installation of CODA. The vcfs pseudo device crept in (as an error), but I did not notice it since the two lines (in LINT): options CFS #CODA filesystem. pseudo-device vcfs 4 #coda minicache <-> venus comm. are pretty far apart, also one says `CODA', the other one `coda', so I did not even notice at first when grepping for `CODA'... Please excuse the hazle, Thanks again for your continuous support, best regards, Peter. --- Peter Cornelius To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jul 11 11:47:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA01124 for freebsd-bugs-outgoing; Sat, 11 Jul 1998 11:47:04 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA01119; Sat, 11 Jul 1998 11:47:02 -0700 (PDT) (envelope-from wollman@FreeBSD.org) From: Garrett Wollman Received: (from wollman@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA03460; Sat, 11 Jul 1998 11:46:51 -0700 (PDT) Date: Sat, 11 Jul 1998 11:46:51 -0700 (PDT) Message-Id: <199807111846.LAA03460@freefall.freebsd.org> To: jher@io.com, wollman@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/6858 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: inetd in realloc(): warning: junk pointer, too low to make sense. State-Changed-From-To: closed-suspended State-Changed-By: wollman State-Changed-When: Sat Jul 11 11:45:43 PDT 1998 State-Changed-Why: Originator replaced 256M of memory with 512M of memory, thus eliminating the low-memory condition which causes the bug. The bug itself is still not fixed, but nobody appears to be working on it, either. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jul 11 11:50:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA01532 for freebsd-bugs-outgoing; Sat, 11 Jul 1998 11:50:16 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA01525 for ; Sat, 11 Jul 1998 11:50:12 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA03570; Sat, 11 Jul 1998 11:50:00 -0700 (PDT) Received: from niobe.ewox.org (ppp068.uio.no [129.240.240.73]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA01085 for ; Sat, 11 Jul 1998 11:46:11 -0700 (PDT) (envelope-from finrod@niobe.ewox.org) Received: (from finrod@localhost) by niobe.ewox.org (8.8.8/8.8.8) id UAA01915; Sat, 11 Jul 1998 20:46:01 +0200 (CEST) (envelope-from finrod) Message-Id: <199807111846.UAA01915@niobe.ewox.org> Date: Sat, 11 Jul 1998 20:46:01 +0200 (CEST) From: finrod@niobe.ewox.org Reply-To: finrod@niobe.ewox.org To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: bin/7253: [PATCH] Make top(1) ignore itself Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7253 >Category: bin >Synopsis: [PATCH] Make top(1) ignore itself >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Jul 11 11:50:00 PDT 1998 >Last-Modified: >Originator: Dag-Erling Coïdan Smørgrav >Organization: Ewox >Release: FreeBSD 3.0-CURRENT i386 >Environment: Nothing relevant. >Description: For obvious reasons, top(1) usually ranks quite high on the list of processes it displays. However, it is usually totally uninteresting and quite annoying since it keeps bouncing up and down the list. This patch adds a command-line switch (-t) and an interactive command (t) to top(1) which make it ignore itself when listing processes. >How-To-Repeat: finrod@niobe ~$ top -b last pid: 1852; load averages: 0.02, 0.06, 0.07 20:42:39 65 processes: 1 running, 64 sleeping Mem: 40M Active, 12M Inact, 21M Wired, 6264K Cache, 8233K Buf, 45M Free Swap: 512M Total, 128K Used, 512M Free PID USERNAME PRI NICE SIZE RES STATE TIME WCPU CPU COMMAND 1852 finrod 31 0 1084K 808K RUN 0:00 1.56% 0.08% top 583 finrod 2 0 5532K 4952K select 2:18 0.00% 0.00% emacs [...] >Fix: Index: machine.h =================================================================== RCS file: /home/ncvs/src/contrib/top/machine.h,v retrieving revision 1.2 diff -u -r1.2 machine.h --- machine.h 1997/03/23 18:52:54 1.2 +++ machine.h 1998/07/11 16:24:39 @@ -46,6 +46,7 @@ struct process_select { int idle; /* show idle processes */ + int self; /* show self */ int system; /* show system processes */ int uid; /* only this uid (unless uid == -1) */ char *command; /* only this command (unless == NULL) */ Index: top.X =================================================================== RCS file: /home/ncvs/src/contrib/top/top.X,v retrieving revision 1.4 diff -u -r1.4 top.X --- top.X 1998/01/13 14:17:10 1.4 +++ top.X 1998/07/11 18:36:07 @@ -9,7 +9,7 @@ .SH SYNOPSIS .B top [ -.B \-SbiInqu +.B \-SbiInqut ] [ .BI \-d count ] [ @@ -81,6 +81,11 @@ Do not display idle processes. By default, top displays both active and idle processes. .TP +.B \-t +Do not display the +.I top +process. +.TP .B \-n Use \*(lqnon-interactive\*(rq mode. This is identical to \*(lqbatch\*(rq mode. @@ -153,8 +158,9 @@ The options .BR \-I , .BR \-S , +.BR \-u , and -.B \-u +.B \-t are actually toggles. A second specification of any of these options will negate the first. Thus a user who has the environment variable .B TOP @@ -234,6 +240,10 @@ (or .BR I) Toggle the display of idle processes. +.B t +Toggle the display of the +.I top +process. .SH "THE DISPLAY" The actual display varies depending on the specific variant of Unix that the machine is running. This description may not exactly match Index: top.c =================================================================== RCS file: /home/ncvs/src/contrib/top/top.c,v retrieving revision 1.2 diff -u -r1.2 top.c --- top.c 1997/03/23 18:52:55 1.2 +++ top.c 1998/07/11 16:32:52 @@ -185,9 +185,9 @@ fd_set readfds; #ifdef ORDER - static char command_chars[] = "\f qh?en#sdkriIuo"; + static char command_chars[] = "\f qh?en#sdkriIuto"; #else - static char command_chars[] = "\f qh?en#sdkriIu"; + static char command_chars[] = "\f qh?en#sdkriIut"; #endif /* these defines enumerate the "strchr"s of the commands in command_chars */ #define CMD_redraw 0 @@ -206,8 +206,9 @@ #define CMD_idletog 12 #define CMD_idletog2 13 #define CMD_user 14 +#define CMD_selftog 15 #ifdef ORDER -#define CMD_order 15 +#define CMD_order 16 #endif /* set the buffer for stdout */ @@ -232,6 +233,7 @@ /* initialize some selection options */ ps.idle = Yes; + ps.self = -1; ps.system = No; ps.uid = -1; ps.command = NULL; @@ -259,7 +261,7 @@ optind = 1; } - while ((i = getopt(ac, av, "SIbinqus:d:U:o:")) != EOF) + while ((i = getopt(ac, av, "SIbinqus:d:U:o:t")) != EOF) { switch(i) { @@ -344,10 +346,14 @@ #endif break; + case 't': + ps.self = (ps.self == -1) ? getpid() : -1; + break; + default: fprintf(stderr, "\ Top version %s\n\ -Usage: %s [-ISbinqu] [-d x] [-s x] [-o field] [-U username] [number]\n", +Usage: %s [-ISbinqut] [-d x] [-s x] [-o field] [-U username] [number]\n", version_string(), myname); exit(1); } @@ -834,6 +840,14 @@ new_message(MT_standout | MT_delayed, " %sisplaying idle processes.", ps.idle ? "D" : "Not d"); + putchar('\r'); + break; + + case CMD_selftog: + ps.self = (ps.self == -1) ? getpid() : -1; + new_message(MT_standout | MT_delayed, + " %sisplaying self.", + (ps.self == -1) ? "D" : "Not d"); putchar('\r'); break; Index: machine.c =================================================================== RCS file: /home/ncvs/src/usr.bin/top/machine.c,v retrieving revision 1.11 diff -u -r1.11 machine.c --- machine.c 1998/06/21 18:00:34 1.11 +++ machine.c 1998/07/11 16:23:46 @@ -458,6 +458,7 @@ /* these are copied out of sel for speed */ int show_idle; + int show_self; int show_system; int show_uid; int show_command; @@ -476,6 +477,7 @@ /* set up flags which define what we are going to select */ show_idle = sel->idle; + show_self = sel->self; show_system = sel->system; show_uid = sel->uid != -1; show_command = sel->command != NULL; @@ -494,6 +496,7 @@ * processes---these get ignored unless show_sysprocs is set. */ if (PP(pp, p_stat) != 0 && + (show_self != PP(pp, p_pid)) && (show_system || ((PP(pp, p_flag) & P_SYSTEM) == 0))) { total_procs++; >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 Jul 11 12:10:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA04046 for freebsd-bugs-outgoing; Sat, 11 Jul 1998 12:10:17 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA04036 for ; Sat, 11 Jul 1998 12:10:13 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA04807; Sat, 11 Jul 1998 12:10:01 -0700 (PDT) Received: from tim.xenologics.com (tim.xenologics.com [194.77.5.24]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA03354 for ; Sat, 11 Jul 1998 12:06:34 -0700 (PDT) (envelope-from seggers@semyam.dinoco.de) Received: (from uucp@localhost) by tim.xenologics.com (8.8.5/8.8.8) with UUCP id VAA12714 for FreeBSD-gnats-submit@freebsd.org; Sat, 11 Jul 1998 21:04:20 +0200 (MET DST) Received: (from seggers@localhost) by semyam.dinoco.de (8.8.8/8.8.8) id SAA19093; Sat, 11 Jul 1998 18:51:34 +0200 (CEST) (envelope-from seggers) Message-Id: <199807111651.SAA19093@semyam.dinoco.de> Date: Sat, 11 Jul 1998 18:51:34 +0200 (CEST) From: Stefan Eggers Reply-To: seggers@semyam.dinoco.de To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: seggers@semyam.dinoco.de X-Send-Pr-Version: 3.2 Subject: bin/7254: release: multiple versions of write_mfs_in_kernel.c Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7254 >Category: bin >Synopsis: release: multiple versions of write_mfs_in_kernel.c >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Jul 11 12:10:01 PDT 1998 >Last-Modified: >Originator: Stefan Eggers >Organization: none >Release: FreeBSD 2.2.6-STABLE i386 >Environment: -current source from Wednesday, July 8th 1998. >Description: There are multiple versions of write_mfs_in_kernel.c under src/release. Obviously this is not a good idea as it makes maintai- ning them more difficult. >How-To-Repeat: Just look into the sources. ;-) >Fix: Merge their functionality (one of them seems to be a superset of the other I examined) and then modify the Makefiles to take the unified source. I just examined two of the versions. With them it seems as the one with the option -f is a superset of the other in the floppies/bin subdirectory. >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 Jul 11 19:10:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA01290 for freebsd-bugs-outgoing; Sat, 11 Jul 1998 19:10:29 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA01253 for ; Sat, 11 Jul 1998 19:10:16 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA14082; Sat, 11 Jul 1998 19:10:01 -0700 (PDT) Date: Sat, 11 Jul 1998 19:10:01 -0700 (PDT) Message-Id: <199807120210.TAA14082@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Bill Fenner Subject: Re: bin/7241: tcpdump does not work with parallel line IP Reply-To: Bill Fenner Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/7241; it has been noted by GNATS. From: Bill Fenner To: peter.jeremyp@alcatel.com.au, freebsd-gnats-submit@freebsd.org Cc: Subject: Re: bin/7241: tcpdump does not work with parallel line IP Date: Sat, 11 Jul 1998 16:03:00 PDT Isn't it easier to fix lpip to use the DLT_NULL encapsulation? Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jul 11 19:13:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA02183 for freebsd-bugs-outgoing; Sat, 11 Jul 1998 19:13:47 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freebie.lemis.com (freebie.lemis.com [139.130.136.133]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA02134; Sat, 11 Jul 1998 19:13:37 -0700 (PDT) (envelope-from grog@freebie.lemis.com) Received: (from grog@localhost) by freebie.lemis.com (8.9.0/8.9.0) id KAA29541; Sun, 12 Jul 1998 10:02:18 +0930 (CST) Message-ID: <19980712100218.N23241@freebie.lemis.com> Date: Sun, 12 Jul 1998 10:02:18 +0930 From: Greg Lehey To: Poul-Henning Kamp , peter.jeremyp@alcatel.com.au, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/7241 References: <199807110822.BAA18793@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <199807110822.BAA18793@freefall.freebsd.org>; from Poul-Henning Kamp on Sat, Jul 11, 1998 at 01:22:45AM -0700 WWW-Home-Page: http://www.lemis.com/~grog Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-41-739-7062 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Saturday, 11 July 1998 at 1:22:45 -0700, Poul-Henning Kamp wrote: > Synopsis: tcpdump does not work with parallel line IP > > State-Changed-From-To: open-feedback > State-Changed-By: phk > State-Changed-When: Sat Jul 11 01:21:58 PDT 1998 > State-Changed-Why: I submitted a fix for this one about 18 months ago. The PLIP bpf interface miscalculates the header size. Greg -- See complete headers for address and phone numbers finger grog@lemis.com for PGP public key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jul 11 19:40:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA10728 for freebsd-bugs-outgoing; Sat, 11 Jul 1998 19:40:42 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA10624 for ; Sat, 11 Jul 1998 19:40:18 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA14593; Sat, 11 Jul 1998 19:40:01 -0700 (PDT) Date: Sat, 11 Jul 1998 19:40:01 -0700 (PDT) Message-Id: <199807120240.TAA14593@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Bill Fenner Subject: Re: bin/7241: tcpdump does not work with parallel line IP Reply-To: Bill Fenner Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/7241; it has been noted by GNATS. From: Bill Fenner To: freebsd-gnats-submit@FreeBSD.org, peter.jeremy@alcatel.com.au Cc: Subject: Re: bin/7241: tcpdump does not work with parallel line IP Date: Sat, 11 Jul 1998 16:31:38 -0700 (PDT) In fact, I just found these diffs in my home directory on freefall; seems that I tried to address this issue in early 1997 but didn't find anyone to test the patches. Would you mind testing this patch? Thanks, Bill Index: sys_i386_isa/lpt.c =================================================================== RCS file: /home/ncvs/src/sys/i386/isa/lpt.c,v retrieving revision 1.58 diff -c -r1.58 lpt.c *** lpt.c 1997/02/22 09:36:51 1.58 --- lpt.c 1997/03/10 07:59:44 *************** *** 880,886 **** printf("lp%d: TCP/IP capable interface\n", unit); #if NBPFILTER > 0 ! bpfattach(ifp, DLT_NULL, LPIPHDRLEN); #endif } /* --- 880,886 ---- printf("lp%d: TCP/IP capable interface\n", unit); #if NBPFILTER > 0 ! bpfattach(ifp, DLT_NULL, sizeof(u_int)); #endif } /* *************** *** 1102,1107 **** --- 1102,1126 ---- sc->sc_if.if_ibytes += len; top = m_devget(sc->sc_ifbuf + CLPIPHDRLEN, len, 0, &sc->sc_if, 0); if (top) { + #if NBPFILTER > 0 + if (sc->sc_if.if_bpf) { + /* + * We need to prepend the address family as + * a four byte field. Cons up a dummy header + * to pacify bpf. This is safe because bpf + * will only read from the mbuf (i.e., it won't + * try to free it or keep a pointer to it). + */ + struct mbuf m0; + u_int af = AF_INET; + + m0.m_next = top; + m0.m_len = 4; + m0.m_data = (char *)⁡ + + bpf_mtap(ifp, &m0); + } + #endif IF_ENQUEUE(&ipintrq, top); schednetisr(NETISR_IP); } *************** *** 1146,1161 **** IF_DROP(&ipintrq); goto done; } - #if NBPFILTER > 0 - if (sc->sc_if.if_bpf) { - bpf_tap(&sc->sc_if, sc->sc_ifbuf, len); - } - #endif len -= LPIPHDRLEN; sc->sc_if.if_ipackets++; sc->sc_if.if_ibytes += len; top = m_devget(sc->sc_ifbuf + LPIPHDRLEN, len, 0, &sc->sc_if, 0); if (top) { IF_ENQUEUE(&ipintrq, top); schednetisr(NETISR_IP); } --- 1165,1194 ---- IF_DROP(&ipintrq); goto done; } len -= LPIPHDRLEN; sc->sc_if.if_ipackets++; sc->sc_if.if_ibytes += len; top = m_devget(sc->sc_ifbuf + LPIPHDRLEN, len, 0, &sc->sc_if, 0); if (top) { + #if NBPFILTER > 0 + if (sc->sc_if.if_bpf) { + /* + * We need to prepend the address family as + * a four byte field. Cons up a dummy header + * to pacify bpf. This is safe because bpf + * will only read from the mbuf (i.e., it won't + * try to free it or keep a pointer to it). + */ + struct mbuf m0; + u_int af = AF_INET; + + m0.m_next = top; + m0.m_len = 4; + m0.m_data = (char *)⁡ + + bpf_mtap(ifp, &m0); + } + #endif IF_ENQUEUE(&ipintrq, top); schednetisr(NETISR_IP); } *************** *** 1225,1230 **** --- 1258,1283 ---- /* Suspend (on laptops) or receive-errors might have taken us offline */ outb(lpt_ctrl_port, LPC_ENA); + #if NBPFILTER > 0 + if (ifp->if_bpf) { + /* + * We need to prepend the address family as + * a four byte field. Cons up a dummy header + * to pacify bpf. This is safe because bpf + * will only read from the mbuf (i.e., it won't + * try to free it or keep a pointer to it). + */ + struct mbuf m0; + u_int af = AF_INET; + + m0.m_next = m; + m0.m_len = 4; + m0.m_data = (char *)⁡ + + bpf_mtap(ifp, &m0); + } + #endif + if (ifp->if_flags & IFF_LINK0) { if (!(inb(lpt_stat_port) & CLPIP_SHAKE)) { *************** *** 1334,1358 **** } else { ifp->if_opackets++; ifp->if_obytes += m->m_pkthdr.len; - #if NBPFILTER > 0 - if (ifp->if_bpf) { - /* - * We need to prepend the packet type as - * a two byte field. Cons up a dummy header - * to pacify bpf. This is safe because bpf - * will only read from the mbuf (i.e., it won't - * try to free it or keep a pointer to it). - */ - struct mbuf m0; - u_short hdr = 0x800; - - m0.m_next = m; - m0.m_len = 2; - m0.m_data = (char *)&hdr; - - bpf_mtap(ifp, &m0); - } - #endif } m_freem(m); --- 1387,1392 ---- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jul 11 20:30:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA20959 for freebsd-bugs-outgoing; Sat, 11 Jul 1998 20:30:34 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA20885 for ; Sat, 11 Jul 1998 20:30:20 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA15355; Sat, 11 Jul 1998 20:30:02 -0700 (PDT) Date: Sat, 11 Jul 1998 20:30:02 -0700 (PDT) Message-Id: <199807120330.UAA15355@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Peter Jeremy Subject: Re: bin/7241: tcpdump does not work with parallel line IP Reply-To: Peter Jeremy Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/7241; it has been noted by GNATS. From: Peter Jeremy To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: bin/7241: tcpdump does not work with parallel line IP Date: Sun, 12 Jul 1998 13:29:24 +1000 (EST) Please note that there is a typo in the originator field. My address is peter.jeremy@alcatel.com.au not peter.jeremyp@alcatel.com.au as I mis-typed in the submission. Peter -- Peter Jeremy (VK2PJ) peter.jeremy@alcatel.com.au Alcatel Australia Limited 41 Mandible St Phone: +61 2 9690 5019 ALEXANDRIA NSW 2015 Fax: +61 2 9690 5247 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jul 11 20:30:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA20997 for freebsd-bugs-outgoing; Sat, 11 Jul 1998 20:30:42 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA20883 for ; Sat, 11 Jul 1998 20:30:19 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA15350; Sat, 11 Jul 1998 20:30:01 -0700 (PDT) Date: Sat, 11 Jul 1998 20:30:01 -0700 (PDT) Message-Id: <199807120330.UAA15350@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Peter Jeremy Subject: Re: kern/7242: Clarification of comments in RTC header Reply-To: Peter Jeremy Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/7242; it has been noted by GNATS. From: Peter Jeremy To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: kern/7242: Clarification of comments in RTC header Date: Sun, 12 Jul 1998 13:29:04 +1000 (EST) Please note that there is a typo in the originator field. My address is peter.jeremy@alcatel.com.au not peter.jeremyp@alcatel.com.au as I mis-typed in the submission. Peter -- Peter Jeremy (VK2PJ) peter.jeremy@alcatel.com.au Alcatel Australia Limited 41 Mandible St Phone: +61 2 9690 5019 ALEXANDRIA NSW 2015 Fax: +61 2 9690 5247 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jul 11 21:20:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA28754 for freebsd-bugs-outgoing; Sat, 11 Jul 1998 21:20:16 -0700 (PDT) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA28749 for ; Sat, 11 Jul 1998 21:20:15 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA15990; Sat, 11 Jul 1998 21:20:00 -0700 (PDT) Date: Sat, 11 Jul 1998 21:20:00 -0700 (PDT) Message-Id: <199807120420.VAA15990@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Matthias Buelow Subject: Re: kern/7237: [patch] NCR SCSI driver ch0 troubles Reply-To: Matthias Buelow Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/7237; it has been noted by GNATS. From: Matthias Buelow To: freebsd-gnats-submit@freebsd.org, mkb@mayn.de Cc: Subject: Re: kern/7237: [patch] NCR SCSI driver ch0 troubles Date: Sun, 12 Jul 1998 02:11:59 +0200 Hans Huebner has pointed me out, that there is a SCSI_DATA_IN missing when calling scsi_scsi_cmd in ch.c:ch_getelemstatus. This only seems to affect the NCR controller. I changed it and it seems to work fine. Here's a patch for that particular problem on 2.2-STABLE: --- scsi/ch.c Sun Jul 12 02:08:15 1998 +++ scsi/ch.c.NEW Sun Jul 12 02:08:08 1998 @@ -603,7 +603,8 @@ * Send command to changer. */ return (scsi_scsi_cmd(sc->sc_link, (struct scsi_generic *)&cmd, - sizeof(cmd), (u_char *)data, datalen, CHRETRIES, 100000, NULL, 0)); + sizeof(cmd), (u_char *)data, datalen, CHRETRIES, 100000, NULL, + SCSI_DATA_IN)); } To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message