From owner-freebsd-bugs Sun Sep 10 03:47:15 1995 Return-Path: bugs-owner Received: (from majordom@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA14894 for bugs-outgoing; Sun, 10 Sep 1995 03:47:15 -0700 Received: from irz301.inf.tu-dresden.de (irz301.inf.tu-dresden.de [141.76.1.11]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id DAA14869 ; Sun, 10 Sep 1995 03:47:07 -0700 Received: from sax.sax.de by irz301.inf.tu-dresden.de (8.6.12/8.6.12-s1) with ESMTP id MAA17933; Sun, 10 Sep 1995 12:38:41 +0200 Received: by sax.sax.de (8.6.11/8.6.12-s1) with UUCP id MAA18609; Sun, 10 Sep 1995 12:38:40 +0200 Received: (from j@localhost) by uriah.heep.sax.de (8.6.12/8.6.9) id MAA01669; Sun, 10 Sep 1995 12:19:33 +0200 From: J Wunsch Message-Id: <199509101019.MAA01669@uriah.heep.sax.de> Subject: Re: misc/717: ft.c attach fail on my Mountain tape drive To: nistler@millcomm.com Date: Sun, 10 Sep 1995 12:19:31 +0200 (MET DST) Cc: FreeBSD-gnats-submit@FreeBSD.ORG, bugs@FreeBSD.ORG Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: <199509011732.MAA00403@chaos.millcomm.com> from "John Nistler" at Sep 1, 95 12:32:46 pm X-Phone: +49-351-2012 669 X-Mailer: ELM [version 2.4 PL23] MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Content-Length: 1630 Sender: bugs-owner@FreeBSD.ORG Precedence: bulk As John Nistler wrote: > > [2: ft0: Mountain tape] > > >Description: > When the ft.c code does the attach it uses polling in the > ftintr_waiti(in the if (ft->attach), in case FTCMD_SEEK) with a > delay(100) which is too short. I changed this to 1000. > >Fix: > > /usr/src/sys/i386/isa> diff ft.c.orig ft.c > 1480c1480,1481 > < DELAY(100); > --- > > DELAY(1000); > > /* DELAY(100); */ Please, supply context diffs! It's rather hard to track simple diffs if the source has been changed meanwhile. In this case, the entire logic has been slightly modified since 2.0R, where your patch apparently is for. Can you please try if the following patch would also solve your problem? This is the appropriate code fragment out of 2.0.5. If this does solve it, too, we can close the PR. Index: ft.c =================================================================== RCS file: /home/cvs/src/sys/i386/isa/ft.c,v retrieving revision 1.14 diff -u -r1.14 ft.c --- 1.14 1994/11/15 14:34:42 +++ ft.c 1995/09/10 10:14:32 @@ -1469,15 +1503,16 @@ case FTCMD_RECAL: case FTCMD_SEEK: for (retries = 0; retries < 10000; retries++) { + DELAY(150); out_fdc(fdcu, NE7CMD_SENSEI); st0 = in_fdc(fdcu); + if ((st0 & 0xc0) == 0x80) continue; pcn = in_fdc(fdcu); if (st0 & 0x20) { ft->sts_wait = FTSTS_INTERRUPT; ft->pcn = pcn; goto intrdone; } - DELAY(100); } break; } -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ Never trust an operating system you don't have sources for. ;-) From owner-freebsd-bugs Sun Sep 10 06:19:13 1995 Return-Path: bugs-owner Received: (from majordom@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id GAA22404 for bugs-outgoing; Sun, 10 Sep 1995 06:19:13 -0700 Received: from irz301.inf.tu-dresden.de (irz301.inf.tu-dresden.de [141.76.1.11]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id GAA22398 for ; Sun, 10 Sep 1995 06:19:09 -0700 Received: from sax.sax.de by irz301.inf.tu-dresden.de (8.6.12/8.6.12-s1) with ESMTP id PAA20245; Sun, 10 Sep 1995 15:12:14 +0200 Received: by sax.sax.de (8.6.11/8.6.12-s1) with UUCP id PAA19192; Sun, 10 Sep 1995 15:12:14 +0200 Received: (from j@localhost) by uriah.heep.sax.de (8.6.12/8.6.9) id PAA14341; Sun, 10 Sep 1995 15:08:11 +0200 From: J Wunsch Message-Id: <199509101308.PAA14341@uriah.heep.sax.de> Subject: Re: Crontab and the % character To: fenner@parc.xerox.com (Bill Fenner) Date: Sun, 10 Sep 1995 15:08:07 +0200 (MET DST) Cc: bugs@freebsd.org, marcus@ccelab.iastate.edu Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: <95Sep8.154737pdt.177475@crevenia.parc.xerox.com> from "Bill Fenner" at Sep 8, 95 03:47:34 pm X-Phone: +49-351-2012 669 X-Mailer: ELM [version 2.4 PL23] MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Content-Length: 522 Sender: bugs-owner@freebsd.org Precedence: bulk As Bill Fenner wrote: > > >If I use the %'s by themselves then it interprets them as special control > >characters, but if I put a \ in front of each, the command is interpreted > >literally (i.e. "\%B \%b"). > > This is a bug. Try this patch. It turns "\%" into "%", "\\" into "\", > and leaves "\*" (where * is any character other than % or \) alone. Thanks, commited. -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ Never trust an operating system you don't have sources for. ;-) From owner-freebsd-bugs Sun Sep 10 17:55:30 1995 Return-Path: bugs-owner Received: (from majordom@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id RAA00288 for bugs-outgoing; Sun, 10 Sep 1995 17:55:30 -0700 Received: from bunyip.cc.uq.oz.au (pp@bunyip.cc.uq.oz.au [130.102.2.1]) by freefall.freebsd.org (8.6.12/8.6.6) with SMTP id RAA00262 for ; Sun, 10 Sep 1995 17:54:52 -0700 Received: from cc.uq.oz.au by bunyip.cc.uq.oz.au id <00714-0@bunyip.cc.uq.oz.au>; Mon, 11 Sep 1995 10:52:30 +1000 Received: from netfl15a.devetir.qld.gov.au by pandora.devetir.qld.gov.au (8.6.10/DEVETIR-E0.3a) with ESMTP id KAA18896 for ; Mon, 11 Sep 1995 10:57:18 +1000 Received: from localhost by netfl15a.devetir.qld.gov.au (8.6.8.1/DEVETIR-0.1) id AAA07500 for ; Mon, 11 Sep 1995 00:58:00 GMT Message-Id: <199509110058.AAA07500@netfl15a.devetir.qld.gov.au> X-Mailer: exmh version 1.6 4/21/95 To: bugs@freebsd.org Subject: lpd does not correctly detect when ofilter is finished Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 11 Sep 1995 10:57:58 +1000 From: Stephen Hocking Sender: bugs-owner@freebsd.org Precedence: bulk >Submitter-Id: current-users >Originator: Bourne-again Superuser >Organization: >Confidential: yes >Synopsis: lpd does not always correctly detect when an output filter is done >Severity: non-critical >Priority: medium >Category: bin >Release: FreeBSD 2.2-CURRENT i386 >Class: sw-bug >Environment: FreeBSD-current, running lpd subsystem >Description: Lpd does not always correctly detect when an output filter has finished processing. If the output filter reads all of the data before starting to print it (as it must do in some cases) lpd incorrectly decides that the job has finished printing and starts a new job. >How-To-Repeat: Create a filter that reads all of the data before starting to print. Send heaps of jobs to that printer. Watch the queue empty in double-quick time. See disaster ensue at the print device as jobs interleave their output. >Fix: *** printjob.c.dist Fri Sep 8 14:21:53 1995 - --- printjob.c Fri Sep 8 14:23:54 1995 *************** *** 272,277 **** - --- 272,279 ---- (void) write(ofd, TR, strlen(TR)); } (void) unlink(tempfile); + close(ofd); /* give ofilter an EOF indicator */ + (void)wait((int *)0); /* wait until ofilter finished */ exit(0); } goto again; I do not speak for the Worker's Compensation Board of Queensland - They don't pay me enough for that! From owner-freebsd-bugs Sun Sep 10 21:10:10 1995 Return-Path: bugs-owner Received: (from majordom@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id VAA06881 for bugs-outgoing; Sun, 10 Sep 1995 21:10:10 -0700 Received: from bacata.usc.unal.edu.co ([200.21.26.80]) by freefall.freebsd.org (8.6.12/8.6.6) with SMTP id VAA06868 for ; Sun, 10 Sep 1995 21:10:03 -0700 Received: by bacata.usc.unal.edu.co (AIX 4.1/UCB 5.64/4.03) id AA08926; Sun, 10 Sep 1995 23:09:25 -0500 Date: Sun, 10 Sep 1995 23:09:24 -0500 (CDT) From: Pedro Giffuni To: bugs@freeBSD.org Subject: Tape Installation Bug Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: bugs-owner@freeBSD.org Precedence: bulk Hi, I am using the updated installation floppy from release 2.05. My computer is a Compaq Deskpro/i 486DX2-66 with 4 Megas, and a Compaq tape drive. I had already installed SCO, and it had to be defined as a Wangtek type to work correctly. When installing freeBSD I read perfectly the instructions: I loaded a tape on the drive, I disabled all the hardware I didn't have, and I verified there were no conflicts with other hardware, I even defined the drq correctly to the one used by the tape (3). As a result the tape drive was recognized at boot time, it even moved, but when I wanted to define the Media a message said the program didn't detect any tape drive. It has to be a bug, I mean, I tried all the posibilities to ensure everything was configured right! thanks, Pedro. pgiffuni@bacata.usc.unal.edu.co By the way, very pretty installation! From owner-freebsd-bugs Mon Sep 11 16:27:23 1995 Return-Path: bugs-owner Received: (from majordom@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA10935 for bugs-outgoing; Mon, 11 Sep 1995 16:27:23 -0700 Received: from bacata.usc.unal.edu.co ([200.21.26.80]) by freefall.freebsd.org (8.6.12/8.6.6) with SMTP id QAA10916 for ; Mon, 11 Sep 1995 16:27:06 -0700 Received: by bacata.usc.unal.edu.co (AIX 4.1/UCB 5.64/4.03) id AA31572; Mon, 11 Sep 1995 18:08:21 -0500 Date: Mon, 11 Sep 1995 18:08:21 -0500 (CDT) From: Pedro Giffuni To: bugs@freeBSD.org Subject: Compaq Prolinea Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: bugs-owner@freeBSD.org Precedence: bulk I recently tried to load the updated boot floppy of the latest release on a Compaq Prolinea 3/25. It simply rebooted without loading the kernel. I remembered Compaq modified the 386bsd boot so it could work with the old Compaq models. The updated 386bsd boot floppies or at ftp://ftp.compaq.com/pub/386bsd Thanks, Pedro Giffuni pgiffuni@bacata.usc.unal.edu.co From owner-freebsd-bugs Tue Sep 12 17:18:06 1995 Return-Path: bugs-owner Received: (from majordom@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id RAA16768 for bugs-outgoing; Tue, 12 Sep 1995 17:18:06 -0700 Received: from huron.aitken.com (jaitken.async.vt.edu [128.173.18.165]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id RAA16749 for ; Tue, 12 Sep 1995 17:17:56 -0700 Received: (from jaitken@localhost) by huron.aitken.com (8.6.11/8.6.9) id UAA05907 for bugs@freebsd.org; Tue, 12 Sep 1995 20:19:07 -0400 From: Jeff Aitken Message-Id: <199509130019.UAA05907@huron.aitken.com> Subject: problem with df(1) To: bugs@freebsd.org Date: Tue, 12 Sep 1995 20:19:06 -0400 (EDT) X-Mailer: ELM [version 2.4 PL24] Content-Type: text Content-Length: 3191 Sender: bugs-owner@freebsd.org Precedence: bulk [I tried using send-pr to send this, but it was returned. I've included the entire error portion of the message so that whoever is responsible for send-pr will know what happened.] Forwarded message: > From jaitken Tue Sep 12 20:05:23 1995 > Date: Tue, 12 Sep 1995 17:03:35 -0700 > From: Mail Delivery Subsystem > Subject: Returned mail: unknown mailer error 2 > Message-Id: <199509130003.RAA15692@freefall.freebsd.org> > To: > MIME-Version: 1.0 > Content-Type: multipart/mixed; boundary="RAA15692.810950615/freefall.freebsd.org" > > This is a MIME-encapsulated message > > --RAA15692.810950615/freefall.freebsd.org > > The original message was received at Tue, 12 Sep 1995 17:03:33 -0700 > from jaitken.async.vt.edu [128.173.18.165] > > ----- The following addresses had delivery problems ----- > "| /usr/local/lib/gnats/queue-pr -q >/dev/null 2>&1" (unrecoverable error) > (expanded from: ) > > ----- Transcript of session follows ----- > 554 "| /usr/local/lib/gnats/queue-pr -q >/dev/null 2>&1"... unknown mailer error 2 > > ----- Original message follows ----- > > --RAA15692.810950615/freefall.freebsd.org > Content-Type: message/rfc822 > > Return-Path: jaitken@vt.edu > Received: from huron.aitken.com (jaitken.async.vt.edu [128.173.18.165]) > by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id RAA15691 > for ; Tue, 12 Sep 1995 17:03:33 -0700 > Received: (from jaitken@localhost) by huron.aitken.com (8.6.11/8.6.9) id UAA03539; Tue, 12 Sep 1995 20:04:49 -0400 > Date: Tue, 12 Sep 1995 20:04:49 -0400 > From: Jeff Aitken > Message-Id: <199509130004.UAA03539@huron.aitken.com> > To: FreeBSD-gnats-submit@freebsd.org > Subject: bug in df(1) > Reply-To: jaitken@vt.edu > X-send-pr-version: 3.2 > > > >Submitter-Id: current-users > >Originator: Jeff Aitken > >Organization: Jeff Aitken > jaitken@vt.edu > >Confidential: no > >Synopsis: df(1) hangs when an NFS server disappears > >Severity: serious > >Priority: > >Category: bin > >Release: FreeBSD 2.0-BUILT-19950603 i386 > >Class: sw-bug > >Environment: > > FreeBSD 2.0.5-RELEASE on a 486 DX2/66 PCI. I mount a single directory > via NFS from an Ultrix 4.4 box on the same subnet. > > >Description: > > If the Ultrix box goes away before I unmount the NFS-mounted filesystem, > the df(1) command hangs. Furthermore, it cannot be killed (not even > kill -9 as root does anything). The df process appears to be stuck in > disk wait; it is listed as follows by ps(1): > > jaitken 2967 0.0 0.1 216 12 p1- D - 0:00.00 (df) > root 2994 0.0 0.1 216 12 v2- D - 0:00.00 (df) > > >How-To-Repeat: > > Mount an NFS filesystem, and remove the NFS server (in my case it was > turned off, but I imagine the same thing would happen if you simply > disconnected it from the network). > > >Fix: > > I have no idea. I'm not so concerned with df hanging as I am with the > fact that I cannot kill the process once it is hung. > > > --RAA15692.810950615/freefall.freebsd.org-- > > -- Jeff Aitken jaitken@vt.edu From owner-freebsd-bugs Wed Sep 13 09:24:58 1995 Return-Path: bugs-owner Received: (from majordom@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA15586 for bugs-outgoing; Wed, 13 Sep 1995 09:24:58 -0700 Received: from irz301.inf.tu-dresden.de (irz301.inf.tu-dresden.de [141.76.1.11]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id JAA15575 for ; Wed, 13 Sep 1995 09:24:51 -0700 Received: from sax.sax.de by irz301.inf.tu-dresden.de (8.6.12/8.6.12-s1) with ESMTP id SAA18918; Wed, 13 Sep 1995 18:24:37 +0200 Received: by sax.sax.de (8.6.11/8.6.12-s1) with UUCP id SAA00518; Wed, 13 Sep 1995 18:24:36 +0200 Received: (from j@localhost) by uriah.heep.sax.de (8.6.12/8.6.9) id QAA04428; Wed, 13 Sep 1995 16:53:49 +0200 From: J Wunsch Message-Id: <199509131453.QAA04428@uriah.heep.sax.de> Subject: Re: problem with df(1) To: jaitken@vt.edu (Jeff Aitken) Date: Wed, 13 Sep 1995 16:53:48 +0200 (MET DST) Cc: bugs@freebsd.org Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: <199509130019.UAA05907@huron.aitken.com> from "Jeff Aitken" at Sep 12, 95 08:19:06 pm X-Phone: +49-351-2012 669 X-Mailer: ELM [version 2.4 PL23] MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Content-Length: 546 Sender: bugs-owner@freebsd.org Precedence: bulk As Jeff Aitken wrote: > > > >Synopsis: df(1) hangs when an NFS server disappears > > >How-To-Repeat: > > > > Mount an NFS filesystem, and remove the NFS server (in my case it was > > turned off, but I imagine the same thing would happen if you simply > > disconnected it from the network). The same is true for getcwd(3). You have to mount the NFS server interruptible if you want to avoid this. -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ Never trust an operating system you don't have sources for. ;-) From owner-freebsd-bugs Wed Sep 13 12:31:03 1995 Return-Path: bugs-owner Received: (from majordom@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA22780 for bugs-outgoing; Wed, 13 Sep 1995 12:31:03 -0700 Received: from meter.eng.uci.edu (root@meter.eng.uci.edu [128.200.85.3]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id MAA22763 ; Wed, 13 Sep 1995 12:30:59 -0700 Received: from newport.ece.uci.edu by meter.eng.uci.edu (8.6.12) id MAA04284; Wed, 13 Sep 1995 12:30:57 -0700 Received: from localhost by newport.ece.uci.edu (8.6.12) id MAA07698; Wed, 13 Sep 1995 12:30:55 -0700 Message-Id: <199509131930.MAA07698@newport.ece.uci.edu> To: current@freebsd.org cc: bugs@freebsd.org Subject: amd and -current Date: Wed, 13 Sep 1995 12:30:54 -0700 From: Steven Wallace Sender: bugs-owner@freebsd.org Precedence: bulk I have discovered a strange behavior with amd and a -current kernel. Amd will hang when autostarted by /etc/rc after it says, "/info: file server localhost type local starts up". Strangely enough, if I move amd start after inetd in /etc/rc or start it up manually there is no problems. Or if I use a kernel from a week ago there is no probs. I rebuilt /sbin/* and amd and did not make a difference. Any clues? Steven From owner-freebsd-bugs Wed Sep 13 13:15:43 1995 Return-Path: bugs-owner Received: (from majordom@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA25143 for bugs-outgoing; Wed, 13 Sep 1995 13:15:43 -0700 Received: from meter.eng.uci.edu (root@meter.eng.uci.edu [128.200.85.3]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id NAA25137 for ; Wed, 13 Sep 1995 13:15:41 -0700 Received: from newport.ece.uci.edu by meter.eng.uci.edu (8.6.12) id NAA05156; Wed, 13 Sep 1995 13:15:38 -0700 Received: from localhost by newport.ece.uci.edu (8.6.12) id NAA08377; Wed, 13 Sep 1995 13:15:36 -0700 Message-Id: <199509132015.NAA08377@newport.ece.uci.edu> To: bugs@freebsd.org Subject: probs with shared libs/mmap in -current Date: Wed, 13 Sep 1995 13:15:35 -0700 From: Steven Wallace Sender: bugs-owner@freebsd.org Precedence: bulk In -current kernel that I compiled today, I think there might be a problem introduced into mmap(). My system will run fine for a while, and then all of a sudden programs I start running will core dump. I get signal 4 and 10's. If I run a statically linked binaries as in /bin /sbin there is no prob. Steven From owner-freebsd-bugs Wed Sep 13 21:45:23 1995 Return-Path: bugs-owner Received: (from majordom@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id VAA18731 for bugs-outgoing; Wed, 13 Sep 1995 21:45:23 -0700 Received: from vistec.com (luna.vistec.com [194.64.40.71]) by freefall.freebsd.org (8.6.12/8.6.6) with SMTP id VAA18719 for ; Wed, 13 Sep 1995 21:45:17 -0700 Received: by vistec.com (Smail3.1.28.1 #10) id m0st6Cs-0001NYC; Thu, 14 Sep 95 06:47 MET DST Message-Id: Date: Thu, 14 Sep 95 06:47 MET DST To: freebsd-bugs@freebsd.org From: Marcus.John@wiesbaden.netsurf.de Reply-To: Marcus.John@wiesbaden.netsurf.de Subject: Funny fdisk? Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7Bit X-Mailer: Sender: bugs-owner@freebsd.org Precedence: bulk Hi, I have a a strange problem when I boot up diskless in order to get the local disk (wd0) quiet. Even though the disk shows up correctly during boot, and I have done MAKEDEV, fdisk cannot report the proper information for the local disk. But funny I can mount the UFS4s on it and swapon to it. BTW the disk uses LBA! Thanks Marcus.John@wiesbaden.netsurf.de From owner-freebsd-bugs Wed Sep 13 22:53:30 1995 Return-Path: bugs-owner Received: (from majordom@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id WAA22622 for bugs-outgoing; Wed, 13 Sep 1995 22:53:30 -0700 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.34]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id WAA22591 for ; Wed, 13 Sep 1995 22:53:19 -0700 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id PAA11128; Thu, 14 Sep 1995 15:48:45 +1000 Date: Thu, 14 Sep 1995 15:48:45 +1000 From: Bruce Evans Message-Id: <199509140548.PAA11128@godzilla.zeta.org.au> To: Marcus.John@wiesbaden.netsurf.de, freebsd-bugs@freebsd.org Subject: Re: Funny fdisk? Sender: bugs-owner@freebsd.org Precedence: bulk >I have a a strange problem when I boot up diskless in order to get the local >disk (wd0) quiet. >Even though the disk shows up correctly during boot, and I have done MAKEDEV, >fdisk cannot report the proper information for the local disk. But funny I can >mount the UFS4s on it and swapon to it. >BTW the disk uses LBA! Does fdisk report the proper information if you boot from wd0? `netboot' doesn't initialize the boot parameters for BIOS drives. This makes a difference only if the command to ask the drive for its parameters fails (it shouldn't fail for IDE or EIDE drives, but failures have been reported). If both the BIOS parameters and the drive parameters are unavailable, then I would expect ufs to fail, but fdisk might work :-). Bruce From owner-freebsd-bugs Thu Sep 14 03:07:05 1995 Return-Path: bugs-owner Received: (from majordom@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA03172 for bugs-outgoing; Thu, 14 Sep 1995 03:07:05 -0700 Received: from who.cdrom.com (who.cdrom.com [192.216.222.3]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id DAA03162 for ; Thu, 14 Sep 1995 03:07:03 -0700 Received: from ccunix.ccu.edu.tw (ccunix.ccunix.ccu.edu.tw [140.123.3.5]) by who.cdrom.com (8.6.11/8.6.11) with SMTP id DAA14696 for ; Thu, 14 Sep 1995 03:05:50 -0700 Received: from odin.ccunix.ccu.edu.tw by ccunix.ccu.edu.tw (4.1/SMI-4.1) id AA16524; Thu, 14 Sep 95 18:02:35 CST Date: Thu, 14 Sep 95 18:02:35 CST From: u8243002@ccunix.ccu.edu.tw (UnderGraduate Department of Mechanical Engineering) Message-Id: <9509141002.AA16524@ccunix.ccu.edu.tw> To: bugs@freebsd.org Subject: install problem. Sender: bugs-owner@freebsd.org Precedence: bulk O.S. = FreeBSD 2.1.0-950726-SNAP CPU = Intel Pentium 100 RAM = 64MB Problem = Cannot install from DOS Part. Hi, me dear sir: When I install FreeBSD ( FreeBSD-2.1.0-950726-SNAP ) from my DOS Partition. The install program tells me that it cannot transfer files from my DOS Part. I have create the whole DICT. as in INSTALL document, like this: C:/FREEBSD C:/FREEBSD/BIN C:/FREEBSD/FLOPPIES . . From owner-freebsd-bugs Thu Sep 14 05:52:59 1995 Return-Path: bugs-owner Received: (from majordom@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id FAA09369 for bugs-outgoing; Thu, 14 Sep 1995 05:52:59 -0700 Received: from linet01.li.net (root@linet01.li.net [199.171.6.11]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id FAA09363 for ; Thu, 14 Sep 1995 05:52:56 -0700 Received: from gummo.mbsmm.com (gummo.mbsmm.com [199.33.252.17]) by linet01.li.net (8.6.10/8.6.6) with SMTP id IAA14317 for ; Thu, 14 Sep 1995 08:53:36 -0400 Date: Thu, 14 Sep 1995 08:53:36 -0400 Message-Id: <199509141253.IAA14317@linet01.li.net> X-Sender: billc@li.net X-Mailer: Windows Eudora Light Version 1.5.2 Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" To: bugs@FreeBSD.org From: Mail Delivery Subsystem (by way of Bill Clark ) Subject: Returned mail: unknown mailer error 2 Sender: bugs-owner@FreeBSD.org Precedence: bulk >Submitter-Id: current-users >Originator: bill >Organization: MBS/Multimode >Confidential: no >Synopsis: Kernel not finding a 28.8 modem on startup >Severity: non-critical >Priority: medium >Category: kern >Release: FreeBSD 2.0-BUILT-19950603 i386 >Class: support >Environment: 486DX2/66 16MB RAM WD 850MB Caviar & WD 425MB Caviar. ATI Mach 64 Video DTC 2278S IDE/Multiport Control, Zoom 28.8 v.34 modem, Soundblaster pro >Description: I originally had a Zoom 14.4 modem installed and it worked fined (installed using PPP with this mode). Replaced modem with a Zoom 28.8, now upon boot up still using GENERIC kernel, sio0 is not found. All IRQs and ports are correct When booting with the -c option and I issue a probe sio0 command and a attach sio0, then when booting the modem is found and works. Next boot however modem is not found. UART on modem is a 16550AF >How-To-Repeat: Boot without the -c option >Fix: Boot with the -c option and probe and attach to sio0 From owner-freebsd-bugs Thu Sep 14 06:57:51 1995 Return-Path: bugs-owner Received: (from majordom@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id GAA11003 for bugs-outgoing; Thu, 14 Sep 1995 06:57:51 -0700 Received: from vistec.com (luna.vistec.com [194.64.40.71]) by freefall.freebsd.org (8.6.12/8.6.6) with SMTP id GAA10996 for ; Thu, 14 Sep 1995 06:57:48 -0700 Received: by vistec.com (Smail3.1.28.1 #10) id m0stEpa-0001IgC; Thu, 14 Sep 95 15:59 MET DST Message-Id: Date: Thu, 14 Sep 95 15:59 MET DST To: bde@zeta.org.au From: Marcus.John@wiesbaden.netsurf.de Reply-To: Marcus.John@wiesbaden.netsurf.de Subject: Re: Funny fdisk? Cc: freebsd-bugs@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7Bit X-Mailer: Sender: bugs-owner@freebsd.org Precedence: bulk Bruce Evans wrote: >Does fdisk report the proper information if you boot from wd0? Yes. >`netboot' doesn't initialize the boot parameters for BIOS drives. This >makes a difference only if the command to ask the drive for its parameters >fails (it shouldn't fail for IDE or EIDE drives, but failures have been >reported). If both the BIOS parameters and the drive parameters are >unavailable, then I would expect ufs to fail, but fdisk might work :-). But it is just the other way round. fdisk is wrong, but UFS mount correctly and even swapon works without destroying the disks contents. Thanks! Marcus.John@wiesbaden.netsurf.de From owner-freebsd-bugs Fri Sep 15 01:02:42 1995 Return-Path: owner-bugs Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA01038 for bugs-outgoing; Fri, 15 Sep 1995 01:02:42 -0700 Received: (from asami@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA01016 ; Fri, 15 Sep 1995 01:02:38 -0700 Date: Fri, 15 Sep 1995 01:02:38 -0700 From: Satoshi Asami Message-Id: <199509150802.BAA01016@freefall.freebsd.org> To: fenner@parc.xerox.com, asami, freebsd-bugs Subject: Re: ports/412 Sender: owner-bugs@FreeBSD.org Precedence: bulk Synopsis: should tracker-4.29 really depend on gmake? State-Changed-From-To: analyzed-closed State-Changed-By: asami State-Changed-When: Fri Sep 15 01:01:12 PDT 1995 State-Changed-Why: Modified bsd.port.mk to fix it, will commit soon (should be rev. 1.179). From owner-freebsd-bugs Fri Sep 15 01:54:03 1995 Return-Path: owner-bugs Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA04560 for bugs-outgoing; Fri, 15 Sep 1995 01:54:03 -0700 Received: from vistec.com (luna.vistec.com [194.64.40.71]) by freefall.freebsd.org (8.6.12/8.6.6) with SMTP id BAA04539 for ; Fri, 15 Sep 1995 01:53:42 -0700 Received: by vistec.com (Smail3.1.28.1 #10) id m0stWYQ-0001IgC; Fri, 15 Sep 95 10:55 MET DST Message-Id: Date: Fri, 15 Sep 95 10:55 MET DST To: bde@zeta.org.au From: Marcus.John@wiesbaden.netsurf.de Reply-To: Marcus.John@wiesbaden.netsurf.de Subject: Re: Funny fdisk? Cc: freebsd-bugs@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7Bit X-Mailer: Sender: owner-bugs@freebsd.org Precedence: bulk Hi Bruce! >What is the output from: > >- dmesg (or the end of /var/log/messages) after booting with -v (messages > about the disk only, including the one about the BIOS geometry) >- disklabel /dev/rwd0 >- fdisk Disk wd0 is a local booting; disk wd1 is for testing purposes ******************************************************************************* * With boot from local disk (wd0): FreeBSD 2.0.5-RELEASE #0: Fri Aug 4 10:35:49 MESZ 1995 root@Idefix:/usr/src/sys/compile/LAMARC CPU: i486DX (486-class CPU) real memory = 16384000 (4000 pages) avail memory = 15142912 (3697 pages) Probing for devices on the ISA bus: sc0 at 0x60-0x6f irq 1 on motherboard sc0: VGA color <16 virtual consoles, flags=0x0> ed0 at 0x300-0x31f irq 10 maddr 0xd0000 msize 16384 on isa ed0: address 00:00:c0:9e:4c:6c, type WD8013EPC (16 bit) sio0 at 0x3f8-0x3ff irq 4 on isa sio0: type 16450 sio1 at 0x2f8-0x2ff irq 3 on isa sio1: type 16450 lpt0 at 0x378-0x37f irq 7 on isa lpt0: Interrupt-driven port lp0: TCP/IP capable interface fdc0 at 0x3f0-0x3f7 irq 6 drq 2 on isa fdc0: NEC 765 fd0: 1.44MB 3.5in wdc0 at 0x1f0-0x1f7 irq 14 on isa wdc0: unit 0 (wd0): wd0: 1039MB (2128896 sectors), 2112 cyls, 16 heads, 63 S/T, 512 B/S wdc0: unit 1 (wd1): wd1: 202MB (414540 sectors), 987 cyls, 12 heads, 35 S/T, 512 B/S npx0 on motherboard npx0: INT 16 interface Castor[root-ttyv0/root]> disklabel /dev/wd0 # /dev/wd0: type: unknown disk: label: flags: bytes/sector: 512 sectors/track: 63 tracks/cylinder: 64 sectors/cylinder: 4032 cylinders: 2112 sectors/unit: 2128896 rpm: 0 interleave: 0 trackskew: 0 cylinderskew: 0 headswitch: 0 # milliseconds track-to-track seek: 0 # milliseconds drivedata: 0 3 partitions: # size offset fstype [fsize bsize bps/cpg] c: 2128896 0 unused 0 0 # (Cyl. 0 - 527) Warning, revolutions/minute 0 boot block size 0 super block size 0 Castor[root-ttyv0/root]> disklabel /dev/wd1 # /dev/wd1: type: unknown disk: label: flags: bytes/sector: 512 sectors/track: 35 tracks/cylinder: 12 sectors/cylinder: 420 cylinders: 987 sectors/unit: 414540 rpm: 0 interleave: 0 trackskew: 0 cylinderskew: 0 headswitch: 0 # milliseconds track-to-track seek: 0 # milliseconds drivedata: 0 3 partitions: # size offset fstype [fsize bsize bps/cpg] c: 414540 0 unused 0 0 # (Cyl. 0 - 986) Warning, revolutions/minute 0 boot block size 0 super block size 0 Castor[root-ttyv0/root]> fdisk /dev/wd0 ******* Working on device /dev/wd0 ******* parameters extracted from in-core disklabel are: cylinders=2112 heads=64 sectors/track=63 (4032 blks/cyl) Figures below won't work with BIOS for partitions not in cyl 1 parameters to be used for BIOS calculations are: cylinders=2112 heads=64 sectors/track=63 (4032 blks/cyl) Warning: BIOS sector numbering starts with sector 1 Information from DOS bootblock is: The data for partition 0 is: sysid 6,(Primary 'big' DOS (> 32MB)) start 63, size 822465 (401 Meg), flag 0 beg: cyl 0/ sector 1/ head 1; end: cyl 203/ sector 63/ head 63 The data for partition 1 is: The data for partition 2 is: sysid 165,(FreeBSD/NetBSD/386BSD) start 822528, size 407232 (198 Meg), flag 80 beg: cyl 204/ sector 1/ head 0; end: cyl 304/ sector 63/ head 63 The data for partition 3 is: sysid 99,(ISC UNIX, other System V/386, GNU HURD or Mach) start 1229760, size 899136 (439 Meg), flag 0 beg: cyl 305/ sector 1/ head 0; end: cyl 527/ sector 63/ head 63 Castor[root-ttyv0/root]> fdisk /dev/wd1 ******* Working on device /dev/wd1 ******* parameters extracted from in-core disklabel are: cylinders=987 heads=12 sectors/track=35 (420 blks/cyl) parameters to be used for BIOS calculations are: cylinders=987 heads=12 sectors/track=35 (420 blks/cyl) Warning: BIOS sector numbering starts with sector 1 Information from DOS bootblock is: The data for partition 0 is: The data for partition 1 is: The data for partition 2 is: The data for partition 3 is: sysid 165,(FreeBSD/NetBSD/386BSD) start 0, size 50000 (24 Meg), flag 80 beg: cyl 0/ sector 1/ head 0; end: cyl 1023/ sector 63/ head 255 ******************************************************************************* ****** Now for the diskless boot: (Same machine only different hostname!) Asterix[root-ttyp0/root]> dmesg FreeBSD 2.0.5-RELEASE #0: Fri Aug 4 10:35:49 MESZ 1995 root@Idefix:/usr/src/sys/compile/LAMARC CPU: i486DX (486-class CPU) real memory = 16384000 (4000 pages) avail memory = 15142912 (3697 pages) Probing for devices on the ISA bus: sc0 at 0x60-0x6f irq 1 on motherboard sc0: VGA color <16 virtual consoles, flags=0x0> ed0 at 0x300-0x31f irq 10 maddr 0xd0000 msize 16384 on isa ed0: address 00:00:c0:9e:4c:6c, type WD8013EPC (16 bit) sio0 at 0x3f8-0x3ff irq 4 on isa sio0: type 16450 sio1 at 0x2f8-0x2ff irq 3 on isa sio1: type 16450 lpt0 at 0x378-0x37f irq 7 on isa lpt0: Interrupt-driven port lp0: TCP/IP capable interface fdc0 at 0x3f0-0x3f7 irq 6 drq 2 on isa fdc0: NEC 765 fd0: 1.44MB 3.5in wdc0 at 0x1f0-0x1f7 irq 14 on isa wdc0: unit 0 (wd0): wd0: 1039MB (2128896 sectors), 2112 cyls, 16 heads, 63 S/T, 512 B/S wdc0: unit 1 (wd1): wd1: 202MB (414540 sectors), 987 cyls, 12 heads, 35 S/T, 512 B/S npx0 on motherboard npx0: INT 16 interface NFS SWAP: 130.2.5.1:/bsd/swapfiles NFS ROOT: 130.2.5.1:/bsd/systems/Asterix Asterix[root-ttyp0/root]> disklabel /dev/wd0 # /dev/wd0: type: ESDI disk: wd0s2 label: flags: bytes/sector: 512 sectors/track: 63 tracks/cylinder: 64 sectors/cylinder: 4032 cylinders: 101 sectors/unit: 407232 rpm: 0 interleave: 0 trackskew: 0 cylinderskew: 0 headswitch: 0 # milliseconds track-to-track seek: 0 # milliseconds drivedata: 0 8 partitions: # size offset fstype [fsize bsize bps/cpg] a: 341696 65536 4.2BSD 0 0 0 # (Cyl. 16*- 100*) b: 65536 0 swap # (Cyl. 0 - 16*) c: 407232 0 unused 0 0 # (Cyl. 0 - 100) Warning, revolutions/minute 0 super block size 0 Asterix[root-ttyp0/root]> disklabel /dev/wd1 # /dev/wd1: type: ESDI disk: wd0s2 label: flags: bytes/sector: 512 sectors/track: 63 tracks/cylinder: 64 sectors/cylinder: 4032 cylinders: 102 sectors/unit: 414540 rpm: 0 interleave: 0 trackskew: 0 cylinderskew: 0 headswitch: 0 # milliseconds track-to-track seek: 0 # milliseconds drivedata: 0 8 partitions: # size offset fstype [fsize bsize bps/cpg] a: 341696 65536 4.2BSD 0 0 0 # (Cyl. 16*- 100*) b: 65536 0 swap # (Cyl. 0 - 16*) c: 407232 0 unused 0 0 # (Cyl. 0 - 100) Warning, revolutions/minute 0 super block size 0 Asterix[root-ttyp0/root]>Sep 15 08:58:14 Asterix /kernel: wd1: raw partition si ze != slice size Sep 15 08:58:14 Asterix /kernel: wd1: raw partition size != slice size Sep 15 08:58:14 Asterix /kernel: wd1: start 0, end 414539, size 414540 Sep 15 08:58:14 Asterix /kernel: wd1: start 0, end 414539, size 414540 Sep 15 08:58:14 Asterix /kernel: wd1c: start 0, end 407231, size 407232 Sep 15 08:58:14 Asterix /kernel: wd1c: start 0, end 407231, size 407232 Asterix[root-ttyp0/root]> fdisk /dev/wd0 ******* Working on device /dev/wd0 ******* parameters extracted from in-core disklabel are: cylinders=101 heads=64 sectors/track=63 (4032 blks/cyl) parameters to be used for BIOS calculations are: cylinders=101 heads=64 sectors/track=63 (4032 blks/cyl) Warning: BIOS sector numbering starts with sector 1 Information from DOS bootblock is: The data for partition 0 is: The data for partition 1 is: The data for partition 2 is: The data for partition 3 is: sysid 165,(FreeBSD/NetBSD/386BSD) start 0, size 50000 (24 Meg), flag 80 beg: cyl 0/ sector 1/ head 0; end: cyl 1023/ sector 63/ head 255 Asterix[root-ttyp0/root]> fdisk /dev/wd1 ******* Working on device /dev/wd1 ******* parameters extracted from in-core disklabel are: cylinders=102 heads=64 sectors/track=63 (4032 blks/cyl) parameters to be used for BIOS calculations are: cylinders=102 heads=64 sectors/track=63 (4032 blks/cyl) Warning: BIOS sector numbering starts with sector 1 Information from DOS bootblock is: The data for partition 0 is: The data for partition 1 is: The data for partition 2 is: The data for partition 3 is: sysid 165,(FreeBSD/NetBSD/386BSD) start 0, size 50000 (24 Meg), flag 80 beg: cyl 0/ sector 1/ head 0; end: cyl 1023/ sector 63/ head 255 Asterix[root-ttyp0/root]>Sep 15 08:58:41 Asterix /kernel: wd1: raw partition si ze != slice size Sep 15 08:58:41 Asterix /kernel: wd1: raw partition size != slice size Sep 15 08:58:41 Asterix /kernel: wd1: start 0, end 414539, size 414540 Sep 15 08:58:41 Asterix /kernel: wd1: start 0, end 414539, size 414540 Sep 15 08:58:41 Asterix /kernel: wd1c: start 0, end 407231, size 407232 Sep 15 08:58:41 Asterix /kernel: wd1c: start 0, end 407231, size 407232 From owner-freebsd-bugs Fri Sep 15 07:25:13 1995 Return-Path: owner-bugs Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA06110 for bugs-outgoing; Fri, 15 Sep 1995 07:25:13 -0700 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.34]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id HAA06066 for ; Fri, 15 Sep 1995 07:24:58 -0700 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id AAA13496; Sat, 16 Sep 1995 00:11:37 +1000 Date: Sat, 16 Sep 1995 00:11:37 +1000 From: Bruce Evans Message-Id: <199509151411.AAA13496@godzilla.zeta.org.au> To: Marcus.John@wiesbaden.netsurf.de, bde@zeta.org.au Subject: Re: Funny fdisk? Cc: freebsd-bugs@freebsd.org Sender: owner-bugs@freebsd.org Precedence: bulk The problem seems to be that /dev/wd0 after booting from the network is actually /dev/wd0c. Check you device numbers. /dev/wd0 should be (0, 65538) while /dev/wd0c is (0, 2). The high bits in device numbers are not handled correctly by tar (only 18 bits work) or cpio with the default format (only 16 bits work). High bits are silently ignored in 2.0.5 (-current prints a warning and skips the file). New cpio formats work. Bruce From owner-freebsd-bugs Fri Sep 15 07:40:04 1995 Return-Path: owner-bugs Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA07472 for bugs-outgoing; Fri, 15 Sep 1995 07:40:04 -0700 Received: (from gnats@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA07461 ; Fri, 15 Sep 1995 07:40:02 -0700 Resent-Date: Fri, 15 Sep 1995 07:40:02 -0700 Resent-Message-Id: <199509151440.HAA07461@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, wollman@khavrinen.lcs.mit.edu Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.26.0.162]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id HAA07079 for ; Fri, 15 Sep 1995 07:36:41 -0700 Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.6.11/8.6.6) id KAA01521; Fri, 15 Sep 1995 10:36:39 -0400 Message-Id: <199509151436.KAA01521@khavrinen.lcs.mit.edu> Date: Fri, 15 Sep 1995 10:36:39 -0400 From: "Garrett A. Wollman" Reply-To: wollman@khavrinen.lcs.mit.edu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/721: ar(8) doesn't like its own output Sender: owner-bugs@freebsd.org Precedence: bulk >Number: 721 >Category: bin >Synopsis: ar(8) doesn't like its own output >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Sep 15 07:40:01 PDT 1995 >Last-Modified: >Originator: Garrett Wollman >Organization: MIT Laboratory for Computer Science >Release: FreeBSD 2.2-CURRENT i386 >Environment: I'm not sure how old my `ar' binary is, but I don't remember seeing any fixes to it lately. libc_pic.a is a month or two old. >Description: An `ar x' command on libc_pic.a fails. Strangely enough, `ar t' and `ar tv' succeed on the same file. >How-To-Repeat: Script started on Fri Sep 15 10:28:46 1995 bash$ mkdir tmp bash$ cd tmp bash$ ar x /usr/lib/libc_pic.a ar: /usr/lib/libc_pic.a: Inappropriate file type or format bash$ exit Script done on Fri Sep 15 10:29:16 1995 >Fix: Don't know. >Audit-Trail: >Unformatted: Garrett A. Wollman From owner-freebsd-bugs Fri Sep 15 07:52:05 1995 Return-Path: owner-bugs Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA08650 for bugs-outgoing; Fri, 15 Sep 1995 07:52:05 -0700 Received: from disperse.demon.co.uk (disperse.demon.co.uk [158.152.1.77]) by freefall.freebsd.org (8.6.12/8.6.6) with SMTP id HAA08639 for ; Fri, 15 Sep 1995 07:51:56 -0700 Received: from post.demon.co.uk by disperse.demon.co.uk id ac00669; 15 Sep 95 13:39 +0100 Received: from gnome.demon.co.uk by post.demon.co.uk id aa22387; 15 Sep 95 12:36 +0100 Received: (from jacs@localhost) by hawk.gnome.co.uk (8.6.12/8.6.9) id MAA02344; Fri, 15 Sep 1995 12:37:58 +0100 Date: Fri, 15 Sep 1995 12:37:58 +0100 Subject: lpr bug in FreeBSD-stable + Fix To: freebsd-bugs@freebsd.org From: Chris Stenton Message-Id: Sender: owner-bugs@freebsd.org Precedence: bulk Picked up a copy of FreeBSD-stable yesterday; there is a bug in that lpr -r does not work here is the patch to make it work *** lpr.c.orig Fri Sep 15 11:29:16 1995 --- lpr.c Fri Sep 15 12:20:08 1995 *************** *** 600,609 **** if (cp == file) { fd = checkwriteperm(file,"/"); } else { ! strcpy(path,file); *cp = '\0'; fd = checkwriteperm(path,file); *cp = '/'; } if (fd == 0) return(1); --- 600,611 ---- if (cp == file) { fd = checkwriteperm(file,"/"); } else { ! path = malloc(strlen(file)+1 ); ! strcpy (path, file); *cp = '\0'; fd = checkwriteperm(path,file); *cp = '/'; + free(path); } if (fd == 0) return(1); ------------------------------------------------------------------------------- Dr Chris Stenton chris@gnome.co.uk Gnome Computers Ltd Tel/Fax: 44 (0)1480 406164 25A Huntingdon St, St Neots, Cambridgeshire, PE19 1BG ------------------------------------------------------------------------------ From owner-freebsd-bugs Fri Sep 15 10:20:48 1995 Return-Path: owner-bugs Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA24118 for bugs-outgoing; Fri, 15 Sep 1995 10:20:48 -0700 Received: (from bde@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA24102 ; Fri, 15 Sep 1995 10:20:45 -0700 Date: Fri, 15 Sep 1995 10:20:45 -0700 From: Bruce Evans Message-Id: <199509151720.KAA24102@freefall.freebsd.org> To: wollman@khavrinen.lcs.mit.edu, bde, freebsd-bugs Subject: Re: bin/721 Sender: owner-bugs@FreeBSD.org Precedence: bulk Synopsis: ar(8) doesn't like its own output State-Changed-From-To: open-analyzed State-Changed-By: bde State-Changed-When: Fri Sep 15 10:09:57 PDT 1995 State-Changed-Why: Odd length long names seem to have been "fixed" twice, the second time incorrectly. Extraction of files with such names has been broken since the second fix (to archive.c on 1994/12/23). From owner-freebsd-bugs Fri Sep 15 21:05:05 1995 Return-Path: owner-bugs Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id VAA28061 for bugs-outgoing; Fri, 15 Sep 1995 21:05:05 -0700 Received: from vistec.com (luna.vistec.com [194.64.40.71]) by freefall.freebsd.org (8.6.12/8.6.6) with SMTP id VAA28056 for ; Fri, 15 Sep 1995 21:05:02 -0700 Received: by vistec.com (Smail3.1.28.1 #10) id m0stoX9-0001NYC; Sat, 16 Sep 95 06:07 MET DST Message-Id: Date: Sat, 16 Sep 95 06:07 MET DST To: bde@zeta.org.au From: marcus.john@wiesbaden.netsurf.de Reply-To: marcus.john@wiesbaden.netsurf.de Subject: Re: Funny fdisk? - Problem solved Cc: freebsd-bugs@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7Bit X-Mailer: Sender: owner-bugs@freebsd.org Precedence: bulk Hi Bruce, thanks for the hint on die width of the device numbers. We solved the problem in the meantime by investigating further on the NFS-server and found out, that it was on capable of using one-byte major- and minor-numbers (blame on SunOS). After switching back to a Solaris server it all works well. Thanks a lot. Marcus From owner-freebsd-bugs Fri Sep 15 23:10:03 1995 Return-Path: owner-bugs Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id XAA00199 for bugs-outgoing; Fri, 15 Sep 1995 23:10:03 -0700 Received: (from gnats@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id XAA00193 ; Fri, 15 Sep 1995 23:10:01 -0700 Resent-Date: Fri, 15 Sep 1995 23:10:01 -0700 Resent-Message-Id: <199509160610.XAA00193@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, syssgm@devetir.qld.gov.au Received: from bunyip.cc.uq.oz.au (pp@bunyip.cc.uq.oz.au [130.102.2.1]) by freefall.freebsd.org (8.6.12/8.6.6) with SMTP id XAA29846 for ; Fri, 15 Sep 1995 23:00:20 -0700 Received: from cc.uq.oz.au by bunyip.cc.uq.oz.au id <29558-0@bunyip.cc.uq.oz.au>; Sat, 16 Sep 1995 16:00:02 +1000 Received: from stupid.devetir.qld.gov.au by pandora.devetir.qld.gov.au (8.6.10/DEVETIR-E0.3a) with ESMTP id QAA19921; Sat, 16 Sep 1995 16:04:38 +1000 Received: (from syssgm@localhost) by stupid.devetir.qld.gov.au (8.6.12/8.6.9) id PAA02308; Sat, 16 Sep 1995 15:42:30 +1000 Message-Id: <199509160542.PAA02308@stupid.devetir.qld.gov.au> Date: Sat, 16 Sep 1995 15:42:30 +1000 From: Stephen McKay Reply-To: syssgm@devetir.qld.gov.au To: FreeBSD-gnats-submit@freebsd.org Cc: syssgm@devetir.qld.gov.au X-Send-Pr-Version: 3.2 Subject: bin/722: Off-by-one error in wbkgd() in ncurses Sender: owner-bugs@freebsd.org Precedence: bulk >Number: 722 >Category: bin >Synopsis: Off-by-one error in wbkgd() in ncurses >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Sep 15 23:10:01 PDT 1995 >Last-Modified: >Originator: Paul Koch >Organization: >Release: FreeBSD 2.2-CURRENT i386 >Environment: FreeBSD 2.0.5 on a 16Mb 486DX50 >Description: [ I'm posting this for Paul Koch, who has no net connection. ] I found when using the ncurses library call 'wbkgd', the entire background was not being painted properly. eg on a 80*25 window, the last column and last line were being painted incorrectly. >How-To-Repeat: >Fix: *** libncurses/lib_bkgd.c.old Mon Sep 4 12:56:29 1995 --- libncurses/lib_bkgd.c Mon Sep 4 12:57:11 1995 *************** *** 25,32 **** int x, y; T(("wbkgd(%x, %x) called", win, ch)); ! for (y = 0; y < win->_maxy; y++) ! for (x = 0; x < win->_maxx; x++) if (win->_line[y][x]&A_CHARTEXT == ' ') win->_line[y][x] |= ch; else --- 25,32 ---- int x, y; T(("wbkgd(%x, %x) called", win, ch)); ! for (y = 0; y <= win->_maxy; y++) ! for (x = 0; x <= win->_maxx; x++) if (win->_line[y][x]&A_CHARTEXT == ' ') win->_line[y][x] |= ch; else EOF >Audit-Trail: >Unformatted: From owner-freebsd-bugs Sat Sep 16 04:30:10 1995 Return-Path: owner-bugs Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA18305 for bugs-outgoing; Sat, 16 Sep 1995 04:30:10 -0700 Received: (from gnats@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA18291 for freebsd-bugs; Sat, 16 Sep 1995 04:30:08 -0700 Date: Sat, 16 Sep 1995 04:30:08 -0700 From: GNU GNATS Message-Id: <199509161130.EAA18291@freefall.freebsd.org> To: freebsd-bugs Subject: List of open Problem Reports Sender: owner-bugs@FreeBSD.org Precedence: bulk This is the list of currently open problem reports [1994/10/07] kern/6 System hangs while using slip or ppp connection [1994/11/14] bin/17 "mount -t foo /dev/wd1h /mnt" gives incorrect error [1994/11/18] conf/22 Cannot use links to share kernel objects [1994/11/23] kern/27 Loopback mounts confuse unmount-on-reboot code [1994/11/30] kern/34 nullfs and union mounts can result in wild pointer r [1994/12/03] kern/39 Recent config changes hosed ft config [1994/12/04] kern/40 Floppy tape probe hosed (FIX) [1994/12/06] kern/42 PC-NFS on -current can't access disks [1994/12/07] docs/43 manpage for keysu is missing. reference from keyinit [1994/12/07] kern/44 ep driver won't work with anything but bnc [1994/12/08] kern/46 ed driver don't know the link0 flag (IFF_LINK0) [1994/12/13] misc/48 /etc/rc does not recover recovery files [1994/12/14] kern/51 Panic accessing NFS mounted file system [1994/12/18] misc/67 It took 20 tries to get free-bsd installed [1994/12/18] misc/68 bininst leaves system kinda hung [1994/12/21] misc/75 Netboot ignores gateway [1994/12/20] conf/76 fdisk can't be trusted. [1994/12/21] i386/79 Reboots sometimes don't complete. [1994/12/23] misc/83 System crash after abrupt end of slip session [1995/01/03] kern/95 Configuring a SLIP device with source = destination [1995/01/09] kern/102 PANIC after running Merged Buffer Cache kernel for a [1995/01/10] bin/104 pax -rwl may corrupt filesystem [1995/01/11] i386/105 Distributed libm (msun) has non-standard error handl [1995/01/13] gnu/107 kernel build produces internal compiler error [1995/01/14] misc/112 ^C cause panic during install [1995/01/14] bin/115 systat iostat display doesn't scale high enough [1995/01/14] bin/116 disk transfer rates reported by systat :iostat are t [1995/01/14] misc/118 use of 386bsd partition tag makes multi-os boot hard [1995/01/14] misc/120 first Initial security report is bogus becuase of ls [1995/01/14] bin/124 traceroute doesn't support -g flag. [1995/01/14] docs/127 locate man page does not have any clues to how the d [1995/01/14] bin/129 fsck cannot take a mount point as an argument [1995/01/14] docs/131 there is no man page for uucpd [1995/01/14] docs/132 gettytab documentation is split between /etc/gettyta [1995/01/14] bin/133 mail program doesn't have editheaders option [1995/01/14] bin/135 not enough ptys; virtual console names conflict with [1995/01/15] bin/146 version of compress is kinda old and slow [1995/01/19] bin/151 One of the pkg_add set /tmp mod to 755 [1995/01/20] bin/153 mount -u improvement for diskless systems [1995/01/21] kern/157 Quota system does not work [1995/01/21] bin/163 telneting sometimes doesn't yield a "login:" prompt [1995/01/21] docs/164 no ptrace(2) manual page. [1995/01/21] docs/165 No documentation on kernel boot flags. [1995/01/21] misc/166 /usr/include/machine/asmacros.h includes uninstalled [1995/01/21] kern/169 Errors from mkdir & mv when directories paths end wi [1995/01/21] bin/170 ar does not print an error message with readonly lib [1995/01/21] docs/171 No documentation on .forward files. [1995/01/21] bin/172 cp -f does not work [1995/01/21] bin/173 rc trys to mount modload fs before ld is available. [1995/01/21] bin/174 Poor error message from stty [1995/01/22] kern/175 Syscons does not recover X graphics mode [1995/01/22] kern/176 EIDRM not defined in errno.h [1995/01/22] docs/177 man pages missing for SYSV IPC funtions [1995/01/24] gnu/183 can't resolve "operator <<" overload [1995/01/24] bin/184 send-pr says "Aborting ..." and happily removes the [1995/01/25] kern/185 kernel stability problems - can't sustain uptimes > [1995/01/25] bin/188 disklabel uses c partition by default, kernel says d [1995/01/30] gnu/196 size of bss in *.o's reported wrong by size [1995/01/30] bin/198 1.1.5.1 pine binary loops; top shows fancy values [1995/02/01] bin/199 quiz(6) reading database bug, pattern matching bug [1995/02/01] misc/202 System hang or reboot without clues, tcp ppp named r [1995/02/14] kern/214 Using wt driver crashes system [1995/02/14] kern/216 /kernel: panic: ffs_alloccg: map corrupted [1995/02/14] docs/218 dbm references from hash(3) [1995/02/16] kern/219 Performance on local net drops too much when SNDBUF [1995/02/16] misc/220 Cancel still doesn't work during install [1995/02/16] misc/221 lots of error messages during unpacking via ftp inst [1995/02/16] i386/222 boot prompt doesn't always work [1995/02/16] misc/223 default domain shouldn't be hostname [1995/02/18] kern/224 ppp net serial [1995/03/02] misc/229 acos() core dump [1995/03/03] bin/230 C++ contructors not being called [1995/03/05] gnu/231 send-pr initializes Organization with ~/.signature [1995/03/05] docs/232 The mandoc .St macro doesn't work or misses IEEE754 [1995/03/10] misc/236 2.0-950210-SNAP/src/extract.sh references "release" [1995/03/11] kern/238 failed assertion in ncr.c --> no more scsi disk acce [1995/03/13] bin/241 strange behavior of /bin/sh [1995/03/17] kern/247 Berkeley Packet Filter fix [1995/03/17] kern/248 scbus attach/probe information is inconsistent [1995/03/19] gnu/256 nasty gdb bug back in 031595 system [1995/03/20] docs/263 There is absolutely no documentation for the dialog [1995/03/21] kern/266 ifconfig panics kernel built without option NFS [1995/03/28] kern/275 qic-02 streamer won't work [1995/03/28] kern/277 netstat -r reports entries with negative expire time [1995/03/28] kern/280 the new slice code is bitching about my old slices [1995/03/28] kern/281 Messages printed when checking CD ROM device too ver [1995/03/28] kern/282 buslogic adapter information WAY too verbose [1995/03/29] kern/284 Network gives permission denied [1995/03/30] kern/287 Several header files are not consistent [1995/03/31] kern/288 panic: free: multiple frees [1995/04/01] kern/291 PCI devices still probe/attach after being disabled [1995/04/01] kern/293 wd0: interrupt timeout [1995/04/04] kern/299 SCSI probes stop at ID 7 even for WIDE busses [1995/04/05] bin/300 __fdnlist fails on kernels created by cc -g and stri [1995/04/06] conf/301 Log rotation wastes _much_ to much space [1995/04/06] kern/302 Changing st tapes after extract crashes system [1995/04/09] bin/316 SNAP950322 less stable on IDE than earlier releases [1995/04/09] docs/317 Install README doesn't list matcd as install choice [1995/04/09] bin/323 Creating lost+found causes fsck to stop fsck -y FDIV [1995/04/09] bin/326 Weekly cron generates some usage and error messages [1995/04/09] bin/327 Clock management punishes you if CMOS != GMT FDIV020 [1995/04/09] bin/329 FTP transfers above 99K shown in scientific notation [1995/04/11] kern/336 make world fails on NCR-SCSI machine [1995/04/14] docs/341 vnconfig(8) disagrees with its man page [1995/04/14] kern/343 tcpdump with filter fails on tun and lo devices [1995/04/14] misc/344 Signal 11 when running a user program [1995/04/15] kern/345 panic "biodone: page busy < 0" [1995/04/17] kern/349 Panic with bad dir [1995/04/20] kern/353 xcdplayer crashes machine (with NCR810 SCSI) [1995/04/20] kern/354 Can't configure two IP aliases with the same network [1995/04/20] misc/355 policy on /usr/local permission in base release [1995/04/20] bin/357 pkg_delete aborts when subcommand fails [1995/04/24] bin/359 BS/DEL is still not quite right. [1995/04/26] kern/366 queue changes broke ISO tpip code [1995/04/26] kern/367 kernel hangs after ep0 attach message appears [1995/04/26] i386/369 AHA-154X-A problems [1995/05/01] gnu/373 In response to admittedly bogus code, gcc emits an o [1995/05/01] kern/374 panic: bad dir [1995/05/01] bin/375 NIS does not seem to work with Kerberos [1995/05/02] kern/376 tcpdump seems to cause spontaneous reboots [1995/05/03] kern/378 (apparently) bounce buffer code gets used on 32bit b [1995/05/05] kern/383 dd to from /dev/mem panics the machine. [1995/05/06] kern/384 ep0 conflicts with some other drivers [1995/05/06] kern/385 ep0 finds card on irq 10 when it's actually on 11 [1995/05/07] kern/387 scsistrategy doesn't use bounce buffers [1995/05/08] bin/389 Simultaneous creation/deletion of dirs corrupts file [1995/05/11] i386/394 IP multicast not supported by ep driver [1995/05/12] bin/398 VI doesnt do the correct thing [1995/05/13] bin/401 Add REMOTE_* variables [1995/05/13] bin/402 w -n shows non-numeric addresses [1995/05/13] misc/403 FreeBSD 1-compiled tcsh, bash and zsh binaries dump [1995/05/14] kern/405 The gpio driver does not work with the AT-GPIB, only [1995/05/14] bin/406 Sendmail 8.6.11 was not imported correctly. [1995/05/14] bin/410 bad144(8) should probably scan the bad block remap s [1995/05/14] kern/411 bad144 allow you to add blocks in the remap area [1995/05/14] kern/416 page fault in syscons.c:scopen() [1995/05/14] bin/419 pkg_delete refuses to delete an incompletely added p [1995/05/15] misc/423 Sound devices are too insecure [1995/05/16] kern/425 arp entries not getting removed when interface chang [1995/05/16] kern/427 eg doesn't work with more than one card [1995/05/16] kern/428 configure is not foolproof [1995/05/19] kern/430 SCSI Tape dont work [1995/05/19] misc/431 Processes sometime's hang and wont die when they hav [1995/05/21] bin/432 mixer should print out the current mixer settings by [1995/05/22] kern/434 umapfs panics when mounting ufs over itself [1995/05/23] kern/435 mb_map full, network starts jumping off and on, fina [1995/05/23] misc/437 addition for /usr/src/usr.bin/file/Magdir/zyxel [1995/05/23] i386/440 want vidcontrol option to apply settings to all sysc [1995/05/24] bin/441 more does not call vi with +linenum when EDITOR=vi [1995/05/24] gnu/442 when invoked from "make' cc not including name lists [1995/05/25] kern/443 65 sendmails crashes system [1995/05/26] i386/444 GUS sound driver does not seem to work. [1995/05/26] kern/446 unable to diskless-boot a PC when the server mounts [1995/05/26] kern/448 ktrace not enabled in default kernel [1995/05/27] gnu/450 tar --exclude -c doesn't work [1995/05/28] gnu/451 cvsinit/cvs doesn't work as expected with perl [1995/05/28] kern/452 vnode swapping panics [1995/05/28] misc/453 The release/Makefile does not make all des/eBones ta [1995/05/28] bin/454 compile ports/x11/iv and ld got sig11 [1995/05/28] misc/455 library wont compile [1995/05/29] bin/457 We may have an obscure csh bug [1995/05/30] docs/458 px doc does not find include figure [1995/05/30] kern/459 Systems freezes w/ 2842 [1995/05/31] bin/464 dialog_gauge goes one char too far for 100% value [1995/05/31] kern/466 Unexpected disk errors during installation/newfs [1995/06/01] ports/467 utils/kp wrong distfile place after make fetch [1995/06/01] misc/469 ctm leaves temp files after errors [1995/06/01] kern/471 System can not access SCSI DAT tape. [1995/06/02] bin/476 kvm_openfiles called w/ too small error buffer [1995/06/02] bin/477 telnet autologin ain't working [1995/06/03] docs/480 We don't have an rhosts.5 man page [1995/06/04] bin/486 ls includes utmp.h but doesn't use it [1995/06/05] misc/487 [1995/06/05] kern/492 sysinstall shows "success" after "no space" failure. [1995/06/07] bin/499 pkg_manage percent done is broken/dependancies arent [1995/06/07] bin/500 pkg_manage fails to continue without return sometime [1995/06/12] bin/506 "Release" id generated by send-pr looks incorrect. [1995/06/14] kern/512 writing to bpf(loopback) causes kernel panic [1995/06/14] bin/514 Crash recovery impossible without static mt/chflags. [1995/06/14] gnu/515 Info command has no tutorial [1995/06/15] kern/516 Crynwr compatibility mode for PLIP driver. [1995/06/15] bin/517 Bad group change with 'install' [1995/06/15] bin/519 execution of quotacheck from /etc/rc fails [1995/06/15] docs/520 instructions are not clear as to what the url should [1995/06/15] docs/521 catgets() man page error [1995/06/17] kern/527 dump causes assertion in ncr.c [1995/06/17] kern/528 slow 386 reports excessive interrupt-level buffer ov [1995/06/17] conf/529 Please put mountd's '-n' flag into /etc/sysconfig [1995/06/18] misc/530 Failed install from SCSI tape [1995/06/18] kern/532 buslogic bt 445S hangups wit FreeBSD 2.0.5 [1995/06/20] docs/536 No copyrights in usr/src/lib/libc/stdtime [1995/06/20] bin/537 FSCK Fails [1995/06/22] kern/540 ed0 is loosing packets on input [1995/06/22] i386/541 Alternate Reset method by unmapping ALSO broken [1995/06/23] docs/546 Shared memory manual pages [1995/06/23] misc/556 Bug in /etc/rc [1995/06/23] bin/557 ar utility exausts all available file descriptors [1995/06/26] kern/565 [1995/06/27] bin/569 Slattach behaviour inconsistant [1995/07/02] kern/579 sio: RS_IBUFSIZE at 256 bytes serial lines loose dat [1995/07/02] bin/580 xntpd doesn't work with Tobit DCF77 receiver. [1995/07/02] bin/581 iijppp may hang indefinitely [1995/07/02] misc/583 rlogin over PPP does not handle input [1995/07/03] kern/586 Timeouts on SCSI Adaptec 2940 [1995/07/04] kern/587 if_le hangs on OACTIVE with 2k buffer [1995/07/04] kern/588 Configuration of DEC ethernet cards not possible [1995/07/04] conf/589 /etc/rc should eval amd ${amdflags} [1995/07/05] kern/590 pager input errors on NCR SCSI 486 mainboard [1995/07/05] bin/591 SPAP request REJexted in stead of NAKed [1995/07/05] bin/594 "mkdir -p some/path/" fails to create last path comp [1995/07/06] i386/596 and conflict with _POSIX_SOURCE [1995/07/06] ports/597 libxview.so.3.2 seems to include reference to cfree( [1995/07/07] bin/599 pkg_add does not stop if dependencies are missing [1995/07/08] i386/602 disklabel : changes to cylinder details not saved [1995/07/09] misc/605 [1995/07/10] gnu/608 `send-pr' inserts wrong default for ">Release:" fiel [1995/07/13] kern/611 WIDE-dhcp doesn't work with FreeBSD-2.0 bpf [1995/07/14] bin/613 send-pr reports wrong release [1995/07/14] kern/614 SCSI tape timeout for forward space file is too shor [1995/07/14] ports/617 screen(1) locks up tty under pcvt or scons [1995/07/19] bin/624 pkg_manage doesn't show directory symlinks [1995/07/19] kern/625 keyboard lockups during boot and forever after [1995/07/20] kern/627 vidcontrol causes crash when booted with sc0 disable [1995/07/20] kern/629 user mode ppp dies when sending [1995/07/21] i386/631 if_ix does not support bpf, nor does it appear to su [1995/07/24] docs/633 no manpage for ndbm [1995/07/26] bin/635 makefile for sbin/route doesn't make keywords.h when [1995/07/27] kern/637 If used heavily, ahc will crash, with disk timeouts [1995/07/29] kern/638 Transmitted packets not passed to bpf in if_le.c [1995/07/29] misc/641 [1995/08/01] docs/646 vmstat man page out of date [1995/08/01] kern/647 Sound cards fail to work [1995/08/01] bin/648 Formatted output is not converted correctly [1995/08/01] bin/649 tcpdump(1) doesn't show AppleTalk packets correctly [1995/08/02] gnu/650 Current flex is outdated [1995/08/03] kern/652 Multiple addresses on one interface interacts badly [1995/08/04] kern/653 ftp or kernel - multiple transfers when sendport dis [1995/08/05] gnu/655 ld -r of shared objects worked in 1.1.5, not in 2.0. [1995/08/07] bin/658 ifconfig alias has to be separately given [1995/08/07] bin/660 /bin/sh has problem with redirection. [1995/08/07] bin/661 Hercules is not capable of having a ISO-Latin1 Scree [1995/08/08] docs/663 newfs man page refers to format(8) [1995/08/08] pending/664 pkg_add(1) man page doesn't reference pkg_manage(1) [1995/08/08] ports/665 pkg_manage can't handle installing dvips [1995/08/08] gnu/666 The ldconfig program in SNAP wasn't good [1995/08/08] ports/667 When attempting to install fvwm, could not. [1995/08/11] gnu/672 Nor all ph headers get created [1995/08/11] pending/673 /bin/sh + inn1.4 innwatch going belly up [1995/08/11] kern/674 quad speed cdrom not being found [1995/08/11] bin/675 make does unnecessary rebuilds [1995/08/12] bin/676 mv -i [1995/08/12] kern/677 X gets a bus error when calling mmap() [1995/08/13] kern/679 chown(2) ignores set-user-id and set-group-id bits f [1995/08/13] bin/680 2.0.5's tip using termios doesn't act the way it did [1995/08/13] docs/681 bad description of Adaptec 2842 in LINT [1995/08/14] bin/683 cron(8) [1995/08/14] docs/686 SIGSYS documented badly [1995/08/14] kern/688 Page fault: supervisor write, page not present [1995/08/15] ports/690 X11 install targets unfriendly [1995/08/15] pending/691 [1995/08/15] i386/692 My modem is not found if my external cache is disabl [1995/08/16] bin/693 `pkg_add' is umask-sensitive [1995/08/16] bin/694 No include file in rpcgen output [1995/08/16] kern/695 cat B > C ; cmp B C can fail! [1995/08/17] bin/696 missing backslash at line 47 of usr.sbin/named/tree. [1995/08/17] misc/697 "make -DCLOBBER" is broken [1995/08/17] ports/698 3 small errors in lynx-2.4.2 [1995/08/18] ports/699 rsynth should not depend on auvoxware [1995/08/18] kern/700 The comments in /sys/net/in.h are confusing [1995/08/21] bin/701 pppd fails to set proxy arp when requested [1995/08/21] pending/703 [1995/08/22] bin/706 increased root DNS traffic and long latencies for r- [1995/08/23] kern/707 Too few printf args [1995/08/27] pending/710 mpeg_play outdated [1995/08/29] pending/711 /etc/magic not installed [1995/08/29] pending/712 problem report [1995/08/29] bin/715 ls gives weird tabular form [1995/08/31] bin/716 W returns wrong results at login [1995/09/01] misc/717 ft.c attach fail on my Mountain tape drive [1995/09/02] bin/718 pkg_add incorrectly prints an error message [1995/09/03] ports/719 TK port doesn't respond to buttons [1995/09/03] pending/720 request for a customer id [1995/09/15] bin/722 Off-by-one error in wbkgd() in ncurses This is the list of problem reports already analyzed: [1994/12/01] kern/35 mount -t union -o -b : lower layer not seen by shell [1995/01/21] misc/162 routes seem to accumulate under 2.0-950112-SNAP [1995/02/14] kern/215 SNAP-950112 crashed with "panic: page fault" [1995/03/20] kern/260 msync and munmap don't bother to update mod times [1995/03/20] docs/264 There are no manual pages for the forms library. [1995/03/22] kern/267 NFS code gives error messages, systems jams for a fe [1995/05/09] bin/392 Simultaneous cp and ls of files on dos f/s hangs pro [1995/06/21] docs/538 MAP_FILE not mentioned in mmap man page. [1995/07/05] ports/593 ldconfig -m [PDT/08/11] bin/671 No quot available. [PDT/09/15] bin/721 ar(8) doesn't like its own output /* EOF -- this list has not been truncated */ From owner-freebsd-bugs Sat Sep 16 04:30:11 1995 Return-Path: owner-bugs Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA18314 for bugs-outgoing; Sat, 16 Sep 1995 04:30:11 -0700 Received: (from gnats@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA18294 for freebsd-bugs; Sat, 16 Sep 1995 04:30:08 -0700 Date: Sat, 16 Sep 1995 04:30:08 -0700 From: GNU GNATS Message-Id: <199509161130.EAA18294@freefall.freebsd.org> To: freebsd-bugs Subject: Summary of Problem Reports Sender: owner-bugs@FreeBSD.org Precedence: bulk Number of currently open reports: 283 Number of curently analyzed reports: 11 From owner-freebsd-bugs Sat Sep 16 17:27:39 1995 Return-Path: owner-bugs Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id RAA08455 for bugs-outgoing; Sat, 16 Sep 1995 17:27:39 -0700 Received: from mail.zrz.TU-Berlin.DE (mail.zrz.TU-Berlin.DE [130.149.4.15]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id RAA08448 for ; Sat, 16 Sep 1995 17:27:36 -0700 Received: from marie.physik.tu-berlin.de by mail.zrz.TU-Berlin.DE with SMTP (PP); Sun, 17 Sep 1995 02:27:00 +0200 Received: (from jan@localhost) by marie.physik.tu-berlin.de (8.6.9/8.6.9) id CAA23088 for bugs@freebsd.org; Sun, 17 Sep 1995 02:26:58 +0200 From: Jan Riedinger Message-Id: <199509170026.CAA23088@marie.physik.tu-berlin.de> Comments: MTA at marie.physik.TU-Berlin.DE is now sendmail v8. Subject: 950726-SNAP: broken include files To: bugs@freebsd.org Date: Sun, 17 Sep 1995 02:26:54 +0100 (MET DST) X-Mailer: ELM [version 2.4 PL22] MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Content-Length: 205 Sender: owner-bugs@freebsd.org Precedence: bulk If you try to compile a program, which includes before , and use the option "-ansi -posix" you will get many errors. If you include before all works fine. Jan From owner-freebsd-bugs Sat Sep 16 17:33:42 1995 Return-Path: owner-bugs Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id RAA09047 for bugs-outgoing; Sat, 16 Sep 1995 17:33:42 -0700 Received: from mail.zrz.TU-Berlin.DE (mail.zrz.TU-Berlin.DE [130.149.4.15]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id RAA09028 for ; Sat, 16 Sep 1995 17:33:38 -0700 Received: from marie.physik.tu-berlin.de by mail.zrz.TU-Berlin.DE with SMTP (PP); Sun, 17 Sep 1995 02:33:21 +0200 Received: (from jan@localhost) by marie.physik.tu-berlin.de (8.6.9/8.6.9) id CAA23134 for bugs@freebsd.org; Sun, 17 Sep 1995 02:33:18 +0200 From: Jan Riedinger Message-Id: <199509170033.CAA23134@marie.physik.tu-berlin.de> Comments: MTA at marie.physik.TU-Berlin.DE is now sendmail v8. Subject: 950726-SNAP: flock To: bugs@freebsd.org Date: Sun, 17 Sep 1995 02:33:15 +0100 (MET DST) X-Mailer: ELM [version 2.4 PL22] MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Content-Length: 244 Sender: owner-bugs@freebsd.org Precedence: bulk The man page for flock is slightly broken. Under SYNOPSIS you find: #include but the constants LOCK_SH, etc, are only defined in fcntl.h BTW: It would be nice, if flock could detect a deadlock and return an error for it.