From owner-freebsd-bugs Sun Dec 21 01:12:03 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id BAA19097 for bugs-outgoing; Sun, 21 Dec 1997 01:12:03 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id BAA19069; Sun, 21 Dec 1997 01:11:57 -0800 (PST) (envelope-from se@FreeBSD.org) From: Stefan Esser Received: (from se@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id BAA06554; Sun, 21 Dec 1997 01:08:41 -0800 (PST) Date: Sun, 21 Dec 1997 01:08:41 -0800 (PST) Message-Id: <199712210908.BAA06554@freefall.freebsd.org> To: se@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG, se@FreeBSD.ORG Subject: Re: i386/5277 Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: installation panic Responsible-Changed-From-To: freebsd-bugs->se Responsible-Changed-By: se Responsible-Changed-When: Sun Dec 21 01:06:20 PST 1997 Responsible-Changed-Why: I'll look into this. From owner-freebsd-bugs Sun Dec 21 07:40:04 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id HAA08480 for bugs-outgoing; Sun, 21 Dec 1997 07:40:04 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id HAA08471; Sun, 21 Dec 1997 07:40:02 -0800 (PST) (envelope-from gnats) Resent-Date: Sun, 21 Dec 1997 07:40:02 -0800 (PST) Resent-Message-Id: <199712211540.HAA08471@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, cschuber@uumail.gov.bc.ca Received: (from nobody@localhost) by hub.freebsd.org (8.8.7/8.8.7) id HAA08388; Sun, 21 Dec 1997 07:39:19 -0800 (PST) (envelope-from nobody) Message-Id: <199712211539.HAA08388@hub.freebsd.org> Date: Sun, 21 Dec 1997 07:39:19 -0800 (PST) From: cschuber@uumail.gov.bc.ca To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: kern/5355: Fix for NULLFS problems Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5355 >Category: kern >Synopsis: Fix for NULLFS problems >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Dec 21 07:40:01 PST 1997 >Last-Modified: >Originator: Cy Schubert >Organization: ITSD, Province of British Columbia >Release: 2.2.2R (Will work on other releases too) >Environment: FreeBSD cwsys 2.2.2-RELEASE FreeBSD 2.2.2-RELEASE #0: Fri Dec 19 07:02:49 PST 1997 root@cwsys:/opt/usr_src/sys/compile/CWSYS i386 >Description: kern/5121, bin/4491, bin/5154 >How-To-Repeat: See above listed problems. >Fix: cwsys# cat /opt/archives-3/usermods/nullfs_panic_fix.usermod --- src/sys/vm/vnode_pager.c.orig2 Sun Dec 7 13:11:03 1997 +++ src/sys/vm/vnode_pager.c Fri Dec 19 06:30:27 1997 @@ -231,10 +231,12 @@ blocksperpage = 0; if (pagesperblock > 0) { reqblock = pindex / pagesperblock; - } else { + } else if (bsize > 0) { blocksperpage = (PAGE_SIZE / bsize); reqblock = pindex * blocksperpage; - } + } else + return FALSE; + err = VOP_BMAP(vp, reqblock, (struct vnode **) 0, &bn, after, before); if (err) cwsys# exit >Audit-Trail: >Unformatted: From owner-freebsd-bugs Sun Dec 21 09:50:05 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id JAA14613 for bugs-outgoing; Sun, 21 Dec 1997 09:50:05 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id JAA14594; Sun, 21 Dec 1997 09:50:01 -0800 (PST) (envelope-from gnats) Date: Sun, 21 Dec 1997 09:50:01 -0800 (PST) Message-Id: <199712211750.JAA14594@hub.freebsd.org> To: freebsd-bugs Cc: From: Bruce Evans Subject: Re: kern/5355: Fix for NULLFS problems Reply-To: Bruce Evans Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR kern/5355; it has been noted by GNATS. From: Bruce Evans To: cschuber@uumail.gov.bc.ca, freebsd-gnats-submit@FreeBSD.ORG Cc: Subject: Re: kern/5355: Fix for NULLFS problems Date: Mon, 22 Dec 1997 04:41:45 +1100 >>Fix: >cwsys# cat /opt/archives-3/usermods/nullfs_panic_fix.usermod >--- src/sys/vm/vnode_pager.c.orig2 Sun Dec 7 13:11:03 1997 >+++ src/sys/vm/vnode_pager.c Fri Dec 19 06:30:27 1997 >@@ -231,10 +231,12 @@ > blocksperpage = 0; > if (pagesperblock > 0) { > reqblock = pindex / pagesperblock; >- } else { >+ } else if (bsize > 0) { > blocksperpage = (PAGE_SIZE / bsize); > reqblock = pindex * blocksperpage; >- } >+ } else >+ return FALSE; >+ I think bsize is supposed to be > 0 here. Lots of other places depend on vp->v_mount->mnt_stat.f_iosize being reasonable. nullfs and some other file systems (portal and umapfs at least) just don't initialize most of mnt_stat (except by bzeroing it). This untested fix for nullfs was obtained from union[fs]. diff -c2 null_vfsops.c~ null_vfsops.c *** null_vfsops.c~ Mon Oct 13 21:46:00 1997 --- null_vfsops.c Mon Dec 22 04:32:11 1997 *************** *** 199,202 **** --- 199,203 ---- &size); bzero(mp->mnt_stat.f_mntfromname + size, MNAMELEN - size); + (void)nullfs_statfs(mp, &mp->mnt_stat, p); #ifdef NULLFS_DIAGNOSTIC printf("nullfs_mount: lower %s, alias at %s\n", Bruce From owner-freebsd-bugs Sun Dec 21 14:00:03 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id OAA00838 for bugs-outgoing; Sun, 21 Dec 1997 14:00:03 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id OAA00832; Sun, 21 Dec 1997 14:00:02 -0800 (PST) (envelope-from gnats) Resent-Date: Sun, 21 Dec 1997 14:00:02 -0800 (PST) Resent-Message-Id: <199712212200.OAA00832@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, dillon@backplane.com Received: from apollo.backplane.com (apollo.backplane.com [207.33.240.2]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id NAA00543 for ; Sun, 21 Dec 1997 13:56:34 -0800 (PST) (envelope-from dillon@backplane.com) Received: (root@localhost) by apollo.backplane.com (8.8.8/8.6.5) id NAA00699; Sun, 21 Dec 1997 13:56:29 -0800 (PST) Message-Id: <199712212156.NAA00699@apollo.backplane.com> Date: Sun, 21 Dec 1997 13:56:29 -0800 (PST) From: Matthew Dillon Reply-To: dillon@backplane.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: i386/5359: Soundblaster16 / general audio fixes Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5359 >Category: i386 >Synopsis: diffs to fix problems, add flexibility to i386/isa/sound/* >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Dec 21 14:00:01 PST 1997 >Last-Modified: >Originator: Matthew Dillon >Organization: >Release: FreeBSD 3.0-CURRENT i386 >Environment: FreeBSD-current running on ASUS PPro 200 motherboard, soundblaster 16 >Description: The default write timeout of 2 seconds is too low, I've upped it from 2 to 5 seconds. I'm not sure why, but I was getting timeouts trying to start realaudio's sound player... there would be a little smidgen of sound and then nothing. Upping the timeout parameter fixed the problem. The problem occured prior to my other hacks. Enhancements: I've added (partially tested) support for large DMA buffers. The default maximum of 64K is just not big enough for 44Khz output, especially in stereo. I have made DSP_BUFFSIZE programmable and overrideable in the kernel config, e.g.: options "DSP_BUFFSIZE=131072" And added code to ensure that individual DMA's are not over 64K each. This has significantly improved the ability of my system to play mpeg3 audio off a hard disk even while the system is heavily loaded doing other things. e.g. one second of 44.1kHz @ 16 bits stereo requires 88KB of buffer space. The standard 32K/64K is just not enough to deal with disk latency if the disk is doing other things at the same time. I've only tested the buffering with sound output and the quake II demo (linux binary running on FreeBSD). >How-To-Repeat: >Fix: diff included below: Index: sound/dmabuf.c =================================================================== RCS file: /src/FreeBSD-CVS/ncvs/src/sys/i386/isa/sound/dmabuf.c,v retrieving revision 1.30 diff -r1.30 dmabuf.c 101a102,108 > * > * In high-datarate applications, buffsize may not be large enough > * to give enough of a margin, even with double buffering, but > * buffsize is also limited to the dma count. What we do is allow > * buffsize (DSP_DMABUFFSIZE) to be overriden with a kernel > * config option and to be made much, much larger, but still limit > * the DMA transaction to something the isa dma can handle. 105c112 < while (bsz > sz) --- > while (bsz > sz && bsz > DSP_MAXDMABUFFSIZE) 490c497 < timeout = 2 * hz; --- > timeout = 5 * hz; 993c1000 < timeout = 2 * hz; --- > timeout = 5 * hz; 1066a1074 > u_long flags = splhigh(); 1076a1085 > splx(flags); 1163a1173 > u_long flags = splhigh(); 1170a1181 > splx(flags); 1196a1208 > u_long flags = splhigh(); 1203a1216 > splx(flags); Index: sound/local.h =================================================================== RCS file: /src/FreeBSD-CVS/ncvs/src/sys/i386/isa/sound/local.h,v retrieving revision 1.28 diff -r1.28 local.h 122a123 > #ifndef DSP_BUFFSIZE /* allow config option to override */ 123a125,126 > #endif > #define DSP_MAXDMABUFFSIZE 32768 Index: sound/sb16_dsp.c =================================================================== RCS file: /src/FreeBSD-CVS/ncvs/src/sys/i386/isa/sound/sb16_dsp.c,v retrieving revision 1.27 diff -r1.27 sb16_dsp.c 252c252 < if (audio_devs[dev]->flags & DMA_AUTOMODE && intrflag && cnt==dsp_count) { --- > if ((audio_devs[dev]->flags & DMA_AUTOMODE) && intrflag && cnt==dsp_count) { Index: sound/sb_dsp.c =================================================================== RCS file: /src/FreeBSD-CVS/ncvs/src/sys/i386/isa/sound/sb_dsp.c,v retrieving revision 1.34 diff -r1.34 sb_dsp.c 994a995 > sb_reset_dsp(); /* clear prior garbage (e.g. soft reset) */ 1008,1009c1009,1010 < } else < DELAY(20); --- > } > DELAY(20); Index: sound/soundcard.c =================================================================== RCS file: /src/FreeBSD-CVS/ncvs/src/sys/i386/isa/sound/soundcard.c,v retrieving revision 1.59 diff -r1.59 soundcard.c 470a471 > int boundary = audio_devs[dev]->buffsize; 471a473,485 > /* > * boundary must be at least 65536, and >= buffsize. Buffers > * > 65536 will be cut up in powers of two into chunks no larger > * then 65536 and so each individual buffer is still guarenteed > * to be <= 65536 and on a 65536 boundary. > */ > > boundary = 65536; > > while (boundary < audio_devs[dev]->buffsize) > boundary <<= 1; > > #ifdef NOTDEF 473a488,490 > #endif > tmpbuf = contigmalloc(audio_devs[dev]->buffsize, M_DEVBUF, M_NOWAIT, > 0ul, 0xfffffful, 1ul, boundary); 479c496 < 2 * (int) audio_devs[dev]->buffsize); --- > (int) audio_devs[dev]->buffsize); >Audit-Trail: >Unformatted: From owner-freebsd-bugs Sun Dec 21 17:42:19 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id RAA14633 for bugs-outgoing; Sun, 21 Dec 1997 17:42:19 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id RAA14615; Sun, 21 Dec 1997 17:41:37 -0800 (PST) (envelope-from bde@zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.6.9) id MAA01615; Mon, 22 Dec 1997 12:37:13 +1100 Date: Mon, 22 Dec 1997 12:37:13 +1100 From: Bruce Evans Message-Id: <199712220137.MAA01615@godzilla.zeta.org.au> To: cschuber@uumail.gov.bc.ca, freebsd-bugs@hub.freebsd.org Subject: Re: kern/5212: nullfs crashes under several situations Cc: dyson@freebsd.org Sender: owner-freebsd-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > I haven't had much chance to look at this (about 1/2 hour this morning), > but my tests show that tyhe nullfs problems are caused by a divide by > zero error at line 227 of vnode_pager.c (line 235 in the 2.2.2 version > of this code). My test was to ftp a file on a nullfs mounted filesystem > on an (not anonymous) ftp server. While testing my fix for this, I noticed that the file blocks were not freed when the file was unlinked in the upper (non-nullfs) layer after the file had been ftp'ed. Possible fix: --- diff -c2 vfs_subr.c~ vfs_subr.c *** vfs_subr.c~ Sat Dec 20 03:37:20 1997 --- vfs_subr.c Mon Dec 22 11:36:50 1997 *************** *** 957,960 **** --- 945,950 ---- if (VSHOULDFREE(vp)) vfree(vp); + (void) vnode_pager_uncache(vp, p); + /* * If we are doing a vput, the node is already locked, and we must --- I think vnode_pager_uncache() should only be called [somewhere near] here when the vnode goes away (on the disk) - calling it for unlink() and rename() is bogus because these syscalls only remove the inode in the usual case. Bruce From owner-freebsd-bugs Sun Dec 21 18:40:04 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id SAA18607 for bugs-outgoing; Sun, 21 Dec 1997 18:40:04 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id SAA18574; Sun, 21 Dec 1997 18:40:02 -0800 (PST) (envelope-from gnats) Date: Sun, 21 Dec 1997 18:40:02 -0800 (PST) Message-Id: <199712220240.SAA18574@hub.freebsd.org> To: freebsd-bugs Cc: From: Kazutaka YOKOTA Subject: Re: kern/4454: X drops characters/locks up keyboard when run from `xdm' Reply-To: Kazutaka YOKOTA Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR kern/4454; it has been noted by GNATS. From: Kazutaka YOKOTA To: atrens@nortel.ca Cc: freebsd-gnats-submit@freebsd.org, yokota@zodiac.mech.utsunomiya-u.ac.jp Subject: Re: kern/4454: X drops characters/locks up keyboard when run from `xdm' Date: Mon, 22 Dec 1997 11:39:26 +0900 >>Number: 4454 >>Category: kern >>Synopsis: X drops characters/locks up keyboard when run from `xdm' [snip] >>Release: 2.2.2 and 3.0-SNAP-Aug08 with Xfree86 3.3 and 3.3.1 >>Environment: >3.0 August 08 SNAP. Also seen with 2.2.2. Tried with XFree86 3.3 and >3.3.1. >>Description: > >Problems were seen on a ASUS-TX97 motherboard with 430TX chipset. > >Previously I was running on an ASUS T2P4 motherboard with a 430HX >chipset and didn't seeany of these problems... > >Running X11 from an `xdm' >When `xlock -inroot -mode galaxy' is running in the root window, or >some other graphics intensive stuff is running, xterms, rxvts, and >even the xdm login window drop characters and eventually lock up the >keyboard. When the keyboard is locked up, all the keyboard leds turn >off. Pressing caps-lock, or num-lock doesn't cause the corresponding >leds to illuminate. The mouse, disk and other things seem fine. I >can open new windows and cut and paste between them... just no keyboard >i/o :( . > >When I run X from a `startx' everything works perfectly. > >>How-To-Repeat: > >Need an ASUS TX97 motherboard with 430TX chipset. > >Need FreeBSD-2.2.2 or 3.0-SNAP-Aug08. > >Need XFree86 3.3 or 3.3.1 > >Run X from an `xdm'. Start `xlock -inroot -mode galaxy' or some similar >graphics-intensive thing in the root window. Open an xterm and start >typing away until the keyboard leds go 'off' and keyboard is locked up. >Note: if you run two or more xlocks, the keyboard lockup will occur >proportionately quicker. >>Fix: > >Don't use xdm. Use startx ( this isn't a fix for everyone I guess ). Looking at your PR again, I start wondering if this is something to do with power management of the motherboard. You see, keyboard LESs go off when lock-up happens. It's difficult to imagine why either the X server or the console driver automatically do so (the console driver syscons certainly doesn't do that). Besides the X server is working properly sans keyboard I/O. I suspect that power to the keyboard is somehow cut and the keyboard stops working. Aside from the possibilty of hardware problems, it must be power management function in the mother board BIOS which is turning off the keyboard interface. How is your power management set up in BIOS? What do you think? Kazu yokota@freebsd.org From owner-freebsd-bugs Sun Dec 21 23:43:16 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id XAA05673 for bugs-outgoing; Sun, 21 Dec 1997 23:43:16 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id XAA05658; Sun, 21 Dec 1997 23:43:07 -0800 (PST) (envelope-from charnier@FreeBSD.org) From: Philippe Charnier Received: (from charnier@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id XAA00143; Sun, 21 Dec 1997 23:39:43 -0800 (PST) Date: Sun, 21 Dec 1997 23:39:43 -0800 (PST) Message-Id: <199712220739.XAA00143@freefall.freebsd.org> To: tom@sdf.com, charnier@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/5310 Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Bug in ep(4) manpage State-Changed-From-To: open-closed State-Changed-By: charnier State-Changed-When: Sun Dec 21 23:38:16 PST 1997 State-Changed-Why: Suggested change applied in rev 1.7. From owner-freebsd-bugs Mon Dec 22 07:00:04 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id HAA26893 for bugs-outgoing; Mon, 22 Dec 1997 07:00:04 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id HAA26877; Mon, 22 Dec 1997 07:00:02 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 22 Dec 1997 07:00:02 -0800 (PST) Resent-Message-Id: <199712221500.HAA26877@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, akm@sneaker.net.au Received: from marty.sneaker.net.au (root@marty.sneaker.net.au [203.30.3.4]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id GAA26661 for ; Mon, 22 Dec 1997 06:54:50 -0800 (PST) (envelope-from akm@marty.sneaker.net.au) Received: (from root@localhost) by marty.sneaker.net.au (8.8.7/8.8.5) id BAA01511; Tue, 23 Dec 1997 01:56:23 +1100 (EST) Message-Id: <199712221456.BAA01511@marty.sneaker.net.au> Date: Tue, 23 Dec 1997 01:56:23 +1100 (EST) From: akm@sneaker.net.au Reply-To: akm@sneaker.net.au To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: kern/5362: mount incorrectly reports / as an NFS export Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5362 >Category: kern >Synopsis: mount incorrectly reports / as an NFS export >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 22 07:00:01 PST 1997 >Last-Modified: >Originator: Andrew Milton >Organization: Sneaker Net >Release: FreeBSD 3.0-971006-SNAP i386 >Environment: P133 (also on P233MMX) Adaptec PCI 2940 Ultra Fast Wide Busmaster Adapter 48 Mb RAM 3 x 2.1 IBM Ultra Fast Wide disks. 1 x NEC 3x Speed SCSI CDROM >Description: mount incorrectly reports / as being NFS exported when /cdrom is present in /exports but has not yet been mounted. This tends to scare people until they realise what has gone wrong :-) NFS mounting / is not possible. after mounting /cdrom mount reports correct results. after umounting /cdrom, mount reports correct results from that point forward. >How-To-Repeat: I have this in my /etc/exports: /export/ftp/FreeBSD/3.0-971006-SNAP /cdrom -alldirs -mapall=nobody I am also sharing /cdrom, and /export/dos, and /home/* via samba root@marty~# mount /dev/sd0a on / (NFS exported, local) /dev/sd2s1e on /export (NFS exported, local) /dev/sd1s1e on /home (local) /dev/sd0s1f on /usr (local) /dev/sd0s1e on /var (local) procfs on /proc (local) root@marty~# mount /cdrom root@marty~# mount /dev/sd0a on / (local) /dev/sd2s1e on /export (NFS exported, local) /dev/sd1s1e on /home (local) /dev/sd0s1f on /usr (local) /dev/sd0s1e on /var (local) procfs on /proc (local) /dev/cd0a on /cdrom (NFS exported, local, read-only) root@marty~# umount /cdrom root@marty~# mount /dev/sd0a on / (local) /dev/sd2s1e on /export (NFS exported, local) /dev/sd1s1e on /home (local) /dev/sd0s1f on /usr (local) /dev/sd0s1e on /var (local) procfs on /proc (local) >Fix: Unknown. >Audit-Trail: >Unformatted: From owner-freebsd-bugs Mon Dec 22 10:08:24 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id KAA11695 for bugs-outgoing; Mon, 22 Dec 1997 10:08:24 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id KAA10702 for freebsd-bugs@freebsd.org; Mon, 22 Dec 1997 10:00:59 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 22 Dec 1997 10:00:59 -0800 (PST) Message-Id: <199712221800.KAA10702@hub.freebsd.org> From: FreeBSD bugmaster To: FreeBSD bugs list Subject: Current problem reports Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk 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 Work on the problem has been postponed. This happens if a timely solution is not possible or is not cost-effective at the present time. The PR continues to exist, though a solution is not being actively sought. 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 [1995/02/14] kern/216 davidg /kernel: panic: ffs_alloccg: map corrupte a [1996/01/22] kern/965 bde 2.0.5: system crashes daily because of "m o [1996/04/06] kern/1121 dyson System crashes on boot up just after the o [1996/05/07] kern/1177 dyson Machine hangs with message "vm_fork: no p o [1996/06/05] kern/1293 brian Fatal trap 12: page fault while in kernel a [1996/07/15] bin/1387 davidn Group file errors cause absolute havoc a [1996/08/09] kern/1487 bde bug in exec(2) o [1996/09/11] kern/1599 panic: locking against myself s [1996/09/13] conf/1608 FreeBSD's bug tracking system does not re o [1996/09/30] kern/1698 sup from around 21:51 GMT 28th very unsta o [1996/10/08] kern/1744 run queue or proc list smashed 4 times in o [1996/10/13] kern/1790 access to /dev/kmem panics system f [1996/10/28] kern/1919 se access to files/directories fails, gives o [1996/11/01] kern/1940 TCP doesn't time out of FIN_WAIT_1 and fl o [1996/11/29] kern/2121 MAXBSIZE in param.h causes kernel panic i o [1996/12/14] i386/2218 cy.c XON/XOFF handling crashes kernel 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/01/04] kern/2371 gibbs SCSI disk corruption o [1997/02/11] kern/2717 Panic with daily script (find) o [1997/02/14] bin/2740 wpaul root-fs full erases password table ! o [1997/02/21] misc/2795 Cyclades 8YO -- Not working under 2.1.6-S o [1997/03/04] kern/2877 Fatal Trap 12: page fault while in kernel o [1997/03/05] kern/2890 System panic after kernel compiled for 12 o [1997/03/08] kern/2923 panic: vm_fault: fault on nofault entry, o [1997/03/13] kern/2980 2.2 crashes after accessing DAT-tape. bot o [1997/03/15] kern/3000 Kernel Panic in 2.2-CURRENT Kernel o [1997/03/17] kern/3017 panic: page fault as of March 11th v2.2 o [1997/03/23] misc/3070 Cannot do post install mods to UNIX from o [1997/03/23] kern/3072 Kernel Page Fault During Install of 2.1.7 o [1997/03/25] kern/3103 vi large_file --> reboot without panic o [1997/03/30] kern/3150 Cyrix 6x86L-P200+ crashes w/ page fault o [1997/04/08] kern/3234 ipfilter.shar - integration complete o [1997/04/12] kern/3267 dyson mtime/ctime sometimes updated when a prog o [1997/04/28] kern/3404 frequent kernel panics o [1997/05/01] i386/3462 yokota using a PS/2 mouse causes kernel trap in o [1997/05/12] misc/3586 The boot.flp file is too large to image t o [1997/05/13] kern/3594 EAGAIN and garbage data when reading sock o [1997/05/16] kern/3609 fs on remote host is mounted via NFS, rec o [1997/05/21] bin/3650 Ypserv dumps core randomly. o [1997/05/23] kern/3671 SCSI tape drive with AHA 2940 locks up sy o [1997/05/24] kern/3674 NFS in 2.2 RELEASE hangs. o [1997/05/27] kern/3696 kernel panic during wd hard disk probe if o [1997/05/27] misc/3700 FPE error in "normal" math code o [1997/05/30] kern/3721 kernel panic with netatalk o [1997/06/01] kern/3752 NFS dirs under -current still have proble o [1997/06/01] kern/3753 "make" hangs when building in an NFS dir o [1997/06/02] kern/3761 Inlel EtherExpress pro/100B more than on o [1997/06/16] kern/3887 fxp driver looses packets o [1997/06/17] i386/3895 False FPE (floating point exception) sign o [1997/06/25] kern/3949 sos The WD controller probe can fail when it o [1997/06/26] misc/3959 files in /usr/local/etc are randomly beco o [1997/07/02] bin/4018 Will not install in 2nd partition of my C o [1997/07/03] kern/4021 Local mount of a local NFS exported direc o [1997/07/10] kern/4074 Kernel panics when accessing a ccd device o [1997/07/11] kern/4076 Adaptec 2940 and non-wide devices o [1997/07/31] kern/4200 "vm_fault: fault on nofault entry" when r 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 f [1997/08/13] kern/4301 fenner adding a default route lags all network f o [1997/08/17] kern/4328 Degenerate network performance 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/09/03] ports/4458 sanpei Japanese MH's packf command dumps core o [1997/09/07] bin/4491 combination of null-FS , NFS and chroot c f [1997/09/24] kern/4619 ix0: ifconfig causes kernel panic o [1997/09/25] ports/4626 torstenb inn port, active file contains control ch o [1997/09/26] kern/4633 Software unstability under 2.2-STABLE (as o [1997/09/29] kern/4653 In v2.2.2, install fails with "cannot cre o [1997/10/01] kern/4673 Two panics, now crash dumps, always in re o [1997/10/03] kern/4684 crash on very heavy disk activity. o [1997/10/06] kern/4713 dfr NFS inconsistencies resulting from change o [1997/10/06] bin/4714 aautomatic AMD mounts fail on first try, f [1997/10/13] bin/4761 fsuk dumps core o [1997/10/14] kern/4764 gibbs adaptec driver in 2.2-stable causes timeo o [1997/10/16] ports/4787 jfitz www/p5-Apache port is out of date o [1997/10/17] kern/4793 Boot Floppy Kernel panics on boot o [1997/10/20] kern/4813 ed0 (SMC Elite 16) won't work o [1997/10/24] kern/4841 de driver still broken in 2.2.5 o [1997/10/24] kern/4844 VM lookup, endless loop in vm_map_lookup_ 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/10/30] i386/4902 Please add support for Promise Ultra33 UD o [1997/10/30] kern/4903 Network Speed Glacial using 3Com Etherlin o [1997/10/31] i386/4906 yokota Using a PS/2 Mouse w/XFree86 3.9[m,s] sta o [1997/11/05] ports/4953 jfitz net/p5-Net-DNS out of date. o [1997/11/07] kern/4968 No flow control setting seems to make the o [1997/11/07] kern/4970 Spontaneous reboots with 2.2.5, AMD K6 an o [1997/11/09] kern/4995 atalk.diff.2.2 patch to 2.2.5-RELEASE bre o [1997/11/10] kern/4996 NFS crash, possibly related to file bigge o [1997/11/15] bin/5053 Closing xterm leaves /bin/sh sucking 100% o [1997/11/20] kern/5117 panic: biodone: buffer not busy o [1997/11/23] kern/5130 Kernel panic GPF imediatly on loading ker o [1997/11/24] bin/5139 portmap does not find interfaces correctl o [1997/11/24] kern/5140 very early kernel panic (bios32 detection o [1997/11/25] bin/5145 no home directory on NFS mounted partitio o [1997/11/25] bin/5148 mode of file and access on NFS mounted p o [1997/11/26] bin/5154 NULL_FS crash system with large traffic o [1997/12/04] i386/5223 mount_msdos /dev/fd0.1440 /mnt and failur o [1997/12/15] kern/5305 access permission on foreign disk fails o [1997/12/20] kern/5350 simple csh script panics kernel o [1997/12/21] kern/5355 Fix for NULLFS problems 107 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/04/01] kern/291 se PCI devices still probe/attach after bein o [1995/05/16] kern/425 wollman arp entries not getting removed when inte a [1995/06/17] kern/527 dufault dump causes assertion in ncr.c o [1995/06/23] kern/546 pci_bus_config() does not init parent poi o [1995/07/02] kern/579 bde sio: RS_IBUFSIZE at 256 bytes serial line s [1995/07/21] i386/631 if_ix does not support bpf, nor does it a s [1995/07/29] kern/638 Transmitted packets not passed to bpf in f [1995/08/11] gnu/672 Nor all ph headers get created f [1995/09/20] kern/730 gibbs 3Com 3C5x9 probe problem o [1995/10/18] bin/786 wpaul Problem with NIS and large group maps o [1995/11/12] kern/820 gibbs scsi tape problems f [1995/11/16] bin/826 mpp tcpmux listener in inetd does not work o [1995/12/20] i386/906 davidg /sys/i386/boot/netboot/nb8390.com cannot o [1996/01/01] bin/926 Mounting nfs disks before starting mountd o [1996/02/12] kern/1020 .Boca 16-port board still hangs a [1996/02/17] bin/1030 steve /bin/sh does not pass environment variabl s [1996/03/06] kern/1067 panic: ufs_lock: recursive lock not expec o [1996/03/09] bin/1073 telnet -8 does not work with SunOS or Sol o [1996/03/23] kern/1098 File system corruption (2 cases) f [1996/05/14] kern/1204 umount -f after SCSI reset -> reboot o [1996/05/24] misc/1247 bde Conflicting header files f [1996/05/26] i386/1251 aha0 and bt0(eisa) conflicts again. o [1996/05/26] kern/1256 ZNYX 314 mysterously looses packets o [1996/05/28] kern/1271 phk Kernel panic using PLIP in 27/05 current o [1996/05/31] kern/1284 dyson panic: vm_page_free: freeing busy page o [1996/06/02] i386/1288 bde wdgetctlr (wd.c) return incorrect number o [1996/06/07] kern/1301 davidg DEC FDDI/PCI Adapter: halt code = 6 (DMA o [1996/06/10] kern/1308 dyson vm_page_free: wire count > 1 in 960501-SN a [1996/06/12] bin/1315 ls(1) a [1996/06/18] kern/1333 davidg free vnode isn't: another -stable coredum f [1996/07/03] bin/1364 ps(1) bugs o [1996/07/19] docs/1402 steve sh(1) manual f [1996/07/24] kern/1423 wollman route causes kernel page fault. o [1996/07/25] bin/1429 steve sh(1) and getopts f [1996/08/01] bin/1454 steve /bin/sh bug handling <<[n] FD processing a [1996/08/02] docs/1457 ache ed(1) man o [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 dyson Use of madvise may may cause bad memory m o [1996/08/22] kern/1533 dyson Machine can be panicked by a userland pro f [1996/09/05] kern/1570 Setting SHMALL > 35000 causes panic o [1996/09/14] kern/1610 dyson mmap() of unassociated memory + mlock() c o [1996/09/16] i386/1626 MUSTEK Scanner hangs NCR SCSI controller f [1996/09/18] kern/1637 mss driver causes feedback (squeal) on so o [1996/09/19] bin/1650 telnet encryption with char-mode and asci o [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/09/29] kern/1692 Page fault while in kernel modem fatal tr o [1996/10/01] bin/1702 phk installing of tcl manpages fails from mak o [1996/10/03] kern/1715 le driver non-reentrant 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/10] kern/1754 netbooted machines freeze with ifconfig a o [1996/10/13] gnu/1787 markm Diffs with Index: lines are not honored f o [1996/10/15] bin/1810 fsck -p does not check pass 0 filesystems o [1996/10/15] kern/1812 dyson 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 o [1996/10/21] kern/1856 read-only nfs mount: panic leaf should be a [1996/10/22] ports/1866 wosch popclient flushes remote mailbox even wit o [1996/10/24] kern/1880 kernel crash during boot when using 512 M o [1996/10/26] bin/1892 install(1) removes target file o [1996/10/29] bin/1927 User CPU time getting accounting as syste o [1996/11/07] bin/1973 jmg pppd uses /etc/ppp/options.tty after comm o [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 o [1996/11/13] i386/2002 sio doesn't detect com port on Compaq Con o [1996/11/14] misc/2013 'make world' fails on read-only /usr/src a [1996/11/14] kern/2014 sos Console keyboard lockup problem o [1996/11/15] bin/2016 static libtcl references symbols that are o [1996/11/15] gnu/2035 peter deque bug, local gnu changes to deque hea o [1996/11/18] kern/2053 de0 driver don't work at 100M for Compex o [1996/11/24] kern/2094 wd1: interrupt timeout: o [1996/11/26] bin/2107 problem building a system from cdrom. s [1996/12/03] kern/2142 FP mask not saved for signal handlers o [1996/12/03] kern/2144 kernel panic (page fault) running chgrp o [1996/12/08] kern/2181 2.2-ALPHA flickers/wavers part of the upp o [1996/12/10] bin/2191 syslogd stops logging after several hours o [1996/12/13] bin/2206 NIS Makefile can't manage appletalk entri o [1996/12/17] kern/2232 MSDOSFS corrupts MSDOS partitions > 500Mb o [1996/12/18] kern/2248 Mitsumi CD-ROM driver has "timeout" probl 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/25] misc/2283 ache setlocale() in libxpg4 always returns NUL o [1996/12/29] bin/2318 /usr/libexec/rlogind doesn't work after t 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/01] kern/2351 panic:timeout table full 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/08] conf/2426 At end of install, panic: Going nowhere w o [1997/01/09] bin/2430 mountd stops on loading if subnet mask is o [1997/01/09] i386/2431 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 gnats mangles sections o [1997/01/16] kern/2507 Renaming DOS directories with "mv" causes o [1997/01/18] kern/2521 kernel from 2.1.6 install CD doesn't acce o [1997/01/20] kern/2538 worm burning suddenly broken o [1997/01/20] bin/2541 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 f [1997/01/21] misc/2551 davidn limit too small for user root o [1997/01/23] kern/2569 route -iface breaks inet behaivour f [1997/01/24] kern/2570 fenner arpresolve: cant allocate llinfo o [1997/01/25] bin/2591 sh coredumps when passing an argv of a ce o [1997/01/26] bin/2597 everything stops when the new ld.so is in o [1997/01/29] misc/2614 make reinstall does not work o [1997/01/29] bin/2616 Installs very irratically from the same c o [1997/01/31] bin/2633 fsck -p in /etc/rc fails with cannot allo 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 f [1997/02/05] bin/2670 fetch fails with HTTP_PROXY 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] kern/2732 mcopy 3.0 causes kernel hang 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 f [1997/02/19] kern/2772 gibbs panic: %s:%c:%d: Target did not send an I o [1997/02/19] kern/2773 bad dir panic o [1997/02/20] misc/2784 brian userland PPP rises load to 1.00 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/02/28] bin/2832 w treats corrupted utmp as fatal error 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 dfr 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/07] ports/2918 ports Unable to pass 8+ command line arguments o [1997/03/08] kern/2919 vm_fault: fault on nofault entry, addr: f o [1997/03/09] bin/2925 non-priviledged user can crash FreeBSD!! o [1997/03/11] bin/2948 can't dump 640MB optical disks f [1997/03/11] ports/2956 ports New Port: xgospel-1.10d in ftp.freebsd.or 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 OPL3 sound off by one note o [1997/03/21] bin/3055 umount -f does not work o [1997/03/24] i386/3082 keyboard locks up unexpectedly o [1997/03/24] i386/3083 Toshiba XM-5702B ATAPI CDROM not detected o [1997/03/27] conf/3123 /stand/sysintstall does not perform to up s [1997/03/27] bin/3126 Install with mcd0 still broken. o [1997/03/28] i386/3130 Dell Latitude keyboard lock up o [1997/03/28] misc/3133 TIOCSETD error with Cyclades 8Yo o [1997/03/30] gnu/3149 patch-2.1: files possibly created in wron o [1997/03/31] bin/3158 seg faults and cannot update links using f [1997/04/01] kern/3162 2.2 kernel from mar 25th crashes on nfs s o [1997/04/01] bin/3170 vi freaks and dump core if user doesn't e f [1997/04/04] i386/3195 gibbs ahc panic o [1997/04/05] kern/3201 de0 not re-enabled after hub down o [1997/04/05] ports/3205 jmz Mtools-3.0 attempts to flock() a disk par f [1997/04/05] kern/3209 dyson 3.0-current panics on shutdown/reboot/hal 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/12] kern/3263 troubles with digiboard o [1997/04/13] kern/3278 mounting MFS uses up swap space o [1997/04/15] bin/3305 Can't do encrypted rlogin into self f [1997/04/16] bin/3307 Unable to Route to a different Class C wi o [1997/04/18] bin/3325 brian http request over ijppp hangs o [1997/04/18] kern/3327 using gdb may cause hanging processes. f [1997/04/18] kern/3328 dyson another kernel panic o [1997/04/19] kern/3351 Scsi bus timeouts in 2.1.7.1 (adaptec 294 o [1997/04/19] bin/3355 se ncrcontrol fails when -DFAILSAFE in kerne 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] misc/3460 Lots of stuff still refernces /etc/syscon o [1997/05/01] kern/3463 netstat -I packet count increase on sl0 w o [1997/05/02] kern/3468 Panic - page fault in kernel mode o [1997/05/02] gnu/3470 fail to use standart ANSI C++ string clas o [1997/05/03] bin/3478 pwd_mkdb and passwd o [1997/05/04] kern/3495 _thread_fd_table is not initialized with 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] conf/3526 Bug in config(8) mechanism o [1997/05/07] kern/3527 if_de.c doesn't recognize Kingston card p o [1997/05/08] misc/3544 Uprgade problem with schg flags 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 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/12] kern/3583 'syctl kern' dumps core when displaying c o [1997/05/13] conf/3591 parts in rc.local have no effects in rc.* o [1997/05/18] bin/3622 gethostbyname fails for file descriptors o [1997/05/19] kern/3633 description of interface flags in ep(4) m o [1997/05/20] kern/3646 kernel built with "options NETATALK" fail o [1997/05/21] kern/3661 System locked up while editing rc.conf, w o [1997/05/23] bin/3670 make fails in libc o [1997/05/25] kern/3685 panic: fdesc attr o [1997/05/29] gnu/3714 gdb -w -k /kernel /dev/mem != gdb --wcore o [1997/05/30] conf/3725 Cirrus Logic PCMCIA Controller Support o [1997/05/30] kern/3726 process hangs in 2.2-stable when working o [1997/05/30] kern/3727 SCSI II tape support broken o [1997/06/01] kern/3744 Inability to edit memory area for ed0 pre o [1997/06/01] kern/3745 Use of ed0 with buff addr of C8000 causes o [1997/06/01] conf/3750 phk Potential improvements to rc.firewall o [1997/06/02] i386/3760 Inlel EtherExpress pro/100B !!! o [1997/06/02] bin/3763 df hangs uninterruptably when nfs mount f 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/09] ports/3822 asami ports-current Xaw3d doesn't compile o [1997/06/09] kern/3827 fopen/freopen fails on some binary files. o [1997/06/13] i386/3857 bios screensaver screws up screen f [1997/06/13] bin/3862 I dont seem to get a login prompt.... 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 f [1997/06/22] kern/3925 SO_SNDLOWAT of 0 causes kernel to use 99% o [1997/06/28] misc/3980 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/01] i386/4006 panic: ahc_intr: AWAITING_MSG for an SCB o [1997/07/02] kern/4012 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/03] kern/4022 Fatal double fault using vn device o [1997/07/04] kern/4032 gibbs During recovery from scsi errors, incorre o [1997/07/04] gnu/4033 peter cvs clears default branch when adding a f s [1997/07/06] gnu/4042 gdb stackframe in static library shows no o [1997/07/06] docs/4043 man page for directory ops is misleading o [1997/07/07] ports/4050 jfitz mrtg: rateup dumps core with malloc_optio o [1997/07/09] kern/4071 Accessing /dev/rst0 causes `DMA beyond en o [1997/07/12] bin/4078 sos Typed password to log in on console and i o [1997/07/17] kern/4107 ch.c does not use bounce buffers o [1997/07/17] gnu/4111 send-pr doesn't se that Category is actua o [1997/07/17] kern/4115 SunOS NFS file has wrong owner if creator f [1997/07/19] kern/4119 brian can't connect to Win NT 4.0 RAS using MS o [1997/07/20] ports/4129 obrien New port uploaded to incoming/sane.tar.gz o [1997/07/26] bin/4171 fetch(1): poor error handling in http mod o [1997/07/26] bin/4176 restore gets confused when run over pipe o [1997/07/27] ports/4178 jdp The cvsup port cannot be built on a non X o [1997/07/27] ports/4179 fenner lmbench-1.1 dumps core after asking for m o [1997/07/28] kern/4186 nfsiod, panic, page fault in kernel mode o [1997/07/30] kern/4194 kernel pci driver for Digital 21041 Ether f [1997/07/31] bin/4202 pwd_mkdb trashes .db o [1997/08/04] i386/4226 Floating point exception for double preci o [1997/08/05] bin/4231 ipfw no more returns error when deleting o [1997/08/06] kern/4233 pca driver does not support A-law encodin o [1997/08/06] bin/4234 ncurses programs broken, won't work in re o [1997/08/06] kern/4240 kernel fails to recognise 2nd serial port o [1997/08/06] bin/4241 send-pr aborts when emacs is editor o [1997/08/07] kern/4242 Remounting devfs causes panic o [1997/08/08] conf/4252 peter sendmail doesn't use smrsh by default o [1997/08/09] bin/4254 steve make in free(): warning: chunk is already 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 a [1997/08/11] kern/4271 sos System crashed caused by moving mouse poi 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 NFS over TCP reconnect problem o [1997/08/19] kern/4338 New device driver 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 a [1997/08/29] kern/4416 syscons: problem with font a [1997/08/29] kern/4417 syscons: mouse pointer destroys character 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/06] bin/4476 fetch puzzled while getting files when ma o [1997/09/06] bin/4477 vidcontrol fails to change videomode on s 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/08] kern/4498 Files corrupted when written to Iomega Zi o [1997/09/09] kern/4505 Support for Gravis UltraSound PnP card o [1997/09/10] kern/4508 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/18] misc/4576 mfs does not mount requested size from /e 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 NFS access locks up o [1997/09/21] bin/4599 mktemp is too smart, accesses the path gi o [1997/09/21] kern/4600 nfs lookups might give incorrect result f [1997/09/22] kern/4609 Heavy HTTP load causes "out of memory buf o [1997/09/25] kern/4630 buffer_map might become corrupted o [1997/09/26] conf/4634 Sendmail Problem o [1997/09/27] bin/4638 telnet tries to resolve numerical IP addr o [1997/09/29] kern/4657 faulting to probe DSI modem in LoadSoftMo o [1997/09/30] ports/4662 ports Ports Additions: upsd-2.0 o [1997/09/30] kern/4663 checkalias panic o [1997/09/30] kern/4665 Machine reboots self often. Second probl 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/01] kern/4676 signals delivered slowly on 3.0-CURRENT/S o [1997/10/02] bin/4678 amd does not treat multiple interfaces on 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/05] bin/4692 steve make core dump / SUFFIXES f [1997/10/06] ports/4708 stb netatalk is broke. no authorization. o [1997/10/06] ports/4711 jfitz mail/p5-Mail-Folder runtime requirement m o [1997/10/07] ports/4724 ports teTeX-0.4 port, make install fails - not o [1997/10/14] misc/4766 Simple changes to make ipfw safer and eas 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/4776 netatalk broken in 2.2-STABLE o [1997/10/16] bin/4780 /usr/sbin/sysctl not available when /usr o [1997/10/16] ports/4781 ports installation of teTeX overwrites the mp e 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] docs/4797 confusion in worm(4) manpage o [1997/10/18] ports/4798 jmz setuid-root Xserver problem o [1997/10/19] ports/4803 ports xgrabsc dies with "bus error" after selec o [1997/10/19] misc/4804 < periodic does not build locate database o [1997/10/19] bin/4805 NFSv3 server readonly file permission pro o [1997/10/21] bin/4822 login.conf can't deal with NFS-mounted ho o [1997/10/22] i386/4826 libc_r, buggy setjmp implementation (rook o [1997/10/24] kern/4843 48 meg double fault moved to 64 meg in 2. o [1997/10/24] ports/4846 ports Install option for HTML docs does not wor o [1997/10/25] bin/4850 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/27] i386/4873 INSTALLATION o [1997/10/28] kern/4875 NFS v3 from FreeBSD to Alpha/OSF3.2 has w o [1997/10/28] misc/4881 Make buildworld and make world fail o [1997/10/28] bin/4884 the version of amd in 2.2.5-RELEASE appea o [1997/10/30] kern/4893 FreeBSD-stable kernel will not compile 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/10/31] bin/4910 tftpd does not log when chroot is enabled o [1997/11/01] bin/4913 Large mail messages can cause mail.local o [1997/11/01] bin/4917 Bad parameters to ifconfig cause kernel p o [1997/11/02] bin/4918 Make fails to correctly substitute "Autom o [1997/11/02] kern/4921 sio0/sio1 not found - probe test 5 and 8 o [1997/11/02] bin/4922 man & more do not work with being suspend o [1997/11/03] kern/4927 kernel does not check any quota and permi o [1997/11/03] misc/4931 Keyboard lockup during floppy install o [1997/11/04] bin/4939 uuxqt unable to execute rnews program o [1997/11/04] bin/4943 After running /stand/sysinstall from comm o [1997/11/05] conf/4944 make world of FreeBSD-stable fails 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/05] i386/4950 no multicast support for zp - 3c589 o [1997/11/06] kern/4956 Machine boots when mounting /dev/sd0[ac] o [1997/11/08] ports/4983 erich Upgrade xmorph port o [1997/11/09] kern/4990 NFS hangs under FastEthernet. 1024 Bytes o [1997/11/10] bin/4998 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/5002 Novice Installation gets confused if you 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/13] misc/5032 something strange o [1997/11/14] bin/5041 brian natd drops aliases o [1997/11/14] bin/5043 malloc/realloc/free (unacceptably) dog-sl o [1997/11/14] i386/5044 Linux emul: Missing offset assignment in o [1997/11/15] ports/5061 pst ports/mail/imap-uw does *partial* install o [1997/11/15] conf/5062 login.access not evaluated correctly o [1997/11/17] kern/5071 2.2.5-STABLE crashes under heavy network o [1997/11/17] ports/5079 ports /usr/ports/x11/auis/patches needs updatin 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/19] i386/5092 sio2 (com3) doesnt work o [1997/11/19] ports/5093 ports gated 3-5-7 exited on signal 11 o [1997/11/20] kern/5102 freebsd NFS client with obscure mount opt o [1997/11/20] kern/5103 security-officerIt appears to be possible to lockup a Fre o [1997/11/20] bin/5105 mount_cd9660 or mount -t cd9660 fails to o [1997/11/20] ports/5106 ports Perl5 is not listed as an install option o [1997/11/20] misc/5107 rebuilding of whatis database does not ca o [1997/11/22] docs/5124 No unpacked documentation in 2.2.5 CD's. o [1997/11/22] gnu/5126 o [1997/11/23] i386/5128 Adaptec 2940U Timeouts with QUANTUM disk o [1997/11/25] kern/5149 2.2.5 boot floppy won't o [1997/11/25] bin/5151 The addition of a call to issetugid() in o [1997/11/29] i386/5174 kbdcontrol(1) can easily crash system o [1997/11/30] i386/5183 The ATAPI I/O is blocked. o [1997/12/02] bin/5189 rcmd(3) only allows one hardcoded connect o [1997/12/02] conf/5191 fsck during boot fails due to lack of res o [1997/12/03] bin/5199 fsck fails at boot time with sig11: segme o [1997/12/03] kern/5204 -g breaks kernel compile, clean does not o [1997/12/03] kern/5205 de driver: media selection broken for 843 o [1997/12/03] bin/5206 lpr looks in wrong place for spool, and b o [1997/12/03] misc/5207 Examples for /etc are not in /usr/share/e o [1997/12/03] kern/5212 nullfs crashes under several situations o [1997/12/04] bin/5219 login(1) fails when NFS-mounted homes are o [1997/12/06] kern/5244 F00F workaround dosn't always work on SMP o [1997/12/07] ports/5249 pst current tcl8.0.2 package has include/gene o [1997/12/08] kern/5255 sysctl kern.boottime is not read only o [1997/12/08] bin/5256 netstat sockaddr bogon o [1997/12/08] ports/5257 ports libpng-0.96 fails to compile in share mod o [1997/12/10] bin/5268 boot failed, system panic with 3Com ether o [1997/12/11] kern/5271 New version of driver o [1997/12/11] ports/5273 ports Port of o2c-1.16 o [1997/12/11] i386/5277 se installation panic o [1997/12/13] kern/5285 quotas do not work properly with setuid p o [1997/12/14] kern/5294 net.inet.icmp.bmcastecho doesn't work o [1997/12/14] bin/5297 make incompatibility with System V style o [1997/12/14] kern/5298 zone allocator causes recursive lock on k o [1997/12/15] bin/5306 gethostbyname() returns herror "Unknown h o [1997/12/15] conf/5307 sysinstall wedges CD drive o [1997/12/16] ports/5316 ports new ports japanese/tcsh o [1997/12/16] kern/5328 Cyrix P166+ on ASUS P/I-P55TVP4 with 64 M o [1997/12/18] kern/5335 ktrace o [1997/12/19] bin/5345 NIS netgroup lookups (innetgr) don't work o [1997/12/19] kern/5347 DEC (de0) ethernet card has no buffers af o [1997/12/19] kern/5348 Difficult to find supported sound card o [1997/12/19] kern/5349 File shows 0 bytes but actually contains o [1997/12/20] kern/5353 SDL Riscomm/8 driver does not work o [1997/12/21] pending/5358gnats-adminUSWC write posting must be turned off on o [1997/12/21] i386/5359 diffs to fix problems, add flexibility to 438 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- a [1994/12/01] kern/35 mount -t union -o -b : lower layer not se o [1995/01/14] bin/115 systat iostat display doesn't scale high o [1995/01/22] kern/176 peter EIDRM not defined in errno.h o [1995/04/20] misc/355 policy on /usr/local permission in base r o [1995/05/13] bin/401 wollman Add REMOTE_* variables a [1995/05/23] i386/440 sos want vidcontrol option to apply settings a [1995/05/27] gnu/450 scrappy tar --exclude -c doesn't work o [1995/06/15] bin/517 wpaul Bad group change with 'install' o [1995/07/05] bin/591 phk SPAP request REJexted in stead of NAKed o [1995/07/09] misc/605 wpaul NIS: get*bynis routine problems f [1995/08/03] kern/652 Multiple addresses on one interface inter s [1995/08/05] gnu/655 jdp ld -r of shared objects worked in 1.1.5, o [1995/08/07] bin/658 ifconfig alias has to be separately given f [1995/08/12] kern/677 dyson X gets a bus error when calling mmap() o [1995/08/13] bin/680 2.0.5's tip using termios doesn't act the o [1995/08/18] kern/700 fenner The comments in /sys/net/if.h are confusi o [1995/09/26] kern/742 dyson syslog errors accessing Mac hard disks [p o [1995/10/03] kern/765 phk umount -f can`t umount a NFS filesystem i o [1995/11/20] kern/831 one minor complaint about the kernel visu o [1995/11/27] bin/841 stale nfs mounts cannot be umounted o [1995/11/30] bin/854 dyson swapinfo shows incorrect information for o [1995/12/17] kern/900 dyson ext2fs triggers divide by zero trap in vn a [1995/12/29] misc/922 From line handling incorrect in mail.loca a [1995/12/31] kern/924 EISA devices have disappeared from vmstat o [1996/01/21] bin/961 'more $file', incorrect CRLF compacting. o [1996/01/28] kern/975 bde getrusage returns negative deltas a [1996/01/30] bin/981 fenner clnt_broadcast() is not aware of aliases s [1996/02/03] bin/993 peter g++ complains about /usr/include/machine/ o [1996/02/07] bin/999 peter /usr/share/mk/sys.mk missing common $(RM) o [1996/02/12] bin/1021 phk pppd doesn't handle PAP-only authenticati o [1996/02/25] i386/1042 bde Warning from sio driver reports wrong dev o [1996/02/26] misc/1043 dyson vm_bounce_alloc error on 2.1 install with o [1996/03/20] kern/1090 iostat displays incorrect sps count o [1996/03/20] bin/1093 wollman route's diagnostic is weird o [1996/04/06] kern/1119 dyson Mounted EXT2FS partition is not cleanly u a [1996/04/15] kern/1144 sig{add, del}set and sigismember fns don' a [1996/04/22] bin/1154 Configure tunN device for ip-over-ip tunn o [1996/04/23] bin/1155 systat or top display disagreeing informa o [1996/05/09] bin/1184 scrappy ls + xterm + nvi + columns != 80 + ^Z = m o [1996/05/15] bin/1206 steve /bin/sh + emacs + ^G = ruined terminal o [1996/06/11] bin/1312 automounter hangs on boot o [1996/06/12] conf/1319 muldi3 is not included into kernel's Make a [1996/06/13] bin/1320 gpalmer dump limits blocksize to 32K o [1996/06/18] i386/1331 phk changes and bug in ft driver f [1996/06/18] bin/1332 changes to amd and possible nfs lkm bug? f [1996/07/04] misc/1369 Need SC_MORE_LUS for Emulex MD23 also a [1996/07/07] bin/1375 Extraneous warning from mv(1) f [1996/07/07] misc/1376 if_tun.c does not set if_ibytes and if_ob o [1996/07/18] kern/1399 dyson invoking setuid programs over NFS case vn o [1996/07/21] ports/1416 ports cflow(1) doesn't parse GNU C __attribute_ s [1996/07/23] kern/1421 Non-bug in sosend() o [1996/07/24] misc/1428 ncurses doesn't always display ALTCHARSET o [1996/08/03] kern/1462 nfsstat doesn't work if using LKM'ed vers a [1996/08/07] ports/1470 asami need more info in the ports structure o [1996/08/17] kern/1501 vmstat reports impossible avm after start o [1996/08/17] bin/1502 vmstat 'avm' field merges with procs 'w' o [1996/08/17] kern/1508 sos syscons should protect against useless DD o [1996/08/19] kern/1514 dyson mlock fails on readonly regions o [1996/08/20] kern/1516 dyson vm_fault.c contains dead code or too many o [1996/08/21] ports/1520 erich sudo dosn't recognise certain passwords a o [1996/08/21] bin/1523 "cvs update -d -P" prunes unchecked-in di o [1996/08/24] misc/1538 enhanced /etc/security script a [1996/09/04] bin/1565 Moving a file to it's link completely rem o [1996/09/06] bin/1577 mail -f foo does not look in current dire o [1996/09/08] bin/1589 ftp fails to flush output o [1996/09/11] bin/1598 tip leaves OPOST set on controlling termi o [1996/09/12] bin/1607 dfr unmount fails for a NFS fs mounted withou o [1996/09/14] gnu/1611 phk groff should use "system-wide" papersize o [1996/09/14] kern/1614 Attempt to mount an NTFS partition causes f [1996/09/18] kern/1636 mss driver extension to broaden support a [1996/09/18] bin/1642 pkg_install Makefiles could be simplified o [1996/09/19] kern/1654 In procfs, vattr doesn't contain correct o [1996/09/20] kern/1658 ktrace/kdump flaky - corrupted ktrace.out o [1996/09/23] i386/1671 s2 map in pcvt isn't ISO 8859-1 and claim o [1996/09/29] kern/1690 apm and sbxvi inappropriately probe as co o [1996/09/29] docs/1691 brian ppp server doc submission o [1996/10/02] misc/1708 monthly login accounting o [1996/10/02] kern/1711 joerg kernel logging of signaled processes shou o [1996/10/03] misc/1717 Use of ntohl causes lint to complain o [1996/10/04] bin/1721 /sbin/route incorrectly installs routes w o [1996/10/04] kern/1725 visual config redraws bits of the screen f [1996/10/08] misc/1738 Install floppy returns random geometry wi o [1996/10/11] conf/1777 sysctl called in /etc/netstart before /us s [1996/10/13] kern/1788 wollman netstat gives negative numbers for tcp by o [1996/10/13] misc/1791 syslimits.h does not allow overriding def o [1996/10/13] bin/1793 steve /bin/sh return w/o exitstatus in a functi o [1996/10/14] bin/1804 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] misc/1853 Syscons font mapping semms not to work pr o [1996/10/20] docs/1855 joerg Addition to LINT o [1996/10/22] kern/1868 system knows it has no keyboard but compl o [1996/10/23] misc/1871 incorrect '===> item' when making world o [1996/10/23] bin/1872 automounter (amd) cannot ls directories w o [1996/10/24] bin/1881 file(1) misidentifies Sun3/m68k executabl o [1996/10/26] bin/1897 Sendmail 8.8.2 requires /etc/sendmail.cw o [1996/10/27] bin/1904 /usr/bin/su is not careful enough in veri o [1996/10/29] bin/1924 if lpd is not running, lpc will say ``no o [1996/10/30] i386/1931 Mitsumi CDrom works well under 2.1.x, fai o [1996/11/01] bin/1941 wtmp and monthly rotation o [1996/11/01] bin/1943 route(8) args o [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 o [1996/11/04] gnu/1961 uucp logging files are in /var/spool/uucp o [1996/11/06] bin/1968 FreeBSD has no rdate(8), here's one o [1996/11/06] bin/1970 csh limtail() bug o [1996/11/09] bin/1985 pkg_delete outputs confusing message when o [1996/11/13] kern/2004 route add -link panic o [1996/11/13] bin/2005 Poor command line argument checking and b o [1996/11/14] bin/2008 kerberos tickets from login all have the o [1996/11/15] kern/2022 Switching from X display to virtual conso o [1996/11/16] bin/2036 cpio size wraparound o [1996/11/19] bin/2061 DEBUG_FLAGS in bsd.lib.mk is broken o [1996/11/19] bin/2065 wollman in tzsetup/sysinstall, allow user to type o [1996/11/19] misc/2068 Unstable keyboard mappings on the main tt o [1996/11/20] kern/2072 ZIP drive support is available for FreeBS o [1996/11/22] docs/2087 ifconfig.8 does not document how to remov o [1996/11/22] bin/2090 clients may bind to FreeBSD ypserv refusi o [1996/11/25] misc/2105 bsd.lib.mk has problems with STRIP and IN o [1996/11/26] bin/2106 Byte order problem in -current routed 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 o [1996/11/28] bin/2119 mount lies to child about argv0, which ca o [1996/12/01] bin/2133 netstat -s overflows to negative o [1996/12/02] bin/2137 vm statistics are bad o [1996/12/02] kern/2140 FreeBSD leaves EtherExpress 16 net card i o [1996/12/03] conf/2146 brian wrong /dev for COM2 during installation v o [1996/12/07] ports/2169 pst zephyr port does not completely compile f [1996/12/08] ports/2182 ports FreeBSD's and X-32's list of locales do n o [1996/12/08] bin/2184 sendmail has lots of trouble with local d a [1996/12/10] ports/2190 asami need cross-reference to xpdf from X11 por o [1996/12/12] kern/2199 joerg Got a lots of "Target Busy" messages with o [1996/12/14] kern/2214 File System gets corrupted when mounting o [1996/12/14] bin/2216 Ada specs not being compiled into cc/gcc o [1996/12/16] bin/2227 FreeBSD does not recognize WD7000-ASC dri o [1996/12/17] i386/2234 fbsdboot.exe does not turn off floppy dri o [1996/12/17] i386/2239 some interrupts take too long (i.e. BT946 o [1996/12/18] misc/2242 Suggest add optional mt blocksize 512 o [1996/12/18] bin/2247 imp getopt should return -1 rather than EOF f [1996/12/20] bin/2260 brian PPP logins using PAP to Nortel/Shiva syst o [1996/12/21] ports/2264 jmz latex* ports need updating 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 o [1996/12/25] conf/2284 Termcap ibm3163 entry has arrow keys wron o [1996/12/26] bin/2291 race condition in /etc/master.passwd lock o [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/28] misc/2309 Thread safe fixes to malloc, localtime, l o [1996/12/29] bin/2315 tail segfaults on NFS permission denied o [1996/12/29] misc/2323 FreeBSD.FAQ file in ftp.freebsd.org is lo o [1996/12/30] kern/2327 `Green' saver for pcvt o [1997/01/01] docs/2353 Changes to FAQ o [1997/01/03] bin/2366 libc does not consult /etc/services to fi o [1997/01/03] bin/2368 serial line logins "freeze" during login o [1997/01/06] bin/2382 curses.h / -lcurses incompatible with C++ o [1997/01/06] bin/2383 Inconsistent tputs(3) prototypes in curse o [1997/01/06] misc/2386 patches for new socket credential firewal o [1997/01/06] bin/2387 virtual hosting patches for inetd o [1997/01/06] kern/2390 Some CDROM drives stop audio on cdcontrol o [1997/01/07] kern/2393 filesystems not unmounted following shutd o [1997/01/07] misc/2407 dirent.h does not include sys/types.h o [1997/01/07] bin/2410 pppd(8): failing PAP doesn't force line d o [1997/01/07] kern/2412 Wine does not work o [1997/01/07] ports/2413 peter Cannot redirect "top" output o [1997/01/08] kern/2424 Pressing ALT-Fn during boot -c leave bell o [1997/01/09] kern/2429 Driver for AIMS Lab RadioTrack radio card o [1997/01/10] bin/2437 minor nits on text in 2.2-BETA install o [1997/01/10] bin/2442 davidn setusershell()/endusershell() missing o [1997/01/10] bin/2443 Fetch cannot find the correct boundary be o [1997/01/11] bin/2448 semctl() not portable -- freebsd requires o [1997/01/11] docs/2455 no description "option COMCONSOLE" MLEN 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/28] ports/2607 max New port: Gopher-2.3 o [1997/01/29] misc/2617 Utility submission - upsmon - UPS monitor o [1997/01/30] kern/2621 Patch to support Cogent EM110 fast-ethern o [1997/01/30] docs/2623 ipfirewall(4) man page is way out of date o [1997/01/30] bin/2624 kdump unaware of semsys and several other o [1997/01/31] bin/2630 xargs does excessive and inconsistent arg 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/2657 ypserv thinks there is no computers in ne o [1997/02/04] bin/2660 When selecting BSD to boot from system ha o [1997/02/04] bin/2665 port 22 isn't being converted to ".ssh" i o [1997/02/05] bin/2668 modification suggested for rarpd o [1997/02/05] bin/2672 Problem with telnetd s [1997/02/07] ports/2684 torstenb ircII port upgrade; 2.9_roof -> 2.9alpha1 o [1997/02/07] kern/2686 struct igmpmsg in s o [1997/02/10] bin/2703 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] bin/2713 ftp daemon processes don't terminate, eve 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/20] docs/2780 Description of Linux emulation is out of o [1997/02/20] bin/2782 err man page is slightly wrong o [1997/02/21] misc/2789 na.phone update o [1997/02/22] ports/2797 obrien New Port: qmail o [1997/02/23] kern/2806 new kernel tags script o [1997/02/26] conf/2819 /etc/rc does not execute 'uname' when con 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/02/28] docs/2833 Repeated topics on FAQ entry hardware com o [1997/03/02] docs/2850 init(8) man page does not document secure 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 dfr NFS client hangs on umount, ls, df when N o [1997/03/03] bin/2871 showmount -e returns error o [1997/03/04] misc/2882 Duplicate line in /etc/services? 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/09] ports/2926 jmb xmgt-2.31 port, now in pub/incoming on ft o [1997/03/10] bin/2934 sh(1) has problems with $ENV o [1997/03/10] bin/2938 Add -b, -l, and -f options to du(1) o [1997/03/11] ports/2949 asami bsd.port.mk needs something like FETCH_EN o [1997/03/11] misc/2955 pkg_add failed on xemacs via sysintall o [1997/03/13] ports/2974 ports updated Makefile and patch-ab of jp-dvi2p o [1997/03/13] bin/2977 After enabling moused and vidcontrol and o [1997/03/13] bin/2979 GCC complains about stmt. expr. when comp o [1997/03/13] i386/2984 serial port console only prints ~ 1 char o [1997/03/14] ports/2988 joerg vga font is not built o [1997/03/15] ports/2993 obrien qmail-port-take2-proff.tar.gz in incoming o [1997/03/15] kern/3001 soundblaster8 card does not work correctl o [1997/03/16] misc/3009 packages-2.2/x11/fvwm-1.24r.tgz corrupt o 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/18] bin/3025 mv to / trailed dirs prints odd error mes a [1997/03/21] ports/3052 ports /usr/ports/lang/expect does not find tkCo o [1997/03/22] kern/3061 route does not accept -genmask o [1997/03/24] misc/3075 2.2-R install "features" (non critical) o [1997/03/26] misc/3113 make libraries failed. a [1997/03/28] misc/3136 rc.firewall should be run after interface o [1997/03/29] bin/3139 qcamcontrol has a bug where I/O errors ar o [1997/03/29] misc/3140 display message is broken on boot.flp o [1997/03/30] docs/3147 /usr/share/misc/au.postcodes o [1997/03/31] gnu/3157 Patches to gas and gdb to support MMX ext a [1997/04/01] bin/3164 view copies the file into vi.recover o [1997/04/01] ports/3169 ports nn port broken o [1997/04/01] kern/3172 CS4232 support trouble for mss0 o [1997/04/03] bin/3190 RISCom N2 card driver problem? o [1997/04/04] bin/3194 2.2.1-RELEASE hangs when using /stand/sys 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] bin/3232 XFree86 installation Problem with non-Mic a [1997/04/08] bin/3233 wosch adduser(8) doesn't add users to the wheel o [1997/04/08] misc/3237 SCRIPTS addition to bsd.prog.mk a [1997/04/09] bin/3241 times(3) returns only stime o [1997/04/09] bin/3242 incorrect prototype for initgroups o [1997/04/09] bin/3245 variable substitution "a=${a:=}" in /bin/ o [1997/04/10] bin/3251 xsysinfo stops refreshing and wastes CPU o [1997/04/10] kern/3253 scsiconf.c: make ZIP disks use optical dr o [1997/04/13] conf/3272 $@ 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 symorder(1): -t option doesn´t work at al o [1997/04/14] bin/3285 date option for pom(6) (phase of the moon o [1997/04/14] bin/3286 missing error checking in mount_mfs(8) ak o [1997/04/14] kern/3287 missing symbols in /usr/src/sys/i386/i386 o [1997/04/14] bin/3289 login(1) does not check /etc/skey.access o [1997/04/15] kern/3299 /dev/console hangs f [1997/04/15] kern/3302 msdos FS bogus error o [1997/04/17] bin/3314 /etc/daily did not run on April 6, 1997 o [1997/04/17] kern/3317 odd TUBA_INCLUDE use in tcp_input.c 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 a [1997/04/19] ports/3335 ports new port request of korean/hanemacs o [1997/04/20] ports/3358 asami XFMail-1.1 has been released f [1997/04/23] kern/3375 Consistent 10 min. delay at boot with REL 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/27] docs/3400 MAXMEM uses maths in LINT o [1997/04/27] conf/3401 jkh sysinstall sends empty FreeBSD user regis 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/03] misc/3476 Please add support for .cpp suffix to sta o [1997/05/05] i386/3504 New features (and manpage) for netboot o [1997/05/05] bin/3506 more did not show iso-8859-n characters 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 o [1997/05/09] kern/3560 Timeout counter bug in /sys/i386/isa/wd.c o [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 Difference in ttys and FAQ f [1997/05/14] ports/3597 ports jp-groff-0.99 port macro update 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/19] docs/3636 No mention is made in relevant manpages a o [1997/05/20] bin/3638 /bin/w can't handle long /dev/{tty,cua}xx o [1997/05/20] bin/3639 ac doesn't know about FreeBSD's pty names o [1997/05/20] docs/3645 torstenb TCP_wrappers package doesn't mention wher o [1997/05/21] bin/3648 find(1) extension for file flags o [1997/05/21] ports/3657 ports Port of NCSA HyperNews submitted as p5-hy o [1997/05/22] i386/3663 Unable to get system printer to work o [1997/05/22] kern/3667 patches to modularize vnode driver o [1997/05/24] conf/3673 no ddp line in /etc/protocols o [1997/05/25] kern/3678 bug in IPDIVERT code in -current o [1997/05/27] misc/3695 compiled termcap.db not in distribution o [1997/05/28] bin/3705 jkh /stand/sysinstall hangs. pkg_add also ha o [1997/05/29] conf/3713 installation floppy bug o [1997/05/30] kern/3720 Addition for supported Hardware o [1997/05/31] ports/3729 scrappy pgsql dies when initiated o [1997/05/31] kern/3731 Addition of a PCI Bridge f [1997/05/31] bin/3733 davidn getty with 'to' option causes pppd to die o [1997/06/01] kern/3738 Byte and packet counters in ipfw overflow o [1997/06/01] kern/3739 pause key not disabled; weird stuff when o [1997/06/01] conf/3751 Improvements to /etc/rc{,.network,.pccard o [1997/06/02] ports/3759 tg xtem-5.23 (X11 TEx Menu) port submitted ( o [1997/06/02] bin/3762 dufault Bogus return values from rtprio(1) o [1997/06/02] docs/3764 systat(1) -vmstat description seems to be 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] docs/3819 davidn man (5) login.conf specifies passwordtime 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/12] i386/3856 Improvement to autodetection logic 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 f [1997/06/14] ports/3870 ports Upgrade tkdesk 1.0b3 --> 1.0b4 o [1997/06/15] kern/3879 Can't export mounted ext2fs via NFS o [1997/06/16] conf/3886 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/20] gnu/3918 vi dosnt wrap lines when called from send o [1997/06/22] ports/3928 ports New port: jp-pgp-2.6.3ia (language) o [1997/06/23] kern/3938 Problem about mmap() over NFS o [1997/06/23] ports/3939 ports new port: latex2html_icon_server o [1997/06/23] ports/3940 fenner port of latex2html-96.1 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 jmz 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/06/30] ports/3991 ports set of OffiX ports a [1997/07/01] bin/4004 moused(8) + international language text = o [1997/07/02] ports/4014 ports package/port installation obeys roots uma o [1997/07/03] i386/4024 sos Patch to add dead key support to syscons o [1997/07/03] ports/4025 ports New port - jp-ebw3 o [1997/07/05] kern/4037 boot.flp panics after kernel load if >2 s o [1997/07/06] kern/4039 2940UW and DCAS 32160 -- hungs if 40 MB/s o [1997/07/07] kern/4051 pppd connect 'chat ...' broken o [1997/07/07] kern/4052 VJ compression drops packets with IP+TCP o [1997/07/08] ports/4061 obrien new port: xklock o [1997/07/08] misc/4063 2.2.2R Installation fails if Jaz drive sp o [1997/07/09] ports/4067 ports wrong formats of files in offix.tar o [1997/07/13] ports/4083 ache netscape wrapper doesn't hand off args co o [1997/07/14] bin/4087 nameservice terminates after ndc restart o [1997/07/16] ports/4103 ports Should I or should I not ? o [1997/07/17] kern/4112 PPSCLOCK kernel diffs o [1997/07/17] kern/4113 Processes shouldn't get SIGIO when the tt 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 ache netscape-3.01: get rid of bogus error mes o [1997/07/20] ports/4133 chuckr new port: mpich.tar.gz o [1997/07/21] misc/4138 /etc/rc and sudo : chg to rm -rf /var/run o [1997/07/23] kern/4153 New tcp initial send sequence number code f [1997/07/23] bin/4154 wish /bin/sleep handled fractions of a se o [1997/07/24] bin/4157 netstat atalk output should print symboli o [1997/07/24] bin/4163 ftp core dumps after hitting control-C f [1997/07/25] bin/4165 fetch gone to interminable query cycle af o [1997/07/26] bin/4172 link goes down for too long -- transfer f o [1997/07/27] bin/4182 netstat should always print the interface o [1997/07/27] bin/4183 How about upgrading bc to 1.04? o [1997/07/28] kern/4184 minor nits in sys/netatalk o [1997/07/28] bin/4187 The w command should have a larger tty fi o [1997/07/30] ports/4192 ports New port: Amulet o [1997/07/31] conf/4201 Installing only X-User does not install c o [1997/07/31] bin/4204 ac printed wrong report about tty users o [1997/08/01] misc/4208 sos New syscons font o [1997/08/02] bin/4216 dlsym returns null o [1997/08/03] kern/4221 Kernel mode pppd doesen't update wtmp on o [1997/08/04] ports/4227 ports cops perl script produces errors 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] misc/4235 asami /usr/share/mk/bsd.ports.mk and GNU config o [1997/08/06] bin/4238 chpass only occasionally works in conjunc o [1997/08/07] kern/4243 file locking doesn't work for pipe o [1997/08/07] bin/4247 modification to /etc/security for FreeBSD o [1997/08/08] misc/4249 wpaul ypchsh doesn't care about changing a user a [1997/08/09] kern/4255 SMP kernel freezes on machines with >2 CP a [1997/08/09] kern/4257 itojun scsi RESERVATION CONFLICT support needed o [1997/08/10] ports/4263 ports new ports: jp-vfxdvik-18f (dvi viewer for o [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) o [1997/08/12] ports/4287 jfitz mail/p5-Mail-Folder is broke 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. f [1997/08/13] bin/4298 joerg Is there any support for using the scsi C 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 f [1997/08/15] bin/4308 FreeBSD uses an out of date version of vi o [1997/08/17] docs/4320 function prototype in pthread_detach man f [1997/08/17] bin/4323 Initial routing tables incomplete o [1997/08/18] kern/4329 read(2) from /dev/bktr0 hangs o [1997/08/22] ports/4356 erich sudo shouldn't block signals in tgetpass( s [1997/08/22] ports/4360 ports new port of Amaya-1.0b o [1997/08/23] conf/4363 kernel build depend on make obj o [1997/08/24] bin/4369 dump can calculate wrong estimate times w f [1997/08/25] ports/4377 ports bkpupsd [device] o [1997/08/25] gnu/4385 un- and unclearly documented options in t 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/08/30] docs/4439 davidn man pages wrong regarding login.conf o [1997/08/30] kern/4441 3com Etherlink III card not working while o [1997/08/31] conf/4444 Can't seem to configure for a DEC VRT17-H o [1997/09/02] bin/4452 wpaul /etc/ethers and NIS: Bad comment parser o [1997/09/03] bin/4459 bde No prototype for moncontrol(3) and monsta o [1997/09/04] kern/4463 When using ipfw, all I get is the followi o [1997/09/04] misc/4468 dlopen is not available from static execu o [1997/09/04] misc/4470 libc_r deviates from the pthread standard o [1997/09/04] docs/4472 manpage for /usr/bin/printf is not comple o [1997/09/07] misc/4482 jdp A bug in dynamic loader design o [1997/09/07] bin/4484 peter sendmail is barfing o [1997/09/07] kern/4485 boot fials if root fs blocksize is not 8k o [1997/09/08] ports/4496 fenner new port of latex2html-97.1.tar.gz o [1997/09/12] ports/4521 ports 'Joe' editor does not show control-chars 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] docs/4542 jkh Slovene WWW and FTP mirrors of FreeBSD o [1997/09/14] bin/4545 f77 will only call `cc', no com-line opti o [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/16] misc/4560 XFree86 3.3.1 fails to install properly i o [1997/09/17] ports/4565 ports 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] ports/4595 ports Lynx tarball missing from ftp.freebsd.org o [1997/09/21] ports/4596 ports nas port fails build on 2.2-STABLE 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 f [1997/09/22] conf/4603 brian configure ddr between FreeBSD host and Ci o [1997/09/22] ports/4605 max New port ja-vftool-1.2(japanese/vftool). o [1997/09/22] ports/4608 obrien The packing list for the mutt port is inc o [1997/09/24] ports/4621 ports New port: xtris [category games] o [1997/09/25] bin/4629 calendar doesn't print all dates sometime o [1997/09/25] ports/4631 ports New port: ncurses-1.9.9g o [1997/09/27] ports/4640 chuckr Enabled I18n code of transfig-3.2 with no o [1997/09/28] ports/4643 ports new port - japanese-english dictionary o [1997/09/28] ports/4644 ports This is a new port xfig -international ba 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/09/29] ports/4656 ports New port: sidplay (category emulators) o [1997/09/30] ports/4658 ports yet another X11 utility added -- XDiary o [1997/09/30] ports/4664 ports New port sendfile-1.6 (category net) o [1997/10/02] misc/4679 xtend(8) doesn't handle the "dump" comman o [1997/10/02] kern/4680 lkm version of vn.c o [1997/10/02] misc/4682 magic file entries for tcpdump save files 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/05] docs/4698 Handbook's script for making repair flopp o [1997/10/05] conf/4702 ipfw should pass all lo0 traffic, not jus o [1997/10/06] ports/4707 ports new-port : ja-mtools-3.6 (manipulating MS o [1997/10/06] kern/4717 si driver names tty lines oddly o [1997/10/07] misc/4723 /etc/rc complains during boot when sudo w o [1997/10/08] ports/4726 ports new port developed(X11 japanese font) o [1997/10/08] ports/4729 jfitz Fix for Cyrus port o [1997/10/08] ports/4731 ache wwwcount-2.3 port compile error o [1997/10/09] bin/4732 ac command works incorrect with old wtmp o [1997/10/09] ports/4733 ports new port of cfengine o [1997/10/09] ports/4734 ports Ports of NDTPD-1.0.2 and BookView-1.0.4 o [1997/10/12] ports/4744 ports New port: pnmtopng o [1997/10/12] kern/4746 Yamaha CDR support o [1997/10/12] gnu/4748 cc -Wformat too sensitive o [1997/10/13] ports/4759 ports New port: ja-xnetmaj o [1997/10/14] ports/4767 ports New port: cftp-0.7 o [1997/10/14] ports/4769 ports msql-2.0.3 ported o [1997/10/15] ports/4770 ports New port: Xitami HTTP Server o [1997/10/15] gnu/4771 diff to correct misleading total bytes in o [1997/10/16] ports/4777 ports New port: le-1.4.0 o [1997/10/16] docs/4778 manual page for mail(1) misses sendmail o o [1997/10/16] bin/4779 Missing BINDIR in sendmail 8.8.7 Makefile o [1997/10/16] bin/4783 make dumps core on some incorrectly forma o [1997/10/17] ports/4788 ports New port xd-2.3(misc/xd). o [1997/10/17] ports/4791 ports i can't make install on mc-4.1 port o [1997/10/17] ports/4792 torstenb New ports for INN 1.5.1sec2 & 1.6 Beta 3 o [1997/10/17] bin/4794 mount -p does not reflect noatime flag a [1997/10/19] ports/4808 andreas Broken password.c in backend/libpq for Fr o [1997/10/19] ports/4809 ports Update port: tkdesk 1.03b -> 1.04b o [1997/10/19] kern/4810 Access checks in msdosfs_mount() o [1997/10/20] ports/4811 ports patch-file corrections for faces and xfac o [1997/10/20] misc/4812 ctags(1) write to buffer beyond the end o o [1997/10/20] i386/4816 FreeBSD driver for Industrial Computer So o [1997/10/21] ports/4819 ports New port: libhelp o [1997/10/21] ports/4820 ports New port: seabattle-1.0 o [1997/10/22] bin/4825 routed discards the first character of th o [1997/10/22] bin/4828 ypxfr makes false assumption about RPC ca o [1997/10/22] bin/4829 ftpd does not check user's gid for groups o [1997/10/23] docs/4833 Manual page missing for pccardc o [1997/10/23] kern/4836 PCI support for si o [1997/10/23] kern/4837 bad error return from rmdir() with msdos o [1997/10/23] ports/4839 ports New port - spin - Verification system for o [1997/10/24] i386/4842 2.2.5-RELEASE biosboot make problem 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/10/26] bin/4858 Missing :np: in local.9600 entry in getty o [1997/10/27] docs/4866 Man pages for basename(1) and dirname(1) o [1997/10/27] ports/4870 ports New port p5-Gtk o [1997/10/28] ports/4878 ports Apache w/FrontPage Module Port o [1997/10/28] bin/4882 uudecode can't handle whitespace in filen o [1997/10/29] ports/4885 ports Create a new ports about cqcam-0.45.tar.g o [1997/10/29] ports/4889 ports new port for ntimelord-1.0 o [1997/10/30] bin/4899 Telnet is not transparent even with -8E o [1997/10/31] kern/4904 The pthread implementation seems not cont o [1997/10/31] misc/4908 pthread_cond_wait doesn't o [1997/11/01] bin/4915 NFS mounts to linux machine can hang syst o [1997/11/02] ports/4919 ports -s option description is present twice in o [1997/11/02] ports/4920 ports New math port: METIS o [1997/11/02] bin/4923 vi leaves the screen in standout mode o [1997/11/02] bin/4924 /etc/daily should use full hostname o [1997/11/02] bin/4925 sendmail ignores user quotas o [1997/11/03] ports/4928 asami no 'update' target in /usr/ports/Makefile o [1997/11/04] ports/4933 ports New port: cgihtml library o [1997/11/04] ports/4935 ports audio/nas port fails build + fix o [1997/11/04] ports/4937 ports A looks-nice audio level meter port is no o [1997/11/04] misc/4938 addgroup script calls for tclsh; tcl not o [1997/11/04] ports/4941 ports New port: nslint 2.0a2 o [1997/11/05] bin/4947 ps(1) output is not parsable and -Ortprio o [1997/11/06] bin/4957 /bin/top doesn't sort idle processes corr o [1997/11/06] ports/4958 ports installing mutt port failes if sgmlfmt is o [1997/11/06] docs/4960 xman(1) and sgmls(1) buglets o [1997/11/07] bin/4966 boot.flp file is too big to image on to f 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 ports 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/4979 ports port for Eval-113 o [1997/11/08] ports/4980 ports NEW PORT: netscape3-us (Netscape Nav with o [1997/11/09] ports/4985 ports NEW PORT: www/htmlpp htmlpp-3.9, a WWW au o [1997/11/09] ports/4986 ports NEW PORT: comms/atp - ATP 1.50, a BBS QWK o [1997/11/09] kern/4989 NE2100 ethernet card (lnc1) gives poor pe 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] ports/5013 erich Update xmorph to current version o [1997/11/11] ports/5014 ports Mysql package does not install correctly o [1997/11/11] docs/5016 make -j4 fails in share/doc/usd/13.viref o [1997/11/12] ports/5020 ports patch-aa AND checksum for xmysql 1.5 are o [1997/11/12] kern/5021 New /sys/i386/isa/si_jet.c o [1997/11/13] bin/5031 lpr does not remove original file if -s i o [1997/11/13] kern/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/5042 ports New port: unpost-2.3.4 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/5051 Upgrade tcl to release version o [1997/11/15] bin/5052 upgrade BIND o [1997/11/15] i386/5058 Driver for Low Cost ISA, 12Bit Analog Inp o [1997/11/15] kern/5059 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 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/17] ports/5075 ports Update: print/c2ps to 4.0 o [1997/11/17] ports/5078 ports make clean complains about p5-DBD-mysql M o [1997/11/17] ports/5080 ports Apache-1.2.4: Improved rc.d script 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/18] ports/5086 ports new port: elisp-manual.tar.gz o [1997/11/18] ports/5087 ports new port: emacs-lisp-intro.tar.gz o [1997/11/19] kern/5090 Driver for SMC9432TX Fast Ethernet Board o [1997/11/19] bin/5098 running out of swap space causes junk poi o [1997/11/19] i386/5099 New Driver: alog (Industrial Computer Sou o [1997/11/20] misc/5101 make release use vn0 device (default devi o [1997/11/20] ports/5104 ports New port: sis-1.2pl1 o [1997/11/20] kern/5108 pmap_release panics with 'freeing held pa o [1997/11/20] bin/5109 patch to ftpd, new option to limit number o [1997/11/20] kern/5110 kernel crash & core in pmap_testbit durin o [1997/11/20] ports/5111 ports New port of cooledit-3.5.2 o [1997/11/20] kern/5113 New Driver: Industrial Computer Source AI o [1997/11/21] docs/5118 hier(7) manpage stills mentions FAQ & han o [1997/11/21] bin/5119 name space pollution in o [1997/11/21] ports/5120 ports Update to BLAS lib. (math port) o [1997/11/21] kern/5123 New Driver: Industrial Computer Source AI o [1997/11/23] ports/5131 ports New math port: SuperLU o [1997/11/23] bin/5134 cdcontrol will eject a mounted CDROM o [1997/11/24] docs/5136 ypbind, etc. man pages wrong o [1997/11/24] ports/5138 ports GNAT port is out of date o [1997/11/25] misc/5147 Submission of a shell script to help -CUR o [1997/11/26] misc/5153 release file checksums in wrong file o [1997/11/26] ports/5157 ports update to eterm port o [1997/11/26] ports/5158 ports thot editor port doesn't install template o [1997/11/27] ports/5161 ports new port: p5-DBD-Mysql o [1997/11/27] ports/5162 ports port submission: catdoc o [1997/11/27] ports/5167 ports New port ja-vftool-1.2(japanese/vftool). o [1997/11/28] bin/5173 restore ought to deal with root setable f o [1997/11/29] ports/5175 ports NEW PORT: news/xmitBin, a binary files au o [1997/11/29] bin/5176 Boot FreeBSD from Linux LILO o [1997/11/29] ports/5177 ports Not enought argument in script of databas o [1997/11/29] conf/5178 should be able to add to ldconfig path in o [1997/11/30] ports/5179 ports New port ja-dvipsk-5.66a (japanese/dvipsk o [1997/11/30] i386/5182 A patch support high speed serial boards. o [1997/11/30] ports/5184 ports Port of S-Plus like language R o [1997/12/01] misc/5187 phantasia will segfault if it can't open o [1997/12/01] bin/5188 small typo in the source for pkg_info o [1997/12/02] bin/5193 It takes ages to rebuild master.passwd if o [1997/12/02] conf/5195 Add HP JetDirect (9100/tcp) to /etc/servi o [1997/12/02] bin/5196 ps forces all IW'd processes into Is due o [1997/12/02] kern/5197 The swapper is ineffective 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] misc/5203 missing file(s) in package INDEX o [1997/12/03] misc/5208 umount fails when device is a symlink o [1997/12/03] ports/5209 ports New port ja-mendexk-{euc,sjis}-2.4b (japa o [1997/12/03] ports/5210 ports new port-package for frodo o [1997/12/03] conf/5213 My SB AWE64 isn't being recognized. o [1997/12/04] docs/5216 manual page for xntpd.8 includes some (mi o [1997/12/04] ports/5217 ports New port biology/kinemage o [1997/12/04] i386/5218 make all fails in /usr/src/lkm/vm86 o [1997/12/04] bin/5225 in vi, after failed search, then ctrl-z, o [1997/12/04] conf/5226 Default local printcap entry prints banne o [1997/12/04] ports/5228 ports Several ports changes o [1997/12/05] bin/5230 Install problem o [1997/12/05] kern/5231 Mounted MS-DOS floppy disk writes unrelia o [1997/12/05] misc/5233 /etc/ethers prototype is missing o [1997/12/05] misc/5234 tcpwrappers/identd should belong to the b o [1997/12/05] kern/5236 CPU and mem not zeroed for zombie process o [1997/12/05] conf/5237 release/sysinstall/help/configure.hlp sti o [1997/12/06] misc/5239 ata + atapi & /stand/sysinstall & dos o [1997/12/06] ports/5240 ports Incorrect path in pkfonts (fix) o [1997/12/07] ports/5245 ports new port, bugsx game o [1997/12/07] docs/5247 Boot FreeBSD from Linux LILO o [1997/12/07] ports/5248 ports New port xmail-1.6 o [1997/12/08] ports/5251 ports Update the port(ja-man-1.1e):japanese/man o [1997/12/08] ports/5252 ports Update the port(ocaml-1.06):lang/ocaml. o [1997/12/08] bin/5253 catgets(3) and catclose(3) don't guard ag o [1997/12/09] docs/5260 typo in fork(2) o [1997/12/09] conf/5261 libc_r is not an install option o [1997/12/09] bin/5262 display sid in ps o [1997/12/09] bin/5263 sh bug (with example) o [1997/12/10] ports/5270 ports New port: ptoc-2.01 o [1997/12/11] kern/5274 mt comp 0/1 does not work, with fix o [1997/12/11] kern/5275 Added volume (barcode) support to tape ch o [1997/12/11] bin/5276 mt should report compression status o [1997/12/12] ports/5279 ports New port: vilearn, a vi tutorial o [1997/12/12] ports/5282 ports update tkdesk port to latest tkdesk relea o [1997/12/12] bin/5283 Tar man page does not match program o [1997/12/13] bin/5284 pkg_create uses an unstandard tar o [1997/12/13] docs/5287 Bad tftpd man page o [1997/12/13] docs/5288 syslog.conf man page doesn't mention LOG_ o [1997/12/14] ports/5290 ports Update port: net/mpd o [1997/12/14] conf/5292 master.passwd -- /nonexistent vs. /sbin/n o [1997/12/14] bin/5293 DES dist (req'd by PPP) defaults to kerbe o [1997/12/14] ports/5295 ports New Math port: umfpack o [1997/12/14] bin/5296 slattach fails creating pidfile with ioct o [1997/12/14] ports/5299 ports Update ports x11/emiclofor newer version o [1997/12/15] ports/5301 ports lynx: wrong default location of configura o [1997/12/15] ports/5302 ports webcopy port doesnt work? o [1997/12/15] docs/5303 Missing includes in getgid man page. o [1997/12/15] bin/5304 Manpage for ftp incorrect o [1997/12/15] ports/5308 ports New port: xtris [category games] 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 o [1997/12/16] kern/5314 Screensaver continues operating after ker o [1997/12/16] ports/5315 ports New port: deco-3.8 o [1997/12/16] docs/5318 Out-of-date Web page o [1997/12/16] ports/5319 ports New graphics port: Gplot o [1997/12/16] bin/5320 yokota moused enhancement for logitech 4-button o [1997/12/16] bin/5321 yokota moused loses simultaneous buttons for 3-b o [1997/12/17] ports/5329 ports fix for emulators/frodo o [1997/12/17] ports/5330 ports New port: nbench-2.1 o [1997/12/17] ports/5331 ports New math port: xldlas-0.85 o [1997/12/18] ports/5334 ports Fix patches for netscape[3|4-[navigator|c o [1997/12/18] ports/5336 ports New port graphics/aview o [1997/12/18] bin/5340 /usr/bin/ps shows 'con' in TT but it shou o [1997/12/19] ports/5342 ports New port ja-netscape-3.04(japanese/netsca o [1997/12/19] ports/5344 ports Fix patches for ja-groff o [1997/12/19] bin/5346 Discrepancy between dump(8) man page and o [1997/12/20] bin/5351 soundcard.h now depends on sys/types.h o [1997/12/20] ports/5352 ports multi-package ports don't build (NO_WRKSU o [1997/12/21] ports/5356 ports mail/nmh port update to nmh-0.18 o [1997/12/21] ports/5357 ports xemacs 20.3 port does not work with USE_M o [1997/12/21] ports/5360 ports update libident to version 0.21 o [1997/12/22] kern/5362 mount incorrectly reports / as an NFS exp 740 problems total. From owner-freebsd-bugs Mon Dec 22 10:40:04 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id KAA14726 for bugs-outgoing; Mon, 22 Dec 1997 10:40:04 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id KAA14709; Mon, 22 Dec 1997 10:40:02 -0800 (PST) (envelope-from gnats) Date: Mon, 22 Dec 1997 10:40:02 -0800 (PST) Message-Id: <199712221840.KAA14709@hub.freebsd.org> To: freebsd-bugs Cc: From: Cy Schubert - ITSD Open Systems Group Subject: Re: kern/5355: Fix for NULLFS problems Reply-To: Cy Schubert - ITSD Open Systems Group Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR kern/5355; it has been noted by GNATS. From: Cy Schubert - ITSD Open Systems Group To: Bruce Evans Cc: cschuber@uumail.gov.bc.ca, freebsd-gnats-submit@freebsd.org, cy@passer.osg.gov.bc.ca Subject: Re: kern/5355: Fix for NULLFS problems Date: Mon, 22 Dec 1997 10:35:40 -0800 I'll give your code a try. Would it be a good idea to to have a panic() or a printf() where I return a FALSE? I'm torn between providing better diagnostic messages and reducing kernel bloat. By doing a printf() or panic() any author of a filesystem would know that he would need to do some work on his code. Regards, Phone: (250)387-8437 Cy Schubert Fax: (250)387-5766 UNIX Support OV/VM: BCSC02(CSCHUBER) ITSD BITNET: CSCHUBER@BCSC02.BITNET Government of BC Internet: cschuber@uumail.gov.bc.ca Cy.Schubert@gems8.gov.bc.ca "Quit spooling around, JES do it." > >>Fix: > >cwsys# cat /opt/archives-3/usermods/nullfs_panic_fix.usermod > >--- src/sys/vm/vnode_pager.c.orig2 Sun Dec 7 13:11:03 1997 > >+++ src/sys/vm/vnode_pager.c Fri Dec 19 06:30:27 1997 > >@@ -231,10 +231,12 @@ > > blocksperpage = 0; > > if (pagesperblock > 0) { > > reqblock = pindex / pagesperblock; > >- } else { > >+ } else if (bsize > 0) { > > blocksperpage = (PAGE_SIZE / bsize); > > reqblock = pindex * blocksperpage; > >- } > >+ } else > >+ return FALSE; > >+ > > I think bsize is supposed to be > 0 here. Lots of other places depend > on vp->v_mount->mnt_stat.f_iosize being reasonable. nullfs and some > other file systems (portal and umapfs at least) just don't initialize > most of mnt_stat (except by bzeroing it). This untested fix for nullfs > was obtained from union[fs]. > > diff -c2 null_vfsops.c~ null_vfsops.c > *** null_vfsops.c~ Mon Oct 13 21:46:00 1997 > --- null_vfsops.c Mon Dec 22 04:32:11 1997 > *************** > *** 199,202 **** > --- 199,203 ---- > &size); > bzero(mp->mnt_stat.f_mntfromname + size, MNAMELEN - size); > + (void)nullfs_statfs(mp, &mp->mnt_stat, p); > #ifdef NULLFS_DIAGNOSTIC > printf("nullfs_mount: lower %s, alias at %s\n", > > Bruce From owner-freebsd-bugs Mon Dec 22 11:00:04 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id LAA16156 for bugs-outgoing; Mon, 22 Dec 1997 11:00:04 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id LAA16112; Mon, 22 Dec 1997 11:00:01 -0800 (PST) (envelope-from gnats) Date: Mon, 22 Dec 1997 11:00:01 -0800 (PST) Message-Id: <199712221900.LAA16112@hub.freebsd.org> To: freebsd-bugs Cc: From: Bruce Evans Subject: Re: kern/5355: Fix for NULLFS problems Reply-To: Bruce Evans Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR kern/5355; it has been noted by GNATS. From: Bruce Evans To: bde@zeta.org.au, cschuber@uumail.gov.bc.ca Cc: cy@passer.osg.gov.bc.ca, freebsd-gnats-submit@freebsd.org Subject: Re: kern/5355: Fix for NULLFS problems Date: Tue, 23 Dec 1997 05:52:30 +1100 >Would it be a good idea to to have a panic() or a printf() where I return a >FALSE? I'm torn between providing better diagnostic messages and reducing >kernel bloat. By doing a printf() or panic() any author of a filesystem would >know that he would need to do some work on his code. I think you have to trust the [author of] the filesystem. There are many other details that must be right, and this particular mistake probably won't be made again. Bruce From owner-freebsd-bugs Mon Dec 22 14:20:06 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id OAA03425 for bugs-outgoing; Mon, 22 Dec 1997 14:20:06 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id OAA03192; Mon, 22 Dec 1997 14:17:55 -0800 (PST) (envelope-from max@FreeBSD.org) From: Masafumi NAKANE Received: (from max@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id OAA18799; Mon, 22 Dec 1997 14:14:26 -0800 (PST) Date: Mon, 22 Dec 1997 14:14:26 -0800 (PST) Message-Id: <199712222214.OAA18799@freefall.freebsd.org> To: max@FreeBSD.ORG, gnats-admin@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: pending/5358 Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: USWC write posting must be turned off on PPro motherboards Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: max Responsible-Changed-When: Mon Dec 22 14:13:03 PST 1997 Responsible-Changed-Why: Misfiled PR. From owner-freebsd-bugs Mon Dec 22 22:30:04 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id WAA10379 for bugs-outgoing; Mon, 22 Dec 1997 22:30:04 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id WAA10367; Mon, 22 Dec 1997 22:30:02 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 22 Dec 1997 22:30:02 -0800 (PST) Resent-Message-Id: <199712230630.WAA10367@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, david_hansen@ibm.net Received: (from nobody@localhost) by hub.freebsd.org (8.8.7/8.8.7) id WAA09903; Mon, 22 Dec 1997 22:27:24 -0800 (PST) (envelope-from nobody) Message-Id: <199712230627.WAA09903@hub.freebsd.org> Date: Mon, 22 Dec 1997 22:27:24 -0800 (PST) From: david_hansen@ibm.net To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: misc/5367: Freeze after config Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5367 >Category: misc >Synopsis: Freeze after config >Confidential: no >Severity: critical >Priority: low >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 22 22:30:01 PST 1997 >Last-Modified: >Originator: David Hansen >Organization: >Release: 2.2.5 >Environment: haven't gotten that far >Description: After the initial installation device configuration, the machine freezes. This is after one of the very initial menus during beginning installation. The visual device editor as well as the command line based one both fail. The visual one fails after the exit/save and the command line one fails after the exit. I would assume these are exactly equal points as far as the machine is concerned. After trying to save the floppy drive is accessed once and the HD is accessed on additional time as well. The machine is not just busy, time will not fix the problem. The machine is an IBM Aptiva S64 with 48MB RAM and a real Intel NON-MMX P166. >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-bugs Mon Dec 22 22:52:22 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id WAA13410 for bugs-outgoing; Mon, 22 Dec 1997 22:52:22 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: from iconmail.bellatlantic.net (iconmail.bellatlantic.net [199.173.162.30]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id WAA13368 for ; Mon, 22 Dec 1997 22:52:15 -0800 (PST) (envelope-from dmm125@bellatlantic.net) Received: from myname.my.domain (client201-122-20.bellatlantic.net [151.201.122.20]) by iconmail.bellatlantic.net (IConNet Sendmail) with SMTP id BAA29498 for ; Tue, 23 Dec 1997 01:52:16 -0500 (EST) Date: Tue, 23 Dec 1997 01:51:45 +0000 (GMT) From: Donn Miller X-Sender: dmm125@myname.my.domain To: bugs@freebsd.org Subject: m4 macros in /usr/bin out of date? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hi I believe the m4 macro package in freebsd 2.2.5 is out of date. When I rebuild my system with make world, and then use autoconf, I get a message saying that a later version is required. So then I grab the newest release of m4 from ftp.cdrom.com:/pub/gnu, compile this, install, and then everything works OK. I just wanted the developers to know in case this component needs updating. Thanks, DONN From owner-freebsd-bugs Tue Dec 23 00:20:06 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id AAA22517 for bugs-outgoing; Tue, 23 Dec 1997 00:20:06 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id AAA22477; Tue, 23 Dec 1997 00:20:02 -0800 (PST) (envelope-from gnats) Date: Tue, 23 Dec 1997 00:20:02 -0800 (PST) Message-Id: <199712230820.AAA22477@hub.freebsd.org> To: freebsd-bugs Cc: From: Kazutaka YOKOTA Subject: Re: misc/5367: Freeze after config Reply-To: Kazutaka YOKOTA Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR misc/5367; it has been noted by GNATS. From: Kazutaka YOKOTA To: david_hansen@ibm.net Cc: freebsd-gnats-submit@freebsd.org, yokota@zodiac.mech.utsunomiya-u.ac.jp Subject: Re: misc/5367: Freeze after config Date: Tue, 23 Dec 1997 17:24:59 +0900 >>Number: 5367 >>Category: misc >>Synopsis: Freeze after config >>Confidential: no >>Severity: critical >>Priority: low >>Responsible: freebsd-bugs >>State: open >>Class: sw-bug >>Submitter-Id: current-users >>Arrival-Date: Mon Dec 22 22:30:01 PST 1997 >>Last-Modified: >>Originator: David Hansen >>Organization: >>Release: 2.2.5 >>Environment: >haven't gotten that far >>Description: >After the initial installation device configuration, the machine >freezes. This is after one of the very initial menus during >beginning installation. The visual device editor as well as the command >line based one both fail. The visual one fails after the exit/save >and the command line one fails after the exit. I would assume these >are exactly equal points as far as the machine is concerned. After >trying to save the floppy drive is accessed once and the HD is accessed >on additional time as well. The machine is not just busy, time will not >fix the problem. The machine is an IBM Aptiva S64 with 48MB RAM and a >real Intel NON-MMX P166. Which devices do you enable/disable in the configuration menu? Did you by any chance disable sc0? It's the console driver without which FreeBSD cannot show anything on the display. Kazu From owner-freebsd-bugs Tue Dec 23 07:20:03 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id HAA13081 for bugs-outgoing; Tue, 23 Dec 1997 07:20:03 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id HAA13046; Tue, 23 Dec 1997 07:20:01 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 23 Dec 1997 07:20:01 -0800 (PST) Resent-Message-Id: <199712231520.HAA13046@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, jose@we.lc.ehu.es Received: (from nobody@localhost) by hub.freebsd.org (8.8.7/8.8.7) id HAA12601; Tue, 23 Dec 1997 07:11:25 -0800 (PST) (envelope-from nobody) Message-Id: <199712231511.HAA12601@hub.freebsd.org> Date: Tue, 23 Dec 1997 07:11:25 -0800 (PST) From: jose@we.lc.ehu.es To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: bin/5368: the behavior of isprint(3) is not affected by ISO-8859-1 locale settings Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5368 >Category: bin >Synopsis: the behavior of isprint(3) is not affected by ISO-8859-1 locale settings >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 23 07:20:00 PST 1997 >Last-Modified: >Originator: Jose M. Alcaide >Organization: Universidad del Pais Vasco - Dept. Electricidad y Electronica >Release: 2.2.5-RELEASE >Environment: FreeBSD tiburon.we.lc.ehu.es 2.2.5-RELEASE FreeBSD 2.2.5-RELEASE #0: Wed Oct 29 15:20:18 CET 1997 root@tiburon.we.lc.ehu.es:/usr/src/sys/compile/TIBURON i386 >Description: The setlocale(3) manual page says: ... LC_CTYPE Set a locale for the ctype(3), mbrune(3), multibyte(3) and rune(3) functions. This controls recognition of upper and lower case, alphabetic or non-alphabetic characters, and so on. The real work is done by the setrunelocale() function. ... However, if LANG is set to any locale that uses ISO-8859-1 character coding, then isprint(c), where c is any printable char such as ñ, é, ¡, ¿, and so on, returns 0 (not printable). The incorrect behavior of isprint() affects vi(1). This editor relies on isprint() to decide whether to display a character "as is", or substitute it for its hex coding (\xDD). >How-To-Repeat: Edit and compile the following tiny program: -------------------------------- #include #include #include main() { char c, *s; printf("Old locale: %s\n", setlocale(LC_CTYPE, NULL)); if ((s = setlocale(LC_CTYPE, "")) == NULL) { fprintf(stderr, "setlocale() failed.\n"); exit(1); } else printf("New locale: %s\n", s); printf("Type any string ended by RETURN: "); while ((c = getchar()) != '\n') printf("%c: %s\n", c, isprint(c) ? "PRINTABLE" : "UNPRINTABLE"); exit(0); } ------------------------------------- Then, set the LANG environment variable: LANG=es_ES.ISO_8859-1; export LANG or setenv LANG es_ES.ISO_8859-1 Next, run the program: jose@tiburon[~]$ ./a.out Old locale: C New locale: es_ES.ISO_8859-1 Type any string ended by RETURN: ñÑéÉ¡¿aeiou ñ: UNPRINTABLE Ñ: UNPRINTABLE é: UNPRINTABLE É: UNPRINTABLE ¡: UNPRINTABLE ¿: UNPRINTABLE a: PRINTABLE e: PRINTABLE i: PRINTABLE o: PRINTABLE u: PRINTABLE The result is obvious: isprint() does not recognise as printable ISO-8859-1 characters which _are_ printable in that locale. >Fix: None. >Audit-Trail: >Unformatted: From owner-freebsd-bugs Tue Dec 23 07:50:05 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id HAA15325 for bugs-outgoing; Tue, 23 Dec 1997 07:50:05 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id HAA15310; Tue, 23 Dec 1997 07:50:01 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 23 Dec 1997 07:50:01 -0800 (PST) Resent-Message-Id: <199712231550.HAA15310@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, mi@aldan.algebra.com Received: from aldan.ziplink.net (mi@kot.ne.mediaone.net [24.128.29.55]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id HAA15192 for ; Tue, 23 Dec 1997 07:47:48 -0800 (PST) (envelope-from mi@rtfm.ziplink.net) Received: from rtfm.ziplink.net (rtfm [199.232.255.52]) by aldan.ziplink.net (8.8.7/8.8.7) with ESMTP id KAA11399 for ; Tue, 23 Dec 1997 10:46:10 GMT (envelope-from mi@rtfm.ziplink.net) Received: (from root@localhost) by rtfm.ziplink.net (8.8.8/8.8.5) id KAA08410; Tue, 23 Dec 1997 10:48:20 -0500 (EST) Message-Id: <199712231548.KAA08410@rtfm.ziplink.net> Date: Tue, 23 Dec 1997 10:48:20 -0500 (EST) From: root@rtfm.ziplink.net Reply-To: mi@aldan.algebra.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: misc/5369: ordinary user cannot ``buildworld'' Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5369 >Category: misc >Synopsis: Even though ``buildworld'' does not install, you must ``su'' >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 23 07:50:01 PST 1997 >Last-Modified: >Originator: Mikhail Teterin >Organization: Virtual Estates, Inc. >Release: FreeBSD 3.0-971208-SNAP i386 >Environment: >Description: The ``buildworld'' target tries to ``install'' some files as bin.bin into the /usr/obj . That fails unless the user is root. SU privileges should only be neccessary to do ``make installworld''. >How-To-Repeat: As an ordinary user cd /usr/src make buildworld .... < watch permission denied errors > >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-bugs Tue Dec 23 08:00:04 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id IAA15979 for bugs-outgoing; Tue, 23 Dec 1997 08:00:04 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id IAA15957; Tue, 23 Dec 1997 08:00:01 -0800 (PST) (envelope-from gnats) Date: Tue, 23 Dec 1997 08:00:01 -0800 (PST) Message-Id: <199712231600.IAA15957@hub.freebsd.org> To: freebsd-bugs Cc: From: Cy Schubert - ITSD Open Systems Group Subject: Re: kern/5355: Fix for NULLFS problems Reply-To: Cy Schubert - ITSD Open Systems Group Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR kern/5355; it has been noted by GNATS. From: Cy Schubert - ITSD Open Systems Group To: Bruce Evans Cc: cschuber@uumail.gov.bc.ca, cy@passer.osg.gov.bc.ca, freebsd-gnats-submit@freebsd.org Subject: Re: kern/5355: Fix for NULLFS problems Date: Tue, 23 Dec 1997 07:59:26 -0800 Bruce, you're right. Nullfs and umapfs don't have support for mmap. A lot of work needs to be put into nullfs and umapfs to make them support this (just like unionfs). Regards, Phone: (250)387-8437 Cy Schubert Fax: (250)387-5766 UNIX Support OV/VM: BCSC02(CSCHUBER) ITSD BITNET: CSCHUBER@BCSC02.BITNET Government of BC Internet: cschuber@uumail.gov.bc.ca Cy.Schubert@gems8.gov.bc.ca "Quit spooling around, JES do it." > >Would it be a good idea to to have a panic() or a printf() where I return a > >FALSE? I'm torn between providing better diagnostic messages and reducing > >kernel bloat. By doing a printf() or panic() any author of a filesystem wou ld > >know that he would need to do some work on his code. > > I think you have to trust the [author of] the filesystem. There are many > other details that must be right, and this particular mistake probably > won't be made again. > > Bruce > From owner-freebsd-bugs Tue Dec 23 08:10:03 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id IAA16748 for bugs-outgoing; Tue, 23 Dec 1997 08:10:03 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id IAA16738; Tue, 23 Dec 1997 08:10:01 -0800 (PST) (envelope-from gnats) Date: Tue, 23 Dec 1997 08:10:01 -0800 (PST) Message-Id: <199712231610.IAA16738@hub.freebsd.org> To: freebsd-bugs Cc: From: "Jordan K. Hubbard" Subject: Re: misc/5367: Freeze after config Reply-To: "Jordan K. Hubbard" Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR misc/5367; it has been noted by GNATS. From: "Jordan K. Hubbard" To: david_hansen@ibm.net Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: misc/5367: Freeze after config Date: Tue, 23 Dec 1997 08:06:44 -0800 > After the initial installation device configuration, the machine > freezes. This is after one of the very initial menus during You didn't do something terminally silly like delete sc0 or anything, did you? From owner-freebsd-bugs Tue Dec 23 08:14:56 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id IAA17202 for bugs-outgoing; Tue, 23 Dec 1997 08:14:56 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id IAA17027; Tue, 23 Dec 1997 08:13:58 -0800 (PST) (envelope-from max@FreeBSD.org) From: Masafumi NAKANE Received: (from max@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id IAA11027; Tue, 23 Dec 1997 08:10:23 -0800 (PST) Date: Tue, 23 Dec 1997 08:10:23 -0800 (PST) Message-Id: <199712231610.IAA11027@freefall.freebsd.org> To: max@FreeBSD.ORG, gnats-admin@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: pending/5365 Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Old Synopsis: New Synopsis: problem with /etc/weelky Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: max Responsible-Changed-When: Tue Dec 23 08:08:29 PST 1997 Responsible-Changed-Why: Misfiled PR. From owner-freebsd-bugs Tue Dec 23 09:00:20 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id JAA20350 for bugs-outgoing; Tue, 23 Dec 1997 09:00:20 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: from hwcn.org (main.hwcn.org [199.212.94.65]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id JAA20337 for ; Tue, 23 Dec 1997 09:00:13 -0800 (PST) (envelope-from hoek@hwcn.org) Received: from james.freenet.hamilton.on.ca (ac199@james.hwcn.org [199.212.94.66]) by hwcn.org (8.8.7/8.8.7) with ESMTP id MAA08465; Tue, 23 Dec 1997 12:00:39 -0500 (EST) Received: from localhost (ac199@localhost) by james.freenet.hamilton.on.ca (8.8.7/8.8.7) with SMTP id MAA21194; Tue, 23 Dec 1997 12:01:20 -0500 (EST) X-Authentication-Warning: james.freenet.hamilton.on.ca: ac199 owned process doing -bs Date: Tue, 23 Dec 1997 12:01:20 -0500 (EST) From: Tim Vanderhoek X-Sender: ac199@james.freenet.hamilton.on.ca To: Donn Miller cc: bugs@FreeBSD.ORG Subject: Re: m4 macros in /usr/bin out of date? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Tue, 23 Dec 1997, Donn Miller wrote: > I believe the m4 macro package in freebsd 2.2.5 is out of date. When I > rebuild my system with make world, and then use autoconf, I get a message > saying that a later version is required. So then I grab the newest > release of m4 from ftp.cdrom.com:/pub/gnu, compile this, install, and > then everything works OK. I just wanted the developers to know in case > this component needs updating. Autoconf requires specifically the gnu m4. If you use the autoconf port, the dependencies should all work themselves out. -- Outnumbered? Maybe. Outspoken? Never! tIM...HOEk From owner-freebsd-bugs Tue Dec 23 12:30:04 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id MAA05442 for bugs-outgoing; Tue, 23 Dec 1997 12:30:04 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id MAA05434; Tue, 23 Dec 1997 12:30:02 -0800 (PST) (envelope-from gnats) Date: Tue, 23 Dec 1997 12:30:02 -0800 (PST) Message-Id: <199712232030.MAA05434@hub.freebsd.org> To: freebsd-bugs Cc: From: John-Mark Gurney Subject: Re: misc/5369: ordinary user cannot ``buildworld'' Reply-To: John-Mark Gurney Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR misc/5369; it has been noted by GNATS. From: John-Mark Gurney To: mi@aldan.algebra.com Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: misc/5369: ordinary user cannot ``buildworld'' Date: Tue, 23 Dec 1997 12:26:54 -0800 root@rtfm.ziplink.net scribbled this message on Dec 23: > >Description: > > The ``buildworld'' target tries to ``install'' some files > as bin.bin into the /usr/obj . That fails unless the user > is root. SU privileges should only be neccessary to do > ``make installworld''. > > >How-To-Repeat: > > As an ordinary user > cd /usr/src > make buildworld > .... > < watch permission denied errors > one way to get around this is to override the owner/groups of the installed stuff... I run the command: time -l make $* buildworld BINGRP=admin BINOWN=jmg TMACOWN=jmg TMACGRP=admin \ SHAREOWN=jmg SHAREGRP=admin -DNOINFO -DNOPROFILE -DNOTCL -DNOTERMCAP but there are some other parts of the tree that hard code the owner/group that change be changed, so I still run buildworld from root... I haven't had time to track down the neccessary changes to get it completely working... -- John-Mark Gurney Modem/FAX: +1 541 683 6954 Cu Networking P.O. Box 5693, 97405 Live in Peace, destroy Micro$oft, support free software, run FreeBSD From owner-freebsd-bugs Tue Dec 23 12:50:04 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id MAA06846 for bugs-outgoing; Tue, 23 Dec 1997 12:50:04 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id MAA06830; Tue, 23 Dec 1997 12:50:00 -0800 (PST) (envelope-from gnats) Date: Tue, 23 Dec 1997 12:50:00 -0800 (PST) Message-Id: <199712232050.MAA06830@hub.freebsd.org> To: freebsd-bugs Cc: From: j@uriah.heep.sax.de (J Wunsch) Subject: Re: kern/5362: mount incorrectly reports / as an NFS export Reply-To: j@uriah.heep.sax.de (J Wunsch) Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR kern/5362; it has been noted by GNATS. From: j@uriah.heep.sax.de (J Wunsch) To: freebsd-gnats-submit@freebsd.org Cc: akm@sneaker.net.au Subject: Re: kern/5362: mount incorrectly reports / as an NFS export Date: Tue, 23 Dec 1997 21:29:23 +0100 (MET) akm@sneaker.net.au wrote: > mount incorrectly reports / as being NFS exported when /cdrom is > present in /exports but has not yet been mounted. This tends to scare > people until they realise what has gone wrong :-) ....but it is technically absolutely correct. Look, you've mentioned /cdrom in your exports file, and by the time you look at the actual state of the filesystem, this means you have exported your root filesystem, with the restriction that only /cdrom (which is part of the root filesystem) is allowed to be mounted. Anyone is free to NFS-mount this (hopefully empty) directory. Another incarnation of this same problem (with a more annoying error message) occurs if you export something else that's in your root filesystem earlier in the same exports file. With /cdrom not being mounted yet, this means you've got two lines referring to the root filesystem, which is an error. Maybe this can be changed by a new flag for export(5), something that specifies that a particular entry is only meant to be exported in case it's the root of a mounted filesystem. -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-bugs Tue Dec 23 20:00:04 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id UAA07436 for bugs-outgoing; Tue, 23 Dec 1997 20:00:04 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id UAA07417; Tue, 23 Dec 1997 20:00:01 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 23 Dec 1997 20:00:01 -0800 (PST) Resent-Message-Id: <199712240400.UAA07417@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, Matthew Hunt Received: from mph124.rh.psu.edu (mph@i.cant.think.of.a.cool.hostname.ending.in.rsd.jtwn.k12.pa.us [147.160.218.4]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id TAA06774 for ; Tue, 23 Dec 1997 19:48:01 -0800 (PST) (envelope-from mph@mph124.rh.psu.edu) Received: (from mph@localhost) by mph124.rh.psu.edu (8.8.8/8.8.8) id VAA08456; Tue, 23 Dec 1997 21:22:35 -0500 (EST) (envelope-from mph) Message-Id: <199712240222.VAA08456@mph124.rh.psu.edu> Date: Tue, 23 Dec 1997 21:22:35 -0500 (EST) From: Matthew Hunt To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: docs/5373: Minor telnet.1 fixes Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5373 >Category: docs >Synopsis: Minor telnet.1 fixes >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 23 20:00:00 PST 1997 >Last-Modified: >Originator: Matthew Hunt >Organization: none >Release: FreeBSD 2.2.5-STABLE i386 >Environment: FreeBSD mph124.rh.psu.edu 2.2.5-STABLE FreeBSD 2.2.5-STABLE #1: Fri Dec 19 11:07:21 EST 1997 hunt@mph124.rh.psu.edu:/usr/src/sys/compile/WOPR i386 $Id: telnet.1,v 1.3.2.2 1997/08/18 07:08:03 charnier Exp $ >Description: Minor typographical errors in telnet.1 man page. >How-To-Repeat: "man telnet" while bored and picky. >Fix: I think the following changes are correct, but I am new to writing man pages. Review and commit. --- /usr/src/usr.bin/telnet/telnet.1 Tue Aug 19 14:17:07 1997 +++ telnet.1 Tue Dec 23 21:05:44 1997 @@ -51,7 +51,7 @@ .Op Fl n Ar tracefile .Oo .Ar host -.Op port +.Op Ar port .Oc .Sh DESCRIPTION The @@ -133,7 +133,7 @@ Sets the initial .Nm escape character to -.Ar escape char. +.Ar escape char . If .Ar escape char is omitted, then @@ -148,8 +148,9 @@ option requests that .Nm obtain tickets for the remote host in -realm realm instead of the remote host's realm, as determined -by +realm +.Ar realm +instead of the remote host's realm, as determined by .Xr krb_realmofhost 3 . .It Fl l Ar user When connecting to the remote system, if the remote system @@ -240,7 +241,7 @@ .Ic localchars toggle is .Dv TRUE -(the default for \*(Lqold line by line\*(Lq; see below), +(the default for \*(Lqold line by line\*(Rq; see below), the user's .Ic quit , .Ic intr , @@ -486,13 +487,13 @@ .Dv TELNET LINEMODE option, or, if the remote side does not understand the .Dv LINEMODE -option, then enter \*(Lqcharacter at a time\*(Lq mode. +option, then enter \*(Lqcharacter at a time\*(Rq mode. .It Ic line Enable the .Dv TELNET LINEMODE option, or, if the remote side does not understand the .Dv LINEMODE -option, then attempt to enter \*(Lqold-line-by-line\*(Lq mode. +option, then attempt to enter \*(Lqold-line-by-line\*(Rq mode. .It Ic isig Pq Ic \-isig Attempt to enable (disable) the .Dv TRAPSIG @@ -748,7 +749,7 @@ sequence (see .Ic send ayt preceding) is sent to the -remote host. The initial value for the "Are You There" +remote host. The initial value for the \*(LqAre You There\*(Rq character is the terminal's status character. .It Ic echo This is the value (initially \*(Lq^E\*(Rq) which, when in @@ -881,7 +882,7 @@ .Nm telnet is operating in .Dv LINEMODE -or \*(Lqold line by line\*(Lq mode, then this character is taken to +or \*(Lqold line by line\*(Rq mode, then this character is taken to be the terminal's .Ic lnext character. @@ -916,7 +917,7 @@ .Nm is operating in .Dv LINEMODE -or \*(Lqold line by line\*(Lq mode, then this character is taken to +or \*(Lqold line by line\*(Rq mode, then this character is taken to be the terminal's .Ic reprint character. @@ -997,7 +998,7 @@ .Nm is operating in .Dv LINEMODE -or \*(Lqold line by line\*(Lq mode, then this character is taken to +or \*(Lqold line by line\*(Rq mode, then this character is taken to be the terminal's .Ic worderase character. >Audit-Trail: >Unformatted: From owner-freebsd-bugs Tue Dec 23 21:31:51 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id VAA11109 for bugs-outgoing; Tue, 23 Dec 1997 21:31:51 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id VAA11098 for ; Tue, 23 Dec 1997 21:31:46 -0800 (PST) (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id QAA04824; Wed, 24 Dec 1997 16:28:44 +1100 Date: Wed, 24 Dec 1997 16:28:44 +1100 From: Bruce Evans Message-Id: <199712240528.QAA04824@godzilla.zeta.org.au> To: freebsd-bugs@hub.freebsd.org, gurney_j@efn.org Subject: Re: misc/5369: ordinary user cannot ``buildworld'' Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > one way to get around this is to override the owner/groups of the > installed stuff... I run the command: > time -l make $* buildworld BINGRP=admin BINOWN=jmg TMACOWN=jmg TMACGRP=admin \ > SHAREOWN=jmg SHAREGRP=admin -DNOINFO -DNOPROFILE -DNOTCL -DNOTERMCAP > > but there are some other parts of the tree that hard code the owner/group > that change be changed, so I still run buildworld from root... I haven't > had time to track down the neccessary changes to get it completely working... I fixed most of them a few days ago. mtree still fails to set lots of ownerships, but the error handling is sloppy enough for this not to be noticed. Bruce From owner-freebsd-bugs Wed Dec 24 02:00:06 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id CAA27198 for bugs-outgoing; Wed, 24 Dec 1997 02:00:06 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id CAA27153; Wed, 24 Dec 1997 02:00:02 -0800 (PST) (envelope-from gnats) Resent-Date: Wed, 24 Dec 1997 02:00:02 -0800 (PST) Resent-Message-Id: <199712241000.CAA27153@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, Studded@dal.net Received: from dt051n19.san.rr.com (root@dt051n19.san.rr.com [204.210.32.25]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id BAA27024 for ; Wed, 24 Dec 1997 01:58:04 -0800 (PST) (envelope-from dougdougdougdoug@dt051n19.san.rr.com) Received: (from root@localhost) by dt051n19.san.rr.com (8.8.8/8.8.8) id SAA11907; Tue, 23 Dec 1997 18:37:12 -0800 (PST) (envelope-from dougdougdougdoug) Message-Id: <199712240237.SAA11907@dt051n19.san.rr.com> Date: Tue, 23 Dec 1997 18:37:12 -0800 (PST) From: Studded@dal.net Reply-To: Studded@dal.net To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: misc/5374: One more /etc/sysconfig reference Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5374 >Category: misc >Synopsis: One more /etc/sysconfig reference >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Wed Dec 24 02:00:01 PST 1997 >Last-Modified: >Originator: Studded >Organization: Just me :) >Release: FreeBSD 2.2.5-STABLE i386 >Environment: All FreeBSD systems >Description: There is one last(?) reference to /etc/sysconfig in /usr/src/release/sysinstall/help/configure.hlp. At least according to my 'grep -iR sysconfig *' in /usr/src. :) Someone might want to do the same in -Current just to be sure. >How-To-Repeat: >Fix: Apply this teeny tiny patch. :) *** configure.hlp.DIST Tue Dec 23 18:14:55 1997 --- configure.hlp Tue Dec 23 18:15:15 1997 *************** *** 7,10 **** For setting the timezone after the system is installed, type ``tzsetup''. For more information on the overall general system ! configuration, see the ``/etc/sysconfig'' file. --- 7,10 ---- For setting the timezone after the system is installed, type ``tzsetup''. For more information on the overall general system ! configuration, see the ``/etc/rc.conf'' file. >Audit-Trail: >Unformatted: From owner-freebsd-bugs Wed Dec 24 04:34:14 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id EAA05032 for bugs-outgoing; Wed, 24 Dec 1997 04:34:14 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: from nttest.tiesseci.it ([194.243.101.144]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id EAA05010; Wed, 24 Dec 1997 04:33:49 -0800 (PST) (envelope-from marketing@tiesseci.it) Date: Wed, 24 Dec 1997 04:33:49 -0800 (PST) From: marketing@tiesseci.it Message-Id: <199712241233.EAA05010@hub.freebsd.org> Received: from tiesseci.it ([194.243.101.189]) by nttest.tiesseci.it (Post.Office MTA v3.1.2 release (PO205-101c) ID# 0-0U10L2S100) with SMTP id ABG190; Wed, 24 Dec 1997 19:30:54 +0100 To: marketing@tiesseci.it Subject: Radio Automation Software & Broadca Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Dear Radio Station We are tiesseci , a G.E.inc division Do you have our FREE full working RADIO AUTOMATION SOFTWARE? If not please visit our web site at http://www.tiesseci.it and request the FREE TS35 Radio Automation Software CD-Rom Also on our web : - Radio Automation Software - DIGITAL AUDIO PROCESSORS - INTERNET RADIO software - Studio Broadcast Equipment - Two REAL VIDEO on-air live radio stations to show you how our TS35 software does radio - Daily Broadcast News Channel ( Free subscribe ) please visit http://www.tiesseci.it Merry Christmas and happy new year ! thank you G.E. inc / marketing dept. ---------------------------------------------------------- If you would rather not receive further e-mail from tiesseci about Broadcast News, please send blank e-mail with REMOVE as subject and REMOVE in the body of the message. mailto:marketing@tiesseci.it ---------------------------------------------------------- please do not add any comment or your address will be not automatically removed thank you From owner-freebsd-bugs Wed Dec 24 16:17:26 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id QAA12063 for bugs-outgoing; Wed, 24 Dec 1997 16:17:26 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id QAA12051; Wed, 24 Dec 1997 16:17:06 -0800 (PST) (envelope-from helbig@FreeBSD.org) From: Wolfgang Helbig Received: (from helbig@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id QAA08409; Wed, 24 Dec 1997 16:13:20 -0800 (PST) Date: Wed, 24 Dec 1997 16:13:20 -0800 (PST) Message-Id: <199712250013.QAA08409@freefall.freebsd.org> To: jose@we.lc.ehu.es, helbig@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/5368 Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: the behavior of isprint(3) is not affected by ISO-8859-1 locale settings State-Changed-From-To: open-closed State-Changed-By: helbig State-Changed-When: Wed Dec 24 16:03:30 PST 1997 State-Changed-Why: This is an error of the supplied program, not isprint(3). The parameter passed to isprint(3) is declared as char, which will be converted to int. Because of sign extension this results in negative values for chars greater than 127. So just declare "int c" instead of "char c" and everything will work as expected. From owner-freebsd-bugs Wed Dec 24 21:13:36 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id VAA22947 for bugs-outgoing; Wed, 24 Dec 1997 21:13:36 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from alex@localhost) by hub.freebsd.org (8.8.7/8.8.7) id VAA22923; Wed, 24 Dec 1997 21:13:31 -0800 (PST) (envelope-from alex) Date: Wed, 24 Dec 1997 21:13:31 -0800 (PST) From: Alex Nash Message-Id: <199712250513.VAA22923@hub.freebsd.org> To: efrias@functional.com, alex, freebsd-bugs Subject: Re: docs/4320 Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: function prototype in pthread_detach man page incorrect State-Changed-From-To: open-closed State-Changed-By: alex State-Changed-When: Wed Dec 24 21:10:45 PST 1997 State-Changed-Why: The implementation has been modified to conform with the manpage (which matches POSIX). pthread.h rev 1.7 uthread_detach.c rev 1.4 From owner-freebsd-bugs Wed Dec 24 21:31:40 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id VAA23671 for bugs-outgoing; Wed, 24 Dec 1997 21:31:40 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from alex@localhost) by hub.freebsd.org (8.8.7/8.8.7) id VAA23648; Wed, 24 Dec 1997 21:31:29 -0800 (PST) (envelope-from alex) Date: Wed, 24 Dec 1997 21:31:29 -0800 (PST) From: Alex Nash Message-Id: <199712250531.VAA23648@hub.freebsd.org> To: mikk0022@maroon.tc.umn.edu, alex, freebsd-bugs Subject: Re: misc/4908 Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: pthread_cond_wait doesn't State-Changed-From-To: open-analyzed State-Changed-By: alex State-Changed-When: Wed Dec 24 21:28:36 PST 1997 State-Changed-Why: I'm not able to duplicate this bug under 2.2.5-STABLE or 3.0-CURRENT. The submitter has been asked to supply an example program which demonstrates the bug. From owner-freebsd-bugs Thu Dec 25 01:47:08 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id BAA03387 for bugs-outgoing; Thu, 25 Dec 1997 01:47:08 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id BAA03375; Thu, 25 Dec 1997 01:46:58 -0800 (PST) (envelope-from hoek@FreeBSD.org) From: Tim Vanderhoek Received: (from hoek@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id BAA11225; Thu, 25 Dec 1997 01:43:09 -0800 (PST) Date: Thu, 25 Dec 1997 01:43:09 -0800 (PST) Message-Id: <199712250943.BAA11225@freefall.freebsd.org> To: h-nokubi@nmit.mt.nec.co.jp, hoek@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/2412 Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Wine does not work State-Changed-From-To: open-closed State-Changed-By: hoek State-Changed-When: Thu Dec 25 01:41:10 PST 1997 State-Changed-Why: Configure your kernel with "options USER_LDT". See the handbook on how to do this (options USER_LDT is not compiled-in by default). From owner-freebsd-bugs Thu Dec 25 02:10:05 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id CAA04370 for bugs-outgoing; Thu, 25 Dec 1997 02:10:05 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id CAA04364; Thu, 25 Dec 1997 02:10:01 -0800 (PST) (envelope-from gnats) Date: Thu, 25 Dec 1997 02:10:01 -0800 (PST) Message-Id: <199712251010.CAA04364@hub.freebsd.org> To: freebsd-bugs Cc: From: hoek@FreeBSD.ORG Subject: Re: misc/5032: something strange Reply-To: hoek@FreeBSD.ORG Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR misc/5032; it has been noted by GNATS. From: hoek@FreeBSD.ORG To: freebsd-gnats-submit@freebsd.org, u8636075@mis Cc: Subject: Re: misc/5032: something strange Date: Thu, 25 Dec 1997 05:00:27 -0500 (EST) >2)When compiling KDE beta1,sometimes system will hangs for a second,then > a panic message displayed.Below is the message: > >Fatal trap 12:Page fault while in kernel mode Do you get the same panic and message everytime? From owner-freebsd-bugs Thu Dec 25 02:35:27 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id CAA05317 for bugs-outgoing; Thu, 25 Dec 1997 02:35:27 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id CAA05311; Thu, 25 Dec 1997 02:35:18 -0800 (PST) (envelope-from hoek@FreeBSD.org) From: Tim Vanderhoek Received: (from hoek@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id CAA11483; Thu, 25 Dec 1997 02:31:29 -0800 (PST) Date: Thu, 25 Dec 1997 02:31:29 -0800 (PST) Message-Id: <199712251031.CAA11483@freefall.freebsd.org> To: grog@lemis.com, hoek@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/4943 Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: After running /stand/sysinstall from command line, /etc/rc.conf is corrupted State-Changed-From-To: open-closed State-Changed-By: hoek State-Changed-When: Thu Dec 25 02:28:40 PST 1997 State-Changed-Why: This was a known bug in 2.2.2 sysinstall. You must have upgraded to 2.2.5 without upgrading /stand specifically. From owner-freebsd-bugs Thu Dec 25 02:39:18 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id CAA05506 for bugs-outgoing; Thu, 25 Dec 1997 02:39:18 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id CAA05490; Thu, 25 Dec 1997 02:39:14 -0800 (PST) (envelope-from hoek@FreeBSD.org) From: Tim Vanderhoek Received: (from hoek@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id CAA11639; Thu, 25 Dec 1997 02:35:24 -0800 (PST) Date: Thu, 25 Dec 1997 02:35:24 -0800 (PST) Message-Id: <199712251035.CAA11639@freefall.freebsd.org> To: evanc@synapse.net, hoek@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/5051 Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Upgrade tcl to release version State-Changed-From-To: open-closed State-Changed-By: hoek State-Changed-When: Thu Dec 25 02:33:50 PST 1997 State-Changed-Why: Tcl has been upgraded. From owner-freebsd-bugs Thu Dec 25 02:40:02 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id CAA05592 for bugs-outgoing; Thu, 25 Dec 1997 02:40:02 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id CAA05574; Thu, 25 Dec 1997 02:40:00 -0800 (PST) (envelope-from gnats) Date: Thu, 25 Dec 1997 02:40:00 -0800 (PST) Message-Id: <199712251040.CAA05574@hub.freebsd.org> To: freebsd-bugs Cc: From: hoek@FreeBSD.ORG Subject: Re: misc/3460: Lots of stuff still refernces /etc/sysconfig Reply-To: hoek@FreeBSD.ORG Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR misc/3460; it has been noted by GNATS. From: hoek@FreeBSD.ORG To: freebsd-gnats-submit@freebsd.org, root@cola97.scsn.net Cc: Subject: Re: misc/3460: Lots of stuff still refernces /etc/sysconfig Date: Thu, 25 Dec 1997 05:29:42 -0500 (EST) >contrib/ipfilter/NAT.FreeBSD This is the only one still referencing /etc/sysconfig. From owner-freebsd-bugs Thu Dec 25 03:09:41 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id DAA06582 for bugs-outgoing; Thu, 25 Dec 1997 03:09:41 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: from helios.dnttm.ru (root@dnttm.wave.ras.ru [194.85.104.197]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id DAA06544; Thu, 25 Dec 1997 03:09:28 -0800 (PST) (envelope-from dima@tejblum.dnttm.rssi.ru) Received: (from uucp@localhost) by helios.dnttm.ru (8.8.5/8.8.5/IP-3) with UUCP id OAA16282; Thu, 25 Dec 1997 14:07:08 +0300 Received: from tejblum.dnttm.rssi.ru (localhost [127.0.0.1]) by tejblum.dnttm.rssi.ru (8.8.8/8.8.7) with ESMTP id OAA01607; Thu, 25 Dec 1997 14:09:24 +0300 (MSK) (envelope-from dima@tejblum.dnttm.rssi.ru) Message-Id: <199712251109.OAA01607@tejblum.dnttm.rssi.ru> X-Mailer: exmh version 2.0gamma 1/27/96 To: Tim Vanderhoek cc: h-nokubi@nmit.mt.nec.co.jp, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/2412 In-reply-to: Your message of "Thu, 25 Dec 1997 01:43:09 PST." <199712250943.BAA11225@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 25 Dec 1997 14:09:23 +0300 From: Dmitrij Tejblum Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Tim Vanderhoek wrote: > Synopsis: Wine does not work > > State-Changed-From-To: open-closed > State-Changed-By: hoek > State-Changed-When: Thu Dec 25 01:41:10 PST 1997 > State-Changed-Why: > Configure your kernel with "options USER_LDT". See the handbook on how > to do this (options USER_LDT is not compiled-in by default). > I don't think it is correct answer. Did you looked to the 'Fix:' in this PR? USER_LDT is a 'new style' option that go in opt_user_ldt.h. Files sys/i386/i386/machdep.c sys/i386/i386/vm_machdep.c sys/pc98/i386/machdep.c contains #ifdef USER_LDT, but don't contain #include "opt_user_ldt.h". So, apparently, the ifdefed code in these files never work. I have no idea about purpose of the ifdefed code and LDT itself or why Wine work for most people, but it looks very suspicious. Dima From owner-freebsd-bugs Thu Dec 25 03:32:18 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id DAA07635 for bugs-outgoing; Thu, 25 Dec 1997 03:32:18 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id DAA07625; Thu, 25 Dec 1997 03:32:09 -0800 (PST) (envelope-from hoek@FreeBSD.org) From: Tim Vanderhoek Received: (from hoek@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id DAA12227; Thu, 25 Dec 1997 03:28:19 -0800 (PST) Date: Thu, 25 Dec 1997 03:28:19 -0800 (PST) Message-Id: <199712251128.DAA12227@freefall.freebsd.org> To: myoung@scaleable.com, hoek@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: docs/5318 Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Out-of-date Web page State-Changed-From-To: open-closed State-Changed-By: hoek State-Changed-When: Thu Dec 25 03:27:00 PST 1997 State-Changed-Why: Fixed, thanks! (allow time for the updated handbook to spread, please) From owner-freebsd-bugs Thu Dec 25 03:37:35 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id DAA07879 for bugs-outgoing; Thu, 25 Dec 1997 03:37:35 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: from ppp7265.on.bellglobal.com (ppp7265.on.bellglobal.com [206.172.249.233]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id DAA07874; Thu, 25 Dec 1997 03:37:29 -0800 (PST) (envelope-from hoek@FreeBSD.ORG) Received: from localhost (tim@localhost) by ppp7265.on.bellglobal.com (8.8.7/8.8.7) with SMTP id GAA24771; Thu, 25 Dec 1997 06:34:33 -0500 (EST) (envelope-from hoek@FreeBSD.ORG) X-Authentication-Warning: ppp7265.on.bellglobal.com: tim owned process doing -bs Date: Thu, 25 Dec 1997 06:34:32 -0500 (EST) From: Tim Vanderhoek X-Sender: tim@localhost Reply-To: Tim Vanderhoek To: Dmitrij Tejblum cc: Tim Vanderhoek , h-nokubi@nmit.mt.nec.co.jp, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/2412 In-Reply-To: <199712251109.OAA01607@tejblum.dnttm.rssi.ru> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Thu, 25 Dec 1997, Dmitrij Tejblum wrote: > I don't think it is correct answer. Did you looked to the 'Fix:' in this PR? > USER_LDT is a 'new style' option that go in opt_user_ldt.h. Files Well, I glanced over the 'Fix:'. Perhaps too briefly. :) ["Well, Wine works for me and my friends!"] > sys/i386/i386/machdep.c > sys/i386/i386/vm_machdep.c > sys/pc98/i386/machdep.c > contains #ifdef USER_LDT, but don't contain #include "opt_user_ldt.h". Rather than trying to guess wether the code is meant to be compiled or is just stale, I'll move it into feedback and just double-check that USER_LDT was supposed to have been configured. Is there someone specific responsible for the USER_LDT stuff who would be aware of potentially wrong code, or is it worth leaving the pr open just for that? -- tIM...HOEk OPTIMIZATION: the process of using many one-letter variables names hoping that the resultant code will run faster. From owner-freebsd-bugs Thu Dec 25 03:37:47 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id DAA07913 for bugs-outgoing; Thu, 25 Dec 1997 03:37:47 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id DAA07889; Thu, 25 Dec 1997 03:37:38 -0800 (PST) (envelope-from hoek@FreeBSD.org) From: Tim Vanderhoek Received: (from hoek@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id DAA12357; Thu, 25 Dec 1997 03:33:48 -0800 (PST) Date: Thu, 25 Dec 1997 03:33:48 -0800 (PST) Message-Id: <199712251133.DAA12357@freefall.freebsd.org> To: h-nokubi@nmit.mt.nec.co.jp, hoek@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/2412 Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Wine does not work State-Changed-From-To: closed-feedback State-Changed-By: hoek State-Changed-When: Thu Dec 25 03:31:54 PST 1997 State-Changed-Why: Allow originator chance to contest my judgement. ;-) From owner-freebsd-bugs Thu Dec 25 04:07:27 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id EAA08944 for bugs-outgoing; Thu, 25 Dec 1997 04:07:27 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: from TYO9.gate.nec.co.jp (TYO9.gate.nec.co.jp [203.180.98.35]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id EAA08939 for ; Thu, 25 Dec 1997 04:07:20 -0800 (PST) (envelope-from h-nokubi@p28.sss.abk.nec.co.jp) Received: from mailsv.nec.co.jp ([133.200.254.203]) by TYO9.gate.nec.co.jp (8.8.7+2.7Wbeta6/3.6Wbeta697112119) with ESMTP id VAA17959; Thu, 25 Dec 1997 21:07:17 +0900 (JST) Received: from ssse15.sss.abk.nec.co.jp (ssse15.sss.abk.nec.co.jp [133.206.64.65]) by mailsv.nec.co.jp (8.8.7+2.7Wbeta6/3.6Wbeta6-97112118) with ESMTP id VAA06902; Thu, 25 Dec 1997 21:07:16 +0900 (JST) Received: from sssfw.sss.abk.nec.co.jp (sssfw [133.206.64.1]) by ssse15.sss.abk.nec.co.jp (8.8.8+2.7Wbeta7/CF3.3W9-SSS_M950609) with ESMTP id VAA00770; Thu, 25 Dec 1997 21:06:39 +0900 (JST) Received: by sssfw.sss.abk.nec.co.jp (8.7.5+2.6Wbeta6/3.4W2) id UAA28202; Thu, 25 Dec 1997 20:07:12 +0900 (JST) Received: from p28.sss.abk.nec.co.jp by e2.sss.abk.nec.co.jp (8.7.6+2.6Wbeta7/3.3W9-NEC) id VAA26363; Thu, 25 Dec 1997 21:06:59 +0900 (JST) Received: from p28.sss.abk.nec.co.jp (localhost [127.0.0.1]) by p28.sss.abk.nec.co.jp (8.8.5/3.4W403/27/97) with ESMTP id VAA00980; Thu, 25 Dec 1997 21:06:59 +0900 (JST) Message-Id: <199712251206.VAA00980@p28.sss.abk.nec.co.jp> To: ac199@hwcn.org, freebsd-bugs@FreeBSD.ORG cc: h-nokubi@nmit.mt.nec.co.jp Subject: Re: kern/2412 "Wine does not work" From: h-nokubi@nmit.tmg.nec.co.jp In-reply-to: Your message of "Thu, 25 Dec 1997 06:39:40 EST." Mime-Version: 1.0 (generated by tm-edit 7.106) Content-Type: text/plain; charset=US-ASCII Date: Thu, 25 Dec 1997 21:06:58 +0900 Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > Date: Thu, 25 Dec 1997 06:39:40 -0500 (EST) > From: Tim Vanderhoek > Message-ID: > On Thu, 25 Dec 1997 hoek@hwcn.org wrote: > > > Fix > > > > > > src/sys/i386/i386/machdep.c and src/sys/i386/i386/vm_machdep.c need to include > > "opt_user_ldt.h". > > Asking perhaps the obvious, did you have "options USER_LDT" > configured in /sys/i386/conf/WHATEVER? Yes I did. But, recently (a month ago?) I installed newer Wine on newer FreeBSD again, and probably these modification is not needed. (I'm in office now, and I installed Wine on my home machine. So I can't verify it now.) I believe that when I sent PR, machdep.c and vm_machdep.c need to modify to include"opt_user_ldt.h". Probably, modifications to the other part of the kernel stale these code (#ifdef'ed code in machdep.c and vm_machdep.c) and, kern/2412 has no meaning now except that there are curious #ifdef'ed codes. So, I agree with following your message. > Date: Thu, 25 Dec 1997 06:34:32 -0500 (EST) > From: Tim Vanderhoek > Message-ID: > > sys/i386/i386/machdep.c > > sys/i386/i386/vm_machdep.c > > sys/pc98/i386/machdep.c > > contains #ifdef USER_LDT, but don't contain #include "opt_user_ldt.h". > > Rather than trying to guess wether the code is meant to be > compiled or is just stale, I'll move it into feedback and just > double-check that USER_LDT was supposed to have been configured. NOKUBI Hirotaka From owner-freebsd-bugs Thu Dec 25 20:11:43 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id UAA20338 for bugs-outgoing; Thu, 25 Dec 1997 20:11:43 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id UAA20330; Thu, 25 Dec 1997 20:11:33 -0800 (PST) (envelope-from hoek@FreeBSD.org) From: Tim Vanderhoek Received: (from hoek@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id UAA04756; Thu, 25 Dec 1997 20:07:37 -0800 (PST) Date: Thu, 25 Dec 1997 20:07:37 -0800 (PST) Message-Id: <199712260407.UAA04756@freefall.freebsd.org> To: archie@whistle.com, hoek@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/5225 Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: in vi, after failed search, then ctrl-z, text is inverted State-Changed-From-To: open-closed State-Changed-By: hoek State-Changed-When: Thu Dec 25 20:05:24 PST 1997 State-Changed-Why: Dup of bin/4923 "vi leaves the screen in standout mode", which also has a follow-up. From owner-freebsd-bugs Thu Dec 25 20:23:00 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id UAA20921 for bugs-outgoing; Thu, 25 Dec 1997 20:23:00 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id UAA20899; Thu, 25 Dec 1997 20:22:07 -0800 (PST) (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id PAA06178; Fri, 26 Dec 1997 15:11:23 +1100 Date: Fri, 26 Dec 1997 15:11:23 +1100 From: Bruce Evans Message-Id: <199712260411.PAA06178@godzilla.zeta.org.au> To: dima@tejblum.dnttm.rssi.ru, hoek@FreeBSD.ORG Subject: Re: kern/2412 Cc: freebsd-bugs@FreeBSD.ORG, h-nokubi@nmit.mt.nec.co.jp Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Rather than trying to guess wether the code is meant to be >compiled or is just stale, I'll move it into feedback and just >double-check that USER_LDT was supposed to have been configured. > >Is there someone specific responsible for the USER_LDT stuff who >would be aware of potentially wrong code, or is it worth leaving >the pr open just for that? No one specific is responsible, but USER_LDT is obviously quite broken without the option being visible. fork(), exec() and exit() are broken. fork()ing with an active user LDT at best leaves 2 processes sharing the LDT. exec()ing with an active LDT leaks memory and privilege. exit()Ing with an active LDT leaks memory. I guess wine doesn't change the user LDT often enough for the bugs to do more than leak memory. I'd like testing of misconfigured options to be fatal but can't see a good way to implement it. A bad way: - in opt_global.h, define each option that doesn't belong in opt_global.h as an expression with a syntax error. - redefine the expression in each opt_foo.h file (same as now, except for an #undef to prevent a warning). - change each test of an option to use `#if' to ensure an error if the expression is not defined properly. Bruce From owner-freebsd-bugs Thu Dec 25 21:41:18 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id VAA24388 for bugs-outgoing; Thu, 25 Dec 1997 21:41:18 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id VAA24380; Thu, 25 Dec 1997 21:41:10 -0800 (PST) (envelope-from hoek@FreeBSD.org) From: Tim Vanderhoek Received: (from hoek@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id VAA05225; Thu, 25 Dec 1997 21:37:14 -0800 (PST) Date: Thu, 25 Dec 1997 21:37:14 -0800 (PST) Message-Id: <199712260537.VAA05225@freefall.freebsd.org> To: garbanzo@hooked.net, hoek@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/5188 Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: small typo in the source for pkg_info State-Changed-From-To: open-closed State-Changed-By: hoek State-Changed-When: Thu Dec 25 21:34:29 PST 1997 State-Changed-Why: Slightly modified patch in revs 1.10.2.3 and 1.15. Thanks! From owner-freebsd-bugs Thu Dec 25 21:50:06 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id VAA24730 for bugs-outgoing; Thu, 25 Dec 1997 21:50:06 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id VAA24724; Thu, 25 Dec 1997 21:50:01 -0800 (PST) (envelope-from gnats) Date: Thu, 25 Dec 1997 21:50:01 -0800 (PST) Message-Id: <199712260550.VAA24724@hub.freebsd.org> To: freebsd-bugs Cc: From: Dmitrij Tejblum Subject: Re: kern/2412 Reply-To: Dmitrij Tejblum Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR kern/2412; it has been noted by GNATS. From: Dmitrij Tejblum To: Tim Vanderhoek Cc: h-nokubi@nmit.mt.nec.co.jp, freebsd-bugs@freebsd.org Subject: Re: kern/2412 Date: Thu, 25 Dec 1997 14:09:23 +0300 Tim Vanderhoek wrote: > Synopsis: Wine does not work > > State-Changed-From-To: open-closed > State-Changed-By: hoek > State-Changed-When: Thu Dec 25 01:41:10 PST 1997 > State-Changed-Why: > Configure your kernel with "options USER_LDT". See the handbook on how > to do this (options USER_LDT is not compiled-in by default). > I don't think it is correct answer. Did you looked to the 'Fix:' in this PR? USER_LDT is a 'new style' option that go in opt_user_ldt.h. Files sys/i386/i386/machdep.c sys/i386/i386/vm_machdep.c sys/pc98/i386/machdep.c contains #ifdef USER_LDT, but don't contain #include "opt_user_ldt.h". So, apparently, the ifdefed code in these files never work. I have no idea about purpose of the ifdefed code and LDT itself or why Wine work for most people, but it looks very suspicious. Dima From owner-freebsd-bugs Thu Dec 25 22:00:04 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id WAA25067 for bugs-outgoing; Thu, 25 Dec 1997 22:00:04 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id WAA25043; Thu, 25 Dec 1997 22:00:01 -0800 (PST) (envelope-from gnats) Date: Thu, 25 Dec 1997 22:00:01 -0800 (PST) Message-Id: <199712260600.WAA25043@hub.freebsd.org> To: freebsd-bugs Cc: From: Tim Vanderhoek Subject: Re: kern/2412 Reply-To: Tim Vanderhoek Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR kern/2412; it has been noted by GNATS. From: Tim Vanderhoek To: Bruce Evans Cc: dima@tejblum.dnttm.rssi.ru, hoek@freebsd.org, h-nokubi@nmit.mt.nec.co.jp, gnats-submit@freebsd.org Subject: Re: kern/2412 Date: Mon, 25 Nov 1996 23:49:38 -0500 (EST) On Fri, 26 Dec 1997, Bruce Evans wrote: > No one specific is responsible, but USER_LDT is obviously quite > broken without the option being visible. fork(), exec() and exit() Okay, but I'm not about to enable untested code in machdep.c or vm_machdep.c, so I'll change the synopsis to reflect the problem, and add this message and one of Dima's to the audit-trail. I'll also note that the originator reports that the original problem ("wine does not run") can be worked-around by using a newer version of wine. > are broken. fork()ing with an active user LDT at best leaves 2 > processes sharing the LDT. exec()ing with an active LDT leaks > memory and privilege. exit()Ing with an active LDT leaks memory. > I guess wine doesn't change the user LDT often enough for the bugs > to do more than leak memory. > > I'd like testing of misconfigured options to be fatal but can't see > a good way to implement it. A bad way: > - in opt_global.h, define each option that doesn't belong in opt_global.h > as an expression with a syntax error. > - redefine the expression in each opt_foo.h file (same as now, except > for an #undef to prevent a warning). > - change each test of an option to use `#if' to ensure an error if the > expression is not defined properly. > > Bruce > -- tIM...HOEk OPTIMIZATION: the process of using many one-letter variables names hoping that the resultant code will run faster. From owner-freebsd-bugs Thu Dec 25 22:35:22 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id WAA26111 for bugs-outgoing; Thu, 25 Dec 1997 22:35:22 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: from dyson.iquest.net (dyson.iquest.net [198.70.144.127]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id WAA26106 for ; Thu, 25 Dec 1997 22:35:18 -0800 (PST) (envelope-from toor@dyson.iquest.net) Received: (from root@localhost) by dyson.iquest.net (8.8.8/8.8.8) id BAA08052; Fri, 26 Dec 1997 01:35:11 -0500 (EST) (envelope-from toor) Message-Id: <199712260635.BAA08052@dyson.iquest.net> Subject: Re: kern/5355: Fix for NULLFS problems In-Reply-To: <199712221840.KAA14709@hub.freebsd.org> from Cy Schubert - ITSD Open Systems Group at "Dec 22, 97 10:40:02 am" To: cschuber@uumail.gov.bc.ca Date: Fri, 26 Dec 1997 01:35:10 -0500 (EST) Cc: freebsd-bugs@hub.freebsd.org From: "John S. Dyson" Reply-To: dyson@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL31 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > > >>Fix: > > >cwsys# cat /opt/archives-3/usermods/nullfs_panic_fix.usermod > > >--- src/sys/vm/vnode_pager.c.orig2 Sun Dec 7 13:11:03 1997 > > >+++ src/sys/vm/vnode_pager.c Fri Dec 19 06:30:27 1997 > > >@@ -231,10 +231,12 @@ > > > blocksperpage = 0; > > > if (pagesperblock > 0) { > > > reqblock = pindex / pagesperblock; > > >- } else { > > >+ } else if (bsize > 0) { > > > blocksperpage = (PAGE_SIZE / bsize); > > > reqblock = pindex * blocksperpage; > > >- } > > >+ } else > > >+ return FALSE; > > >+ > > > > I think bsize is supposed to be > 0 here. Lots of other places depend > > on vp->v_mount->mnt_stat.f_iosize being reasonable. nullfs and some > > other file systems (portal and umapfs at least) just don't initialize > > most of mnt_stat (except by bzeroing it). This untested fix for nullfs > > was obtained from union[fs]. > > > > diff -c2 null_vfsops.c~ null_vfsops.c > > *** null_vfsops.c~ Mon Oct 13 21:46:00 1997 > > --- null_vfsops.c Mon Dec 22 04:32:11 1997 > > *************** > > *** 199,202 **** > > --- 199,203 ---- > > &size); > > bzero(mp->mnt_stat.f_mntfromname + size, MNAMELEN - size); > > + (void)nullfs_statfs(mp, &mp->mnt_stat, p); > > #ifdef NULLFS_DIAGNOSTIC > > printf("nullfs_mount: lower %s, alias at %s\n", > > > > Bruce > I am the perpetrator of the f_iosize evil. Maybe we need to reevaluate the design of this. -- John | Never try to teach a pig to sing, dyson@freebsd.org | it just makes you look stupid, jdyson@nc.com | and it irritates the pig. From owner-freebsd-bugs Fri Dec 26 00:11:27 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id AAA29868 for bugs-outgoing; Fri, 26 Dec 1997 00:11:27 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id AAA29861; Fri, 26 Dec 1997 00:11:21 -0800 (PST) (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id TAA11527; Fri, 26 Dec 1997 19:02:25 +1100 Date: Fri, 26 Dec 1997 19:02:25 +1100 From: Bruce Evans Message-Id: <199712260802.TAA11527@godzilla.zeta.org.au> To: cschuber@uumail.gov.bc.ca, dyson@FreeBSD.ORG Subject: Re: kern/5355: Fix for NULLFS problems Cc: freebsd-bugs@hub.freebsd.org Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >I am the perpetrator of the f_iosize evil. Maybe we need to reevaluate >the design of this. No, f_iosize is standard in BSD4.4Lite, although it wasn't in FreeBSD-1.1.5. It seems to be correct to use it for nullfs, although not for specfs. Bruce From owner-freebsd-bugs Fri Dec 26 04:20:11 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id EAA09133 for bugs-outgoing; Fri, 26 Dec 1997 04:20:11 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id EAA09122; Fri, 26 Dec 1997 04:20:02 -0800 (PST) (envelope-from gnats) Date: Fri, 26 Dec 1997 04:20:02 -0800 (PST) Message-Id: <199712261220.EAA09122@hub.freebsd.org> To: freebsd-bugs Cc: From: MIHIRA "Sanpei" Yoshiro Subject: Re: bin/5148: mode of file and access on NFS mounted partitions Reply-To: MIHIRA "Sanpei" Yoshiro Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR bin/5148; it has been noted by GNATS. From: MIHIRA "Sanpei" Yoshiro To: freebsd-gnats-submit@freebsd.org, Joel.Faedi@esial.u-nancy.fr, dfr@freebsd.org Cc: Subject: Re: bin/5148: mode of file and access on NFS mounted partitions Date: Fri, 26 Dec 1997 21:10:12 +0900 I reviewd related sources on NetBSD/OpenBSD. In OpenBSD CVS[1], sys/nfs/nfs_serv.c rev.1.8 and rev.1.9. and nfs_serv.c in NetBSD-current[2], is for this problem. I made patch for FreeBSD-current, FreeBSD-stable source from these changes in Net/OpenBSD. By the way, nfs_serv.c is different between NetBSD and OpenBSD. NetBSD check only NACCES, but OpenBSD check NACCES and EPERM. I think VOP_ACCESS function is only returned EACCESS(sys/ufs/ufs/ufs_vnops.c:ufs_access function.) In my patch, I only check NACCESS. I hope to merge these. Thank you. --- Yoshiro MIHIRA Dr. Candidate, Yamamoto Lab. Department of Computer Science Keio University. Yokohama, Japan [1] OpenBSD CVS repository http://www.openbsd.org/cgi-bin/cvsweb/src/sys/nfs/nfs_serv.c [2] NetBSD source tree ftp://ftp.netbsd.org/pub/NetBSD/NetBSD-current/src/sys/nfs for FreeBSD-current --- sys/nfs/nfs_serv.c.orig Wed Dec 17 18:11:16 1997 +++ sys/nfs/nfs_serv.c Mon Dec 22 19:53:28 1997 @@ -101,7 +101,7 @@ SYSCTL_INT(_vfs_nfs, OID_AUTO, async, CTLFLAG_RW, &nfs_async, 0, ""); static int nfsrv_access __P((struct vnode *,int,struct ucred *,int, - struct proc *)); + struct proc *, int)); static void nfsrvw_coalesce __P((struct nfsrv_descript *, struct nfsrv_descript *)); @@ -146,7 +146,7 @@ } nfsmode = fxdr_unsigned(u_long, *tl); if ((nfsmode & NFSV3ACCESS_READ) && - nfsrv_access(vp, VREAD, cred, rdonly, procp)) + nfsrv_access(vp, VREAD, cred, rdonly, procp, 0)) nfsmode &= ~NFSV3ACCESS_READ; if (vp->v_type == VDIR) testmode = (NFSV3ACCESS_MODIFY | NFSV3ACCESS_EXTEND | @@ -154,14 +154,14 @@ else testmode = (NFSV3ACCESS_MODIFY | NFSV3ACCESS_EXTEND); if ((nfsmode & testmode) && - nfsrv_access(vp, VWRITE, cred, rdonly, procp)) + nfsrv_access(vp, VWRITE, cred, rdonly, procp, 0)) nfsmode &= ~testmode; if (vp->v_type == VDIR) testmode = NFSV3ACCESS_LOOKUP; else testmode = NFSV3ACCESS_EXECUTE; if ((nfsmode & testmode) && - nfsrv_access(vp, VEXEC, cred, rdonly, procp)) + nfsrv_access(vp, VEXEC, cred, rdonly, procp, 0)) nfsmode &= ~testmode; getret = VOP_GETATTR(vp, vap, cred, procp); vput(vp); @@ -329,7 +329,7 @@ error = EISDIR; goto out; } else if (error = nfsrv_access(vp, VWRITE, cred, rdonly, - procp)) + procp, 0)) goto out; } error = VOP_SETATTR(vp, vap, cred, procp); @@ -632,8 +632,8 @@ } if (!error) { nqsrv_getl(vp, ND_READ); - if (error = nfsrv_access(vp, VREAD, cred, rdonly, procp)) - error = nfsrv_access(vp, VEXEC, cred, rdonly, procp); + if (error = nfsrv_access(vp, VREAD, cred, rdonly, procp, 1)) + error = nfsrv_access(vp, VEXEC, cred, rdonly, procp, 1); } getret = VOP_GETATTR(vp, vap, cred, procp); if (!error) @@ -848,7 +848,7 @@ } if (!error) { nqsrv_getl(vp, ND_WRITE); - error = nfsrv_access(vp, VWRITE, cred, rdonly, procp); + error = nfsrv_access(vp, VWRITE, cred, rdonly, procp, 1); } if (error) { vput(vp); @@ -1125,7 +1125,7 @@ vp = NULL; if (!error) { nqsrv_getl(vp, ND_WRITE); - error = nfsrv_access(vp, VWRITE, cred, rdonly, procp); + error = nfsrv_access(vp, VWRITE, cred, rdonly, procp, 1); } if (nfsd->nd_stable == NFSV3WRITE_UNSTABLE) @@ -1523,7 +1523,7 @@ VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd); if (vap->va_size != -1) { error = nfsrv_access(vp, VWRITE, cred, - (nd.ni_cnd.cn_flags & RDONLY), procp); + (nd.ni_cnd.cn_flags & RDONLY), procp, 0); if (!error) { nqsrv_getl(vp, ND_WRITE); tempsize = vap->va_size; @@ -2579,7 +2579,7 @@ error = NFSERR_BAD_COOKIE; } if (!error) - error = nfsrv_access(vp, VEXEC, cred, rdonly, procp); + error = nfsrv_access(vp, VEXEC, cred, rdonly, procp, 0); if (error) { vput(vp); nfsm_reply(NFSX_POSTOPATTR(v3)); @@ -2832,7 +2832,7 @@ error = NFSERR_BAD_COOKIE; if (!error) { nqsrv_getl(vp, ND_READ); - error = nfsrv_access(vp, VEXEC, cred, rdonly, procp); + error = nfsrv_access(vp, VEXEC, cred, rdonly, procp, 0); } if (error) { vput(vp); @@ -3412,18 +3412,20 @@ * refer to files already opened by a Unix client. You cannot just use * vn_writechk() and VOP_ACCESS() for two reasons. * 1 - You must check for exported rdonly as well as MNT_RDONLY for the write case - * 2 - The owner is to be given access irrespective of mode bits so that - * processes that chmod after opening a file don't break. I don't like - * this because it opens a security hole, but since the nfs server opens - * a security hole the size of a barn door anyhow, what the heck. + * 2 - The owner is to be given access irrespective of mode bits for some + * operations, so that processes that chmod after opening a file don't + * break. I don't like this because it opens a security hole, but since + * the nfs server opens a security hole the size of a barn door anyhow, + * what the heck. */ static int -nfsrv_access(vp, flags, cred, rdonly, p) +nfsrv_access(vp, flags, cred, rdonly, p, override) register struct vnode *vp; int flags; register struct ucred *cred; int rdonly; struct proc *p; + int override; { struct vattr vattr; int error; @@ -3449,10 +3451,14 @@ } if (error = VOP_GETATTR(vp, &vattr, cred, p)) return (error); - if ((error = VOP_ACCESS(vp, flags, cred, p)) && - cred->cr_uid != vattr.va_uid) - return (error); - return (0); + error = VOP_ACCESS(vp, flags, cred, p); + /* + * Allow certain operations for the owner (reads and writes + * on files that are already open). + */ + if (override && error == EACCES && cred->cr_uid == vattr.va_uid) + error = 0; + return error; } #endif /* NFS_NOSERVER */ ---------- for FreeBSD-stable --- sys/nfs/nfs_serv.c.orig Tue Dec 16 18:04:11 1997 +++ sys/nfs/nfs_serv.c Mon Dec 22 19:54:13 1997 @@ -103,7 +103,7 @@ SYSCTL_INT(_vfs_nfs, OID_AUTO, async, CTLFLAG_RW, &nfs_async, 0, ""); static int nfsrv_access __P((struct vnode *,int,struct ucred *,int, - struct proc *)); + struct proc *, int)); static void nfsrvw_coalesce __P((struct nfsrv_descript *, struct nfsrv_descript *)); @@ -148,7 +148,7 @@ } nfsmode = fxdr_unsigned(u_long, *tl); if ((nfsmode & NFSV3ACCESS_READ) && - nfsrv_access(vp, VREAD, cred, rdonly, procp)) + nfsrv_access(vp, VREAD, cred, rdonly, procp, 0)) nfsmode &= ~NFSV3ACCESS_READ; if (vp->v_type == VDIR) testmode = (NFSV3ACCESS_MODIFY | NFSV3ACCESS_EXTEND | @@ -156,14 +156,14 @@ else testmode = (NFSV3ACCESS_MODIFY | NFSV3ACCESS_EXTEND); if ((nfsmode & testmode) && - nfsrv_access(vp, VWRITE, cred, rdonly, procp)) + nfsrv_access(vp, VWRITE, cred, rdonly, procp, 0)) nfsmode &= ~testmode; if (vp->v_type == VDIR) testmode = NFSV3ACCESS_LOOKUP; else testmode = NFSV3ACCESS_EXECUTE; if ((nfsmode & testmode) && - nfsrv_access(vp, VEXEC, cred, rdonly, procp)) + nfsrv_access(vp, VEXEC, cred, rdonly, procp, 0)) nfsmode &= ~testmode; getret = VOP_GETATTR(vp, vap, cred, procp); vput(vp); @@ -331,7 +331,7 @@ error = EISDIR; goto out; } else if (error = nfsrv_access(vp, VWRITE, cred, rdonly, - procp)) + procp, 0)) goto out; } error = VOP_SETATTR(vp, vap, cred, procp); @@ -588,8 +588,8 @@ } if (!error) { nqsrv_getl(vp, ND_READ); - if (error = nfsrv_access(vp, VREAD, cred, rdonly, procp)) - error = nfsrv_access(vp, VEXEC, cred, rdonly, procp); + if (error = nfsrv_access(vp, VREAD, cred, rdonly, procp, 1)) + error = nfsrv_access(vp, VEXEC, cred, rdonly, procp, 1); } getret = VOP_GETATTR(vp, vap, cred, procp); if (!error) @@ -804,7 +804,7 @@ } if (!error) { nqsrv_getl(vp, ND_WRITE); - error = nfsrv_access(vp, VWRITE, cred, rdonly, procp); + error = nfsrv_access(vp, VWRITE, cred, rdonly, procp, 1); } if (error) { vput(vp); @@ -1078,7 +1078,7 @@ vp = NULL; if (!error) { nqsrv_getl(vp, ND_WRITE); - error = nfsrv_access(vp, VWRITE, cred, rdonly, procp); + error = nfsrv_access(vp, VWRITE, cred, rdonly, procp, 1); } if (nfsd->nd_stable == NFSV3WRITE_UNSTABLE) @@ -1476,7 +1476,7 @@ VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd); if (vap->va_size != -1) { error = nfsrv_access(vp, VWRITE, cred, - (nd.ni_cnd.cn_flags & RDONLY), procp); + (nd.ni_cnd.cn_flags & RDONLY), procp, 0); if (!error) { nqsrv_getl(vp, ND_WRITE); tempsize = vap->va_size; @@ -2533,7 +2533,7 @@ error = NFSERR_BAD_COOKIE; } if (!error) - error = nfsrv_access(vp, VEXEC, cred, rdonly, procp); + error = nfsrv_access(vp, VEXEC, cred, rdonly, procp, 0); if (error) { vput(vp); nfsm_reply(NFSX_POSTOPATTR(v3)); @@ -2799,7 +2799,7 @@ error = NFSERR_BAD_COOKIE; if (!error) { nqsrv_getl(vp, ND_READ); - error = nfsrv_access(vp, VEXEC, cred, rdonly, procp); + error = nfsrv_access(vp, VEXEC, cred, rdonly, procp, 0); } if (error) { vput(vp); @@ -3392,18 +3392,20 @@ * refer to files already opened by a Unix client. You cannot just use * vn_writechk() and VOP_ACCESS() for two reasons. * 1 - You must check for exported rdonly as well as MNT_RDONLY for the write case - * 2 - The owner is to be given access irrespective of mode bits so that - * processes that chmod after opening a file don't break. I don't like - * this because it opens a security hole, but since the nfs server opens - * a security hole the size of a barn door anyhow, what the heck. + * 2 - The owner is to be given access irrespective of mode bits for some + * operations, so that processes that chmod after opening a file don't + * break. I don't like this because it opens a security hole, but since + * the nfs server opens a security hole the size of a barn door anyhow, + * what the heck. */ static int -nfsrv_access(vp, flags, cred, rdonly, p) +nfsrv_access(vp, flags, cred, rdonly, p, override) register struct vnode *vp; int flags; register struct ucred *cred; int rdonly; struct proc *p; + int override; { struct vattr vattr; int error; @@ -3429,10 +3431,14 @@ } if (error = VOP_GETATTR(vp, &vattr, cred, p)) return (error); - if ((error = VOP_ACCESS(vp, flags, cred, p)) && - cred->cr_uid != vattr.va_uid) - return (error); - return (0); + error = VOP_ACCESS(vp, flags, cred, p); + /* + * Allow certain operations for the owner (reads and writes + * on files that are already open). + */ + if (override && error == EACCES && cred->cr_uid == vattr.va_uid) + error = 0; + return error; } #endif /* NFS_NOSERVER */ From owner-freebsd-bugs Fri Dec 26 05:05:47 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id FAA10917 for bugs-outgoing; Fri, 26 Dec 1997 05:05:47 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: from dyson.iquest.net (dyson.iquest.net [198.70.144.127]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id FAA10903; Fri, 26 Dec 1997 05:05:42 -0800 (PST) (envelope-from toor@dyson.iquest.net) Received: (from root@localhost) by dyson.iquest.net (8.8.8/8.8.8) id IAA00517; Fri, 26 Dec 1997 08:05:26 -0500 (EST) (envelope-from toor) From: "John S. Dyson" Message-Id: <199712261305.IAA00517@dyson.iquest.net> Subject: Re: kern/5355: Fix for NULLFS problems In-Reply-To: <199712260802.TAA11527@godzilla.zeta.org.au> from Bruce Evans at "Dec 26, 97 07:02:25 pm" To: bde@zeta.org.au (Bruce Evans) Date: Fri, 26 Dec 1997 08:05:26 -0500 (EST) Cc: cschuber@uumail.gov.bc.ca, dyson@FreeBSD.ORG, freebsd-bugs@hub.freebsd.org X-Mailer: ELM [version 2.4ME+ PL31 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Bruce Evans said: > >I am the perpetrator of the f_iosize evil. Maybe we need to reevaluate > >the design of this. > > No, f_iosize is standard in BSD4.4Lite, although it wasn't in FreeBSD-1.1.5. > It seems to be correct to use it for nullfs, although not for specfs. > Thats what I meant. It is likely just as correct for all filesystems, but the faults and confusion are something that needs to be evaluated. I think that the problem with specfs is that the default size is bogus. -- John | Never try to teach a pig to sing, dyson@freebsd.org | it just makes you look stupid, jdyson@nc.com | and it irritates the pig. From owner-freebsd-bugs Fri Dec 26 07:55:58 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id HAA17560 for bugs-outgoing; Fri, 26 Dec 1997 07:55:58 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id HAA17551; Fri, 26 Dec 1997 07:55:50 -0800 (PST) (envelope-from hoek@FreeBSD.org) From: Tim Vanderhoek Received: (from hoek@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id HAA24637; Fri, 26 Dec 1997 07:51:51 -0800 (PST) Date: Fri, 26 Dec 1997 07:51:51 -0800 (PST) Message-Id: <199712261551.HAA24637@freefall.freebsd.org> To: h-nokubi@nmit.mt.nec.co.jp, hoek@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/2412 Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Old Synopsis: Wine does not work New Synopsis: USER_LDT not compiled in machdep.c & co State-Changed-From-To: feedback-open State-Changed-By: hoek State-Changed-When: Fri Dec 26 07:48:04 PST 1997 State-Changed-Why: I was hasty in closing this one. From owner-freebsd-bugs Fri Dec 26 08:37:58 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id IAA19597 for bugs-outgoing; Fri, 26 Dec 1997 08:37:58 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id IAA19584; Fri, 26 Dec 1997 08:37:54 -0800 (PST) (envelope-from hoek@FreeBSD.org) From: Tim Vanderhoek Received: (from hoek@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id IAA24857; Fri, 26 Dec 1997 08:24:51 -0800 (PST) Date: Fri, 26 Dec 1997 08:24:51 -0800 (PST) Message-Id: <199712261624.IAA24857@freefall.freebsd.org> To: njs3@doc.ic.ac.uk, hoek@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: docs/5260 Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: typo in fork(2) State-Changed-From-To: open-closed State-Changed-By: hoek State-Changed-When: Fri Dec 26 08:18:42 PST 1997 State-Changed-Why: Suggested patch in revs 1.6 and 1.3.2.2. Thanks! From owner-freebsd-bugs Fri Dec 26 09:30:05 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id JAA21940 for bugs-outgoing; Fri, 26 Dec 1997 09:30:05 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id JAA21932; Fri, 26 Dec 1997 09:30:01 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 26 Dec 1997 09:30:01 -0800 (PST) Resent-Message-Id: <199712261730.JAA21932@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, vgrin@marion.iop.kiev.ua Received: from relay1.kar.net (relay1.kar.net [195.5.17.66]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id JAA21877 for ; Fri, 26 Dec 1997 09:29:05 -0800 (PST) (envelope-from marion.iop.kiev.ua!vgrin@joint.isf.kiev.ua) Received: from joint.isf.kiev.ua by relay1.kar.net with ESMTP id TAA04469; (8.8.last/vAk3/1.9) Fri, 26 Dec 1997 19:21:40 +0200 (EET) Received: from marion.iop.kiev.ua by joint.isf.kiev.ua with ESMTP id TAA03061; (8.8.last/vak/1.9) Fri, 26 Dec 1997 19:21:06 +0200 (EET) Received: by marion.iop.kiev.ua id TAA01471; (8.8.7/vak/1.9) Fri, 26 Dec 1997 19:26:32 +0200 (EET) Message-Id: <199712261726.TAA01471@marion.iop.kiev.ua> Date: Fri, 26 Dec 1997 19:26:32 +0200 (EET) From: vgrin@marion.iop.kiev.ua (Victor M. Grinenko) Reply-To: vgrin@marion.iop.kiev.ua To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: conf/5381: how use RealTeck 8029: Plug and pray NE2000. Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5381 >Category: conf >Synopsis: how use RealTeck 8029: Plug and pray NE2000. >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Class: support >Submitter-Id: current-users >Arrival-Date: Fri Dec 26 09:30:01 PST 1997 >Last-Modified: >Originator: Victor M. Grinenko >Organization: >Release: FreeBSD 2.1.5-STABLE i386 >Environment: >Description: pci0:1:2: Intel Corporation, device=0x7112, class=0x0c, subclass=0x03 int d irq 12 [no driver assigned] map(20): io(d800) >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-bugs Fri Dec 26 13:45:55 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id NAA07160 for bugs-outgoing; Fri, 26 Dec 1997 13:45:55 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id NAA07131; Fri, 26 Dec 1997 13:45:19 -0800 (PST) (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id IAA28656; Sat, 27 Dec 1997 08:39:24 +1100 Date: Sat, 27 Dec 1997 08:39:24 +1100 From: Bruce Evans Message-Id: <199712262139.IAA28656@godzilla.zeta.org.au> To: bde@zeta.org.au, toor@dyson.iquest.net Subject: Re: kern/5355: Fix for NULLFS problems Cc: cschuber@uumail.gov.bc.ca, dyson@FreeBSD.ORG, freebsd-bugs@hub.freebsd.org Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >I think that the problem with specfs is that the default size is bogus. There are several bogus defaults for specfs: 1) BLKDEV_IOSIZE = 2048. Used for reads and writes to block-special devices if neither 2) nor 3) applies. Also returned by stat() in st_blksize to advise user processes about the "best" block size to use. Usually too small. 2) dpart.part->p_frag * dpart.part->p_fsize, where dpart.part is a pointer to a partition table entry. Used for reads and writes to block-special devices if it is nonzero, the partition type is FS_BSDFS, and 3) doesn't apply. Only works right for partitions with unmounted BSD file systems on them. 3) vp->v_mount->mnt_stat.f_iosize, where vp->v_mount is a pointer to the mount struct for the file system containing the inode for the special file. Used for clustered writes to blockspecial devices under certain conditions. Never actually used, since spec_bmap() always returns a run length of 0. Completely bogus. 4) MAXBSIZE = 65536. Returned by stat() in st_blksize to advise user processes about the "best" block size to use. Usually too large - good sizes for disks and tapes are silly for terminals. Bruce From owner-freebsd-bugs Fri Dec 26 15:50:06 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id PAA13863 for bugs-outgoing; Fri, 26 Dec 1997 15:50:06 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id PAA13845; Fri, 26 Dec 1997 15:50:01 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 26 Dec 1997 15:50:01 -0800 (PST) Resent-Message-Id: <199712262350.PAA13845@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, ob@seicom.NET Received: from www.partner.de (www.partner.de [195.254.3.1]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id PAA13697 for ; Fri, 26 Dec 1997 15:46:50 -0800 (PST) (envelope-from ob@www.partner.de) Received: (from ob@localhost) by www.partner.de (8.8.5/8.8.5) id AAA05410; Sat, 27 Dec 1997 00:45:23 +0100 (CET) Message-Id: <199712262345.AAA05410@www.partner.de> Date: Sat, 27 Dec 1997 00:45:23 +0100 (CET) From: ob@seicom.NET Reply-To: ob@seicom.NET To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: kern/5382: APM funcionality for aic scsi-driver Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5382 >Category: kern >Synopsis: APM functionality for aic scsi-driver >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Class: support >Submitter-Id: current-users >Arrival-Date: Fri Dec 26 15:50:01 PST 1997 >Last-Modified: >Originator: Oliver Breuninger >Organization: Seicom GmbH >Release: FreeBSD 2.2.5-RELEASE i386 >Environment: Aic APM driver support for e.g. Toshiba T2400 notebook with internal Adaptec SCSI (aic6360/aha152x) controller. >Description: After resuming a suspended notebook the aic driver doesn't work any more. >How-To-Repeat: >Fix: The SCSI devices should unmounted, while the notebook is in resume mode. APM modifications: --- aic6360.c.orig Wed Oct 30 23:38:39 1996 +++ aic6360.c Fri Dec 26 23:30:37 1997 @@ -2,4 +2,5 @@ * Copyright (c) 1994 Charles Hannum. * Copyright (c) 1994 Jarle Greipsland + * Copyright (c) 1997 Oliver Breuninger (APM modification) * All rights reserved. * @@ -61,4 +62,5 @@ #endif + /* Use doubleword transfers to/from SCSI chip. Note: This requires * motherboard support. Basicly, some motherboard chipsets are able to @@ -115,4 +117,5 @@ #include "opt_ddb.h" #include "aic.h" +#include "apm.h" #include @@ -130,4 +133,7 @@ #include +#if NAPM > 0 +#include +#endif /* NAPM > 0 */ #include @@ -590,4 +596,5 @@ #define AIC_HASNEXUS 0x05 /* Actively using the SCSI bus */ #define AIC_CLEANING 0x06 +#define AIC_SUSPEND 0x07 /* Suspend mode (APM) */ short flags; #define AIC_DROP_MSGI 0x01 /* Discard all msgs (parity err detected) */ @@ -621,4 +628,9 @@ int *aicport; /* I/O port information */ #endif +#if NAPM > 0 + struct apmhook s_hook; /* reconfiguration support */ + struct apmhook r_hook; /* reconfiguration support */ +#endif /* NAPM > 0 */ + } *aicdata[NAIC]; @@ -649,4 +661,8 @@ static int aicprobe __P((struct isa_device *)); static int aicattach __P((struct isa_device *)); +#if NAPM > 0 +static int aic_suspend __P((struct aic_data *)); +static int aic_resume __P((struct aic_data *)); +#endif /* NAPM > 0 */ static void aic_minphys __P((struct buf *)); static u_int32_t aic_adapter_info __P((int)); @@ -759,4 +775,31 @@ } +#if NAPM > 0 +static int +aic_suspend(aic) + struct aic_data *aic; +{ + AIC_TRACE(("Suspend aic:\n")); + printf ("aic: suspend\n"); + aic->state = AIC_SUSPEND; + return 0; +} + +static int +aic_resume(aic) + struct aic_data *aic; +{ + AIC_TRACE(("Resume aic:\n")); + printf ("aic: resume\n"); + aic->state = 0; + aic_init(aic); +/* + aic6360_reset(aic); + aic_scsi_reset(aic); +*/ + return 0; +} +#endif /* NAPM > 0 */ + /* Do the real search-for-device. * Prerequisite: aic->iobase should be set to the proper value @@ -834,4 +877,17 @@ aic->sc_link.device = &aic_dev; +#if NAPM > 0 + aic->s_hook.ah_fun = aic_suspend; + aic->s_hook.ah_arg = (void *) aic; + aic->s_hook.ah_name = "Adaptec AHA1520/AIC6369"; + aic->s_hook.ah_order = APM_MID_ORDER; + apm_hook_establish(APM_HOOK_SUSPEND, &aic->s_hook); + aic->r_hook.ah_fun = aic_resume; + aic->r_hook.ah_arg = (void *) aic; + aic->r_hook.ah_name = "Adaptec AHA1520/AIC6369"; + aic->r_hook.ah_order = APM_MID_ORDER; + apm_hook_establish(APM_HOOK_RESUME, &aic->r_hook); +#endif /* NAPM > 0 */ + /* * Prepare the scsibus_data area for the upperlevel @@ -851,5 +907,4 @@ } - /* Initialize AIC6360 chip itself * The following conditions should hold: @@ -897,4 +952,5 @@ u_short iobase = aic->iobase; + AIC_TRACE(("aic_scsi_reset:\n")); outb(SCSISEQ, SCSIRSTO); DELAY(500); @@ -915,4 +971,6 @@ int r; + AIC_TRACE(("aic_init:\n")); + /* Reset the SCSI-bus itself */ aic_scsi_reset(aic); >Audit-Trail: >Unformatted: From owner-freebsd-bugs Fri Dec 26 15:50:08 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id PAA13872 for bugs-outgoing; Fri, 26 Dec 1997 15:50:08 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id PAA13855; Fri, 26 Dec 1997 15:50:03 -0800 (PST) (envelope-from gnats) Date: Fri, 26 Dec 1997 15:50:03 -0800 (PST) Message-Id: <199712262350.PAA13855@hub.freebsd.org> To: freebsd-bugs Cc: From: "Daniel O'Callaghan" Subject: Re: conf/5381: how use RealTeck 8029: Plug and pray NE2000. Reply-To: "Daniel O'Callaghan" Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR conf/5381; it has been noted by GNATS. From: "Daniel O'Callaghan" To: "Victor M. Grinenko" Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: conf/5381: how use RealTeck 8029: Plug and pray NE2000. Date: Sat, 27 Dec 1997 10:48:20 +1100 (EST) On Fri, 26 Dec 1997, Victor M. Grinenko wrote: > >Release: FreeBSD 2.1.5-STABLE i386 > >Environment: > > >Description: > pci0:1:2: Intel Corporation, device=0x7112, class=0x0c, subclass=0x03 > int d irq 12 [no driver assigned] map(20): io(d800) You should upgrade to 2.2.5-RELEASE or higher (use 2.2-971225-SNAP from releng22.freebsd.org). 2.1.5 is no longer supported, and it does not support PCI ne2000 cards. Danny From owner-freebsd-bugs Fri Dec 26 16:53:02 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id QAA16987 for bugs-outgoing; Fri, 26 Dec 1997 16:53:02 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: from smtp02.primenet.com (smtp02.primenet.com [206.165.6.132]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id QAA16982 for ; Fri, 26 Dec 1997 16:52:59 -0800 (PST) (envelope-from losttime@primenet.com) Received: (from daemon@localhost) by smtp02.primenet.com (8.8.8/8.8.8) id RAA06393 for ; Fri, 26 Dec 1997 17:52:54 -0700 (MST) Message-Id: <199712270052.RAA06393@smtp02.primenet.com> Received: from ip166.pay.primenet.com(204.212.57.166), claiming to be "losttime.primenet.com" via SMTP by smtp02.primenet.com, id smtpd006379; Fri Dec 26 17:52:48 1997 From: "Jay Greever" To: Subject: FreeBSD CRASHED MY COMPUTER--PLEASE RESPOND ASAP IF POSSIBLE... Date: Fri, 26 Dec 1997 05:51:57 -0700 X-MSMail-Priority: Normal X-Priority: 3 X-Mailer: Microsoft Internet Mail 4.70.1155 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk when i made a boot disk for FreeBSD, i made it like it said, then i placed it in my A: drive, rebooted, then this message came up: ------------------------------(THIS IS NOT EXACTLY AS IT WAS PRINTED ON MY SCREEN)-- PRESS F5 for HELP ... Disk 2 ...F? BOOT: ------------------------------(THIS IS NOT EXACTLY AS IT WAS PRINTED ON MY SCREEN)-- this is the general screen that it printed on my computer, it wouldnt let me do anything, so i removed the disk and rebooted my computer. then it would not let me boot at all, so i used a Win95 BOOT disk to access my hard drives, when i then noticed that the FreeBSD BOOT disk must have repartitioned my hard drives, it made them empty, and unaccessable from DOS. the system was in some kind of weird characters, not in ALPHA form, (i.e. alphabet letters). because of it, i lost all my personal information, files, and even Windows 95 and the FreeBSD files...i then had to low-level format my hard drives just to get FDISK to recognize them as Hard Drives and not removable media or write-protected media. could you please help me out by telling me what happened, like why it did that to my hard drives... please email me back ASAP so i can figure out what to do now sincerely, Jay Greever, (aka--ThE inFAMouS LostTime) From owner-freebsd-bugs Fri Dec 26 21:42:31 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id VAA05465 for bugs-outgoing; Fri, 26 Dec 1997 21:42:31 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id VAA05443; Fri, 26 Dec 1997 21:41:41 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id VAA29401; Fri, 26 Dec 1997 21:37:32 -0800 (PST) Date: Fri, 26 Dec 1997 21:37:32 -0800 (PST) Message-Id: <199712270537.VAA29401@freefall.freebsd.org> To: tom@sdf.com, jkh@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/5304 Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Manpage for ftp incorrect State-Changed-From-To: open-closed State-Changed-By: jkh State-Changed-When: Fri Dec 26 21:37:17 PST 1997 State-Changed-Why: Was already fixed in -current, merged over. Thanks. From owner-freebsd-bugs Sat Dec 27 08:50:05 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id IAA05180 for bugs-outgoing; Sat, 27 Dec 1997 08:50:05 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id IAA05166; Sat, 27 Dec 1997 08:50:02 -0800 (PST) (envelope-from gnats) Resent-Date: Sat, 27 Dec 1997 08:50:02 -0800 (PST) Resent-Message-Id: <199712271650.IAA05166@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, ccosolo@ulti.net Received: (from nobody@localhost) by hub.freebsd.org (8.8.7/8.8.7) id IAA05026; Sat, 27 Dec 1997 08:47:22 -0800 (PST) (envelope-from nobody) Message-Id: <199712271647.IAA05026@hub.freebsd.org> Date: Sat, 27 Dec 1997 08:47:22 -0800 (PST) From: ccosolo@ulti.net To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: misc/5383: bloodhound.MBR Virus detected by Norton AV after Boot Mgr Install Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5383 >Category: misc >Synopsis: bloodhound.MBR Virus detected by Norton AV after Boot Mgr Install >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Dec 27 08:50:01 PST 1997 >Last-Modified: >Originator: Carlo Cosolo >Organization: >Release: Walnut Creek 2.2.5 >Environment: FreeBSD myname.my.domain 2.2.5-RELEASE FreeBSD 2.2.5-RELEASE #0: Tue Oct 21 14:33:00 GMT 1997 jkh@time.cdrom.com:/usr/src/sys/compile/GENERIC i386 >Description: After successfully installing freeBSD with The supplied boot manager, I rebooted and selected dos. This boots win95 and executes Norton AV win95's navboot.exe /startup from autoexec.bat. While booting navboot detects bloodhound.MBR on the master boot record. I selected the repair option and rebooted. The repair had disabled the boot manager but did not detect any virus. I re-installed boot mgr and the virus returned. I now select continue instead of repair without any ill effects but it is quite anoying when booting win95 >How-To-Repeat: every time win95 is booted the virus is detected. My version of Norton AV 95 uses Dec 1 97 virus definitions >Fix: Modify code fragment to mismatch virus def on executable in bootmanager. Or scan for possible virus in distribution >Audit-Trail: >Unformatted: From owner-freebsd-bugs Sat Dec 27 10:46:33 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id KAA10163 for bugs-outgoing; Sat, 27 Dec 1997 10:46:33 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from steve@localhost) by hub.freebsd.org (8.8.7/8.8.7) id KAA10137; Sat, 27 Dec 1997 10:46:27 -0800 (PST) (envelope-from steve) Date: Sat, 27 Dec 1997 10:46:27 -0800 (PST) From: Steve Price Message-Id: <199712271846.KAA10137@hub.freebsd.org> To: berend@pobox.com, steve, freebsd-bugs Subject: Re: docs/5136 Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: ypbind, etc. man pages wrong State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Dec 27 10:45:49 PST 1997 State-Changed-Why: Already fixed in both the -current and -stable branches. From owner-freebsd-bugs Sat Dec 27 10:49:19 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id KAA10396 for bugs-outgoing; Sat, 27 Dec 1997 10:49:19 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from steve@localhost) by hub.freebsd.org (8.8.7/8.8.7) id KAA10373; Sat, 27 Dec 1997 10:49:16 -0800 (PST) (envelope-from steve) Date: Sat, 27 Dec 1997 10:49:16 -0800 (PST) From: Steve Price Message-Id: <199712271849.KAA10373@hub.freebsd.org> To: jin@pesto.lbl.gov, steve, freebsd-bugs Subject: Re: misc/5203 Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: missing file(s) in package INDEX State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Dec 27 10:47:48 PST 1997 State-Changed-Why: This file is generated by asami@freebsd.org and has since been fixed to include that package mentioned. From owner-freebsd-bugs Sat Dec 27 11:00:07 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id LAA11031 for bugs-outgoing; Sat, 27 Dec 1997 11:00:07 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id LAA11016; Sat, 27 Dec 1997 11:00:02 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id KAA23609; Sat, 27 Dec 1997 10:55:53 -0800 (PST) Date: Sat, 27 Dec 1997 10:55:53 -0800 (PST) Message-Id: <199712271855.KAA23609@freefall.freebsd.org> To: ccosolo@ulti.net, jkh@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: misc/5383 Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: bloodhound.MBR Virus detected by Norton AV after Boot Mgr Install State-Changed-From-To: open-closed State-Changed-By: jkh State-Changed-When: Sat Dec 27 10:55:06 PST 1997 State-Changed-Why: The problem lies in buggy, broken virus scanning software which false detects the MBR boot manager as a virus. Either discontinue use of said software or file a bug report with the supplier and try to get an updated version. From owner-freebsd-bugs Sat Dec 27 11:00:10 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id LAA11045 for bugs-outgoing; Sat, 27 Dec 1997 11:00:10 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from steve@localhost) by hub.freebsd.org (8.8.7/8.8.7) id KAA10967; Sat, 27 Dec 1997 10:59:56 -0800 (PST) (envelope-from steve) Date: Sat, 27 Dec 1997 10:59:56 -0800 (PST) From: Steve Price Message-Id: <199712271859.KAA10967@hub.freebsd.org> To: seki@sysrap.cs.fujitsu.co.jp, steve, freebsd-bugs Subject: Re: docs/5216 Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: manual page for xntpd.8 includes some (minor) errors State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Dec 27 10:58:53 PST 1997 State-Changed-Why: Suggested patch applied to rev. 1.4 of xntpd.8. Thanks. From owner-freebsd-bugs Sat Dec 27 11:03:20 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id LAA11394 for bugs-outgoing; Sat, 27 Dec 1997 11:03:20 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from steve@localhost) by hub.freebsd.org (8.8.7/8.8.7) id LAA11373; Sat, 27 Dec 1997 11:03:13 -0800 (PST) (envelope-from steve) Date: Sat, 27 Dec 1997 11:03:13 -0800 (PST) From: Steve Price Message-Id: <199712271903.LAA11373@hub.freebsd.org> To: mph@pobox.com, steve, freebsd-bugs Subject: Re: docs/5373 Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Minor telnet.1 fixes State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Dec 27 11:02:43 PST 1997 State-Changed-Why: Suggested patch applied in rev 1.9 of telnet.1. Thanks. From owner-freebsd-bugs Sat Dec 27 11:45:45 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id LAA13781 for bugs-outgoing; Sat, 27 Dec 1997 11:45:45 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from steve@localhost) by hub.freebsd.org (8.8.7/8.8.7) id LAA13739; Sat, 27 Dec 1997 11:45:17 -0800 (PST) (envelope-from steve) Date: Sat, 27 Dec 1997 11:45:17 -0800 (PST) From: Steve Price Message-Id: <199712271945.LAA13739@hub.freebsd.org> To: Studded@dal.net, steve, freebsd-bugs Subject: Re: misc/5374 Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: One more /etc/sysconfig reference State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Dec 27 11:44:40 PST 1997 State-Changed-Why: Suggested patch applied to rev 1.4 of configure.hlp. Thanks. From owner-freebsd-bugs Sat Dec 27 11:56:36 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id LAA14366 for bugs-outgoing; Sat, 27 Dec 1997 11:56:36 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from steve@localhost) by hub.freebsd.org (8.8.7/8.8.7) id LAA14342; Sat, 27 Dec 1997 11:56:30 -0800 (PST) (envelope-from steve) Date: Sat, 27 Dec 1997 11:56:30 -0800 (PST) From: Steve Price Message-Id: <199712271956.LAA14342@hub.freebsd.org> To: evanc@synapse.net, steve, freebsd-bugs Subject: Re: conf/5178 Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: should be able to add to ldconfig path in /etc/rc.conf State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Dec 27 11:55:29 PST 1997 State-Changed-Why: Added and documented a new ldconfig_paths variable in rc.conf. From owner-freebsd-bugs Sat Dec 27 11:59:44 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id LAA14701 for bugs-outgoing; Sat, 27 Dec 1997 11:59:44 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from steve@localhost) by hub.freebsd.org (8.8.7/8.8.7) id LAA14670; Sat, 27 Dec 1997 11:59:37 -0800 (PST) (envelope-from steve) Date: Sat, 27 Dec 1997 11:59:37 -0800 (PST) From: Steve Price Message-Id: <199712271959.LAA14670@hub.freebsd.org> To: vgrin@marion.iop.kiev.ua, steve, freebsd-bugs Subject: Re: conf/5381 Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: how use RealTeck 8029: Plug and pray NE2000. State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Dec 27 11:57:27 PST 1997 State-Changed-Why: As Daniel O'Callaghan pointed out, the originator should upgrade to at least 2.2-STABLE and then if the board still does not respond properly, submit another PR with _all_ the relevant details. From owner-freebsd-bugs Sat Dec 27 12:07:20 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id MAA15161 for bugs-outgoing; Sat, 27 Dec 1997 12:07:20 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from steve@localhost) by hub.freebsd.org (8.8.7/8.8.7) id MAA15139; Sat, 27 Dec 1997 12:07:16 -0800 (PST) (envelope-from steve) Date: Sat, 27 Dec 1997 12:07:16 -0800 (PST) From: Steve Price Message-Id: <199712272007.MAA15139@hub.freebsd.org> To: dmaddox@scsn.net, steve, freebsd-bugs Subject: Re: misc/3460 Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Lots of stuff still refernces /etc/sysconfig State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Dec 27 12:05:04 PST 1997 State-Changed-Why: Fixed in revision 1.2 of NAT.FreeBSD. I will try to get this patch to the original author for inclusion in the next version. From owner-freebsd-bugs Sat Dec 27 13:20:08 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id NAA19804 for bugs-outgoing; Sat, 27 Dec 1997 13:20:08 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id NAA19763; Sat, 27 Dec 1997 13:20:03 -0800 (PST) (envelope-from gnats) Resent-Date: Sat, 27 Dec 1997 13:20:03 -0800 (PST) Resent-Message-Id: <199712272120.NAA19763@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, green@feldman.dyn.ml.org Received: from feldman.dyn.ml.org (green@1Cust77.max1.washington.dc.ms.uu.net [153.34.49.77]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id NAA19459 for ; Sat, 27 Dec 1997 13:17:25 -0800 (PST) (envelope-from green@feldman.dyn.ml.org) Received: (from green@localhost) by feldman.dyn.ml.org (8.8.8/8.8.7) id QAA10494; Sat, 27 Dec 1997 16:16:32 -0500 (EST) (envelope-from green) Message-Id: <199712272116.QAA10494@feldman.dyn.ml.org> Date: Sat, 27 Dec 1997 16:16:32 -0500 (EST) From: green Reply-To: green@feldman.dyn.ml.org To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: kern/5384: default SB16 variables are wrong Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5384 >Category: kern >Synopsis: default SB16 variables are wrong >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 27 13:20:01 PST 1997 >Last-Modified: >Originator: green >Organization: #FreeBSD on EFnet >Release: FreeBSD 2.2.5-STABLE i386 >Environment: i386 running the STABLE branch >Description: The LINT file (/usr/src/sys/i386/conf/LINT) and the sound_config.h file (/usr/src/sys/i386/isa/sound/sound_config.h) have incorrect, and completely conflicting harwdware definitions for the Sound Blaster 16. they should both be matched to the correct settings. >How-To-Repeat: Just look at the files. >Fix: In /usr/src/sys/i386/conf/LINT change the following line: --- device sb0 at isa? port 0x220 irq 7 conflicts drq 1 vector sbintr +++ device sb0 at isa? port 0x220 irq 5 conflicts drq 1 vector sbintr and in /usr/src/sys/i386/isa/sound/sound_config.h change the following: --- #define SBC_IRQ 7 /* IQR7 is the factory default. */ +++ #define SBC_IRQ 5 /* IRQ5 is the factory default. */ --- #define SB16_DMA 6 +++ #define SB16_DMA 5 >Audit-Trail: >Unformatted: From owner-freebsd-bugs Sat Dec 27 14:26:47 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id OAA23816 for bugs-outgoing; Sat, 27 Dec 1997 14:26:47 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: from free.asel.net.tr (free.asel.net.tr [195.174.20.102]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id OAA23663 for ; Sat, 27 Dec 1997 14:24:32 -0800 (PST) (envelope-from vlad@free.asel.net.tr) Received: from localhost (vlad@localhost) by free.asel.net.tr (8.8.8/8.8.8) with SMTP id CAA05483 for ; Sun, 28 Dec 1997 02:24:12 +0200 (EET) (envelope-from vlad@free.asel.net.tr) Date: Sun, 28 Dec 1997 02:24:12 +0200 (EET) From: Vlad Cambur To: freebsd-bugs@hub.freebsd.org Subject: Re: conf/5381 In-Reply-To: <199712271959.LAA14670@hub.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Sat, 27 Dec 1997, Steve Price wrote: > Synopsis: how use RealTeck 8029: Plug and pray NE2000. > > State-Changed-From-To: open-closed > State-Changed-By: steve > State-Changed-When: Sat Dec 27 11:57:27 PST 1997 > State-Changed-Why: > As Daniel O'Callaghan pointed out, the originator should > upgrade to at least 2.2-STABLE and then if the board still > does not respond properly, submit another PR with _all_ > the relevant details. > Have SureCom ep-325 cards with the same chip (RealTek 8029) and 2.2.2-RELEASE worked ok with it, the same with 2.2-SNAP-112697 and 2.2.5-STBLE. From owner-freebsd-bugs Sat Dec 27 15:01:50 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id PAA25981 for bugs-outgoing; Sat, 27 Dec 1997 15:01:50 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from steve@localhost) by hub.freebsd.org (8.8.7/8.8.7) id PAA25961; Sat, 27 Dec 1997 15:01:38 -0800 (PST) (envelope-from steve) Date: Sat, 27 Dec 1997 15:01:38 -0800 (PST) From: Steve Price Message-Id: <199712272301.PAA25961@hub.freebsd.org> To: schweikh@noc.dfn.de, steve, freebsd-bugs Subject: Re: bin/5119 Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: name space pollution in State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Dec 27 15:00:59 PST 1997 State-Changed-Why: Fixed in revision 1.5 of src/include/limits.h. From owner-freebsd-bugs Sat Dec 27 16:36:18 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id QAA00876 for bugs-outgoing; Sat, 27 Dec 1997 16:36:18 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id QAA00870; Sat, 27 Dec 1997 16:36:10 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id QAA26772; Sat, 27 Dec 1997 16:32:00 -0800 (PST) Date: Sat, 27 Dec 1997 16:32:00 -0800 (PST) Message-Id: <199712280032.QAA26772@freefall.freebsd.org> To: green@feldman.dyn.ml.org, jkh@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/5384 Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: default SB16 variables are wrong State-Changed-From-To: open-closed State-Changed-By: jkh State-Changed-When: Sat Dec 27 16:29:52 PST 1997 State-Changed-Why: This was already fixed in -current but not yet merged into 2.2. Done, thanks. From owner-freebsd-bugs Sat Dec 27 19:30:05 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id TAA12039 for bugs-outgoing; Sat, 27 Dec 1997 19:30:05 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id TAA12032; Sat, 27 Dec 1997 19:30:02 -0800 (PST) (envelope-from gnats) Resent-Date: Sat, 27 Dec 1997 19:30:02 -0800 (PST) Resent-Message-Id: <199712280330.TAA12032@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, dada@sbox.tu-graz.ac.at Received: from mbox.tu-graz.ac.at (mbox.tu-graz.ac.at [129.27.2.6]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id TAA11878 for ; Sat, 27 Dec 1997 19:26:24 -0800 (PST) (envelope-from dada@localhost.tu-graz.ac.at) Received: from fcggsg07.icg.tu-graz.ac.at by mbox.tu-graz.ac.at with SMTP id AA12418 (5.67c/IDA-1.5t for ); Sun, 28 Dec 1997 04:27:07 +0100 Received: from localhost.tu-graz.ac.at (isdn092.tu-graz.ac.at [129.27.240.92]) by fcggsg07.icg.tu-graz.ac.at (8.8.8/8.8.8) with ESMTP id EAA07237 for ; Sun, 28 Dec 1997 04:26:06 +0100 (MET) Received: (from dada@localhost) by localhost.tu-graz.ac.at (8.8.8/8.8.5) id EAA01960; Sun, 28 Dec 1997 04:22:17 +0100 (CET) Message-Id: <199712280322.EAA01960@localhost.tu-graz.ac.at> Date: Sun, 28 Dec 1997 04:22:17 +0100 (CET) From: Martin Kammerhofer Reply-To: dada@sbox.tu-graz.ac.at To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: kern/5385: DEVFS and IDE broken in stable since 1997/11/13 18:22 Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5385 >Category: kern >Synopsis: DEVFS and IDE broken in stable since 1997/11/13 18:22 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Dec 27 19:30:00 PST 1997 >Last-Modified: >Originator: Martin Kammerhofer >Organization: Graz University of Technology >Release: FreeBSD 2.2.5-STABLE i386 >Environment: -STABLE (i.e. RELENG_2_2) after 1997/11/13 18:22 >Description: After cvsupping (on 97/12/25) and making world and kernel the new kernel panics very soon after device probing is finished. DDB gave me a "fatal trap 12: page fault while in kernel mode" and trace showed _dev_add_name _devs_link _set_ds_labeldevs_unaliased _set_ds_labeldevs _dsioctl _wdioctl _spec_ioctl _vn_ioctl _ioctl _syscall _Xsyscall the offending process was disklabel, but commenting that out in /etc/rc leads to a similar panic from process 0. DDB complains about a bad dumpdev and cannot do a crashdump. Here's my dmesgs: FreeBSD 2.2.5-STABLE #0: Sun Dec 28 03:19:26 CET 1997 toot@localhost:/usr/src/sys/compile/LEND CPU: i486DX (486-class CPU) real memory = 50331648 (49152K bytes) avail memory = 46587904 (45496K bytes) DEVFS: ready for devices Probing for devices on the ISA bus: sc0 at 0x60-0x6f irq 1 on motherboard sc0: VGA color <16 virtual consoles, flags=0x0> 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 on isa pca0 on motherboard pca0: PC speaker audio driver fdc0 at 0x3f0-0x3f7 irq 6 drq 2 on isa fd0: 1.44MB 3.5in wdc0 at 0x1f0-0x1f7 irq 14 on isa wdc0: unit 0 (wd0): , 32-bit, multi-block-16 wd0: 408MB (836070 sectors), 899 cyls, 15 heads, 62 S/T, 512 B/S wdc0: unit 1 (wd1): , 32-bit, multi-block-16 wd1: 2067MB (4233600 sectors), 4200 cyls, 16 heads, 63 S/T, 512 B/S wdc1 at 0x170-0x177 irq 15 on isa npx0 on motherboard npx0: INT 16 interface sb0 at 0x220 irq 7 drq 1 on isa sb0: opl0 at 0x388 on isa opl0: DEVFS: ready to run wdc1: unit 0 (atapi): , removable, iordy wcd0: 1033Kb/sec, 240Kb cache, audio play, 255 volume levels, ejectable tray wcd0: no disc inside, unlocked >How-To-Repeat: boot a recent -stable kernel with DEVFS (from an EIDE disk - probably that matters) >Fix: By a little trial and error I found that reverting files /src/sys/miscfs/devfs/devfs_tree.c to 1.32.2.2 /src/sys/miscfs/devfs/devfs_vfsops.c to 1.14.2.2 /src/sys/miscfs/devfs/devfs_vnops.c to 1.32.2.3 i.e. undoing julians commit from 1997/11/13 18:22 in /src/sys/miscfs/devfs: MFC: bring in changes from -current including some formatting changes so that I can keep them in sync easier. solves the problem and makes devfs working again. Obviously this commit broke something. >Audit-Trail: >Unformatted: From owner-freebsd-bugs Sat Dec 27 22:00:03 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id WAA20377 for bugs-outgoing; Sat, 27 Dec 1997 22:00:03 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id WAA20369; Sat, 27 Dec 1997 22:00:01 -0800 (PST) (envelope-from gnats) Resent-Date: Sat, 27 Dec 1997 22:00:01 -0800 (PST) Resent-Message-Id: <199712280600.WAA20369@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, toasty@dragondata.com Received: from home.dragondata.com (root@home.dragondata.com [204.137.237.2]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id VAA20314 for ; Sat, 27 Dec 1997 21:59:27 -0800 (PST) (envelope-from toasty@home.dragondata.com) Received: (from root@localhost) by home.dragondata.com (8.8.5/8.8.5) id XAA21564; Sat, 27 Dec 1997 23:59:23 -0600 (CST) Message-Id: <199712280559.XAA21564@home.dragondata.com> Date: Sat, 27 Dec 1997 23:59:23 -0600 (CST) From: toasty@dragondata.com Reply-To: toasty@dragondata.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: conf/5386: Old Wyse-60 terminals don't handle hardware tabs correctly Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5386 >Category: conf >Synopsis: Very old Wyse-60 terminals don't handle hardware tabs >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 27 22:00:00 PST 1997 >Last-Modified: >Originator: Kevin Day >Organization: DragonData >Release: FreeBSD 2.2.1-RELEASE i386 >Environment: Very old Wyse 60 terminal. (ROM version 1.03 REV A) >Description: My wyse 60 terminal really doesn't like tabs. Doing an ls smashes all the filenames together, running an editor like joe causes all sorts of formatting errors based around large groups of spaces or tabs, and other oddities. My newer Wyse 60 and Wyse 60+'s do not show this behavior. >How-To-Repeat: Get a very old Wyse 60 and try using joe, with TERM=wy60. >Fix: +++ termcap Sat Dec 27 23:45:32 1997 @@ -3531,6 +3531,8 @@ :te=50^Z\Ew0:ti=50\Ew1:tc=wy60: wy60-w-s|wyse60-w-s|Wyse 60 132-column with screen switching:\ :te=50^Z\Ew0:ti=50\Ew1:tc=wy60-w: +wy60-nt|wyse60-nt|Wyse 60 with broken tab support:\ + :pt@:tc=wy60: # # The Wyse 75 is a vt100 lookalike without advanced video. # and 'stty oxtabs' on login. >Audit-Trail: >Unformatted: Kevin Day From owner-freebsd-bugs Sat Dec 27 22:13:58 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id WAA20941 for bugs-outgoing; Sat, 27 Dec 1997 22:13:58 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from steve@localhost) by hub.freebsd.org (8.8.7/8.8.7) id WAA20921; Sat, 27 Dec 1997 22:13:46 -0800 (PST) (envelope-from steve) Date: Sat, 27 Dec 1997 22:13:46 -0800 (PST) From: Steve Price Message-Id: <199712280613.WAA20921@hub.freebsd.org> To: yoshiaki@kt.rim.or.jp, steve, freebsd-bugs Subject: Re: bin/5176 Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Boot FreeBSD from Linux LILO State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Dec 27 22:13:21 PST 1997 State-Changed-Why: Duplicate of docs/5247. From owner-freebsd-bugs Sat Dec 27 22:34:40 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id WAA22240 for bugs-outgoing; Sat, 27 Dec 1997 22:34:40 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from steve@localhost) by hub.freebsd.org (8.8.7/8.8.7) id WAA22220; Sat, 27 Dec 1997 22:34:34 -0800 (PST) (envelope-from steve) Date: Sat, 27 Dec 1997 22:34:34 -0800 (PST) From: Steve Price Message-Id: <199712280634.WAA22220@hub.freebsd.org> To: toasty@dragondata.com, steve, freebsd-bugs Subject: Re: conf/5386 Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Very old Wyse-60 terminals don't handle hardware tabs State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Dec 27 22:33:56 PST 1997 State-Changed-Why: Fixed in revision 1.82 of termcap.src. Thanks. From owner-freebsd-bugs Sat Dec 27 23:00:03 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id XAA23714 for bugs-outgoing; Sat, 27 Dec 1997 23:00:03 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id XAA23687; Sat, 27 Dec 1997 23:00:02 -0800 (PST) (envelope-from gnats) Resent-Date: Sat, 27 Dec 1997 23:00:02 -0800 (PST) Resent-Message-Id: <199712280700.XAA23687@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, Matthew Hunt Received: from mph124.rh.psu.edu (mph@i.cant.think.of.a.cool.hostname.ending.in.rsd.jtwn.k12.pa.us [147.160.218.4]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id WAA23262 for ; Sat, 27 Dec 1997 22:51:55 -0800 (PST) (envelope-from mph@mph124.rh.psu.edu) Received: (from mph@localhost) by mph124.rh.psu.edu (8.8.8/8.8.8) id BAA06973; Sun, 28 Dec 1997 01:51:33 -0500 (EST) (envelope-from mph) Message-Id: <199712280651.BAA06973@mph124.rh.psu.edu> Date: Sun, 28 Dec 1997 01:51:33 -0500 (EST) From: Matthew Hunt To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: bin/5387: md5(1) does not use getopt(3) Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5387 >Category: bin >Synopsis: md5(1) does not use getopt(3) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 27 23:00:01 PST 1997 >Last-Modified: >Originator: Matthew Hunt >Organization: none >Release: FreeBSD 2.2.5-STABLE i386 >Environment: FreeBSD mph124.rh.psu.edu 2.2.5-STABLE FreeBSD 2.2.5-STABLE #1: Fri Dec 19 11:07:21 EST 1997 hunt@mph124.rh.psu.edu:/usr/src/sys/compile/WOPR i386 $Id: md5.c,v 1.7.2.1 1997/09/03 06:49:48 jkh Exp $ CVS web interface shows 3.0-CURRENT md5.c to be essentially identical. >Description: /sbin/md5 does not use the getopt(3) interface to parse command-line options. The result is a non-standard interface. IMHO, the differences from getopt(3) are not features. For example, the argument to "-s" must be given as "-sstring" and not "-s string". >How-To-Repeat: >Fix: Apply the following patch. md5(1) will then behave more like the other Unix commands. This patch also provides usage help if an invalid option is given. diff -Nru /usr/src/sbin/md5/md5.1 md5/md5.1 --- /usr/src/sbin/md5/md5.1 Sat Sep 6 12:25:42 1997 +++ md5/md5.1 Sat Dec 27 02:35:42 1997 @@ -9,7 +9,7 @@ .Op Fl p .Op Fl t .Op Fl x -.Op Fl s Ns Ar string +.Op Fl s Ar string .Op Ar filename Ns Pq s .Sh DESCRIPTION .Nm @@ -34,7 +34,7 @@ .Ar filename Ns Pq s must be the last objects on the command line. .Bl -tag -width Fl -.It Fl s Ns Ar string +.It Fl s Ar string prints a checksum of the given .Dq string . .It Fl p diff -Nru /usr/src/sbin/md5/md5.c md5/md5.c --- /usr/src/sbin/md5/md5.c Sat Sep 6 12:25:42 1997 +++ md5/md5.c Sat Dec 27 02:34:14 1997 @@ -40,6 +40,7 @@ static void MDTimeTrial PROTO_LIST((void)); static void MDTestSuite PROTO_LIST((void)); static void MDFilter PROTO_LIST((int)); +static void usage PROTO_LIST((void)); /* Main driver. @@ -58,25 +59,38 @@ int i; char *p; char buf[33]; + extern char *optarg; + extern int optind; - if (argc > 1) - for (i = 1; i < argc; i++) - if (argv[i][0] == '-' && argv[i][1] == 's') - MDString(argv[i] + 2); - else if (strcmp(argv[i], "-t") == 0) + if (argc > 1) { + while ((i = getopt(argc, argv, "s:tpx")) != EOF) { + switch(i) { + case 's': + MDString(optarg); + break; + case 't': MDTimeTrial(); - else if (strcmp(argv[i], "-p") == 0) + break; + case 'p': MDFilter(1); - else if (strcmp(argv[i], "-x") == 0) + break; + case 'x': MDTestSuite(); - else { - p = MD5File(argv[i],buf); - if (!p) - perror(argv[i]); - else - printf("MD5 (%s) = %s\n", argv[i], p); + break; + default: + usage(); } - else + } + + while (optind < argc) { + p = MD5File(argv[optind],buf); + if (!p) + perror(argv[optind]); + else + printf("MD5 (%s) = %s\n", argv[optind], p); + optind++; + } + } else MDFilter(0); return (0); @@ -174,4 +188,16 @@ MD5Update(&context, buffer, len); } printf("%s\n", MD5End(&context,buf)); +} + +/* + * Displays a usage summary. + */ + +static void +usage(void) +{ + (void)fprintf(stderr, + "usage: md5 [-p] [-t] [-x] [-s string] [filename(s)]\n"); + exit(1); } >Audit-Trail: >Unformatted: