From owner-freebsd-bugs Sun Apr 2 0:20:25 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3A71C37B9F4 for ; Sun, 2 Apr 2000 00:20:23 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA56150; Sun, 2 Apr 2000 00:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Sun, 2 Apr 2000 00:20:02 -0800 (PST) Message-Id: <200004020820.AAA56150@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Anatoly Vorobey Subject: Re: bin/17619: pax cannot read all tar files created by tar. Reply-To: Anatoly Vorobey Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/17619; it has been noted by GNATS. From: Anatoly Vorobey To: Sheldon Hearn , marcolz@stack.nl Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/17619: pax cannot read all tar files created by tar. Date: Sun, 2 Apr 2000 10:13:31 +0000 On Wed, Mar 29, 2000 at 02:50:03AM -0800, Sheldon Hearn wrote: > The following reply was made to PR bin/17619; it has been noted by GNATS. > > From: Sheldon Hearn > To: marcolz@stack.nl > Cc: FreeBSD-gnats-submit@FreeBSD.ORG > Subject: Re: bin/17619: pax cannot read all tar files created by tar. > Date: Wed, 29 Mar 2000 12:41:38 +0200 > > On Mon, 27 Mar 2000 14:57:39 +0200, marcolz@stack.nl wrote: > > > When trying to read a tar file created by GNU-tar or Solaris's tar, > > pax asks for another archive. It seems to misinterpret the tar-header. > > Some sizes of tar's will be handled just right, others don't. I looked into this. pax thinks tar archives should end with at least 2 blocks of zero (i.e. 1024 zeroed bytes *after* the file ends). In the example provided, GNU tar creates only one such block, and pax thinks it must read another one which is not there, so it asks for the next volume. I don't know which one of them is right. In fact, I tried to look into GNU tar's code for creating archives, and couldn't understand where it creates even one block and what governs its behavior. The code there is extremely unreadable. pax can be made happy by this: --- tar.h.orig Sun Apr 2 10:10:11 2000 +++ tar.h Sun Apr 2 10:10:19 2000 @@ -44,7 +44,7 @@ #define CHK_LEN 8 /* length of checksum field */ #define TNMSZ 100 /* size of name field */ #ifdef _PAX_ -#define NULLCNT 2 /* number of null blocks in trailer */ +#define NULLCNT 1 /* number of null blocks in trailer */ #define CHK_OFFSET 148 /* start of checksum field */ #define BLNKSUM 256L /* sum of checksum field using ' ' */ #endif /* _PAX_ */ This shouldn't create any adverse effects, and appears to work on all archives created by GNU tar; however, pax will also add one trailer block rather than two to its archives after the patch. The relevant code which uses this constant is in the tar_trail() function in tar.c . -- Anatoly Vorobey, mellon@pobox.com http://pobox.com/~mellon/ "Angels can fly because they take themselves lightly" - G.K.Chesterton To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 2 0:40: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7058C37B8EE for ; Sun, 2 Apr 2000 00:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA76390; Sun, 2 Apr 2000 00:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Sun, 2 Apr 2000 00:40:03 -0800 (PST) Message-Id: <200004020840.AAA76390@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Anatoly Vorobey Subject: Re: bin/17619: pax cannot read all tar files created by tar. Reply-To: Anatoly Vorobey Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/17619; it has been noted by GNATS. From: Anatoly Vorobey To: Sheldon Hearn , marcolz@stack.nl Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/17619: pax cannot read all tar files created by tar. Date: Sun, 2 Apr 2000 10:38:22 +0000 On Sun, Apr 02, 2000 at 12:20:02AM -0800, Anatoly Vorobey wrote: > I looked into this. pax thinks tar archives should end with at least > 2 blocks of zero (i.e. 1024 zeroed bytes *after* the file ends). > In the example provided, GNU tar creates only one such block, and > pax thinks it must read another one which is not there, so it asks > for the next volume. I forgot to demonstrate this on the example given my Marc: prompt> dd if=/dev/zero of=foo bs=1759830 count=1 prompt> tar cf bar.tar foo prompt> ls -l bar.tar -rw-r--r-- 1 mellon wheel 1761280 Apr 2 07:19 bar.tar Now 1759830 is padded to the 512 bytes boundary when written out which results in 1760256 bytes; together with 512 bytes of the header and 512 bytes of one trailer block, 512 + 1760256 + 512 = 1761280. FWIW, the page at www.paranoia.com/~vax/tar_format.html , currently uavailable but cached at http://www.google.com/search?q=cache:www.paranoia.com/~vax/tar_format.html , says that there must be two trailer blocks. -- Anatoly Vorobey, mellon@pobox.com http://pobox.com/~mellon/ "Angels can fly because they take themselves lightly" - G.K.Chesterton To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 2 3:31:10 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id 2F4B937B51A for ; Sun, 2 Apr 2000 03:31:05 -0700 (PDT) (envelope-from bde@zeta.org.au) Received: from bde.zeta.org.au (bde.zeta.org.au [203.2.228.102]) by mailman.zeta.org.au (8.8.7/8.8.7) with ESMTP id UAA02872; Sun, 2 Apr 2000 20:30:55 +1000 Date: Sun, 2 Apr 2000 20:30:37 +1000 (EST) From: Bruce Evans X-Sender: bde@alphplex.bde.org To: Anatoly Vorobey Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: bin/17619: pax cannot read all tar files created by tar. In-Reply-To: <200004020840.AAA76390@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, 2 Apr 2000, Anatoly Vorobey wrote: > The following reply was made to PR bin/17619; it has been noted by GNATS. The following reply has not been noted by gnats :-). > FWIW, the page at www.paranoia.com/~vax/tar_format.html , currently > uavailable but cached at > http://www.google.com/search?q=cache:www.paranoia.com/~vax/tar_format.html , > says that there must be two trailer blocks. This is POSIX.1 standard. gnu tar-1.11.2 never claimed to be POSIX standard, and isn't (see gnu cpio/README). gnu tar-1.11.2 is now more than 8 years old, but gnu tar-1.13 still has the trailer block bug and the bugs referred to in cpio/README. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 2 4: 1:54 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from gidora.zeta.org.au (gidora.zeta.org.au [203.26.10.25]) by hub.freebsd.org (Postfix) with SMTP id 31D6637B6AC for ; Sun, 2 Apr 2000 04:01:49 -0700 (PDT) (envelope-from bde@zeta.org.au) Received: (qmail 13525 invoked from network); 2 Apr 2000 11:01:44 -0000 Received: from bde.zeta.org.au (203.2.228.102) by gidora.zeta.org.au with SMTP; 2 Apr 2000 11:01:44 -0000 Date: Sun, 2 Apr 2000 21:01:26 +1000 (EST) From: Bruce Evans X-Sender: bde@alphplex.bde.org To: Anatoly Vorobey Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: bin/12242 : segmentation fault running /usr/bin/fmt In-Reply-To: <20000402090809.A57640@happy.checkpoint.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, 2 Apr 2000, Anatoly Vorobey wrote: > On Sun, Apr 02, 2000 at 04:52:21PM +1000, Bruce Evans wrote: > > > Both old_outbuf and outp are invalid after outbuf has been realloc'ed. > > Just loading them may trap. The buffer offset should be computed > > _before_ the realloc. > > Uhm, you are right. How about this? (I'm not abusing s, it's used for > the same purpose later). > > --- fmt.c.orig Sat Aug 28 01:01:18 1999 > +++ fmt.c Sun Apr 2 09:05:24 2000 > @@ -443,14 +443,15 @@ > { > register char *cp; > register int s, t; > - > - if (((outp==NOSTR) ? wl : outp-outbuf + wl) >= outbuf_size) { > - char *old_outbuf = outbuf; > + > + s = (outp==NOSTR) ? 0 : outp-outbuf; > + > + if (s + wl >= outbuf_size) { > outbuf_size *= 2; > outbuf = realloc(outbuf, outbuf_size); > if (outbuf == 0) > abort(); > - outp += outbuf-old_outbuf; > + outp = outbuf + s; > } This breaks the (outp == NOSTR) case, at least if buffer expansion can occur in that case. How about this? (untested): s = (outp == NOSTR) ? 0 : outp - outbuf; if (s + wl >= outbuf_size) { outbuf_size *= 2; outbuf = realloc(outbuf, outbuf_size); if (outbuf == 0) abort(); if (outp != NOSTR) outp = outbuf + s; } This is still sloppy code. It doesn't check for overflow of outbuf_size, and it asks for overflow by not using size_t for outbuf_size or ptrdiff_t for `s'. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 2 4:13:34 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from happy.checkpoint.com (kinata.checkpoint.com [199.203.156.41]) by hub.freebsd.org (Postfix) with ESMTP id 351DC37B858 for ; Sun, 2 Apr 2000 04:13:28 -0700 (PDT) (envelope-from mellon@pobox.com) Received: (from mellon@localhost) by happy.checkpoint.com (8.9.3/8.9.3) id NAA62361; Sun, 2 Apr 2000 13:14:24 GMT (envelope-from mellon@pobox.com) Date: Sun, 2 Apr 2000 13:14:24 +0000 From: Anatoly Vorobey To: Bruce Evans , Marc Olzheim Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: bin/17619: pax cannot read all tar files created by tar. Message-ID: <20000402131424.A61897@happy.checkpoint.com> References: <200004020840.AAA76390@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: ; from bde@zeta.org.au on Sun, Apr 02, 2000 at 08:30:37PM +1000 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Apr 02, 2000 at 08:30:37PM +1000, Bruce Evans wrote: > > FWIW, the page at www.paranoia.com/~vax/tar_format.html , currently > > uavailable but cached at > > http://www.google.com/search?q=cache:www.paranoia.com/~vax/tar_format.html , > > says that there must be two trailer blocks. > > This is POSIX.1 standard. gnu tar-1.11.2 never claimed to be POSIX > standard, and isn't (see gnu cpio/README). gnu tar-1.11.2 is now more > than 8 years old, but gnu tar-1.13 still has the trailer block bug > and the bugs referred to in cpio/README. Bah. So what should be done in this case (assuming something needs to be done?). I can patch pax to accept one-block archives and yet produce correct archives - maybe that's the way to go? Given that the GNU tar maintainer had more than 8 years to think about it, he's obviously emotionally attached to one-trailing-block files and won't let them go ;) I admit I didn't even know pax(1) existed until I saw the PR and was sufficiently intrigued to look at it ;) By the way, Marc, Solaris's tar (SunOS 5.6) does handle correctly your example (creates a tarfile with two trailing blocks), so if you have anything specific from Solaris's tar that breaks pax, do tell. -- Anatoly Vorobey, mellon@pobox.com http://pobox.com/~mellon/ "Angels can fly because they take themselves lightly" - G.K.Chesterton To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 2 4:37:47 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from mgate04.so-net.ne.jp (mgate04.so-net.ne.jp [210.139.254.151]) by hub.freebsd.org (Postfix) with ESMTP id 16DB837B7D1 for ; Sun, 2 Apr 2000 04:37:39 -0700 (PDT) (envelope-from daito@magical.egg.or.jp) Received: from mail.rj8.so-net.ne.jp (mspool04.so-net.ne.jp [210.139.254.183]) by mgate04.so-net.ne.jp (8.8.8+3.0Wbeta9/3.6W00032811) with ESMTP id UAA23792 for ; Sun, 2 Apr 2000 20:37:34 +0900 (JST) Received: from MAIL (pfa6f57.tkyont.ap.so-net.ne.jp [210.250.111.87]) by mail.rj8.so-net.ne.jp (8.9.3/3.7W99092111) with SMTP id UAA16019 for ; Sun, 2 Apr 2000 20:37:33 +0900 (JST) Message-ID: <2622.954676073358@magical.egg.or.jp> Date: Sun, 02 Apr 2000 20:47:53 +0900 (JST) From: =?iso-2022-jp?B?GyRCJSIlJCVJJWsjMiMwIzAjMRsoQhsoQg==?= Reply-To: daito@magical.egg.or.jp To: =?iso-2022-jp?B??= Subject: =?iso-2022-jp?B?GyRCIXolIiUkJUklayMyIzAjMCMxJSohPCVXGyhCGyhC?==?iso-2022-jp?B?GyRCJXMhKkw1TkFCTjgzJGIkIiRqIXobKEIbKEI=?= Mime-Version: 1.0 Content-Type: text/plain; charset =ISO-2022-JP Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org ================================================================== $B!!!!!!!!!!!!%"%$%I%k#2#0#0#1%*!<%W%s!*!*(B ================================================================== $B"##R#e#a#l#G#2!!%i%$%V%A%c%C%H?74k2h2q0wBgJg=8!*!*(B $B!!K\%5%$%H$O!"7n!9$NDj3[NA6b#1#0#0#0#01_$G!"2q0w$K$J$i$l$?3'MM$K$O!"%W(B $B%m%0%i%`$N%5!<%S%9Cf$G$"$l$P!"$$$/$i$G$b#R#e#a#l#G#2%W%l!<%d$r3hMQ$7$?(B $B%i%$%V1GA|$G$N%A%c%C%H$,!"3Z$7$`$+$H$,$G$-$^$9!#(B $B"##1#0J,4VL5NABN83%5!<%S%9!*!*(B $B!!%5%$%H$,%*!<%W%s$9$k#37n#2#1$h$j!!:G=i$N#1#0J,4V$,$*;n$7BN83$H$7$FL5(B $BNA$H$J$j$^$9!#(B $B#1#0J,4V7P$A$^$9$H<+F0E*$K2hLL$,Dd;_$7$^$9$N$G!"8e$GNA6b$r@A5a$9$k$H$$(B $B$C$?%H%i%V%k$O!"$"$j$^$;$s!#(B $B"#2q0w$N3'MM8BDj!*8+$k$3$H$N$G$-$J$$%W%i%$%Y!<%H$J1GA|!*!)(B $B!!%i%$%V%A%c%C%H%W%m%0%i%`%5!<%S%90J30$N;~4VBS$O!"=w$N;R$?$A$N%W%i%$%Y(B $B!<%H1GA|$r!"$[$H$s$IL5JT=8$N>uBV$G8+$k$3$H$,$G$-$^$9!#(B $B?o;~!"<}O?$7$??7$7$$$b$N$rA}$d$7$F!"%i%$%V%i%j!<2=$7$F$$$/M=Dj$G$9!#(B $B"#(B2000$BG/%(%C%=%l!<%9%/!<%s$NHSEg??M3!"(B2000$BG/%V%l%$%/@#A0$N@n0fCN0!5*(B 4$B7n(B6$BF|$+$i=iIqBf$KD)@o$9$k!"@>4]M%;R$i!"7]G=3&$G%a%A%c4hD%$C$F$$$k!"=w(B $B$N;RC#$,$>$/$>$/EP>l$9$k!"%i%$%V%A%c%C%H$G$9!#(B $B=w$N;RC#$N%W%m%b!<%7%g%s%S%G%*$O!"$@$l$G$b8+$l$^$9!"$N$G!"@'Hs$N$>$-$K(B $BMh$F2<$5$$!#%a%s%P!<@lMQ$N?eCe%S%G%*@):nM=DjM-$j!#(B $B"#(B6$B7n$K$O%*%U2q$r9T$J$$$^$9!#(B $B%"%$%I%kC#$KD>@\2q$$$KMh$F2<$5$$!#(B $BR2p$7$F2<$5$$!#(B $B!!7]G=3&$rL\;X$92D0&$$=w$N;R$r@'Hs>R2p$7$F2<$5$$!#:NMQ$5$;$F$$$?$@$$$?(B $B>l9g$O!"(B $B!!FCJLM%6x$5$;$F$$$?$@$-$^$9!#(B (I%%%$B#I#D#O#L#2#0#0#1(I%%%(B http://www.leotv.com/idol2001$B!!(B $B#G#A#L#s%W%m%U%#!<%k$H%i%$%V%A%c%C%H%9%1%8%e!<%k$r$4;2>H$/$@$5$$(B(B To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 2 5: 0: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 06CE537BD8A for ; Sun, 2 Apr 2000 05:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA21432; Sun, 2 Apr 2000 05:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sun, 2 Apr 2000 05:00:02 -0700 (PDT) Message-Id: <200004021200.FAA21432@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Anatoly Vorobey Subject: Re: bin/12242 : segmentation fault running /usr/bin/fmt Reply-To: Anatoly Vorobey Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/12242; it has been noted by GNATS. From: Anatoly Vorobey To: Bruce Evans Cc: freebsd-gnats-submit@freebsd.org Subject: Re: bin/12242 : segmentation fault running /usr/bin/fmt Date: Sun, 2 Apr 2000 13:59:15 +0000 On Sun, Apr 02, 2000 at 09:01:26PM +1000, Bruce Evans wrote: > > This breaks the (outp == NOSTR) case, This case should never have been there in the first place. How about replacing outp==NOSTR by outp==outbuf throughout? Also the lines > s = (outp == NOSTR) ? 0 : outp - outbuf; > if (s + wl >= outbuf_size) { > outbuf_size *= 2; > outbuf = realloc(outbuf, outbuf_size); are somewhat funny since who said outbuf_size*2 is big enough to hold s + wl chars? Here's the patch. Tested, appears to work fine. --- fmt.c.orig Sat Aug 28 01:01:18 1999 +++ fmt.c Sun Apr 2 13:50:58 2000 @@ -65,7 +65,6 @@ /* LIZ@UOM 6/18/85 -- Don't need LENGTH any more. * #define LENGTH 72 Max line length in output */ -#define NOSTR ((char *) 0) /* Null string pointer for lint */ /* LIZ@UOM 6/18/85 --New variables goal_length and max_length */ #define GOAL_LENGTH 65 @@ -395,9 +394,9 @@ * Build up line images from the words passed in. Prefix * each line with correct number of blanks. The buffer "outbuf" * contains the current partial line image, including prefixed blanks. - * "outp" points to the next available space therein. When outp is NOSTR, + * "outp" points to the next available space therein. When outp==outbuf, * there ain't nothing in there yet. At the bottom of this whole mess, - * leading tabs are reinserted. + * leading spaces are reinserted. */ char *outbuf; /* Sandbagged output line image */ char *outp; /* Pointer in above */ @@ -413,7 +412,7 @@ if (outbuf == 0) abort(); outbuf_size = BUFSIZ; - outp = NOSTR; + outp = outbuf; } /* @@ -443,17 +442,18 @@ { register char *cp; register int s, t; - - if (((outp==NOSTR) ? wl : outp-outbuf + wl) >= outbuf_size) { - char *old_outbuf = outbuf; - outbuf_size *= 2; + + s = outp-outbuf; + + if (s + wl >= outbuf_size) { + outbuf_size = s + wl + 17; /* clever heuristics */ outbuf = realloc(outbuf, outbuf_size); if (outbuf == 0) abort(); - outp += outbuf-old_outbuf; + outp = outbuf + s; } - if (outp == NOSTR) + if (outp == outbuf) leadin(); /* * LIZ@UOM 6/18/85 -- change condition to check goal_length; s is the @@ -487,11 +487,11 @@ void oflush() { - if (outp == NOSTR) + if (outp == outbuf) return; *outp = '\0'; tabulate(outbuf); - outp = NOSTR; + outp = outbuf; } /* @@ -561,7 +561,7 @@ register char *top; top = malloc(strlen(str) + 1); - if (top == NOSTR) + if (top == 0) errx(1, "ran out of memory"); strcpy(top, str); return (top); -- Anatoly Vorobey, mellon@pobox.com http://pobox.com/~mellon/ "Angels can fly because they take themselves lightly" - G.K.Chesterton To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 2 6:20: 3 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3588737B5BD for ; Sun, 2 Apr 2000 06:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA28278; Sun, 2 Apr 2000 06:20:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from goliath.siemens.de (goliath.siemens.de [194.138.37.131]) by hub.freebsd.org (Postfix) with ESMTP id 6E7F137B6B6 for ; Sun, 2 Apr 2000 06:18:35 -0700 (PDT) (envelope-from andre.albsmeier@mchp.siemens.de) Received: from mail1.siemens.de (mail1.siemens.de [139.23.33.14]) by goliath.siemens.de (8.10.0/8.10.0) with ESMTP id e32DIXt24027 for ; Sun, 2 Apr 2000 15:18:33 +0200 (MET DST) Received: from curry.mchp.siemens.de (curry.mchp.siemens.de [139.25.42.7]) by mail1.siemens.de (8.10.0/8.10.0) with ESMTP id e32DIXb11722 for ; Sun, 2 Apr 2000 15:18:33 +0200 (MET DST) Received: (from daemon@localhost) by curry.mchp.siemens.de (8.9.3/8.9.3) id PAA01972 for ; Sun, 2 Apr 2000 15:18:33 +0200 (CEST) Message-Id: <200004021318.PAA72810@internal> Date: Sun, 2 Apr 2000 15:18:31 +0200 (CEST) From: Andre Albsmeier To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: conf/17750: periodic/daily problem one day after changing to summer time Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17750 >Category: conf >Synopsis: periodic/daily problem one day after changing to summer time >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Apr 2 06:20:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Andre Albsmeier >Release: FreeBSD 3.4-STABLE i386 >Organization: >Environment: 3.4-STABLE, but I assume all versions >Description: Each morning at 1:59 the /etc/periodic/daily/* scripts are run. Among them is 460.status-mail-rejects which executes a "date -v-1d '+%b %d'" command. Depending on how many time is needed to run the previous daily scripts, it is possible that 460.status-mail-rejects is run shortly after 2:00. In this case, and if the system has changed to daylight saving time one day before, the "date -v-1d '+%b %d'" fails since the calculated time does not exist: Checking for rejected mail hosts: -1d: Cannot apply date adjustment usage: date [-nu] [-d dst] [-r seconds] [-t west] [-v[+|-]val[ymwdHMS]] ... [-f fmt date | [[[[[cc]yy]mm]dd]HH]MM[.ss]] [+format] >How-To-Repeat: Can be repeated easily if you have a system that has lots of things to do when running the /etc/periodic/daily/*. For example, this might happen when you have big local disks that make 450.status-security run quite a while. I assume, you can trigger the problem by temporarely creating a file /etc/periodic/daily/459.sleep that only contains a "sleep 61" command. Than wait until one day after swithing to summer time has occured and check your mail :-) >Fix: Let the scripts run at 3:01 :-). Seriously, we could move 460.status-mail-rejects to the beginning of /etc/periodic/daily but I would not call this a clean solution. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 2 9: 0: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 68F9B37B730 for ; Sun, 2 Apr 2000 09:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA04986; Sun, 2 Apr 2000 09:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6948837BABF for ; Sun, 2 Apr 2000 08:50:15 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA04342; Sun, 2 Apr 2000 08:50:14 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004021550.IAA04342@freefall.freebsd.org> Date: Sun, 2 Apr 2000 08:50:14 -0700 (PDT) From: vova@express.ru To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/17751: rl driver loaded as module when it already compiled in kernel panics system Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17751 >Category: kern >Synopsis: rl driver loaded as module when it already compiled in kernel panics system >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Apr 2 09:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Vladimir B. Grebenschikov >Release: 5.0-CURRENT >Organization: TSB "Russian Express" >Environment: FreeBSD lightning.express.ru 5.0-CURRENT FreeBSD 5.0-CURRENT #8: Sat Apr 1 11:36:52 MSD 2000 root@lightning.express.ru:/usr/local/src/fbsd/src/sys/compile/LIGHTNING i386 >Description: rl driver loaded as module when it already compiled in kernel panics system when issued first ifconfig rl0 command, ifconfig -l shows list of interfaces rl driver successful recognized by kernel while booting I don't know affected or not other NIC modules or other modules by this problem, but it seems kernel must complin about not uniq instance of driver in memory >How-To-Repeat: RealTek 8139 NIC in PCI slot in kernel config: ... device miibus device rl # RealTek 8129/8139 ... in /boot/loader.conf ... if_rl_load="YES" # RealTek 8129/8139 ... after boot and issue ifconfig rl0 -> system panics >Fix: don't load modeule or not compile in kernel rl driver >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 2 9: 0: 8 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E110437BDE0 for ; Sun, 2 Apr 2000 09:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA04999; Sun, 2 Apr 2000 09:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2E5E037BA47 for ; Sun, 2 Apr 2000 08:57:58 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA04843; Sun, 2 Apr 2000 08:57:57 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004021557.IAA04843@freefall.freebsd.org> Date: Sun, 2 Apr 2000 08:57:57 -0700 (PDT) From: andrew@grillet98.freeserve.co.uk To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/17752: Cannot install BTX boot manager Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17752 >Category: i386 >Synopsis: Cannot install BTX boot manager >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Apr 2 09:00:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Andrew Grillet >Release: 3.4-RELEASE >Organization: Quickstart technology Ltd >Environment: FreeBSD freebsd.grillet.home 3.4-RELEASE FreeBSD 3.4-RELEASE #0: Mon Dec 20 06 4:39 GMT 1999 jkh@time.cdrom.com /usr/src/sys/compile/GENERIC I386 >Description: /stand/sysinstall is supposed to automatically install BTX boot manager. Unfortunately it silently uses the option 'Nopacket'. I have a system on which nopacket is not viable, and boots to a bleep and sudden death. There is no indication to the user that there is a choice over this matter in the install script, nor any hint in the man page for boot that you need to do man boot0cfg! this must surely be the least guessable acronym in the knwon univers for a new user! >How-To-Repeat: Try installing on my PC! Haicom mobo with on board IDE set to AUTO and a Seagate HD. >Fix: This is primarily a documentation deficiency: you cannot install the system without knowing things which you cannot find out until it is installed! sysinstall needs to be enhanced to probe as to whether packet option is required, and there needs to be a way of selecting the option preferably in the screen where you select where to install BootEasy. There also needs to be an obvious way of re-installing bootEasy/BTX after MS products trash your boot sector! >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 2 12: 0: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 75F0337BB18 for ; Sun, 2 Apr 2000 12:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA16702; Sun, 2 Apr 2000 12:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B860237BDF7 for ; Sun, 2 Apr 2000 11:55:02 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA16308; Sun, 2 Apr 2000 11:55:02 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004021855.LAA16308@freefall.freebsd.org> Date: Sun, 2 Apr 2000 11:55:02 -0700 (PDT) From: maniatty@.cs.albany.edu To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/17755: FTP install of 4.0 allocates too few inodes in /var file system Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17755 >Category: i386 >Synopsis: FTP install of 4.0 allocates too few inodes in /var file system >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Apr 2 12:00:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Bill Maniatty >Release: 4.0 (FTP install as of 04/02/2000) >Organization: Dept. of Computer Science, SUNY Albany >Environment: FreeBSD slowpoke@cs.albany.edu 3.4 Release #4 Monday Dec 20 07:52:26 GMT 1999 jkh@time.cdrom.com /usr/src/sys/compile/bootmfs i386 >Description: I pulled down the boot disk and mfs disk from www.freebsd.org about 1 week ago (from the 4.0 distribution, although apparently the 3.0 distribution is used for the initial boot). I then did an install, and basically said yes to a fairly large number of packages. The /mnt/var file system ran out of Inodes (which was probably set by the automatic disk partitioning strategy of the installation script). >How-To-Repeat: See the full description, just say yes to every package (although I did not say yes to japanese, korean or chinese language support related packages). >Fix: Have mkfs give a more reasonable default for the automatic disk partitioning option in the installation. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 2 12: 0:16 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5FD1B37BE9E for ; Sun, 2 Apr 2000 12:00:09 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA16711; Sun, 2 Apr 2000 12:00:08 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.wzrd.com (mail.wzrd.com [206.99.165.3]) by hub.freebsd.org (Postfix) with ESMTP id C3E7637B5D4 for ; Sun, 2 Apr 2000 11:59:38 -0700 (PDT) (envelope-from danh@wzrd.com) Received: by mail.wzrd.com (Postfix, from userid 91) id AF75D5D06F; Sun, 2 Apr 2000 14:59:08 -0400 (EDT) Message-Id: <20000402185908.AF75D5D06F@mail.wzrd.com> Date: Sun, 2 Apr 2000 14:59:08 -0400 (EDT) From: danh@wzrd.com Reply-To: danh@wzrd.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/17756: sshd ignores .hushlogin Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17756 >Category: bin >Synopsis: sshd ignores .hushlogin >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Apr 2 12:00:03 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dan Harnett >Release: FreeBSD 4.0-RELEASE >Organization: >Environment: FreeBSD 4.0-RELEASE i386 >Description: sshd ignores the existence of a .hushlogin file in a users home directory for a quiet login. Setting the capability in /etc/login.conf works great however. >How-To-Repeat: Create a .hushlogin file in your home directory. Make sure the hushlogin capability for your login class does not exist. Use a secure shell client to login. Appropriate behavior would be to not print the copyright, last login, and message of the day. >Fix: Apply the following patch. It would appear the third argument to login_getcapbool(3) does not affect the return value if the capability is not found. It only has an affect when the first or second arguments are NULL. --- sshd.c.orig Sun Apr 2 13:57:22 2000 +++ sshd.c Sun Apr 2 14:20:33 2000 @@ -2289,12 +2289,12 @@ /* Check if .hushlogin exists. */ snprintf(line, sizeof line, "%.200s/.hushlogin", pw->pw_dir); - quiet_login = stat(line, &st) >= 0; #ifdef LOGIN_CAP lc = login_getpwclass(pw); - if (lc == NULL) - lc = login_getclassbyname(NULL, pw); - quiet_login = login_getcapbool(lc, "hushlogin", quiet_login); + quiet_login = (stat(line, &st) >= 0) + || login_getcapbool(lc, "hushlogin", 0); +#else + quiet_login = stat(line, &st) >= 0; #endif /* LOGIN_CAP */ #ifdef __FreeBSD__ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 2 12:50:13 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 48B6F37B832 for ; Sun, 2 Apr 2000 12:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA20263; Sun, 2 Apr 2000 12:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.hcisp.net (Stargate.hcisp.net [208.60.89.18]) by hub.freebsd.org (Postfix) with SMTP id 0766D37BA56 for ; Sun, 2 Apr 2000 12:42:49 -0700 (PDT) (envelope-from tim@mysql.com) Received: (qmail 8734 invoked from network); 2 Apr 2000 19:51:18 -0000 Received: from modem5.hcisp.net (HELO threads.polyesthetic.msg) (208.60.89.71) by stargate.hcisp.net with SMTP; 2 Apr 2000 19:51:18 -0000 Received: (qmail 71779 invoked by uid 1001); 2 Apr 2000 19:42:29 -0000 Message-Id: <20000402194229.71778.qmail@threads.polyesthetic.msg> Date: 2 Apr 2000 19:42:29 -0000 From: "Thimble Smith" Reply-To: tim@mysql.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/17757: select returns 0 if pthread_kill'd w/ sig. handler Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17757 >Category: kern >Synopsis: select returns 0 if pthread_kill'd w/ sig. handler >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Apr 2 12:50:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Thimble Smith >Release: FreeBSD 4.0-STABLE i386 >Organization: MySQL >Environment: This error appears in 3.4-STABLE and 4.0-STABLE, at least. >Description: When a thread installs a signal handler, and then is pthread_kill'd during a select, it returns 0 (as if the select timed out) instead of -1. In addition, errno is not set to EINTR. If a signal handler is not installed, select correctly returns -1 and sets errno to EINTR. I'm not sure if this affects reads and writes or not, yet. >How-To-Repeat: cd /tmp cat < simple.c #include #include #include #include #include #include #include void *t_body(void *arg); pthread_mutex_t t_lock; pthread_cond_t t_cond; sigset_t set; #define WRITE(x) do { printf(x "\n"); fflush(stdout); } while (0) int main(void) { pthread_t t; WRITE("main: hello"); pthread_mutex_init(&t_lock, NULL); pthread_cond_init(&t_cond, NULL); sigemptyset(&set); sigaddset(&set, SIGUSR1); pthread_mutex_lock(&t_lock); WRITE("main: creating test thread..."); pthread_create(&t, NULL, t_body, NULL); pthread_cond_wait(&t_cond, &t_lock); pthread_mutex_unlock(&t_lock); pthread_sigmask(SIG_BLOCK, &set, NULL); sleep(1); WRITE("main: killing test thread"); pthread_kill(t, SIGUSR1); pthread_exit(NULL); /* NOTREACHED */ exit(EXIT_SUCCESS); } void handle_sigusr1(int sig) { WRITE("handle_sigusr1"); signal(sig, handle_sigusr1); } void * t_body(void *arg) { struct sigaction sact; fd_set fds; int error; WRITE("test: hello"); #ifdef SIG sact.sa_flags = 0; sact.sa_handler = handle_sigusr1; sigaction(SIGUSR1, &sact, NULL); #endif FD_ZERO(&fds); pthread_detach(pthread_self()); pthread_sigmask(SIG_UNBLOCK, &set, NULL); WRITE("test: go ahead, main"); pthread_mutex_lock(&t_lock); pthread_cond_signal(&t_cond); pthread_mutex_unlock(&t_lock); WRITE("test: sleeping..."); error = select(0, &fds, 0, 0, 0); printf("test: select returned %d\n", error); fflush(stdout); if (errno == EINTR) WRITE("test: INTERRUPTED! Yeah!"); else { printf("test: uh-oh (error: %s)\n", strerror(errno)); fflush(stdout); } return NULL; } END_PROG cc -o simple -DSIG simple.c -pthread ./simple cc -o simple simple.c -pthread ./simple >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 2 13:20: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D59BE37B5F7 for ; Sun, 2 Apr 2000 13:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA22185; Sun, 2 Apr 2000 13:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sun, 2 Apr 2000 13:20:03 -0700 (PDT) Message-Id: <200004022020.NAA22185@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Christopher T. Johnson" Subject: Re: kern/6300: System locks up in SMP mode when accessing fd or snd Reply-To: "Christopher T. Johnson" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/6300; it has been noted by GNATS. From: "Christopher T. Johnson" To: freebsd-gnats-submit@FreeBSD.org, cjohnson@neunacht.netgsi.com Cc: Subject: Re: kern/6300: System locks up in SMP mode when accessing fd or snd Date: Sun, 02 Apr 2000 16:09:33 -0400 Problem tracks Mother Board version. Tyan Tomcat IV(?) The newer boards do not display this problem but my two older boards do. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 2 13:40:24 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 19EAD37B652 for ; Sun, 2 Apr 2000 13:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA23638; Sun, 2 Apr 2000 13:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by hub.freebsd.org (Postfix) with SMTP id 70FAB37B652 for ; Sun, 2 Apr 2000 13:35:55 -0700 (PDT) (envelope-from dwmalone@maths.tcd.ie) Received: from walton.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 2 Apr 2000 21:35:54 +0100 (BST) Message-Id: <200004022135.aa84513@walton.maths.tcd.ie> Date: Sun, 2 Apr 2000 21:35:54 +0100 (BST) From: dwmalone@maths.tcd.ie Reply-To: dwmalone@maths.tcd.ie To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/17758: Make the sl driver dynamically expandable. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17758 >Category: kern >Synopsis: Make sl driver dynamicallly expandable. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Apr 2 13:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: David Malone >Release: FreeBSD 5.0-CURRENT i386 >Organization: School of Mathematics, Trinity College, Dublin, Ireland. >Environment: 4.0 and 5.0 - patch probably applies to 3-STABLE too. >Description: Currently you need to give the numbes of slip units in the kernel config file. I include a patch which allocates units dynamically as they are required. The patch is based on the tun driver and the recent ability to delete interfaces which are no longer required. One or two points of the patch are slightly tricky, so I'll explain them here. These points relate to the fact that slip driver has an ioctl which allows you to select what slip unit number you want. First, if you specifically select a unit number, that unit is marked as static and will not be handed out dynamically (ie. when SLIPDISC is first selected for a tty). This used to be stored in the sl_softc using the SC_STATIC flag, however as the new code now deallocates sl_softc structs that are no longer in use it seemed a waste to store a whole softc struct to just remember that it shouldn't be handed out dynamically. For this reason I just store an array of unit numbers which are to be considered static. The array is explanded as necessary. Second, the unit selecting code had become really complicated. It swapped the contents of two softcs, and then swapped the contained if structs back again. It seems these acrobatics aimed to ensure that the linked list of interfaces didn't get screwed up. However interfaces can now be deleted, and I wanted to deallocate the struct softcs while they were no longer in use, so this code is now somewhat more straight forward. (I don't understand why the cblocks are reallocated after selecting a new unit number, it may now be unnecessary). The other changes just relate to the fact that the old driver got the softc from sl_softc[ifp->if_unit] instead of ifp->if_softc. Other than that I've tried to use the old code as much as possible. (The only code which is a bit less efficient would be the code which finds a free unit number. This could be improved by sorting the list of static unit numbers and the list of existing slip devices, but it doesn't seem worth the extra complexity). I've given this patch some testing configuring one/both of my serial ports as slip interfaces in various ways, and it seems to work fine. >How-To-Repeat: Try to use more slip devices than you have configured. >Fix: Index: if_sl.c =================================================================== RCS file: /cvs/FreeBSD-CVS/src/sys/net/if_sl.c,v retrieving revision 1.84 diff -u -r1.84 if_sl.c --- if_sl.c 2000/02/21 08:06:18 1.84 +++ if_sl.c 2000/03/31 22:16:57 @@ -105,6 +105,8 @@ #include +static MALLOC_DEFINE(M_SL, "sl", "SLIP Interface"); + static void slattach __P((void *)); PSEUDO_SET(slattach, if_sl); @@ -168,14 +170,17 @@ #define ABT_COUNT 3 /* count of escapes for abort */ #define ABT_WINDOW (ABT_COUNT*2+2) /* in seconds - time to count */ -static struct sl_softc sl_softc[NSL]; +LIST_HEAD(sl_list, sl_softc) sl_list; #define FRAME_END 0xc0 /* Frame End */ #define FRAME_ESCAPE 0xdb /* Frame Esc */ #define TRANS_FRAME_END 0xdc /* transposed frame end */ #define TRANS_FRAME_ESCAPE 0xdd /* transposed frame esc */ -static int slinit __P((struct sl_softc *)); +static int slisstatic __P((int)); +static void slmarkstatic __P((int)); +static struct sl_softc *slcreate __P((void)); +static void sldestroy __P((struct sl_softc *sc)); static struct mbuf *sl_btom __P((struct sl_softc *, int)); static timeout_t sl_keepalive; static timeout_t sl_outfill; @@ -201,55 +206,110 @@ slattach(dummy) void *dummy; { - register struct sl_softc *sc; - register int i = 0; - linesw[SLIPDISC] = slipdisc; - for (sc = sl_softc; i < NSL; sc++) { - sc->sc_if.if_name = "sl"; - sc->sc_if.if_unit = i++; - sc->sc_if.if_mtu = SLMTU; - sc->sc_if.if_flags = -#ifdef SLIP_IFF_OPTS - SLIP_IFF_OPTS; -#else - IFF_POINTOPOINT | SC_AUTOCOMP | IFF_MULTICAST; -#endif - sc->sc_if.if_type = IFT_SLIP; - sc->sc_if.if_ioctl = slioctl; - sc->sc_if.if_output = sloutput; - sc->sc_if.if_snd.ifq_maxlen = 50; - sc->sc_fastq.ifq_maxlen = 32; - sc->sc_if.if_linkmib = sc; - sc->sc_if.if_linkmiblen = sizeof *sc; - if_attach(&sc->sc_if); - bpfattach(&sc->sc_if, DLT_SLIP, SLIP_HDRLEN); - } + LIST_INIT(&sl_list); } -static int -slinit(sc) - register struct sl_softc *sc; +static int *st_unit_list; +static size_t st_unit_max = 0; + +static +int slisstatic(unit) + int unit; { - register caddr_t p; + size_t i; - if (sc->sc_ep == (u_char *) 0) { - MCLALLOC(p, M_WAIT); - if (p) - sc->sc_ep = (u_char *)p + SLBUFSIZE; - else { - printf("sl%ld: can't allocate buffer\n", - (long)(sc - sl_softc)); - return (0); - } + for (i = 0; i < st_unit_max; i++) + if (st_unit_list[i] == unit) + return 1; + return 0; +} + +static +void slmarkstatic(unit) + int unit; +{ + int *t; + + if (slisstatic(unit)) + return; + + MALLOC(t, int *, sizeof(int) * (st_unit_max+1), M_SL, M_NOWAIT); + if (t == NULL) + return; + + if (st_unit_list) { + bcopy(st_unit_list, t, sizeof(int) * st_unit_max); + FREE(st_unit_list, M_SL); + } + st_unit_list = t; + st_unit_list[st_unit_max] = unit; + st_unit_max++; +} + +static struct sl_softc * +slcreate() +{ + struct sl_softc *sc, *nc; + int unit; + caddr_t p; + + MALLOC(sc, struct sl_softc *, sizeof(*sc), M_SL, M_WAITOK); + bzero(sc, sizeof *sc); + + MCLALLOC(p, M_WAIT); + if (p) + sc->sc_ep = (u_char *)p + SLBUFSIZE; + else { + printf("sl: can't allocate buffer\n"); + FREE(sc, M_SL); + return (NULL); } + sc->sc_buf = sc->sc_ep - SLRMAX; sc->sc_mp = sc->sc_buf; sl_compress_init(&sc->sc_comp, -1); - return (1); + + sc->sc_if.if_softc = sc; + sc->sc_if.if_name = "sl"; + sc->sc_if.if_mtu = SLMTU; + sc->sc_if.if_flags = +#ifdef SLIP_IFF_OPTS + SLIP_IFF_OPTS; +#else + IFF_POINTOPOINT | SC_AUTOCOMP | IFF_MULTICAST; +#endif + sc->sc_if.if_type = IFT_SLIP; + sc->sc_if.if_ioctl = slioctl; + sc->sc_if.if_output = sloutput; + sc->sc_if.if_snd.ifq_maxlen = 50; + sc->sc_fastq.ifq_maxlen = 32; + sc->sc_if.if_linkmib = sc; + sc->sc_if.if_linkmiblen = sizeof *sc; + + /* + * Find a suitable unit number. + */ + for (unit=0; ; unit++) { + if (slisstatic(unit)) + continue; + LIST_FOREACH(nc, &sl_list, sl_next) { + if (nc->sc_if.if_unit == unit) + continue; + } + break; + } + sc->sc_if.if_unit = unit; + LIST_INSERT_HEAD(&sl_list, sc, sl_next); + + if_attach(&sc->sc_if); + bpfattach(&sc->sc_if, DLT_SLIP, SLIP_HDRLEN); + + return sc; } + /* * Line specific open routine. * Attach the given tty to the first available sl unit. @@ -262,7 +322,6 @@ { struct proc *p = curproc; /* XXX */ register struct sl_softc *sc; - register int nsl; int s, error; error = suser(p); @@ -272,38 +331,44 @@ if (tp->t_line == SLIPDISC) return (0); - for (nsl = NSL, sc = sl_softc; --nsl >= 0; sc++) - if (sc->sc_ttyp == NULL && !(sc->sc_flags & SC_STATIC)) { - if (slinit(sc) == 0) - return (ENOBUFS); - tp->t_sc = (caddr_t)sc; - sc->sc_ttyp = tp; - sc->sc_if.if_baudrate = tp->t_ospeed; - ttyflush(tp, FREAD | FWRITE); + if ((sc = slcreate()) == NULL) + return (ENOBUFS); - tp->t_line = SLIPDISC; - /* - * We don't use t_canq or t_rawq, so reduce their - * cblock resources to 0. Reserve enough cblocks - * for t_outq to guarantee that we can fit a full - * packet if the SLIP_HIWAT check allows slstart() - * to loop. Use the same value for the cblock - * limit since the reserved blocks should always - * be enough. Reserving cblocks probably makes - * the CLISTRESERVE check unnecessary and wasteful. - */ - clist_alloc_cblocks(&tp->t_canq, 0, 0); - clist_alloc_cblocks(&tp->t_outq, - SLIP_HIWAT + 2 * sc->sc_if.if_mtu + 1, - SLIP_HIWAT + 2 * sc->sc_if.if_mtu + 1); - clist_alloc_cblocks(&tp->t_rawq, 0, 0); + tp->t_sc = (caddr_t)sc; + sc->sc_ttyp = tp; + sc->sc_if.if_baudrate = tp->t_ospeed; + ttyflush(tp, FREAD | FWRITE); + tp->t_line = SLIPDISC; - s = splnet(); - if_up(&sc->sc_if); - splx(s); - return (0); - } - return (ENXIO); + /* + * We don't use t_canq or t_rawq, so reduce their + * cblock resources to 0. Reserve enough cblocks + * for t_outq to guarantee that we can fit a full + * packet if the SLIP_HIWAT check allows slstart() + * to loop. Use the same value for the cblock + * limit since the reserved blocks should always + * be enough. Reserving cblocks probably makes + * the CLISTRESERVE check unnecessary and wasteful. + */ + clist_alloc_cblocks(&tp->t_canq, 0, 0); + clist_alloc_cblocks(&tp->t_outq, + SLIP_HIWAT + 2 * sc->sc_if.if_mtu + 1, + SLIP_HIWAT + 2 * sc->sc_if.if_mtu + 1); + clist_alloc_cblocks(&tp->t_rawq, 0, 0); + + s = splnet(); + if_up(&sc->sc_if); + splx(s); + return (0); +} + +void +sldestroy(struct sl_softc *sc) { + bpfdetach(&sc->sc_if); + if_detach(&sc->sc_if); + LIST_REMOVE(sc, sl_next); + MCLFREE((caddr_t)(sc->sc_ep - SLBUFSIZE)); + FREE(sc, M_SL); } /* @@ -338,13 +403,9 @@ untimeout(sl_keepalive, sc, sc->sc_kahandle); } if_down(&sc->sc_if); - sc->sc_flags &= SC_STATIC; sc->sc_ttyp = NULL; tp->t_sc = NULL; - MCLFREE((caddr_t)(sc->sc_ep - SLBUFSIZE)); - sc->sc_ep = 0; - sc->sc_mp = 0; - sc->sc_buf = 0; + sldestroy(sc); } splx(s); return 0; @@ -363,8 +424,8 @@ int flag; struct proc *p; { - struct sl_softc *sc = (struct sl_softc *)tp->t_sc, *nc, *tmpnc; - int s, nsl; + struct sl_softc *sc = (struct sl_softc *)tp->t_sc, *nc; + int s, unit, wasup; s = splimp(); switch (cmd) { @@ -373,44 +434,36 @@ break; case SLIOCSUNIT: - if (sc->sc_if.if_unit != *(u_int *)data) { - for (nsl = NSL, nc = sl_softc; --nsl >= 0; nc++) { - if ( nc->sc_if.if_unit == *(u_int *)data - && nc->sc_ttyp == NULL - ) { - tmpnc = malloc(sizeof *tmpnc, M_TEMP, - M_NOWAIT); - if (tmpnc == NULL) { + unit = *(u_int *)data; + if (unit < 0) { + splx(s); + return (ENXIO); + } + if (sc->sc_if.if_unit != unit) { + LIST_FOREACH(nc, &sl_list, sl_next) { + if (nc->sc_if.if_unit == *(u_int *)data) { splx(s); - return (ENOMEM); - } - *tmpnc = *nc; - *nc = *sc; - nc->sc_if = tmpnc->sc_if; - tmpnc->sc_if = sc->sc_if; - *sc = *tmpnc; - free(tmpnc, M_TEMP); - if (sc->sc_if.if_flags & IFF_UP) { - if_down(&sc->sc_if); - if (!(nc->sc_if.if_flags & IFF_UP)) - if_up(&nc->sc_if); - } else if (nc->sc_if.if_flags & IFF_UP) - if_down(&nc->sc_if); - sc->sc_flags &= ~SC_STATIC; - sc->sc_flags |= (nc->sc_flags & SC_STATIC); - tp->t_sc = sc = nc; - clist_alloc_cblocks(&tp->t_outq, - SLIP_HIWAT + 2 * sc->sc_if.if_mtu + 1, - SLIP_HIWAT + 2 * sc->sc_if.if_mtu + 1); - sl_compress_init(&sc->sc_comp, -1); - goto slfound; + return (ENXIO); } } - splx(s); - return (ENXIO); + + wasup = sc->sc_if.if_flags & IFF_UP; + bpfdetach(&sc->sc_if); + if_detach(&sc->sc_if); + LIST_REMOVE(sc, sl_next); + sc->sc_if.if_unit = unit; + LIST_INSERT_HEAD(&sl_list, sc, sl_next); + if_attach(&sc->sc_if); + bpfattach(&sc->sc_if, DLT_SLIP, SLIP_HDRLEN); + if (wasup) + if_up(&sc->sc_if); + else + if_down(&sc->sc_if); + clist_alloc_cblocks(&tp->t_outq, + SLIP_HIWAT + 2 * sc->sc_if.if_mtu + 1, + SLIP_HIWAT + 2 * sc->sc_if.if_mtu + 1); } - slfound: - sc->sc_flags |= SC_STATIC; + slmarkstatic(unit); break; case SLIOCSKEEPAL: @@ -470,7 +523,7 @@ struct sockaddr *dst; struct rtentry *rtp; { - register struct sl_softc *sc = &sl_softc[ifp->if_unit]; + register struct sl_softc *sc = ifp->if_softc; register struct ip *ip; register struct ifqueue *ifq; int s; @@ -936,6 +989,7 @@ register struct ifaddr *ifa = (struct ifaddr *)data; register struct ifreq *ifr = (struct ifreq *)data; register int s, error = 0; + struct sl_softc *sc = ifp->if_softc; s = splimp(); @@ -946,7 +1000,7 @@ * if.c will set the interface up even if we * don't want it to. */ - if (sl_softc[ifp->if_unit].sc_ttyp == NULL) { + if (sc->sc_ttyp == NULL) { ifp->if_flags &= ~IFF_UP; } break; @@ -956,7 +1010,7 @@ * setting the address. */ if (ifa->ifa_addr->sa_family == AF_INET) { - if (sl_softc[ifp->if_unit].sc_ttyp != NULL) + if (sc->sc_ttyp != NULL) ifp->if_flags |= IFF_UP; } else { error = EAFNOSUPPORT; @@ -982,7 +1036,7 @@ struct tty *tp; ifp->if_mtu = ifr->ifr_mtu; - tp = sl_softc[ifp->if_unit].sc_ttyp; + tp = sc->sc_ttyp; if (tp != NULL) clist_alloc_cblocks(&tp->t_outq, SLIP_HIWAT + 2 * ifp->if_mtu + 1, Index: if_slvar.h =================================================================== RCS file: /cvs/FreeBSD-CVS/src/sys/net/if_slvar.h,v retrieving revision 1.16 diff -u -r1.16 if_slvar.h --- if_slvar.h 1999/08/28 00:48:21 1.16 +++ if_slvar.h 2000/03/30 00:06:28 @@ -67,13 +67,13 @@ struct callout_handle sc_ofhandle; struct callout_handle sc_kahandle; struct slcompress sc_comp; /* tcp compression data */ + LIST_ENTRY(sl_softc) sl_next; }; /* internal flags */ #define SC_ERROR 0x0001 /* had an input error */ #define SC_OUTWAIT 0x0002 /* waiting for output fill */ #define SC_KEEPALIVE 0x0004 /* input keepalive */ -#define SC_STATIC 0x0008 /* it is static unit */ /* visible flags */ #define SC_COMPRESS IFF_LINK0 /* compress TCP traffic */ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 2 15:30: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C76C537BB28 for ; Sun, 2 Apr 2000 15:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA31432; Sun, 2 Apr 2000 15:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B4C1237BB1B for ; Sun, 2 Apr 2000 15:29:49 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA31406; Sun, 2 Apr 2000 15:29:48 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004022229.PAA31406@freefall.freebsd.org> Date: Sun, 2 Apr 2000 15:29:48 -0700 (PDT) From: slansky@usa.net To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/17759: Cannot install FreeBSD 4.0 on my IDE hard disk Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17759 >Category: kern >Synopsis: Cannot install FreeBSD 4.0 on my IDE hard disk >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Apr 2 15:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Petr >Release: FreeBSD 4.0 RELEASE >Organization: >Environment: i386DX40; AMD-K6-350, common PC hardware, NE2000, 8/32MB of RAM, FD, ... >Description: I cannot install (not from CD nor from floppy) FreeBSD 4.0 on my IDE hardisk (QUANTUM LPS170A; 170MB, geometry:1011/15/22). Install cannot create filesystems, it ends with "bad magic number" or "tryed to mount R/W to /mnt that is RO,..." Verison FreeBSD 2.2.8, linux and DOS, ... love my disk.... >How-To-Repeat: I think problem is in "ata" driver >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 2 15:51:54 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BEFFB37B69B; Sun, 2 Apr 2000 15:51:52 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA33221; Sun, 2 Apr 2000 15:50:30 -0700 (PDT) (envelope-from brian@FreeBSD.org) Date: Sun, 2 Apr 2000 15:50:30 -0700 (PDT) From: Message-Id: <200004022250.PAA33221@freefall.freebsd.org> To: brian@FreeBSD.org, freebsd-bugs@FreeBSD.org, brian@FreeBSD.org Subject: Re: conf/17750: periodic/daily problem one day after changing to summer time Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: periodic/daily problem one day after changing to summer time Responsible-Changed-From-To: freebsd-bugs->brian Responsible-Changed-By: brian Responsible-Changed-When: Sun Apr 2 15:49:18 PDT 2000 Responsible-Changed-Why: I've already got a bunch of similar PRs. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 2 16:54:18 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from celery.dragondata.com (celery.dragondata.com [205.253.12.6]) by hub.freebsd.org (Postfix) with ESMTP id 076FC37BAD7 for ; Sun, 2 Apr 2000 16:54:16 -0700 (PDT) (envelope-from toasty@celery.dragondata.com) Received: (from toasty@localhost) by celery.dragondata.com (8.9.3/8.9.3) id SAA75466 for bugs@freebsd.org; Sun, 2 Apr 2000 18:54:05 -0500 (CDT) (envelope-from toasty) From: Kevin Day Message-Id: <200004022354.SAA75466@celery.dragondata.com> Subject: 2.2.8 -> 4.0 Upgrade via sysinstall To: bugs@freebsd.org Date: Sun, 2 Apr 2000 18:54:04 -0500 (CDT) X-Mailer: ELM [version 2.5 PL1] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I had a 2.2.8 system that I wanted to upgrade to 4.0-RELEASE. Instead of doing a source upgrade(I had hosed gcc somehow on it, and couldn't fix it), I did an upgrade by building the install disks and using sysinstall. I chose "Upgrade", and as soon as I hit yes at the dialog box asking me if I was sure I wanted to do this, given all the scary stuff about upgrading this way, I'd get a "lockmgr: locking against myself" panic, followed by a hard hang. So, I decided that I'd just backup all the stuff I cared about into a directory (/old) and do a normal install. This mostly worked, except that sysinstall wouldn't overwrite files that have the "schg" flag set on them, which caused /kernel and other files not to be overwritten. Is this intentional? I'd think that if you were doing a fresh install, all bets are off as to what's on the drive, you are intentionally overwriting things. (I realize most people do a newfs during sysinstall, but I don't think that it should be required) Also, while this isn't a big deal, I've got two de ethernet cards in this system. What was detected as de0 in 2.2.8 is now de1, and vice versa. It was really confusing trying to figure out what was wrong. de0: port 0x1000-0x107f mem 0xf4000000-0xf400007f irq 11 at device 14.0 on pci0 de0: 21140A [10-100Mb/s] pass 2.2 de0: address 00:40:05:43:a3:a3 de0: supplying EUI64: 00:40:05:ff:fe:43:a3:a3 de0: driver is using old-style compatability shims de1: port 0x1080-0x10ff mem 0xf4000400-0xf400047f irq 10 at device 15.0 on pci0 de1: 21140A [10-100Mb/s] pass 2.2 de1: address 00:40:05:42:dd:26 de1: driver is using old-style compatability shims Other than that, everything went smoothly. Several customers had a.out binaries that I had to move some libraries from /usr/local/lib into /usr/local/lib/aout, but that was easy enough. Kevin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 2 18:30:13 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 30D0A37BCDF for ; Sun, 2 Apr 2000 18:30:11 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA47494; Sun, 2 Apr 2000 18:30:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9BEDF37B629 for ; Sun, 2 Apr 2000 18:23:33 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA46437; Sun, 2 Apr 2000 18:23:10 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004030123.SAA46437@freefall.freebsd.org> Date: Sun, 2 Apr 2000 18:23:10 -0700 (PDT) From: bill@2ez.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/17761: disk label editor in 4.0 deleted 3.4 partition Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17761 >Category: i386 >Synopsis: disk label editor in 4.0 deleted 3.4 partition >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Apr 2 18:30:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: bill smith >Release: 3.4 / 4.0 >Organization: 2ez.com >Environment: >Description: greg lehey and i loaded 4.0 onto the third partition of a drive where part0 was dos, part1 was bsd 3.4. the installation of 4.0 proceeded normally, and at the conclusion, the partition for 3.4 was missing and its contents could not be recovered. greg considered this a serious bug, and i have been trying to contact him to find-out if the problem had been reported. he's travelling, so i'm mentioning this in his absence. >How-To-Repeat: i have not tried to repeat the problem. it may have been caused by mount points being named the same in different partitions. each of 3.4 and 4.0 had root and usr mount points. here's how we did it: partition a 4g drive with 4 partitions about 1g each. install 3.4 on the second partition. create slices for root, swap, and usr (50m, 250m and balance). install 4.0. create slices for root and usr (50m and balance). you will not be able to name the root / because the name already exists. create label /foo and then modify the name to /. use a similar trick for /usr. continue with installation. this must not be the correct way to install different versions and keep them separated. i sure would like to know how to do it. greg was jet-lagged from the trip up from australia, so maybe this is pilot error and he just didn't catch it. bill >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 2 19: 0:50 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E84B137BB7A; Sun, 2 Apr 2000 19:00:48 -0700 (PDT) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA49778; Sun, 2 Apr 2000 19:00:48 -0700 (PDT) (envelope-from billf@FreeBSD.org) Date: Sun, 2 Apr 2000 19:00:48 -0700 (PDT) From: Message-Id: <200004030200.TAA49778@freefall.freebsd.org> To: slansky@usa.net, billf@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/17759: Cannot install FreeBSD 4.0 on my IDE hard disk Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Cannot install FreeBSD 4.0 on my IDE hard disk State-Changed-From-To: open->closed State-Changed-By: billf State-Changed-When: Sun Apr 2 18:59:13 PDT 2000 State-Changed-Why: Not a bug report, empty PR. Please send mail to questions@FreeBSD.org (and in the future choosing "critical" severity and "high" priority and deeming this a kernel problem is probably not wise, when the problem is most likely hardware or PEBKAC) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 2 23: 0: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D08A737BBC5 for ; Sun, 2 Apr 2000 23:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA70968; Sun, 2 Apr 2000 23:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1D90137B5D1 for ; Sun, 2 Apr 2000 22:58:51 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA70836; Sun, 2 Apr 2000 22:58:51 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004030558.WAA70836@freefall.freebsd.org> Date: Sun, 2 Apr 2000 22:58:51 -0700 (PDT) From: pccb@yahoo.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: bin/17764: wrong percentage completed in bad144 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17764 >Category: bin >Synopsis: wrong percentage completed in bad144 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Apr 2 23:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Pierre Chiu >Release: 3.4-RELEASE >Organization: ObjTech Corporation >Environment: FreeBSD zeus.objtech.com 3.4-RELEASE FreeBSD 3.4-RELEASE #1: Sun Apr 2 00:02:43 EST 2000 root@zeus.objtech.com:/usr/src/sys/compile/ZEUS i386 >Description: Running bad144 against a Maxtor 40.9GB Diamondmax Plus 40 harddisk using 'bad144 -v -s /dev/wd1s1c' After running for one day, screen showing 30696123 of 80041059 blocks (4294967281%). >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 2 23:57:43 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from knight.cons.org (knight.cons.org [194.233.237.86]) by hub.freebsd.org (Postfix) with ESMTP id BDB9137B95B for ; Sun, 2 Apr 2000 23:57:39 -0700 (PDT) (envelope-from cracauer@knight.cons.org) Received: (from cracauer@localhost) by knight.cons.org (8.9.3/8.9.3) id IAA04957; Mon, 3 Apr 2000 08:57:21 +0200 (CEST) Date: Mon, 3 Apr 2000 08:57:21 +0200 From: Martin Cracauer To: Richard Brooksby Cc: freebsd-bugs@FreeBSD.ORG, Ravenbrook System Administrators Subject: Re: Something funny about ampersand in /bin/sh Message-ID: <20000403085720.D4411@cons.org> References: <20000331203145.A22722@cons.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000331203145.A22722@cons.org>; from cracauer@cons.org on Fri, Mar 31, 2000 at 08:31:45PM +0200 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Richard, you you please verify whether my assumption below is correct or not? Did you really use /bin/sh as shipped? In <20000331203145.A22722@cons.org>, Martin Cracauer wrote: > In , Richard Brooksby wrote: > > [Please retain Cc line when reply to this message.] > > > > I've just installed FreeBSD 3.4 on our new server and started > > migrating various things from our old server (running FreeBSD 2.2.8). > > One of my shell scripts broke, claiming "ambiguous redirection". By > > trial and error I discovered that ampersands are being treated > > specially in the shell in some way. For example, this no longer > > works: > > > > echo 2>&1 foo > > > > Instead of writing "foo" to stdout this puts "foo" in a file called "1". > > > > This looks like a serious bug in the shell to me, since it breaks a > > lot of shell scripts which use this kind of redirection. > > > > Mysteriously, this works: > > > > sh -c 'echo 2>&1 foo' > > Sorry, I tried FreeBSD's /bin/sh on 3.4-STABLE, 4.0-STABLE and > 5.0-current and all work right. > > $PWD2(\h)\!% uname -r > 3.4-STABLE > $PWD2(\h)\!% echo 2>&1 foo > foo > $PWD2(\h)\!% cat 1 > cat: 1: No such file or directory > > I assume that your example runs on another shell that got in your way > while upgrading. -- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Martin Cracauer http://www.cons.org/cracauer/ Tel.: (private) +4940 5221829 Fax.: (private) +4940 5228536 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 3 0: 0: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5C0CB37BB73 for ; Mon, 3 Apr 2000 00:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA76597; Mon, 3 Apr 2000 00:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from goliath.siemens.de (goliath.siemens.de [194.138.37.131]) by hub.freebsd.org (Postfix) with ESMTP id 5BB6037BDA0 for ; Sun, 2 Apr 2000 23:57:26 -0700 (PDT) (envelope-from andre.albsmeier@mchp.siemens.de) Received: from mail2.siemens.de (mail2.siemens.de [139.25.208.11]) by goliath.siemens.de (8.10.0/8.10.0) with ESMTP id e336vNt29198 for ; Mon, 3 Apr 2000 08:57:24 +0200 (MET DST) Received: from curry.mchp.siemens.de (curry.mchp.siemens.de [139.25.42.7]) by mail2.siemens.de (8.10.0/8.10.0) with ESMTP id e336vN326410 for ; Mon, 3 Apr 2000 08:57:23 +0200 (MET DST) Received: (from daemon@localhost) by curry.mchp.siemens.de (8.9.3/8.9.3) id IAA07478 for ; Mon, 3 Apr 2000 08:57:23 +0200 (CEST) Message-Id: <200004030657.IAA17316@internal> Date: Mon, 3 Apr 2000 08:57:21 +0200 (CEST) From: Andre Albsmeier To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/17765: sh in free(): warning: junk pointer, too low to make sense. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17765 >Category: bin >Synopsis: sh in free(): warning: junk pointer, too low to make sense. >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Apr 3 00:00:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Andre Albsmeier >Release: FreeBSD 3.4-STABLE i386 >Organization: >Environment: 3.4-STABLE as of 2.4.2000 >Description: There have been some recent changes to /bin/sh. I have observed the above error message with a shell script that ran fine before. >How-To-Repeat: Until now, I observed the errorneous behaviour only with this special shell script. I won't post it here since it is quite long and will only run in my environment. However, if someone ist still interested in it, please let me now and I will send it in private mail. I have compiled sh with -g and ran the script within it and gdb: root@bali:/people/andre/x>gdb ./sh GNU gdb 4.18 Copyright 1998 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-unknown-freebsd"... (gdb) set args ./csf cu pr se ba (gdb) run Starting program: ./sh ./csf cu pr se ba checking hosts:.... unreachable: none targets: 4 Files in /server/FreeBSD/conf/3/curry: ----------------------------------------------------------------------- sh in free(): warning: junk pointer, too low to make sense. Program received signal SIGSEGV, Segmentation fault. popstackmark (mark=0xbfbfd6e0) at /src/src-3/bin/sh/memalloc.c:191 191 stackp = sp->prev; (gdb) where #0 popstackmark (mark=0xbfbfd6e0) at /src/src-3/bin/sh/memalloc.c:191 #1 0x804b069 in evalfor (n=0x80ac948) at /src/src-3/bin/sh/eval.c:364 #2 0x804ad76 in evaltree (n=0x80ac948, flags=0) at /src/src-3/bin/sh/eval.c:251 #3 0x804ad54 in evaltree (n=0x80acd64, flags=0) at /src/src-3/bin/sh/eval.c:241 #4 0x804ac2b in evaltree (n=0x80acdc4, flags=0) at /src/src-3/bin/sh/eval.c:203 #5 0x804ad54 in evaltree (n=0x80ac558, flags=0) at /src/src-3/bin/sh/eval.c:241 #6 0x804ad54 in evaltree (n=0x80acdd4, flags=0) at /src/src-3/bin/sh/eval.c:241 #7 0x804ac2b in evaltree (n=0x80ace50, flags=0) at /src/src-3/bin/sh/eval.c:203 #8 0x804ac2b in evaltree (n=0x80acf28, flags=0) at /src/src-3/bin/sh/eval.c:203 #9 0x804ac2b in evaltree (n=0x80ae760, flags=0) at /src/src-3/bin/sh/eval.c:203 #10 0x804ac2b in evaltree (n=0x80ae7c0, flags=0) at /src/src-3/bin/sh/eval.c:203 #11 0x804ac2b in evaltree (n=0x80ae824, flags=0) at /src/src-3/bin/sh/eval.c:203 #12 0x804ac2b in evaltree (n=0x80ae8fc, flags=0) at /src/src-3/bin/sh/eval.c:203 #13 0x804ac2b in evaltree (n=0x80af128, flags=0) at /src/src-3/bin/sh/eval.c:203 #14 0x804ac2b in evaltree (n=0x80af188, flags=0) at /src/src-3/bin/sh/eval.c:203 #15 0x804afe2 in evalfor (n=0x80a55ec) at /src/src-3/bin/sh/eval.c:351 #16 0x804ad76 in evaltree (n=0x80a55ec, flags=0) at /src/src-3/bin/sh/eval.c:251 #17 0x805266b in cmdloop (top=1) at /src/src-3/bin/sh/main.c:254 #18 0x8052583 in main (argc=6, argv=0xbfbfd904) at /src/src-3/bin/sh/main.c:203 #19 0x80480ed in _start () >Fix: Unknown. If you want me to test something or have some fix, tell me. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 3 0:40: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2D5F237B541 for ; Mon, 3 Apr 2000 00:40:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA80598; Mon, 3 Apr 2000 00:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 3 Apr 2000 00:40:03 -0700 (PDT) Message-Id: <200004030740.AAA80598@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Martin Cracauer Subject: Re: bin/17765: sh in free(): warning: junk pointer, too low to make sense. Reply-To: Martin Cracauer Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/17765; it has been noted by GNATS. From: Martin Cracauer To: Andre Albsmeier Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/17765: sh in free(): warning: junk pointer, too low to make sense. Date: Mon, 3 Apr 2000 09:33:43 +0200 In <200004030657.IAA17316@internal>, Andre Albsmeier wrote: > There have been some recent changes to /bin/sh. I have observed > the above error message with a shell script that ran fine before. > > >How-To-Repeat: > > Until now, I observed the errorneous behaviour only with this special > shell script. I won't post it here since it is quite long and will > only run in my environment. However, if someone ist still interested > in it, please let me now and I will send it in private mail. Please send me a copy. Thanks Martin -- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Martin Cracauer http://www.cons.org/cracauer/ Tel.: (private) +4940 5221829 Fax.: (private) +4940 5228536 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 3 1:21: 0 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from mailhost.stack.nl (vaak.stack.nl [131.155.140.140]) by hub.freebsd.org (Postfix) with ESMTP id 5C02C37BD4A for ; Mon, 3 Apr 2000 01:20:57 -0700 (PDT) (envelope-from marcolz@stack.nl) Received: from toad.stack.nl (toad.stack.nl [131.155.140.135]) by mailhost.stack.nl (Postfix) with ESMTP id 361BE5D00F; Mon, 3 Apr 2000 10:20:56 +0200 (CEST) Received: by toad.stack.nl (Postfix, from userid 333) id 3B5619719; Mon, 3 Apr 2000 10:20:54 +0200 (CEST) Date: Mon, 3 Apr 2000 10:20:54 +0200 From: Marc Olzheim To: Anatoly Vorobey Cc: Bruce Evans , Marc Olzheim , freebsd-bugs@FreeBSD.ORG Subject: Re: bin/17619: pax cannot read all tar files created by tar. Message-ID: <20000403102054.A8152@stack.nl> References: <200004020840.AAA76390@freefall.freebsd.org> <20000402131424.A61897@happy.checkpoint.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <20000402131424.A61897@happy.checkpoint.com>; from mellon@pobox.com on Sun, Apr 02, 2000 at 01:14:24PM +0000 X-Operating-System: FreeBSD toad.stack.nl 3.4-RELEASE FreeBSD 3.4-RELEASE X-URL: http://www.stack.nl/~marcolz/ Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Bah. So what should be done in this case (assuming something needs > to be done?). I can patch pax to accept one-block archives and > yet produce correct archives - maybe that's the way to go? Given that > the GNU tar maintainer had more than 8 years to think about it, he's > obviously emotionally attached to one-trailing-block files and won't > let them go ;) That seems like a good idea to me. > > I admit I didn't even know pax(1) existed until I saw the PR and > was sufficiently intrigued to look at it ;) Well, I usually use the -rw option which does not need a pipe to copy directory-trees. Furthermore it uses a more sensible exit-code system than GNU-tar. > > By the way, Marc, Solaris's tar (SunOS 5.6) does handle correctly your > example (creates a tarfile with two trailing blocks), so if you have > anything specific from Solaris's tar that breaks pax, do tell. Hmm, I must 've tried the wrong file, since I cannot reproduce it. So it seems to work fine... Sorry for the fuss. Marc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 3 1:50: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2BC8B37BE66 for ; Mon, 3 Apr 2000 01:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA88850; Mon, 3 Apr 2000 01:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from gate.webclub.ru (gate.web2000.ru [195.58.61.2]) by hub.freebsd.org (Postfix) with ESMTP id 4AB9C37BC51 for ; Mon, 3 Apr 2000 01:47:54 -0700 (PDT) (envelope-from root@webclub.ru) Received: from root by gate.webclub.ru with local (Exim 3.13 #1) id 12c2VX-000LUH-00 for FreeBSD-gnats-submit@freebsd.org; Mon, 03 Apr 2000 12:46:51 +0400 Message-Id: Date: Mon, 03 Apr 2000 12:46:51 +0400 From: root@web2000.ru Reply-To: novikov@web2000.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/17767: /etc/group and comments Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17767 >Category: kern >Synopsis: The comments in /etc/group break many programs >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Apr 3 01:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Andrey Novikov >Release: FreeBSD 3.4-STABLE i386 >Organization: Web2000 Ltd. >Environment: >Description: Many programs e.g. proftpd asume /etc/group not to have any comments and complain about malformed group file on startup. >How-To-Repeat: >Fix: Remove comments from /etc/group >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 3 2:20: 4 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4743737BDCB for ; Mon, 3 Apr 2000 02:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA91853; Mon, 3 Apr 2000 02:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 26E2037BC2E for ; Mon, 3 Apr 2000 02:17:54 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA91713; Mon, 3 Apr 2000 02:17:54 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004030917.CAA91713@freefall.freebsd.org> Date: Mon, 3 Apr 2000 02:17:54 -0700 (PDT) From: swchui@hutchcity.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/17770: As I use FreeDSB and perl5.0, the program cannot use cookie and the cookie is not work Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17770 >Category: misc >Synopsis: As I use FreeDSB and perl5.0, the program cannot use cookie and the cookie is not work >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Apr 3 02:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Kelvin Chui >Release: 3.3 >Organization: HOME >Environment: FreeBSD finance-fe1.home.com.hk 3.3-RELEASE FreeBSD 3.3-RELEASE #0: Mon Mar 27 18:43:53 CST 2000 szewai@finance-fe1.home.com.hk:/usr/src/sys/compile/HOME i386 >Description: I use linux before and write the perl program to get the cooklie from the Browser, as I transform to freeBSD 3.3, all the program not work. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 3 3: 0: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 316B137BD81 for ; Mon, 3 Apr 2000 03:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA95835; Mon, 3 Apr 2000 03:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 3 Apr 2000 03:00:04 -0700 (PDT) Message-Id: <200004031000.DAA95835@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: bin/17681: XDR does not handle 64bit data types correctly Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/17681; it has been noted by GNATS. From: Sheldon Hearn To: "David E. Cross" Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/17681: XDR does not handle 64bit data types correctly Date: Mon, 03 Apr 2000 11:59:26 +0200 On Fri, 31 Mar 2000 11:33:02 EST, "David E. Cross" wrote: > Hmm? It shouldn't be. The aforementioned patch should make our xdr*() > routines look identical to NetBSDs. I'm looking at http://www.cs.rpi.edu/~crossd/FreeBSD/xdr.diff. It results in code that doesn't seem to look anything like the code at http://www.freebsd.org/cgi/cvsweb.cgi/basesrc/lib/libc/rpc/xdr.c?rev=1.21&cvsroot=netbsd . Am I being stupid? Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 3 3:10: 8 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BD59337B52E for ; Mon, 3 Apr 2000 03:10:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA96628; Mon, 3 Apr 2000 03:10:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 3 Apr 2000 03:10:04 -0700 (PDT) Message-Id: <200004031010.DAA96628@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: bin/16271 Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/16271; it has been noted by GNATS. From: Sheldon Hearn To: Jin Guojun (FTG staff) Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: bin/16271 Date: Mon, 03 Apr 2000 12:02:32 +0200 On Fri, 31 Mar 2000 07:54:39 PST, Jin Guojun wrote: > > I don't think so, because that file is on the vendor branch. This fix > > should be submitted to keith Bostic, nvi's maintainer. If he agrees > > that the next release of nvi will include this patch exactly, then we > > can probably do some magic. > > Then, how can I contact keith Bostic? His e-mail address is bostic@bostic.com . > Has he been notified for this problem yet? I don't know. Best contact him directly. Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 3 3:21:23 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from raven.ravenbrook.com (raven.ravenbrook.com [193.82.131.18]) by hub.freebsd.org (Postfix) with ESMTP id 5E23337BDA0 for ; Mon, 3 Apr 2000 03:21:12 -0700 (PDT) (envelope-from rb@ravenbrook.com) Received: from [193.82.131.28] (skylark.ravenbrook.com [193.82.131.28]) by raven.ravenbrook.com (8.9.3/8.9.3) with ESMTP id LAA10444; Mon, 3 Apr 2000 11:20:40 +0100 (BST) Mime-Version: 1.0 X-Sender: rb@pop3.ravenbrook.com Message-Id: In-Reply-To: <20000403085720.D4411@cons.org> References: <20000331203145.A22722@cons.org> <20000403085720.D4411@cons.org> Date: Mon, 3 Apr 2000 11:17:13 +0100 To: Martin Cracauer From: Richard Brooksby Subject: Re: Something funny about ampersand in /bin/sh Cc: freebsd-bugs@FreeBSD.ORG, Ravenbrook System Administrators Content-Type: text/plain; charset="us-ascii" ; format="flowed" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At 2000-04-03 08:57 +0200, Martin Cracauer wrote: >Richard, > >you you please verify whether my assumption below is correct or not? >Did you really use /bin/sh as shipped? Thanks for your help. The problem was solved by Steve Price. See below. At 2000-03-31 18:38 +0100, Richard Brooksby wrote: >At 2000-03-31 11:07 -0600, Steve Price wrote: > >># su -fm root -c 'echo 2>&1 foo' >> >>Looks like this one is invoking csh(1) and not sh(1). > >Doh! > >Yes, indeed, root is set to run /bin/csh by default on new >installations. I've fixed it to /bin/sh. > >Thanks for your help. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 3 3:40: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C6B8A37BA82 for ; Mon, 3 Apr 2000 03:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA99439; Mon, 3 Apr 2000 03:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 3 Apr 2000 03:40:03 -0700 (PDT) Message-Id: <200004031040.DAA99439@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Alex Vasylenko Subject: Re: bin/11399: Calendar doesn't always handle 'last' days right... Reply-To: Alex Vasylenko Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/11399; it has been noted by GNATS. From: Alex Vasylenko To: freebsd-gnats-submit@FreeBSD.org, jobaldwi@vt.edu Cc: Subject: Re: bin/11399: Calendar doesn't always handle 'last' days right... Date: Mon, 3 Apr 2000 03:30:42 -0700 John, I think that the fix you recommend is the right fix to do. Here's why: day.c:325 v2 = tp->tm_mday + (((day - 1) - tp->tm_wday + 7) % 7); day here is the requested day of week (Sun == 1, Mon == 2, etc.) the meaning of v2 would be something like: "the day of month when the day of the week == requested day of the week", obviously if v2 is greater than cumdays[month+1]-cumdays[month], which is a month length, there's no such days left. later at: day.c: 328 if (((int)((cumdays[month+1] - 329 cumdays[month] - v2) / 7) + 1) == -v1) the code assumes that v2 is a legitimate day of month. additional condition, that you suggest fixes the problem. the same fix also applies to: bin/10868 bin/15182 --Alex. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 3 4:56:57 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CB95237BE93; Mon, 3 Apr 2000 04:56:54 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA09544; Mon, 3 Apr 2000 04:56:54 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Mon, 3 Apr 2000 04:56:54 -0700 (PDT) From: Message-Id: <200004031156.EAA09544@freefall.freebsd.org> To: swchui@hutchcity.com, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/17770: As I use FreeDSB and perl5.0, the program cannot use cookie and the cookie is not work Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: As I use FreeDSB and perl5.0, the program cannot use cookie and the cookie is not work State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Mon Apr 3 04:54:39 PDT 2000 State-Changed-Why: One day, you'll realize that reports that do not contain any useful information with which the people who'd like to help out can debug a problem are quite frustrating todeal with. :-) For now, take it from me; there's nothing we can do with this PR. When you ask your question on the freebsd-questions@FreeBSD.org mailing list, please be sure to supply an exact list of Perl modules which your script uses, as well as the error messages it generates. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 3 5: 3:58 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 58EC637BE76; Mon, 3 Apr 2000 05:03:56 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA10207; Mon, 3 Apr 2000 05:03:46 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Mon, 3 Apr 2000 05:03:46 -0700 (PDT) From: Message-Id: <200004031203.FAA10207@freefall.freebsd.org> To: novikov@web2000.ru, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/17767: The comments in /etc/group break many programs Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: The comments in /etc/group break many programs State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Mon Apr 3 05:01:19 PDT 2000 State-Changed-Why: These programs simply shouldn't do that. The format of the /etc/group file is implementation specific. Ours is well documented (group(5)) and proper, standard ways of reading its contents are provided (id(1), getgrent(3)). You should take this bad programming practice up with the authors of the software in which you've discovered it. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 3 5:10: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AB4DC37BF47 for ; Mon, 3 Apr 2000 05:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA10851; Mon, 3 Apr 2000 05:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 3 Apr 2000 05:10:02 -0700 (PDT) Message-Id: <200004031210.FAA10851@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: bin/17764: wrong percentage completed in bad144 Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/17764; it has been noted by GNATS. From: Sheldon Hearn To: pccb@yahoo.com Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: bin/17764: wrong percentage completed in bad144 Date: Mon, 03 Apr 2000 14:06:58 +0200 On Sun, 02 Apr 2000 22:58:51 MST, pccb@yahoo.com wrote: > >Synopsis: wrong percentage completed in bad144 Just a quick note to let you know that you may need to wait for a while before anyone looks into this, since bad144 doesn't exist in the latest release of FreeBSD (4.0-RELEASE) nor in the development branch (5.0-CURRENT). Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 3 5:19:17 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DED3437B687; Mon, 3 Apr 2000 05:19:15 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA11974; Mon, 3 Apr 2000 05:19:15 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Mon, 3 Apr 2000 05:19:15 -0700 (PDT) From: Message-Id: <200004031219.FAA11974@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, gibbs@FreeBSD.org Subject: Re: i386/17713: MAKEDEV and /stand/sysinstall goofups with creating /dev/pass? Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: MAKEDEV and /stand/sysinstall goofups with creating /dev/pass? Responsible-Changed-From-To: freebsd-bugs->gibbs Responsible-Changed-By: sheldonh Responsible-Changed-When: Mon Apr 3 05:14:59 PDT 2000 Responsible-Changed-Why: Justin added the pass stuff to MAKEDEV in rev 1.171. Note that MAKEDEV isn't doing anything funny; it's been told to create 4 device nodes. I don't think there's a graceful way to handle this until the driver does almost-clone. :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 3 5:27:36 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A1A7437BBE3; Mon, 3 Apr 2000 05:27:35 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA12757; Mon, 3 Apr 2000 05:27:35 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Mon, 3 Apr 2000 05:27:35 -0700 (PDT) From: Message-Id: <200004031227.FAA12757@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, jasone@FreeBSD.org Subject: Re: kern/17757: select returns 0 if pthread_kill'd w/ sig. handler Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: select returns 0 if pthread_kill'd w/ sig. handler Responsible-Changed-From-To: freebsd-bugs->jasone Responsible-Changed-By: sheldonh Responsible-Changed-When: Mon Apr 3 05:27:12 PDT 2000 Responsible-Changed-Why: Over to our threads guy. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 3 5:35:16 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DF37437B552; Mon, 3 Apr 2000 05:35:12 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA13486; Mon, 3 Apr 2000 05:35:12 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Mon, 3 Apr 2000 05:35:12 -0700 (PDT) From: Message-Id: <200004031235.FAA13486@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-small@FreeBSD.org Subject: Re: misc/17737: Major repair of PicoBSD Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Major repair of PicoBSD Responsible-Changed-From-To: freebsd-bugs->freebsd-small Responsible-Changed-By: sheldonh Responsible-Changed-When: Mon Apr 3 05:34:39 PDT 2000 Responsible-Changed-Why: Over to the maintaining group. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 3 5:49:50 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DCB3537BE45; Mon, 3 Apr 2000 05:49:47 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA15175; Mon, 3 Apr 2000 05:49:46 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Mon, 3 Apr 2000 05:49:46 -0700 (PDT) From: Message-Id: <200004031249.FAA15175@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, sos@FreeBSD.org Subject: Re: kern/17746: afd0 is accessed for no reason a couple of times a day Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: afd0 is accessed for no reason a couple of times a day Responsible-Changed-From-To: freebsd-bugs->sos Responsible-Changed-By: sheldonh Responsible-Changed-When: Mon Apr 3 05:49:12 PDT 2000 Responsible-Changed-Why: Over to the maintainer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 3 5:50:10 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DD48B37BF0D for ; Mon, 3 Apr 2000 05:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA15244; Mon, 3 Apr 2000 05:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BD97B37BDDA for ; Mon, 3 Apr 2000 05:45:14 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA14786; Mon, 3 Apr 2000 05:45:13 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004031245.FAA14786@freefall.freebsd.org> Date: Mon, 3 Apr 2000 05:45:13 -0700 (PDT) From: ph.jounin@computer.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: bin/17772: TFTP can not handle big files (> 32MBytes) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17772 >Category: bin >Synopsis: TFTP can not handle big files (> 32MBytes) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Apr 3 05:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Philippe Jounin >Release: 3.4 >Organization: >Environment: i386 (and others 32-bit hosts) >Description: A big file (more than 32MBytes) can not been downloaded/uploaded whith the current TFTP client. After sending/receiving the segment #65535, TFTP waits for the segment #65536 which can not be produced, since TFTP protocol reserves only 2 bytes for packet number. I have not checked if the TFTP server has the same limitation. >How-To-Repeat: Transfer a big file and use a correct TFTP server. >Fix: The following lines in the file /usr.bin/tftp/tftp.c should include u_short cast : 165, 176, 269, 279 For instance if (ap->th_block == (block-1)) { should be fixed in if (ap->th_block == (u_short) (block-1)) { >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 3 5:51:53 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8176B37BEAE; Mon, 3 Apr 2000 05:51:52 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA15511; Mon, 3 Apr 2000 05:51:51 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Mon, 3 Apr 2000 05:51:51 -0700 (PDT) From: Message-Id: <200004031251.FAA15511@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, wpaul@FreeBSD.org Subject: Re: kern/17751: rl driver loaded as module when it already compiled in kernel panics system Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: rl driver loaded as module when it already compiled in kernel panics system Responsible-Changed-From-To: freebsd-bugs->wpaul Responsible-Changed-By: sheldonh Responsible-Changed-When: Mon Apr 3 05:50:59 PDT 2000 Responsible-Changed-Why: Over to the maintqainer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 3 5:55: 2 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 27D1137BA4C; Mon, 3 Apr 2000 05:54:59 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA15909; Mon, 3 Apr 2000 05:54:58 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Mon, 3 Apr 2000 05:54:58 -0700 (PDT) From: Message-Id: <200004031254.FAA15909@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, dcs@FreeBSD.org Subject: Re: i386/17752: Cannot install BTX boot manager Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Cannot install BTX boot manager Responsible-Changed-From-To: freebsd-bugs->dcs Responsible-Changed-By: sheldonh Responsible-Changed-When: Mon Apr 3 05:52:57 PDT 2000 Responsible-Changed-Why: I think this is Daniel's arena. Daniel, please let me know if I've madea mistake. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 3 5:57:21 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0729237BDC5; Mon, 3 Apr 2000 05:57:20 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA16186; Mon, 3 Apr 2000 05:57:19 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Mon, 3 Apr 2000 05:57:19 -0700 (PDT) From: Message-Id: <200004031257.FAA16186@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, green@FreeBSD.org Subject: Re: kern/17758: Make sl driver dynamicallly expandable. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Make sl driver dynamicallly expandable. Responsible-Changed-From-To: freebsd-bugs->green Responsible-Changed-By: sheldonh Responsible-Changed-When: Mon Apr 3 05:56:48 PDT 2000 Responsible-Changed-Why: I'm trying to twist Brian's rubber arm into taking this one. :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 3 8: 9:59 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from peach.ocn.ne.jp (peach.ocn.ne.jp [210.145.254.87]) by hub.freebsd.org (Postfix) with ESMTP id 583F337BEC5; Mon, 3 Apr 2000 08:09:53 -0700 (PDT) (envelope-from dcs@newsguy.com) Received: from newsguy.com (p16-dn02kiryunisiki.gunma.ocn.ne.jp [211.0.245.81]) by peach.ocn.ne.jp (8.9.1a/OCN/) with ESMTP id AAA28773; Tue, 4 Apr 2000 00:09:38 +0900 (JST) Message-ID: <38E8B3D1.D780F7D8@newsguy.com> Date: Tue, 04 Apr 2000 00:08:01 +0900 From: "Daniel C. Sobral" X-Mailer: Mozilla 4.7 [en] (Win98; I) X-Accept-Language: en,pt-BR,ja MIME-Version: 1.0 To: sheldonh@FreeBSD.org Cc: freebsd-bugs@FreeBSD.org, dcs@FreeBSD.org Subject: Re: i386/17752: Cannot install BTX boot manager References: <200004031254.FAA15909@freefall.freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org sheldonh@FreeBSD.org wrote: > > Synopsis: Cannot install BTX boot manager > > Responsible-Changed-From-To: freebsd-bugs->dcs > Responsible-Changed-By: sheldonh > Responsible-Changed-When: Mon Apr 3 05:52:57 PDT 2000 > Responsible-Changed-Why: > I think this is Daniel's arena. Daniel, please let me know if > I've madea mistake. This is actually rnordier/jhb arena. Though I can reply to this. Packet mode is not supported. Installation on partitions above 8 Gb is not supported. The existing packet mode support in boot0cfg is a work in progress, and is known to have problems. A mention of it on the FAQ would be in order, though. As for the "need" to having an obvious way to undo Windows damage, I disagree. But, anyway, this is convered on the FAQ: http://www.freebsd.org/FAQ/install.html#AEN480 If the user refrains from making use of the existing recommended documentation, there is really not much point in expanding it. -- Daniel C. Sobral (8-DCS) dcs@newsguy.com dcs@freebsd.org capo@zurichgnomes.bsdconspiracy.net The size of the pizza is inversely proportional to the intensity of the hunger. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 3 8:10:10 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 651C237C011 for ; Mon, 3 Apr 2000 08:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA96618; Mon, 3 Apr 2000 08:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from cauchy.math.missouri.edu (cauchy.math.missouri.edu [128.206.72.27]) by hub.freebsd.org (Postfix) with ESMTP id 1F56337B68B for ; Mon, 3 Apr 2000 08:05:40 -0700 (PDT) (envelope-from stephen@cauchy.math.missouri.edu) Received: (from stephen@localhost) by cauchy.math.missouri.edu (8.9.3/8.9.1) id KAA01729; Mon, 3 Apr 2000 10:03:47 -0500 (CDT) Message-Id: <200004031503.KAA01729@cauchy.math.missouri.edu> Date: Mon, 3 Apr 2000 10:03:47 -0500 (CDT) From: stephen@math.missouri.edu Reply-To: stephen@math.missouri.edu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/17774: stray irq7 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17774 >Category: kern >Synopsis: stray irq7 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Apr 3 08:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Stephen Montgomery-Smith >Release: FreeBSD 4.0-STABLE i386 >Organization: University of Missouri >Environment: >Description: With FreeBSD 4.0, when I print, I get stray irq7 error messages. This does not effect actual printing, so it is harmless. Here are the settings in my kernel config file, and also dmesg. # Parallel port device ppc0 at isa? irq 7 device ppbus # Parallel port bus (required) device lpt # Printer #device plip # TCP/IP over parallel #device ppi # Parallel port interface device #device vpo # Requires scbus and da Copyright (c) 1992-2000 The FreeBSD Project. Copyright (c) 1982, 1986, 1989, 1991, 1993 The Regents of the University of California. All rights reserved. FreeBSD 4.0-STABLE #2: Fri Mar 31 13:40:45 CST 2000 root@xxxxxxxxxxxxxxxxxxxxxx:/usr/src/sys/compile/XXXX Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 232671179 Hz CPU: Pentium/P55C (232.67-MHz 586-class CPU) Origin = "GenuineIntel" Id = 0x543 Stepping = 3 Features=0x8001bf real memory = 33554432 (32768K bytes) avail memory = 29929472 (29228K bytes) Preloaded elf kernel "kernel" at 0xc02d8000. Intel Pentium detected, installing workaround for F00F bug md0: Malloc disk npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0xf000-0xf00f at device 7.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 pci0: at 8.0 irq 11 pcm0: port 0x6000-0x603f irq 10 at device 10.0 on pci0 rl0: port 0x6100-0x61ff mem 0xe2000000-0xe20000ff irq 9 at device 11.0 on pci0 rl0: Ethernet address: xxxxxxxxxxxxxxxxxxx miibus0: on rl0 rlphy0: on miibus0 rlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto rl0: supplying EUI64: xxxxxxxxxxxxxxxxxxx fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 atkbdc0: at port 0x60-0x6f on isa0 atkbd0: irq 1 on atkbdc0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: on isa0 sc0: VGA <16 virtual consoles, flags=0x200> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: Generic chipset (NIBBLE-only) in COMPATIBLE mode ppbus0: IEEE1284 device found /NIBBLE Probing for PnP devices on ppbus0: ppbus0: HP ENHANCED PCL5,PJL lpt0: on ppbus0 lpt0: Interrupt-driven port joy0 at port 0x201 on isa0 ad0: 1623MB [3298/16/63] at ata0-master using WDMA2 ad1: 8063MB [16383/16/63] at ata0-slave using WDMA2 afd0: 120MB [963/8/32] at ata1-master using PIO2 acd0: CDROM at ata1-slave using PIO3 Mounting root from ufs:/dev/ad0s2a rl0: starting DAD for xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx rl0: DAD complete for xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx - no duplicates found stray irq 7 stray irq 7 stray irq 7 stray irq 7 stray irq 7 too many stray irq 7's; not logging any more >How-To-Repeat: Just print something. >Fix: >Release-Note: >Audit-Trail: >Unformatted: Stephen Montgomery-Smith To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 3 8:28:50 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from work.netcorps.com (work.netcorps.com [207.1.125.100]) by hub.freebsd.org (Postfix) with ESMTP id 8440437BEB4 for ; Mon, 3 Apr 2000 08:28:44 -0700 (PDT) (envelope-from chen@work.netcorps.com) Received: (from chen@localhost) by work.netcorps.com (8.9.0/8.9.0) id IAA16021 for freebsd-bugs@FreeBSD.org; Mon, 3 Apr 2000 08:27:26 -0700 (PDT) Date: Mon, 3 Apr 2000 08:27:26 -0700 (PDT) From: Chen Liu Message-Id: <200004031527.IAA16021@work.netcorps.com> To: freebsd-bugs@FreeBSD.org Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org HI, I got this message when I start "startx" after "make world" from 3.4 to 4.0. Thanks! Script started on Mon Apr 3 00:02:52 2000 > startx XFree86 Version 3.3.5 / X Window System (protocol Version 11, revision 0, vendor release 6300) Release Date: August 23 1999 If the server is older than 6-12 months, or if your card is newer than the above date, look for a newer version before reporting problems. (see http://www.XFree86.Org/FAQ) Operating System: FreeBSD 3.1-STABLE i386 [ELF] Configured drivers: SVGA: server for SVGA graphics adaptors (Patchlevel 0): NV1, STG2000, RIVA 128, RIVA TNT, RIVA TNT2, RIVA ULTRA TNT2, RIVA VANTA, RIVA ULTRA VANTA, RIVA INTEGRATED, ET4000, ET4000W32, ET4000W32i, ET4000W32i_rev_b, ET4000W32i_rev_c, ET4000W32p, ET4000W32p_rev_a, ET4000W32p_rev_b, ET4000W32p_rev_c, ET4000W32p_rev_d, ET6000, ET6100, et3000, pvga1, wd90c00, wd90c10, wd90c30, wd90c24, wd90c31, wd90c33, gvga, ati, sis86c201, sis86c202, sis86c205, sis86c215, sis86c225, sis5597, sis5598, sis6326, sis530, sis620, tvga8200lx, tvga8800cs, tvga8900b, tvga8900c, tvga8900cl, tvga8900d, tvga9000, tvga9000i, tvga9100b, tvga9200cxr, tgui9400cxi, tgui9420, tgui9420dgi, tgui9430dgi, tgui9440agi, cyber9320, tgui9660, tgui9680, tgui9682, tgui9685, cyber9382, cyber9385, cyber9388, cyber9397, cyber9520, cyber9525, 3dimage975, 3dimage985, cyber9397dvd, blade3d, cyberblade, clgd5420, clgd5422, clgd5424, clgd5426, clgd5428, clgd5429, clgd5430, clgd5434, clgd5436, clgd5446, clgd5480, clgd5462, clgd5464, clgd5465, clgd6205, clgd6215, clgd6225, clgd6235, clgd7541, clgd7542, clgd7543, clgd7548, clgd7555, clgd7556, ncr77c22, ncr77c22e, cpq_avga, mga2064w, mga1064sg, mga2164w, mga2164w AGP, mgag200, mgag100, mgag400, oti067, oti077, oti087, oti037c, al2101, ali2228, ali2301, ali2302, ali2308, ali2401, cl6410, cl6412, cl6420, cl6440, video7, ark1000vl, ark1000pv, ark2000pv, ark2000mt, mx, realtek, s3_virge, AP6422, AT24, AT3D, s3_svga, NM2070, NM2090, NM2093, NM2097, NM2160, NM2200, ct65520, ct65525, ct65530, ct65535, ct65540, ct65545, ct65546, ct65548, ct65550, ct65554, ct65555, ct68554, ct69000, ct64200, ct64300, mediagx, V1000, V2100, V2200, p9100, spc8110, i740, i740_pci, Voodoo Banshee, Voodoo3, generic Using syscons driver with X support (version 2.0) (using VT number 9) XF86Config: /etc/XF86Config (**) stands for supplied, (--) stands for probed/default values (**) XKB: options: "ctrl:swapcaps" (**) XKB: rules: "xfree86" (**) XKB: model: "pc101" (**) XKB: layout: "us" (**) XKB: variant: "" (**) XKB: options: "" (**) XKB: keymap: "xfree86(en_US)" (overrides other XKB settings) (**) Mouse: type: PS/2, device: /dev/mouse, buttons: 3 (**) Mouse: 3 button emulation (timeout: 50ms) (**) SVGA: Graphics device ID: "sis6326" (**) SVGA: Monitor ID: "compaq" (**) FontPath set to "/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/75dpi/:unscaled,/usr/X11R6/lib/X11/fonts/100dpi/:unscaled,/usr/X11R6/lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/Speedo/,/usr/X11R6/lib/X11/fonts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/" (--) SVGA: PCI: SiS 6326 rev 11, Memory @ 0xdf000000, MMIO @ 0xefef0000, I/O @ 0xbc00 (--) SVGA: using programmable clocks. (--) SVGA: chipset: sis6326 (**) SVGA: videoram: 4096k (**) SVGA: Using 24 bpp, Depth 24, Color weight: 888 (--) SVGA: Maximum allowed dot-clock: 154.421 MHz (--) SVGA: There is no mode definition named "640x480" (--) SVGA: Removing mode "640x480" from list of valid modes. (**) SVGA: Mode "800x600": mode clock = 50.000 (--) SVGA: There is no mode definition named "1024x768" (--) SVGA: Removing mode "1024x768" from list of valid modes. (--) SVGA: There is no mode definition named "1280x1024" (--) SVGA: Removing mode "1280x1024" from list of valid modes. (--) SVGA: Virtual resolution set to 800x600 (--) SVGA: SpeedUp code selection modified because virtualX != 1024 (--) SVGA: Using Linear Frame Buffer at 0x0df000000, Size 4MB (--) SVGA: SIS: Memory mapped I/O selected at 0x0efef0000 (**) SVGA: Using hardware cursor (--) SVGA: Using XAA (XFree86 Acceleration Architecture) (--) SVGA: XAA: Solid filled rectangles (--) SVGA: XAA: Screen-to-screen copy (--) SVGA: Pixmap cache disabled - no video memory available (--) SVGA: XAA: Caching tiles (--) SVGA: XAA: Horizontal and vertical lines and segments Fatal server error: Cannot open mouse (Too many levels of symbolic links) When reporting a problem related to a server crash, please send the full server output, not just the last messages X connection to :0.0 broken (explicit kill or server shutdown). > exit exit Script done on Mon Apr 3 00:03:03 2000 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 3 9: 0:15 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from aaz.links.ru (aaz.links.ru [193.125.152.37]) by hub.freebsd.org (Postfix) with ESMTP id 9703537BF38 for ; Mon, 3 Apr 2000 09:00:11 -0700 (PDT) (envelope-from babolo@links.ru) Received: (from babolo@localhost) by aaz.links.ru (8.9.3/8.9.3) id UAA25509; Mon, 3 Apr 2000 20:05:15 +0400 (MSD) Message-Id: <200004031605.UAA25509@aaz.links.ru> Subject: Re: your mail In-Reply-To: <200004031527.IAA16021@work.netcorps.com> from "Chen Liu" at "Apr 3, 0 08:27:26 am" To: chen@netcorps.com (Chen Liu) Date: Mon, 3 Apr 2000 20:05:14 +0400 (MSD) Cc: freebsd-bugs@FreeBSD.ORG From: "Aleksandr A.Babaylov" MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Chen Liu writes: > I got this message when I start "startx" after "make world" from 3.4 to 4.0. ..... > Script started on Mon Apr 3 00:02:52 2000 > > startx ..... > (--) SVGA: XAA: Horizontal and vertical lines and segments > > Fatal server error: > Cannot open mouse (Too many levels of symbolic links) > > > When reporting a problem related to a server crash, please send > the full server output, not just the last messages > > X connection to :0.0 broken (explicit kill or server shutdown). > > exit > exit > > Script done on Mon Apr 3 00:03:03 2000 cd /dev ls -l *mous* psm* -- @BABOLO http://links.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 3 11: 1:27 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1930737B8E9 for ; Mon, 3 Apr 2000 11:00:10 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA13361 for freebsd-bugs@freebsd.org; Mon, 3 Apr 2000 11:00:03 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 3 Apr 2000 11:00:03 -0700 (PDT) Message-Id: <200004031800.LAA13361@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list Subject: Current problem reports Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Current FreeBSD problem reports The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. Bugs can be in one of several states: o - open A problem report has been submitted, no sanity checking performed. a - analyzed The report has been examined by a team member and evaluated. f - feedback The problem has been solved, and the originator has been given a patch or a fix has been committed. The PR remains in this state pending a response from the originator. s - suspended The problem is not being worked on. This is a prime candidate for somebody who is looking for a project to do. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested. Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1997/03/08] kern/2923 panic: vm_fault: fault on nofault entry, o [1997/07/03] kern/4021 peter Local mount of a local NFS exported direc o [1997/07/31] kern/4200 peter NFS: "vm_fault: fault on nofault entry" w o [1997/10/01] kern/4673 Two panics, now crash dumps, always in re o [1997/11/24] bin/5139 portmap does not find interfaces correctl o [1997/12/21] kern/5355 Fix for NULLFS problems o [1998/02/03] kern/5641 peter running processes at the IDLE priority (i o [1998/02/10] kern/5703 CDROM Media Error triggers complete syste o [1998/03/23] bin/6121 peter gethostbyname(3) no longer returns NO_DAT s [1998/05/13] kern/6630 julian [PATCH] Fix for Cyrix I8254 bug o [1998/07/12] kern/7264 gibbs Buslogic BT 950 scsi card not detected o [1998/08/15] kern/7622 Kernel panic with Fatal trap 18. o [1998/09/08] i386/7859 luigi fatal trap 12 in midi_synth_input f [1998/09/14] kern/7927 n_hibma Fatal trap 12: page fault while in kernel o [1998/09/28] kern/8074 se CAM rescan operation fatal o [1998/10/03] gnu/8138 obrien gcc -pipe xxx.s hangs f [1998/10/06] i386/8179 Install failure with motherbord using SIS f [1998/10/08] i386/8214 n_hibma Install 3.0-19981006-BETA fails a [1998/11/08] ports/8609 nectar eklogin service (kerberos klogind) fails f [1998/11/12] i386/8673 bug in vm_page_alloc_contig() o [1998/11/24] bin/8829 bug in innetgr (was: Fix port: security/s f [1998/11/25] kern/8861 n_hibma under heavy (multi interface) traffic ep0 f [1998/12/09] kern/9036 Boot 3.0-Release hangs with BT-445S after a [1999/01/05] kern/9334 n_hibma cp fails for 2048 Bytes/sector media o [1999/01/27] kern/9742 tx driver for smc autodetects fine, but n o [1999/02/19] kern/10166 panic during heavy sio i/o;no coproc; ves o [1999/02/20] kern/10172 panic: cannot allocate pipe - out of kvm o [1999/02/23] kern/10224 panic: pipeinit: cannot allocate pipe -- s [1999/02/26] kern/10281 Crash of 3.1-STABLE system due to scsi er o [1999/02/26] i386/10282 PCMCIA problems in 3.1-RELEASE? o [1999/03/01] kern/10332 gibbs System freezes during certain SCSI activi a [1999/03/01] bin/10344 fenner Core dump in gethostbyaddr for 199.93.70. o [1999/03/05] kern/10397 3.1R page fault while in kernel mode, fro o [1999/03/07] misc/10473 Incorrect aout compat libraries in XF8633 o [1999/03/09] kern/10507 Process hangs in state VM pgd o [1999/03/09] misc/10509 Cvs can hang system when used with pserve o [1999/03/09] kern/10520 can't exec files under nullfs o [1999/03/11] kern/10542 page fault while in kernel mode, not kern o [1999/03/11] kern/10545 When a fork/exec stress test is run, the o [1999/03/12] misc/10566 obrien patch dhcpc problem on /etc/pccard_ether o [1999/03/17] kern/10636 ipfw problems o [1999/03/19] i386/10683 I have a buslogic BT-948 FW controller. W o [1999/03/20] i386/10690 Installation freezes after device selecti f [1999/03/20] kern/10701 ppbus printing problems o [1999/03/22] ports/10725 stb Wrong Cyrus IMAP deliver group o [1999/03/23] bin/10744 call to login() from aout/libutil.so.2.2 o [1999/03/27] kern/10828 3.1-STABLE freezes when writing to floppy o [1999/03/29] kern/10866 ahc2740 panic o [1999/03/30] kern/10872 Panic in sorecieve() due to NULL mbuf poi o [1999/04/05] kern/10959 3.1-STABLE crashes due to a floppy mount o [1999/04/05] ports/10965 obrien lcc-3.6 unable to compile anything o [1999/04/13] kern/11112 Amanda on FreeBSD can wipe the _next_ tap o [1999/04/17] kern/11196 n_hibma kernel mode page fault o [1999/04/19] kern/11226 Invalid files on disk after fsync o [1999/04/20] kern/11238 Synchronous PPP not functional in leased o [1999/04/20] kern/11241 Install fails after SCSI probe o [1999/04/22] i386/11278 FreeBSD Version 3.1 reboots repeatedly (c o [1999/04/23] i386/11298 Enabling IDE DMA on Opti Viper-M crashes o [1999/04/26] kern/11330 page fault in generic_bzero o [1999/04/26] i386/11349 Error Mounting /dev/wd0s1 on dist during o [1999/04/27] kern/11351 system reboot for error with popper and d o [1999/05/01] kern/11434 can't boot from wd0s2a o [1999/05/04] i386/11488 Error while starting FreeBSD o [1999/05/10] kern/11629 File descriptor table sharing is broken o [1999/05/12] kern/11680 server freezes, all processes stuck in "i o [1999/05/13] i386/11681 gibbs Adaptec 2940 UW SCSI Controller BIOS 1.34 o [1999/05/14] kern/11707 ncr isn't recognized in 3.1-19990512-STAB f [1999/05/17] bin/11744 perllib fails to build o [1999/05/24] kern/11869 wpaul Network hangging due to xl0: tx underrun o [1999/05/31] kern/11966 TCP copies send and receive socket buffer o [1999/06/02] kern/11988 recvmsg with a cmsghdr but no iovec is br o [1999/06/02] kern/11993 panic: getnewbuf: inconsistent EMPTY queu f [1999/06/05] kern/12041 n_hibma Crashes on startup if Zip drive is switch o [1999/06/06] conf/12050 No /sbin/init on fixit flop o [1999/06/07] kern/12072 vm_fault happened in binary file transfer o [1999/06/09] kern/12106 error 6: panic: cannot mount root o [1999/06/10] kern/12127 persistent crash on idle SMP system o [1999/06/15] kern/12233 Fvwm2 causes FreeBSD-current to hang or r o [1999/06/16] kern/12248 CRON in malloc(): warning: pointer to wr o [1999/06/18] i386/12286 Segmentation violation when invoking JNI s [1999/06/23] kern/12367 Writing files larger than floppy capacity o [1999/06/25] misc/12390 Installation hangs during extraction o [1999/06/25] kern/12395 gibbs Buslogic SCSI cards (BT948) time out unde o [1999/06/30] kern/12466 Fast system hangs under high FS load o [1999/07/05] kern/12521 lmbench-1.1's context switching test hang o [1999/07/12] misc/12607 System crashes after boot, portmap endles o [1999/07/13] alpha/12623 alpha Certain valid numeric strings cause a SIG f [1999/07/20] misc/12720 gdbm (And possibly other libraries in /us o [1999/07/21] kern/12730 poll() causes indeterministic program han o [1999/07/21] misc/12743 Cannot boot the 3.2 floppies o [1999/08/02] misc/12923 Installation fails on HP Net Server f [1999/08/04] kern/12980 NetGear Dec 21140AF Ethernet Card unrecog o [1999/08/06] bin/12998 des still inetd junk pointer too low to make o [1999/08/10] i386/13059 imp Install aborts with panic:aha0: Invalid C a [1999/08/20] kern/13270 dillon NFS hangs if written through self-mount o [1999/08/23] alpha/13338 alpha panic: pmap_remove_all: pv_table for 162b o [1999/08/24] kern/13352 No support for Promise Ultra/66 o [1999/08/30] misc/13474 Maximum Number of IPs Permitted in the .. o [1999/09/07] bin/13615 awk corrupts the memory arena when OFMT i o [1999/09/09] alpha/13653 alpha panic: pmap_remove_all: pv_table for 90b6 o [1999/09/12] kern/13709 panic: sched_sync: fsync failed o [1999/09/17] i386/13797 SMP/NFS panics on 3.3-RC o [1999/09/18] i386/13802 freebsd 3.3 fails to boot with irq proble o [1999/09/19] i386/13817 system reboot o [1999/09/19] kern/13825 tx0 "holds" packets for long periods, eve o [1999/09/19] i386/13844 keyboard locks up when I page through a m f [1999/09/20] i386/13849 grog dump on vinum r5 freezes system o [1999/09/22] i386/13892 Kern.flp does not boot on Compaq Presario o [1999/09/24] i386/13933 nfs server panics in tulip_rx_intr() o [1999/09/24] kern/13940 Panic with dd on block/"cooked" devices u o [1999/09/24] kern/13944 ATAPI cd-rom not boot to install, nor de o [1999/09/27] misc/13995 Full duplex mode doesn't work right with o [1999/09/28] kern/14028 ATAPI cd-rom not boot to install and can' o [1999/09/28] i386/14030 imp aha0 probe fails 3.3.0-RELEASE install wi o [1999/10/05] kern/14141 3.3-RELEASE crashing often o [1999/10/06] kern/14162 sudden reboot problem ( maybe kernel pani o [1999/10/08] misc/14204 error 6: panic: cannot mout root(2) o [1999/10/10] i386/14256 System doesn't boot under FreeBSD 3.2 o [1999/10/14] kern/14322 mount respects permissions of underlying o [1999/10/15] kern/14347 kdump & truss won't compile because addit o [1999/10/17] i386/14373 Error while booting from floppy disk o [1999/10/24] i386/14492 FreeBSD won't install/work with an Asus S o [1999/10/25] kern/14510 kernel panic while pressing panic o [2000/02/09] i386/16620 4.0-20000208-CURRENT fails to boot on ASU o [2000/02/14] kern/16708 wpaul 3Com 3c900-Combo Ehternet card make kerne o [2000/02/15] kern/16740 The kernel panics with "ffs_clusteralloc: o [2000/02/16] kern/16767 open("/dev/ppi0") will crash machine with o [2000/02/18] i386/16802 An user math program have the system on K o [2000/02/18] kern/16803 Newer Adaptec controllers make system han o [2000/02/19] kern/16828 High Speed Pinging Over 8184 bytes Kills o [2000/02/21] bin/16862 cracauer strptime(..., "%+" ...) dumps core o [2000/02/21] kern/16890 Fatal trap 12: page fault while in kernel o [2000/02/21] misc/16901 cannot boot 3.4 floppies o [2000/02/26] kern/17011 Fatal trap 12 occur, dhclient with BOOTP o [2000/02/28] kern/17067 consistent "make -k buildworld" crash wit o [2000/03/01] kern/17122 crash due to: softdep_disk_write_complete o [2000/03/02] kern/17124 panic: vm_object_deallocate: object deall o [2000/03/03] kern/17148 If keyboard is not attached while booting o [2000/03/03] kern/17152 kernel panic:aio_write o [2000/03/03] kern/17154 need to raise file descriptor limit, its o [2000/03/07] kern/17248 FreeBSD 3.4 won't install on 486/100 IBM o [2000/03/08] ports/17267 dirk new lyx port does not link -- gettext (-l o [2000/03/10] kern/17305 advansys driver time-out around 30 minute o [2000/03/10] kern/17311 bug in the code handling ioctl SIOCGIFCON o [2000/03/12] kern/17339 3.4-R on a K6-2: panic: pmap_release: fre f [2000/03/12] ports/17340 mharo Ports that need Xaw3d won't build o [2000/03/15] i386/17391 rnordier FreeBSD boot loader does not recognize ke o [2000/03/15] i386/17398 Install failure of 4.0-Release via ftp an o [2000/03/15] kern/17400 sos panic: resource_list_alloc when booting o [2000/03/16] ports/17426 ports tkrat2 port broken -- builds, but does no o [2000/03/18] i386/17485 Partition editor completely non-functiona o [2000/03/19] ports/17491 ports Can't get the OpenSSH port to compile und o [2000/03/22] i386/17557 BTX Loader Hardlocks on FIC-SD11 Motherbo o [2000/03/22] i386/17558 ncr1 controller is not working properly i o [2000/03/23] kern/17565 4.0-RELEASE install does not access IDE d o [2000/03/27] kern/17620 jhay Digi/570i sync driver (if_ar.c) causes sy o [2000/03/28] alpha/17642 alpha FreeBSD/alpha 4.0 RELEASE installation fa o [2000/03/28] kern/17643 sos 3.4 to 4.0 upgrade: ATAPI drivers damage s [2000/03/29] bin/17659 billf sysinstall fails to load a.out libraries o [2000/03/29] i386/17661 sos 4.0-REL hangs after detecting ata1 o [2000/03/30] ports/17691 ports mpg123 didn't free memory o [2000/03/31] i386/17712 Some outside networks are unable to resol 201 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- a [1995/03/20] kern/260 davidg msync and munmap don't bother to update m o [1995/10/18] bin/786 wpaul Problem with NIS and large group maps o [1996/06/07] kern/1301 davidg DEC FDDI/PCI Adapter: halt code = 6 (DMA f [1996/08/03] bin/1461 Incorrect address binding of Kerberized r f [1996/08/22] kern/1533 dillon Machine can be panicked by a userland pro o [1996/09/29] kern/1689 TCP extensions throttles distant connecti o [1996/10/04] kern/1726 panic in kmem_malloc (dump available) o [1996/10/08] kern/1744 peter run queue or proc list smashed 4 times in f [1996/10/21] kern/1856 peter read-only nfs mount: panic leaf should be s [1996/10/26] bin/1892 n_hibma install(1) removes target file s [1996/11/08] gnu/1981 ypserv handles null key incorrectly o [1996/11/18] kern/2053 peter de0 driver don't work at 100M for Compex o [1996/12/22] kern/2270 Hayes ESP serial card locks system as of a [1996/12/30] kern/2325 quota.user enlarged, no boot on 2.2-BETA f [1997/01/09] bin/2430 grog mountd stops on loading if subnet mask is s [1997/02/03] kern/2647 changing existing route to -static crashe a [1997/02/06] kern/2675 lkmcioctl() is not consistent and careful o [1997/02/07] kern/2690 asami When Using ccd in a mirror mode, file cre o [1997/02/08] kern/2695 sio1 (16540 serial port) is not recognize o [1997/02/09] kern/2698 After rewind I cannot read a tape; blocks o [1997/02/12] kern/2719 added support for magneto-optical SCSI di o [1997/02/15] kern/2742 panic: leaf should be empty f [1997/02/15] bin/2747 davidn cannot submit at jobs from within an at j o [1997/02/16] gnu/2749 peter cvs export using remote cvs fails - CVS/T o [1997/02/19] kern/2768 ktrace(1) -i dumps corrupted trace data o [1997/02/19] bin/2769 fsck needs several runs to clean up bad/d o [1997/02/19] kern/2770 panic: vm_fault: fault on nofault entry o [1997/02/19] kern/2771 panic: bad dir o [1997/02/19] kern/2773 peter bad dir panic o [1997/02/20] bin/2785 wpaul callbootd uses an unitialized variable o [1997/02/22] kern/2800 DDS large data writing probrem o [1997/03/01] kern/2840 mlock+minherit+fork+munlock causes panics o [1997/03/03] kern/2858 peter FreeBSD NFS client can't mount filesystem o [1997/03/08] kern/2919 vm_fault: fault on nofault entry, addr: f o [1997/03/15] kern/2991 RTF_LLINFO routes remain when interface i o [1997/03/18] kern/3021 panic after sync during reboot o [1997/03/21] bin/3055 umount -f does not work o [1997/04/01] bin/3170 vi freaks and dump core if user doesn't e o [1997/04/05] kern/3201 peter de0 not re-enabled after hub down o [1997/04/06] kern/3216 panic: pmap_zero_page: CMAP busy o [1997/04/06] kern/3219 sppp or arnet gets looped after connectio o [1997/04/15] bin/3305 Can't do encrypted rlogin into self o [1997/04/25] kern/3381 peter 2.2.x kernel panic on traversing and remo o [1997/04/25] kern/3384 telldir-seekdir can cause livelock o [1997/05/01] kern/3463 netstat -I packet count increase on sl0 w f [1997/05/04] i386/3502 mdodd Merge of if_ix* and if_ie* broke EE/16 su o [1997/05/06] bin/3524 imp rlogin doesn't read $HOSTALIASES for non- o [1997/05/07] kern/3527 peter if_de.c doesn't recognize Kingston card p o [1997/05/09] kern/3564 using MPU401 driver pagefaults kernel o [1997/05/12] kern/3579 peter de driver doesn't support newer SMC 9332 o [1997/05/12] kern/3581 intermittent trap 12 in lockstatus() o [1997/05/12] kern/3582 panic: bad dir (mangled entry) in 2.2-STA s [1997/05/25] kern/3685 [PATCH] panic: fdesc attr o [1997/05/30] kern/3726 peter process hangs in 2.2-stable when working o [1997/05/30] kern/3727 SCSI II tape support broken o [1997/06/03] kern/3771 NFS hangs when writing to local FS re-mou o [1997/06/04] i386/3779 changing cursor to blinking block causes o [1997/06/18] kern/3899 df while unmounting floppy crashes 2.2.2 o [1997/06/28] misc/3980 peter access via NFS fails during mount-operati o [1997/06/29] bin/3986 rdist seg faults when target machine is d o [1997/07/02] kern/4012 peter 2.2-RELEASE/Digital UNIX NFSv3 0 length f s [1997/07/06] gnu/4042 gdb stackframe in static library shows no o [1997/07/17] kern/4115 peter SunOS NFS file has wrong owner if creator o [1997/07/26] bin/4176 restore gets confused when run over pipe f [1997/07/27] ports/4179 fenner lmbench-1.1 dumps core after asking for m o [1997/07/28] kern/4186 peter nfsiod, panic, page fault in kernel mode o [1997/07/30] kern/4194 peter kernel pci driver for Digital 21041 Ether o [1997/08/06] kern/4240 kernel fails to recognise 2nd serial port o [1997/08/10] kern/4260 EOF handling in st(4) is broken o [1997/08/10] kern/4265 Panic in dsinit when multiple FreeBSD sli o [1997/08/12] kern/4284 le0 goes OACTIVE after some time o [1997/08/13] kern/4295 SL/IP difficulties between 2.2.1 & 2.2.2 o [1997/08/16] kern/4312 arp table gets messed up, syslog "gateway o [1997/08/17] kern/4327 peter NFS over TCP reconnect problem s [1997/08/19] kern/4338 New device driver (Cyclades Cyclom-Z) o [1997/08/22] bin/4357 wosch bug in adduser script causes duplicate UI o [1997/09/02] kern/4454 X drops characters/locks up keyboard when o [1997/09/03] bin/4460 lpd hangs exiting (IE in ps table) o [1997/09/11] kern/4513 System lockup appears to be VM related. o [1997/09/14] i386/4533 Server with Cyclom-Y PCI card rebooted at o [1997/09/21] kern/4600 peter nfs lookups might give incorrect result o [1997/09/30] kern/4663 checkalias panic o [1997/10/01] kern/4666 dfr umount -f doesn't seem to work o [1997/10/01] bin/4672 rdist does not do hard links right when t o [1997/10/03] bin/4683 imp restore doesn't correctly handle "sparse" o [1997/10/16] kern/4774 trying to use IBCS2 shared libraries cras o [1997/10/16] kern/4782 Under certain conditions, several krsh's o [1997/10/31] kern/4909 de ethernet driver is crazy on 100base o [1997/11/01] bin/4913 peter Large mail messages can cause mail.local o [1997/11/03] kern/4927 kernel does not check any quota and permi o [1997/11/05] kern/4945 continued failure to use the Adaptec 1460 o [1997/11/05] bin/4949 rpc.rquotad stat()s fs with quota file in o [1997/11/15] conf/5062 login.access not evaluated correctly o [1997/11/18] kern/5085 System crash during mount command for CD o [1997/11/23] i386/5128 Adaptec 2940U Timeouts with QUANTUM disk o [1997/12/06] kern/5244 F00F workaround dosn't always work on SMP s [1997/12/14] bin/5297 make incompatibility with System V style o [1997/12/19] kern/5347 peter DEC (de0) ethernet card has no buffers af o [1997/12/30] kern/5396 fdesc fs crashes system o [1997/12/31] i386/5401 peter de0 selects wrong media when reconnected f [1998/01/08] kern/5456 After writing more than 100MB to SCSI Exa o [1998/01/16] kern/5513 luigi new PnP code is BAD (soundcards) s [1998/01/19] kern/5522 [PATCH] ip_input.c & ip_output.c problems o [1998/01/26] misc/5574 bootpd gets timezone incorrectly o [1998/01/27] kern/5587 session id gets dropped o [1998/01/29] kern/5598 Support for magneto-optic SCSI devices wi o [1998/01/31] kern/5611 bind does not check sockaddr->sin_family o [1998/02/01] kern/5618 kernel memory leak in routetbl. o [1998/02/01] kern/5624 dumping to tape causes scsi bus reset o [1998/02/04] kern/5643 NCR 810/815 do not handle rewind correctl o [1998/02/09] bin/5693 asmodai groff -mm or groff -mmm ??? s [1998/02/17] gnu/5767 phantom man leaves partially formatted cat pages o [1998/02/19] kern/5794 Kernel Panic o [1998/02/28] kern/5877 sb_cc counts control data as well as data o [1998/03/09] bin/5959 Cannot set up clocal gettys o [1998/03/10] kern/5969 non-root user can reboot/lock up system o [1998/03/11] kern/5975 can't boot freebsd: fatal trap12: page fa o [1998/03/16] kern/6035 The system "sort-of" hangs when playing b o [1998/03/19] kern/6066 lnc driver does not work correctly with A o [1998/03/22] kern/6103 panic: ffs_valloc: dup alloc o [1998/03/28] bin/6162 kinit does not default to the current use o [1998/04/03] kern/6203 kernel panics with "blkfree: freeing free o [1998/04/03] conf/6205 NFS/NIS freak out o [1998/04/04] kern/6212 Two bugs with MFS filesystems fixed, one o [1998/04/07] kern/6238 luigi Sound-driver patch for MAD16 (OPTi 928,92 o [1998/04/08] kern/6251 peter ktrace very broken when logging over NFS o [1998/04/08] kern/6252 ide cdrom hangs system when on same bus a o [1998/04/09] kern/6253 Atapi wait for command phase too short. o [1998/04/10] kern/6267 dg panic: pmap_dispose_proc: upage already m o [1998/04/14] kern/6300 System locks up in SMP mode when accessin o [1998/04/18] kern/6344 cy driver is outdated o [1998/04/19] kern/6351 DPT RAID controller stops working under h o [1998/04/20] i386/6368 Stallion Easyio 8 port not detected using o [1998/04/22] bin/6383 csh - when ctrl-d is pressed, file is chm o [1998/05/03] kern/6506 system will not soft reboot f [1998/05/05] kern/6525 Coral-Draw 5 CD crashes 2.2.6-STABLE a [1998/05/06] bin/6536 pppd doesn't restore drainwait for tty o [1998/05/08] bin/6557 /bin/sh is broken o [1998/05/10] bin/6577 /bin/sh environment variables not set in o [1998/05/11] ports/6591 se KDE starts /usr/bin/kzip instead of /usr/ o [1998/05/12] kern/6603 ncr driver hangs under high load o [1998/05/12] bin/6609 gmp.h not installed o [1998/05/17] kern/6670 PANIC on boot with FreeBSD 3.0 (same comp s [1998/05/19] kern/6686 [STABLE] -stable does not support large I o [1998/05/25] kern/6751 audio cd play suddenly stops. o [1998/05/25] kern/6755 peter Tulip (if_de) driver buggy in -current s [1998/05/27] misc/6773 [PATCH] tempnam.c security problems s [1998/06/02] bin/6830 make(1) exhibits confusing and non-standa s [1998/06/04] kern/6854 [PATCH] probing brooktree849 capture card o [1998/06/04] misc/6861 [PATCH] netboot error o [1998/06/05] kern/6865 OS crashes when exiting shell with suspen o [1998/06/10] kern/6908 kernel crash from user land o [1998/06/19] bin/6994 The netstat(1) -s generates wrong output s [1998/06/22] bin/7019 [security] pwd.db almost always contains s [1998/06/23] bin/7033 Same process notified multiple times o [1998/06/24] kern/7038 shimon Kernel panic caused by DPT driver (Got a s [1998/06/24] bin/7043 the fstat command doesn't know ISOFS, MSD o [1998/06/24] i386/7057 3Com 3C509 locks up, or has >1000ms rtt u s [1998/06/24] bin/7059 sh dumps core on this script o [1998/07/05] ports/7167 ache elm cannot pgp for more than one recipien s [1998/07/05] kern/7169 cannot use accton on a append-only file s [1998/07/06] misc/7190 phk "Invalid partition table" after new insta s [1998/07/10] kern/7237 NCR SCSI driver ch0 troubles o [1998/07/11] kern/7245 processes die with signal 6, if machine o o [1998/07/12] i386/7266 yokota PSM detection failure with Linksys consol s [1998/07/14] kern/7281 [STABLE] Multicast kludge does not work c o [1998/07/23] ports/7383 imp socks5 + ssh + redirection not working o [1998/07/26] kern/7405 in pmap_changebit, pmap_pte_quick() retur s [1998/07/27] kern/7410 [PATCH] driver for arlan-655 s [1998/07/27] i386/7420 [PATCH] Maximum socket buffer size (SB_MA o [1998/07/28] kern/7424 Machine crashes do not occur very often, o [1998/07/30] bin/7446 jdp Dlopen succeed in particular cases, but i o [1998/08/04] ports/7490 ache `setenv LANG/LC_CTYPE C` makes tcsh unusa s [1998/08/10] kern/7556 sl_compress_init() will fail if called an f [1998/08/10] kern/7557 dillon -current machine running Diablo, lockup, s [1998/08/10] kern/7561 CDROM (wcd) is prone to lock up system/pr s [1998/08/10] kern/7562 Running wine can cause other applications o [1998/08/18] kern/7658 (1) rlogin from some host to the FreeBSD o [1998/08/18] kern/7664 scsiformat reports '0' for all parameters f [1998/08/20] i386/7698 n_hibma scotty/tkined library error o [1998/08/27] kern/7754 kernel panics if NFS server uses LKM vs. o [1998/08/27] bin/7756 disklabel misbehaving on seriously sick d o [1998/08/27] kern/7764 ps(1) hangs in pfslck/lockrd - All subseq o [1998/08/27] kern/7766 de driver still buggy - random ifc death o [1998/08/27] kern/7767 de driver still buggy - power cycle of de o [1998/09/01] kern/7797 System halted with "panic: pmap_release: o [1998/09/02] i386/7815 probe can't find wdc0 o [1998/09/09] bin/7872 [PATCH] mountd(8) can apply flags to wron o [1998/09/09] bin/7876 gethostbyname flags temporary failure as o [1998/09/10] kern/7880 mount_cd9660 incorrect on multitrack CD-R o [1998/09/11] kern/7902 if_de doesn't properly recognize a "Magic o [1998/09/12] conf/7908 wrong perms on objformat after upgrade o [1998/09/16] kern/7950 Trap 12 while executing wine o [1998/09/16] gnu/7951 The gnu readline library core dumps when o [1998/09/17] bin/7968 If /usr/libexec/yppwupdate DNE, rpc.yppas o [1998/09/22] conf/8031 peter [patch] /etc/rc looks for /etc/sendmail.c o [1998/09/28] misc/8070 can't get a system with an NCR 810 contro o [1998/09/28] i386/8081 Problem with MULTIPORT driver and Boca BB o [1998/09/30] gnu/8099 [patch] some bugs in cpio o [1998/10/03] kern/8137 [patch] quotaoff followed by quotaon can o [1998/10/05] kern/8158 sio driver breaks in 2.2.7R in kernels wi o [1998/10/06] kern/8180 open("..",O_RDONLY|O_NONBLOCK) fails o [1998/10/07] bin/8195 ee dumps core on window resize o [1998/10/08] kern/8206 [patch] Unconected UDP socket declined, i o [1998/10/08] kern/8215 Creating 2 root partitions in sysinstall o [1998/10/11] bin/8266 [patch] nfsd should allow just nfs versio o [1998/10/13] kern/8312 Under heavy load, the system panics with o [1998/10/14] bin/8322 Mail doesn't respect REPLYTO in .mailrc o [1998/10/14] kern/8324 failure to deliver SIGIO when fildes mark o [1998/10/19] conf/8379 check_rcpt returns OK for nonexistent add o [1998/10/20] kern/8380 swap_page error: out of swap space o [1998/10/20] i386/8385 2.2.7 hangs while detecting type of COM1' o [1998/10/21] i386/8397 Code using popen compiled on BSDI BSD/OS o [1998/10/22] i386/8414 ibcs2 emulation sets serial baud-rate inc o [1998/10/22] kern/8415 SMP kernel freezes while downloading larg s [1998/10/22] kern/8417 3.0 config(8) doesn't check that root fs o [1998/10/22] i386/8418 sh MAKEDEV all - fails to create hard lin o [1998/10/23] kern/8423 Intel PILA8461 NIC panics 2.2.7 during pr o [1998/10/24] i386/8435 boot.flp does not give shell prompt after o [1998/10/28] misc/8480 odd Korean timedef(LC_TIME) o [1998/10/31] bin/8518 freopen() in append mode followed by ftel o [1998/11/01] kern/8534 insufficient support routines for poll(2) o [1998/11/03] kern/8561 /kernel inode change time changes every r o [1998/11/03] i386/8567 Intel EtherExpress Pro/10 driver (if_ex.c o [1998/11/05] kern/8580 Hanging NFS pagein in nfs_bio.c (2.2.7, w o [1998/11/07] kern/8590 kernel incorrectly recognizing Maxtor 11. o [1998/11/08] kern/8607 maxprocsperuid setting causes sybase/linu o [1998/11/08] kern/8619 EXT2FS should be in GENERIC kernel o [1998/11/08] ports/8622 markm exmh2 has problems with some date formats s [1998/11/09] misc/8623 [MFC] Time zone for Japan is strange (see o [1998/11/10] bin/8646 Implement rlogind -a option o [1998/11/11] kern/8655 Umount trouble of SCSI removable device o [1998/11/11] kern/8657 nfs client hung in nfs_bwrite/vfs_busy_pa f [1998/11/12] kern/8669 phantom aio_write() and aio_read() do not work AT o [1998/11/14] bin/8685 sending a SYST by ftp client closes conne o [1998/11/18] bin/8745 wosch adduser permit adding `root' and mail ali o [1998/11/20] kern/8773 Intel AN430TX motherboard ps/2 port not r f [1998/11/20] kern/8778 gibbs Buslogic BT948 in 2 boxes upgraded from S o [1998/11/23] kern/8824 Incorrect driver unit number in IDE BusMa o [1998/11/24] conf/8854 boot.flp does not probe atapi cdrom o [1998/11/25] bin/8865 syslogd hangs with serial console a [1998/11/28] kern/8875 Patch to allow DMA IDE with generic chips o [1998/11/29] conf/8903 dillon /etc/rc can do NFS mounts before the netw o [1998/12/01] i386/8924 File transfers. Upload is 71Kbs downloa o [1998/12/02] kern/8940 system clock runs extremely slowly (and s o [1998/12/06] kern/8981 this also fixes X crashes and sio silo ov o [1998/12/09] kern/9030 DMPno2 - PCCards are not being recognised o [1998/12/10] i386/9044 #.0 pkgs require libkrb o [1998/12/16] kern/9095 swap detect error o [1998/12/19] kern/9129 Is it miss take ? So, ep deriver dose not o [1998/12/20] i386/9140 NIS "Magic cookie" in master.passwd slays o [1998/12/21] kern/9163 [patch] squid does not join a multicast g o [1998/12/27] bin/9214 kldload(8) error messages are inadequate o [1998/12/30] i386/9244 2.2.8 RELEASE Fixit floppy doesn't work.. o [1998/12/31] bin/9252 [patch] login program "login" don't set K o [1999/01/03] kern/9296 pps driver missing header file o [1999/01/03] kern/9297 pps driver doesn't clear ppbus control po o [1999/01/06] bin/9350 nvi incorrectly reads files with very lon o [1999/01/06] kern/9355 can't select() for writes on a bpf o [1999/01/07] bin/9379 pppd does not go through all interfaces l o [1999/01/08] kern/9391 if_addmulti doesn't check for retifma == o [1999/01/09] kern/9407 "make kernel" yields buggy kernel in cera o [1999/01/09] kern/9408 parameter reversed to a pci_cfgwrite in p o [1999/01/09] kern/9411 System crash on swapping to hole-files o [1999/01/11] bin/9440 obrien amd can't mount filesystems with type:=uf o [1999/01/11] bin/9444 mount_mfs uses lots of swap. o [1999/01/13] kern/9478 support for running a script from kldload o [1999/01/14] kern/9487 pcm: mixer's synth and cd devices are swa o [1999/01/14] bin/9495 su doesn't look at login.cnf all the time o [1999/01/15] bin/9516 ftpd doesn't honor invalid shelll in logi o [1999/01/17] bin/9544 syntax error concerning loading vinum fro o [1999/01/17] kern/9548 UNION fs corrupts data and has undefined o [1999/01/17] kern/9550 The latest -current as of 17 January has o [1999/01/21] kern/9599 SMP hang after reseting CPU 1 o [1999/01/22] docs/9618 asmodai many typos in groff_mm(7) o [1999/01/25] kern/9673 ISO CD-ROM Problem o [1999/01/28] i386/9759 Tar process hangs on buggy tapes o [1999/02/01] kern/9862 system crashes writing to msdos jaz disk o [1999/02/02] kern/9883 MGET()(and variants) return NULL with M_W s [1999/02/06] kern/9927 gibbs the ahc driver doesn't correctly grok swi o [1999/02/06] i386/9933 No error reported writing to write-protec o [1999/02/06] kern/9935 vmstat reprots bad AVM values o [1999/02/08] kern/9961 When loading if_ppp_mod.o system crashes, o [1999/02/08] i386/9962 Install Panics in with integer divide fau o [1999/02/08] kern/9974 Large amounts of kernel clock drift with o [1999/02/09] kern/9980 savecore fails with large (2gig+) swap pa o [1999/02/09] bin/9982 inet_addr(3) should be return 32bit uint. o [1999/02/10] misc/10009 jdp dlopen will crash when opening some strip o [1999/02/11] kern/10021 MOUNTING A EXT2FS A AFTER MOUNTING AN MSD o [1999/02/11] bin/10031 ypxfr does not work with Solaris master s o [1999/02/13] kern/10066 problem with a X-Window and syscons drive o [1999/02/14] i386/10089 ATAPI tape driver (wst) doesn't handle En o [1999/02/15] kern/10107 interlock situation with exec_map and a p o [1999/02/18] i386/10150 Compaq fxp0 Does not work on 3.0 or 3.1 b o [1999/02/18] i386/10151 ATAPI CD problem o [1999/02/19] conf/10163 init does not start when /var/msgs is a s o [1999/02/23] bin/10230 -T and -B not implemented on filehandles o [1999/02/25] misc/10259 FTP install hangs for 3.1-RELEASE o [1999/02/25] bin/10264 passwd(1) tryis NIS even with `-l' switch o [1999/02/25] kern/10265 file locking does not work with kernel pt o [1999/02/26] kern/10280 Display Adapters (PCI) probed wrong way - o [1999/02/28] misc/10302 installer o [1999/02/28] bin/10312 ken pciconf -l generates output incompatible o [1999/02/28] kern/10316 le0 goes OACTIVE after some time o [1999/03/02] bin/10353 ypserv gets segmentation violation o [1999/03/03] kern/10381 hlfsd/NFS failure -- directory cached bet o [1999/03/05] kern/10411 top, vmstat, iostat show 0% cpu idle & us o [1999/03/06] misc/10418 libpam is built before libradius/libtacpl o [1999/03/07] kern/10466 resume causes crashes if BIOS extmem != R o [1999/03/08] kern/10492 broadcast IP address can be set on interf o [1999/03/09] bin/10510 Remote cvs botches commits on occassion o [1999/03/11] bin/10553 syslogd suddenly stopped logging o [1999/03/14] kern/10581 Kernel panic while using find on an ext2 o [1999/03/14] kern/10594 EXT2FS mount problems o [1999/03/14] bin/10596 I can't find out where someone is logged o [1999/03/15] misc/10599 [PATCH included]malloc/free breaks in cer o [1999/03/15] kern/10603 dcs Random system panics o [1999/03/15] kern/10607 Fast forwarding breaks when arp cache exp o [1999/03/16] bin/10615 make installworld DESTDIR=/some/dir o [1999/03/16] i386/10626 RTC BIOS diagnostic error on install o [1999/03/16] bin/10633 obrien [patch] tcpslice timezone problem and upd o [1999/03/17] i386/10646 Bridge code missing from ed0 driver in 3. o [1999/03/19] kern/10671 setlogin(2) return EINVAL for length of n o [1999/03/20] kern/10698 de driver doesn't work with some tulip bo o [1999/03/23] kern/10747 [PATCH] ipfirewall `deny' rules act as `r o [1999/03/24] bin/10774 sio0 doesn't work well, i belive the prob o [1999/03/24] kern/10778 "ipforward_rt" is not cleared when routin o [1999/03/25] bin/10784 `make aout-to-elf-build' died in /usr/src o [1999/03/25] bin/10785 make aout-to-elf-install died in info tar o [1999/03/25] kern/10789 Second config of kernel doesn't overwrite o [1999/03/27] bin/10821 des getpwent() fails on NIS clients after dro o [1999/03/29] i386/10862 dcs wd.c STILL cannot recognize correct disk o [1999/03/30] kern/10870 eivind Kernel panic when writing to write-protec o [1999/03/30] misc/10879 Cannot build aout binaries under 3.1-RELE o [1999/03/30] bin/10880 Profiler libraries missing o [1999/04/01] bin/10912 /bin/sh: Fix to prevent infinite loops on o [1999/04/03] i386/10928 su reboots the system after one day uptim o [1999/04/03] i386/10935 PCI cards detected twice o [1999/04/04] ports/10946 se kdm 1.1 does not work correctly - XBINDIR o [1999/04/05] bin/10963 brian date -v dosen't quite work o [1999/04/05] i386/10969 kernel fails to compile with ccs0 o [1999/04/06] i386/10983 lnc NIC driver doesn't work o [1999/04/06] bin/10991 lpd hangs system if printer not ready on o [1999/04/07] kern/11004 Quota Issues on SMP o [1999/04/07] bin/11005 `umount -f' does not work if the NFS-serv o [1999/04/08] misc/11024 getpwnam(3) uses incorrect #define to lim o [1999/04/11] kern/11080 fatal trap 18 while trying to mount inval o [1999/04/11] kern/11084 3.1-R kernel trap 12 with interrupts o [1999/04/13] kern/11115 Sockets die in LAST_ACK and FIN_WAIT_1 st o [1999/04/13] bin/11119 NFS quotas fail to report if alternate fi o [1999/04/16] bin/11169 warning: pointer to wrong page in cron(8) o [1999/04/18] i386/11200 AMD PCnet lnc0/lnc1 problem o [1999/04/18] kern/11208 Complete system hang/freeze. No PANIC me o [1999/04/20] bin/11247 fetch doesn't notice FTP error after RETR o [1999/04/21] kern/11255 Fore System ATM Card not working o [1999/04/21] kern/11266 frequent crashes with "Page fault, fatal o [1999/04/22] bin/11283 fetch http-timeout/timestamp bug o [1999/04/23] i386/11291 anic: ffs_alloccg: map corrupted o [1999/04/23] bin/11296 fetch(1) fails to resolve names in http m o [1999/04/26] conf/11336 Broken data sent to printer through devic o [1999/04/28] kern/11366 Filesystem can cause hang/crash in certai o [1999/04/28] conf/11376 NFS mount may be happening too soon in /e o [1999/04/29] bin/11382 generated code using rpcgen with -b optio o [1999/04/29] kern/11385 PCNet/PCI Ethernet adapter works in 3.1-R o [1999/04/29] i386/11395 ghostscript5.50 does not print properly, o [1999/04/30] kern/11405 pwd_mkdb with no tmp space leads to kerne o [1999/05/02] i386/11454 mkdir() and chdir() doesn't check argumen o [1999/05/03] kern/11462 CS network interface driver (for CS89XX b o [1999/05/03] bin/11464 obrien union copies likely broken for alpha egcs o [1999/05/04] kern/11490 yokota VESA+VM86+Splash == unstable system o [1999/05/05] kern/11507 msmith CS89XX (i386/isa/if_cs.c) fails to proper o [1999/05/05] kern/11513 cannot mount CD-ROM: Device not configure o [1999/05/05] misc/11523 3.1-STABLE BRIDGE option does not work o [1999/05/05] misc/11525 [PATCH] Networking patches to increase # o [1999/05/07] gnu/11562 tar verification doesn't work o [1999/05/07] kern/11563 pci_unmap_int doesn't do anything o [1999/05/12] i386/11664 lnc1 NIC fail to work o [1999/05/12] bin/11666 ypserv fails to reply host name resolutio o [1999/05/12] kern/11679 httpd and perl5 processes stuck in "nocha o [1999/05/13] kern/11686 APM: Always "Resume failure" from suspend o [1999/05/13] kern/11692 3.1-stable deadlock o [1999/05/13] kern/11697 dg Disk failure hangs system o [1999/05/14] i386/11720 FreeBSD 2.2.8 can't load fixit disk o [1999/05/18] kern/11766 Can not traceroute through ipnat. o [1999/05/18] i386/11773 yokota mouse works at setup time. Under X it go o [1999/05/19] misc/11778 mpz_get_str() in libgmp leads up to cored o [1999/05/19] misc/11790 boot manager bug f [1999/05/20] misc/11800 gibbs Problem with scsi AHA2940 and sony SDT-20 o [1999/05/20] i386/11801 Remounting CD on IDE CDROM after eject fa o [1999/05/20] kern/11808 read/write mounted write-protected floppi o [1999/05/21] kern/11821 /dev/fd0a hangs on large files, including o [1999/05/23] kern/11867 Sound driver loses interrupts, no sound o [1999/05/28] kern/11911 3.1-R : writing file larger than floppy s o [1999/05/28] kern/11915 access system call says file is readable o [1999/05/28] kern/11919 kldload doesn't return error on loading a o [1999/05/28] kern/11922 missing reentrant interfaces for getpwnam o [1999/05/29] kern/11928 kldload loads kernel modules even if ther o [1999/05/29] kern/11936 wine don't work (SMP) (-STABLE) o [1999/05/29] kern/11937 vm problems after havy memory usage o [1999/05/31] kern/11969 VM_fault with mmap'd CDROM data. o [1999/06/02] i386/11991 fdisk does not assign slices to unused pa o [1999/06/02] bin/11992 /usr/src/sbin/mountd/mountd.c has '#ifdef o [1999/06/04] kern/12022 System clock timewarps o [1999/06/06] bin/12054 explicit -ltermcap after -lncurses causes o [1999/06/06] kern/12062 sa tape driver with Cipher 60M SCSI QIC t o [1999/06/08] bin/12091 syslog packets from a remote machine are o [1999/06/08] kern/12092 vpo driver not working in 3.2-RELEASE o [1999/06/09] kern/12104 Certain cdcontrol commands don't work pro o [1999/06/10] bin/12120 named crashes. o [1999/06/10] gnu/12122 cc hangs on STDIN with -pipe and .s files o [1999/06/12] gnu/12175 gdb crashes with pids > 32736 o [1999/06/13] bin/12191 wcol is trying to allocate a shared memor o [1999/06/15] misc/12221 djpeg halt's freebsd box o [1999/06/16] bin/12242 segmentation fault running /usr/bin/fmt o [1999/06/16] kern/12247 userlevel program let kernel hang o [1999/06/17] kern/12262 pcm sound driver with SB16pnp does not ap o [1999/06/18] bin/12272 The ctype locales print an error message o [1999/06/18] kern/12274 cd mount problem o [1999/06/20] kern/12305 clock() ticks backwards o [1999/06/21] kern/12320 error 6: panic: cannot mount root (2) o [1999/06/22] bin/12349 des 3.2-R inetd doesn't re-read ALL configura s [1999/06/24] kern/12381 bde Bad scheduling in FreeBSD o [1999/06/25] conf/12387 CDROM boot failure on Thinpad 770X, 380ED o [1999/06/25] kern/12394 3.2-RELEASE, rl0 ethernet interface freez o [1999/06/28] kern/12434 signal 11 (core dumped) on mysqld when ma o [1999/06/30] kern/12464 bad reference in struct vm_zone o [1999/07/01] kern/12484 [PATCH] bpf_filter() broken o [1999/07/06] i386/12529 Linksys ether16 NE2000 compat. won't conf o [1999/07/06] bin/12538 getpwuid() NIS UID override fails o [1999/07/07] kern/12551 mks ASIC output is shifted following a short o [1999/07/07] docs/12557 nik There are no man pages for the widely use o [1999/07/09] misc/12577 Can't link code using catopen o [1999/07/13] kern/12632 Panic (trap 18) with Symbios SCSI control o [1999/07/14] misc/12640 Can use 2nd CD-ROM for fixit mode. o [1999/07/15] kern/12646 IGMP reports not sent if no multicast rou o [1999/07/16] gnu/12662 tar verification doesn't work in 3.2-RELE o [1999/07/18] kern/12703 tx0 truncates skip packets o [1999/07/20] bin/12727 billf Game patches from NetBSD o [1999/07/21] conf/12745 diffs to delay start of amd rwhod timed o o [1999/07/21] i386/12749 marcel Bug in link() and all other filename func o [1999/07/22] kern/12758 Adjusting the idle priority of a process o [1999/07/23] i386/12771 lpt hangs and never works again, even aft o [1999/07/24] kern/12800 buffer leak in cluster_wbuild o [1999/07/26] alpha/12821 alpha slib.aq for the 3.2-RELEASE alpha distrib o [1999/07/27] alpha/12832 alpha config -g creates broken Makefile in 3.2- o [1999/07/27] kern/12838 PC-Card ctlr(0) Vadem 365 support seems b o [1999/07/28] misc/12856 installworld over nfs broken (3.2S) o [1999/07/29] kern/12869 panic: softdep_flushfiles: looping o [1999/07/30] kern/12884 Hot to panic FreeBSD-3.2-Release o [1999/08/02] kern/12927 jedgar [PATCH] using BROKEN_KEYBOARD_RESET optio o [1999/08/02] ports/12930 asami libtool create defuct makefiles if PREFIX o [1999/08/03] misc/12938 gethostbyaddr(209.201.116.19) - Bus error o [1999/08/04] kern/12979 Response time continually slows on idle m o [1999/08/05] kern/12991 system queue is cleared when a port or pi o [1999/08/06] kern/12996 ifconf in sys/net/if.c returns larger buf o [1999/08/07] conf/13013 Selecting CDROM as install media doesn't o [1999/08/08] kern/13022 ipfilter is out-of-date o [1999/08/08] misc/13027 sysinstall has no /dev entry for wfd0s4 ( o [1999/08/10] i386/13058 Installation hangs after commit f [1999/08/13] kern/13113 panic related (proberbly) to vnode o [1999/08/14] kern/13141 se Multiple LUN support in NCR driver is bro o [1999/08/14] ports/13145 se kaudioserver runs amok on logout o [1999/08/15] kern/13150 panic: ufs_dirbad: bad dir o [1999/08/15] gnu/13172 Bug in workaround of russian locale & sor o [1999/08/16] kern/13180 panic: ffs_alloccg: map corrupted o [1999/08/17] kern/13198 panic: vm_fault: fault on nofault entry o [1999/08/17] gnu/13200 The assembler chokes on very long operand o [1999/08/18] kern/13234 .../netinet/ip_input.c should include opt o [1999/08/24] bin/13350 make clean in bsd.obj.mk no longer proper o [1999/08/25] misc/13378 Tecra 8000 hangs in UserConfig, cannot co o [1999/08/25] kern/13382 Only 1 parallel port supported if pps ena o [1999/08/25] bin/13383 nectar sys/netinet/in.h violates C++ spec. o [1999/08/26] kern/13405 syslogd get system hang o [1999/08/27] gnu/13427 gdb reports wrong info o [1999/08/28] gnu/13438 objc forward core dump using system cc o [1999/08/29] i386/13452 changing to root device wd0s1a \n error 2 o [1999/08/29] bin/13463 /bin/sh does not handle interrupts correc o [1999/08/30] misc/13470 Old problem re-introduced: TCP sucket buf o [1999/09/01] kern/13517 hang system o [1999/09/05] kern/13587 Voxware MIXER_READ ioctl corrupts memory o [1999/09/06] kern/13593 Problems with FIFO and select o [1999/09/07] kern/13612 gibbs "Timedout SCB handled by another timeout" o [1999/09/07] kern/13630 system halts after npx0 detected on 3.2 i o [1999/09/07] kern/13632 Floppy hangs system o [1999/09/08] kern/13646 Kernel Trap error when booting 3.3-RC ker o [1999/09/09] i386/13655 sysmouse, signal 10 and XF86_S3 o [1999/09/10] bin/13679 ncurses-based programs eat 100% CPU after o [1999/09/10] bin/13691 fenner tcpslice cannot extract over 2GB part of o [1999/09/11] bin/13703 MCNP compilation problem o [1999/09/12] bin/13711 root fs not properly unmounted after shut o [1999/09/12] ports/13714 stb netatalk-1.4b2+asun2.1.3 fails chmod g+s o [1999/09/13] conf/13724 Prevent ".: Out of file descriptors" erro o [1999/09/13] gnu/13729 strip(1) exits with an error on script fi o [1999/09/13] kern/13736 enabling NAT on 3.3RC results in panic sb o [1999/09/13] kern/13740 wrong IP statistics o [1999/09/15] kern/13757 wpaul tl0: adapter check: 180005 mesages keep c o [1999/09/15] i386/13765 memory problem: compilation of emacs dies o [1999/09/15] bin/13768 sh MAKEDEV cdN creates all cd(N-1)-device o [1999/09/15] misc/13771 brian Packet fragment filter bug in user-land P o [1999/09/16] conf/13775 multi-user boot may hang in NIS environme o [1999/09/16] conf/13785 jkh boot block/manager problem at installatio o [1999/09/17] i386/13787 lnc driver isn't really the lnc driver o [1999/09/18] i386/13811 ide cdrom stops recognizing audio cdroms o [1999/09/19] ports/13839 se kdegraphics11 'make PREFIX' fix, one comp o [1999/09/19] i386/13847 missing support for INT 0x13 extensions i o [1999/09/20] i386/13857 Problem with switching between processes o [1999/09/22] alpha/13912 alpha unaligned access Problem seems to be aff o [1999/09/23] misc/13920 pppd acts differently on 3.3-RELEASE ("mi o [1999/09/24] kern/13941 ncr0: SCSI phase error on GENERIC kernel o [1999/09/26] misc/13978 peter a write to last column bug appears since o [1999/09/26] bin/13980 Parameter expansion pattern removal bug i o [1999/09/27] kern/13997 phk RLIMIT_NPROC works unadequately for jails o [1999/09/28] kern/14026 Many network connections get left in the o [1999/09/28] i386/14027 "disklabel -r -w" on new disk reports "No o [1999/09/28] kern/14033 Data acq process gets stuck in vmopar o [1999/09/30] kern/14060 3.3-STABLE on primary mail server panics o [1999/09/30] bin/14069 Buffer overflow in mail(1) o [1999/09/30] kern/14072 Rebooting in FreeBSD 3.3 wipes out known o [1999/10/01] conf/14075 CDROM not being recognized during certain o [1999/10/02] kern/14096 parallel port -- ppi -- driver broken aft o [1999/10/03] bin/14102 make world -DWANT_AOUT fails in lib/compa o [1999/10/04] misc/14121 resurfaced bug in rmt preventing remote d o [1999/10/04] kern/14123 lnc driver is not working o [1999/10/04] i386/14135 lpt1 nolonger exists after 3.2-RELEASE o [1999/10/05] kern/14144 bad conversions in kern_fork() o [1999/10/07] misc/14178 FreeBSD 3.2 - Calls from CGI scripts, cro o [1999/10/07] kern/14183 grog bridge forwarding corrupted broadcast IP o [1999/10/10] bin/14250 restore(8) can loop if tty goes away or w o [1999/10/10] misc/14254 [Fwd: clock(3) runs backwards! (fwd)] (fw o [1999/10/10] kern/14257 error 6: panic: cannot mount root (2) - d o [1999/10/11] misc/14264 Combination of aio_read(), pthread_cond_w o [1999/10/12] i386/14282 Using FreeBSD 3.* ThinkPad 600E doesn't r o [1999/10/12] ports/14283 ache apache13 htpasswd dumps core o [1999/10/12] kern/14285 dillon NFS client appears to lose data o [1999/10/14] i386/14324 wst OR atapi drivers won't work o [1999/10/14] misc/14326 kerberos4 pam-related breakage in current o [1999/10/14] misc/14327 names used in netdb.h may conflict with n o [1999/10/14] i386/14334 imp AHA-1542A not supported by FreeBSD 3.x (" o [1999/10/15] kern/14354 grog vinum cannot compile for alpha o [1999/10/20] misc/14431 Network Interface Problem o [1999/10/20] bin/14444 enigma command can't decrypt files encryp o [1999/10/21] i386/14446 Doesn't boot on Mobile Celeron o [1999/10/22] kern/14457 SIOCGIFCONF uses too much memory o [1999/10/25] bin/14524 markm PERL 5.005_03 Config.PM on 3.2-STABLE say o [1999/10/25] kern/14536 kernel panic on 64KB block size ufs files o [1999/10/26] kern/14546 SB128PCI work incorrect play wav-files un o [1999/10/26] kern/14549 3C509 broken in 3.3 o [1999/10/27] kern/14566 yokota Non-kernel programs have little/no contro o [1999/10/31] bin/14626 sendmail 8.9.3 bug with aliases in -CURRE o [1999/11/03] i386/14689 waitpid doesn't harvest child process whe o [1999/11/04] kern/14712 root has access to NFS mounted directorie o [1999/11/05] kern/14722 TCP connections hangs in FIN_WAIT_2 for > o [1999/11/05] bin/14729 when sysinstall is running as init it sho o [1999/11/07] bin/14782 ypbind can not bind to Solaris NIS master o [1999/11/08] kern/14787 /dev/lpt0 doesn't work unless/until you d f [1999/11/09] kern/14797 Serious locking problem in CURRENT o [1999/11/09] i386/14799 Promise Ultra33 doesn't work o [1999/11/09] i386/14806 if_tun.ko conflicts with built-in tunnel o [1999/11/10] misc/14811 getpwent is not enumerating all entries i o [1999/11/10] kern/14812 de0 driver malfunctions in full-duplex o [1999/11/10] kern/14814 4.0-CURRENT SMP mode causes ep0 slow o [1999/11/11] ports/14826 obrien security/fwtk smapd calls sendmail with w o [1999/11/12] bin/14844 rwhod is remotely crashable o [1999/11/12] kern/14848 Frame Relay support, corrected a [1999/11/12] misc/14856 billf ftp stalls on FreeBSD 3.3 (CDROM) tested o [1999/11/14] kern/14890 ffs_valloc: dup alloc o [1999/11/15] misc/14895 portmap bug (when run with -v flag) o [1999/11/15] kern/14900 3.3-RELEASE panic in pmap_pte_quick() o [1999/11/16] kern/14917 grog DMA doesn't works with ALI ALADDIN M1543/ o [1999/11/16] kern/14918 Write access to write protected media cau o [1999/11/16] bin/14920 install(1) hangs when intalling files sam o [1999/11/16] misc/14932 "more" eating up CPU on users with shell= o [1999/11/17] i386/14946 mjacob rmt - remote magtape protocol o [1999/11/17] kern/14960 Compaq EISA array controller not working o [1999/11/17] kern/14962 PnP doesn't detect AWE64 when PnP modem i o [1999/11/17] misc/14964 Network Interface Configuration Problem a o [1999/11/18] bin/14978 lprm(1) does not kill active daemon if ho o [1999/11/19] kern/14997 NFSv3 open O_EXCL fails to set proper "at o [1999/11/19] misc/15001 'fetch' doesn't work for http when behind o [1999/11/19] i386/15003 3C574 (ep0) reads bogus ethernet address o [1999/11/21] i386/15018 Printingproblem o [1999/11/22] bin/15046 /sbin/dhclient-script ignores resolv.conf o [1999/11/23] i386/15062 i4b stops working after some time o [1999/11/23] bin/15070 vfprintf/cvt/__dtoa race condition in thr o [1999/11/24] i386/15074 Two different panics when running Linux b o [1999/11/24] kern/15075 Intel Etherexpress Pro timeouts when >1 c o [1999/11/24] misc/15080 corrupt tree/subtree on primary ftp serve o [1999/11/24] kern/15086 Borked sscape drivers :) o [1999/11/25] kern/15087 3.3-STABLE panic while starting daemons ( o [1999/11/25] kern/15089 mmap of files from 2K-block device failed s [1999/11/26] bin/15101 joe [PATCH] cdcontrol does not perform bounds f [1999/11/26] ports/15107 green Patch for FreeBSD s/key support in OpenSS o [1999/11/26] misc/15109 problem printing graphic pages o [1999/11/27] ports/15123 rse www/apache13-modssl has PREFIX problems f o [1999/11/28] conf/15150 phantom Taking encoding scheme latin1 into accoun o [1999/11/28] ports/15157 se [PATCH] Environment Botch in KDM o [1999/11/30] misc/15190 crashing while in a multiplatform environ o [1999/11/30] kern/15193 PCCARD ethernet interface not returned by o [1999/12/01] kern/15204 systems panics when ktrace-ing o [1999/12/01] kern/15206 Ethernet driver if_vr.c (VIA Technologies o [1999/12/02] misc/15228 C++ exceptions+threads SIGABRTs. o [1999/12/02] kern/15235 dillon Race conditions in pipe_write causes kern o [1999/12/05] misc/15269 error server timeout downloading small fi o [1999/12/06] i386/15327 Unable to use ISA sound card with AD1816A o [1999/12/07] kern/15345 lkm no longer works after 3.3 o [1999/12/08] i386/15364 Flash Player 4 for Linux has no sound wit o [1999/12/08] kern/15365 Fatal trap 18 (integer divide fault) when o [1999/12/09] ports/15368 torstenb Update ftp/mirror o [1999/12/11] kern/15420 3.3-RELEASE Kernel freeze o [1999/12/12] bin/15450 The name of the tagfile is left in the pa o [1999/12/13] i386/15460 Installation with Compaq SMART-2DH Array o [1999/12/13] bin/15471 kris Fix several buffer overflows o [1999/12/13] kern/15475 pppd(8) sets the Source Address field of o [1999/12/14] kern/15478 incorrect utmp/wtmp records update upon c o [1999/12/14] kern/15486 Attempt to write to a "write-prot" floppy o [1999/12/15] kern/15508 disk usage after "strip" is wrong o [1999/12/16] bin/15520 mktime() fails under certain conditions o [1999/12/17] kern/15542 de suddenly stops working o [1999/12/17] ports/15543 hosokawa Samba + DHCP = UNKNOWN HOST NAME o [1999/12/17] i386/15548 Intel EtherExpress Pro/10+: Only 1024 byt o [1999/12/18] i386/15553 Linux Emulation don't emulate accept(2) e o [1999/12/18] kern/15554 malloc fails in OMAGIC programs o [1999/12/20] bin/15581 ftp(1) file completion does not work if s o [1999/12/21] misc/15610 3.4-RELEASE installation hang on aic0 SCS o [1999/12/21] kern/15611 EIDE Large Disk Support, Newfs problem, F o [1999/12/22] i386/15631 3.4 won't install with IBM 37.5 gb disks o [1999/12/23] misc/15662 markm [PATCH] perl5 Sys::Hostname fails if no P o [1999/12/26] kern/15707 dillon bad trap in mprotect o [1999/12/29] conf/15766 My desktop display is too large, I can´t o [1999/12/29] ports/15768 jfitz Majordomo resend prog allow exec of any p o [1999/12/31] ports/15811 se graphics/kdegraphics11 fails to compile!! o [2000/01/01] kern/15825 dillon Softupdates gets behind, runs the system o [2000/01/01] bin/15829 peter cvs -C not_a_number core dumps o [2000/01/02] i386/15845 Driver for RealTek 8029 o [2000/01/03] misc/15869 3.4-STABLE-20000103 install fails to disk o [2000/01/03] kern/15870 PicoBSD Kernel link fails a [2000/01/03] bin/15872 sheldonh Y2k bug in at(1) o [2000/01/03] bin/15877 Perl 5.00503 interpreter crashes with a s o [2000/01/04] i386/15879 System hangs while watching the tv and ap o [2000/01/04] gnu/15892 NFS-exported ext2 file system makes Linux o [2000/01/04] i386/15897 Any fix for rpc.lockd on Free BSD 3.2 nfs o [2000/01/05] ports/15922 chuckr print/a2ps cannot find ogonkfied fonts [p o [2000/01/05] bin/15924 ndc restart don't preserve start options o [2000/01/06] conf/15943 An exact fix to change timezone informati o [2000/01/07] i386/15961 System allows no keyboard input after flo o [2000/01/09] kern/16013 FreeBSD 3.3 sends ICMP reply to IP unicas o [2000/01/09] bin/16014 New cvs in -stable prints consistent erro o [2000/01/10] kern/16040 Read-only files under NFS are not seen as o [2000/01/11] misc/16068 FreeBSD 3.3 with IDE > 32GB causes Panic: o [2000/01/12] kern/16090 No buffer space available o [2000/01/12] i386/16094 FreeBSD-3.4 #1 CD doesn't boot on ATAPI C o [2000/01/13] misc/16102 root's home directory is too open o [2000/01/14] kern/16122 Incorrect SysV SHM segment accounting by o [2000/01/15] i386/16132 FreeBSD doesn't install on Notebook w/ Sy o [2000/01/16] kern/16143 3C589D (PCMCIA) card not recognized durin o [2000/01/17] kern/16153 no more parallel port zip drive o [2000/01/17] misc/16154 modem ring kills freebsd o [2000/01/17] bin/16155 cp -p does not preserve modification time o [2000/01/17] misc/16162 marcel shared /usr/src isn't because .depend fi o [2000/01/17] i386/16164 "vga"/"sc" don't work when a video card i o [2000/01/18] kern/16171 mmap(2) of /dev/kmem cause kernel panic o [2000/01/18] bin/16186 [PATCH] Insecure use of strncpy() and str o [2000/01/18] misc/16197 Installation problems on IBM Thinkpad 365 o [2000/01/19] i386/16214 Driver for Intel EtherExpress 16 is unrel o [2000/01/20] misc/16238 e-bones has a Y2K bug o [2000/01/20] kern/16239 dillon NFS mount file system from multi-homed re o [2000/01/20] bin/16244 [PATCH] don't allow password re-use when o [2000/01/21] kern/16257 Kernel panic in sbdrop o [2000/01/21] i386/16269 smp dosen't work with >2 cpus on AMI Goli o [2000/01/21] bin/16271 vi has wrong len type in re_tag_conv() o [2000/01/22] kern/16299 nfs.ko can be unloaded when nfsd is runni o [2000/01/23] kern/16318 Fix for wrong interface when adding new r o [2000/01/23] alpha/16319 alpha No trailing newline in /usr/src/lib/libc/ o [2000/01/24] ports/16341 obrien Fix for minicom detecting modem status li o [2000/01/24] bin/16342 Problems with krb_realmofhost() and/or kr o [2000/01/24] ports/16343 reg bsd.port.mk cannot override make.conf. o [2000/01/25] ports/16344 se wine needs USE_BISON on 4.0 current o [2000/01/25] i386/16349 Intel EtherExpress Pro/10+ card detection o [2000/01/25] bin/16353 rlogin encryption is broken on transmit s f [2000/01/25] bin/16359 kris Can't build apache13-modssl with included o [2000/01/26] conf/16394 Users of some printers find that lpt0 mal o [2000/01/27] ports/16396 reg libtool -export-symbols doesn't restrict o [2000/01/27] ports/16410 torstenb ssh and x forwarding problem o [2000/01/27] kern/16416 Hang on boot with SMP Dell 2400 o [2000/01/27] bin/16418 davidn pw usermod is not work properly o [2000/01/28] misc/16423 Installation problem of 3.4-RELEASE using o [2000/01/30] gnu/16481 Cpp crashes frequently o [2000/01/30] i386/16482 IDE disk fails on secondary IDE master de o [2000/01/31] ports/16489 reg Can't build mozilla on 3.4-RELEASE f [2000/01/31] kern/16490 Attempted listing of just-mounted ext2fs o [2000/01/31] i386/16495 Period soft disk errors o [2000/02/05] ports/16505 jfitz Update p5-Tk port to 800.018 o [2000/02/06] kern/16515 Deadlock by ntpd f [2000/02/07] bin/16557 kris rsa.h missing from /usr/include/openssl o [2000/02/08] bin/16578 host-name field is hexadecimal instead of o [2000/02/08] docs/16585 doc no info documentation for nm (binutils) i o [2000/02/08] conf/16586 net if down after fail during install o [2000/02/08] kern/16587 cg Can't record with newpcm & CS4236 (AW35/P o [2000/02/09] kern/16598 xmcd stopped by racd0c ioctl error while o [2000/02/09] kern/16605 samba 2.0.6 under 3.4-RELEASE can't open o [2000/02/09] ports/16621 marcel emulators/linux_base needs to be installe o [2000/02/10] kern/16644 Bad comparsion expression in bpf_filter.c o [2000/02/10] bin/16645 Inetd(8) internal ident won't work with m o [2000/02/13] ports/16699 stb astro/setiathome obsolete o [2000/02/16] ports/16766 billf htdig RUN_DEPENDS on ${PREFIX}/share/apac o [2000/02/16] i386/16770 Can't build a.out binaries o [2000/02/18] bin/16812 level 0 dump runs forever -- generates a o [2000/02/18] kern/16816 vop_stdpoll() in /sys/kern/vfs_default.c o [2000/02/19] ports/16829 ports kaffe port is broken - dumps core with al o [2000/02/20] conf/16832 amd.map options won't play with Solaris N o [2000/02/20] kern/16849 Close on an ide tape drive hangs o [2000/02/20] misc/16860 suggetion on installation process. o [2000/02/21] conf/16879 tanimura Sound drivers seem to be using shared irq o [2000/02/21] ports/16882 obrien Memory leak with g++ 2.8.1 and STL 2.8.1. o [2000/02/21] bin/16892 "domain" directive in /etc/resolv.conf no o [2000/02/22] ports/16910 rse apache13-modssl fails o [2000/02/22] bin/16920 cdcontrol fails under 4.0-20000214-CURREN o [2000/02/23] kern/16937 ie0 not probed in -current of 2000-02-18 o [2000/02/23] i386/16946 marcel ServerSockets are not working properly in o [2000/02/23] conf/16948 Sysinstall/disklabel: bad partition table o [2000/02/23] ports/16955 markm 'pgp5' built with ports/security/pgp5 doe o [2000/02/25] ports/16983 ache procmail port not prefix clean o [2000/02/27] kern/17033 Samsung SN-124 ATAPI CD-ROM not supported o [2000/02/28] ports/17038 erich gimp-1.1.17 fatal error at startup... o [2000/02/28] bin/17056 rshd does improper home directory check o [2000/03/01] ports/17096 will Can't build kdevelop port o [2000/03/01] misc/17108 SecureRPC not supported in mount_nfs comm o [2000/03/01] misc/17113 Adaptec SlimSCSI 1460D Not Detected Under o [2000/03/01] conf/17117 Dial-up problems when using Kppp o [2000/03/02] kern/17128 Fix for quotas grace time when using chow o [2000/03/02] bin/17134 problem with 3.0-RELEASE cron forgetting o [2000/03/03] kern/17142 4.0-CURRENT hangs in ex_isa_identify() wh o [2000/03/03] kern/17146 panic in devfs_open() while mounting devi o [2000/03/03] ports/17150 dburr textproc/yodl port fixed/improved o [2000/03/03] kern/17153 mjacob Qlogic Ultra3 cards seem to write very sl o [2000/03/04] bin/17188 make(1) option to reproduce original -V b o [2000/03/04] conf/17196 msmith New amr driver (perc2/sc RAID): unable to o [2000/03/05] kern/17208 3.4 Lock-up during file-completion o [2000/03/06] i386/17228 Installation floppies hang up on Compaq A o [2000/03/06] misc/17235 endless loop? harddrive corrupted? o [2000/03/06] ports/17237 hosokawa in samba suite smbclient -M worked incorr a [2000/03/07] bin/17261 sheldonh man page of crontab(5) does not document o [2000/03/08] i386/17266 cannot install 3.2 on L440GX+ o [2000/03/10] misc/17310 NIS host name resolving may loop forever o [2000/03/10] ports/17312 sumikawa Problem With OpenSSH Build On FreeBSD Sta o [2000/03/11] ports/17313 ache wu-ftpd ports install invalid file owners o [2000/03/11] ports/17314 hosokawa in samba: testparm incorrectly generate w o [2000/03/12] bin/17338 netstat shows down counting UDP delivery o [2000/03/12] pending/17343 /dev/da4* gets created improperly o [2000/03/12] ports/17344 ports devel/boehm-gc fails for www/w3m 3.4 STAB o [2000/03/12] i386/17346 APIC cannot be enabled without turning on o [2000/03/13] bin/17360 [PATCH] Cleanup bug in pam_ssh o [2000/03/13] bin/17366 jasone sendfile() has no pthreads wrapper o [2000/03/14] bin/17371 sysinstall's mediaSetHTTP does not work u o [2000/03/14] misc/17373 libXThrStub missing in 4.0-20000307-CURRE o [2000/03/14] i386/17374 Archive QIC02 tape-unit device randomly h o [2000/03/14] kern/17375 yokota kldload/unload cycles with syscons screen o [2000/03/15] kern/17393 kldload syscall allows the same kernel mo o [2000/03/15] ports/17397 ports New port: sysutils/slay o [2000/03/15] ports/17401 ports exmh2 can't find slocal of nmh o [2000/03/15] ports/17402 ports latex2html requires pnmtopng binary o [2000/03/16] kern/17403 cg CS4232 wont play w/newpcm o [2000/03/16] ports/17404 ports Apache's build fails due to the version n o [2000/03/16] conf/17406 nis in /etc/host.conf breaks network prog o [2000/03/16] misc/17409 4.0-RELEASE install fails on Compaq 1850R o [2000/03/16] alpha/17410 alpha Bad tag on Alpha boot floppies o [2000/03/16] kern/17422 4.0-STABLE: top: nlist failed o [2000/03/16] i386/17423 System hangs then reboots o [2000/03/17] gnu/17433 libobjc locks mutex before deallocating i o [2000/03/17] misc/17435 There's no DES crypto distribution in 4.0 o [2000/03/17] bin/17437 jasone pthread_atfork() missing from libc_r o [2000/03/17] kern/17439 sos 4.0-STABLE: mount of non-fixated CD-R -> o [2000/03/17] ports/17444 jseger Builing of ImageMagick Fails on X4.0 a [2000/03/18] bin/17476 sheldonh uudecode -i (no overwrite) flag bogus o [2000/03/18] bin/17482 ftpd(8) forget to close TCP port in passi o [2000/03/19] kern/17492 There is a bug in SIOCGIFCONF ioctl code o [2000/03/19] kern/17494 Two problems with the tun device o [2000/03/19] kern/17499 grog Can't revive VINUM RAID5 o [2000/03/20] ports/17503 obrien lsof port doesn't build on FreeBSD 5.0 o [2000/03/20] kern/17504 ken Another Micropolis Synchronize Cache Prob f [2000/03/20] misc/17517 wpaul 100/10baseT card resets under load o [2000/03/20] docs/17518 imp Please update the UPDATING document f [2000/03/21] i386/17526 PB of frequency heuristic in uipc_socket. o [2000/03/21] conf/17540 NIS host lookups cause NFS mounts to wedg o [2000/03/21] kern/17542 cg random static with GUS PnP o [2000/03/22] ports/17561 green openssh (scp) fails with files larger tha o [2000/03/23] misc/17567 make buildworld bombing at KerbIV o [2000/03/23] ports/17575 jasone unable to build linuxthreads o [2000/03/24] kern/17583 julian NETATALK code can corrupt mbuf free lists o [2000/03/24] misc/17584 groudier fatal SCSI error with a Symbios 53c875 co o [2000/03/24] kern/17592 sos ata READ/WRITE command timeouts o [2000/03/25] ports/17599 ports x11-toolkit/tk82 port ignores local CFLAG o [2000/03/25] kern/17601 semenu newbus patch for if_tx o [2000/03/26] kern/17605 matcd driver worked on 3.x but doesn't wo o [2000/03/26] ports/17612 taoka x11-fonts/intlfonts crashes X (Big5 encod o [2000/03/26] kern/17613 impossible to build FS KLD without kernel o [2000/03/26] kern/17614 marcel impossible to CURSIG when compiling with o [2000/03/26] misc/17615 ¼±ÐèÁ˽âFreeBSSDÖеÄrc.conf,rc.firewallÎÄ o [2000/03/27] kern/17621 ache Locale is not used properly o [2000/03/27] i386/17626 green sshd cores when I scp to it o [2000/03/28] kern/17634 cg Non-deterministic PnP sound device config o [2000/03/28] kern/17636 FreeBSD 4 uses network card driver dc whe s [2000/03/28] alpha/17637 billf misconfigured syscons bell causes panic o o [2000/03/28] ports/17650 dirk apache+php-1.3.12+3.0.15 doesn't build: p o [2000/03/28] ports/17652 stb netatalk port modification for des/md5 ch o [2000/03/28] ports/17654 ports gnome broken o [2000/03/29] i386/17662 gibbs cam_xpt.c incorrectly disables tagged que o [2000/03/29] kern/17680 Multiple crashes due to load in 4.0/5.0 e o [2000/03/29] bin/17681 XDR does not handle 64bit data types corr o [2000/03/30] kern/17695 cg Vibra16X sound card doesn't record audio o [2000/03/30] ports/17696 jseger tk83 port ignores the local CFLAGS settin o [2000/03/30] kern/17697 Boot floppy+local ftp upgrade from 3.4/in o [2000/03/30] kern/17701 Parallel Port Zip Drive (vpo) broken in 4 o [2000/03/30] ports/17705 reg www/mozilla broken o [2000/03/31] i386/17713 gibbs MAKEDEV and /stand/sysinstall goofups wit o [2000/03/31] kern/17714 possible priority inversion with use of i o [2000/03/31] kern/17715 io memory requests from pnp devices lands o [2000/04/01] ports/17736 ports Postgres port should be updated to 7.0bet o [2000/04/01] kern/17738 reboot after panic: softdep_lock: locking o [2000/04/01] kern/17746 sos afd0 is accessed for no reason a couple o o [2000/04/02] i386/17752 dcs Cannot install BTX boot manager o [2000/04/02] i386/17755 FTP install of 4.0 allocates too few inod o [2000/04/02] kern/17757 jasone select returns 0 if pthread_kill'd w/ sig o [2000/04/02] i386/17761 disk label editor in 4.0 deleted 3.4 part o [2000/04/03] bin/17765 sh in free(): warning: junk pointer, too 827 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- a [1995/01/11] i386/105 bde Distributed libm (msun) has non-standard s [1995/05/13] bin/401 Add REMOTE_* variables s [1995/06/15] bin/517 Bad group change with 'install' s [1995/08/07] bin/658 ifconfig alias has to be separately given s [1995/09/26] kern/742 syslog errors accessing Mac hard disks [p s [1995/10/03] kern/765 umount -f can`t umount a NFS filesystem i s [1995/11/20] kern/831 one minor complaint about the kernel visu o [1995/11/30] bin/854 dg swapinfo shows incorrect information for a [1996/01/30] bin/981 fenner clnt_broadcast() is not aware of aliases s [1996/03/20] kern/1090 iostat displays incorrect sps count s [1996/03/20] bin/1093 route's diagnostic is weird s [1996/06/11] bin/1312 automounter hangs on boot s [1996/06/13] bin/1320 dump limits blocksize to 32K a [1996/07/07] bin/1375 eivind Extraneous warning from mv(1) [PATCH] o [1996/07/24] misc/1428 hoek ncurses doesn't always display ALTCHARSET s [1996/09/08] bin/1589 [PATCH] ftp fails to flush output o [1996/09/14] gnu/1611 phk groff should use "system-wide" papersize s [1996/10/13] misc/1791 tegge syslimits.h does not allow overriding def o [1996/10/20] bin/1849 gdb sets library breakpoints on the wrong s [1996/10/24] bin/1881 file(1) misidentifies Sun3/m68k executabl s [1996/11/04] gnu/1961 [PATCH] uucp logging files are in /var/sp s [1996/11/06] bin/1970 csh limtail() bug s [1996/11/16] bin/2036 cpio size wraparound s [1996/11/19] bin/2061 DEBUG_FLAGS in bsd.lib.mk is broken s [1996/11/19] bin/2065 in tzsetup/sysinstall, allow user to type s [1996/11/22] bin/2090 clients may bind to FreeBSD ypserv refusi f [1996/11/28] bin/2119 [PATCH] mount lies to child about argv0, s [1996/12/02] bin/2137 vm statistics are bad s [1996/12/14] bin/2216 [PATCH] Ada specs not being compiled into o [1996/12/17] i386/2239 jmg some interrupts take too long (i.e. BT946 a [1996/12/21] bin/2265 guido su(1) does not call skeyaccess() o [1996/12/24] kern/2273 dufault support for POSIX.4 / POSIX.1a RT-schedul s [1996/12/27] kern/2298 Support for DSR/DCD swapping on serial po a [1996/12/27] misc/2302 brandon new crypt() including SHS and an extendab o [1997/01/10] bin/2442 davidn setusershell()/endusershell() missing o [1997/01/26] i386/2598 mdodd ep0 in EISA mode hangs if ep0-device (ISA o [1997/01/28] bin/2603 dufault Added POSIX.4/POSIX.1b constants in unist o [1997/01/28] bin/2604 dufault Added POSIX.4/POSIX.1b shm_open()/shm_unl o [1997/02/02] gnu/2637 tar dumped core with -g option. a [1997/02/02] bin/2641 wpaul login_access.c doesn't work with NIS by d o [1997/02/05] bin/2668 modification suggested for rarpd o [1997/02/14] bin/2737 yppasswd fails to change password on a su o [1997/02/15] misc/2745 fenner PR querry web form doesn't sort correctly o [1997/03/03] kern/2857 DE500 board exhibits capture effect o [1997/03/03] kern/2865 peter NFS client hangs on umount, ls, df when N o [1997/03/06] bin/2898 fenner arp -a -n buglet o [1997/03/10] bin/2934 sh(1) has problems with $ENV o [1997/03/10] bin/2938 hoek Add -b, -l, and -f options to du(1) o [1997/03/31] gnu/3157 obrien Patches to gas and gdb to support MMX ext o [1997/04/07] bin/3221 rpc.rusersd : can't communicate with SunO o [1997/04/07] misc/3225 [PATCH] uucpd.c should normalize host nam o [1997/04/08] misc/3237 SCRIPTS addition to bsd.prog.mk o [1997/04/09] bin/3242 incorrect prototype for initgroups o [1997/04/14] kern/3281 errors when "rm -r"-ing in a mounted ext2 o [1997/04/14] kern/3282 ext2fs causes fs-unmount at shutdown/rebo o [1997/04/14] bin/3284 [PATCH] symorder(1): -t option doesn´t wo o [1997/04/14] bin/3286 [PATCH] missing error checking in mount_m o [1997/04/14] kern/3287 [PATCH] missing symbols in /usr/src/sys/i o [1997/04/15] kern/3299 /dev/console hangs o [1997/04/17] bin/3314 [PATCH] /etc/daily did not run on April 6 o [1997/04/27] bin/3399 mv of symbolic link can move directory in o [1997/04/29] bin/3416 ibcs emulation problems o [1997/05/05] i386/3504 [PATCH] New features (and manpage) for ne a [1997/05/08] gnu/3552 the -L option of tar does not work proper o [1997/05/12] kern/3584 luigi cleanup TCP_REASS macro in tcp_input.c o [1997/05/16] bin/3608 Telnet in linemode will break apart long o [1997/05/17] kern/3611 Internal CPU cache on CyrixiInstead DX2 d s [1997/05/22] kern/3667 [PATCH] make vn LKM'able. o [1997/06/02] bin/3762 dufault Bogus return values from rtprio(1) o [1997/06/07] bin/3805 single process tftpd o [1997/06/09] bin/3826 KerberosIV sometimes hangs rcp o [1997/06/10] bin/3837 dufault new feature for rtprio o [1997/06/12] kern/3853 luigi netboot/ns8390.c breaks NS datasheet o [1997/06/14] bin/3866 rcs2log fails with eastern timezones o [1997/06/15] kern/3879 peter Can't export mounted ext2fs via NFS o [1997/06/18] kern/3901 Multicast for Intel 10/100 Ethernet Card o [1997/06/19] misc/3912 ctags(1) cannot trace some macro correctl o [1997/06/24] kern/3944 if_le doesnt receive ether multicast pack o [1997/06/25] kern/3948 nonworking t/tcp server side a [1997/06/25] kern/3953 kern-config: options PANIC_REBOOT_WAIT_TI o [1997/06/26] i386/3962 print disk internal cache size during pro o [1997/06/27] kern/3968 Hardware probes die on Peak SBCs. o [1997/07/07] kern/4051 pppd connect 'chat ...' broken s [1997/07/07] kern/4052 VJ compression drops packets with IP+TCP o [1997/07/18] bin/4116 davidn Kerberized login as .root fails to o [1997/07/23] kern/4153 New tcp initial send sequence number code s [1997/07/24] bin/4157 [PATCH] netstat atalk output should print f [1997/07/26] bin/4172 suggest reconnection option added to fetc s [1997/07/28] kern/4184 [PATCH] minor nits in sys/netatalk s [1997/07/31] bin/4204 [PATCH] ac printed wrong report about tty o [1997/08/04] conf/4229 Ethernet interface unreachable on bootup o [1997/08/06] bin/4238 chpass only occasionally works in conjunc o [1997/08/07] kern/4243 file locking doesn't work for pipe o [1997/08/07] bin/4247 modification to /etc/security for FreeBSD o [1997/08/08] misc/4249 wpaul ypchsh doesn't care about changing a user o [1997/08/12] misc/4285 SDL RISCom/N2 (ISA) o [1997/08/13] kern/4297 dufault SIGEV_NONE and SIGEV_SIGNAL go in signal. o [1997/08/13] i386/4300 msmith The initial timeout on open("/dev/lpt0".. o [1997/08/14] ports/4304 asami Recommendation re. Ports Collection o [1997/08/22] ports/4356 erich sudo shouldn't block signals in tgetpass( o [1997/08/29] kern/4413 No way to unmount a floppy that goes bad o [1997/08/29] bin/4419 man can display the same man page twice o [1997/08/29] bin/4420 find -exedir doesn't chdir for first entr o [1997/09/03] bin/4459 bde No prototype for moncontrol(3) and monsta o [1997/09/04] misc/4468 dlopen is not available from static execu o [1997/09/13] kern/4528 processes hang if the mount_portal proces o [1997/09/14] bin/4545 f77 will only call `cc', no com-line opti s [1997/09/15] i386/4547 luigi asc.c and pcaudio.c should use selrecord o [1997/09/16] misc/4556 make can't build executable from single F o [1997/09/21] kern/4597 Patch to pass NPX status word in signal c o [1997/09/21] kern/4601 Contrib: userconfig patch to edit SCSI co o [1997/09/25] bin/4629 calendar doesn't print all dates sometime o [1997/09/28] misc/4646 Can't fixit with an NFS-mounted CD. o [1997/09/29] conf/4654 Need to do post-ifconfig commands o [1997/10/04] bin/4688 peter sys/utsname.h SYS_NMLN 32 too small o [1997/10/05] bin/4696 ping hangs on certain unresolvable hosts o [1997/10/05] bin/4697 make doesn't handle dependencies with for o [1997/10/15] gnu/4771 diff to correct misleading total bytes in o [1997/10/22] bin/4828 ypxfr makes false assumption about RPC ca o [1997/10/24] kern/4845 Boot complains about disk slices in FAT p o [1997/10/24] kern/4847 pccard stuff fails after running Win95 wi o [1997/11/01] bin/4915 peter NFS mounts to linux machine can hang syst o [1997/11/02] bin/4923 vi leaves the screen in standout mode o [1997/11/07] bin/4969 cdcontrol plays incorrect audio tracks in o [1997/11/08] bin/4975 quotaon while server very busy causes loc o [1997/11/10] kern/4997 DDB_UNATTENDED doesn't always work o [1997/11/11] kern/5009 ibcs2 emulation o [1997/11/11] kern/5011 rndcontrol -s 8 causes kernel panic o [1997/11/13] bin/5031 lpr does not remove original file if -s i o [1997/11/13] ports/5034 ache (tcsh) blocked write on named pipe sticks o [1997/11/14] kern/5040 Support for "SCSI-0" devices o [1997/11/14] kern/5048 Calling shutdown(fd,1) multiple times wil o [1997/11/15] kern/5059 peter mountd, nfsd, etc. fail when lp0 defined o [1997/11/15] kern/5060 Kernel doesn't compile with mss o [1997/11/20] kern/5108 pmap_release panics with 'freeing held pa o [1997/11/20] kern/5110 kernel crash & core in pmap_testbit durin o [1997/11/23] bin/5134 cdcontrol will eject a mounted CDROM s [1997/11/28] bin/5173 [PATCH] restore ought to deal with root s s [1997/11/30] i386/5182 bde [PATCH] A patch support high speed serial o [1997/12/09] bin/5263 sh bug (with example) s [1997/12/11] kern/5275 [PATCH] Added volume (barcode) support to o [1997/12/14] conf/5292 master.passwd -- /nonexistent vs. /sbin/n s [1997/12/14] bin/5296 slattach fails creating pidfile with ioct o [1997/12/22] kern/5362 peter mount incorrectly reports / as an NFS exp f [1997/12/30] i386/5398 dillon silo overflows running o [1998/01/02] bin/5410 phantom pkg_info options s [1998/01/03] bin/5419 [PATCH] timed rejects valid networks with o [1998/01/08] kern/5429 Ethernet collision during file transfers s [1998/01/08] bin/5444 [PATCH] ypserv uses wrong dns lookup orde o [1998/01/11] bin/5483 Login(1) clears utmp entry o [1998/01/15] kern/5502 nfsd process usage doesn't get accounted o [1998/01/18] kern/5517 Recursive NULLFS mount causes ufs_ihashge s [1998/01/20] misc/5531 [SUBMISSION] new library function abs2rel s [1998/01/20] kern/5532 [PATCH] Dropped packet counts are inaccur o [1998/01/21] bin/5537 vi dumps core with dodgy exrc file o [1998/01/24] i386/5559 PC-Card joystick ports were not supported o [1998/01/26] kern/5577 bde Unnecessary disk I/O and noatime ffs fixe a [1998/01/28] bin/5591 Trouble with LD_PRELOAD environment varia o [1998/01/31] bin/5609 lpd cannot send long files to HP's JetDir a [1998/02/02] ports/5626 billf 'ldap' port eats all available CPU time o [1998/02/02] kern/5627 Tertiary/Quaternary IDE Ctlrs: A few kern o [1998/02/06] bin/5666 ifconfig fails to add alias o [1998/02/06] kern/5672 Crash from scsi aborted command 'Overlapp o [1998/02/09] kern/5689 sysctl vm.vmmeter - bogus and unsupported o [1998/02/10] bin/5711 bin/cat code cleanup o [1998/02/10] bin/5712 /bin/chio code cleaup and option added o [1998/02/10] bin/5717 pw -D -g "" returns error o [1998/02/10] bin/5718 pkg_delete refuses to run as non-root o [1998/02/14] bin/5745 [PATCH] Add /usr/local/share/mk to defaul o [1998/02/14] bin/5746 bootparamd will not netboot sun 3 compute o [1998/02/14] bin/5747 ld.so error message o [1998/02/15] bin/5758 sys/resources.h doesn't include sys/time. o [1998/02/17] kern/5768 Shutdown aborts syncing, when sync isn't o [1998/02/18] i386/5784 ibcs2 emulation not handling ioctl(..FION o [1998/02/19] kern/5789 wcd0 requires ATAPI_STATIC o [1998/02/19] kern/5795 Panic: "bremfree: removing a buffer when o [1998/02/20] misc/5803 "tab" function from "ee" not compatible w o [1998/02/25] gnu/5841 installmost or install (world) of tmac fa o [1998/02/25] bin/5847 Makeworld fails if CXXFLAGS is set. s [1998/02/25] misc/5855 /etc/services is out of date with IANA o [1998/02/26] bin/5857 non-functional lpr/lpr o [1998/02/26] kern/5863 Kernel support for sorted SHUTDOWN & SHUT o [1998/03/01] bin/5880 df -t does not support devfs o [1998/03/02] bin/5901 new version of `fmt' o [1998/03/03] bin/5912 kinit exits if no user name specified o [1998/03/06] kern/5931 dma errors in syslog with GUS-max o [1998/03/06] i386/5932 perfmon kernel code should check for non- o [1998/03/08] bin/5944 cvs doesn't work correct. o [1998/03/10] ports/5972 andreas x11/fvwm95 requiring gsm, and rplay is a o [1998/03/11] gnu/5982 no error exit code from tar on child fail o [1998/03/13] bin/6000 kadmin ank uses bad default expiration of o [1998/03/15] bin/6015 indent(1) breaks source with backslash ne o [1998/03/16] kern/6032 poor TCP performance using FDDI over long o [1998/03/22] conf/6096 /sys/i386/conf/LINT: edit(???) sound_conf o [1998/03/22] gnu/6107 gdb should support PRINTF_HAS_LONG_LONG o [1998/03/28] bin/6156 Patches to make dump understand ENOSPC o [1998/03/28] bin/6161 2.2.6 kerberos servers are awfully visibl o [1998/03/31] bin/6183 quota hangups o [1998/03/31] kern/6184 No error if resulting file pos in lseek i o [1998/04/01] bin/6187 peter mounting nfs directories with -b can caus o [1998/04/03] bin/6202 No way to detect removable media. o [1998/04/03] bin/6206 Enhancements to the shutdown program o [1998/04/04] kern/6213 peter NFS-mounted swap (via vnconfig) easily cr o [1998/04/04] bin/6214 ping sometimes cannot be killed with a Co o [1998/04/05] conf/6220 Too few ttyv devices in the -RELEASE syst s [1998/04/06] bin/6223 PST/DST bug in /bin/date o [1998/04/06] bin/6234 ypserv -d is broken o [1998/04/14] kern/6296 IP_HDRINCL sockets force header fields to a [1998/04/14] kern/6299 vmstat -i does not show PnP device interr s [1998/04/15] bin/6314 [PATCH] /usr/sbin/ac modification o [1998/04/16] kern/6318 pppd does not update wtmp on hangup o [1998/04/16] misc/6320 Sometimes nohup isn't good enough. o [1998/04/17] bin/6332 bde /usr/include/time.h doesn't compile with o [1998/04/17] gnu/6338 Gnu tar not working properly with the -G o [1998/04/18] conf/6346 Kernel version strings need to relate to o [1998/04/20] bin/6359 routed does sent router discovry solicita s [1998/04/20] bin/6371 [PATCH?] fetch(1) uses HTTP_PROXY for ftp a [1998/04/27] kern/6432 IFF_NOARP does not affect ethernet interf o [1998/04/30] kern/6464 tcpdump doesn't recognize tun0 when it's o [1998/05/03] kern/6495 Need pci_unmap_mem and pci_unmap_port rou s [1998/05/04] bin/6509 [ALMOST PATCH] Allow dd to seek/skip to o s [1998/05/05] bin/6521 [MAYBE PATCH] "rmdir -p x/y/z/" fails o [1998/05/07] kern/6544 luigi Only get one channel through sound card o [1998/05/07] ports/6546 ache 3line ansi prompt in tcsh: cursor disappe o [1998/05/11] i386/6595 Old IP address persistent after change o [1998/05/12] misc/6612 bsd.man.mk can't handle man pages with ": o [1998/05/13] kern/6623 non-root user can crash system if disconn o [1998/05/13] conf/6624 davidn One class with nologin=/etc/nologin: reje o [1998/05/15] kern/6651 peter Possible NFS deadlock clue s [1998/05/16] bin/6658 [PATCH] -stable getcwd(3) performs unnece s [1998/05/17] kern/6668 [PATCH] new driver: Virtual Ethernet driv a [1998/05/26] misc/6759 phk buggy code in libdisk.a's disk.c o [1998/05/26] kern/6760 can't compile kernel w/o networking o [1998/05/26] kern/6769 peter panic: nfs rcvunlock s [1998/05/29] kern/6781 [PATCH] exabyte changer doesn't grok LUNs s [1998/05/29] bin/6785 place for all the default dump flags o [1998/06/01] ports/6815 torstenb ssh lookup ignores second IP address o [1998/06/01] kern/6820 cd9660_mount NULL pointer deref for no CD o [1998/06/06] kern/6874 accounting prevents transition to multi u o [1998/06/13] misc/6936 phk sysinstall: install from MS-DOS MO divece o [1998/06/18] kern/6981 CD unmount w/o CD in drive can cause pani s [1998/06/19] bin/6995 [patch] Minor flaw in fdformat s [1998/06/19] bin/6997 [patch] vnconfig "open" error message con s [1998/06/21] kern/7014 [PATCH][STABLE] Add support for SiS 5591 o [1998/06/22] bin/7021 asami Size estimation patches to pkg_* o [1998/06/22] bin/7022 asami changes to bsd.port.mk to accompany PR bi o [1998/06/22] bin/7023 asami bsd.port.(%|subdir.).mk patches for size f [1998/06/23] i386/7031 Our RocketPort port does not support DEVF s [1998/06/24] kern/7044 [PATCH] WaveLAN (2.4G, ISA, full-length b o [1998/06/25] docs/7065 wosch FreeBSD webpages -> applications, port br f [1998/06/25] bin/7068 markm /usr/bin/perl: library path addition s [1998/06/28] kern/7095 [stable] Gravis MAX in 2.2.6 suffers from s [1998/06/28] i386/7100 integrate pcvt configuration into the /et s [1998/07/01] bin/7136 kerberized telnetd doesn't use gettytab % s [1998/07/02] kern/7146 The PCCARD doesnt recognize cards in top s [1998/07/08] kern/7210 [PATCH] od(4) bug fixes and enhancements, s [1998/07/10] misc/7232 Suggestion for FreeBSD installation dialo o [1998/07/10] kern/7234 yokota keyboard problems during login immediatel o [1998/07/12] bin/7265 A warning flag is added to ln(1). o [1998/07/13] ports/7268 asami MASTER_SITE_OVERRIDE works more better o [1998/07/14] kern/7282 some old and rarely used drivers have app o [1998/07/14] ports/7283 ache tcsh / LC_CTYPE - obscure problem. o [1998/07/15] bin/7287 Incorrect domain name for MAP_UPDATE in m o [1998/07/16] bin/7298 Improvements to ln(1). a [1998/07/19] bin/7324 wosch Suggestions for minor modifications to ad f [1998/07/23] kern/7377 we have a new digiboard driver supporting a [1998/07/31] docs/7456 asmodai dialog(3) man page outdated s [1998/08/09] kern/7546 [PATCH] [STABLE ?]shutdown -p - system po f [1998/08/12] kern/7589 Tulip Driver parses SROM contents wrong f [1998/08/13] conf/7606 [PATCH] NIS Makefile.dist: NOPUSH replace o [1998/08/14] kern/7619 odd nfs server not responding messages ap o [1998/08/16] ports/7628 dburr new port: sajber-jukebox o [1998/08/16] bin/7632 Race condition in /stand/sysinstall f [1998/08/16] i386/7633 panic: page fault on install with boot.fl s [1998/08/18] bin/7669 libalias does not IRC DCC packets under c o [1998/08/19] gnu/7687 description of default baud rate for cu c o [1998/08/20] kern/7693 Misleading warning in cblock_alloc_cblock o [1998/08/22] kern/7722 Changes to acct format o [1998/08/23] bin/7728 ftpd processes hang o [1998/08/27] bin/7753 arp command fails silently on invalid pro o [1998/08/28] misc/7771 Debugging putenv/getenv o [1998/08/29] ports/7774 torstenb sshd doesn't refuse to login people with o [1998/08/29] bin/7779 [PATCH] modload should detect stripped ke o [1998/08/30] bin/7786 quota.h has superfluous semicolon in macr o [1998/09/02] i386/7816 dfr [Patch] NE2000 PnP card IDs to sys/i386/i o [1998/09/03] bin/7826 ls(1) knows too much about format of strf o [1998/09/03] bin/7828 Add a command line option to cp to make i o [1998/09/05] kern/7837 patches to add a p_auth extension pointer o [1998/09/07] kern/7856 Patches to add lkm hooks to cmsg_data anc o [1998/09/08] bin/7860 Extra option to pr(1). s [1998/09/08] bin/7868 [almost patch]Morse Code Fixups o [1998/09/08] bin/7869 Improved error messages from apm o [1998/09/09] docs/7873 doc poor initial configuration and documentat o [1998/09/11] bin/7895 multiple identical NFS mounts accepted o [1998/09/11] kern/7903 unmatched '{}' blocks. o [1998/09/16] misc/7946 ccdconfig gives confusing error when give o [1998/09/17] bin/7962 /usr/bin/ee prompts "save changes" when f o [1998/09/18] bin/7973 lpd: Bad control file owner in case of re o [1998/09/19] kern/7990 patch - teach kernel about RB_POWEROFF fl o [1998/09/20] bin/7998 pkg_add seems to have unneeded umask o [1998/09/20] misc/8005 yokota Keyboard freezes going from KDE to text m o [1998/09/21] kern/8015 [patch] Some sysctl descriptions for the o [1998/09/24] ports/8042 torstenb If pidentd dies, you must kill all telnet o [1998/09/26] bin/8060 install ignores the +X mode flag o [1998/09/27] conf/8061 profiling utilities seperate from profili o [1998/09/27] ports/8063 asami [PATCH] Add multiple CDROM support to bsd o [1998/09/29] bin/8084 NIT: non-working code in rshd o [1998/10/02] i386/8131 [patch] Support for PCI NE2000 compatible o [1998/10/03] misc/8133 markm [patch] bug in telnetd (Kerberos IV) o [1998/10/03] bin/8134 End of game is not recognised immediately o [1998/10/03] misc/8139 [patch] missing /usr/src/share/examples/d o [1998/10/04] bin/8142 freebsd 2.2.7 implementation of key(1) [s a [1998/10/06] bin/8163 [patch] It is impossible to assign quotas o [1998/10/08] bin/8211 Script to search kernel for an address o [1998/10/12] bin/8295 order of options in printcap causes some o [1998/10/13] conf/8303 3.0-981009-BETA can't make swap device on o [1998/10/13] kern/8311 kernel panic on de0 o [1998/10/16] misc/8346 Strftime can't generate ISO-8601 timezone o [1998/10/16] bin/8347 /usr/lib/compat build issues in 3.0 RELEA o [1998/10/16] kern/8349 [PATCH] Changer definition for SureStore o [1998/10/19] kern/8376 CLOCK_VIRTUAL not implemented o [1998/10/19] misc/8378 Is termcap not maintained enough ? o [1998/10/22] kern/8420 __getcwd() from an (forcibly) unmounted f o [1998/10/24] misc/8434 boot.flp /bin/init crashes during probe w o [1998/10/24] i386/8436 boot.flp sysinstall crashes when probing o [1998/10/24] bin/8438 ex/vi: Error: tcsetattr: Interrupted syst o [1998/10/27] i386/8474 repquota does not pick up NIS information o [1998/10/28] bin/8479 Final \'s in /etc/exports did not work in o [1998/10/30] kern/8498 Race condition between unp_gc() and accep o [1998/10/30] bin/8501 snake has a segmentation fault depending o [1998/10/30] conf/8517 rc.conf/rc fails to set ldconfig -aout o [1998/10/31] misc/8519 jkh Murphy's Laws o [1998/11/01] conf/8531 jkh sysinstall on 3.0-RELEASE (and 3.0-curren o [1998/11/03] bin/8553 /usr/libexec/mail.local doesn't handle "> o [1998/11/04] i386/8571 Bug in config utility in FreeBSD 2.2.6-RE o [1998/11/07] kern/8589 incorrect spelling for "dependency" and " o [1998/11/07] i386/8598 MAKEDEV fails if not run from current dir o [1998/11/08] kern/8604 ps u gets confused about process start ti o [1998/11/08] kern/8605 ipsec for ipv4, new version o [1998/11/09] bin/8631 pci interrupts are shown on EISA only mac o [1998/11/09] kern/8633 TCP packet via SLIP/CSLIP containing this s [1998/11/12] kern/8661 stb sys/netatalk/at_control.c needs to correc o [1998/11/12] bin/8666 X blocks serial port with getty process o o [1998/11/13] gnu/8679 tar man page should be updated o [1998/11/14] bin/8681 other macro name that has same number is o [1998/11/18] ports/8754 se KDE: KDM Display Manager has login proble o [1998/11/18] bin/8756 'pw' command additional feature request o [1998/11/19] misc/8764 pwd_mkdb is slow on many users o [1998/11/19] docs/8765 dwhite some suggested text for describing passwo o [1998/11/22] bin/8809 fdisk calls QNX-4 partitions unknown o [1998/11/22] bin/8811 Problem to use 'NLSMODE' variable in Make f [1998/11/25] ports/8864 ports useradd - system V compatible implementat o [1998/11/27] i386/8867 /stand/sysinstall core dumps (signal 11) o [1998/11/29] kern/8895 DEC 21152 PCI-PCI bridge chip isn't probe o [1998/11/29] kern/8898 PCI devices without an associated driver o [1998/11/30] bin/8913 negative time values for csh 'time' built o [1998/12/01] i386/8923 ctm 2.2.5 -> 2.2.7 error hu_HU.ISO_8859- o [1998/12/01] kern/8925 options kern file needs AWE_DEFAULT_MEM_S o [1998/12/03] i386/8953 BINFORMAT not defined in 2.2-STABLE o [1998/12/03] bin/8955 request CVS allow advisory locks on repos o [1998/12/06] misc/8986 install-info breaks installworld over nfs o [1998/12/06] bin/8989 (patch) chflags support for mtree(8) o [1998/12/08] bin/9012 route add -host hostIP -interface localIP o [1998/12/10] conf/9051 2.2.8R boot floppy won't write to fixit f o [1998/12/11] bin/9055 When used without arguments, ``set'' and a [1998/12/12] bin/9064 n_hibma [PATCH] propose adding `direct' option in o [1998/12/15] kern/9092 DELF raid volumes cause panics under CAM o [1998/12/16] i386/9102 Voxware does not provide /dev/mixer for E o [1998/12/16] ports/9107 asami Addition to bsd.port.mk for searching mul o [1998/12/17] bin/9118 default install of aout compat libs is in o [1998/12/18] bin/9123 pax can't read tar archives that contain o [1998/12/20] kern/9144 luigi acd driver inconsistency (byte order in C o [1998/12/21] conf/9160 /etc/services file corruption o [1998/12/22] bin/9176 dillon placemark to split mount_ufs out of mount o [1998/12/23] kern/9183 newton chroot(2) can be broken by the superuser. o [1998/12/24] bin/9188 telnet gets stuck in ttydrain() o [1998/12/27] bin/9206 sysinstall installation should create /st f [1998/12/28] misc/9220 nvi: catalog: mistake in Russian error me o [1998/12/28] bin/9226 telnetd can log wrong IP address to utmp o [1998/12/29] bin/9233 gmp's mpq_add and mpq_sub are buggy o [1998/12/30] conf/9245 obsolete locale setting in /usr/src/etc/{ o [1998/12/30] bin/9250 [PATCH] allow fetch to do ftp directory l o [1998/12/31] i386/9257 fpathconf() missing from libc_r o [1998/12/31] bin/9259 allow no prompt for yes in fdformat, but o [1999/01/03] ports/9286 andreas Patch for games/nethack-qt to fix compila o [1999/01/03] ports/9289 kris New Port - ASPostit (Dockable version of o [1999/01/04] kern/9316 Intel PILA8461 NIC panics 2.2.7 during pr o [1999/01/04] bin/9318 vgrind(1): no JAVA support o [1999/01/04] i386/9319 D-Link DE-528CT poor performance o [1999/01/05] bin/9333 timestamp dump's progress o [1999/01/05] i386/9341 tty-level buffer overflows o [1999/01/06] docs/9352 asmodai wrong macro names in groff_[ms|mm|mmse].7 f [1999/01/07] bin/9374 roberto Improved functionality for find(1) o [1999/01/08] conf/9388 magic(5) correction for wordperfect o [1999/01/08] kern/9392 Alternate system clock OR kernel stats cl f [1999/01/10] ports/9425 se KDE starting up from xdm has problem.... o [1999/01/13] bin/9470 aout-to-elf-build broken with kerberosIV- o [1999/01/13] kern/9474 "comcontrol rescan 0:8:0" hangs, causes o o [1999/01/14] bin/9494 new option to prevent mail from sending m o [1999/01/16] bin/9529 ftp filname completion can't handle space o [1999/01/17] bin/9536 make world installs aout compat libs in t o [1999/01/19] bin/9569 top(1) ignores tty EOF condition. o [1999/01/19] kern/9570 ed(4) irq config enhancement o [1999/01/19] bin/9573 ksrvtgt not working o [1999/01/20] kern/9590 Clean up for -Wall warnings o [1999/01/21] kern/9611 MFS calculates the size incorrectly when o [1999/01/22] kern/9619 Restarting mountd kills existing mounts o [1999/01/25] kern/9679 fix for uninterruptible open in portal fi o [1999/01/25] kern/9689 panic in sbdrop(kern/uipc_socket2.c) o [1999/01/26] bin/9711 Fails: cd /usr/bin; gzip file ; mv file. o [1999/01/27] i386/9721 Patch for FreeBSD netboot (booting via DO o [1999/01/28] kern/9748 error in queue handling of at_shutdown() o [1999/01/28] bin/9770 An openpty(3) auxiliary program o [1999/01/29] i386/9777 luigi Generic AD1816 sound suport in Luigi's pc o [1999/01/30] kern/9791 enhancement for netinet/ip_icmp.c to cont o [1999/01/30] ports/9792 msmith pib coredumps in port maker mode o [1999/01/30] bin/9809 finger output format wrong o [1999/01/31] ports/9840 asami patch allows ports to fetch their sources o [1999/01/31] kern/9848 ARP proxyall extra sanity check o [1999/02/01] bin/9868 Patch to add "date -a" o [1999/02/01] kern/9869 When using macros out of function, they s o [1999/02/01] conf/9874 idle-timeout facilities in /etc/login.con o [1999/02/03] bin/9902 error in german (and some other) locale s o [1999/02/06] bin/9931 config gives misleading error when duplic o [1999/02/08] bin/9972 groff always built for US (letter) sized o [1999/02/09] bin/9990 Enhancement to filename completeion in cs o [1999/02/09] i386/9991 new driver for National Instruments GPIB f [1999/02/10] ports/10007 ade New port: lang/mercury (the mercury compi o [1999/02/11] ports/10023 kris New port - net/gtkcookie o [1999/02/11] bin/10030 markm Kerberized telnet fails to encrypt when a o [1999/02/12] i386/10052 Matrox Millennium II AGP device/model id o [1999/02/15] gnu/10112 chris /usr/src/gnu/usr.bin/patch sorely out of o [1999/02/16] kern/10116 acd driver patch to support PD/CD drive. f [1999/02/16] ports/10124 ports New port: math/stat o [1999/02/18] kern/10149 New PCI device o [1999/02/19] bin/10158 Reference to ncheck in quot(8) o [1999/02/19] kern/10159 Unable to unload vinum module o [1999/02/19] kern/10160 kldload of umap module panics the system o [1999/02/19] ports/10162 se Fix kdmrc to add qmail usernames to NoUse o [1999/02/19] misc/10167 Upon exiting X11R6, monitor goes blank. o [1999/02/20] bin/10169 find -perm doesn't allow a bitwise o [1999/02/20] kern/10175 Bridging support incomplete for some netc o [1999/02/21] ports/10178 torstenb USE_SOCKS=YES option broken for security/ o [1999/02/22] ports/10196 torstenb Better startup scripts for ssh a [1999/02/23] misc/10231 inet_addr() doesn't check for illegal val o [1999/02/25] docs/10240 doc We need a script which check if our web m o [1999/02/25] kern/10255 Some more SiS chipset PCI IDs for chipset o [1999/02/26] bin/10274 make does not understand "lib(obj)" synta o [1999/02/26] bin/10283 Race condition in rc.network o [1999/02/28] bin/10300 dmesg exits on signal 10 o [1999/03/01] misc/10325 Implementation of itoa() for libc o [1999/03/01] bin/10342 putenv(3) unnecessarily calls strdup/free o [1999/03/01] docs/10349 phantom For long .Dt fields, rendering is broken- o [1999/03/02] misc/10351 /usr/share/examples/worm is out of date o [1999/03/02] bin/10358 ftp(1) has problems with long pathnames f [1999/03/05] ports/10396 asami SPIN is in the wrong category o [1999/03/06] kern/10440 Discard device does not set ifq_maxlen o [1999/03/06] bin/10444 avoiding lost mail when mail filesystem i o [1999/03/06] ports/10454 obrien Update: emulators/spim a [1999/03/06] kern/10455 pcaudio breakage f [1999/03/07] i386/10465 Must disable ex0 to install. o [1999/03/10] bin/10522 make world died due -Werror o [1999/03/10] bin/10524 3.1-19990309-STABLE install problem o [1999/03/10] bin/10538 sbin/nos-tun gives wrong usage message o [1999/03/11] bin/10548 More useful default ifconfig behaviour sa o [1999/03/12] kern/10563 QIC 40/80 tape drive ft present in versio o [1999/03/13] kern/10574 3.1-stable kernel reports k6 cpu as "\^E" o [1999/03/14] conf/10582 Makefile.upgrade fails with make -j o [1999/03/14] misc/10589 Incorrect assumptions in /etc/security o [1999/03/14] bin/10590 new option to silince confirmation but no o [1999/03/15] bin/10601 wosch Ownership of symlinks copied by adduser a o [1999/03/15] i386/10606 Probablue odd error message if LS-120 is o [1999/03/15] i386/10608 add Opti Viper-M PCI ID o [1999/03/15] kern/10609 adjtime bug (tv_sec > 2147) and enhanceme o [1999/03/15] bin/10610 New options to date to slowly adjust time o [1999/03/15] bin/10611 timed enhancement o [1999/03/16] i386/10623 DFLTPHYS in /usr/src/sys/i386/include/par s [1999/03/16] ports/10634 ade Update the hylafax port to do a client in o [1999/03/17] kern/10641 Default sync rate in ncr SCSI driver is s o [1999/03/17] kern/10642 exports(5) mentions KERBNFS but that's no o [1999/03/18] bin/10657 Unable to install from CDROM or DOS parti o [1999/03/18] kern/10663 hpscan doesn't like 3.1's pt device o [1999/03/18] misc/10667 Sysinstall inserts multiple # -- sysinsta o [1999/03/19] gnu/10670 cvs doesn't allow digits in local keyword o [1999/03/19] kern/10673 wpaul Non-ASCII chars on serial console with Re o [1999/03/19] kern/10678 Printing problems using ppc bus o [1999/03/19] ports/10682 asami List mirror sites in MASTER_SITE_BACKUP - o [1999/03/23] kern/10755 de driver says `invalid EESPROM checksum' o [1999/03/23] i386/10766 obsolete device name wcd is still left un o [1999/03/24] i386/10779 zp slot 0 sees 3Com 589 PCMCIA card but z o [1999/03/25] bin/10793 cvs update modification time check granul o [1999/03/26] misc/10803 joe whois(1) client enchancements a [1999/03/26] misc/10804 joe whois(1) enhancement o [1999/03/26] kern/10812 LINT configuration MAXDSIZ/DFLDSIZ mislea o [1999/03/27] bin/10825 daily script not executed or executed twi f [1999/03/28] ports/10844 deischen New port: adagdb o [1999/03/29] bin/10856 vty's from ttyvc - ttvf (maybe more?) do o [1999/03/30] bin/10868 BUG in /usr/bin/calendar o [1999/03/30] misc/10871 wst0 fails with Sony SuperStation streami o [1999/03/30] bin/10878 host(1) dumps core o [1999/03/31] kern/10894 wrong error message in svctcp_create() o [1999/04/01] bin/10905 sa(8) is hard coded for 8 character user o [1999/04/01] gnu/10910 Integration of Objective C patches into g o [1999/04/02] bin/10924 Extensions to biff(1) o [1999/04/03] bin/10931 biff b o [1999/04/06] bin/10980 With ctags -x no space is left between na o [1999/04/07] docs/10997 doc Problem with query-pr-summary.cgi o [1999/04/07] i386/11006 Sysinstall silently makes FreeBSD's parti o [1999/04/08] kern/11020 popen does not honor ISO 9899 syntax o [1999/04/08] bin/11031 [PATCH] mount and umount support for mort o [1999/04/08] bin/11032 h2ph's cpp #warning/#error directive proc o [1999/04/08] bin/11036 markm Perl does not honor -DNOMAN o [1999/04/08] bin/11037 Gencat doesn't properly handle \ddd octal o [1999/04/09] ports/11048 obrien variable not initialized in fwtk-lib lead o [1999/04/09] bin/11051 ps's -U option should accept a list of us o [1999/04/09] misc/11052 [PATCH] performance bug fix to fgets() ro o [1999/04/10] conf/11058 Recent change to rc script causes hang on o [1999/04/11] bin/11085 Per-host configuration for syslog.conf o [1999/04/11] bin/11092 readlink(1) from OpenBSD o [1999/04/11] bin/11094 lastlogin.8 from NetBSD o [1999/04/13] misc/11111 Error opening terminal: su o [1999/04/13] bin/11114 make(1) does not work as documented with o [1999/04/13] misc/11126 vt100 termcap entry appears broken o [1999/04/14] ports/11134 hoek existense of /usr/obj/usr/ports/shells/ba o [1999/04/14] bin/11141 u_long is not big enough o [1999/04/16] i386/11165 IBCS2 don't work correctly with PID_MAX 9 o [1999/04/16] bin/11168 pw(8) usermod does not recognize -w flag o [1999/04/18] i386/11201 brian mktime possible bug o [1999/04/18] bin/11205 Suggestion: move mt(1) to /bin o [1999/04/18] i386/11207 sys/i386/isa/rp.c: fixed breaking and war o [1999/04/20] kern/11235 Need to submit new driver o [1999/04/20] bin/11236 mountd fails to properly check for kernel o [1999/04/20] conf/11243 mountd startup can lose flags o [1999/04/20] bin/11248 Shuffle o [1999/04/22] kern/11287 rfork(RFMEM...) doesn't share LDTs set by o [1999/04/23] kern/11293 brian FreeBSD's PPP implementation of LQM appea o [1999/04/23] bin/11294 direct logging to other hosts (no local s o [1999/04/27] bin/11360 Allow specification of "search" in resolv o [1999/04/28] kern/11365 plip in Linux mode has trouble with some o [1999/04/28] bin/11370 more segfaults if you give it a real file o [1999/04/29] bin/11387 mount_cd9660 doesn't show rockridge filen o [1999/04/29] ports/11388 torstenb patch for ircII so /window create works o [1999/04/29] bin/11399 Calendar doesn't always handle 'last' day o [1999/04/30] kern/11410 code typo in ad1848.c: the != operator ha o [1999/04/30] kern/11411 code typo in clones.c: "if ((mpu_config = o [1999/04/30] kern/11412 code typo in ip_fil.c: missing NULL check o [1999/04/30] kern/11413 code typo in pci.c: the != operator has h o [1999/04/30] kern/11414 code typo in pcf.c: the != operator has h o [1999/04/30] kern/11415 code typo in wst.c: the != operator has h o [1999/04/30] kern/11416 code typo in sequencer.c: "if (!processed o [1999/05/02] misc/11448 Better looking VGA font for iso2 o [1999/05/03] misc/11478 Non-functional AFS support in KerberosIV o [1999/05/05] kern/11516 NetGear 10/100 Ethernet 21140-based Ether o [1999/05/05] kern/11517 ../../kern/kern_ntptime.c:533: warning: i o [1999/05/05] kern/11518 ../../pci/if_tx.c:1376: warning: no previ o [1999/05/05] kern/11519 dead code in ncr driver o [1999/05/06] bin/11552 sendmail local delivery (mail.local) can' o [1999/05/06] misc/11553 /usr/share/misc/latin1 (new file submissi o [1999/05/09] bin/11608 vnconfig not supporting swap-backed vn de o [1999/05/09] bin/11609 vnconfig -v reports page numbers, not byt s [1999/05/09] ports/11611 billf Update port: net/ntop o [1999/05/10] bin/11623 quot uses 32-bit integers for its calcula o [1999/05/10] conf/11626 /var/log/kerberos is rotated o [1999/05/10] bin/11637 build of kdump fails o [1999/05/12] bin/11669 gcc 2.7.2.1 gets bad magic error linking o [1999/05/12] bin/11671 "vidfont -r" fails, asking for font size o [1999/05/12] i386/11674 can't do make imake build or anything sin o [1999/05/12] kern/11676 PCIless kernel will not compile with ATAP o [1999/05/13] i386/11683 olpt/nlpt name change not in man pages o [1999/05/13] misc/11689 Change "netstat" mode in daily "status-ne o [1999/05/17] bin/11746 Add support for Solaris mailboxes o [1999/05/18] kern/11765 performance bug: network devices fxp & de o [1999/05/18] misc/11767 sppp does not implement VJ compression o [1999/05/19] kern/11789 ELF machine definition missing for ARM o [1999/05/21] bin/11818 Added a feature to ping(8) o [1999/05/21] ports/11820 asami bsd.port.subdir.mk does not define the `m o [1999/05/21] i386/11829 Boot Failure (Register Dump) with MFSroot o [1999/05/22] misc/11838 xwindows configuration problem o [1999/05/24] kern/11881 when a dummynet pipe is encountered it st o [1999/05/25] misc/11890 make world creates /lkm directory o [1999/05/26] bin/11896 cap_mkdb dumps core when non-files passe o [1999/05/26] i386/11898 Connot wirte to floppy on HP OB800CT with o [1999/05/26] bin/11900 Sed(1) fails with MALLOC_OPTIONS set to ' o [1999/05/28] bin/11914 makewhatis during installworld uses /usr/ o [1999/05/28] i386/11920 FBSD 3.2 upgrade claims not to upgrade /u o [1999/05/28] i386/11921 /usr/X11R6/lib/aout libraries screwed up o [1999/05/29] conf/11925 rc.conf cosmetic naming inconsistencies o [1999/05/29] bin/11929 symorder doesn't work on elf format objec o [1999/05/29] kern/11941 FreeBSD box reboots itself when changing o [1999/05/30] kern/11945 tape problems on -stable, mt bl(ocksize), o [1999/05/31] kern/11968 kldload should call module entry point be o [1999/06/01] i386/11979 Vaio 505DX touchpad not detected as Glide o [1999/06/01] kern/11981 brian access to tunN devices not allowed to non o [1999/06/02] conf/11989 pppd(8) output misplaced o [1999/06/03] kern/12014 Fix SysV Semaphore handling o [1999/06/05] misc/12044 having tcl.h in /usr/local/include:/usr/i o [1999/06/06] gnu/12046 markm Perl subsystem does not install all tutor a [1999/06/06] bin/12052 sh type builtin appends first path compon o [1999/06/07] kern/12071 [PATCH] large scale IP aliasing o [1999/06/08] i386/12088 Enhancement to ed driver for Linksys 10/1 o [1999/06/09] kern/12095 [PATCH] Buggy ATAPI Zip Drive is not dete o [1999/06/09] bin/12107 Add switch to dump to support multiple du o [1999/06/10] i386/12113 ESS1688 support for VoxWare sound driver o [1999/06/10] bin/12115 pppd reports wrong connected duration wit o [1999/06/13] ports/12188 ports New port: pbs-2.1.11 (misc/PBS) a batch s o [1999/06/15] misc/12228 phantom /etc/security don't search in all the fil o [1999/06/16] gnu/12238 bc 1.04 crashes with long formula typed i o [1999/06/16] bin/12244 realpath() fails when there is no permiss o [1999/06/17] bin/12255 BIND 8.1.2 compilation error in IPv6 capa o [1999/06/17] bin/12263 hoek "more" problems with long filenames o [1999/06/18] bin/12280 jdp LD_IGNORE_MISSING_OBJECTS not honored for o [1999/06/18] kern/12281 active-filter option in pppd doesn't stop o [1999/06/20] bin/12308 LPD can't be told not to bind to a TCP po o [1999/06/21] conf/12324 jkh Sysinstall's fdisk partition editor is mi o [1999/06/21] ports/12325 asami Adds refetch functionallity to bsd.port.m o [1999/06/21] i386/12326 wdc flag 0x1000 (LBA addressing) prevents o [1999/06/21] kern/12333 ProAudio Spectrum sound card broken model o [1999/06/21] kern/12334 Some ProAudio SPectrum cards do not do DM o [1999/06/21] kern/12335 if_pn.c lacks bridging support; patch enc o [1999/06/22] conf/12342 /etc/hosts.allow must use numerical IP ad o [1999/06/22] bin/12357 [PATCH] allow route to create "proxy only o [1999/06/23] bin/12358 ken Patch: "camcontrol help" should go to std o [1999/06/23] bin/12375 mv(1) cannot inherit the file flags. o [1999/06/24] i386/12383 make release warns about /dev entries mak o [1999/06/26] bin/12398 fsck in free(): warning: pointer to wrong o [1999/06/27] kern/12409 add some more chipset models by NVidia to o [1999/06/27] bin/12421 sysinstall label fails o [1999/06/28] conf/12432 empty amd_flags causes start failure in r o [1999/06/30] bin/12461 it's handy to be able to send syslog mess o [1999/07/01] bin/12477 New fortune o [1999/07/02] docs/12486 mpp listing of (56) utilities in /bin:/sbin:/ o [1999/07/02] bin/12489 /sbin/route exits with 0 on some errors o [1999/07/03] kern/12495 3.1 install fails to detect Toshiba CDROM o [1999/07/05] ports/12518 ports New port: ifmail-os-2.14.7 o [1999/07/05] bin/12528 [PATCH] tip's "tipout" child doesn't alwa o [1999/07/06] kern/12543 dg [PATCH] cumulative error counters for fxp o [1999/07/07] bin/12545 kldload(8) should be more sensitive to er o [1999/07/07] ports/12548 asami New 'fecth-recursive(-list)' targets in p o [1999/07/12] kern/12609 At boottime NFS mounts on a 3.2 client fr s [1999/07/12] bin/12611 sheldonh /usr/bin/jot crashes with floating point o [1999/07/12] misc/12612 ncurses ash shipped with 3.2-R missing sy o [1999/07/13] misc/12633 CMI8330 chip based integrated sound card o [1999/07/15] kern/12655 Kernel config file needs more commenting o [1999/07/16] kern/12668 The kernel clock goes slow with PLIP devi o [1999/07/18] kern/12697 Out of swap handling [PATCH] o [1999/07/20] bin/12712 release/Makefile: mounting /some/dir with o [1999/07/20] kern/12723 imp Unnecessary use of magic numbers in F_[SG o [1999/07/22] kern/12764 luigi Patch for using x11amp with voxware (stol o [1999/07/22] misc/12765 cable problem: link down for de0 NICs. o [1999/07/23] misc/12776 Add PAM hooks to rlogind and rshd f [1999/07/23] bin/12782 roberto xntpd doesn't handle interface aliases pr o [1999/07/24] bin/12789 Confusing error msg when dumping a filesy s [1999/07/25] bin/12801 sheldonh nvi infinite recursion with options "left o [1999/07/25] kern/12803 obrien patch to make xe driver's noise configura o [1999/07/25] bin/12806 `sh -e' doesn't parse multi-command lines o [1999/07/27] kern/12833 Support for TI1225 PCI to CardBus Bridge o [1999/07/28] kern/12855 panic:softdep_flushfiles:looping, caused a [1999/07/28] bin/12866 sheldonh [PATCH] RFE for /bin/ls to add a -n optio o [1999/07/30] misc/12887 Problem with "top" command in SMP o [1999/07/30] misc/12888 strange kernel messages when copying file o [1999/07/31] kern/12896 Incorrect CPU model display at boot time o [1999/07/31] bin/12898 Added a command-line switch to netstat to o [1999/08/03] bin/12939 add flag to quota to suppress NFS quota c o [1999/08/03] bin/12942 m4: len(`') returns `' a [1999/08/03] kern/12943 dg fxp driver not completely compatible with o [1999/08/03] bin/12946 top(1) gives incorrect delay default o [1999/08/04] ports/12952 asami make _PORT_USE touch cookies by variable, o [1999/08/04] bin/12957 rpc.rusersd dumps core with signal 11 whe o [1999/08/04] bin/12960 des basename(3) and dirname(3) o [1999/08/04] bin/12962 des basename(3) and dirname(3) part 2 o [1999/08/04] kern/12966 receiver lockups in vr0 driver o [1999/08/05] bin/12982 last does not support -y option. o [1999/08/05] misc/12983 system hang accessing mounted msdos flopp o [1999/08/05] i386/12993 gibbs "ahc0: Data Parity Error Detected during o [1999/08/06] bin/13000 vi core dumped o [1999/08/06] ports/13006 erich update emulators/x48 to 0.4.1d o [1999/08/07] conf/13016 Wrong sendmail.cf file used by mergemaste o [1999/08/07] docs/13020 mpp Manpage capitalization o [1999/08/08] docs/13034 peter incorrect (old/obsolete) manpage for name o [1999/08/08] misc/13036 de doesn't work with DEC 21143 based PCI o [1999/08/09] bin/13042 make doesn't handle wildcards in subdirec o [1999/08/09] bin/13043 minigzip -c option support. o [1999/08/09] i386/13051 after installation on system using COM1, o [1999/08/10] kern/13062 lnc ethernet xmit underflow problem o [1999/08/11] bin/13068 billf Don't stamp out score files! o [1999/08/11] bin/13072 billf Extensions to biff(1) o [1999/08/11] bin/13073 billf Extensions to mesg(1) o [1999/08/11] docs/13079 mpp new man page describing timeradd() family o [1999/08/11] kern/13082 dfr Improved support for NE2000 PnP cards o [1999/08/12] bin/13092 des Fetch doesn't default to the correct http o [1999/08/12] bin/13108 authunix_create_default includes egid twi o [1999/08/13] docs/13116 phantom typo in ms(7) o [1999/08/13] ports/13124 ports New port: LinAlg; request for local hosti o [1999/08/13] bin/13128 billf pkg_delete doesn't handle absolute pathna o [1999/08/15] kern/13161 alfred mounting on top of a mounted file system o [1999/08/15] kern/13164 kthread_exit stops, but doesn't release p o [1999/08/15] ports/13167 torstenb [PATCH] security/ssh package keygen fails o [1999/08/15] i386/13171 "config" not quite right for kernel not n f [1999/08/16] ports/13173 ade New port: yiff-0.33 o [1999/08/16] misc/13185 "tengo problemas con el pop3" o [1999/08/17] ports/13191 ports New port: fire-1.0 o [1999/08/17] kern/13209 IPFILTER_DEFAULT_BLOCK not in /usr/src/sy o [1999/08/17] docs/13211 chris [LIST] Some man pages has references to n o [1999/08/18] docs/13218 mpp Many manpages still not conformed mdoc(7) o [1999/08/18] kern/13220 mkdep: compile failed - ../../pci/if_de.c o [1999/08/18] kern/13232 panic("rtfree"); when sending bootp reque o [1999/08/18] ports/13251 ports New port: founts-11 s [1999/08/19] kern/13252 niced jobs don't behave really nice o [1999/08/19] bin/13254 yp_all error messages have wrong text o [1999/08/20] misc/13266 Removal of #defines and addition of const o [1999/08/20] bin/13278 rogue: killed by fire corrupts score file o [1999/08/20] misc/13282 partial compliance of dlopen to the Singl f [1999/08/21] ports/13291 ade New port: xap-xwf-0.7.8 o [1999/08/21] bin/13309 Fixes to nos-tun o [1999/08/22] misc/13326 additional timeval interfaces for 512MB o [1999/09/21] ports/13887 taoka New port (fmirror) o [1999/09/22] misc/13895 nonexistent words in /usr/share/dict/web2 o [1999/09/22] ports/13898 obrien New port: misc/dictd o [1999/09/22] conf/13907 dummynet.4 correction, rc addition of o [1999/09/23] conf/13916 mpp man outputs footer only page as first pag o [1999/09/23] conf/13918 Termcap entries for VESA modes missing o [1999/09/23] gnu/13921 awk -v var=val coredump o [1999/09/23] kern/13924 sb/snd driver broken under 4.0-19990918-C o [1999/09/24] i386/13936 No clear indictaion of how much space to o [1999/09/25] docs/13950 doc webpage idea o [1999/09/25] docs/13967 doc FreeBSD Related Publications in Korea o [1999/09/26] kern/13979 [PATCH] add serial number to IDE HD probe o [1999/09/26] gnu/13989 SIGWINCH corrupts the display of a multil o [1999/09/27] kern/14006 pas2_pcm.c pcm playback problem, with fix o [1999/09/29] docs/14035 doc tzfile.h referenced in tzfile(5) doesn't o [1999/09/29] bin/14040 amd has wrong uname data compile in it o [1999/09/30] i386/14048 ``doscmd -r'' doesn't work o [1999/09/30] ports/14070 ports New port: devel/crossgo32-f77 o [1999/09/30] i386/14071 FreeBSD 3.3 Installation CD does not boot o [1999/10/01] ports/14077 peter Multicast not available on multicast enab o [1999/10/01] bin/14078 -stable 'make release' does not work on - o [1999/10/01] ports/14079 ports ssh2 port won't install if automake is in f [1999/10/01] kern/14083 gibbs CAM 3.3-RELEASE fails boot w/2940UW + non o [1999/10/02] kern/14087 dcs update sys/boot/ficl/softwords/softcore.a o [1999/10/02] ports/14088 ports port of new fvwm 2.3 beta (2.3.8) o [1999/10/03] misc/14104 DISTFILES name clash between release/Make o [1999/10/04] docs/14129 phantom gated(8) and htable(8) as referenced in r o [1999/10/05] bin/14142 sendmail: mci.c: bad pointer conversion i o [1999/10/05] bin/14151 Patch: date(1): merge in OpenBSD enhancem o [1999/10/06] docs/14158 doc md5(1) manpage should not claim the md5 a o [1999/10/06] docs/14165 nbm FDP introduction article o [1999/10/06] kern/14166 roger AVER TVPhone o [1999/10/06] bin/14171 joe [PATCH] create symbolic links using mtree o [1999/10/07] bin/14175 route for ip aliasing o [1999/10/07] ports/14182 asami Patch: bsd.port.mk: add plist target f [1999/10/07] ports/14185 ports ports/x11-wm/fvwm2 updated from 2.2.2 to o [1999/10/07] alpha/14200 alpha kldstat command has formatting problems o o [1999/10/08] kern/14217 [PATCH] EXT2FS as a KLD o [1999/10/09] ports/14225 markm Patches for security/pgp5 o [1999/10/09] kern/14240 compilation error: __cmpdi2 unresolved o [1999/10/09] bin/14246 kvm_open and kvm_openfiles not works corr o [1999/10/10] bin/14255 rup and rusers could not deal with many h o [1999/10/11] misc/14258 IP_TOS and IP_TTL sockopt doesn't work on o [1999/10/11] ports/14260 ports New port: WODA - A Web Oriented Database o [1999/10/11] misc/14263 phantom There ara no ukrainian locale in stable/c o [1999/10/11] i386/14266 vfsload() looks in /lkm, not /modules o [1999/10/11] misc/14269 NIS passwd and group maps do not clean ou o [1999/10/11] misc/14273 Somewhat bogus entry in termcap o [1999/10/12] conf/14297 [Patch] pccard.conf for corega Ether PCC- o [1999/10/13] bin/14305 ru natd should know FTP EPRT command o [1999/10/13] ports/14316 markm exmh not recognizing mh and uses too many o [1999/10/13] bin/14317 jkh sysintall: instructions to reboot don't m o [1999/10/13] bin/14318 jkh sysinstall upon install has some counter- o [1999/10/14] ports/14323 markm [PATCH] ports/security/pgp5: Invoked with o [1999/10/14] bin/14330 peter [PATCH] fix clash between /usr/src/contri o [1999/10/14] bin/14335 peter Manual page for ndc gives incorrect path o [1999/10/14] bin/14342 [PATCH] Speed ups for regex! o [1999/10/15] kern/14346 Both pccard/cardinfo.h and sys/memrange.h o [1999/10/15] kern/14350 Security enhancement to ICMP o [1999/10/15] kern/14355 perhaps a guard page needed for UP-mode k o [1999/10/16] bin/14361 locate bogusly converts to network byte o o [1999/10/17] kern/14380 [PATCH] if_de workaround for when BIOS do o [1999/10/18] kern/14394 kernel panic when asking help in visual u o [1999/10/18] i386/14396 Floppy install of 3.2-release, 3.3-releas o [1999/10/20] i386/14437 MFC'ed identcpu.c o [1999/10/20] i386/14438 additional CPUID bit definitions for iden o [1999/10/20] i386/14440 update to identcpu.c to "support" AMD K7' o [1999/10/21] bin/14448 ftp-client may not recognize failure, rep f [1999/10/23] docs/14460 jhb Fix broken links in the FAQ f [1999/10/23] conf/14463 phantom cvs pserver does not work with out-of-the f [1999/10/23] conf/14487 phantom Please Change "/usr/share/skel/dot.login" o [1999/10/23] misc/14488 kget doesn´t write the key word "enable" o [1999/10/24] ports/14499 torstenb update port irc/ircII to 4.4L o [1999/10/24] kern/14504 Framing Error on FreeBSD Laptop o [1999/10/25] misc/14511 chapss Y2K problem o [1999/10/25] ports/14515 ports New Port: Tripwire 1.3 o [1999/10/25] conf/14522 dhclient incorrectly reads and sets hostn o [1999/10/25] docs/14530 phantom Printed manual pages have extraneous blan o [1999/10/25] docs/14532 doc Much of cam_cdbparse(3) prints in Courier o [1999/10/25] bin/14533 pccardd improperly assigns irqs o [1999/10/25] bin/14534 mpp Formatting man pages gives numeric expres o [1999/10/26] bin/14545 quota reports in K, but header says 'bloc a [1999/10/27] kern/14561 ken ioctl (fd, CDIOCEJECT, (void*) 0) doesn't s [1999/10/27] kern/14562 ken ioctl() codes should be provided for ejec o [1999/10/27] docs/14563 doc Wrong manpage produced by `man 4 fd' o [1999/10/27] docs/14565 doc ioctl() codes for device type `fd' (flopp o [1999/10/27] i386/14574 ISA based ESS1688 support(partially) for o [1999/10/28] kern/14584 Proposition for improved file permissions s [1999/10/29] kern/14590 kernel panic writing to floppy o [1999/10/29] misc/14599 pam_kerberosIV.so in the 'krb.??' package o [1999/10/29] kern/14602 struct utsname fields are allocated too s o [1999/10/31] kern/14639 convert proc.p_peers to a queue(3) LIST o [1999/11/01] ports/14643 ports New port: chinese/pyDict A Chinese/Engli o [1999/11/01] kern/14646 kern.boottime affected by APM suspend/res o [1999/11/01] bin/14648 markm `make world' now requires -DNOCRYPT in my o [1999/11/01] ports/14652 se update emulators/wine to 991031 (supersed o [1999/11/02] gnu/14664 tar checks for volno-file even if it shou o [1999/11/02] docs/14677 chris listing of (48) utilities in /bin:/sbin:/ o [1999/11/03] docs/14682 doc lprm(1) unaware of lp(1) Environment Vari f [1999/11/03] ports/14686 ade New port: pisces IIB (Category: cad) o [1999/11/03] bin/14697 grog Exploitable buffer overflow in Vinum (Fre o [1999/11/04] conf/14714 phantom Need support for imap4 and pop3 in /etc/p o [1999/11/06] misc/14746 xf86config shell script leaves arrow keys o [1999/11/07] kern/14778 sio.c doesn't recognize USR model 3090 IS o [1999/11/08] ports/14783 jmz mgetty 1.1.12 always sets clocal o [1999/11/08] bin/14786 tail breaks on large files o [1999/11/08] conf/14791 Optionally change the behaviour of fsck u o [1999/11/08] i386/14793 more fdisk partition types o [1999/11/09] i386/14800 FreeBSD BootMgr not configurable (or at l o [1999/11/10] conf/14810 [PATCH] initialising multiple interfaces o [1999/11/10] i386/14816 lnc(4) can work with Am79C937 a [1999/11/10] bin/14817 strptime(3) '%C' conversion incorrect o [1999/11/11] ports/14822 jfitz majordomo sets group-writable dir's o [1999/11/11] ports/14824 wosch no '\0' at the end of buffer o [1999/11/11] bin/14829 rc.shutdown is handled unconsistently by o [1999/11/12] kern/14839 RELENG_2_2 boot kernel is large size prob o [1999/11/12] kern/14840 Opti930 doesn't work. o [1999/11/12] kern/14841 adrian IEEE 802 encapsulation for arp on etherne o [1999/11/12] ports/14854 peter port comms/conserver partially ignores ${ o [1999/11/13] conf/14864 I can not get dual Boot to boot FreeBSD f o [1999/11/14] misc/14868 Freebsd 3.2-REL with 1 ISA PNP and 1 PCI o [1999/11/14] ports/14889 se [PATCH] dynamic loading for WINE port o [1999/11/14] i386/14891 New smbus driver lmsmb o [1999/11/15] bin/14911 Install of opiekey missing links to otp-m o [1999/11/16] ports/14922 will New port: net/infobot o [1999/11/16] ports/14924 markm p5-Apache-Radius with mod_perl broken on o [1999/11/16] bin/14925 getsubopt isn't poisonous enough o [1999/11/16] conf/14931 rc logging facility o [1999/11/16] ports/14933 imp Simple patch to log password attempts on o [1999/11/17] bin/14954 search.h is missing o [1999/11/17] ports/14965 wosch stat port doesn't know fifo file type o [1999/11/17] kern/14968 wollman Convert resource_head and resource.r_link o [1999/11/17] ports/14970 peter conserver-7.4 port submission o [1999/11/18] conf/14973 Digi-multiport serial card? o [1999/11/18] conf/14974 In RELENG_3, fdisk reports sizes incorrec o [1999/11/18] ports/14977 peter conserver doesn't support speed over than o [1999/11/18] ports/14986 torstenb possible bug in ssh1 o [1999/11/18] ports/14991 ports New port: devel/tcl-trf Tcl Data transfo o [1999/11/19] misc/14993 Freebsd Locks up when trying to set the h o [1999/11/19] misc/14999 phantom ISO8859-5 locale missing from RELENG_3 o [1999/11/19] misc/15000 ftp(1) needs to send HTTP/1.1 Host: heade o [1999/11/20] conf/15010 "client" firewall configuration kills inc o [1999/11/21] ports/15021 asami some port installs fail for non-root user o [1999/11/21] kern/15022 mjacob Suggestion for enhancement: move isp firm o [1999/11/21] ports/15035 jseger [Tcl/Tk] apply plus patch to Tcl/Tk8.2 o [1999/11/21] conf/15038 jkh In sysinstall, easy to not notice that se o [1999/11/23] kern/15065 fsck can't fix "huge" zero length files o [1999/11/25] kern/15095 TCP's advertised window is not scaled imm o [1999/11/27] i386/15119 pcm sound driver dma problems with isa-pn o [1999/11/28] ports/15142 jmz Added DIST_SUBDIR to print/tex port o [1999/11/28] ports/15147 ports New port: audio/xsidplay o [1999/11/29] misc/15168 Adding tracklist support to fdformat o [1999/11/29] kern/15175 tcp_input() fails to update m->m_pkthdr.l o [1999/11/30] bin/15182 "* Wed-1 event" in calendar produces "31 o [1999/11/30] misc/15196 shutdown -h no longer synching disks, thu o [1999/12/01] misc/15205 Addition to /usr/games/random o [1999/12/01] bin/15211 CFLAGS and CC not settable and one warnin o [1999/12/01] misc/15215 Outputting in Fortune under certain circu o [1999/12/02] i386/15218 kernel says: raw partition size != slice o [1999/12/02] kern/15221 marcel Linux emulator core dumps on setreuid() o [1999/12/02] bin/15227 sheldonh New option for vacation(1) -- dir to use o [1999/12/02] bin/15229 joe mtree - different from mtree in NetBSD 1. o [1999/12/02] docs/15234 mpp sh(1) man page have capitalised instance o [1999/12/03] ports/15239 asami fix MASTER_SITE_GNOME in bsd.port.mk: mi o [1999/12/04] kern/15251 patch to add unsigned support to sysctl o [1999/12/04] docs/15259 obrien amd(8) refers to nonexistent automount(8) o [1999/12/05] kern/15280 kernel panic during FreeBSD install o [1999/12/05] bin/15285 wes unhelpful error message from brandelf o [1999/12/05] misc/15288 billf pkg_version -c output isn't safe for scri o [1999/12/05] ports/15294 jfitz Update port: mrgt from 2.8.8 to 2.8.9 o [1999/12/06] bin/15301 Bug in /usr/sbin/syslogd: strips 8th bits o [1999/12/06] misc/15304 billf proposed modifications to pkg_version o [1999/12/06] ports/15326 ache tcsh modification o [1999/12/07] ports/15329 cwt amanda24 modification o [1999/12/07] misc/15339 fdformat should exit non-zero when user c o [1999/12/07] bin/15342 replacement for the stock /sbin/dhclient- o [1999/12/08] ports/15367 ports new ports on linux emulator o [1999/12/09] bin/15371 keyinfo doesn't work without suidperl o [1999/12/09] ports/15387 billf ethereal's packet-smb.c calls str*() func o [1999/12/09] bin/15390 obrien Upgrade rdist to 6.1.5 o [1999/12/10] docs/15408 doc Description of ls and nlist wrong in man o [1999/12/10] bin/15410 edquota -p copies current usage as well a o [1999/12/11] bin/15416 addr2line is unable to find line numbers o [1999/12/11] bin/15418 tput(1) doesn't work with new libncurses. o [1999/12/11] misc/15421 initgroups(3) spits out messages to stder o [1999/12/11] ports/15424 will New port: www/kwebsearch o [1999/12/12] kern/15435 Attempts to execute programs from a noexe o [1999/12/12] kern/15436 syscons extension: "propellers" o [1999/12/12] kern/15440 jasone support atomic locks in the UP kernel o [1999/12/12] kern/15455 dg Intel EtherExpress Pro does not properly o [1999/12/13] bin/15456 Usage of ktrace(1) is invalid a [1999/12/13] bin/15458 sort(1) doesn't sort correctly in some ca o [1999/12/13] ports/15461 jmacd Update of misc/xdelta port o [1999/12/13] bin/15470 Proposed change to comments in /etc/named o [1999/12/14] ports/15477 andreas wwwstat-2.01 port is not Y2K compliant: 1 o [1999/12/14] misc/15480 Change-request for /usr/src/usr.sbin/cdco f [1999/12/14] ports/15481 ports ports/devel/codecrusader slightly broken o [1999/12/14] kern/15489 running fstat causes a bus error o [1999/12/15] kern/15492 Patch to fixup bridging support for 2.2-S o [1999/12/15] kern/15493 Patch to enable bridging support for if_c o [1999/12/15] ports/15495 asami Add "addsum" target to bsd.port.mk o [1999/12/15] bin/15496 killall(1) limited to 16 character proces o [1999/12/15] bin/15497 NIS does not deal well with comments o [1999/12/15] bin/15510 df(1) does not lineup with large filesyst o [1999/12/15] kern/15511 Cannot scroll up after panic? o [1999/12/16] misc/15519 peter Lots of bind-8.2.2 manual pages don't get o [1999/12/17] i386/15528 doscmd exec function fail. o [1999/12/17] i386/15531 doscmd DOS function 0a fail when DL is 0 o [1999/12/17] kern/15532 Reboot just to kill a print job? f [1999/12/17] ports/15545 ports New port: x11/xterm o [1999/12/17] misc/15546 Need to enable LBA flag for large IDE dis o [1999/12/17] i386/15547 discmd function 51 ( get ps ) fail o [1999/12/18] gnu/15549 obrien Fix -fformat-extensions support code merg f [1999/12/18] ports/15552 ports New port: news/knode o [1999/12/18] misc/15555 some enhancements for uudecode o [1999/12/19] docs/15561 doc regex(3) manpage needs update o [1999/12/20] bin/15593 [SECURITY] ustrcpy() buffer overflow in d o [1999/12/20] ports/15594 se kscd-1.2.7 in -STABLE ports not playing A o [1999/12/20] bin/15596 netstat -rn does'n fit on a 80 chars wide o [1999/12/21] kern/15608 acd0 / cd0 give inconsistent errors on em o [1999/12/21] conf/15612 jkh Re-Scan devices in 3.4-Release options me o [1999/12/21] i386/15619 standard pppd doesn't authenticate users o [1999/12/22] kern/15632 mss driver fails to recognize CS4239 on T o [1999/12/22] kern/15633 Joy driver fails to attach to CS joystick o [1999/12/22] kern/15636 dillon reminder to self for MAP_ VM defines o [1999/12/23] misc/15658 edquota misinterprets usernames as uid ra o [1999/12/23] docs/15661 doc Handbook doesn't properly document bootin o [1999/12/24] bin/15663 yokota none o [1999/12/25] ports/15691 torstenb Ssh ports fail to check inetd.conf before o [1999/12/28] bin/15739 repquota report format fix for better par o [1999/12/28] conf/15745 rc.network overrides mountd_flags rather o [1999/12/28] kern/15747 loader's builtin "more" command won't res o [1999/12/28] conf/15748 jkh sysinstall - upgrade o [1999/12/30] ports/15787 se Kvt doesn't agree with MAKEDEV on pty num o [1999/12/31] conf/15792 can't make /dev/cd31 o [1999/12/31] ports/15796 will New port: net/dhcp_dns o [1999/12/31] misc/15809 New entry for the fortune(6) database o [1999/12/31] ports/15810 jfitz p5-Net port update o [1999/12/31] ports/15812 jfitz p5-Mail-Tools port update o [1999/12/31] ports/15813 eivind p5-IO-stringy port update o [1999/12/31] ports/15814 eivind p5-MIME-Tools port update o [2000/01/01] ports/15819 cwt fix PLIST of misc/amanda24 o [2000/01/01] docs/15821 doc Wrong device names in manpages for lpt(4) o [2000/01/01] kern/15827 Power-Off causes Trap 9 in kernel o [2000/01/01] bin/15830 PATCH: rdump over ssh o [2000/01/01] bin/15832 the w commands can show a bad result on t o [2000/01/02] kern/15838 Conversion tables in msdosfs_conv.c are b o [2000/01/02] ports/15840 ports New port: x11-fonts/ucs-fixed o [2000/01/02] i386/15841 [patch] Assembler syntax fixes for the bo o [2000/01/02] ports/15844 wosch www/checkbot fix and update to 1.58 o [2000/01/02] bin/15852 asmodai predefined \*(DT string has Y2K bug o [2000/01/02] bin/15853 tar --newer-mtime flag has Y2K bug o [2000/01/03] bin/15855 comsat(8) failes to open system mail box o [2000/01/03] ports/15857 dirk new standalone port of php3 for ports/www o [2000/01/03] ports/15859 ache Fix a typo in BUILD_DEPENDS in www/p5-Par o [2000/01/03] kern/15860 patch to make default kern.maxfilesperpro o [2000/01/03] bin/15861 ftpd did not use sendfile(2) when sending o [2000/01/03] misc/15871 CVS directories copied to PicoBSD filesys o [2000/01/03] ports/15873 ports New port: Apache_fp+php+mod_ssl-1.3.9+3.0 o [2000/01/03] misc/15874 PicoBSD can only update files from within o [2000/01/03] misc/15875 Incorrect permissions on PicoBSD /tmp dir o [2000/01/03] misc/15876 PicoBSD message of the day problems o [2000/01/04] ports/15886 ports New port: audio/cd2mp3 o [2000/01/04] docs/15890 doc rfork(RFMEM) on SMP generates error o [2000/01/04] ports/15894 ports New port: security/aide AIDE 0.5 o [2000/01/05] misc/15908 patch to fix argument mismatch in getnano o [2000/01/05] kern/15923 ATA/EIDE DMA does not work with some hard o [2000/01/06] ports/15933 marcel ports/editors/staroffice requires linux l o [2000/01/06] ports/15935 msmith ports/editors/wordperfect - incorrect URL s [2000/01/06] docs/15959 phantom misplaced lines in psignal.9 man page o [2000/01/07] ports/15963 se krn requires libgdbm but port doesn't che s [2000/01/08] bin/15981 sheldonh rcp -p fails when times have high bit set o [2000/01/08] kern/15983 n_hibma C++ keywords in kernel header files o [2000/01/08] ports/15992 asami [PATCH] Add a default for $SUP in the /us o [2000/01/08] ports/15993 asami [PATCH]No line-feed in warnings from ``ma o [2000/01/08] ports/15994 ports new port libapreq 0.31 o [2000/01/09] misc/16003 sysinstall crashes if it gets more than o o [2000/01/09] bin/16005 brian add new option to date(1) o [2000/01/09] bin/16007 joe cdcontrol(1) defaulting do /dev/cdrom ins o [2000/01/09] misc/16009 Invoking /stand/sysinstall from kde termi o [2000/01/09] kern/16016 cam/scsi/scsi_da.c: Fujitsu M2952 doesn't o [2000/01/10] kern/16021 To support SMP on NEC PC98, call mp_probe o [2000/01/10] kern/16023 Add an idletime counter for sppp, just li o [2000/01/10] misc/16026 /stand/sysinstall segmentation fault when s [2000/01/10] bin/16048 asmodai "file" command cannot recognize LaTeX2e f o [2000/01/10] kern/16049 Connor Drive fails cache sync o [2000/01/11] ports/16063 jseger rdjpegcom part of the JPEG port ignores l o [2000/01/11] ports/16072 obrien vim5 port update o [2000/01/11] conf/16076 [PATCH] pam_ssh examples for /etc/pam.con o [2000/01/12] bin/16086 des Inetd internal IDENT is not work well. o [2000/01/12] ports/16088 ports apache13-ssl lacks sbin/gcache in PLIST o [2000/01/12] docs/16091 nik Update man refs for patch in pr #15958 o [2000/01/13] ports/16109 max Update port: japanese/mimekit to 1.8 o [2000/01/14] bin/16119 ctm_rmail does not honor umask o [2000/01/14] bin/16124 alfred [PATCH] Enhancement for 'lpr -r' o [2000/01/14] ports/16127 ade fix port: sysutils/upsmon - csocket.cc do o [2000/01/15] misc/16131 bizarre dates displayed when searching th o [2000/01/15] ports/16139 billf Ntop port fails to find lsof o [2000/01/15] kern/16140 /proc contains regular files of infinite o [2000/01/17] ports/16167 torstenb y2k problem with inn 2.2.1 NEWNEWS and NE o [2000/01/18] kern/16169 The U.S. Robotics 56K Voice Int modem is o [2000/01/18] kern/16170 compiling machine/setjmp.h with g++ o [2000/01/18] docs/16173 doc [PATCH] fix for the kld/cdev example o [2000/01/18] bin/16179 ipfw(8) poor design of command line parsi o [2000/01/18] conf/16180 firewall rules may require flags to be pa o [2000/01/18] docs/16185 guido a possible typo in ipnat.5 manpage o [2000/01/18] misc/16189 Advansys ASB-3940U2W SCSI Card does not w o [2000/01/18] kern/16195 16-bit uid/gid struct in sys/ipc.h o [2000/01/19] ports/16201 ports Port of CDD isn't up to date o [2000/01/19] bin/16206 PATCH: vmstat column alignment, %ll not s o [2000/01/19] misc/16208 ps/2 mouse problem o [2000/01/19] misc/16212 in /stand/sysinstall -- cannot exit menu o [2000/01/20] ports/16220 obrien -frepo is broken in gcc-devel and egcs po o [2000/01/20] misc/16231 CD audio wont work. o [2000/01/20] kern/16240 ICMP error generation fails to correctly o [2000/01/21] ports/16252 asami bsd.port.mk: Add bzip2 support for distri o [2000/01/21] bin/16275 approve send-pr(1) (attach files, use env o [2000/01/21] misc/16278 Crypt() function returns wierd results o [2000/01/22] kern/16292 performance problem of divert socket o [2000/01/22] misc/16301 Sysinstall -> Configure -> Distribution - o [2000/01/22] ports/16305 jfitz Upgrade port: majordomo to 1.94.5 o [2000/01/23] bin/16316 Enhancement: allow .fakeid to be a named o [2000/01/23] bin/16320 fstat -f confuses some partitions o [2000/01/24] bin/16325 /stand/sysinstall writes invalid variable o [2000/01/24] kern/16335 archie ng_ppp(8) fixes, improvements o [2000/01/24] kern/16339 vm/vm_page.h PQ_L2_SIZE options too limit o [2000/01/25] ports/16347 ports Inconsistencies between Java ports o [2000/01/25] kern/16360 kernel timestamping of ICMP echo requests o [2000/01/26] kern/16362 AMD K6-3 processor is identified as a P58 o [2000/01/26] ports/16363 pst [PATCH] Upgrade ports/databases/gnats o [2000/01/26] bin/16364 [PATCH] Add msdosfs and cd9660 support to o [2000/01/26] ports/16374 ache Ports fix: news/tin o [2000/01/26] ports/16377 ports new port for PGP 6.5.1i o [2000/01/27] ports/16397 jfitz Please update net/mrtg for current o [2000/01/27] i386/16411 DUMP freezes system if uucico or samba wr o [2000/01/27] ports/16417 ports nethack3 port won't compile on 3.4-Stable o [2000/01/28] bin/16422 newfs always make root's / directory o [2000/01/28] misc/16434 Odd rlogin problem. o [2000/01/29] docs/16439 doc fdp-primer - difficulties with split SGML o [2000/01/29] ports/16452 torstenb Update ctwm port o [2000/01/30] misc/16475 search.cgi gives bogus dates o [2000/01/30] ports/16476 peter Missing option and a typo o [2000/01/30] bin/16480 locked accounts and adduser o [2000/01/30] ports/16486 ports New Port: devel/linux-jdk-1.2.2 o [2000/02/06] conf/16536 size of /var/spool/uucp/Log, a UUCP logfi o [2000/02/06] kern/16551 cosmetic cleanup in sys/dev/ppbus/pcfcloc o [2000/02/07] ports/16565 torstenb Broken non-US-ssh-port (1.2.27) o [2000/02/07] ports/16570 asami ports toplevel README.html has bad link t o [2000/02/08] ports/16580 nbm Request port removal. o [2000/02/08] conf/16584 jkh Hostname field too small during install ( o [2000/02/09] ports/16606 ports [NEW PORT] new port of Adobe Acrobat View o [2000/02/09] bin/16619 trimdomain does not handle peer domains o [2000/02/09] bin/16625 Incorrect information in routed(8) error o [2000/02/10] ports/16629 ports New port of vtun 2.0. o [2000/02/10] ports/16636 ports New port: GNU find o [2000/02/10] ports/16638 ports New port: GNU fileutils o [2000/02/10] ports/16640 ports rwhois port install tries to copy wrong l o [2000/02/10] ports/16642 jseger libwww port upgraded to 5.2.8 o [2000/02/10] misc/16647 jkh data for fortune o [2000/02/10] ports/16648 ports New port: graphics/Gdtclft (TCL interface o [2000/02/10] bin/16649 /bin/lastcomm: output contains extraneous o [2000/02/11] ports/16651 ports [ports] net/pppload fails to compile f [2000/02/11] ports/16654 mharo Some master sites have discontinued hosti o [2000/02/11] bin/16657 /bin/hostname: New feature to return subc o [2000/02/12] ports/16669 erich Update port: editors/sam o [2000/02/12] ports/16670 erich Update port: x11/9term o [2000/02/12] ports/16674 erich Update port: graphics/mplex o [2000/02/12] ports/16676 swallace Update port: games/xrisk to 2.15 f [2000/02/12] ports/16687 jedgar p5-Mysql building problem due to missing o [2000/02/12] ports/16692 will update port: sysutils/asmem: 1.5 -> 1.6 o [2000/02/12] ports/16693 ports new port: wavplay 1.4 now with the port! f [2000/02/13] ports/16703 billf port update from apache-ssl-1.3.9+1.37 to o [2000/02/13] bin/16705 ftpd doesn't support -h option o [2000/02/14] kern/16709 PATCH: make poll work for -STABLE's Audio o [2000/02/14] ports/16715 jseger Upgrade games/gnugo port to version 2.6 o [2000/02/14] ports/16718 dbaker [PATCH] misc/proxyper should obey the por o [2000/02/14] misc/16719 /stand/sysinstall does not redraw the scr o [2000/02/14] i386/16722 squid (a 3.x binary) won't run under 4.0- o [2000/02/15] bin/16726 rpc.rstatd from inetd sig11's o [2000/02/15] ports/16732 roger Update port: misc/videotext to 0.6.199910 o [2000/02/16] ports/16741 ports new port: math/gsl (The GNU Scientific Li o [2000/02/16] kern/16745 Kernel Makefile doesn't sanitise PATH [PA o [2000/02/16] ports/16763 ports New port: emulators/vxtools o [2000/02/16] docs/16764 jim Include link to "Linux-Oracle on FreeBSD" o [2000/02/16] kern/16765 Add support for mark/space parity o [2000/02/17] ports/16779 erich Update port: astro/xephem o [2000/02/17] ports/16786 jfitz Update port: lang/rexx-imc o [2000/02/17] ports/16794 ports New port: sdts++ o [2000/02/17] bin/16798 rmuser rebuilds entire passwd datebase fo o [2000/02/18] kern/16815 dillon Cannot "rm -rf" for not-existed file on r o [2000/02/19] ports/16819 ports new port audio/gramofile o [2000/02/19] misc/16830 markm PAM-related error messages on -current o [2000/02/20] kern/16838 MFC: phk's print uptime at reboot o [2000/02/20] misc/16839 dan MFC Matthew D. Fuller's patch to deal wit o [2000/02/20] misc/16840 dan MFC: Matthew D. Fuller's teach pkg_info t o [2000/02/20] misc/16842 Knob for release/Makefile to prevent dele o [2000/02/20] misc/16848 jkh Fortune has repeat entry o [2000/02/20] ports/16857 jdp cvsup coredump o [2000/02/21] ports/16872 max Update port: japanese/pine o [2000/02/21] bin/16880 [PATCH] pw(8) hardcodes directory creatio o [2000/02/21] docs/16891 unfurl Typo in header of FAQ f [2000/02/22] ports/16919 nbm UPDATE port mail/qmail-contrib missing de o [2000/02/22] bin/16924 tmpfile(3) ignores TMPDIR and always uses o [2000/02/22] bin/16926 kris [PATCH] banner doesn't allocate space fo o [2000/02/22] bin/16927 [PATCH] prevent possible race condition i o [2000/02/22] kern/16928 dynamic sysctl enhancement o [2000/02/22] bin/16929 [PATCH] prevent possible race condition i o [2000/02/23] ports/16931 ports New port: Mule-UCS 0.72 (revised) o [2000/02/23] ports/16932 marcel linux_base 6.1 in 4.0rc aborts install wi o [2000/02/23] docs/16934 doc anon transfer log doesn't log all xfers o [2000/02/23] misc/16938 FTP does not fully parse ftp:// URLs o [2000/02/23] bin/16941 routed: possible netmask problem between a [2000/02/23] gnu/16942 sheldonh send-pr(1) creates unsafe temp files o [2000/02/23] bin/16944 Give mtree(8) an ``exclude'' facility o [2000/02/23] ports/16949 ports New Port: audio/pimp3 o [2000/02/23] bin/16953 [PATCH] Fix argument overflow in dnsquery o [2000/02/23] misc/16954 [PATCH] catopen(3) in libc can overflow o o [2000/02/24] conf/16959 peter [PATCH] missing entry in /etc/make.conf o [2000/02/24] misc/16969 /kernel: psmintr: out of sync (0000 != 00 o [2000/02/24] ports/16970 ports New port of TclX-8.2 (lang/tclX82) o [2000/02/24] bin/16971 Exiting from /usr/sbin/login does not res o [2000/02/25] bin/16981 Minor nit with (un)compress and "Operatio o [2000/02/25] ports/16987 obrien pkg_delete vim-5.X incorrect o [2000/02/25] ports/16989 ports New port: comms/qico 0.45pre3 o [2000/02/25] kern/16993 marcel Linux emulator lacks setfsuid and setfsgi o [2000/02/25] ports/16997 ports Incompatibility between GNOME and KDE o [2000/02/25] ports/16998 ports Eterm fails to function from Gnome/Enligh o [2000/02/25] ports/17001 ports [PATCH] additional fvwm2 icons o [2000/02/26] kern/17003 dscheck() overzealously protects labels o o [2000/02/26] conf/17006 PCMCIA ETHERNET CARD o [2000/02/26] kern/17007 This is a code for implementing ethernet o [2000/02/26] docs/17014 doc send-pr sets MAIL_AGENT unconditionally o [2000/02/26] ports/17016 ports New port -- Wordnet -- dictionary and the o [2000/02/27] ports/17018 ports New port submission for Moneydance o [2000/02/27] conf/17022 rwatson newsyslog.conf not in sync with syslog.co o [2000/02/27] alpha/17032 alpha strtod(3) floating exception o [2000/02/27] ports/17035 ports Update port www/ijb to both use FreeBSD g o [2000/02/28] ports/17037 ports A new port of NADAR-b04 o [2000/02/28] misc/17045 Cannot install on Siemens Primergy 870 (d o [2000/02/28] ports/17047 ports Let doc++ install documentation o [2000/02/28] kern/17058 mjacob SCSI tape driver can't drive devs that ca o [2000/02/28] ports/17066 ports audio/xmms chewing CPU (and skipping too) o [2000/02/29] misc/17069 davidn /usr/sbin/pw pw(8) fails for a specific u o [2000/02/29] ports/17071 ports New port of piddle-1.0b1 o [2000/02/29] bin/17077 write() error o [2000/02/29] bin/17084 memory leak in getcap.c (libc) o [2000/02/29] bin/17085 [patch] Fix typo in src/src/games/fortune o [2000/03/01] docs/17091 phantom Missing man pages for bind o [2000/03/01] docs/17092 phantom Missing man page for nsupdate o [2000/03/01] docs/17093 phantom Missing man pages for named o [2000/03/01] docs/17101 doc Useless reference in the doscmd manpage o [2000/03/01] docs/17104 phantom gethostbyname(3) contains a reference to o [2000/03/01] docs/17105 doc Wrong crossreference in ndc(8). o [2000/03/01] ports/17111 ports [NEW PORT] New port of Jext - a powerful o [2000/03/01] ports/17116 ports New port: net/ip-tun o [2000/03/02] ports/17127 obrien Ports fix: editors/vim5 o [2000/03/02] ports/17130 ports New Ports: korean/hlatex-uhcstd o [2000/03/02] ports/17131 ports New Ports: korean/hlatexpsfonts-uhcextra o [2000/03/02] misc/17132 bugs in xdr functions o [2000/03/02] misc/17133 imp /etc/pcmcia.conf.sample error with DFE-65 o [2000/03/02] ports/17139 billf PLIST correction for Apache13-fp o [2000/03/03] ports/17151 sada updated original archive file of elisa8x8 o [2000/03/03] misc/17155 Add mount(8) check to /etc/security o [2000/03/03] ports/17157 swallace Update port: audio/xcdplayer o [2000/03/03] ports/17158 joerg Update port: deskutils/xpostit o [2000/03/03] ports/17159 swallace Update port: games/xasteroids o [2000/03/03] ports/17161 swallace Update port: games/xchomp o [2000/03/03] ports/17170 taoka Update port: x11/xcoloredit o [2000/03/04] ports/17176 ports Update ports: Mew-1.94.2 o [2000/03/04] misc/17178 -d option of lpd didnt work o [2000/03/04] misc/17185 main ncurses headerfile is installed as c o [2000/03/04] i386/17198 3.4 doesn't boot from CD on dell 3500 o [2000/03/04] ports/17199 jmz emulators/mtools configure fix o [2000/03/04] ports/17200 jseger irc/zircon update to 1.18.240 o [2000/03/04] gnu/17202 uucp grade patch and policy o [2000/03/05] conf/17207 disktab support for Fuji-MO o [2000/03/05] gnu/17214 gdb doesn't honor auto-solib-add o [2000/03/05] ports/17215 ports XFree86 SVGA SiS5597/5598 server problem o [2000/03/06] kern/17222 Avance Logic ALS/100 sound card doesn't r o [2000/03/06] kern/17224 4.0-20000214-CURRENT: pcm/csa sound - sha o [2000/03/06] bin/17226 markm ftpd can't use PAM o [2000/03/06] ports/17229 ports Update port: ftp/downloader to 1.13 (fix o [2000/03/06] misc/17232 obrien chown(1) and chgrp(1) do not honor -v fla o [2000/03/06] ports/17236 ports New ports tamago 4.0.6 a [2000/03/06] ports/17241 mharo Update: japanese/tkdesk o [2000/03/07] ports/17249 ports Updated md5 checksum for audio/xmms-livei o [2000/03/07] ports/17255 pst Update the GNATS port to 3.113 o [2000/03/07] ports/17258 ports New port- net/gtkicq o [2000/03/07] ports/17259 reg Update port www/mozilla o [2000/03/08] ports/17262 ports New port: japanese/xmsgsaver 1.7 o [2000/03/08] ports/17268 dirk new lyx port does not install locale file o [2000/03/08] docs/17269 doc Description of Symbols in nm(1) o [2000/03/08] misc/17270 FreeBSD should support nsswitch.conf, or o [2000/03/08] misc/17272 deleting a file that a program has open c o [2000/03/08] misc/17275 make release fails when making readmes fo o [2000/03/08] ports/17279 ports USA/Canada Netscape Navigator 4.72 FreeBS o [2000/03/09] ports/17282 jmacd Update port: lang/mit-scheme to 7.5.4 o [2000/03/09] ports/17283 nakai Update port: lang/slib to 2c7 o [2000/03/09] ports/17286 ports New port of ISC DHCP 3.0 beta o [2000/03/09] bin/17289 [PATCH] wrong permissions on /var/run/pri o [2000/03/09] ports/17293 ports samba port installs man-pages twice, fail o [2000/03/09] ports/17296 roger net/openh323 port broken (for -stable at o [2000/03/09] kern/17297 Panic when mounting a CDRom o [2000/03/10] i386/17299 I can't find uucleanup command in freeBSD o [2000/03/10] ports/17301 ports New port: mozilla-fonts o [2000/03/10] ports/17302 ports New Port c-nocem o [2000/03/10] kern/17304 imp More flexible support for building klds o o [2000/03/10] ports/17309 ports ports/audio/cdd doesn't support .wav outp o [2000/03/11] ports/17316 ports New Port - QuickPicks o [2000/03/11] ports/17329 ports Re: ports/17327: New port: boxes o [2000/03/11] ports/17332 ports New ports: korean/gtkcomm o [2000/03/12] ports/17336 ports ktranslator port make failure o [2000/03/12] ports/17337 ports New port for bulb-1.0.6 o [2000/03/12] ports/17342 will ports/devel/qtez build failure o [2000/03/12] kern/17347 msdosfs_rename and 'vrele: negative ref c o [2000/03/12] ports/17348 ports Update port security/libparanoia from 1.3 o [2000/03/12] kern/17349 [Patch] ESS18xx PnP Sound Card PnPid for o [2000/03/12] ports/17350 ports tripwire used mktemp(), siggen not instal o [2000/03/13] kern/17351 Add PnP ID for the "5634BTS 56K Video Rea o [2000/03/13] ports/17353 ports New port of featured ICQ client for KDE ( o [2000/03/13] ports/17355 ports Update: audio/timidity++-motif o [2000/03/13] ports/17356 ports Update: audio/timidity++-slang o [2000/03/13] ports/17357 ports Update: japanese/timidity++-slang o [2000/03/13] kern/17358 PCI ids for Aureal 8810, 8820 and 8830 au o [2000/03/13] bin/17363 crontab(1) leaves files in /var/cron/tabs o [2000/03/13] docs/17364 doc Fix minor errors and omissions in FAQ o [2000/03/13] bin/17368 billf Bad error messaging from mountd(8) o [2000/03/14] ports/17376 ports New port -- mysql-editor, web-based table o [2000/03/14] pending/17377 "Checking for rejected mail hosts:" gives o [2000/03/14] ports/17382 ports New port, devel/p5-Locale-Maketext a [2000/03/14] misc/17384 sheldonh patch for lpd to add -p option to disable o [2000/03/14] kern/17385 Support for IIT's "XC87SLC-33" numeric pr o [2000/03/15] bin/17389 /bin/cp failed on some synthetic vfs o [2000/03/15] ports/17390 ports A port to track SAINT at its current vers o [2000/03/15] bin/17395 This is a replacement for the perl versio o [2000/03/15] misc/17399 FTPing into machine slows it down o [2000/03/16] bin/17405 one more fstat patch o [2000/03/16] ports/17407 ports Port of SmallEiffel -0.77 o [2000/03/16] alpha/17411 alpha No link/activity lights Alpha ethernet ca f [2000/03/16] ports/17414 mharo upgrade and fix for the postilion port o [2000/03/16] ports/17415 ports New Port: ip-tun (update) o [2000/03/16] ports/17416 ports New Port: p5-File-CounterFile o [2000/03/16] ports/17417 ports New Port: p5-Mail-Sendmail o [2000/03/16] ports/17418 ports New Port: p5-Net-Netmask o [2000/03/16] ports/17419 ports New Port: p5-Net-SSLeay o [2000/03/16] ports/17420 ports New Port: xbone o [2000/03/16] kern/17425 nsouch [PATCH] fix two small printing errors in o [2000/03/16] ports/17427 ports a big enhancement to the flexability of t o [2000/03/16] ports/17428 ports Update: audio/timidity++-gtk o [2000/03/16] ports/17429 ports Update: audio/timidity++-tcltk o [2000/03/17] bin/17430 jkh Missing Czech keyboard in /stand/sysinsta f [2000/03/17] conf/17431 ru Estonia will not switch to summer time on o [2000/03/17] ports/17432 jmz patch-e (for locale.alias) in x11/XFree86 o [2000/03/17] ports/17436 ports New port: emulators/vxtools - utilites f o [2000/03/17] kern/17438 cg newpcm volume too low on Soundblaster Pro o [2000/03/17] kern/17441 4.0-STABLE: Intel 82801AA SMBus Controlle o [2000/03/17] ports/17445 marcel Install of linux_base-6.1 fails with rpm o [2000/03/17] ports/17447 ports Addition of a new port o [2000/03/17] ports/17451 ports shells/ksh93 is broken o [2000/03/17] ports/17452 ports Update: audio/timidity++-xaw o [2000/03/17] kern/17453 Added sys/pci/ device identification for o [2000/03/18] ports/17461 andreas Update port: databases/xmbase-grok to 1.4 o [2000/03/18] ports/17462 nakai Update port: emulators/snes9x a [2000/03/18] ports/17463 mharo Update port: graphics/cqcam o [2000/03/18] ports/17465 jmacd Update port: lang/STk to 4.0.1 o [2000/03/18] docs/17469 doc Missing man page: sigwait o [2000/03/18] docs/17470 doc Missing man page: pthread_yield o [2000/03/18] ports/17471 rse presence of devel/pth-devel port breaks w o [2000/03/18] ports/17473 ports YACC error in wine-99.11.14 port (tools/w o [2000/03/18] ports/17479 asami bsd.port.mk: PARALLEL_BUILD o [2000/03/18] bin/17480 m4 changecom doesn't work as documented o [2000/03/19] ports/17486 fenner /usr/ports/mbone/sdr doesn't work. o [2000/03/19] kern/17487 sos ide/atapi/cdrom bugs o [2000/03/19] ports/17489 ports Zephyr port is broken with Kerberos enabl o [2000/03/19] ports/17490 markm ports fail for some gnu programs as the g o [2000/03/19] kern/17493 Updates to use FreeBSD as a firewall and o [2000/03/19] kern/17495 ppc driver does not accept PNP attachment o [2000/03/19] ports/17496 ports /usr/ports/editors/emacs termcap problem o [2000/03/19] bin/17498 killall(1) is a slow perl script that's d o [2000/03/20] ports/17502 nakai [PATCH] Update of the Xfce (x11-wm/xfce) o [2000/03/20] i386/17505 Problems with with SMP on Compaq proliant s [2000/03/20] kern/17512 ken kernel message missing newline o [2000/03/20] ports/17513 ports new ports: russian/apache13-php3 (fix, pl o [2000/03/20] misc/17514 Inconsistent behaviour of "make update" [ o [2000/03/20] docs/17521 doc Proposed FAQ on assembly programming o [2000/03/21] ports/17523 ports New port: www/ssserver-1.0 o [2000/03/21] ports/17524 kris Wrong handbook chapter ref. in openssh po o [2000/03/21] ports/17525 ache [PATCH] Update of the PNG (graphics/png) o [2000/03/21] bin/17532 "host" only prints A records by default o [2000/03/21] ports/17534 ports Update of lang/clisp port, new version & o [2000/03/21] ports/17537 jfitz incorrect dependency results in bogus rei o [2000/03/21] docs/17538 jasone no man page for pthread_kill(3) and frien o [2000/03/21] kern/17539 kernel panic when asking help in visual u o [2000/03/21] docs/17544 doc login.conf(5) should have pointer to cap_ o [2000/03/22] bin/17546 Sysinstall does not let you configure NIS o [2000/03/22] ports/17547 ports new port xtrojka o [2000/03/22] docs/17552 doc Documentation error in divert(4) o [2000/03/22] bin/17555 green fstat(1) doesn't show memory-mapped files o [2000/03/22] ports/17556 ports New port: audio/linux-realplayer7 o [2000/03/22] misc/17559 [please] add 3 button mouse emulation on o [2000/03/23] docs/17566 doc [PATCH] ssh(1) and sshd(8) manpage error o [2000/03/23] ports/17569 stb Update for astro/setiathome port o [2000/03/23] ports/17572 ports [NEW PORT] New port of PVMPov-distributin o [2000/03/24] ports/17577 ports New port: hebrew/elmar-fonts o [2000/03/24] ports/17578 will GNU Pascal port o [2000/03/24] ports/17580 ports unable to make webcopy, invalid mastersit o [2000/03/24] kern/17581 devices failing probing do so silently o [2000/03/24] ports/17585 obrien Outputs small message for user of lang/gc o [2000/03/24] ports/17586 ports New port: MyODBC-2.50.28 o [2000/03/24] ports/17587 ports New port: libiodbc 2.50.3 o [2000/03/24] ports/17588 will New port: mysql++-1.6 o [2000/03/24] kern/17589 sos ata crashes when trying to extract cd-da o [2000/03/24] kern/17593 sheldonh [PATCH] Add KERNEL identifier to GENERIC f [2000/03/25] conf/17595 dan Preventing cp /etc/defaults/rc.conf /etc/ o [2000/03/25] ports/17597 ports New port: p5-Net-ext - a perl modules for o [2000/03/25] docs/17598 doc installworld over NFS documentation no lo o [2000/03/25] docs/17600 billf Error in description /usr/share/examples/ o [2000/03/25] ports/17602 jmz Port fix x11/XFree86-4.0 (make deinstall o [2000/03/25] ports/17603 ports ports/www/wwwoffle SPOOL=/home, then fail o [2000/03/26] bin/17606 shin traceroute vs. IPSEC surprise o [2000/03/26] bin/17611 f77 man page needs updated o [2000/03/27] bin/17619 pax cannot read all tar files created by o [2000/03/27] conf/17622 imp [Patch] pccard.conf for corega Ether PCM- o [2000/03/27] bin/17623 date(1) -v doesn't handle time changes (D f [2000/03/27] ports/17625 billf update port apache-ssl-1.3.12+1.39 (2nd s o [2000/03/27] i386/17628 3c509b hangs on running ifconfig f [2000/03/27] kern/17629 green "almost clone" patch for device snp o [2000/03/27] misc/17630 Install loader failed to recognize 84-key o [2000/03/27] kern/17631 netgraph is not implemented on loopback i o [2000/03/28] ports/17633 will [NEW PORT] New port of xlHtml-yet another o [2000/03/28] docs/17638 jim Added section on installing Oracle for Li o [2000/03/28] i386/17639 imp FreeBSD 4.0 /usr/src/UPDATING missing inf o [2000/03/28] bin/17640 lseek();read() -> pread() in dump and fsc o [2000/03/28] ports/17641 ports New port: sysutils/heat o [2000/03/28] ports/17646 ports Update port: cad/xcircuit o [2000/03/28] kern/17649 parallel-zip won't work with 4.0 o [2000/03/29] ports/17663 ports New port: audio/bwap o [2000/03/29] ports/17673 ports w3m port bugs o [2000/03/29] ports/17675 ports New port: findutils-4.1 o [2000/03/29] ports/17676 ports new port: astro/rmap o [2000/03/29] ports/17678 jseger Update port graphics/Mesa3 latest with pa o [2000/03/29] bin/17679 wpaul wicontrol should take multiple args on co o [2000/03/30] bin/17687 darrenr ipfilter is lacking behind the official v o [2000/03/30] kern/17688 es_callback() in /sys/pci/es1370.c does n o [2000/03/30] ports/17692 kris Unaudited SUID root on x11/kdebase11 .kss o [2000/03/30] ports/17693 ports port djview plugin for netscape-linux o [2000/03/30] bin/17694 wcstombs(), mbstowcs() not complying with o [2000/03/30] kern/17698 sheldonh [PATCH] Let Makefile.inc1 installkernel i o [2000/03/30] conf/17699 Support for dutch keyboards in the consol a [2000/03/30] kern/17702 peter Plug and Play Info for USR 56K FAX INT mo o [2000/03/30] misc/17703 dfr /usr/share/examples/kld/cdev won't compil o [2000/03/31] ports/17707 ports new port: audio/sphinx o [2000/03/31] conf/17710 /etc/defaults/make.conf doesn't contain N o [2000/03/31] bin/17720 presence of old /dev entries causes sysin o [2000/03/31] ports/17721 ports Update port: misc/ytree to 1.67 o [2000/03/31] ports/17723 ports Update port: www/boa to 0.94.6 o [2000/03/31] ports/17724 ports Update: audio/timidity++-xskin o [2000/04/01] ports/17727 ports New port: Pine with Hebrew support, see a o [2000/04/01] kern/17728 probe Macronix 98715/98715A 10/100BaseTX o [2000/04/01] misc/17737 small Major repair of PicoBSD o [2000/04/01] bin/17739 Traceroute will not compile without IPSEC o [2000/04/01] ports/17744 ports postgresql cannot be packaged because it o [2000/04/01] docs/17745 doc wrong environment variable in manpage o [2000/04/02] ports/17747 ports Ports Update: korean/ami o [2000/04/02] conf/17750 brian periodic/daily problem one day after chan o [2000/04/02] kern/17751 wpaul rl driver loaded as module when it alread o [2000/04/02] ports/17753 ports Update port: mail/wanderlust-emacs o [2000/04/02] ports/17754 ports Update ports: mail/wanderlust-{mule,emacs o [2000/04/02] bin/17756 sshd ignores .hushlogin o [2000/04/02] kern/17758 green Make sl driver dynamicallly expandable. o [2000/04/02] ports/17762 ports sysutils/flexbackup 0.9.8 needs a slight o [2000/04/02] ports/17763 ports update ports : libProplist and windowmake o [2000/04/02] bin/17764 wrong percentage completed in bad144 o [2000/04/03] ports/17768 ports [PATCH] Update of the wmakerconf (x11-wm/ o [2000/04/03] ports/17769 ports New port: sgmltools 2.0.2 o [2000/04/03] ports/17771 ports new port: japanese/elisp-manual o [2000/04/03] bin/17772 TFTP can not handle big files (> 32MBytes o [2000/04/03] kern/17774 stray irq7 1453 problems total. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 3 12:50: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4246937BEB9 for ; Mon, 3 Apr 2000 12:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA24955; Mon, 3 Apr 2000 12:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AA85837BA2C for ; Mon, 3 Apr 2000 12:44:38 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA24515; Mon, 3 Apr 2000 12:44:37 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004031944.MAA24515@freefall.freebsd.org> Date: Mon, 3 Apr 2000 12:44:37 -0700 (PDT) From: larse@isi.edu To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/17775: 4.0-STABLE: Adaptec-155-ATM at en0 causing amd problem Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17775 >Category: kern >Synopsis: 4.0-STABLE: Adaptec-155-ATM at en0 causing amd problem >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Apr 3 12:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Lars Eggert >Release: 4.0-STABLE >Organization: >Environment: FreeBSD hbo.isi.edu 4.0-STABLE FreeBSD 4.0-STABLE #0: Thu Mar 30 09:29:53 PST 2000 root@:/usr/obj/usr/src/sys/PRECISION i386 >Description: I'm seeing some extremely odd behaviour on a system that runs the amd automounter and has an Adaptec-155-ATM card at interface en0. Configuration: The system in question has two Ethernet cards, one of which (fxp0) connects the system to our LAN, the other is used locally for experiments (de0). The system also has an Adaptec-155-ATM card at interface en0, which is *not* connected to anything yet. The system is currently running 4.0-STABLE, but I've seen the same behavior under 3.2-RELEASE as well: As long as I leave en0 unconfigured (ifconfig en0 says "en0: flags=800 mtu 9180"), everything is fine. If I put an ifconfig entry in rc.conf.local (e.g. ifconfig_en0="10.9.112.211 netmask 255.255.240.0 up"), the automounter fails to work. Note that amd (like all other network services) uses the hosts main interface (fxp0). Here's what I see at boot time, as soon as amd starts: Mar 30 14:27:12 mul /kernel: atm_rtrequest: RTM_RESOLVE request detected? Mar 30 14:27:12 mul /kernel: nfs send error 65 for server pid133@mul:/nfs Mar 30 14:27:12 mul /kernel: nfs send error 65 for server pid133@mul:/home amd fails, but the rest of the network services seem unaffected. Any ideas? Please let me know if you require more information, I'd be happy to poke around the system a bit. >How-To-Repeat: see above >Fix: Workarounds: 1. If I manually configure en0 after the system has booted (and amd has started), I do not see any problems, i.e. amd continues to work. 2. If I replace the Adaptec card with an Efficient Networks ENI-155p card, amd also works fine; I do not see the messages above. (Unfortunately, we don't have enough of those.) >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 3 14: 1: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C860A37C2A3 for ; Mon, 3 Apr 2000 14:00:56 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA33329; Mon, 3 Apr 2000 14:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from galahad.camelot.com (Galahad.Camelot.com [192.55.203.135]) by hub.freebsd.org (Postfix) with ESMTP id 9DD2B37BECD for ; Mon, 3 Apr 2000 13:49:55 -0700 (PDT) (envelope-from cjohnson@camelot.com) Received: by galahad.camelot.com (Postfix, from userid 2455) id BFD9212C30; Mon, 3 Apr 2000 16:49:10 -0400 (EDT) Message-Id: <20000403204910.BFD9212C30@galahad.camelot.com> Date: Mon, 3 Apr 2000 16:49:10 -0400 (EDT) From: cjohnson@camelot.com Reply-To: cjohnson@camelot.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/17776: RAID5 with crashed disk corrupts filesystem. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17776 >Category: kern >Synopsis: RAID5 with crashed disk corrupts filesystem. >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Apr 3 14:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Christopher T. Johnson >Release: FreeBSD 4.0-RELEASE i386 >Organization: Paladin Software >Environment: Dual processor P233MMX running FreeBSD 4.0-Release. No IDE. Two scsi chains. >Description: I've been having trouble with my filesystems becoming corrupt and wanted to verify if it was vinum RAID5 or R4.0. Four disks in RAID5 configuration (VINUM config included) vinum start vinum init myraid.p0 newfs -v /dev/vinum/myraid mount /dev/vinum/myraid /release cd /release restore -rf /dev/rsa0 sync sync su-2.03# fsck -n /release ** /dev/vinum/myraid (NO WRITE) ** Last Mounted on /release ** Phase 1 - Check Blocks and Sizes ** Phase 2 - Check Pathnames ** Phase 3 - Check Connectivity ** Phase 4 - Check Reference Counts ** Phase 5 - Check Cyl groups 58609 files, 4357955 used, 3908728 free (6704 frags, 487753 blocks, 0.1% fragmentation) cd / umount /release vinum vinum -> list 5 drives: D drv3 State: up Device /dev/da1s1e Avail: 1372/4149 MB (33%) D drv1 State: up Device /dev/da3s1a Avail: 0/2777 MB (0%) D drv2 State: up Device /dev/da4s1a Avail: 0/2777 MB (0%) D drv4 State: up Device /dev/da5s1e Avail: 0/2014 MB (0%) D drv5 State: up Device /dev/da6s1e Avail: 0/2776 MB (0%) 2 volumes: V quick State: up Plexes: 1 Size: 2013 MB V myraid State: up Plexes: 1 Size: 8329 MB 2 plexes: P quick.p0 C State: up Subdisks: 1 Size: 2013 MB P myraid.p0 R5 State: up Subdisks: 4 Size: 8329 MB 5 subdisks: S quick.p0.s0 State: up PO: 0 B Size: 2013 MB S myraid.p0.s0 State: up PO: 0 B Size: 2776 MB S myraid.p0.s1 State: up PO: 128 kB Size: 2776 MB S myraid.p0.s2 State: up PO: 256 kB Size: 2776 MB S myraid.p0.s3 State: up PO: 384 kB Size: 2776 MB vinum -> ld D drv3 State: up Device /dev/da1s1e Avail: 1372/4149 MB (33%) D drv1 State: up Device /dev/da3s1a Avail: 0/2777 MB (0%) D drv2 State: up Device /dev/da4s1a Avail: 0/2777 MB (0%) D drv4 State: up Device /dev/da5s1e Avail: 0/2014 MB (0%) D drv5 State: up Device /dev/da6s1e Avail: 0/2776 MB (0%) # # Stop the DRIVE which crashes the subdisk. # vinum -> stop -f drv5 vinum -> list 5 drives: D drv3 State: up Device /dev/da1s1e Avail: 1372/4149 MB (33%) D drv1 State: up Device /dev/da3s1a Avail: 0/2777 MB (0%) D drv2 State: up Device /dev/da4s1a Avail: 0/2777 MB (0%) D drv4 State: up Device /dev/da5s1e Avail: 0/2014 MB (0%) D drv5 State: down Device /dev/da6s1e Avail: 0/2776 MB (0%) 2 volumes: V quick State: up Plexes: 1 Size: 2013 MB V myraid State: up Plexes: 1 Size: 8329 MB 2 plexes: P quick.p0 C State: up Subdisks: 1 Size: 2013 MB P myraid.p0 R5 State: degraded Subdisks: 4 Size: 8329 MB 5 subdisks: S quick.p0.s0 State: up PO: 0 B Size: 2013 MB S myraid.p0.s0 State: up PO: 0 B Size: 2776 MB S myraid.p0.s1 State: up PO: 128 kB Size: 2776 MB S myraid.p0.s2 State: up PO: 256 kB Size: 2776 MB S myraid.p0.s3 State: crashed PO: 384 kB Size: 2776 MB vinum -> quit su-2.03# fsck -n /release ** /dev/vinum/myraid (NO WRITE) ** Last Mounted on /release ** Phase 1 - Check Blocks and Sizes INCORRECT BLOCK COUNT I=190907 (304 should be 208) CORRECT? no INCORRECT BLOCK COUNT I=706619 (240 should be 208) CORRECT? no PARTIALLY TRUNCATED INODE I=777784 SALVAGE? no INCORRECT BLOCK COUNT I=1047619 (416 should be 208) CORRECT? no INCORRECT BLOCK COUNT I=1095394 (592 should be 208) CORRECT? no 1936 DUP I=1103333 1937 DUP I=1103333 1938 DUP I=1103333 1939 DUP I=1103333 1940 DUP I=1103333 1941 DUP I=1103333 1942 DUP I=1103333 1943 DUP I=1103333 1936 DUP I=1103333 1937 DUP I=1103333 1938 DUP I=1103333 EXCESSIVE DUP BLKS I=1103333 CONTINUE? yes INCORRECT BLOCK COUNT I=1103333 (752 should be 228) CORRECT? no PARTIALLY TRUNCATED INODE I=1158675 SALVAGE? no 3616 DUP I=1158675 3617 DUP I=1158675 3618 DUP I=1158675 3619 DUP I=1158675 3620 DUP I=1158675 3621 DUP I=1158675 3622 DUP I=1158675 3623 DUP I=1158675 3616 DUP I=1158675 3617 DUP I=1158675 3618 DUP I=1158675 EXCESSIVE DUP BLKS I=1158675 CONTINUE? yes INCORRECT BLOCK COUNT I=1158675 (912 should be 228) CORRECT? no INCORRECT BLOCK COUNT I=1388912 (272 should be 208) CORRECT? no ctrl-C --------------------------- The numbers 208 and 228 show up many many times if I let this run to completion. -------------------------- vinum start drv5 stop vinum start # sd goes to reborn # plex goes to "flaky" setstate up myraid.p0.s3 setstate up myraid.p0 # # Yes I know this is NOT how you are suppose to do it. # su-2.03# !fsck fsck -n /release ** /dev/vinum/myraid (NO WRITE) ** Last Mounted on /release ** Phase 1 - Check Blocks and Sizes ** Phase 2 - Check Pathnames ** Phase 3 - Check Connectivity ** Phase 4 - Check Reference Counts ** Phase 5 - Check Cyl groups 58609 files, 4357955 used, 3908728 free (6704 frags, 487753 blocks, 0.1% fragmentation) camcontrol devlist at scbus0 target 0 lun 0 (pass0,da0) at scbus0 target 4 lun 0 (pass1,sa0) at scbus0 target 5 lun 0 (pass2,cd0) at scbus0 target 6 lun 0 (pass3,cd1) at scbus1 target 0 lun 0 (pass4,da1) at scbus1 target 1 lun 0 (pass5,da2) at scbus1 target 2 lun 0 (pass6,da3) at scbus1 target 3 lun 0 (pass7,da4) at scbus1 target 5 lun 0 (pass8,da5) at scbus1 target 6 lun 0 (pass9,da6) >How-To-Repeat: See description. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 3 14:20: 4 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2884237B5CA for ; Mon, 3 Apr 2000 14:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA35512; Mon, 3 Apr 2000 14:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 3 Apr 2000 14:20:02 -0700 (PDT) Message-Id: <200004032120.OAA35512@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Reto Burkhalter Subject: Re: kern/16121: Unexptected busfree with AIC 7890/91 (ASUS P2B-DS) Reply-To: Reto Burkhalter Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/16121; it has been noted by GNATS. From: Reto Burkhalter To: freebsd-gnats-submit@FreeBSD.org, borki@xs.use.ch Cc: Subject: Re: kern/16121: Unexptected busfree with AIC 7890/91 (ASUS P2B-DS) Date: Mon, 03 Apr 2000 23:12:02 +0200 The problem seems to be solved. A disk from the drive array failed and possibly caused timeouts, which the raid controller couldn't handle. No problems since the new disk is in the array. Thanks for all your help, especially Ken! -Reto To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 3 14:43:42 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B19B437B79B; Mon, 3 Apr 2000 14:43:40 -0700 (PDT) (envelope-from ken@FreeBSD.org) Received: (from ken@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA37523; Mon, 3 Apr 2000 14:43:40 -0700 (PDT) (envelope-from ken@FreeBSD.org) Date: Mon, 3 Apr 2000 14:43:40 -0700 (PDT) From: Message-Id: <200004032143.OAA37523@freefall.freebsd.org> To: borki@xs.use.ch, ken@FreeBSD.org, freebsd-bugs@FreeBSD.org, ken@FreeBSD.org Subject: Re: kern/16121: Unexptected busfree with AIC 7890/91 (ASUS P2B-DS) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Unexptected busfree with AIC 7890/91 (ASUS P2B-DS) State-Changed-From-To: open->closed State-Changed-By: ken State-Changed-When: Mon Apr 3 14:42:49 PDT 2000 State-Changed-Why: Submitter reports that the bug is fixed. Responsible-Changed-From-To: freebsd-bugs->ken Responsible-Changed-By: ken Responsible-Changed-When: Mon Apr 3 14:42:49 PDT 2000 Responsible-Changed-Why: I'm closing this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 3 18:20: 4 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A501437B818 for ; Mon, 3 Apr 2000 18:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA57168; Mon, 3 Apr 2000 18:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C35B837B76C for ; Mon, 3 Apr 2000 18:17:34 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA56780; Mon, 3 Apr 2000 18:17:34 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004040117.SAA56780@freefall.freebsd.org> Date: Mon, 3 Apr 2000 18:17:34 -0700 (PDT) From: max@idfw.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/17778: 4.0-RELEASE will not recognize IDE Controllers Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17778 >Category: i386 >Synopsis: 4.0-RELEASE will not recognize IDE Controllers >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Apr 3 18:20:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Max Fine >Release: 4.0-RELEASE >Organization: >Environment: FreeBSD FreeBSD.dfw.com 3.4-RELEASE FreeBSD 3.4-RELEASE #5: Mon Feb 7 18:37:22 CST 2000 root@FreeBSD.dfw.com:/usr/src/sys/compile/MYKERNEL i386 *** This is when the machine is running 3.4-RELEASE *** >Description: My system is a Pentium 166 with a MAtsonic MS-5120 Motherboard. I have been running FreeBSD on this system since 2.2.5-RELEASE. Every upgrade since then has worked fine. When I attempt to install 4.0-RELEASE it will not recognize my IDE controllers. >How-To-Repeat: Run the install from floppies. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 3 18:30: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A51BC37B7E2 for ; Mon, 3 Apr 2000 18:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA58165; Mon, 3 Apr 2000 18:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9303C37B768 for ; Mon, 3 Apr 2000 18:26:21 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA57865; Mon, 3 Apr 2000 18:26:21 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004040126.SAA57865@freefall.freebsd.org> Date: Mon, 3 Apr 2000 18:26:21 -0700 (PDT) From: tdwyer@bigpond.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/17779: ADIC 1200d (DAT changer) and Symbios SCSI controller: does not work as expected using chio Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17779 >Category: kern >Synopsis: ADIC 1200d (DAT changer) and Symbios SCSI controller: does not work as expected using chio >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Apr 3 18:30:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Terry Dwyer >Release: FreeBSD-3.4-Stable #0: Mon Apr 3 06:51:46 WST 2000 >Organization: home >Environment: FreeBSD charon.ctnet.org.au 3.4-STABLE FreeBSD 3.4-STABLE #0: Mon Apr 3 06:51:46 WST 2000 tdwyer@charon.ctnet.org.au:/usr/src/sys/compile/CHARON i386 >Description: Machine: ASUS P2B motherboard Celeron 366 ADIC 1200D DAT Autochanger with WangDAT 3400DX DDS2 drive 2 X IDE drives 4 X SCSI drives 1 X SCSI CD ncr0: rev 0x26 int a irq 11 on pci0.12.0 sa0 at ncr0 bus 0 target 3 lun 0 sa0: Removable Sequential Access SCSI-2 device sa0: 5.000MB/s transfers (5.000MHz, offset 16) ch0 at ncr0 bus 0 target 6 lun 0 ch0: Removable Changer SCSI-2 device ch0: 3.300MB/s transfers ch0: 12 slots, 1 drive, 1 picker, 1 portal Status after chio ielem: ( Tape slots all full, Drive 0 empty ) charon# chio params /dev/ch0: 12 slots, 1 drive, 1 picker, 1 portal /dev/ch0: current picker: 0 charon# chio status picker 0: slot 0: slot 0: slot 0: slot 0: slot 0: slot 0: slot 0: slot 0: slot 0: slot 0: slot 0: slot 0: portal 0: drive 0: Tape slots are all shown as slot 0, status does not change after any action. Doing a chio status on a specific slot always produces the same result: slot 0: Doing a chio status on a the tape drive always produces the same result: drive 0: From what I've read, this seems to be a problem with the Symbios SCSI driver, that's why I've reported it as a kernel bug. I don't have an adaptec controller to test the changer with so I can't confirm that it's only a Symbios problem. I'm prepared to do any testing required by someone providing patches. >How-To-Repeat: Behaviour is the same every time >Fix: Unfortunately I have no fix >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 3 19: 7:13 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from orion.ac.hmc.edu (Orion.AC.HMC.Edu [134.173.32.20]) by hub.freebsd.org (Postfix) with ESMTP id 753B937B5E1 for ; Mon, 3 Apr 2000 19:07:03 -0700 (PDT) (envelope-from brdavis@orion.ac.hmc.edu) Received: (from brdavis@localhost) by orion.ac.hmc.edu (8.8.8/8.8.8) id TAA24502 for freebsd-bugs@freebsd.org; Mon, 3 Apr 2000 19:06:57 -0700 (PDT) Date: Mon, 3 Apr 2000 19:06:57 -0700 From: Brooks Davis To: freebsd-bugs@freebsd.org Subject: kern/13770 Almost clone update for kernel ppp implementation Message-ID: <20000403190657.A21650@orion.ac.hmc.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre4i Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Since these "almost close" patches have been getting a look recently, I figured I mention this one I just noticed. It's been in phk's queue for six months so someone else might want to take a look at it. If this and the sl patch someone mentioned this weekend are commited, that leaves 9 pseudo-devices to convert: gif, faith, vcoda, ccd, i4btrc, i4brbch, i4btel, i4bipr, and i4bisppp. -- Brooks -- Any statement of the form "X is the one, true Y" is FALSE. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 3 20: 0: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6A60237B758 for ; Mon, 3 Apr 2000 20:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA66557; Mon, 3 Apr 2000 20:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A292B37B771 for ; Mon, 3 Apr 2000 19:52:43 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA65946; Mon, 3 Apr 2000 19:52:42 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004040252.TAA65946@freefall.freebsd.org> Date: Mon, 3 Apr 2000 19:52:42 -0700 (PDT) From: bbraun@synack.net To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/17782: PC Card recognition w/ PCIC and no IRQ Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17782 >Category: kern >Synopsis: PC Card recognition w/ PCIC and no IRQ >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Apr 3 20:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Rob Braun >Release: 4.0-RELEASE >Organization: >Environment: >Description: The Toshiba libretto uses a ToPIC97 PCI->CardBus bridge that does not have an IRQ, so interrupt driven card insertion/removal detection does not work with this controller. It does not appear that freebsd's pccard driver is capable of PIO. >How-To-Repeat: 1) Install FreeBSD 4.0 on a Libretto 100 2) Insert PCMCIA card 3) Watch nothing happen >Fix: Support for PIO in the pccard driver, or if it's already there, make it more obvious. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 4 2: 5:50 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 742E337B6C6; Tue, 4 Apr 2000 02:05:48 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA03478; Tue, 4 Apr 2000 02:05:47 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Date: Tue, 4 Apr 2000 02:05:47 -0700 (PDT) From: Message-Id: <200004040905.CAA03478@freefall.freebsd.org> To: jon@oaktree.co.uk, asmodai@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: pending/17343: /dev/da4* gets created improperly Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: /dev/da4* gets created improperly State-Changed-From-To: open->closed State-Changed-By: asmodai State-Changed-When: Tue Apr 4 02:00:00 PDT 2000 State-Changed-Why: MAKDEV always needed to be used as MAKEDEV da4s1a for example. MAKEDEV all is special case which does a bit more. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 4 3:20: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 14CFA37B79D for ; Tue, 4 Apr 2000 03:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA11073; Tue, 4 Apr 2000 03:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from axl.ops.uunet.co.za (axl.ops.uunet.co.za [196.31.1.175]) by hub.freebsd.org (Postfix) with ESMTP id 3868437B7F9 for ; Tue, 4 Apr 2000 03:10:13 -0700 (PDT) (envelope-from sheldonh@axl.ops.uunet.co.za) Received: from sheldonh (helo=axl.ops.uunet.co.za) by axl.ops.uunet.co.za with local-esmtp (Exim 3.13 #1) id 12cQHi-000MZw-00 for FreeBSD-gnats-submit@freebsd.org; Tue, 04 Apr 2000 12:10:10 +0200 Message-Id: <86795.954843010@axl.ops.uunet.co.za> Date: Tue, 04 Apr 2000 12:10:10 +0200 From: Sheldon Hearn Reply-To: Sheldon Hearn To: FreeBSD-gnats-submit@freebsd.org Subject: bin/17786: [TEST] I wish for something I'm too lazy to do myself Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Note: There was a bad value `wish' for the field `>Class:'. It was set to the default value of `sw-bug'. >Number: 17786 >Category: bin >Synopsis: [TEST] I wish for something I'm too lazy to do myself >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Apr 4 03:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Sheldon Hearn >Release: FreeBSD 4.0-CURRENT i386 >Organization: N/A >Environment: My couch, with crisps and a beer. >Description: I wish FreeBSD would just get off its arse and do everything I want it to do. I want it to support all my hardware. I want everything to be documented to my satisfaction. I want to be notified of every change that affects me directly, but I don't want to read anything that's not pertinent to my configuration. >How-To-Repeat: Just look at FreeBSD. Notice how it doesn't do what I w2ant. >Fix: Stop having lives and giveme what I want! >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 4 3:47: 0 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 31DB737B740; Tue, 4 Apr 2000 03:46:59 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA13468; Tue, 4 Apr 2000 03:46:59 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 4 Apr 2000 03:46:59 -0700 (PDT) From: Message-Id: <200004041046.DAA13468@freefall.freebsd.org> To: sheldonh@uunet.co.za, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, sheldonh@FreeBSD.org Subject: Re: bin/17786: [TEST] I wish for something I'm too lazy to do myself Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [TEST] I wish for something I'm too lazy to do myself State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Tue Apr 4 03:46:29 PDT 2000 State-Changed-Why: Test complete. Responsible-Changed-From-To: freebsd-bugs->sheldonh Responsible-Changed-By: sheldonh Responsible-Changed-When: Tue Apr 4 03:46:29 PDT 2000 Responsible-Changed-Why: My test. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 4 5:50: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 124DB37B801 for ; Tue, 4 Apr 2000 05:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA26236; Tue, 4 Apr 2000 05:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from christel.heitec.net (christel.heitec.net [212.204.92.3]) by hub.freebsd.org (Postfix) with ESMTP id E6DAA37B8DE for ; Tue, 4 Apr 2000 05:48:14 -0700 (PDT) (envelope-from bdluevel@heitec.net) Received: from clifton.iplan.heitec.net (paladin.heitec.net [212.204.92.251]) by christel.heitec.net (Postfix) with ESMTP id A643F354810 for ; Tue, 4 Apr 2000 14:50:49 +0200 (CEST) Received: (from root@localhost) by clifton.iplan.heitec.net (8.9.3/8.9.3) id OAA00426 for freebsd-gnats-submit@freebsd.org@christel.heitec.net; Tue, 4 Apr 2000 14:49:23 +0200 (CEST) (envelope-from bdluevel@heitec.net) Message-Id: <200004041249.OAA00426@clifton.iplan.heitec.net> Date: Tue, 4 Apr 2000 14:33:02 +0200 (CEST) From: Bernd Luevelsmeyer Reply-To: bdluevel@heitec.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: misc/17788: several tools fail if /boot/loader bypassed Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17788 >Category: misc >Synopsis: systat, top, swapinfo fail if /boot/loader not used >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Apr 4 05:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Bernd Luevelsmeyer >Release: FreeBSD 5.0-CURRENT i386 >Organization: Heitec AG >Environment: Pentium 233, with FreeBSD; current cvsup'ed and made buildworld yesterday >Description: When starting 'top' or 'systat', they fail with 'top: nlist failed' or 'systat: nlist: can't find following symbols: _cp_time _ccpu _fscale'. They fail whether I'm root or not. 'swapinfo' also fails. I have procfs in the kernel, and it's mounted too. As sheldonh@uunet.co.za advised in freebsd-questions, this effect doesn't happen when I don't have a '/boot.config' with '/kernel' in it. >How-To-Repeat: a) echo '/kernel'>/boot.config b) reboot c) (log in etc.) d) systat >Fix: Don't bypass /boot/loader (workaround) >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 4 10:10: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2D37A37B52D for ; Tue, 4 Apr 2000 10:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA20536; Tue, 4 Apr 2000 10:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from galahad.camelot.com (Galahad.Camelot.com [192.55.203.135]) by hub.freebsd.org (Postfix) with ESMTP id 1BC6A37B9A1 for ; Tue, 4 Apr 2000 10:07:10 -0700 (PDT) (envelope-from cjohnson@camelot.com) Received: by galahad.camelot.com (Postfix, from userid 2455) id C6F2612C19; Tue, 4 Apr 2000 13:07:07 -0400 (EDT) Message-Id: <20000404170707.C6F2612C19@galahad.camelot.com> Date: Tue, 4 Apr 2000 13:07:07 -0400 (EDT) From: cjohnson@camelot.com Reply-To: cjohnson@camelot.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/17791: Restore does not handle bad or missing tapes well. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17791 >Category: bin >Synopsis: Restore does not handle bad or missing tapes well. >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Apr 4 10:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Christopher T. Johnson >Release: FreeBSD 4.0-RELEASE i386 >Organization: Paladin Software >Environment: FreeBSD 4.0-RELEASE with EXABYTE 8200 >Description: Did full back up of 5GBytes of data onto 4 tapes using dump. First two tapes are full with no errors. 3rd tape had IO error shortly into writing. Dump then asked for 4th tape and completed the dump to that tape. On restoring this data, when restore found the IO error on tape 3 it did not allow a method for moving on. Selecting "continue" caused it to retry over and over again. Never moving past the error, never generating an ENOSPACE (End of Tape) error. When the question is answered "no" the restore ends. restore -Rf /dev/rsa0 demanded tape 3 again, it wouldn't let me put tape 4 into the drive. Modifying /usr/src/sbin/restore/tape.c to make 'R' ask the user for the tape volume number. This allowed me to move on to the last tape which then told me about lots of missing files (Lost on the dump or restore?) Finally it read the last of tape four and ended WITHOUT SETTING OWNERS OF PERMISSIONS! >How-To-Repeat: see description. >Fix: Well, this will get the data in but I don't like it at all. RCS file: /usr/cvsroot/src/sbin/restore/tape.c,v retrieving revision 1.16 diff -u -r1.16 tape.c --- tape.c 1999/08/28 00:14:08 1.16 +++ tape.c 2000/04/03 06:13:57 @@ -315,7 +315,7 @@ again: if (pipein) done(1); /* pipes do not get a second chance */ - if (command == 'R' || command == 'r' || curfile.action != SKIP) { + if (command == 'r' || curfile.action != SKIP) { newvol = nextvol; wantnext = 1; } else { >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 4 11: 0: 9 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0767037BB9B for ; Tue, 4 Apr 2000 11:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA26015; Tue, 4 Apr 2000 11:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E0D9537B882 for ; Tue, 4 Apr 2000 10:56:58 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA25738; Tue, 4 Apr 2000 10:56:58 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004041756.KAA25738@freefall.freebsd.org> Date: Tue, 4 Apr 2000 10:56:58 -0700 (PDT) From: lost@quake.ru To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/17793: Keyboard not found Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17793 >Category: misc >Synopsis: Keyboard not found >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Apr 4 11:00:03 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Danila Prusakov >Release: 4.0 RELEAS From iso >Organization: Delta-com company >Environment: N/A >Description: Install with CD-ROM or Flopies impossible Message on the screen: keyboard: no BTX loader.... And nothing further does not occur I have INTEL MU410EX motherbard with ps/2 keyboard >How-To-Repeat: always >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 4 13:15:54 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BA64837B85B; Tue, 4 Apr 2000 13:15:52 -0700 (PDT) (envelope-from n_hibma@FreeBSD.org) Received: (from n_hibma@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA41079; Tue, 4 Apr 2000 13:15:53 -0700 (PDT) (envelope-from n_hibma@FreeBSD.org) Date: Tue, 4 Apr 2000 13:15:53 -0700 (PDT) From: Message-Id: <200004042015.NAA41079@freefall.freebsd.org> To: norbert.meissner@daimlerchrysler.com, n_hibma@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/17649: parallel-zip won't work with 4.0 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: parallel-zip won't work with 4.0 State-Changed-From-To: open->closed State-Changed-By: n_hibma State-Changed-When: Tue Apr 4 13:15:25 PDT 2000 State-Changed-Why: Duplicate of 16153 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 4 13:16:58 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 19A5D37B864; Tue, 4 Apr 2000 13:16:57 -0700 (PDT) (envelope-from n_hibma@FreeBSD.org) Received: (from n_hibma@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA41212; Tue, 4 Apr 2000 13:16:57 -0700 (PDT) (envelope-from n_hibma@FreeBSD.org) Date: Tue, 4 Apr 2000 13:16:57 -0700 (PDT) From: Message-Id: <200004042016.NAA41212@freefall.freebsd.org> To: kdrobnac@mvnc.edu, n_hibma@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/17701: Parallel Port Zip Drive (vpo) broken in 4.0-RELEASE and 4.0-STABLE Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Parallel Port Zip Drive (vpo) broken in 4.0-RELEASE and 4.0-STABLE State-Changed-From-To: open->closed State-Changed-By: n_hibma State-Changed-When: Tue Apr 4 13:16:02 PDT 2000 State-Changed-Why: Duplicta ate of 16153 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 4 13:20:10 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 333A237B9EB for ; Tue, 4 Apr 2000 13:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA41694; Tue, 4 Apr 2000 13:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from cgmd76206.chello.nl (cgmd76206.chello.nl [212.83.76.206]) by hub.freebsd.org (Postfix) with ESMTP id D1A6E37B908 for ; Tue, 4 Apr 2000 13:16:53 -0700 (PDT) (envelope-from edwin@cgmd76206.chello.nl) Received: (from edwin@localhost) by cgmd76206.chello.nl (8.9.3/8.9.3) id WAA01996; Tue, 4 Apr 2000 22:16:51 +0200 (CEST) (envelope-from mavetju@chello.nl) Message-Id: <200004042016.WAA01996@cgmd76206.chello.nl> Date: Tue, 4 Apr 2000 22:16:51 +0200 (CEST) From: mavetju@chello.nl Reply-To: mavetju@chello.nl To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/17796: pcm driver failes to load for Neomagic on IBM Thinkpad 390 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17796 >Category: kern >Synopsis: pcm drivers failes to load for Neomagic on IBM Thinkpad 390 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Apr 4 13:20:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Edwin Groothuis, Joost Bekkers >Release: FreeBSD 4.0-RELEASE i386 >Organization: - >Environment: FreeBSD 4.0 on an IBM thinkpad with a NeoMagic 256AX Audio Controller. Version of filles: ac97.c: 1.7 mixer.c: 1.5 sound.c: 1.18 neomagic.c: 1.8 It worked fine under 3.4 >Description: I've talked to Guido van Rooij about this, he advised me to use the new sources. It didn't work, it hangs just before the detection of the exact chipset. What is happening is that the call to ac97_create() works and returns a valid value, then ac97_initmixer() is called, the call to "i=rdcd(codec,AC97_REG_RESET)" is done and that one never returns. When looking deeper into it, it hangs in the call to nm_rd called from nm_rdcd() in neomagic.c: x=nm_rd(sc,sc->ac97_base+regno,2) In the kernel config it's defined as: device pcm >How-To-Repeat: >Fix: None known by us, we don't have enough information regarding the hardware. We would like to be used as guinnae-pigs for this if needed. If more information is needed please let us know. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 4 14:30: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1ADEB37B7B9 for ; Tue, 4 Apr 2000 14:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA49113; Tue, 4 Apr 2000 14:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 4 Apr 2000 14:30:03 -0700 (PDT) Message-Id: <200004042130.OAA49113@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Daniel Hagan Subject: Re: bin/17694: wcstombs(), mbstowcs() not complying with standard Reply-To: Daniel Hagan Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/17694; it has been noted by GNATS. From: Daniel Hagan To: freebsd-gnats-submit@FreeBSD.org, mikko@dynas.se Cc: bde@zeta.org.au Subject: Re: bin/17694: wcstombs(), mbstowcs() not complying with standard Date: Tue, 04 Apr 2000 17:23:22 -0400 DEC (Compaq) Tru64 UNIX v. 4.0 D+ supports passing NULL in to find the length required. Just to let you guys know. Daniel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 4 15:20: 4 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CC45537B77C for ; Tue, 4 Apr 2000 15:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA53708; Tue, 4 Apr 2000 15:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 4 Apr 2000 15:20:02 -0700 (PDT) Message-Id: <200004042220.PAA53708@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Nick Hibma Subject: Re: kern/16153: no more parallel port zip drive Reply-To: Nick Hibma Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/16153; it has been noted by GNATS. From: Nick Hibma To: freebsd-gnats-submit@FreeBSD.org, jfh@jfh00.fernuni-hagen.de Cc: Subject: Re: kern/16153: no more parallel port zip drive Date: Tue, 04 Apr 2000 22:21:20 +0000 I've spent some time trying to track this down, but failed unfortunately. As far as I can see the problem is somewhere in the inner core of the ppbus. The drive responds fairly normally and returns the 36 bytes CAM requested (INQUIRY command). But then ppbus/vpo bails out with a DATA_OVERFLOW error '...error/timeout (5)'. Nick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 4 15:40: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 21A3437B8CC for ; Tue, 4 Apr 2000 15:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA55393; Tue, 4 Apr 2000 15:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2F30B37B5AC for ; Tue, 4 Apr 2000 15:38:40 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA55218; Tue, 4 Apr 2000 15:38:40 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004042238.PAA55218@freefall.freebsd.org> Date: Tue, 4 Apr 2000 15:38:40 -0700 (PDT) From: jose@we.lc.ehu.es To: freebsd-gnats-submit@FreeBSD.org Subject: i386/17800: [PATCH] problem with statclock initialization Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17800 >Category: i386 >Synopsis: [PATCH] problem with statclock initialization >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Apr 4 15:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Jose M. Alcaide >Release: 3.4, 4.0, -CURRENT :-) >Organization: Universidad del Pais Vasco - Dept. de Electricidad y Electronica >Environment: FreeBSD v-ger.we.lc.ehu.es 3.4-RELEASE FreeBSD 3.4-RELEASE #0: Tue Apr 4 23:53:52 CEST 2000 root@v-ger.we.lc.ehu.es:/usr/src/sys/compile/V-GER i386 >Description: I found that the RTC does not generate statclock interrupts on a Dell Inspiron 3700 laptop under some circumstances (after rebooting while connected to AC power). Probably the BIOS fiddles the MC146818A in such a way that an interrupt is pending when the kernel initializes the system clocks. The routine cpu_initclocks() should ensure that there are no RTC interrupts pending before enabling IRQ8 in the ICU. This can be easily accomplished simply reading the RTC_INTR register. I tested this solution on my I3.7k laptop, and now the statclock always works. Maybe other laptops are affected by the same problem. >How-To-Repeat: Install FreeBSD 3.x, 4.0-STABLE or 5.0-CURRENT on a Dell Inspiron 3700 :-) Be sure that apm(4)'s 0x20 flag is _not_ set. Reboot with shutdown -r (warm boot). Type "vmstat -i" or "systat -vmstat". >Fix: The following patch (against 4.0-RELEASE's clock.c, but I think it is applicable to -CURRENT) does the trick: --------------------------- CUT HERE -------------------------- --- sys/i386/isa/clock.c.orig Tue Jan 4 23:24:59 2000 +++ sys/i386/isa/clock.c Wed Apr 5 00:04:45 2000 @@ -1022,6 +1022,7 @@ /* Initialize RTC. */ writertc(RTC_STATUSA, rtc_statusa); writertc(RTC_STATUSB, RTCSB_24HR); + rtcin(RTC_INTR); /* clear any pending interrupt */ /* Don't bother enabling the statistics clock. */ if (statclock_disable) --------------------------- CUT HERE -------------------------- >Release-Note: >Audit-Trail: >Unformatted: X-Send-Pr-Version: www-1.0 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 4 15:50: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DD88A37B6D1 for ; Tue, 4 Apr 2000 15:50:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA56062; Tue, 4 Apr 2000 15:50:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 4 Apr 2000 15:50:04 -0700 (PDT) Message-Id: <200004042250.PAA56062@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Nick Hibma Subject: Re: kern/16153: no more parallel port zip drive Reply-To: Nick Hibma Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/16153; it has been noted by GNATS. From: Nick Hibma To: freebsd-gnats-submit@FreeBSD.org, jfh@jfh00.fernuni-hagen.de Cc: Subject: Re: kern/16153: no more parallel port zip drive Date: Tue, 04 Apr 2000 22:46:50 +0000 FYI, a piece of log file to show that the bug must be lower down and most probably is not the drives fault: vpo0: XPT_SCSI_IO (0x12) request count = 0, r = 0xa8 count = 1, r = 0xa8 count = 2, r = 0xa8 .... count = 35, r = 0xa8 count = 36, r = 0xa8 vpo_do_scsi = 0, status = 0x0, count = 36, vpo_error = 5 12 0 0 0 24 0 vpo0: VP0 error/timeout (5) vpo0: XPT_SCSI_IO (0x12) request vpo_do_scsi = 0, status = 0x0, count = 36, vpo_error = 2 12 0 0 0 24 0 vpo0: VP0 error/timeout (2) vpo0: XPT_SCSI_IO (0x12) request vpo_do_scsi = 0, status = 0x0, count = 36, vpo_error = 2 12 0 0 0 24 0 count = 36, r = 0xa8 vpo_do_scsi = 0, status = 0x0, count = 36, vpo_error = 5 12 0 0 0 24 0 vpo0: VP0 error/timeout (5) vpo0: XPT_SCSI_IO (0x12) request vpo_do_scsi = 0, status = 0x0, count = 36, vpo_error = 2 12 0 0 0 24 0 vpo0: VP0 error/timeout (2) The last error is most probably caused by the fact that the drive is confused. When count = 36, r should have been 0xb8. Nick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 4 18:40: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EB3E037B936 for ; Tue, 4 Apr 2000 18:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA70960; Tue, 4 Apr 2000 18:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B5BAA37B8CA for ; Tue, 4 Apr 2000 18:38:18 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA70710; Tue, 4 Apr 2000 18:38:18 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004050138.SAA70710@freefall.freebsd.org> Date: Tue, 4 Apr 2000 18:38:18 -0700 (PDT) From: tla@spiderchain.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/17805: ${CHMOD} is not set in ports makefiles after upgrading Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17805 >Category: misc >Synopsis: ${CHMOD} is not set in ports makefiles after upgrading >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Apr 4 18:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Eli Dart >Release: 3.2-release >Organization: >Environment: FreeBSD spiderchain.com 3.2-RELEASE FreeBSD 3.2-RELEASE #0: Tue May 18 04:05:08 GMT 1999 root@spiderchain:/usr/src/sys/compile/FOO i386 >Description: I installed the package for the ports collection (32upgrade.tgz) as recommended. Now when building ports ${CHMOD} is null, so a make install can randomly fail with a message like "640: command not found" when it should be /bin/chmod 640 I believe this is the issue...I've had to hack several port makefiles recently to add a value for ${CHMOD}. If this is too vague, tell me to go get stuffed, and I'll get more detailed about it next time it happens. >How-To-Repeat: Install the ports upgrade package. Build a port that uses ${CHMOD} in its makefile (the cyrus imap server is one). Notice that make install fails with "640: command not found" or similar. >Fix: I'm not a make guru, but somewhere in there ${CHMOD} needs to get set. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 4 18:50: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EAA5F37BC1D for ; Tue, 4 Apr 2000 18:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA71730; Tue, 4 Apr 2000 18:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 4 Apr 2000 18:50:02 -0700 (PDT) Message-Id: <200004050150.SAA71730@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Chris D. Faulhaber" Subject: Re: misc/17805: ${CHMOD} is not set in ports makefiles after upgrading Reply-To: "Chris D. Faulhaber" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/17805; it has been noted by GNATS. From: "Chris D. Faulhaber" To: tla@spiderchain.com Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: misc/17805: ${CHMOD} is not set in ports makefiles after upgrading Date: Tue, 4 Apr 2000 21:46:31 -0400 (EDT) On Tue, 4 Apr 2000 tla@spiderchain.com wrote: > > >Number: 17805 > >Category: misc > >Synopsis: ${CHMOD} is not set in ports makefiles after upgrading > > I believe this is the issue...I've had to hack several port makefiles > recently to add a value for ${CHMOD}. If this is too vague, tell me to > go get stuffed, and I'll get more detailed about it next time it happens. > > >How-To-Repeat: > Install the ports upgrade package. Build a port that uses ${CHMOD} > in its makefile (the cyrus imap server is one). Notice that make install > fails with "640: command not found" or similar. > >Fix: > I'm not a make guru, but somewhere in there ${CHMOD} needs to get set. > > jedgar@pluto:/usr/ports/Mk$ ident bsd.port.mk && grep chmod bsd.port.mk bsd.port.mk: $FreeBSD: ports/Mk/bsd.port.mk,v 1.332 2000/04/02 08:32:26 asami Exp $ $NetBSD: $ CHMOD?= /bin/chmod jedgar@pluto:/usr/ports/Mk$ Can you let us know what errors you are seeing? Also, check that /usr/ports/Mk/* and the port(s) you are building are up-to-date. ----- Chris D. Faulhaber - jedgar@fxp.org - jedgar@FreeBSD.org -------------------------------------------------------- FreeBSD: The Power To Serve - http://www.FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 4 19: 1:11 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A3E7F37BC01; Tue, 4 Apr 2000 19:01:09 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA73133; Tue, 4 Apr 2000 19:00:58 -0700 (PDT) (envelope-from brian@FreeBSD.org) Date: Tue, 4 Apr 2000 19:00:58 -0700 (PDT) From: Message-Id: <200004050200.TAA73133@freefall.freebsd.org> To: sadams@shell1.qpt.com, brian@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/6223: PST/DST bug in /bin/date Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: PST/DST bug in /bin/date State-Changed-From-To: suspended->closed State-Changed-By: brian State-Changed-When: Tue Apr 4 19:00:37 PDT 2000 State-Changed-Why: Fixed with vary.c v1.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 4 19: 8: 3 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6EBEA37BC18; Tue, 4 Apr 2000 19:08:01 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA73849; Tue, 4 Apr 2000 19:08:01 -0700 (PDT) (envelope-from brian@FreeBSD.org) Date: Tue, 4 Apr 2000 19:08:01 -0700 (PDT) From: Message-Id: <200004050208.TAA73849@freefall.freebsd.org> To: kirill@dubna.ru, brian@FreeBSD.org, brian@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/11201: mktime possible bug Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: mktime possible bug State-Changed-From-To: open->closed State-Changed-By: brian State-Changed-When: Tue Apr 4 19:06:11 PDT 2000 State-Changed-Why: Duplicate of 15520 (which has far more information) Responsible-Changed-From-To: brian->freebsd-bugs Responsible-Changed-By: brian Responsible-Changed-When: Tue Apr 4 19:06:11 PDT 2000 Responsible-Changed-Why: I didn't solve anything (and don't plan to) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 4 21:20:18 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AF82F37BED0 for ; Tue, 4 Apr 2000 21:20:15 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA85622; Tue, 4 Apr 2000 21:20:10 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F2CA837B536 for ; Tue, 4 Apr 2000 21:16:39 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA85345; Tue, 4 Apr 2000 21:16:39 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004050416.VAA85345@freefall.freebsd.org> Date: Tue, 4 Apr 2000 21:16:39 -0700 (PDT) From: austin_pj@wvwc.edu To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/17808: cannot swap /dev/.... Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17808 >Category: i386 >Synopsis: cannot swap /dev/.... >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Apr 4 21:20:04 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Philip Austin >Release: 4.0-Stable >Organization: >Environment: >Description: went through the setting up of the install, but once install started it said cannot swap /dev/... then it said that itcould not creat file system on /dev/... >How-To-Repeat: run the install (any version of intall) of 4.0-STABLE on a motherboard using the SIS 530 chipset >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 4 21:44:30 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from hsw.generalresources.com (z12.generalresources.com [210.242.169.12]) by hub.freebsd.org (Postfix) with ESMTP id A350437B5B7 for ; Tue, 4 Apr 2000 21:44:20 -0700 (PDT) (envelope-from hsw@hsw.generalresources.com) Received: from hsw.generalresources.com (hsw@localhost [127.0.0.1]) by hsw.generalresources.com (8.9.3/8.9.3) with ESMTP id MAA73201 for ; Wed, 5 Apr 2000 12:44:08 +0800 (CST) (envelope-from hsw@hsw.generalresources.com) Message-Id: <200004050444.MAA73201@hsw.generalresources.com> To: freebsd-bugs@freebsd.org From: Christopher Hall Reply-To: Christopher Hall Subject: Re: ports/17612: x11-fonts/intlfonts crashes X (Big5 encoding) Date: Wed, 05 Apr 2000 12:44:07 +0800 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I have sent the patch to gnu, perhaps we can just wait for them to incorporate it into their dist file, so it is probably not necessary to add it to this port. --- Christopher Hall To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 5 3:40: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5494537B9C0 for ; Wed, 5 Apr 2000 03:40:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA25722; Wed, 5 Apr 2000 03:40:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 5 Apr 2000 03:40:04 -0700 (PDT) Message-Id: <200004051040.DAA25722@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Nick Hibma Subject: Re: kern/16153: no more parallel port zip drive Reply-To: Nick Hibma Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/16153; it has been noted by GNATS. From: Nick Hibma To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: kern/16153: no more parallel port zip drive Date: Wed, 05 Apr 2000 10:35:23 +0000 I've seen reports of this problem happening with EPP and "PS/2" mode on the parallel port (I have no idea what "PS/2" mode on a parallel port would be though). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 5 4:20: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9CAA637BBF8 for ; Wed, 5 Apr 2000 04:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA32310; Wed, 5 Apr 2000 04:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BEA4F37BFA8 for ; Wed, 5 Apr 2000 04:18:02 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA32176; Wed, 5 Apr 2000 04:18:01 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004051118.EAA32176@freefall.freebsd.org> Date: Wed, 5 Apr 2000 04:18:01 -0700 (PDT) From: pius@zyan.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: bin/17810: pw coredumps when adding/deleting usernames longer than 30 characters Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17810 >Category: bin >Synopsis: pw coredumps when adding/deleting usernames longer than 30 characters >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Apr 5 04:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Pius Fischer >Release: 3.4-STABLE >Organization: Zyan Communications >Environment: FreeBSD joust.zyan.com 3.4-STABLE FreeBSD 3.4-STABLE #0: Tue Apr 4 14:32:26 PDT 2000 pius@joust.zyan.com:/usr/src/sys/compile/JOUST i386 >Description: /usr/sbin/pw coredumps when adding/deleting usernames longer than 30 characters >How-To-Repeat: On a system that supports usernames longer than 30 characters (for example, UT_NAMESIZE is set to 32 and MAXLOGNAME is set to 33), run the following: "pw useradd testuser.customerservice12345678" >Fix: The length of the pfx buffer in the pw_update function in pwupd.c should be dependent on MAXLOGNAME instead of being hardcoded to 32: =cut= --- pwupd.c.orig Thu Oct 14 11:32:47 1999 +++ pwupd.c Wed Apr 5 03:49:41 2000 @@ -150,7 +150,7 @@ #else { /* No -C */ #endif - char pfx[32]; + char pfx[MAXLOGNAME + 1]; char pwbuf[PWBUFSZ]; int l = sprintf(pfx, "%s:", user); =cut= >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 5 4:29:50 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B709B37B842; Wed, 5 Apr 2000 04:29:48 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA33390; Wed, 5 Apr 2000 04:29:47 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Date: Wed, 5 Apr 2000 04:29:47 -0700 (PDT) From: Message-Id: <200004051129.EAA33390@freefall.freebsd.org> To: asmodai@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: pending/17562: PAS16 sound cycles Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: PAS16 sound cycles Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: asmodai Responsible-Changed-When: Wed Apr 5 04:28:51 PDT 2000 Responsible-Changed-Why: Misfiled. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 5 5:51:56 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8E98237B9B2; Wed, 5 Apr 2000 05:51:55 -0700 (PDT) (envelope-from jmas@FreeBSD.org) Received: (from jmas@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA40594; Wed, 5 Apr 2000 05:51:55 -0700 (PDT) (envelope-from jmas@FreeBSD.org) Date: Wed, 5 Apr 2000 05:51:55 -0700 (PDT) From: Message-Id: <200004051251.FAA40594@freefall.freebsd.org> To: jmas@FreeBSD.org, freebsd-bugs@FreeBSD.org, bde@FreeBSD.org Subject: Re: i386/17800: [PATCH] problem with statclock initialization Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] problem with statclock initialization Responsible-Changed-From-To: freebsd-bugs->bde Responsible-Changed-By: jmas Responsible-Changed-When: Wed Apr 5 05:49:13 PDT 2000 Responsible-Changed-Why: Over to maintainer (I think) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 5 6:20: 4 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C91B337B5B3 for ; Wed, 5 Apr 2000 06:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA43291; Wed, 5 Apr 2000 06:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 5 Apr 2000 06:20:02 -0700 (PDT) Message-Id: <200004051320.GAA43291@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Christopher T. Johnson" Subject: Re: bin/17791: Restore does not handle bad or missing tapes well. Reply-To: "Christopher T. Johnson" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/17791; it has been noted by GNATS. From: "Christopher T. Johnson" To: freebsd-gnats-submit@FreeBSD.org, cjohnson@camelot.com Cc: Subject: Re: bin/17791: Restore does not handle bad or missing tapes well. Date: Wed, 05 Apr 2000 09:19:15 -0400 As pointed out to me by a very nice person, to get the permissions of the directories reset correctly you load the first tape and do: restore -if /dev/rsa0 add setmodes quit To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 5 6:22:20 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from axl.ops.uunet.co.za (axl.ops.uunet.co.za [196.31.1.175]) by hub.freebsd.org (Postfix) with ESMTP id 9AF2C37B736; Wed, 5 Apr 2000 06:22:14 -0700 (PDT) (envelope-from sheldonh@axl.ops.uunet.co.za) Received: from sheldonh (helo=axl.ops.uunet.co.za) by axl.ops.uunet.co.za with local-esmtp (Exim 3.13 #1) id 12cpl5-00014r-00; Wed, 05 Apr 2000 15:22:11 +0200 From: Sheldon Hearn To: jmas@FreeBSD.ORG Cc: freebsd-bugs@FreeBSD.ORG, bde@FreeBSD.ORG Subject: Re: i386/17800: [PATCH] problem with statclock initialization In-reply-to: Your message of "Wed, 05 Apr 2000 05:51:55 MST." <200004051251.FAA40594@freefall.freebsd.org> Date: Wed, 05 Apr 2000 15:22:11 +0200 Message-ID: <4144.954940931@axl.ops.uunet.co.za> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 05 Apr 2000 05:51:55 MST, jmas@FreeBSD.ORG wrote: > Responsible-Changed-From-To: freebsd-bugs->bde > Responsible-Changed-By: jmas > Responsible-Changed-When: Wed Apr 5 05:49:13 PDT 2000 > Responsible-Changed-Why: > Over to maintainer (I think) That's the person I identified as well, but Bruce prefers to assign PR's to himself. He's one of the guys who actually watches the -bugs mailing list quite closely, so you don't need to assign PR's to him. :-) Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 5 6:51: 4 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from polaris.we.lc.ehu.es (polaris.we.lc.ehu.es [158.227.6.43]) by hub.freebsd.org (Postfix) with ESMTP id 0309A37B7EB; Wed, 5 Apr 2000 06:50:41 -0700 (PDT) (envelope-from jose@we.lc.ehu.es) Received: from we.lc.ehu.es (v-ger [158.227.6.179]) by polaris.we.lc.ehu.es (8.9.1/8.9.1) with ESMTP id PAA13980; Wed, 5 Apr 2000 15:48:58 +0200 (MET DST) Message-ID: <38EB4448.A2F58943@we.lc.ehu.es> Date: Wed, 05 Apr 2000 15:48:56 +0200 From: "Jose M. Alcaide" Organization: Universidad del Pais Vasco - Dpto. de Electricidad y Electronica X-Mailer: Mozilla 4.72 [en] (X11; U; FreeBSD 3.4-RELEASE i386) X-Accept-Language: es-ES, es, en-US, en MIME-Version: 1.0 To: Sheldon Hearn Cc: freebsd-bugs@FreeBSD.ORG, bde@FreeBSD.ORG Subject: Re: i386/17800: [PATCH] problem with statclock initialization References: <4144.954940931@axl.ops.uunet.co.za> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Sheldon Hearn wrote: > > On Wed, 05 Apr 2000 05:51:55 MST, jmas@FreeBSD.ORG wrote: > > > Responsible-Changed-From-To: freebsd-bugs->bde > > Responsible-Changed-By: jmas > > Responsible-Changed-When: Wed Apr 5 05:49:13 PDT 2000 > > Responsible-Changed-Why: > > Over to maintainer (I think) > > That's the person I identified as well, but Bruce prefers to assign PR's > to himself. He's one of the guys who actually watches the -bugs mailing > list quite closely, so you don't need to assign PR's to him. :-) > Oh! OK. I carefully revised the history of clock.c, and I found that Bruce was the responsible of the statclock initialization code. Since I am the originator of the PR, I decided to assign it to him directly. Sorry if my action was inappropriate. Saludos, -- JMA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 5 7:50: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3694637B804 for ; Wed, 5 Apr 2000 07:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA21193; Wed, 5 Apr 2000 07:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 35B3D37BE0D for ; Wed, 5 Apr 2000 07:45:57 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA20663; Wed, 5 Apr 2000 07:45:57 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004051445.HAA20663@freefall.freebsd.org> Date: Wed, 5 Apr 2000 07:45:57 -0700 (PDT) From: christor@ug.cs.sunysb.edu To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: gnu/17812: gprof gives error: Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17812 >Category: gnu >Synopsis: gprof gives error: >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Apr 5 07:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Christopher Rued >Release: 3.3-RELEASE >Organization: >Environment: FreeBSD laptop.smurfy.net 3.3-RELEASE FreeBSD 3.3-RELEASE #5: Tue Mar 28 17:06:51 EST 2000 chris@laptop.smurfy.net:/usr/src/sys/compile/LAPTOP i386 >Description: The gprof program seems to want to use an enormous amount of memory, even for very simple programs. On my system at home (uname -a output: FreeBSD laptop.smurfy.net 3.3-RELEASE FreeBSD 3.3-RELEASE #5: Tue Mar 28 17:06:51 EST 2000 chris@laptop.smurfy.net:/usr/src/sys/compile/LAPTOP i386) I get the output: Killed In addition, the output "swap_pager: out of swap space" is sent to the console. --- On a FreeBSD system at school (uname -a output: FreeBSD public.ug.cs.sunysb.edu 3.2-RELEASE FreeBSD 3.2-RELEASE #1: Fri Aug 6 15:34:52 EDT 1999 root@:/A/src/sys/compile/PUBLIC i386) gprof gives the output: gprof: no room for 67268600 sample pc's >How-To-Repeat: Create a C program (hello.c): int main(void){ printf("hello world!\n); } Then compile it with: $ gcc -pg -o hello hello.c Then run: gprof hello >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 5 8:10: 8 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9054E37BE98 for ; Wed, 5 Apr 2000 08:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA23490; Wed, 5 Apr 2000 08:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 5 Apr 2000 08:10:03 -0700 (PDT) Message-Id: <200004051510.IAA23490@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Samuel Tardieu Subject: Re: i386/17228: Installation floppies hang up on Compaq Armada V300 laptop Reply-To: Samuel Tardieu Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/17228; it has been noted by GNATS. From: Samuel Tardieu To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: Re: i386/17228: Installation floppies hang up on Compaq Armada V300 laptop Date: Wed, 5 Apr 2000 17:07:11 +0200 The following patch makes it work much better. It forces no-DMA-mode when not explicitely allowed. Index: ata-dma.c =================================================================== RCS file: /usr/cvs/src/sys/dev/ata/ata-dma.c,v retrieving revision 1.35 diff -u -r1.35 ata-dma.c --- ata-dma.c 2000/03/05 16:52:24 1.35 +++ ata-dma.c 2000/04/05 14:35:02 @@ -70,6 +70,10 @@ if (!scp->bmaddr) return; +#ifndef ATA_ENABLE_ATAPI_DMA + return; +#endif + /* if simplex controller, only allow DMA on primary channel */ if (scp->unit == 1) { outb(scp->bmaddr + ATA_BMSTAT_PORT, inb(scp->bmaddr + ATA_BMSTAT_PORT) & To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 5 9: 0:22 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from portnoy.lbl.gov (portnoy.lbl.gov [131.243.2.11]) by hub.freebsd.org (Postfix) with ESMTP id 7D74637B797 for ; Wed, 5 Apr 2000 09:00:19 -0700 (PDT) (envelope-from jin@portnoy.lbl.gov) Received: (from jin@localhost) by george.lbl.gov () id JAA07157; Wed, 5 Apr 2000 09:00:18 -0700 (PDT) Date: Wed, 5 Apr 2000 09:00:18 -0700 (PDT) From: Jin Guojun (FTG staff) Message-Id: <200004051600.JAA07157@george.lbl.gov> To: freebsd-bugs@FreeBSD.ORG, sheldonh@uunet.co.za Subject: Re: bin/16271 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org He agreed to apply the patch. So we expect a fixed version in next release. Thanks, -Jin > From: Sheldon Hearn > To: Jin Guojun (FTG staff) > Cc: freebsd-gnats-submit@FreeBSD.org > Subject: Re: bin/16271 > Date: Mon, 03 Apr 2000 12:02:32 +0200 > > On Fri, 31 Mar 2000 07:54:39 PST, Jin Guojun wrote: > > > > I don't think so, because that file is on the vendor branch. This fix > > > should be submitted to keith Bostic, nvi's maintainer. If he agrees > > > that the next release of nvi will include this patch exactly, then we > > > can probably do some magic. > > > > Then, how can I contact keith Bostic? > > His e-mail address is bostic@bostic.com . > > > Has he been notified for this problem yet? > > I don't know. Best contact him directly. > > Ciao, > Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 5 10: 4:48 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from axl.ops.uunet.co.za (axl.ops.uunet.co.za [196.31.1.175]) by hub.freebsd.org (Postfix) with ESMTP id 5C41A37B74C for ; Wed, 5 Apr 2000 10:04:41 -0700 (PDT) (envelope-from sheldonh@axl.ops.uunet.co.za) Received: from sheldonh (helo=axl.ops.uunet.co.za) by axl.ops.uunet.co.za with local-esmtp (Exim 3.13 #1) id 12ctE1-0001k1-00; Wed, 05 Apr 2000 19:04:17 +0200 From: Sheldon Hearn To: Jin Guojun (FTG staff) Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: bin/16271 In-reply-to: Your message of "Wed, 05 Apr 2000 09:00:18 MST." <200004051600.JAA07157@george.lbl.gov> Date: Wed, 05 Apr 2000 19:04:17 +0200 Message-ID: <6695.954954257@axl.ops.uunet.co.za> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 05 Apr 2000 09:00:18 MST, Jin Guojun wrote: > He agreed to apply the patch. So we expect a fixed version in next release. Excellent. Did Keith give you any indication of when he expects to roll a new release? :-) Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 5 10:21:27 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from portnoy.lbl.gov (portnoy.lbl.gov [131.243.2.11]) by hub.freebsd.org (Postfix) with ESMTP id DD6E037B952 for ; Wed, 5 Apr 2000 10:21:18 -0700 (PDT) (envelope-from jin@portnoy.lbl.gov) Received: (from jin@localhost) by george.lbl.gov () id KAA12773; Wed, 5 Apr 2000 10:21:14 -0700 (PDT) Date: Wed, 5 Apr 2000 10:21:14 -0700 (PDT) From: Jin Guojun (FTG staff) Message-Id: <200004051721.KAA12773@george.lbl.gov> To: sheldonh@uunet.co.za Subject: Re: bin/16271 Cc: freebsd-bugs@FreeBSD.ORG Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > He agreed to apply the patch. So we expect a fixed version in next release. > > Excellent. Did Keith give you any indication of when he expects to roll > a new release? :-) > > Ciao, > Sheldon. Nop, I can ask him if you can give me his email one more time; I thought it is in one of these email somewhere, but I seem lost it :-( -Jin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 5 11:34:56 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D54F737B988; Wed, 5 Apr 2000 11:34:54 -0700 (PDT) (envelope-from archie@FreeBSD.org) Received: (from archie@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA53983; Wed, 5 Apr 2000 11:34:54 -0700 (PDT) (envelope-from archie@FreeBSD.org) Date: Wed, 5 Apr 2000 11:34:54 -0700 (PDT) From: Message-Id: <200004051834.LAA53983@freefall.freebsd.org> To: archie@whistle.com, archie@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/4052: VJ compression drops packets with IP+TCP header length > MLEN Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: VJ compression drops packets with IP+TCP header length > MLEN State-Changed-From-To: suspended->closed State-Changed-By: archie State-Changed-When: Wed Apr 5 11:34:19 PDT 2000 State-Changed-Why: MAX_HDR was increased to 128 by rev. 1.15 of net/slcompress.h . To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 5 12:10: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9851437B953 for ; Wed, 5 Apr 2000 12:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA58172; Wed, 5 Apr 2000 12:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from f.rcac.tdi.co.jp (spacecraft.f.rcac.tdi.co.jp [202.249.17.133]) by hub.freebsd.org (Postfix) with SMTP id 08C4A37BB76 for ; Wed, 5 Apr 2000 12:05:04 -0700 (PDT) (envelope-from fujiwara@f.rcac.tdi.co.jp) Received: (qmail 859 invoked by uid 0); 5 Apr 2000 19:04:58 -0000 Message-Id: <20000405190458.858.qmail@f.rcac.tdi.co.jp> Date: 5 Apr 2000 19:04:58 -0000 From: fujiwara@rcac.tdi.co.jp Reply-To: fujiwara@rcac.tdi.co.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/17814: sr driver ignores IFF_LINK2 | IFF_DEBUG when first time ifconfig Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17814 >Category: kern >Synopsis: sr driver ignores IFF_LINK2 | IFF_DEBUG when first time ifconfig >Confidential: yes >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Apr 5 12:10:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Kazunori_Fujiwara >Release: FreeBSD 4.0-STABLE i386 >Organization: >Environment: 4.0-RELEASE, 4.0-STABLE, 5.0-CURRENT PC with RISCom/N2(isa or pci) and Leased Line connection pseudo-device sppp device sr >Description: write to rc.conf: network_interfaces="sr0 ..." ifconfig_sr0="inet 192.168.1.1 192.168.1.2 netmask 0xfffffffc link2 debug up" but then, ifconfig sr0 shows without LINK2 and DEBUB So, CISCO_HDLC connection is not done. >How-To-Repeat: >Fix: firsttime sr_ioctl() calls sppp_attach, sppp_attach destroys ifp->if_flags So, sr_ioctl ignores LINK2 and DEBUG flags my temporary patch is here. (if_spppsubr.c:sr_attach()) --- sys/net/if_spppsubr.c.orig Wed Apr 5 21:59:05 2000 +++ sys/net/if_spppsubr.c Thu Apr 6 03:39:43 2000 @@ -801,7 +801,8 @@ spppq = sp; sp->pp_if.if_mtu = PP_MTU; - sp->pp_if.if_flags = IFF_POINTOPOINT | IFF_MULTICAST; + sp->pp_if.if_flags &= (IFF_LINK0 | IFF_LINK1 | IFF_LINK2 | IFF_UP | IFF_DEBUG); + sp->pp_if.if_flags |= IFF_POINTOPOINT | IFF_MULTICAST; sp->pp_if.if_type = IFT_PPP; sp->pp_if.if_output = sppp_output; #if 0 @@ -816,6 +817,7 @@ sp->pp_phase = PHASE_DEAD; sp->pp_up = lcp.Up; sp->pp_down = lcp.Down; + sp->pp_mode = 0; sppp_lcp_init(sp); sppp_ipcp_init(sp); >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 5 14:30: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AC73E37BCC7 for ; Wed, 5 Apr 2000 14:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA75279; Wed, 5 Apr 2000 14:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 5 Apr 2000 14:30:02 -0700 (PDT) Message-Id: <200004052130.OAA75279@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Wilko Bulte Subject: Re: kern/17148: If keyboard is not attached while booting, it is not detected if attached later Reply-To: Wilko Bulte Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/17148; it has been noted by GNATS. From: Wilko Bulte To: freebsd-gnats-submit@FreeBSD.org, mb@imp.ch Cc: Subject: Re: kern/17148: If keyboard is not attached while booting, it is not detected if attached later Date: Wed, 05 Apr 2000 23:21:56 +0200 PC keyboards were never designed to be [un]plugged with the machine powered on. You would not be the first one to blow keyboard fuses or keyboard controller chips. The keyboard resetting or not (meaning that its own in-keyboard chips reset correctly) depends on the keyboard itself. Some reset all the time, some never, some sometimes. In short: don't do that if you prefer your hardware to remain in good working order. Wilko wilko@freebsd.org [ and before someone tells me: I know most people get away with this. That does not make it a good idea ] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 5 14:30:10 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4AEFB37BD59 for ; Wed, 5 Apr 2000 14:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA75288; Wed, 5 Apr 2000 14:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from torb.pix.net (torb.pix.net [192.135.81.20]) by hub.freebsd.org (Postfix) with ESMTP id AB57037BE41 for ; Wed, 5 Apr 2000 14:23:13 -0700 (PDT) (envelope-from stripes@torb.pix.net) Received: (from stripes@localhost) by torb.pix.net (8.9.3/8.9.3) id LAA59128; Wed, 5 Apr 2000 11:12:02 -0400 (EDT) (envelope-from stripes) Message-Id: <200004051512.LAA59128@torb.pix.net> Date: Wed, 5 Apr 2000 11:12:02 -0400 (EDT) From: jmo Reply-To: stripes@torb.pix.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/17815: D-Link DSB-H4E USB hub & ethernet probe patch Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17815 >Category: kern >Synopsis: The ethernet in the D-Link DSB-H4E is not recognised >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Apr 5 14:30:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Josh Osborne >Release: FreeBSD 4.0-RELEASE i386 >Organization: (personal) >Environment: FreeBSD 4.0 on an AMD K7 with a ohci USB conrtoler (AMD-756 USB Controller), with a D-Link DSB-H4E plugged into the USB port. >Description: The hub part of the D-Link DSB-H4E is found, but the ethernet (perminatly attatched to port 4 of the hub) is not recognised as a kue (Kawasaki LSI USB-Ethernet). >How-To-Repeat: Buy, borrow, or steal a D-Link DSB-H4E (they are under $40), and attatch it to the USB port on your 4.0 machine. Boot. Observe the kernel config messages during boot. >Fix: The following patch works. After applying it the device functions about as well as could be ecpected of a $20 anemic ethernet on a little 12Mbit bus. Well maybe slighlty less well then that. Still, it does work, and it would be nice if other people could "plug n' play". diff -c usbdevs.orig usbdevs ; diff -c if_kue.c.orig if_kue.c *** usbdevs.orig Sun Mar 26 09:27:53 2000 --- usbdevs Sat Mar 25 13:24:57 2000 *************** *** 424,426 **** --- 424,429 ---- /* Zoom Telephonics Inc. products */ product ZOOM 2986L 0x9700 2986L Fax modem + + /* Kawasaki LSI products -- I think JMO */ + product KLSI DUH3E10BT 0x0008 10BT Ethernet adapter, in the DU-H3E *** if_kue.c.orig Sun Mar 26 09:27:41 2000 --- if_kue.c Sat Mar 25 13:22:25 2000 *************** *** 113,118 **** --- 113,119 ---- { USB_VENDOR_COREGA, USB_PRODUCT_COREGA_ETHER_USB_T }, { USB_VENDOR_DLINK, USB_PRODUCT_DLINK_DSB650C }, { USB_VENDOR_SMC, USB_PRODUCT_SMC_2102USB }, + { USB_VENDOR_KLSI, USB_PRODUCT_KLSI_DUH3E10BT }, { 0, 0 } }; >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 5 14:40: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7D96E37BD58 for ; Wed, 5 Apr 2000 14:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA77803; Wed, 5 Apr 2000 14:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 5 Apr 2000 14:40:03 -0700 (PDT) Message-Id: <200004052140.OAA77803@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Martin Blapp Subject: Re: kern/17148: If keyboard is not attached while booting, it is not detected if attached later Reply-To: Martin Blapp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/17148; it has been noted by GNATS. From: Martin Blapp To: Wilko Bulte Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: kern/17148: If keyboard is not attached while booting, it is not detected if attached later Date: Wed, 5 Apr 2000 23:35:33 +0200 Hi, This PR can be closed. It's fixed by Yokota in 4.0 Release. Martin Martin Blapp, mb@imp.ch ------------------------------------------------ Improware AG, UNIX solution and service provider Zurlindenstrasse 29, 4133 Pratteln, Switzerland Phone: +41 79 370 26 05, Fax: +41 61 826 93 01 ------------------------------------------------ On Wed, 5 Apr 2000, Wilko Bulte wrote: > PC keyboards were never designed to be [un]plugged with the machine > powered on. > You would not be the first one to blow keyboard fuses or keyboard > controller chips. > The keyboard resetting or not (meaning that its own in-keyboard chips > reset correctly) > depends on the keyboard itself. Some reset all the time, some never, > some sometimes. > > In short: don't do that if you prefer your hardware to remain in good > working order. > > Wilko > wilko@freebsd.org > > [ and before someone tells me: I know most people get away with this. > That does not > make it a good idea ] > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 5 15:20: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BB34D37BA21 for ; Wed, 5 Apr 2000 15:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA90423; Wed, 5 Apr 2000 15:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 5 Apr 2000 15:20:02 -0700 (PDT) Message-Id: <200004052220.PAA90423@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Wilko Bulte Subject: Re: i386/13802: freebsd 3.3 fails to boot with irq problems on DECpc XL 466d2 (pci related) Reply-To: Wilko Bulte Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/13802; it has been noted by GNATS. From: Wilko Bulte To: freebsd-gnats-submit@FreeBSD.org, jason@dstc.edu.au Cc: Subject: Re: i386/13802: freebsd 3.3 fails to boot with irq problems on DECpc XL 466d2 (pci related) Date: Thu, 06 Apr 2000 00:10:48 +0200 Taking a (very?) long shot: an XL466d2 officially has a 486DX2 CPU, not a DX4/100. Any chance you can try a DX2 to see if this makes any difference? Wilko To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 5 16:20: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 491F637BD4D for ; Wed, 5 Apr 2000 16:20:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA17575; Wed, 5 Apr 2000 16:20:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 5 Apr 2000 16:20:04 -0700 (PDT) Message-Id: <200004052320.QAA17575@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: jason andrade Subject: Re: i386/13802: freebsd 3.3 fails to boot with irq problems on DECpc XL 466d2 (pci related) Reply-To: jason andrade Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/13802; it has been noted by GNATS. From: jason andrade To: Wilko Bulte Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: i386/13802: freebsd 3.3 fails to boot with irq problems on DECpc XL 466d2 (pci related) Date: Thu, 6 Apr 2000 09:13:16 +1000 (EST) On Thu, 6 Apr 2000, Wilko Bulte wrote: > Taking a (very?) long shot: an XL466d2 officially has a 486DX2 CPU, not > a DX4/100. > Any chance you can try a DX2 to see if this makes any difference? > it's been quite a while - from my hazy memory, i've had the same problem with a dx2 also. -jason To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 5 18:10: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6693937B9E8 for ; Wed, 5 Apr 2000 18:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA61526; Wed, 5 Apr 2000 18:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 5 Apr 2000 18:10:03 -0700 (PDT) Message-Id: <200004060110.SAA61526@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Daniel Hagan Subject: Re: i386/17712: Some outside networks are unable to resolve the addresses listed in DNS server running on the server. Reply-To: Daniel Hagan Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/17712; it has been noted by GNATS. From: Daniel Hagan To: freebsd-gnats-submit@FreeBSD.org, rajeshn@cybertech.com Cc: Subject: Re: i386/17712: Some outside networks are unable to resolve the addresses listed in DNS server running on the server. Date: Wed, 05 Apr 2000 21:02:34 -0400 I have no idea how to solve your problem as posted, esp. since you don't include any useful configuration information. However, I see you're using 2.1.7-RELEASE. This is *incredibly* old. You should probably consider upgrading to a non-ancient version as your first step. The security holes alone are a huge problem with a release that old. See http://www.freebsd.org/ for information on getting upgraded to a newer version. Daniel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 5 18:20: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A489537B53C for ; Wed, 5 Apr 2000 18:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA71138; Wed, 5 Apr 2000 18:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 5 Apr 2000 18:20:03 -0700 (PDT) Message-Id: <200004060120.SAA71138@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Daniel Hagan Subject: Re: bin/3170: vi freaks and dump core if user doesn't exist Reply-To: Daniel Hagan Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/3170; it has been noted by GNATS. From: Daniel Hagan To: freebsd-gnats-submit@FreeBSD.org, fenner@parc.xerox.com Cc: Subject: Re: bin/3170: vi freaks and dump core if user doesn't exist Date: Wed, 05 Apr 2000 21:09:15 -0400 I tried this under 3.4-RELEASE with a bogus local user and couldn't recreate it. If this still exists, is it tied to NIS somehow? Daniel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 5 18:20: 9 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A1B1737B53C for ; Wed, 5 Apr 2000 18:20:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA71187; Wed, 5 Apr 2000 18:20:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 5 Apr 2000 18:20:05 -0700 (PDT) Message-Id: <200004060120.SAA71187@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Daniel Hagan Subject: Re: bin/4238: chpass only occasionally works in conjunction with ed Reply-To: Daniel Hagan Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/4238; it has been noted by GNATS. From: Daniel Hagan To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: bin/4238: chpass only occasionally works in conjunction with ed Date: Wed, 05 Apr 2000 21:13:56 -0400 Is this patch just suffering shelf rot, or has someone found a problem with it? http://www.freebsd.org/cgi/query-pr.cgi?pr=4238 Daniel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 5 18:40: 4 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6DC6237B9AB for ; Wed, 5 Apr 2000 18:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA86349; Wed, 5 Apr 2000 18:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 5 Apr 2000 18:40:03 -0700 (PDT) Message-Id: <200004060140.SAA86349@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Daniel Hagan Subject: Re: misc/17155: Add mount(8) check to /etc/security Reply-To: Daniel Hagan Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/17155; it has been noted by GNATS. From: Daniel Hagan To: freebsd-gnats-submit@FreeBSD.org, cjc@cc942873-a.ewndsr1.nj.home.com Cc: freebsd-security@freebsd.org Subject: Re: misc/17155: Add mount(8) check to /etc/security Date: Wed, 05 Apr 2000 21:32:00 -0400 This seems like a good idea. There aren't any objections logged in the PR, so is someone interested in committing this? http://www.freebsd.org/cgi/query-pr.cgi?pr=17155 Daniel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 5 18:50: 4 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A8D5F37BA1E for ; Wed, 5 Apr 2000 18:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA93548; Wed, 5 Apr 2000 18:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 5 Apr 2000 18:50:02 -0700 (PDT) Message-Id: <200004060150.SAA93548@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Daniel Hagan Subject: Re: bin/17077: write() error Reply-To: Daniel Hagan Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/17077; it has been noted by GNATS. From: Daniel Hagan To: freebsd-gnats-submit@FreeBSD.org, vvc@kharkiv.net Cc: Subject: Re: bin/17077: write() error Date: Wed, 05 Apr 2000 21:39:13 -0400 I couldn't recreate this on a 3.4-RELEASE system. Do you have a test file that demo's this? Daniel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 5 18:59:47 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from feral.com (feral.com [192.67.166.1]) by hub.freebsd.org (Postfix) with ESMTP id ED2CB37B5F0; Wed, 5 Apr 2000 18:59:43 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from beppo.feral.com (beppo [192.67.166.79]) by feral.com (8.9.3/8.9.3) with ESMTP id SAA06338; Wed, 5 Apr 2000 18:59:13 -0700 Date: Wed, 5 Apr 2000 18:59:28 -0700 (PDT) From: Matthew Jacob Reply-To: mjacob@feral.com To: Andrew Heybey Cc: freebsd-bugs@freebsd.org, freebsd-scsi@freebsd.org Subject: Re: kern/17153 (was: newfs on IBM disks slower than Seagate disks?) In-Reply-To: <200004051218.IAA09904@stiegl.niksun.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Very interesting. See kern/17153. This carries over, btw, to NetBSD as well. I have a theory about the problem for the Qlogic controller, but I don't know if the same theory would apply to the Adaptec- maybe not because the bonnie numbers are different. On Wed, 5 Apr 2000, Andrew Heybey wrote: > Newfs of a ~16GB partition (as performed by sysinstall, so the newfs > arguments are the same) is *much* slower on IBM 18GB 10K RPM LVD disks > versus similar Seagates. Systems are otherwise identical (same > controller (onboard Adaptec AIC7896), same motherboard, same amount of > RAM). Once newfs'd, bonnie and iozone give similar performance for > the two disks. Rawio also gives similar numbers for the two. > > Running 3.2-RELEASE. > > IBM disks are DMVS18V. > Seagates are Cheetah ST318203LW. > > Why would this be the case? > > andrew > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-scsi" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 5 19: 0: 9 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BADC737BF81 for ; Wed, 5 Apr 2000 19:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA98635; Wed, 5 Apr 2000 19:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 5 Apr 2000 19:00:02 -0700 (PDT) Message-Id: <200004060200.TAA98635@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Daniel Hagan Subject: Re: bin/16924: tmpfile(3) ignores TMPDIR and always uses /tmp Reply-To: Daniel Hagan Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/16924; it has been noted by GNATS. From: Daniel Hagan To: freebsd-gnats-submit@FreeBSD.org, lodea@vet.com.au Cc: Subject: Re: bin/16924: tmpfile(3) ignores TMPDIR and always uses /tmp Date: Wed, 05 Apr 2000 21:54:37 -0400 You need to do error checking on your calls to malloc. Other than that, I think it looks ok on an initial reading. (I'm certainly not an expert on libc though.) Daniel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 5 19: 6:50 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from caspian.plutotech.com (caspian.plutotech.com [206.168.67.80]) by hub.freebsd.org (Postfix) with ESMTP id 4B4D637B80C; Wed, 5 Apr 2000 19:06:44 -0700 (PDT) (envelope-from gibbs@caspian.plutotech.com) Received: from caspian.plutotech.com (localhost [127.0.0.1]) by caspian.plutotech.com (8.9.3/8.9.1) with ESMTP id UAA24407; Wed, 5 Apr 2000 20:07:26 -0600 (MDT) (envelope-from gibbs@caspian.plutotech.com) Message-Id: <200004060207.UAA24407@caspian.plutotech.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: mjacob@feral.com Cc: Andrew Heybey , freebsd-bugs@FreeBSD.ORG, freebsd-scsi@FreeBSD.ORG Subject: Re: kern/17153 (was: newfs on IBM disks slower than Seagate disks?) In-Reply-To: Your message of "Wed, 05 Apr 2000 18:59:28 PDT." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 05 Apr 2000 20:07:26 -0600 From: "Justin T. Gibbs" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >> Newfs of a ~16GB partition (as performed by sysinstall, so the newfs >> arguments are the same) is *much* slower on IBM 18GB 10K RPM LVD disks >> versus similar Seagates. Systems are otherwise identical (same >> controller (onboard Adaptec AIC7896), same motherboard, same amount of >> RAM). Once newfs'd, bonnie and iozone give similar performance for >> the two disks. Rawio also gives similar numbers for the two. >> >> Running 3.2-RELEASE. >> >> IBM disks are DMVS18V. >> Seagates are Cheetah ST318203LW. >> >> Why would this be the case? IBM usually ships with the write cache disabled. Seagate almost always has it enabled. As newfs is a "single blocking I/O at a time" kind of application, the additional write latency causes a degradation in performance. When going through the filesystem, this latency is hidden by the buffer cache. You can view mode page 8 with camcontrol to determine the settings for your drives. Man camcontrol for details. -- Justin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 5 19:30: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7DB5037B8F4 for ; Wed, 5 Apr 2000 19:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA03361; Wed, 5 Apr 2000 19:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.uni-bielefeld.de (mail.uni-bielefeld.de [129.70.4.90]) by hub.freebsd.org (Postfix) with ESMTP id 44AFB37B8BF for ; Wed, 5 Apr 2000 19:26:07 -0700 (PDT) (envelope-from bfischer@Techfak.uni-bielefeld.de) Received: from frolic.no-support.loc (ppp36-218.hrz.uni-bielefeld.de) by mail.uni-bielefeld.de (Sun Internet Mail Server sims.3.5.1999.05.24.18.28.p7) with ESMTP id <0FSK008AFPDL5I@mail.uni-bielefeld.de> for FreeBSD-gnats-submit@freebsd.org; Thu, 6 Apr 2000 04:25:58 +0200 (MET DST) Received: (from bjoern@localhost) by frolic.no-support.loc (8.9.3/8.9.3) id EAA03408; Thu, 06 Apr 2000 04:21:46 +0200 (CEST envelope-from bjoern) Message-Id: <200004060221.EAA03408@frolic.no-support.loc> Date: Thu, 06 Apr 2000 04:21:46 +0200 (CEST) From: Bjoern Fischer Reply-To: bfischer@Techfak.Uni-Bielefeld.DE To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/17818: ssh X11 forward breaks with X11 not in /usr Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17818 >Category: bin >Synopsis: ssh X11 forward breaks with X11 not in /usr >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Apr 5 19:30:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Bjoern Fischer >Release: FreeBSD 4.0-STABLE i386 >Organization: No-Support >Environment: The problem occurs on FreeBSD 4.0-STABLE i386 with USA_RESIDENT set to NO, that is with international crypto. >Description: xauth is needed for the automatic X11 protocol forwarder within SSH. The xauth path is hard compiled into SHH as `/usr/X11R6/bin/xauth' which will break the X11 protocol forwarder when X11 is installed somewhere else. FreeBSD's Makefiles for SSH do not make use of the variable X11BASE which may be set in /etc/make.conf. >How-To-Repeat: See description. >Fix: The fix is obvious. See this patch (please review, it is not `make world' tested!): ------------------------------------------------------------>8-------------- --- ./crypto/openssh/includes.h 2000/04/06 01:59:05 1.1 +++ ./crypto/openssh/includes.h 2000/04/06 01:59:32 @@ -58,7 +58,9 @@ #include "version.h" /* Define this to be the path of the xauth program. */ +#ifndef XAUTH_PATH #define XAUTH_PATH "/usr/X11R6/bin/xauth" +#endif /* * Define this to use pipes instead of socketpairs for communicating with the --- ./secure/usr.bin/ssh/Makefile 2000/04/06 02:00:00 1.1 +++ ./secure/usr.bin/ssh/Makefile 2000/04/06 02:02:50 @@ -35,5 +35,9 @@ .include +.if defined(X11BASE) +CFLAGS+= -DXAUTH_PATH=${X11BASE}/bin/xauth +.endif + LDADD+= -L${.OBJDIR}/../../lib/libssh -lssh -lcrypto -lutil -lz DPADD+= ${LIBCRYPTO} ${LIBUTIL} ${LIBZ} --- ./secure/usr.sbin/sshd/Makefile 2000/04/06 02:03:11 1.1 +++ ./secure/usr.sbin/sshd/Makefile 2000/04/06 02:03:25 @@ -39,5 +39,9 @@ .include +.if defined(X11BASE) +CFLAGS+= -DXAUTH_PATH=${X11BASE}/bin/xauth +.endif + LDADD+= -L${.OBJDIR}/../../lib/libssh -lssh -lcrypt -lcrypto -lutil -lz -lwrap DPADD+= ${LIBCRYPT} ${LIBCRYPTO} ${LIBUTIL} ${LIBZ} ${LIBWRAP} >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 5 21:10:10 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EB66537B95F for ; Wed, 5 Apr 2000 21:10:08 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA13196; Wed, 5 Apr 2000 21:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 5 Apr 2000 21:10:03 -0700 (PDT) Message-Id: <200004060410.VAA13196@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Lachlan O'Dea" Subject: Re: bin/16924: tmpfile(3) ignores TMPDIR and always uses /tmp Reply-To: "Lachlan O'Dea" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/16924; it has been noted by GNATS. From: "Lachlan O'Dea" To: Daniel Hagan Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: bin/16924: tmpfile(3) ignores TMPDIR and always uses /tmp Date: Thu, 6 Apr 2000 14:03:55 +1000 On Wed, Apr 05, 2000 at 09:54:37PM -0400, Daniel Hagan wrote: > You need to do error checking on your calls to malloc. Other than that, I > think it looks ok on an initial reading. (I'm certainly not an expert on > libc though.) Thanks for looking at this. I wanted to include error checking, but I wasn't sure of what action to take if an error occurred. I remember finding some other malloc calls in libc that didn't check for errors, so I just left it alone. If anyone can point me to an example of how to handle this, I'd appreciate it. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 5 23:10:18 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7E3EC37BA75 for ; Wed, 5 Apr 2000 23:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA22754; Wed, 5 Apr 2000 23:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mercury.nildram.co.uk (mercury.nildram.co.uk [195.112.4.37]) by hub.freebsd.org (Postfix) with ESMTP id AA4FE37B9CC for ; Wed, 5 Apr 2000 23:04:37 -0700 (PDT) (envelope-from freebsd@unix-consult.com) Received: from nermal.unix-consult.com (tgeusch.dial.nildram.co.uk [195.149.29.39]) by mercury.nildram.co.uk (8.10.0.Beta12/8.10.0.Beta10) with ESMTP id e36682i25143 for ; Thu, 6 Apr 2000 07:08:03 +0100 Received: (qmail 47801 invoked from network); 6 Apr 2000 06:03:56 -0000 Received: from odie.unix-consult.com (192.168.0.2) by nermal.unix-consult.com with SMTP; 6 Apr 2000 06:03:56 -0000 Received: (qmail 570 invoked by uid 1002); 6 Apr 2000 06:02:43 -0000 Message-Id: <20000406060243.569.qmail@odie.unix-consult.com> Date: 6 Apr 2000 06:02:43 -0000 From: freebsd@unix-consult.com Reply-To: freebsd@unix-consult.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/17819: Build ports on nfs : union mount panics kernel Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17819 >Category: kern >Synopsis: Build ports on nfs & union mount panics kernel >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Apr 5 23:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Timo Geusch >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: NFS client is 5.0-current system, last upodated on Sun, April 2nd from anoncvs.freebsd.org. NFS server is a recent 4.0-stable system. /usr/ports is a read-only NFS mount from the NFS server with a local empty partition union-mounted above to provide r/w capability. Neither machine is overclocked and are connected via 100MBit switched network. UNION FS is compiled into the kernel to avoid version mismatches. dmesg for NFS client system: Copyright (c) 1992-2000 The FreeBSD Project. Copyright (c) 1982, 1986, 1989, 1991, 1993 The Regents of the University of California. All rights reserved. FreeBSD 5.0-CURRENT #4: Tue Apr 4 19:26:03 BST 2000 root@odie.unix-consult.com:/usr/src/sys/compile/ODIE Timecounter "i8254" frequency 1193182 Hz CPU: AMD-K7(tm) Processor (499.03-MHz 686-class CPU) Origin = "AuthenticAMD" Id = 0x612 Stepping = 2 Features=0x81f9ff AMD Features=0xc0400000 real memory = 134152192 (131008K bytes) avail memory = 127328256 (124344K bytes) Preloaded elf kernel "kernel" at 0xc0316000. Pentium Pro MTRR support enabled md0: Malloc disk npx0: on motherboard npx0: INT 16 interface apm0: on motherboard apm: found APM BIOS v1.2, connected at v1.2 pcib0: on motherboard pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at 5.0 irq 14 isab0: at device 7.0 on pci0 isa0: on isab0 chip1: at device 7.3 on pci0 pci0: at 7.4 irq 10 fxp0: port 0xe400-0xe41f mem 0xe4000000-0xe40fffff,0xe4103000-0xe4103fff irq 11 at device 8.0 on pci0 fxp0: Ethernet address 00:08:c7:52:e2:54 fxp0: supplying EUI64: 00:08:c7:ff:fe:52:e2:54 ahc0: port 0xe800-0xe8ff mem 0xe4102000-0xe4102fff irq 15 at device 10.0 on pci0 ahc0: aic7880 Wide Channel A, SCSI Id=7, 16/255 SCBs isa0: too many dependant configs (8) isa0: unexpected small tag 14 fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: irq 1 on atkbdc0 psm0: irq 12 on atkbdc0 psm0: model Generic PS/2 mouse, device ID 0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: on isa0 sc0: VGA <16 virtual consoles, flags=0x200> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/16 bytes threshold lpt0: on ppbus0 lpt0: Interrupt-driven port sbc0: at port 0x220-0x22f,0x330-0x331,0x388-0x38b irq 5 drq 1,5 on isa0 sbc0: setting card to irq 5, drq 1, 5 pcm0: on sbc0 unknown0: at port 0x200-0x207 on isa0 unknown1: at port 0x620-0x623 on isa0 Waiting 5 seconds for SCSI devices to settle sa0 at ahc0 bus 0 target 6 lun 0 sa0: Removable Sequential Access SCSI-2 device sa0: 10.000MB/s transfers (10.000MHz, offset 8) Mounting root from ufs:/dev/da0s2a da0 at ahc0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-2 device da0: 40.000MB/s transfers (20.000MHz, offset 8, 16bit), Tagged Queueing Enabled da0: 4343MB (8895370 512 byte sectors: 255H 63S/T 553C) cd0 at ahc0 bus 0 target 5 lun 0 cd0: Removable CD-ROM SCSI-2 device cd0: 20.000MB/s transfers (20.000MHz, offset 8) cd0: Attempt to query device size failed: NOT READY, Medium not present da1 at ahc0 bus 0 target 1 lun 0 da1: Fixed Direct Access SCSI-2 device da1: 40.000MB/s transfers (20.000MHz, offset 8, 16bit), Tagged Queueing Enabled da1: 4357MB (8925000 512 byte sectors: 255H 63S/T 555C) fxp0: starting DAD for fe80:0001::0208:c7ff:fe52:e254 fxp0: DAD complete for fe80:0001::0208:c7ff:fe52:e254 - no duplicates found >Description: Build xemacs 21.1 on this setup via /usr/ports/editors/xemacs21 works. When the syncer daemon wakes up after the build finished, the machine panics. GNU gdb 4.18 Copyright 1998 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-unknown-freebsd". (kgdb) symbol-file kernel.debug Reading symbols from kernel.debug...done. (kgdb) exec-file /var/crash/kernel.0 (kgdb) core-file /var/crash/vmcore.0 IdlePTD 3309568 initial pcb at 2adbe0 panicstr: page fault panic messages: --- Fatal trap 12: page fault while in kernel mode fault virtual address = 0x0 fault code = supervisor read, page not present instruction pointer = 0x8:0xc022c2fa stack pointer = 0x10:0xc7e17bf0 frame pointer = 0x10:0xc7e17c1c code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 5 (syncer) interrupt mask = none trap number = 12 panic: page fault syncing disks... 38 34 25 14 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 done Uptime: 7m14s dumping to dev #da/0x30001, offset 262272 dump 127 126 125 124 123 122 121 120 119 118 117 116 115 114 113 112 111 110 109 108 107 106 105 104 103 102 101 100 99 98 97 96 95 94 93 92 91 90 89 88 87 86 85 84 83 82 81 80 79 78 77 76 75 74 73 72 71 70 69 68 67 66 65 64 63 62 61 60 59 58 57 56 55 54 53 52 51 50 49 48 47 46 45 44 43 42 41 40 39 38 37 36 35 34 33 32 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 --- #0 boot (howto=256) at ../../kern/kern_shutdown.c:302 302 dumppcb.pcb_cr3 = rcr3(); (kgdb) bt #0 boot (howto=256) at ../../kern/kern_shutdown.c:302 #1 0xc015c88c in poweroff_wait (junk=0xc0268d2f, howto=-941582464) at ../../kern/kern_shutdown.c:552 #2 0xc022da62 in trap_fatal (frame=0xc7e17bb0, eva=0) at ../../i386/i386/trap.c:927 #3 0xc022d721 in trap_pfault (frame=0xc7e17bb0, usermode=0, eva=0) at ../../i386/i386/trap.c:820 #4 0xc022d2df in trap (frame={tf_fs = 16, tf_es = 16, tf_ds = 16, tf_edi = -1004167168, tf_esi = 0, tf_ebp = -941523940, tf_isp = -941524004, tf_ebx = 8192, tf_edx = -1004167168, tf_ecx = 2048, tf_eax = -1004167168, tf_trapno = 12, tf_err = 0, tf_eip = -1071463686, tf_cs = 8, tf_eflags = 66070, tf_esp = -941523700, tf_ss = -941523728}) at ../../i386/i386/trap.c:426 #5 0xc022c2fa in generic_bcopy () #6 0xc01f979f in ffs_write (ap=0xc7e17cb4) at ../../ufs/ufs/ufs_readwrite.c:486 #7 0xc019abee in union_write (ap=0xc7e17cf8) at vnode_if.h:363 #8 0xc020f54b in vnode_pager_generic_putpages (vp=0xc8918fc0, m=0xc7e17e08, bytecount=65536, flags=0, rtvals=0xc7e17d9c) at vnode_if.h:363 #9 0xc019a9ff in union_putpages (ap=0xc7e17d60) at ../../miscfs/union/union_vnops.c:1041 #10 0xc020f399 in vnode_pager_putpages (object=0xc88a5d20, m=0xc7e17e08, count=16, sync=0, rtvals=0xc7e17d9c) at vnode_if.h:1126 #11 0xc020bd55 in vm_pageout_flush (mc=0xc7e17e08, count=16, flags=0) at ../../vm/vm_pager.h:145 #12 0xc020929a in vm_object_page_clean (object=0xc88a5d20, start=0, end=0, flags=4) at ../../vm/vm_object.c:655 #13 0xc018c41e in vfs_msync (mp=0xc0ab2a00, flags=2) at ../../kern/vfs_subr.c:2513 #14 0xc018c8af in sync_fsync (ap=0xc7e17f7c) at ../../kern/vfs_subr.c:2821 #15 0xc018adef in sched_sync () at vnode_if.h:537 #16 0xc0221f50 in fork_trampoline () Cannot access memory at address 0x8000. >How-To-Repeat: 1. NFS-mount /usr/ports read-only 2. Mount empty local partition above /usr/ports using union fs 3. cd /usr/ports/editors/xemacs21; make 4. Wait until the build finishes 5. Wait approx. 30 seconds until the syncer daemon wakes up and tries to sync 6. Watch system panic. Tried 4 times so far with 100% sucess rate. >Fix: Don't use union fs. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 5 23:10:59 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from MailAndNews.com (MailAndNews.com [199.29.68.160]) by hub.freebsd.org (Postfix) with ESMTP id 1B05C37BFAA for ; Wed, 5 Apr 2000 23:10:53 -0700 (PDT) (envelope-from mheffner@mailandnews.com) Received: from muriel.penguinpowered.com [208.138.199.92] (mheffner@mailandnews.com); Thu, 6 Apr 2000 02:10:44 -0400 X-WM-Posted-At: MailAndNews.com; Thu, 6 Apr 00 02:10:44 -0400 Content-Length: 1528 Message-ID: X-Mailer: XFMail 1.4.4 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200004060410.VAA13196@freefall.freebsd.org> Date: Thu, 06 Apr 2000 02:10:25 -0400 (EDT) Reply-To: Mike Heffner From: Mike Heffner To: "Lachlan O'Dea" Subject: Re: bin/16924: tmpfile(3) ignores TMPDIR and always uses /tmp Cc: freebsd-bugs@FreeBSD.org Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 06-Apr-2000 Lachlan O'Dea wrote: | The following reply was made to PR bin/16924; it has been noted by GNATS. | | From: "Lachlan O'Dea" | To: Daniel Hagan | Cc: freebsd-gnats-submit@FreeBSD.org | Subject: Re: bin/16924: tmpfile(3) ignores TMPDIR and always uses /tmp | Date: Thu, 6 Apr 2000 14:03:55 +1000 | | On Wed, Apr 05, 2000 at 09:54:37PM -0400, Daniel Hagan wrote: | > You need to do error checking on your calls to malloc. Other than that, | I | > think it looks ok on an initial reading. (I'm certainly not an expert | on | > libc though.) | | Thanks for looking at this. I wanted to include error checking, but I | wasn't sure of what action to take if an error occurred. I remember | finding some other malloc calls in libc that didn't check for errors, so | I just left it alone. If anyone can point me to an example of how to | handle this, I'd appreciate it. Well, the manpage for tmpfile(3) says it will return NULL on failure and either fdopen(3) or mkstemp(3) would set errno, so, to stay consistent, you should return NULL on a malloc failure, and malloc wouuld set errno = ENOMEM. You will probably want to add this to the manpage as well. hope that helps, /**************************************** * Mike Heffner * * Fredericksburg, VA ICQ# 882073 * * Sent at: 06-Apr-2000 -- 01:59:32 EST * * http://my.ispchannel.com/~mheffner * ****************************************/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 5 23:40: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B279237BAD4 for ; Wed, 5 Apr 2000 23:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA25201; Wed, 5 Apr 2000 23:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9CD0937BAE8 for ; Wed, 5 Apr 2000 23:34:23 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA24665; Wed, 5 Apr 2000 23:34:23 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004060634.XAA24665@freefall.freebsd.org> Date: Wed, 5 Apr 2000 23:34:23 -0700 (PDT) From: cattelan@thebarn.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/17821: Wavelan driver not working in 4.0 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17821 >Category: kern >Synopsis: Wavelan driver not working in 4.0 >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Apr 5 23:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Russell Cattelan >Release: 4.0-STABLE >Organization: Digital Elves >Environment: FreeBSD lupo.thebarn.com 4.0-STABLE FreeBSD 4.0-STABLE #6: Thu Mar 30 23:15:22 CST 2000 cattelan@lupo.thebarn.com:/export/cyan/src/sys/compile/LUPO i386 >Description: WaveLan driver fails to allocate needed resouces on NIC card. Mar 30 23:45:22 lupo pccardd[334]: pccardd started Mar 30 23:45:57 lupo /kernel: wi0: tx buffer allocation failed Mar 30 23:45:57 lupo /kernel: wi0: starting DAD for fe80:000c::0260:1dff:fe1d:3 848 Mar 30 23:45:57 lupo /kernel: wi0: xmit failed Mar 30 23:45:57 lupo routed[85]: possible netmask problem between wi0:10.0.0.0/ 8 and xl0:10.0.0.0/24 Mar 30 23:45:58 lupo /kernel: wi0: DAD complete for fe80:000c::0260:1dff:fe1d:3 848 - no duplicates found Mar 30 23:46:00 lupo /kernel: wi0: tx buffer allocation failed Mar 30 23:46:00 lupo /kernel: wi0: xmit failed Mar 30 23:46:04 lupo /kernel: wi0: device timeout Mar 30 23:46:04 lupo /kernel: wi0: tx buffer allocation failed Mar 30 23:46:07 lupo /kernel: wi0: xmit failed Mar 30 23:46:12 lupo /kernel: wi0: device timeout Mar 30 23:46:12 lupo /kernel: wi0: tx buffer allocation failed Mar 30 23:53:32 lupo /kernel: wi0: tx buffer allocation failed Mar 30 23:53:32 lupo /kernel: wi0: xmit failed Mar 30 23:53:36 lupo /kernel: wi0: device timeout Mar 30 23:53:36 lupo /kernel: wi0: tx buffer allocation failed Mar 30 23:53:38 lupo /kernel: wi0: xmit failed Mar 30 23:53:43 lupo /kernel: wi0: device timeout Mar 30 23:53:43 lupo /kernel: wi0: tx buffer allocation failed Mar 30 23:53:47 lupo /kernel: wi0: xmit failed Mar 30 23:53:52 lupo /kernel: wi0: device timeout Mar 30 23:53:52 lupo /kernel: wi0: tx buffer allocation failed >How-To-Repeat: Plug in a WaveLan (Silver in this case) >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 5 23:50: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BBCD837B7E3 for ; Wed, 5 Apr 2000 23:50:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA25798; Wed, 5 Apr 2000 23:50:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 5 Apr 2000 23:50:04 -0700 (PDT) Message-Id: <200004060650.XAA25798@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Anatoly Vorobey Subject: Re: bin/17619: pax cannot read all tar files created by tar. Reply-To: Anatoly Vorobey Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/17619; it has been noted by GNATS. From: Anatoly Vorobey To: Marc Olzheim Cc: freebsd-gnats-submit@freebsd.org Subject: Re: bin/17619: pax cannot read all tar files created by tar. Date: Thu, 6 Apr 2000 08:46:40 +0000 On Mon, Apr 03, 2000 at 10:20:54AM +0200, Marc Olzheim wrote: > > Bah. So what should be done in this case (assuming something needs > > to be done?). I can patch pax to accept one-block archives and > > yet produce correct archives - maybe that's the way to go? Given that > > the GNU tar maintainer had more than 8 years to think about it, he's > > obviously emotionally attached to one-trailing-block files and won't > > let them go ;) > > That seems like a good idea to me. See the attached patch. Tested, works fine. Maybe someone shall review/commit it? Index: tar.c =================================================================== RCS file: /freebsd/cvs/src/bin/pax/tar.c,v retrieving revision 1.13 diff -u -r1.13 tar.c --- tar.c 1999/08/27 23:14:47 1.13 +++ tar.c 2000/04/06 08:36:55 @@ -86,7 +86,7 @@ tar_endwr() #endif { - return(wr_skip((off_t)(NULLCNT*BLKMULT))); + return(wr_skip((off_t)(NULL_PUT*BLKMULT))); } /* @@ -104,7 +104,7 @@ tar_endrd() #endif { - return((off_t)(NULLCNT*BLKMULT)); + return((off_t)(NULL_PUT*BLKMULT)); } /* @@ -152,8 +152,14 @@ * NOT try to id a trailer during resync mode. During resync mode we * might as well throw this block out since a valid header can NEVER be * a block of all 0 (we must have a valid file name). + * + * A bug in GNU tar causes it to sometimes produce trailers with + * just one zero block. To handle this, we will put NULL_PUT + * blocks in our archives, but will expect NULL_EXPECT on reads. + * If there are actually two zero blocks, the second one will be + * skipped on the next next_head() call. */ - if (!in_resync && (++*cnt >= NULLCNT)) + if (!in_resync && (++*cnt >= NULL_EXPECT)) return(0); return(1); } Index: tar.h =================================================================== RCS file: /freebsd/cvs/src/bin/pax/tar.h,v retrieving revision 1.6 diff -u -r1.6 tar.h --- tar.h 1999/08/27 23:14:47 1.6 +++ tar.h 2000/04/06 08:32:28 @@ -44,7 +44,16 @@ #define CHK_LEN 8 /* length of checksum field */ #define TNMSZ 100 /* size of name field */ #ifdef _PAX_ -#define NULLCNT 2 /* number of null blocks in trailer */ + +/* + * The USTAR format requires two null blocks to trail every file, yet + * GNU tar will sometimes produce tar files with only one. Hence the + * double standard. + */ + +#define NULL_PUT 2 /* num of blocks to put in trailer */ +#define NULL_EXPECT 1 /* num of blocks to expect there */ + #define CHK_OFFSET 148 /* start of checksum field */ #define BLNKSUM 256L /* sum of checksum field using ' ' */ #endif /* _PAX_ */ -- Anatoly Vorobey, mellon@pobox.com http://pobox.com/~mellon/ "Angels can fly because they take themselves lightly" - G.K.Chesterton To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Apr 5 23:58: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 183C637BB80; Wed, 5 Apr 2000 23:58:05 -0700 (PDT) (envelope-from adrian@FreeBSD.org) Received: (from adrian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA26793; Wed, 5 Apr 2000 23:58:04 -0700 (PDT) (envelope-from adrian@FreeBSD.org) Date: Wed, 5 Apr 2000 23:58:04 -0700 (PDT) From: Message-Id: <200004060658.XAA26793@freefall.freebsd.org> To: adrian@FreeBSD.org, freebsd-bugs@FreeBSD.org, adrian@FreeBSD.org Subject: Re: kern/17819: Build ports on nfs & union mount panics kernel Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Build ports on nfs & union mount panics kernel Responsible-Changed-From-To: freebsd-bugs->adrian Responsible-Changed-By: adrian Responsible-Changed-When: Wed Apr 5 23:56:55 PDT 2000 Responsible-Changed-Why: I said that I'd take this one To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 6 0:20: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3481637BEA8 for ; Thu, 6 Apr 2000 00:20:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA30660; Thu, 6 Apr 2000 00:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 6 Apr 2000 00:20:03 -0700 (PDT) Message-Id: <200004060720.AAA30660@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Anatoly Vorobey Subject: Re: bin/3170: vi freaks and dump core if user doesn't exist Reply-To: Anatoly Vorobey Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/3170; it has been noted by GNATS. From: Anatoly Vorobey To: Daniel Hagan Cc: freebsd-gnats-submit@freebsd.org Subject: Re: bin/3170: vi freaks and dump core if user doesn't exist Date: Thu, 6 Apr 2000 09:12:34 +0000 On Wed, Apr 05, 2000 at 06:20:03PM -0700, Daniel Hagan wrote: > The following reply was made to PR bin/3170; it has been noted by GNATS. > > From: Daniel Hagan > To: freebsd-gnats-submit@FreeBSD.org, fenner@parc.xerox.com > Cc: > Subject: Re: bin/3170: vi freaks and dump core if user doesn't exist > Date: Wed, 05 Apr 2000 21:09:15 -0400 > > I tried this under 3.4-RELEASE with a bogus local user and couldn't > recreate it. If this still exists, is it tied to NIS somehow? FWIW, I succeeded in recreating this in -CURRENT a few weeks ago, but only once. I created a user, logged in as the user, created some files, logged in as root at the same time, removed the user, switched back to the user shell, tried to edit the files with vi. After I danced around a file and a bunch of lines, it freaked as described in the PR, but I couldn't reproduce it later. Apparently the bug is still there but triggered pretty randomly. No NIS whatsoever in my setup. -- Anatoly Vorobey, mellon@pobox.com http://pobox.com/~mellon/ "Angels can fly because they take themselves lightly" - G.K.Chesterton To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 6 1: 0: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B4CEE37BD96 for ; Thu, 6 Apr 2000 01:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA34448; Thu, 6 Apr 2000 01:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 6 Apr 2000 01:00:02 -0700 (PDT) Message-Id: <200004060800.BAA34448@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: John Hay Subject: Re: kern/17821: Wavelan driver not working in 4.0 Reply-To: John Hay Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/17821; it has been noted by GNATS. From: John Hay To: cattelan@thebarn.com Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: kern/17821: Wavelan driver not working in 4.0 Date: Thu, 6 Apr 2000 09:48:28 +0200 (SAT) > >Synopsis: Wavelan driver not working in 4.0 ... > >Environment: > FreeBSD lupo.thebarn.com 4.0-STABLE FreeBSD 4.0-STABLE #6: Thu Mar 30 23:15:22 CST 2000 cattelan@lupo.thebarn.com:/export/cyan/src/sys/compile/LUPO i386 > >Description: > WaveLan driver fails to allocate needed resouces on NIC card. > > Mar 30 23:45:22 lupo pccardd[334]: pccardd started > Mar 30 23:45:57 lupo /kernel: wi0: tx buffer allocation failed > Mar 30 23:45:57 lupo /kernel: wi0: starting DAD for fe80:000c::0260:1dff:fe1d:3 > 848 > Mar 30 23:45:57 lupo /kernel: wi0: xmit failed > Mar 30 23:45:57 lupo routed[85]: possible netmask problem between wi0:10.0.0.0/ > 8 and xl0:10.0.0.0/24 > Mar 30 23:45:58 lupo /kernel: wi0: DAD complete for fe80:000c::0260:1dff:fe1d:3 > 848 - no duplicates found > Mar 30 23:46:00 lupo /kernel: wi0: tx buffer allocation failed > Mar 30 23:46:00 lupo /kernel: wi0: xmit failed > Mar 30 23:46:04 lupo /kernel: wi0: device timeout > Mar 30 23:46:04 lupo /kernel: wi0: tx buffer allocation failed > Mar 30 23:46:07 lupo /kernel: wi0: xmit failed > Mar 30 23:46:12 lupo /kernel: wi0: device timeout > Mar 30 23:46:12 lupo /kernel: wi0: tx buffer allocation failed > Mar 30 23:53:32 lupo /kernel: wi0: tx buffer allocation failed > Mar 30 23:53:32 lupo /kernel: wi0: xmit failed > Mar 30 23:53:36 lupo /kernel: wi0: device timeout > Mar 30 23:53:36 lupo /kernel: wi0: tx buffer allocation failed > Mar 30 23:53:38 lupo /kernel: wi0: xmit failed > Mar 30 23:53:43 lupo /kernel: wi0: device timeout > Mar 30 23:53:43 lupo /kernel: wi0: tx buffer allocation failed > Mar 30 23:53:47 lupo /kernel: wi0: xmit failed > Mar 30 23:53:52 lupo /kernel: wi0: device timeout > Mar 30 23:53:52 lupo /kernel: wi0: tx buffer allocation failed > > >How-To-Repeat: > Plug in a WaveLan (Silver in this case) You don't give much information about your system. Is it a notebook or a desktop PC? If a desktop, are you using an ISA-PCMCIA card or a PCI-PCMCIA card? I'm using a ISA-PCMCIA card with the wavelan card here with no problems, but I see the same errors that you do with a PCI-PCMCIA card, even in 4.0-STABLE and -CURRENT. That is even with the support for the TI-1225 PCI-PCMCIA bridge that Warner did commit a few days ago. I suspect that there is some register setting still missing somewhere, but it is getting closer. John -- John Hay -- John.Hay@mikom.csir.co.za To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 6 2:10: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 39C5837BB68 for ; Thu, 6 Apr 2000 02:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA43561; Thu, 6 Apr 2000 02:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 342E537BB68 for ; Thu, 6 Apr 2000 02:06:54 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA43220; Thu, 6 Apr 2000 02:06:54 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004060906.CAA43220@freefall.freebsd.org> Date: Thu, 6 Apr 2000 02:06:54 -0700 (PDT) From: jdg@debian.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: bin/17824: [PATCH] /usr/bin/column has arithmetic overflows Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17824 >Category: bin >Synopsis: [PATCH] /usr/bin/column has arithmetic overflows >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Apr 6 02:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Julian Gilbey >Release: I'm not (but it's still a bug in latest CVS) >Organization: >Environment: N/A >Description: I discovered that column gave divide-by-zero errors in certain situations (specifically, if the number of display columns is c and the widest item of data has width w, then letting w8 = 8*((w+8)/8) (rounding down to the nearest int), the error will occur if wHow-To-Repeat: polya:~ $ cat > /tmp/72 123456789012345678901234567890123456789012345678901234567890123456789012 polya:~ $ column -c 79 Fix: [This patch won't work directly because of tab->space conversion.] --- column.c.orig Thu Mar 25 02:47:47 1999 +++ column.c Wed Apr 5 23:42:31 2000 @@ -145,6 +145,10 @@ maxlength = (maxlength + TAB) & ~(TAB - 1); numcols = termwidth / maxlength; + if (!numcols) { + print(); + exit(eval); + } endcol = maxlength; for (chcnt = col = 0, lp = list;; ++lp) { chcnt += printf("%s", *lp); @@ -173,6 +177,10 @@ maxlength = (maxlength + TAB) & ~(TAB - 1); numcols = termwidth / maxlength; + if (!numcols) { + print(); + exit(eval); + } numrows = entries / numcols; if (entries % numcols) ++numrows; >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 6 3:39: 8 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DCA6337B7B0; Thu, 6 Apr 2000 03:39:06 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA52748; Thu, 6 Apr 2000 03:39:06 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Thu, 6 Apr 2000 03:39:06 -0700 (PDT) From: Message-Id: <200004061039.DAA52748@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, sheldonh@FreeBSD.org Subject: Re: misc/17155: Add mount(8) check to /etc/security Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Add mount(8) check to /etc/security Responsible-Changed-From-To: freebsd-bugs->sheldonh Responsible-Changed-By: sheldonh Responsible-Changed-When: Thu Apr 6 03:37:58 PDT 2000 Responsible-Changed-Why: I'll take this one. :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 6 5: 6:43 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EE77637B505; Thu, 6 Apr 2000 05:06:41 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA63064; Thu, 6 Apr 2000 05:06:42 -0700 (PDT) (envelope-from ru@FreeBSD.org) Date: Thu, 6 Apr 2000 05:06:42 -0700 (PDT) From: Message-Id: <200004061206.FAA63064@freefall.freebsd.org> To: bdluevel@heitec.net, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/17788: systat, top, swapinfo fail if /boot/loader not used Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: systat, top, swapinfo fail if /boot/loader not used State-Changed-From-To: open->closed State-Changed-By: ru State-Changed-When: Thu Apr 6 05:04:05 PDT 2000 State-Changed-Why: Duplicate of PR 17422. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 6 5:10: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0A15837BEDC for ; Thu, 6 Apr 2000 05:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA63250; Thu, 6 Apr 2000 05:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 87E0E37BBC2 for ; Thu, 6 Apr 2000 05:02:16 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA62538; Thu, 6 Apr 2000 05:02:17 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004061202.FAA62538@freefall.freebsd.org> Date: Thu, 6 Apr 2000 05:02:17 -0700 (PDT) From: vadim@etc.lviv.ua To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: conf/17826: Ukrainian locale is broken Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17826 >Category: conf >Synopsis: Ukrainian locale is broken >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Apr 6 05:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Vadim Chekan >Release: FreeBSD-3.2 >Organization: GC >Environment: FreeBSD extra.gc.lviv.ua 3.1-STABLE FreeBSD 3.1-STABLE #0: Wed Sep 8 18:43:15 EEST 1999 root@extra.gc.lviv.ua:/usr/src/sys/compile/EXTRA.3 i386 >Description: In FreeBSD-4.0 in http://www.freebsd.org/cgi/cvsweb.cgi/src/share/mklocale/uk_UA.KOI8-U.src?rev=1.1 ukrainian character aren't present in ALPHA section. >How-To-Repeat: >Fix: Add ukrainian chars in file src/share/mklocale/uk_UA.KOI8-U.src - ALPHA 'A' - 'Z' 'a' - 'z' 0xa3 0xb3 0xc0 - 0xff + ALPHA 'A' - 'Z' 'a' - 'z' 0xa3 0xb3 0xa4 0xb4 0xa6 0xb6 0xa7 0xb7 0xad 0xbd 0xc0 - 0xff >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 6 5:30: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EADDF37BBD7 for ; Thu, 6 Apr 2000 05:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA65129; Thu, 6 Apr 2000 05:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 6 Apr 2000 05:30:02 -0700 (PDT) Message-Id: <200004061230.FAA65129@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: bin/17824: [PATCH] /usr/bin/column has arithmetic overflows Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/17824; it has been noted by GNATS. From: Sheldon Hearn To: jdg@debian.org Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: bin/17824: [PATCH] /usr/bin/column has arithmetic overflows Date: Thu, 06 Apr 2000 14:25:53 +0200 On Thu, 06 Apr 2000 02:06:54 MST, jdg@debian.org wrote: > maxlength = (maxlength + TAB) & ~(TAB - 1); > numcols = termwidth / maxlength; > + if (!numcols) { I don't get it. You still don't seem to be protecting against divide-by-zero. Shouldn't you be testing the value of the dividend before dividing? Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 6 5:40: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 35A9837BBD7 for ; Thu, 6 Apr 2000 05:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA65956; Thu, 6 Apr 2000 05:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 6 Apr 2000 05:40:02 -0700 (PDT) Message-Id: <200004061240.FAA65956@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: bin/17824: [PATCH] /usr/bin/column has arithmetic overflows Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/17824; it has been noted by GNATS. From: Sheldon Hearn To: jdg@debian.org Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: bin/17824: [PATCH] /usr/bin/column has arithmetic overflows Date: Thu, 06 Apr 2000 14:37:05 +0200 On Thu, 06 Apr 2000 14:25:53 +0200, Sheldon Hearn wrote: > I don't get it. You still don't seem to be protecting against > divide-by-zero. Shouldn't you be testing the value of the dividend > before dividing? Agh, I meant the divisor, of course. Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 6 6: 0: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BE14F37B6B2; Thu, 6 Apr 2000 06:00:05 -0700 (PDT) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA67317; Thu, 6 Apr 2000 06:00:05 -0700 (PDT) (envelope-from phantom@FreeBSD.org) Date: Thu, 6 Apr 2000 06:00:05 -0700 (PDT) From: Message-Id: <200004061300.GAA67317@freefall.freebsd.org> To: phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org, phantom@FreeBSD.org Subject: Re: conf/17826: Ukrainian locale is broken Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Ukrainian locale is broken Responsible-Changed-From-To: freebsd-bugs->phantom Responsible-Changed-By: phantom Responsible-Changed-When: Thu Apr 6 05:57:41 PDT 2000 Responsible-Changed-Why: I'll take it To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 6 6: 0:37 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from mail03.syd.optusnet.com.au (mail03.syd.optusnet.com.au [203.2.75.106]) by hub.freebsd.org (Postfix) with ESMTP id D0CE937B7E0; Thu, 6 Apr 2000 06:00:30 -0700 (PDT) (envelope-from diskiller@borg-cube.com) Received: from bender (adlax2-058.dialup.optusnet.com.au [198.142.52.58]) by mail03.syd.optusnet.com.au (8.9.3/8.9.3) with ESMTP id VAA31105; Thu, 6 Apr 2000 21:36:35 +1000 Date: Thu, 6 Apr 2000 21:06:49 +0930 (CST) From: Martin Minkus X-Sender: diskiller@bender.on.diskiller.net To: hackers@freebsd.org, bugs@freebsd.org Subject: calcru: negative time Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'm sure this is already known, but on FreeBSD 4.0 and 5.0, i keep getting the follow error ... calcru: negative time of xxxxxxxxxx usec for pid yyyyy (dnetc) Where xxxx is a large number, sometimes negative, sometimes not, and yyyy is the PID of dnetc. dnetc is the Distributed.net rc5 client of course. martin. -- Martin Minkus aka DiSKiLLeR Email: diskiller@borg-cube.com Web: http://www.diskiller.net I live in a world of paradox... my willingness to destroy is your chance for improvement, my hate is your faith, my failure is your victory - a victory that won't last. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 6 6: 1:37 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from axl.ops.uunet.co.za (axl.ops.uunet.co.za [196.31.1.175]) by hub.freebsd.org (Postfix) with ESMTP id 9960437B7E0 for ; Thu, 6 Apr 2000 06:01:33 -0700 (PDT) (envelope-from sheldonh@axl.ops.uunet.co.za) Received: from sheldonh (helo=axl.ops.uunet.co.za) by axl.ops.uunet.co.za with local-esmtp (Exim 3.13 #1) id 12dBuG-0000N3-00; Thu, 06 Apr 2000 15:01:08 +0200 From: Sheldon Hearn To: Daniel Hagan Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: bin/4238: chpass only occasionally works in conjunction with ed In-reply-to: Your message of "Wed, 05 Apr 2000 18:20:05 MST." <200004060120.SAA71187@freefall.freebsd.org> Date: Thu, 06 Apr 2000 15:01:08 +0200 Message-ID: <1428.955026068@axl.ops.uunet.co.za> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 05 Apr 2000 18:20:05 MST, Daniel Hagan wrote: > Is this patch just suffering shelf rot, or has someone found a > problem with it? I suspect that people are just too lazy to figure out how to handle the fact that this would make chpass part of the crypto diestribution. Well, that's certainly my reason for passing it over. Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 6 6: 3:24 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from axl.ops.uunet.co.za (axl.ops.uunet.co.za [196.31.1.175]) by hub.freebsd.org (Postfix) with ESMTP id 07A3837B98C for ; Thu, 6 Apr 2000 06:03:21 -0700 (PDT) (envelope-from sheldonh@axl.ops.uunet.co.za) Received: from sheldonh (helo=axl.ops.uunet.co.za) by axl.ops.uunet.co.za with local-esmtp (Exim 3.13 #1) id 12dBvv-0000Oc-00; Thu, 06 Apr 2000 15:02:51 +0200 From: Sheldon Hearn To: Mike Heffner Cc: "Lachlan O'Dea" , freebsd-bugs@FreeBSD.ORG Subject: Re: bin/16924: tmpfile(3) ignores TMPDIR and always uses /tmp In-reply-to: Your message of "Thu, 06 Apr 2000 02:10:25 -0400." Date: Thu, 06 Apr 2000 15:02:51 +0200 Message-ID: <1525.955026171@axl.ops.uunet.co.za> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, 06 Apr 2000 02:10:25 -0400, Mike Heffner wrote: > you should return NULL on a malloc failure, and malloc wouuld set > errno = ENOMEM. No it wouldn't. Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 6 6:50: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EBA3D37BE25 for ; Thu, 6 Apr 2000 06:50:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA38889; Thu, 6 Apr 2000 06:50:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 6 Apr 2000 06:50:04 -0700 (PDT) Message-Id: <200004061350.GAA38889@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: bin/16924: tmpfile(3) ignores TMPDIR and always uses /tmp Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/16924; it has been noted by GNATS. From: Sheldon Hearn To: Mike Heffner Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: bin/16924: tmpfile(3) ignores TMPDIR and always uses /tmp Date: Thu, 06 Apr 2000 15:41:20 +0200 On Thu, 06 Apr 2000 09:28:55 -0400, Mike Heffner wrote: > I assume you mean the part of malloc setting ENOMEM. Is there a case > where it wouldn't set ENOMEM? According to the manpage, this is how > malloc(3) should behave. Bleh, please ignore that. I don't know what I've been smoking, but I'm actually the guy who modified the malloc(3) manual page to specifically state that it _does_ set errno! :-) The problem is that the C standard doesn't specify that malloc() sets errno. We should probably mention in malloc(3)'s STANDARDS section that setting errno from malloc() is mandated by the standard and that other implementations can not be relied on to do so. Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 6 7: 0: 8 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D143D37C1EF for ; Thu, 6 Apr 2000 07:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA39935; Thu, 6 Apr 2000 07:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 6 Apr 2000 07:00:02 -0700 (PDT) Message-Id: <200004061400.HAA39935@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Daniel Hagan Subject: Re: bin/16924: tmpfile(3) ignores TMPDIR and always uses /tmp Reply-To: Daniel Hagan Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/16924; it has been noted by GNATS. From: Daniel Hagan To: "Lachlan O'Dea" Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: bin/16924: tmpfile(3) ignores TMPDIR and always uses /tmp Date: Thu, 6 Apr 2000 09:56:33 -0400 (EDT) On Thu, 6 Apr 2000, Lachlan O'Dea wrote: > Thanks for looking at this. I wanted to include error checking, but I > wasn't sure of what action to take if an error occurred. I remember > finding some other malloc calls in libc that didn't check for errors, so > I just left it alone. If anyone can point me to an example of how to > handle this, I'd appreciate it. From the information given in the man page for tmpfile(3), it would appear that the correct way to handle a malloc failure would be to return null and leave errno set to whatever value malloc(3) put there. See the RETURN VALUES and ERRORS section of the tmpfile(3) manpage. The original code is incorrect anyway since it doesn't handle malloc errors. Daniel -- Daniel Hagan Computer Science CSE dhagan@cs.vt.edu http://www.cs.vt.edu/~dhagan/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 6 7: 7:46 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from vtopus.cs.vt.edu (vtopus.cs.vt.edu [128.173.40.24]) by hub.freebsd.org (Postfix) with ESMTP id DE2F137BE25 for ; Thu, 6 Apr 2000 07:07:37 -0700 (PDT) (envelope-from dhagan@cs.vt.edu) Received: from localhost (dhagan@localhost) by vtopus.cs.vt.edu (8.9.1a/8.9.1) with ESMTP id KAA30532; Thu, 6 Apr 2000 10:07:28 -0400 (EDT) Date: Thu, 6 Apr 2000 10:07:28 -0400 (EDT) From: Daniel Hagan To: Sheldon Hearn Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: bin/4238: chpass only occasionally works in conjunction with ed In-Reply-To: <1428.955026068@axl.ops.uunet.co.za> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, 6 Apr 2000, Sheldon Hearn wrote: > I suspect that people are just too lazy to figure out how to handle the > fact that this would make chpass part of the crypto diestribution. > > Well, that's certainly my reason for passing it over. Why would this make chpass part of the crypto distribution? I was under the impression that md5 wasn't export controlled (it's a hash algorithm, not an encryption algorithm). Daniel -- Daniel Hagan Computer Science CSE dhagan@cs.vt.edu http://www.cs.vt.edu/~dhagan/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 6 7:10: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4838C37BFE5 for ; Thu, 6 Apr 2000 07:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA41115; Thu, 6 Apr 2000 07:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 6 Apr 2000 07:10:02 -0700 (PDT) Message-Id: <200004061410.HAA41115@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Daniel Hagan Subject: Re: bin/3170: vi freaks and dump core if user doesn't exist Reply-To: Daniel Hagan Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/3170; it has been noted by GNATS. From: Daniel Hagan To: Anatoly Vorobey Cc: freebsd-gnats-submit@freebsd.org Subject: Re: bin/3170: vi freaks and dump core if user doesn't exist Date: Thu, 6 Apr 2000 10:00:41 -0400 (EDT) On Thu, 6 Apr 2000, Anatoly Vorobey wrote: > FWIW, I succeeded in recreating this in -CURRENT a few weeks ago, but > only once. I created a user, logged in as the user, created some files, > logged in as root at the same time, removed the user, switched back > to the user shell, tried to edit the files with vi. After I danced > around a file and a bunch of lines, it freaked as described in the PR, > but I couldn't reproduce it later. Apparently the bug is still there but > triggered pretty randomly. No NIS whatsoever in my setup. I didn't try this exact sequence. I tried: 1) Add bogus user 2) login as bogus 3) create file owned by bogus 4) logout 5) remove bogus from passwd files 6) edit file as root I'll try your procedure sometime, which I understand was: 1) Add bogus user 2) login as bogus 3) create file owned by bogus 4) remove bogus from passwd files while bogus is still logged in 5) edit file as bogus (who is still logged in) 6) hopefully get core dump and recreate problem Daniel -- Daniel Hagan Computer Science CSE dhagan@cs.vt.edu http://www.cs.vt.edu/~dhagan/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 6 8:30: 9 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B529737C1A5 for ; Thu, 6 Apr 2000 08:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA49262; Thu, 6 Apr 2000 08:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2385537C0B1 for ; Thu, 6 Apr 2000 08:24:11 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA48633; Thu, 6 Apr 2000 08:24:11 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004061524.IAA48633@freefall.freebsd.org> Date: Thu, 6 Apr 2000 08:24:11 -0700 (PDT) From: matt@thebiz.net To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/17829: The dc driver is seriously broken Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17829 >Category: kern >Synopsis: The dc driver is seriously broken >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Apr 6 08:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Matthew Zahorik >Release: 4.0-RELEASE >Organization: BiznessOnline.com >Environment: [web1]:11:06am:~% uname -a FreeBSD web1.thebiz.net 4.0-RELEASE FreeBSD 4.0-RELEASE #8: Tue Apr 4 13:36:42 EDT 2000 root@web1.thebiz.net:/usr/src/sys/compile/DISKLESS-DS10 alpha >Description: The dc driver is broken in many different ways: 1. It doesn't autonegotate properly. On a Cisco 2948 switch, set to defaults, it will autoneg 10BaseT/half duplex. All other machines (and the de driver) autoneg 100BaseTX/half or full duplex. If the switch is hard coded to 100Mb/full or half, the card will never negotiate. 2. When hard-coding the interface to a specific speed/duplex, packets flow too early. You run the risk that BOOTP clients time out, or DHCP requests go unanswered. 3. Link lights don't work, so you have no way of visually telling that the card has link. (which is important if you have stacks of headless machines) The Alpha platform has a hack to address #1. It looks in the BIOS settings (SRM) and if the code is hard-coded to a specific speed/duplex, the driver will force the card to that speed/duplex. #2 makes it real difficult to bootp reliably, since the kernel misses it's first ARP and BOOTPc packets go unanswered. #3 is awful annoying. Once the card is hard-coded 100/full, and the machine actually boots diskless (assuming it doesn't timeout), it runs perfectly clean in full duplex mode. (minus the link lights) >How-To-Repeat: Just use a 2114x type card in a machine, let it go to full auto, watch the results. Also, try building a diskless client and make sure the driver initialization routine comes back only after the card is really ready. If this is correct, the diskless client should boot without timeouts. Also, do this all through a switch where the card has to do full autonegotiation with a smarter partner (rather than a hub) >Fix: Recompile the kernel to use de rather than dc. de has a known problem where it can't do full-duplex, but at least it autonegotiates 100Mb/half. I'd also suggest GENERIC kernels don't go out with dc enabled - it can really fubar an installation if things don't autonegotiate properly. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 6 9:20: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3673B37B9D2 for ; Thu, 6 Apr 2000 09:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA55436; Thu, 6 Apr 2000 09:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from isabase.philol.msu.ru (isabase.philol.msu.ru [195.208.217.73]) by hub.freebsd.org (Postfix) with ESMTP id 4479D37BB01 for ; Thu, 6 Apr 2000 09:11:43 -0700 (PDT) (envelope-from grg@isabase.philol.msu.ru) Received: (from grg@localhost) by isabase.philol.msu.ru (8.9.3/8.9.2) id UAA28645; Thu, 6 Apr 2000 20:11:46 +0400 (MSD) (envelope-from grg) Message-Id: <200004061611.UAA28645@isabase.philol.msu.ru> Date: Thu, 6 Apr 2000 20:11:46 +0400 (MSD) From: Grigoriy Strokin Reply-To: grg@isabase.philol.msu.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/17830: /usr/bin/login called from command line doesn't restore the utmp record Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17830 >Category: bin >Synopsis: /usr/bin/login called from command line doesn't restore the utmp record >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Apr 6 09:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Grigoriy Strokin >Release: FreeBSD 4.0-STABLE i386 >Organization: Moscow University >Environment: >Description: If one uses /usr/bin/login from command line to login as another user, then who reports that another user as logged in even after logout. >How-To-Repeat: user1 $ login user2 passord: xxx user2 $ logout user1 $ who 'who' will report that user2 is still logged in from current terminal >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 6 9:30: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CB59C37B6DC for ; Thu, 6 Apr 2000 09:30:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA56519; Thu, 6 Apr 2000 09:30:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 6 Apr 2000 09:30:04 -0700 (PDT) Message-Id: <200004061630.JAA56519@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Julian Gilbey Subject: Re: bin/17824: [PATCH] /usr/bin/column has arithmetic overflows Reply-To: Julian Gilbey Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/17824; it has been noted by GNATS. From: Julian Gilbey To: Sheldon Hearn Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: bin/17824: [PATCH] /usr/bin/column has arithmetic overflows Date: Thu, 6 Apr 2000 17:26:51 +0100 On Thu, Apr 06, 2000 at 02:25:53PM +0200, Sheldon Hearn wrote: > On Thu, 06 Apr 2000 02:06:54 MST, jdg@debian.org wrote: > > > maxlength = (maxlength + TAB) & ~(TAB - 1); > > numcols = termwidth / maxlength; > > + if (!numcols) { > > I don't get it. You still don't seem to be protecting against > divide-by-zero. Shouldn't you be testing the value of the dividend > before dividing? maxlength >= 0. So, assuming that TAB is 8 (which it presumably is), the first line of the code rounds maxlength up to the next multiple of 8, so maxlength >= 8 after this step. However, it is possible that numcols is zero if termwidth is less than the new maxlength, in which case we get a divide by zero in the next line (numrows = numlines / numcols or something like that). That's why I test for numcols being zero and not maxlength. Julian -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- Julian Gilbey, Dept of Maths, QMW, Univ. of London. J.D.Gilbey@qmw.ac.uk Debian GNU/Linux Developer, see http://www.debian.org/~jdg Donate free food to the world's hungry: see http://www.thehungersite.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 6 9:30:11 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 15AB837B969 for ; Thu, 6 Apr 2000 09:30:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA56524; Thu, 6 Apr 2000 09:30:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 6 Apr 2000 09:30:05 -0700 (PDT) Message-Id: <200004061630.JAA56524@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Russell Cattelan Subject: Re: kern/17821: Wavelan driver not working in 4.0 Reply-To: Russell Cattelan Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/17821; it has been noted by GNATS. From: Russell Cattelan To: John Hay Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: kern/17821: Wavelan driver not working in 4.0 Date: Thu, 06 Apr 2000 11:26:51 -0500 John Hay wrote: > > >Synopsis: Wavelan driver not working in 4.0 > ... > > >Environment: > > FreeBSD lupo.thebarn.com 4.0-STABLE FreeBSD 4.0-STABLE #6: Thu Mar 30 23:15:22 CST 2000 cattelan@lupo.thebarn.com:/export/cyan/src/sys/compile/LUPO i386 > > >Description: > > WaveLan driver fails to allocate needed resouces on NIC card. > > > > Mar 30 23:45:22 lupo pccardd[334]: pccardd started > > Mar 30 23:45:57 lupo /kernel: wi0: tx buffer allocation failed > > Mar 30 23:45:57 lupo /kernel: wi0: starting DAD for fe80:000c::0260:1dff:fe1d:3 > > 848 > > Mar 30 23:45:57 lupo /kernel: wi0: xmit failed > > Mar 30 23:45:57 lupo routed[85]: possible netmask problem between wi0:10.0.0.0/ > > 8 and xl0:10.0.0.0/24 > > Mar 30 23:45:58 lupo /kernel: wi0: DAD complete for fe80:000c::0260:1dff:fe1d:3 > > 848 - no duplicates found > > Mar 30 23:46:00 lupo /kernel: wi0: tx buffer allocation failed > > Mar 30 23:46:00 lupo /kernel: wi0: xmit failed > > Mar 30 23:46:04 lupo /kernel: wi0: device timeout > > Mar 30 23:46:04 lupo /kernel: wi0: tx buffer allocation failed > > Mar 30 23:46:07 lupo /kernel: wi0: xmit failed > > Mar 30 23:46:12 lupo /kernel: wi0: device timeout > > Mar 30 23:46:12 lupo /kernel: wi0: tx buffer allocation failed > > Mar 30 23:53:32 lupo /kernel: wi0: tx buffer allocation failed > > Mar 30 23:53:32 lupo /kernel: wi0: xmit failed > > Mar 30 23:53:36 lupo /kernel: wi0: device timeout > > Mar 30 23:53:36 lupo /kernel: wi0: tx buffer allocation failed > > Mar 30 23:53:38 lupo /kernel: wi0: xmit failed > > Mar 30 23:53:43 lupo /kernel: wi0: device timeout > > Mar 30 23:53:43 lupo /kernel: wi0: tx buffer allocation failed > > Mar 30 23:53:47 lupo /kernel: wi0: xmit failed > > Mar 30 23:53:52 lupo /kernel: wi0: device timeout > > Mar 30 23:53:52 lupo /kernel: wi0: tx buffer allocation failed > > > > >How-To-Repeat: > > Plug in a WaveLan (Silver in this case) > > You don't give much information about your system. Is it a notebook > or a desktop PC? If a desktop, are you using an ISA-PCMCIA card or > a PCI-PCMCIA card? Sorry... trying to do to many things at once. I have a sony vaio PCG-748 pcic-pci0: at device 10.0 on pci0 The other machine is a regular desktop with a ISA-PCMCIA card. Both machines give the same error, which leads me to believe it's a driver issue. I tracked the error down to buffer allocation on the NIC card it self Note the ethernet address of the card is 00:60:1d:1d:38:20 Which seems to be the only form of "version" these things have. > > > I'm using a ISA-PCMCIA card with the wavelan card here with no > problems, but I see the same errors that you do with a PCI-PCMCIA > card, even in 4.0-STABLE and -CURRENT. That is even with the support > for the TI-1225 PCI-PCMCIA bridge that Warner did commit a few days > ago. I suspect that there is some register setting still missing > somewhere, but it is getting closer. > > John > -- > John Hay -- John.Hay@mikom.csir.co.za To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 6 10:12:45 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from pinhead.parag.codegen.com (207-44-235-154.CodeGen.COM [207.44.235.154]) by hub.freebsd.org (Postfix) with ESMTP id 9CE2B37B881; Thu, 6 Apr 2000 10:12:41 -0700 (PDT) (envelope-from parag@pinhead.parag.codegen.com) Received: from pinhead.parag.codegen.com (localhost.parag.codegen.com [127.0.0.1]) by pinhead.parag.codegen.com (8.9.3/8.9.3) with ESMTP id KAA17566; Thu, 6 Apr 2000 10:12:22 -0700 (PDT) (envelope-from parag@pinhead.parag.codegen.com) To: Martin Minkus Cc: hackers@FreeBSD.ORG, bugs@FreeBSD.ORG Subject: Re: calcru: negative time In-Reply-To: Message from Martin Minkus of "Thu, 06 Apr 2000 21:06:49 +0930." X-Image-URL: http://www.codegen.com/images/CG-logo-only.gif X-URL: http://www.codegen.com X-Face: =O'Kj74icvU|oS*<7gS/8'\Pbpm}okVj*@UC!IgkmZQAO!W[|iBiMs*|)n*`X ]pW%m>Oz_mK^Gdazsr.Z0/JsFS1uF8gBVIoChGwOy{EK=<6g?aHE`[\S]C]T0Wm Date: Thu, 06 Apr 2000 10:12:22 -0700 Message-ID: <17557.955041142@pinhead.parag.codegen.com> From: Parag Patel Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, 06 Apr 2000 21:06:49 +0930, Martin Minkus wrote: > >calcru: negative time of xxxxxxxxxx usec for pid yyyyy (dnetc) I've been seeing the same problem sporadically on my 2xPII box that I upgraded from 3.4 to 4.0. It *only* occurs for the setiathome binary, and it *seems* to be triggered when the X server is restarted after logout/login via xdm. I went through the suggestions in the troubleshooting section of the FAQ, namely trying kern.timecounter.method=1 and such. Curiously, it made no difference. Even more curiously, the same machine used to work just fine under 3.4 without this mod (timecounter hardware is PIIX). I had recently shuffled the audio card around in my system to try to figure out an unrelated problem with why audio recording isn't working. Turns out that the current slot the PCI sound card is now sitting in appears to be sharing an IRQ with the video card. I need to take the machine down and move the card out of this slot to see if the calcru errors continue or not, since it does appear to be interrupt related. I just haven't had the time to take my box down to try this yet, and so wasn't going to post a note 'till I'd figured it out. Hopefully you have a bit more free time to experiment. -- Parag Patel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 6 12:10: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 56A7637B76B for ; Thu, 6 Apr 2000 12:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA74974; Thu, 6 Apr 2000 12:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EBAF037B7C6 for ; Thu, 6 Apr 2000 12:07:43 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA74718; Thu, 6 Apr 2000 12:07:43 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004061907.MAA74718@freefall.freebsd.org> Date: Thu, 6 Apr 2000 12:07:43 -0700 (PDT) From: cwasser@v-wave.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/17831: FreeBSD 4.0 doesn't detect EpoX 7KXA properly Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17831 >Category: kern >Synopsis: FreeBSD 4.0 doesn't detect EpoX 7KXA properly >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Apr 6 12:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Chris Wasser >Release: FreeBSD 4.0-STABLE >Organization: >Environment: FreeBSD deepthought.cmdmicro.com 4.0-STABLE FreeBSD 4.0-STABLE #3: Sun Apr 9 06:47:07 MDT 2000 root@deepthought.cmdmicro.com:/usr/src/sys/compile/DEEPTHOUGHT i386 >Description: FreeBSD 4.0 is missing device ID support for certain devices on the EpoX 7KXA AMD Athlon motherboard. >How-To-Repeat: Install FreeBSD 4.0 on a EpoX 7KXA Athlon system. >Fix: Here's the "fix" (still haven't found out how to correctly ID the Host-to-PCI Bridge) in /usr/src/sys/pci/pcisupport.c add: case 0x83911106: return ("VIA 82C686 PCI-PCI (AGP) bridge"); Before: pcib0: on motherboard pci0: on pcib0 pcib2: at device 1.0 on pci0 pci1: on pcib2 After: pcib0: on motherboard pci0: on pcib0 pcib2: at device 1.0 on pci0 pci1: on pcib2 If someone can point me out how to ID the Host-to-PCI controller, I'll submit a ID fix for that too. Not sure why the pcib device skipped from 0 to 2, but I'll deal with that as it comes along. Detects every other 82C686 device just fine however: isab0: at device 7.0 on pci0 atapci0: port 0xd000-0xd00f at device 7.1 on pci0 chip1: at device 4.4 on pci0 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 6 12:40:11 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8903237BAF4 for ; Thu, 6 Apr 2000 12:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA78198; Thu, 6 Apr 2000 12:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 6 Apr 2000 12:40:03 -0700 (PDT) Message-Id: <200004061940.MAA78198@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "David E. Cross" Subject: Re: bin/17681: XDR does not handle 64bit data types correctly Reply-To: "David E. Cross" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/17681; it has been noted by GNATS. From: "David E. Cross" To: Sheldon Hearn Cc: "David E. Cross" , FreeBSD-gnats-submit@FreeBSD.ORG, crossd@cs.rpi.edu Subject: Re: bin/17681: XDR does not handle 64bit data types correctly Date: Thu, 06 Apr 2000 14:19:01 -0400 Hmm.. I feel one of us is probably doing something stupid :) This is a bit long as it includes the multiple copies of the source to try to clear things up (only the XDR64 routines are here, as that is the only thing I touched.) The XDR patch that I gave out only touches the 64bit routines in the XDR library, so here is the XDR library before my patch: /* * XDR 64-bit integers */ bool_t xdr_int64_t(xdrs, int64_p) register XDR *xdrs; int64_t *int64_p; { int64_t x; switch (xdrs->x_op) { case XDR_ENCODE: return (xdr_opaque(xdrs, (caddr_t)int64_p, sizeof(int64_t))); case XDR_DECODE: if (!xdr_opaque(xdrs, (caddr_t)&x, sizeof x)) { return (FALSE); } *int64_p = x; return (TRUE); case XDR_FREE: return (TRUE); } return (FALSE); } /* * XDR unsigned 64-bit integers */ bool_t xdr_u_int64_t(xdrs, uint64_p) register XDR *xdrs; u_int64_t *uint64_p; { u_int64_t x; switch (xdrs->x_op) { case XDR_ENCODE: return (xdr_opaque(xdrs, (caddr_t)uint64_p, sizeof(u_int64_t))); case XDR_DECODE: if (!xdr_opaque(xdrs, (caddr_t)&x, sizeof x)) { return (FALSE); } *uint64_p = x; return (TRUE); case XDR_FREE: return (TRUE); } return (FALSE); } The following is from: http://www.freebsd.org/cgi/cvsweb.cgi/basesrc/lib/libc/rpc/xdr.c?rev=1.21&cvsroot=netbsd /* * XDR 64-bit integers */ bool_t xdr_int64_t(xdrs, llp) XDR *xdrs; int64_t *llp; { u_long ul[2]; switch (xdrs->x_op) { case XDR_ENCODE: ul[0] = (u_long)((u_int64_t)*llp >> 32) & 0xffffffff; ul[1] = (u_long)((u_int64_t)*llp) & 0xffffffff; if (XDR_PUTLONG(xdrs, (long *)&ul[0]) == FALSE) return (FALSE); return (XDR_PUTLONG(xdrs, (long *)&ul[1])); case XDR_DECODE: if (XDR_GETLONG(xdrs, (long *)&ul[0]) == FALSE) return (FALSE); if (XDR_GETLONG(xdrs, (long *)&ul[1]) == FALSE) return (FALSE); *llp = (int64_t) (((u_int64_t)ul[0] << 32) | ((u_int64_t)ul[1])); return (TRUE); case XDR_FREE: return (TRUE); } /* NOTREACHED */ return (FALSE); } /* * XDR unsigned 64-bit integers */ bool_t xdr_u_int64_t(xdrs, ullp) XDR *xdrs; u_int64_t *ullp; { u_long ul[2]; switch (xdrs->x_op) { case XDR_ENCODE: ul[0] = (u_long)(*ullp >> 32) & 0xffffffff; ul[1] = (u_long)(*ullp) & 0xffffffff; if (XDR_PUTLONG(xdrs, (long *)&ul[0]) == FALSE) return (FALSE); return (XDR_PUTLONG(xdrs, (long *)&ul[1])); case XDR_DECODE: if (XDR_GETLONG(xdrs, (long *)&ul[0]) == FALSE) return (FALSE); if (XDR_GETLONG(xdrs, (long *)&ul[1]) == FALSE) return (FALSE); *ullp = (u_int64_t) (((u_int64_t)ul[0] << 32) | ((u_int64_t)ul[1])); return (TRUE); case XDR_FREE: return (TRUE); } /* NOTREACHED */ return (FALSE); } The following is a result of: patch x_op) { case XDR_ENCODE: ul[0] = (u_long)((u_int64_t)*int64_p >> 32) & 0xffffffff; ul[1] = (u_long)((u_int64_t)*int64_p) & 0xffffffff; if (XDR_PUTLONG(xdrs, (long *)&ul[0]) == FALSE) return (FALSE); return (XDR_PUTLONG(xdrs, (long *)&ul[1])); case XDR_DECODE: if (XDR_GETLONG(xdrs, (long *)&ul[0]) == FALSE) return (FALSE); if (XDR_GETLONG(xdrs, (long *)&ul[1]) == FALSE) return (FALSE); *int64_p = (int64_t) (((u_int64_t)ul[0] << 32) | ((u_int64_t)ul[1])); return (TRUE); case XDR_FREE: return (TRUE); } return (FALSE); } /* * XDR unsigned 64-bit integers */ bool_t xdr_u_int64_t(xdrs, uint64_p) register XDR *xdrs; u_int64_t *uint64_p; { u_long ul[2]; switch (xdrs->x_op) { case XDR_ENCODE: ul[0] = (u_long)(*int64_p >> 32) & 0xffffffff; ul[1] = (u_long)(*int64_p) & 0xffffffff; if (XDR_PUTLONG(xdrs, (long *)&ul[0]) == FALSE) return (FALSE); return (XDR_PUTLONG(xdrs, (long *)&ul[1])); case XDR_DECODE: if (XDR_GETLONG(xdrs, (long *)&ul[0]) == FALSE) return (FALSE); if (XDR_GETLONG(xdrs, (long *)&ul[1]) == FALSE) return (FALSE); *int64_p = (u_int64_t) (((u_int64_t)ul[0] << 32) | ((u_int64_t)ul[1])); return (TRUE); case XDR_FREE: return (TRUE); } return (FALSE); } So, if we save the NetBSD and the patched FreeBSD xdr.c (just the XDR64 routeines) to a file, and diff them we get: 1,2d0 < < 7,9c5,7 < xdr_int64_t(xdrs, llp) < XDR *xdrs; < int64_t *llp; --- > xdr_int64_t(xdrs, int64_p) > register XDR *xdrs; > int64_t *int64_p; 13a12 > 15,16c14,15 < ul[0] = (u_long)((u_int64_t)*llp >> 32) & 0xffffffff; < ul[1] = (u_long)((u_int64_t)*llp) & 0xffffffff; --- > ul[0] = (u_long)((u_int64_t)*int64_p >> 32) & 0xffffffff; > ul[1] = (u_long)((u_int64_t)*int64_p) & 0xffffffff; 25,26c24,25 < *llp = (int64_t) < (((u_int64_t)ul[0] << 32) | ((u_int64_t)ul[1])); --- > *int64_p = (int64_t) > (((u_int64_t)ul[0] << 32) | ((u_int64_t)ul[1])); 31d29 < /* NOTREACHED */ 35d32 < 40,42c37,39 < xdr_u_int64_t(xdrs, ullp) < XDR *xdrs; < u_int64_t *ullp; --- > xdr_u_int64_t(xdrs, uint64_p) > register XDR *xdrs; > u_int64_t *uint64_p; 46a44 > 48,49c46,47 < ul[0] = (u_long)(*ullp >> 32) & 0xffffffff; < ul[1] = (u_long)(*ullp) & 0xffffffff; --- > ul[0] = (u_long)(*int64_p >> 32) & 0xffffffff; > ul[1] = (u_long)(*int64_p) & 0xffffffff; 52a51 > 58,59c57,58 < *ullp = (u_int64_t) < (((u_int64_t)ul[0] << 32) | ((u_int64_t)ul[1])); --- > *int64_p = (u_int64_t) > (((u_int64_t)ul[0] << 32) | ((u_int64_t)ul[1])); 64d62 < /* NOTREACHED */ The only differences that I am seeing in the file are naming conventions. I decided to stick with ours. The NetBSD people have the 64bit type as the long long and the unsigned long long, where we have the int64_t and u_int64_t. They make mention of this being non-portable, and thus in its own secion. As we have the 'int64_t' I decided to stick with it. I will ask the lockd devloper to do an additional set of runs just to make absolutely, 100%, definitely, undeniably, sure. -- David Cross | email: crossd@cs.rpi.edu Lab Director | Rm: 308 Lally Hall Rensselaer Polytechnic Institute, | Ph: 518.276.2860 Department of Computer Science | Fax: 518.276.4033 I speak only for myself. | WinNT:Linux::Linux:FreeBSD To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 6 13:30: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A563337C088 for ; Thu, 6 Apr 2000 13:30:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA84566; Thu, 6 Apr 2000 13:30:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0A71D37B7C9 for ; Thu, 6 Apr 2000 13:27:58 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA84314; Thu, 6 Apr 2000 13:27:57 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004062027.NAA84314@freefall.freebsd.org> Date: Thu, 6 Apr 2000 13:27:57 -0700 (PDT) From: asherrod@sharemedia.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/17832: Enlightenment gives Segmentation fault Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17832 >Category: misc >Synopsis: Enlightenment gives Segmentation fault >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Apr 6 13:30:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Andrew Sherrod >Release: 3.4 >Organization: Sharemedia >Environment: FreeBSD asherrod.sharemedia.com 3.4-RELEASE FreeBSD 3.4-RELEASE #2: Sun Mar 26 12:30:27 EST 2000 root@sharemedia.com:/usr/src/sys/compile/AHSEROD i386 >Description: After running for a short period of time [1-4 hours, though sometimes up to 1-2 days] (and with little recognizable pattern) Enlightenment displays a window stating a segmentation fault has occured. If "Ignore" is clicked, the window manager fails, leaving an unmanaged X session. When restarted, Enlightenment states that shared memory is not enabled, which could result in a segmentation fault. SVR4 shared memory is enabled in my kernel. >How-To-Repeat: Unknown. >Fix: Unknown. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 6 13:48:25 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D322537BC74; Thu, 6 Apr 2000 13:48:20 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA86421; Thu, 6 Apr 2000 13:48:20 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Thu, 6 Apr 2000 13:48:20 -0700 (PDT) From: Message-Id: <200004062048.NAA86421@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, sheldonh@FreeBSD.org Subject: Re: bin/17681: XDR does not handle 64bit data types correctly Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: XDR does not handle 64bit data types correctly Responsible-Changed-From-To: freebsd-bugs->sheldonh Responsible-Changed-By: sheldonh Responsible-Changed-When: Thu Apr 6 13:47:13 PDT 2000 Responsible-Changed-Why: I'll take this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 6 13:48:46 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8B30E37B9AE; Thu, 6 Apr 2000 13:48:44 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA86534; Thu, 6 Apr 2000 13:48:44 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Thu, 6 Apr 2000 13:48:44 -0700 (PDT) From: Message-Id: <200004062048.NAA86534@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, sheldonh@FreeBSD.org Subject: Re: bin/17824: [PATCH] /usr/bin/column has arithmetic overflows Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] /usr/bin/column has arithmetic overflows Responsible-Changed-From-To: freebsd-bugs->sheldonh Responsible-Changed-By: sheldonh Responsible-Changed-When: Thu Apr 6 13:48:26 PDT 2000 Responsible-Changed-Why: I'll take this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 6 13:50:39 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0E6FB37B8A9; Thu, 6 Apr 2000 13:50:37 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA86727; Thu, 6 Apr 2000 13:50:36 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Thu, 6 Apr 2000 13:50:36 -0700 (PDT) From: Message-Id: <200004062050.NAA86727@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, sheldonh@FreeBSD.org Subject: Re: bin/4238: chpass only occasionally works in conjunction with ed Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: chpass only occasionally works in conjunction with ed Responsible-Changed-From-To: freebsd-bugs->sheldonh Responsible-Changed-By: sheldonh Responsible-Changed-When: Thu Apr 6 13:50:21 PDT 2000 Responsible-Changed-Why: I'll take this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 6 13:50:48 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from axl.ops.uunet.co.za (axl.ops.uunet.co.za [196.31.1.175]) by hub.freebsd.org (Postfix) with ESMTP id ECEAC37C0E9 for ; Thu, 6 Apr 2000 13:50:34 -0700 (PDT) (envelope-from sheldonh@axl.ops.uunet.co.za) Received: from sheldonh (helo=axl.ops.uunet.co.za) by axl.ops.uunet.co.za with local-esmtp (Exim 3.13 #1) id 12dJED-0001An-00; Thu, 06 Apr 2000 22:50:13 +0200 From: Sheldon Hearn To: Daniel Hagan Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: bin/4238: chpass only occasionally works in conjunction with ed In-reply-to: Your message of "Thu, 06 Apr 2000 10:07:28 -0400." Date: Thu, 06 Apr 2000 22:50:13 +0200 Message-ID: <4512.955054213@axl.ops.uunet.co.za> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, 06 Apr 2000 10:07:28 -0400, Daniel Hagan wrote: > Why would this make chpass part of the crypto distribution? I was under > the impression that md5 wasn't export controlled (it's a hash algorithm, > not an encryption algorithm). Duh, crypt != crypto. I seem to be having a rather dense week. :-( Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 6 13:55:12 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D5B8237B9BC; Thu, 6 Apr 2000 13:55:10 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: (from murray@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA87237; Thu, 6 Apr 2000 13:55:10 -0700 (PDT) (envelope-from murray@FreeBSD.org) Date: Thu, 6 Apr 2000 13:55:10 -0700 (PDT) From: Message-Id: <200004062055.NAA87237@freefall.freebsd.org> To: murray@FreeBSD.org, freebsd-bugs@FreeBSD.org, murray@FreeBSD.org Subject: Re: bin/17371: sysinstall's mediaSetHTTP does not work under local nameserver Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: sysinstall's mediaSetHTTP does not work under local nameserver Responsible-Changed-From-To: freebsd-bugs->murray Responsible-Changed-By: murray Responsible-Changed-When: Thu Apr 6 13:53:55 PDT 2000 Responsible-Changed-Why: I'll take a look at this along with some other minor sysinstall bugs that I've run into. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 6 21:10: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7A60D37BD46 for ; Thu, 6 Apr 2000 21:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA24903; Thu, 6 Apr 2000 21:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from smtp.whitebarn.com (Spin.WhiteBarn.Com [216.0.13.113]) by hub.freebsd.org (Postfix) with ESMTP id 5F37A37BA30 for ; Thu, 6 Apr 2000 21:04:01 -0700 (PDT) (envelope-from bob@smtp.whitebarn.com) Received: (from bob@localhost) by smtp.whitebarn.com (8.9.3/8.9.3) id XAA80210; Thu, 6 Apr 2000 23:03:42 -0500 (CDT) (envelope-from bob) Message-Id: <200004070403.XAA80210@smtp.whitebarn.com> Date: Thu, 6 Apr 2000 23:03:42 -0500 (CDT) From: Bob@WhiteBarn.Com Reply-To: Bob@WhiteBarn.Com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/17839: ad driver and SMP kernel panic (vinum may be involved) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17839 >Category: kern >Synopsis: ad driver and SMP kernel panic (vinum may be involved) >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Apr 6 21:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Bob Van Valzah >Release: FreeBSD 4.0-RELEASE i386, FreeBSD 4.0-STABLE >Organization: >Environment: ASUS P2B-D Dual 500 MHz P-III 256M 3x Seagate 7200 RPM ATAPI UDMA33 drives >Description: "Page fault while in kernel mode" panic whenever /etc/security is run. (This is very inconvenient since /etc/periodic/daily runs it daily.) The instruction pointer at the time of the page fault is bogus, apparently since biodone() is jumping off the deep end. I suspect the ad driver since a traceback shows ad_interrupt() calling biodone() leading up to the panic. See below. I suspect the biodone() code is failing in an SMP environment since it runs fine on my uniprocessor hardware. I am running some of my filesytems under vinum so it may have a role in this too. It gave up trying to sync 492 dirty buffers following the panic. That seems like a lot to me so perhaps that's related to the panic? FWIW, crash dumps work fine through the ata driver once it is reset following the panic. (kgdb) where #0 0xc0151390 in boot () #1 0xc0151748 in poweroff_wait () #2 0xc028670f in trap_fatal () #3 0xc02863a5 in trap_pfault () #4 0xc0285f77 in trap () #5 0xc0ef8ef4 in ?? () <-- instruction pointer at time of page fault #6 0xc01752d7 in biodone () #7 0xc0258a5e in ad_interrupt () #8 0xc025544e in ata_intr () This line printed by panic() may be helpful: interrupt mask = bio <- SMP: XXX since it seems to have something to do with the SMP code. >How-To-Repeat: Just run /etc/security on the above hardware. Blamo. The panic happens about 5 minutes into /etc/security, perhaps since I have several filesystems. Some use vinum and some don't. Other activity may well also cause the panic, but /etc/security kills it every time. >Fix: Don't have one yet, but I'll tell you what I've tried: I tried running a kernel with INVARIANT set and that didn't catch anything. I tried running a kernel with VFS_BIO_DEBUG set and that didn't even make it throught /etc/rc before panicing. I don't know what to try next, but I'll happily run any further tests you can propose on my hardware. Should I try -CURENT? >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 6 22:20: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B5C4D37B5ED for ; Thu, 6 Apr 2000 22:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA30557; Thu, 6 Apr 2000 22:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 6 Apr 2000 22:20:02 -0700 (PDT) Message-Id: <200004070520.WAA30557@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Subject: Re: kern/17351: Add PnP ID for the "5634BTS 56K Video Ready Modem" Reply-To: Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/17351; it has been noted by GNATS. From: To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: kern/17351: Add PnP ID for the "5634BTS 56K Video Ready Modem" Date: Thu, 6 Apr 2000 22:15:27 -0700 (PDT) This followup ended up in PR 1735 (should have been PR 17351). From: "Eric D. Futch" To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: kern/1735: Add PnP ID for the "5634BTS 56K Video Ready Modem" to src/sys/isa/sio.c Date: Thu, 6 Apr 2000 21:24:42 -0400 (EDT) Sorry for the trouble, if you tried to fetch the patch and it returned a Permission Denied or File Not Found... the patch moved to the FreeBSD subdirectory. The correct URL for it is now: http://quake.nyct.net/~efutch/FreeBSD/sio.c.patch -- Eric Futch New York Connect.Net, Ltd. efutch@nyct.net Technical Support Staff http://www.nyct.net (212) 293-2620 "Bringing New York The Internet Access It Deserves" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 6 23:10: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A917E37B83F for ; Thu, 6 Apr 2000 23:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA34913; Thu, 6 Apr 2000 23:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 60E0A37BF8F for ; Thu, 6 Apr 2000 23:09:07 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA34730; Thu, 6 Apr 2000 23:09:07 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004070609.XAA34730@freefall.freebsd.org> Date: Thu, 6 Apr 2000 23:09:07 -0700 (PDT) From: ari@suutari.iki.fi To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/17840: ASUSCOM_IPAC listed as "broken" in LINT configuration file Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17840 >Category: kern >Synopsis: ASUSCOM_IPAC listed as "broken" in LINT configuration file >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Apr 6 23:10:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Ari Suutari >Release: 4.0-RELEASE >Organization: >Environment: FreeBSD osku.suutari.iki.fi 4.0-RELEASE FreeBSD 4.0-RELEASE #4: Wed Apr 5 10:36:26 EEST 2000 root@osku.suutari.iki.fi:/usr/src/sys/compile/OSKU i386 >Description: /sys/i386/conf/LINT lists ASUSCOM_IPAC isdn device option as "broken", which it isn't. I'm using the driver every day at home without any problems. Could it be that LINT was not updated when driver was fixed ? >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 7 1:30: 8 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6BD9437B87C for ; Fri, 7 Apr 2000 01:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA49657; Fri, 7 Apr 2000 01:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from itesec.hsc.fr (itesec.hsc.fr [192.70.106.33]) by hub.freebsd.org (Postfix) with ESMTP id 4EEBF37B76F for ; Fri, 7 Apr 2000 01:24:58 -0700 (PDT) (envelope-from Alain.Thivillon@hsc.fr) Received: by itesec.hsc.fr (Postfix, from userid 1001) id B596010E04; Fri, 7 Apr 2000 10:24:56 +0200 (CEST) Message-Id: <20000407082456.B596010E04@itesec.hsc.fr> Date: Fri, 7 Apr 2000 10:24:56 +0200 (CEST) From: Alain Thivillon Reply-To: Alain Thivillon To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/17841: ttyp0 strangeness Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17841 >Category: bin >Synopsis: ttyp0 (and only 0!) produces stdout input/output error >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Apr 7 01:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Alain Thivillon >Release: FreeBSD 3.4-RELEASE i386 >Organization: Herve Schauer Consultants >Environment: FreeBSD 3.4 Running on i386 AMD-K6, 128Mo, SCSI NCR, sshd >Description: ttyp0 (and only 0!) seems broken on my system. First user to access system via ssh or telnet and issuing 'cat /var/log/messages' or 'mailq' or any command producing long stdout output show something like cat: stdout: Input/output error . Other commands (such as last) ignore error but analysis of output shows missing lines. Amount of data sent before error is random. We have another system build with same hardware and approximately same kernel working without problems. I try to remove (:))) /dev/ttyp0 and /dev/ptyp0 and recreate them without any change. Using lsof does not show any processes with file descriptors open on /dev/ttyp0 Problem is reproductible across system reboots. I repeat, when logged on on ttyp1 or any other, problem disappears. >How-To-Repeat: 'cat /dev/zero' when logged on first remote tty. Here is kernel config file: machine "i386" cpu "I386_CPU" cpu "I486_CPU" cpu "I586_CPU" cpu "I686_CPU" ident CARBONE maxusers 50 options MATH_EMULATE #Support for x87 emulation options INET #InterNETworking options IPFILTER options IPFILTER_LOG options IPFILTER options IPFILTER_LOG options FFS #Berkeley Fast Filesystem options FFS_ROOT #FFS usable as root device [keep this!] options MFS #Memory Filesystem options MFS_ROOT #MFS usable as root device, "MFS" req'ed options NFS #Network Filesystem options NFS_ROOT #NFS usable as root device, "NFS" req'ed options MSDOSFS #MSDOS Filesystem options "CD9660" #ISO 9660 Filesystem options "CD9660_ROOT" #CD-ROM usable as root. "CD9660" req'ed options PROCFS #Process filesystem options "COMPAT_43" #Compatible with BSD 4.3 [KEEP THIS!] options SCSI_DELAY=15000 #Be pessimistic about Joe SCSI device options UCONSOLE #Allow users to grab the console options FAILSAFE #Be conservative options USERCONFIG #boot -c editor options VISUAL_USERCONFIG #visual boot -c editor options KTRACE #ktrace(1) syscall trace support options SYSVSHM #SYSV-style shared memory options SYSVMSG #SYSV-style message queues options SYSVSEM #SYSV-style semaphores options TCP_DROP_SYNFIN #drop TCP packets with SYN+FIN options TCP_RESTRICT_RST #restrict emission of TCP RST options "ICMP_BANDLIM" options SOFTUPDATES config kernel root on wd0 controller isa0 controller pnp0 # PnP support for ISA controller eisa0 controller pci0 controller fdc0 at isa? port "IO_FD1" bio irq 6 drq 2 disk fd0 at fdc0 drive 0 disk fd1 at fdc0 drive 1 options "CMD640" # work around CMD640 chip deficiency controller wdc0 at isa? port "IO_WD1" bio irq 14 disk wd0 at wdc0 drive 0 disk wd1 at wdc0 drive 1 controller wdc1 at isa? port "IO_WD2" bio irq 15 disk wd2 at wdc1 drive 0 disk wd3 at wdc1 drive 1 options ATAPI #Enable ATAPI support for IDE bus options ATAPI_STATIC #Don't do it as an LKM device acd0 #IDE CD-ROM device wfd0 #IDE Floppy (e.g. LS-120) controller ncr0 # NCR/Symbios Logic controller ahb0 # EISA AHA1742 family controller ahc0 # AHA2940 and onboard AIC7xxx devices controller amd0 # AMD 53C974 (Teckram DC-390(T)) controller isp0 # Qlogic family controller dpt0 # DPT Smartcache - See LINT for options! controller adv0 at isa? port ? cam irq ? controller adw0 controller bt0 at isa? port ? cam irq ? controller aha0 at isa? port ? cam irq ? controller aic0 at isa? port ? cam irq ? controller scbus0 # SCSI bus (required) device da0 # Direct Access (disks) device sa0 # Sequential Access (tape etc) device cd0 # CD device pass0 # Passthrough device (direct SCSI) device wt0 at isa? port 0x300 bio irq 5 drq 1 device mcd0 at isa? port 0x300 bio irq 10 device matcd0 at isa? port 0x230 bio device scd0 at isa? port 0x230 bio controller atkbdc0 at isa? port IO_KBD tty device atkbd0 at isa? tty irq 1 device psm0 at isa? tty irq 12 device vga0 at isa? port ? conflicts pseudo-device splash device sc0 at isa? tty device npx0 at isa? port IO_NPX irq 13 device apm0 at isa? disable flags 0x31 # Advanced Power Management device sio0 at isa? port "IO_COM1" flags 0x10 tty irq 4 device sio1 at isa? port "IO_COM2" tty irq 3 device ppc0 at isa? port? flags 0x40 net irq 7 controller ppbus0 # Parallel port bus (required) device lpt0 at ppbus? # Printer device plip0 at ppbus? # TCP/IP over parallel device ppi0 at ppbus? # Parallel port interface device device de0 # DEC/Intel DC21x4x (``Tulip'') device fxp0 # Intel EtherExpress PRO/100B (82557, 82558) device rl0 # RealTek 8129/8139 device vx0 # 3Com 3c590, 3c595 (``Vortex'') device xl0 # 3Com 3c90x (``Boomerang'', ``Cyclone'') pseudo-device loop # Network loopback pseudo-device ether # Ethernet support pseudo-device sl 1 # Kernel SLIP pseudo-device ppp 2 # Kernel PPP pseudo-device tun 4 # Packet tunnel pseudo-device pty 64 # Pseudo-ttys (telnet etc) pseudo-device gzip # Exec gzipped a.out's pseudo-device bpfilter 4 #Berkeley packet filter pseudo-device vn #Vnode driver (turns a file into a device) >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 7 3:50: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 395BE37B7D9 for ; Fri, 7 Apr 2000 03:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA64015; Fri, 7 Apr 2000 03:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from Proxy.BTC-Twente.nl (proxy.btc-twente.nl [195.193.46.131]) by hub.freebsd.org (Postfix) with ESMTP id 9D47537B7D9 for ; Fri, 7 Apr 2000 03:43:01 -0700 (PDT) (envelope-from kees@BTC-Twente.nl) Received: from kees by Proxy.BTC-Twente.nl with local (Exim 1.92 #1) for FreeBSD-gnats-submit@freebsd.org id 12dWE7-0000Bg-00; Fri, 7 Apr 2000 12:42:59 +0200 Message-Id: Date: Fri, 7 Apr 2000 12:42:59 +0200 From: kees@echelon.nl (Kees Hendrikse) Reply-To: kees@echelon.nl To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/17842: Erratic user time reports for long running processes Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17842 >Category: kern >Synopsis: Erratic user time reports for long running processes >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Apr 7 03:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Kees Hendrikse >Release: FreeBSD 3.4-RELEASE i386 >Organization: Echelon Consultancy bv, Enschede, Netherlands >Environment: Tested on a stock 3.4-RELEASE, also tested on a stock 2.2.6-RELEASE. Probably a bug present in all releases of FreeBSD. >Description: After a process has consumed more than (about) 379400 seconds of user time, ru.ru_utime.tv_sec rolls over to 0. After that, the counter is updated with twice the amount of time actually spent in user mode. The small program below shows this behaviour, after running for a couple of days: ce=379950 cu=378871 ce=380079 cu=378999 ce=380207 cu=379127 ce=380336 cu=379255 ce=380464 cu=379384 ANOMALY: st=954617438 pe=380464 ce=380592 pu=379384 cu=237 ANOMALY: st=954617438 pe=380592 ce=380721 pu=237 cu=493 ANOMALY: st=954617438 pe=380721 ce=380849 pu=493 cu=749 ANOMALY: st=954617438 pe=380849 ce=380978 pu=749 cu=1005 ANOMALY: st=954617438 pe=380978 ce=381106 pu=1005 cu=1260 ANOMALY: st=954617438 pe=381106 ce=381234 pu=1260 cu=1516 ANOMALY: st=954617438 pe=381234 ce=381363 pu=1516 cu=1772 ANOMALY: st=954617438 pe=381363 ce=381491 pu=1772 cu=2027 The same erratic numbers are reported via /proc/PID/status. This bug effects long running programs that consume lots of CPU time and use ru.ru_utime for internal statistics. For example, it causes the setiathome client to return results with negative amounts of CPU time spent, causing the results to be rejected. >How-To-Repeat: Run this program for more than 105 hours (with nice -20): /* pointless.c */ #include #include #include #include #include main() { struct rusage ru; struct timeval tv; struct timezone tz; clock_t start, pelap, celap, puser, cuser; long i; srandomdev(); gettimeofday(&tv, &tz); getrusage(0, &ru); start = tv.tv_sec; celap = 0; cuser = ru.ru_utime.tv_sec; while (1) { for (i=0; i < 100000000; i++) random(); gettimeofday(&tv, &tz); getrusage(0, &ru); pelap = celap; celap = tv.tv_sec - start; puser = cuser; cuser = ru.ru_utime.tv_sec; if (celap < pelap || cuser < puser || cuser - puser > celap - pelap + 1) fprintf(stderr, "ANOMALY: st=%ld pe=%ld ce=%ld pu=%ld cu=%ld\n", start, pelap, celap, puser, cuser); else fprintf(stderr, "ce=%ld cu=%ld\n", celap, cuser); } } >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 7 5:10: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5850537BAC7 for ; Fri, 7 Apr 2000 05:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA72881; Fri, 7 Apr 2000 05:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 7 Apr 2000 05:10:03 -0700 (PDT) Message-Id: <200004071210.FAA72881@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Wilko Bulte Subject: Re: i386/13802: freebsd 3.3 fails to boot with irq problems on DECpc XL 466d2 (pci related) Reply-To: Wilko Bulte Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/13802; it has been noted by GNATS. From: Wilko Bulte To: jason andrade Cc: Wilko Bulte , freebsd-gnats-submit@FreeBSD.org Subject: Re: i386/13802: freebsd 3.3 fails to boot with irq problems on DECpc XL 466d2 (pci related) Date: Fri, 7 Apr 2000 14:07:32 +0200 On Thu, Apr 06, 2000 at 09:13:16AM +1000, jason andrade wrote: > On Thu, 6 Apr 2000, Wilko Bulte wrote: > > > Taking a (very?) long shot: an XL466d2 officially has a 486DX2 CPU, not > > a DX4/100. > > Any chance you can try a DX2 to see if this makes any difference? > > > > it's been quite a while - from my hazy memory, i've had the > same problem with a dx2 also. Hm, long shot missed by a mile.. -- Wilko Bulte Powered by FreeBSD http://www.freebsd.org http://www.tcja.nl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 7 6: 0: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1AF5337BB04 for ; Fri, 7 Apr 2000 06:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA76217; Fri, 7 Apr 2000 06:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 7 Apr 2000 06:00:02 -0700 (PDT) Message-Id: <200004071300.GAA76217@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: kern/17148: If keyboard is not attached while booting, it is not detected if attached later Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/17148; it has been noted by GNATS. From: Sheldon Hearn To: Martin Blapp Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: kern/17148: If keyboard is not attached while booting, it is not detected if attached later Date: Fri, 07 Apr 2000 14:53:05 +0200 On Wed, 05 Apr 2000 14:40:03 MST, Martin Blapp wrote: > This PR can be closed. It's fixed by Yokota in 4.0 Release. Are you sure? I've seen a number of reports that the problem exists in 4.0-RELEASE as well. The latest one seems to be PR 17793, but I saw a better one with some suggestions on how to fix the problem. I can't remember the PR number. :-( Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 7 6:18:27 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from arjun.niksun.com (gwnew.niksun.com [206.20.52.130]) by hub.freebsd.org (Postfix) with ESMTP id 250C237BB71; Fri, 7 Apr 2000 06:18:20 -0700 (PDT) (envelope-from ath@niksun.com) Received: from celis.niksun.com (celis.niksun.com [10.1.0.48]) by arjun.niksun.com (8.9.3/8.9.3) with ESMTP id JAA15229; Fri, 7 Apr 2000 09:18:16 -0400 (EDT) (envelope-from ath@celis.niksun.com) Received: from celis (localhost [127.0.0.1]) by celis.niksun.com (8.9.3/8.9.2) with ESMTP id JAA15202; Fri, 7 Apr 2000 09:18:02 -0400 (EDT) (envelope-from ath@celis.niksun.com) Message-Id: <200004071318.JAA15202@celis.niksun.com> From: Andrew Heybey To: "Justin T. Gibbs" Cc: mjacob@feral.com, freebsd-bugs@FreeBSD.ORG, freebsd-scsi@FreeBSD.ORG Subject: Re: kern/17153 (was: newfs on IBM disks slower than Seagate disks?) In-reply-to: Your message of Wed, 05 Apr 2000 20:07:26 -0600. <200004060207.UAA24407@caspian.plutotech.com> Mime-Version: 1.0 (generated by tm-edit 7.108) Content-Type: text/plain; charset=US-ASCII Date: Fri, 07 Apr 2000 09:18:02 -0400 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org It would seem that the WCE bit is the answer. The IBM has it set to zero while the Seagates have it set to 1. Unlike Matt Jacob, I get substantially the same performance for normal IO: IBM: install8 1# dd if=/dev/rda0s1c of=/dev/null bs=1024k count=200 200+0 records in 200+0 records out 209715200 bytes transferred in 7.561781 secs (27733572 bytes/sec) Seagate: su-2.03# dd if=/dev/rda0s1c of=/dev/null bs=1024k count=200 200+0 records in 200+0 records out 209715200 bytes transferred in 7.520681 secs (27885135 bytes/sec) I don't have any partitions lying around that I can newfs to test the WCE hypothesis, but it seems the most logical answer. andrew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 7 6:40: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from outmail.utsunomiya-u.ac.jp (outmail.utsunomiya-u.ac.jp [160.12.196.3]) by hub.freebsd.org (Postfix) with ESMTP id A79CF37BC46 for ; Fri, 7 Apr 2000 06:40:00 -0700 (PDT) (envelope-from yokota@zodiac.mech.utsunomiya-u.ac.jp) Received: from zodiac.mech.utsunomiya-u.ac.jp (IDENT:6ZpTxDn6MWR7GWUPcXYojdaWbTOYLERo@zodiac.mech.utsunomiya-u.ac.jp [160.12.42.1]) by outmail.utsunomiya-u.ac.jp (8.9.3/3.7Wpl2) with ESMTP id WAA08295; Fri, 7 Apr 2000 22:39:48 +0900 (JST) Received: from zodiac.mech.utsunomiya-u.ac.jp (zodiac.mech.utsunomiya-u.ac.jp [160.12.42.1]) by zodiac.mech.utsunomiya-u.ac.jp (8.7.6+2.6Wbeta7/3.4W/zodiac-May96) with ESMTP id WAA18595; Fri, 7 Apr 2000 22:46:15 +0900 (JST) Message-Id: <200004071346.WAA18595@zodiac.mech.utsunomiya-u.ac.jp> To: Sheldon Hearn Cc: freebsd-bugs@freebsd.org, yokota@zodiac.mech.utsunomiya-u.ac.jp Subject: Re: kern/17148: If keyboard is not attached while booting, it is not detected if attached later In-reply-to: Your message of "Fri, 07 Apr 2000 06:00:02 MST." <200004071300.GAA76217@freefall.freebsd.org> References: <200004071300.GAA76217@freefall.freebsd.org> Date: Fri, 07 Apr 2000 22:46:14 +0900 From: Kazutaka YOKOTA Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > On Wed, 05 Apr 2000 14:40:03 MST, Martin Blapp wrote: > > > This PR can be closed. It's fixed by Yokota in 4.0 Release. > > Are you sure? I've seen a number of reports that the problem exists in > 4.0-RELEASE as well. The latest one seems to be PR 17793, but I saw a > better one with some suggestions on how to fix the problem. I can't > remember the PR number. :-( PR 17793 is unrelated to this PR. The problem described in that PR is a known limitation of the boot loader. The work around is explained in TROUBLE.TXT. Kazu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 7 7: 0: 8 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 181B337B76F for ; Fri, 7 Apr 2000 07:00:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA49233; Fri, 7 Apr 2000 07:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 7 Apr 2000 07:00:04 -0700 (PDT) Message-Id: <200004071400.HAA49233@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Kazutaka YOKOTA Subject: Re: misc/17793: Keyboard not found Reply-To: Kazutaka YOKOTA Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/17793; it has been noted by GNATS. From: Kazutaka YOKOTA To: lost@quake.ru Cc: freebsd-gnats-submit@freebsd.org, yokota@zodiac.mech.utsunomiya-u.ac.jp Subject: Re: misc/17793: Keyboard not found Date: Fri, 07 Apr 2000 22:57:33 +0900 >>Number: 17793 >>Category: misc >>Synopsis: Keyboard not found [...] >>Originator: Danila Prusakov >>Release: 4.0 RELEAS From iso >>Organization: >Delta-com company >>Environment: >N/A >>Description: >Install with CD-ROM or Flopies impossible >Message on the screen: >keyboard: no > >BTX loader.... >And nothing further does not occur > >I have INTEL MU410EX motherbard with ps/2 keyboard This sounds like a known limitation of our boot block. See below. ----------------------------------------------------------------- Q: When I try to boot the install floppy, I see the following message and nothing seems to be happening. I cannot enter anything from the keyboard either. Keyboard: no A: Due to lack of space, full support for old XT/AT (84-key) keyboards is no longer available in the bootblocks. Some notebook computers may also have this type of keyboard. If you are still using this kind of hardware, you will see the above message appears when you boot from the CD-ROM or an install floppy. As soon as you see this message, hit the space bar, and you will see the prompt: >> FreeBSD/i386 BOOT Default: x:xx(x,x)/boot/loader boot: Then enter `-Dh', and things should proceed normally. ----------------------------------------------------------------- I have heard that this problem exists on some motherboards even if the keyboard is not one of those old models. Kazu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 7 7:10: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0BA8637BBE6 for ; Fri, 7 Apr 2000 07:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA50480; Fri, 7 Apr 2000 07:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from duke.cs.duke.edu (duke.cs.duke.edu [152.3.140.1]) by hub.freebsd.org (Postfix) with ESMTP id AFD8837B858 for ; Fri, 7 Apr 2000 07:08:17 -0700 (PDT) (envelope-from gallatin@cs.duke.edu) Received: from grasshopper.cs.duke.edu (grasshopper.cs.duke.edu [152.3.145.30]) by duke.cs.duke.edu (8.9.3/8.9.3) with ESMTP id KAA08022 for ; Fri, 7 Apr 2000 10:08:10 -0400 (EDT) Received: (from gallatin@localhost) by grasshopper.cs.duke.edu (8.9.3/8.9.1) id KAA33916; Fri, 7 Apr 2000 10:07:40 -0400 (EDT) (envelope-from gallatin@cs.duke.edu) Message-Id: <200004071407.KAA33916@grasshopper.cs.duke.edu> Date: Fri, 7 Apr 2000 10:07:40 -0400 (EDT) From: Andrew Gallatin Reply-To: gallatin@cs.duke.edu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/17843: ftpd fails to set cwd with mode 700 NFS mounted home dirs Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17843 >Category: bin >Synopsis: ftpd fails to set cwd with mode 700 NFS mounted home dirs >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Apr 7 07:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Andrew Gallatin >Release: FreeBSD 4.0-RELEASE i386 >Organization: >Environment: NFS mounted home directories, server mapping 0 to something other than 0 >Description: ftpd will currently fail to set the CWD when logging in if a user's home directory is mode 700 & it is mounted over NFS & the NFS server is not mapping root to 0 >How-To-Repeat: ftp into such a setup. Eg: % ftp 192.233.54.149 Connected to 192.233.54.149. 220 spe149.testdrive.compaq.com FTP server (Version 6.00LS) ready. Name (192.233.54.149:gallatin): gallatin 331 Password required for gallatin. Password: 230- No directory! Logging in with home=/ 230 User gallatin logged in. Remote system type is UNIX. Using binary mode to transfer files. >Fix: Index: libexec/ftpd//ftpd.c =================================================================== RCS file: /home/ncvs/src/libexec/ftpd/ftpd.c,v retrieving revision 1.62 diff -u -r1.62 ftpd.c --- libexec/ftpd//ftpd.c 2000/02/10 19:51:30 1.62 +++ libexec/ftpd//ftpd.c 2000/04/07 13:55:40 @@ -1287,14 +1287,29 @@ goto bad; } } else if (chdir(pw->pw_dir) < 0) { - if (chdir("/") < 0) { - reply(530, "User %s: can't change directory to %s.", - pw->pw_name, pw->pw_dir); + /* + * We may have failed to chdir if the user's home + * directory is mounted over NFS & it is unreadable by + * this machines superuser (eg. mode x00) -- set the + * uid & try again. + */ + + if (seteuid((uid_t)pw->pw_uid) < 0) { + reply(550, "Can't set uid."); goto bad; - } else - lreply(230, "No directory! Logging in with home=/"); + } + + if (chdir(pw->pw_dir) < 0) { + if (chdir("/") < 0) { + reply(530, "User %s: can't change directory to %s.", + pw->pw_name, pw->pw_dir); + goto bad; + } else + lreply(230, "No directory! Logging in with home=/"); + } } - if (seteuid((uid_t)pw->pw_uid) < 0) { + if (((uid_t)pw->pw_uid != geteuid()) && + seteuid((uid_t)pw->pw_uid) < 0) { reply(550, "Can't set uid."); goto bad; } >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 7 7:15:35 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 50D1237BB73; Fri, 7 Apr 2000 07:15:34 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Received: (from wilko@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA51525; Fri, 7 Apr 2000 07:15:33 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Date: Fri, 7 Apr 2000 07:15:33 -0700 (PDT) From: Message-Id: <200004071415.HAA51525@freefall.freebsd.org> To: jason@dstc.edu.au, wilko@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/13802: freebsd 3.3 fails to boot with irq problems on DECpc XL 466d2 (pci related) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: freebsd 3.3 fails to boot with irq problems on DECpc XL 466d2 (pci related) State-Changed-From-To: open->closed State-Changed-By: wilko State-Changed-When: Fri Apr 7 07:12:57 PDT 2000 State-Changed-Why: Bug submitter has reported the problem does no longer occur on 3.4-R and requests closure. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 7 7:20:13 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CD9FE37BC0B for ; Fri, 7 Apr 2000 07:20:07 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA52336; Fri, 7 Apr 2000 07:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.cellport.com (mail.cellport.com [205.240.1.197]) by hub.freebsd.org (Postfix) with ESMTP id 9695137BA52 for ; Fri, 7 Apr 2000 07:15:39 -0700 (PDT) (envelope-from durian@cellport.com) Received: from lostwax.cellport.com (lostwax.cellport.com [10.10.11.3]) by mail.cellport.com (8.9.3/8.9.3) with ESMTP id HAA49212 for ; Fri, 7 Apr 2000 07:15:24 -0700 (MST) Received: (from durian@localhost) by lostwax.cellport.com (8.9.3/8.9.3) id IAA30401; Fri, 7 Apr 2000 08:15:24 -0600 (MDT) (envelope-from durian@mail-i.cellport.com) Message-Id: <200004071415.IAA30401@lostwax.cellport.com> Date: Fri, 7 Apr 2000 08:15:24 -0600 (MDT) From: durian@cellport.com Reply-To: durian@cellport.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/17844: amd wedges every morning (nfs related?) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17844 >Category: kern >Synopsis: Amd wedges every morning since I've upgraded to 4.0 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Apr 7 07:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mike Durian >Release: FreeBSD 4.0-STABLE i386 >Organization: CellPort Systems >Environment: Copyright (c) 1992-2000 The FreeBSD Project. Copyright (c) 1982, 1986, 1989, 1991, 1993 The Regents of the University of California. All rights reserved. FreeBSD 4.0-STABLE #1: Fri Mar 31 17:47:19 MST 2000 root@lostwax.cellport.com:/usr/obj/usr/src/sys/LOSTWAX Timecounter "i8254" frequency 1193182 Hz CPU: Pentium II/Pentium II Xeon/Celeron (451.03-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x652 Stepping = 2 Features=0x183f9ff real memory = 134152192 (131008K bytes) avail memory = 127074304 (124096K bytes) Preloaded elf kernel "kernel" at 0xc034f000. Pentium Pro MTRR support enabled md0: Malloc disk npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at 0.0 isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0x10a0-0x10af at device 7.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 uhci0: port 0x1080-0x109f irq 9 at device 7.2 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered chip1: port 0x2180-0x218f at device 7.3 on pci0 xl0: <3Com 3c905B-TX Fast Etherlink XL> port 0x1000-0x107f mem 0xf4000000-0xf400007f irq 11 at device 16.0 on pci0 xl0: Ethernet address: 00:00:39:a1:0a:0e miibus0: on xl0 xlphy0: <3Com internal media interface> on miibus0 xlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto xl0: supplying EUI64: 00:00:39:ff:fe:a1:0a:0e fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: irq 1 on atkbdc0 psm0: irq 12 on atkbdc0 psm0: model Generic PS/2 mouse, device ID 0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: on isa0 sc0: VGA <16 virtual consoles, flags=0x200> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/8 bytes threshold ppi0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port plip0: on ppbus0 pca0 at port 0x40 on isa0 pcm0: at port 0x534-0x537,0x388-0x38b,0x220-0x22f irq 5 drq 1,0 on isa0 unknown0: on isa0 unknown1: at port 0x120-0x127 on isa0 ad0: 8063MB [16383/16/63] at ata0-master using UDMA33 acd0: CDROM at ata1-master using PIO4 Mounting root from ufs:/dev/ad0s3a >Description: Every morning since I've upgraded to 4.0 (cvsupped on the 31st), amd is in a wedged state. When I try to access my home directory via /u/durian (where /u is a symbolic link to /home/fserver - a directory managed by amd) amd reports that /u/durian isn't responding. The actual NFS directory containing the homes is still mounted and I can access my home directory. Just not via amd. If I kill amd and restart it, things are good to go again. I think this is related to NFS as I also get messages saying the NFS server wasn't responding during the night: Apr 6 22:38:51 lostwax /kernel: nfs server fserver:/export/home/fserver: not re sponding Apr 6 22:47:12 lostwax /kernel: receive error 60 from nfs server fserver:/expor t/home/fserver Apr 7 05:59:30 lostwax /kernel: nfs server fserver:/export/home/fserver: is ali ve again Apr 7 06:11:02 lostwax /kernel: receive error 60 from nfs server fserver:/expor t/home/fserver I don't know what is going on at 6:00am, but there is a cron job running at 22:00 that does backups - including rdumps. So my gut feeling is that NFS goes out to lunch when the rdump is going on (a separate bug I suppose) and this confuses amd. NFS eventually comes back, but not in time for amd. I do have a number of warning from amd at start-up. Perhaps that is the problem. Here are our amd_flags: amd_enable="YES" amd_flags="-a /export \ -d cellport.com \ -c 1800 \ -l syslog \ -r \ -x fatal,error,user \ /home /etc/amd.home \ /amd /etc/amd.amd /etc/amd.home: # amd.home /defaults -type:=nfs;rfs:=${autodir}${path};rhost:=${key};\ fs:=${autodir}${path};\ opts:=rw,grpid,timeo=10,retrans=5,nosuid,intr,\ utimeout=1200,rsize=8192,wsize=8192 fserver host==${key};type:=link || \ ; lostwax host==${key};fs:=/usr/home;type:=link || \ rhost:=${key};rfs:=/usr/home ; /etc/amd.amd: # amd.amd /defaults -type:=nfs;rfs:=${autodir}${path};rhost:=${key};\ fs:=${autodir}${path};\ opts:=rw,grpid,timeo=10,retrans=5,nosuid,intr,\ utimeout=1200,rsize=8192,wsize=8192 applix host==lostwax;fs:=/disk2/applix;type:=link || \ rhost:=lostwax;rfs:=/disk2/applix ; distfiles host==fserver;fs:=/usr/ports/distfiles;type:=link || \ rhost:=fserver;rfs:=/usr/ports/distfiles ; src host==fserver;fs:=/usr/local/src;type:=link || \ rhost:=fserver;rfs:=/usr/local/src ; doc host==fserver;fs:=/usr/local/www/doc;type:=link || \ rhost:=fserver;rfs:=/usr/local/www/doc ; Please let me know if you would like system configuration details on our server. Lostwax is my desktop machine. >How-To-Repeat: I'm not sure how easily this can be reproduced outside our environment, though it is consistent here. I guess you need to set up NFS, amd and some backup cron job much like what we have here. >Fix: No known fix. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 7 7:30: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 88BA437BDB0 for ; Fri, 7 Apr 2000 07:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA53923; Fri, 7 Apr 2000 07:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 7 Apr 2000 07:30:02 -0700 (PDT) Message-Id: <200004071430.HAA53923@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Wilko Bulte Subject: Re: i386/17299: I can't find uucleanup command in freeBSD 3.0, please tell me Equalant Command ( SCO uucleanup) Reply-To: Wilko Bulte Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/17299; it has been noted by GNATS. From: Wilko Bulte To: freebsd-gnats-submit@FreeBSD.org, jawad_aslam@FreeBSD.org Cc: Subject: Re: i386/17299: I can't find uucleanup command in freeBSD 3.0, please tell me Equalant Command ( SCO uucleanup) Date: Fri, 07 Apr 2000 16:29:10 +0200 FreeBSD uses Taylor UUCP which is not the same as what SCO has. But to answer your question: see /usr/src/gnu/libexec/uucp/contrib/uuclean for a sample script. I think you might have received a speedier response by using the freebsd-questions (prefered) or freebsd-hackers mailing list instead of making your question into a bug report. Wilko To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 7 7:40: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3FC7537B581 for ; Fri, 7 Apr 2000 07:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA54854; Fri, 7 Apr 2000 07:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 7 Apr 2000 07:40:01 -0700 (PDT) Message-Id: <200004071440.HAA54854@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Wilko Bulte Subject: Re: i386/14071: FreeBSD 3.3 Installation CD does not boot. Reply-To: Wilko Bulte Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/14071; it has been noted by GNATS. From: Wilko Bulte To: freebsd-gnats-submit@FreeBSD.org, rgyip@students.wisc.edu Cc: Subject: Re: i386/14071: FreeBSD 3.3 Installation CD does not boot. Date: Fri, 07 Apr 2000 16:32:48 +0200 This could very well be a known problem with the 3.3R CD. Please see http://www.freebsd.org/releases/3.3R/errata.html for more information. Wilko To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 7 7:50: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8CEC337BCD3 for ; Fri, 7 Apr 2000 07:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA55887; Fri, 7 Apr 2000 07:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 7 Apr 2000 07:50:03 -0700 (PDT) Message-Id: <200004071450.HAA55887@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Wilko Bulte Subject: Re: i386/17299: I can't find uucleanup command in freeBSD 3.0, please tell me Equalant Command ( SCO uucleanup) Reply-To: Wilko Bulte Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/17299; it has been noted by GNATS. From: Wilko Bulte To: freebsd-gnats-submit@FreeBSD.org, jawad_aslam@FreeBSD.org Cc: Subject: Re: i386/17299: I can't find uucleanup command in freeBSD 3.0, please tell me Equalant Command ( SCO uucleanup) Date: Fri, 07 Apr 2000 16:39:59 +0200 Side note: filing bugs and putting a non-existent email address in it does not work too well.. -- Wilko Bulte Powered by FreeBSD http://www.freebsd.org http://www.tcja.nl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 7 7:50: 8 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CC27B37BD5C for ; Fri, 7 Apr 2000 07:50:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA55892; Fri, 7 Apr 2000 07:50:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 7 Apr 2000 07:50:04 -0700 (PDT) Message-Id: <200004071450.HAA55892@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Wilko Bulte Subject: Re: i386/16495: Period soft disk errors Reply-To: Wilko Bulte Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/16495; it has been noted by GNATS. From: Wilko Bulte To: freebsd-gnats-submit@FreeBSD.org, rhughes@lilikoi.com Cc: Subject: Re: i386/16495: Period soft disk errors Date: Fri, 07 Apr 2000 16:46:38 +0200 Is there any news to report from the hardware front? Like Sheldon already mentioned this does not appear to be a FreeBSD problem but rather a dying disk. If it was indeed hardware then I'd like to close the bug report. Regards, -- Wilko Bulte Powered by FreeBSD http://www.freebsd.org http://www.tcja.nl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 7 8: 0: 9 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 333AD37BB5D for ; Fri, 7 Apr 2000 08:00:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA57164; Fri, 7 Apr 2000 08:00:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 7 Apr 2000 08:00:05 -0700 (PDT) Message-Id: <200004071500.IAA57164@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Wilko Bulte Subject: Re: i386/15897: Any fix for rpc.lockd on Free BSD 3.2 nfs server Reply-To: Wilko Bulte Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/15897; it has been noted by GNATS. From: Wilko Bulte To: freebsd-gnats-submit@FreeBSD.org, mohan@nber.org Cc: Subject: Re: i386/15897: Any fix for rpc.lockd on Free BSD 3.2 nfs server Date: Fri, 07 Apr 2000 16:51:26 +0200 A *lot* of work on NFS has been put into FreeBSD 4.0R. I'm not sure to what extent rpc.lockd is addressed but it appears to be worthwhile to check the mailing list archives on www.freebsd.org for more information. Or just give 4.0R a try ;-) -- Wilko Bulte Powered by FreeBSD http://www.freebsd.org http://www.tcja.nl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 7 8: 0:15 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CBD7137BD6C for ; Fri, 7 Apr 2000 08:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA57127; Fri, 7 Apr 2000 08:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AC9AF37BC51 for ; Fri, 7 Apr 2000 07:51:22 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA56026; Fri, 7 Apr 2000 07:51:22 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004071451.HAA56026@freefall.freebsd.org> Date: Fri, 7 Apr 2000 07:51:22 -0700 (PDT) From: bricer@cambridge.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/17845: I want to see what the email notification looks like Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17845 >Category: misc >Synopsis: I want to see what the email notification looks like >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Apr 7 08:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Richard Brice >Release: This one >Organization: Cambridge Research >Environment: don't know >Description: just testing - I want to see what emails look like from GNATS >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 7 8: 0:22 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 66DCF37BDC1 for ; Fri, 7 Apr 2000 08:00:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA57169; Fri, 7 Apr 2000 08:00:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 7 Apr 2000 08:00:06 -0700 (PDT) Message-Id: <200004071500.IAA57169@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Wilko Bulte Subject: Re: i386/14373: Error while booting from floppy disk Reply-To: Wilko Bulte Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/14373; it has been noted by GNATS. From: Wilko Bulte To: freebsd-gnats-submit@FreeBSD.org, kjwolf@seismic.de Cc: Subject: Re: i386/14373: Error while booting from floppy disk Date: Fri, 07 Apr 2000 16:57:09 +0200 Are you sure you used the right image for the boot floppy? There is a 2.something megabyte file as well that is intended for LS120 (?) disks. IIRC I once had a similar (the same?) error when I 'dd'ed the wrong image file from the CD onto the floppy. -- Wilko Bulte Powered by FreeBSD http://www.freebsd.org http://www.tcja.nl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 7 8: 3:22 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4658B37B581; Fri, 7 Apr 2000 08:03:21 -0700 (PDT) (envelope-from nrahlstr@FreeBSD.org) Received: (from nrahlstr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA57595; Fri, 7 Apr 2000 08:03:21 -0700 (PDT) (envelope-from nrahlstr@FreeBSD.org) Date: Fri, 7 Apr 2000 08:03:21 -0700 (PDT) From: Message-Id: <200004071503.IAA57595@freefall.freebsd.org> To: bricer@cambridge.com, nrahlstr@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/17845: I want to see what the email notification looks like Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: I want to see what the email notification looks like State-Changed-From-To: open->closed State-Changed-By: nrahlstr State-Changed-When: Fri Apr 7 08:02:31 PDT 2000 State-Changed-Why: Invalid PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 7 11: 0: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C36B737BAAE for ; Fri, 7 Apr 2000 11:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA76843; Fri, 7 Apr 2000 11:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from eubie.lbl.gov (eubie.lbl.gov [131.243.2.36]) by hub.freebsd.org (Postfix) with ESMTP id 2C29437BD47 for ; Fri, 7 Apr 2000 10:54:27 -0700 (PDT) (envelope-from jin@eubie.lbl.gov) Received: (from jin@localhost) by eubie.lbl.gov (8.9.3/8.9.3) id KAA00590; Fri, 7 Apr 2000 10:54:26 -0700 (PDT) (envelope-from jin) Message-Id: <200004071754.KAA00590@eubie.lbl.gov> Date: Fri, 7 Apr 2000 10:54:26 -0700 (PDT) From: Jin Guojun (FTG staff) Reply-To: j_guojun@lbl.gov To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/17847: mv symbolic link cross partition fails Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17847 >Category: bin >Synopsis: mv symbolic link cross partition fails >Confidential: yes >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Apr 7 11:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Jin Guojun (FTG staff) >Release: FreeBSD ALL-RELEASE i386 >Organization: >Environment: At least since FreeBSD 3.x-RELEASE >Description: This is supposed to be for "mv slink another_partition" [125] solaris: cd /tmp; ln -s x y [126] solaris: ll lrwxrwxrwx 1 jin 1 Apr 7 10:32 y -> x [127] solaris: mv y ~ [128] solaris: ll ~/y lrwxrwxrwx 1 jin 1 Apr 7 10:32 /home/users/jin/y -> x This is what happened on FreeBSD mv: [111] FreeBSD: cd /tmp [112] FreeBSD: mkdir test [113] FreeBSD: ln -s x y [114] FreeBSD: mv y test [115] FreeBSD: ll test total 2 drwxr-xr-x 2 jin wheel 512 Apr 7 10:34 ./ drwxrwxrwt 4 root wheel 512 Apr 7 10:34 ../ lrwxr-xr-x 1 jin wheel 1 Apr 7 10:34 y@ -> x # ok for local mv [116] FreeBSD: cd test [117] FreeBSD: mv y ~ mv: y: No such file or directory # failed HERE [118] FreeBSD: echo abc > x [119] FreeBSD: ll total 3 drwxr-xr-x 2 jin wheel 512 Apr 7 10:48 ./ drwxrwxrwt 4 root wheel 512 Apr 7 10:34 ../ -rw-r--r-- 1 jin wheel 4 Apr 7 10:48 x lrwxr-xr-x 1 jin wheel 1 Apr 7 10:34 y@ -> x [120] FreeBSD: mv y ~ # incorrect for crossing partition [121] FreeBSD: ll ~/y -rw-r--r-- 1 jin wheel 4 Apr 7 10:48 /home/users/jin/y [122] FreeBSD: cat ~/y abc [123] FreeBSD: ll total 3 drwxr-xr-x 2 jin wheel 512 Apr 7 10:49 ./ drwxrwxrwt 4 root wheel 512 Apr 7 10:34 ../ -rw-r--r-- 1 jin wheel 4 Apr 7 10:48 x >How-To-Repeat: Just repeat above operatoins within the same/different partitions. >Fix: If every one agree this incorrect, I can trace down the code to find a patch. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 7 11:20: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 885F637BE0E for ; Fri, 7 Apr 2000 11:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA78544; Fri, 7 Apr 2000 11:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.95.76.54]) by hub.freebsd.org (Postfix) with ESMTP id 4E73237BDE9 for ; Fri, 7 Apr 2000 11:14:14 -0700 (PDT) (envelope-from kargl@troutmask.apl.washington.edu) Received: (from kargl@localhost) by troutmask.apl.washington.edu (8.9.3/8.9.3) id LAA14160; Fri, 7 Apr 2000 11:15:50 -0700 (PDT) (envelope-from kargl) Message-Id: <200004071815.LAA14160@troutmask.apl.washington.edu> Date: Fri, 7 Apr 2000 11:15:50 -0700 (PDT) From: "Steven G. Kargl" Reply-To: kargl@troutmask.apl.washington.edu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: misc/17848: remove support for CSRG libm Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17848 >Category: misc >Synopsis: Patches to remove support for CSRG libm >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Apr 7 11:20:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Steven G. Kargl >Release: FreeBSD 5.0-CURRENT i386 >Organization: apl/uw >Environment: All version of FreeBSD. >Description: Compilation of CSRG libm is broken. From the cvs repository, it appears as if it has been broken for a long, long, long time. The SunPro math library in lib/msun is the default library, and it appears to be maintained. >How-To-Repeat: cd /usr/lib/libm make clean make cleandepend make depend make >Fix: cd /usr/src/lib/libm rm -rf * cvs delete -m 'Moving libm to attic' . cvs commit . Apply this patch to etc/defaults/make.conf --- make.conf.orig Fri Apr 7 10:50:29 2000 +++ make.conf Fri Apr 7 10:50:54 2000 @@ -73,10 +73,6 @@ # #COPTFLAGS= -O -pipe # -# To compile and install the 4.4 lite libm instead of the default use: -# -#WANT_CSRG_LIBM= yes -# # If you do not want unformatted manual pages to be compressed # when they are installed: # Apply this patch to lib/Makefile --- Makefile.orig Fri Apr 7 10:57:05 2000 +++ Makefile Fri Apr 7 10:57:31 2000 @@ -7,7 +7,7 @@ # csu must be built before all shared libaries for ELF. # libcom_err must be built before libkrb, libpam and libss. # libcrypt must be built before libkrb, libpam and libskey. -# libm must be built before libg++ and libstdc++. +# msun must be built before libg++ and libstdc++. # libmd must be built before libatm, libopie, libradius, libskey, and # libtacplus. # libncurses must be built before libdialog, libedit and libreadline. @@ -18,7 +18,7 @@ # # Otherwise, the SUBDIR list should be in alphabetical order. -SUBDIR= ${_csu} libcom_err ${_libcrypt} ${_libm} libmd \ +SUBDIR= ${_csu} libcom_err ${_libcrypt} msun libmd \ libncurses libradius libskey libtacplus libutil \ ${_compat} libalias libatm ${_libbind} libc ${_libc_r} libcalendar \ libcam libcompat libdevstat libdisk libedit libfetch libform \ @@ -53,12 +53,6 @@ _compat= compat _libncp= libncp _libvgl= libvgl -.endif - -.if defined(WANT_CSRG_LIBM) -_libm= libm -.else -_libm= msun .endif .if ${MACHINE_ARCH} == "alpha" >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 7 12:30: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 93CC737C066 for ; Fri, 7 Apr 2000 12:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA85995; Fri, 7 Apr 2000 12:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 7 Apr 2000 12:30:03 -0700 (PDT) Message-Id: <200004071930.MAA85995@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: David Malone Subject: Re: bin/17847: mv symbolic link cross partition fails Reply-To: David Malone Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/17847; it has been noted by GNATS. From: David Malone To: j_guojun@lbl.gov Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: bin/17847: mv symbolic link cross partition fails Date: Fri, 07 Apr 2000 20:28:07 +0100 > If every one agree this incorrect, I can trace down the code to > find a patch. This sounds like a bug, as it doesn't do the same thing as mving a symlink on a local partition would. If the file the symlink points to is a regular file you'll end up getting a copy of that instead of the symlink. Digital Unix and Linux also do the same "correct" thing as solaris. It looks like mv has a stat, which should be an lstat. The included patch seems to fix it. BTW - for some strange reason your PR seems to be marked as confidential on the web site. David. --- mv.c Fri Apr 7 20:19:19 2000 +++ mv.c.orig Fri Apr 7 20:19:45 2000 @@ -221,7 +221,7 @@ * it's a regular file, do the copy internally; otherwise, use * cp and rm. */ - if (lstat(from, &sb)) { + if (stat(from, &sb)) { warn("%s", from); return (1); } To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 7 12:34: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by hub.freebsd.org (Postfix) with ESMTP id 5F15437B61F for ; Fri, 7 Apr 2000 12:34:05 -0700 (PDT) (envelope-from billf@jade.chc-chimes.com) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id 5A1DA1C69; Fri, 7 Apr 2000 15:34:04 -0400 (EDT) Date: Fri, 7 Apr 2000 15:34:04 -0400 From: Bill Fumerola To: David Malone Cc: freebsd-bugs@FreeBSD.org Subject: Re: bin/17847: mv symbolic link cross partition fails Message-ID: <20000407153404.C23367@jade.chc-chimes.com> References: <200004071930.MAA85995@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <200004071930.MAA85995@freefall.freebsd.org>; from dwmalone@maths.tcd.ie on Fri, Apr 07, 2000 at 12:30:03PM -0700 X-Operating-System: FreeBSD 3.2-RELEASE i386 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Apr 07, 2000 at 12:30:03PM -0700, David Malone wrote: > BTW - for some strange reason your PR seems to be marked as > confidential on the web site. Fixed. -- Bill Fumerola - Network Architect Computer Horizons Corp - CVM e-mail: billf@chc-chimes.com / billf@FreeBSD.org Office: 800-252-2421 x128 / Cell: 248-761-7272 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 7 13:10: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6868637BABF for ; Fri, 7 Apr 2000 13:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA90300; Fri, 7 Apr 2000 13:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 7 Apr 2000 13:10:03 -0700 (PDT) Message-Id: <200004072010.NAA90300@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: David Malone Subject: Re: gnu/17812: gprof gives error Reply-To: David Malone Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR gnu/17812; it has been noted by GNATS. From: David Malone To: freebsd-gnats-submit@FreeBSD.org, christor@ug.cs.sunysb.edu Cc: Subject: Re: gnu/17812: gprof gives error Date: Fri, 07 Apr 2000 21:01:27 +0100 Gprof seems to work OK for me on 3.4-STABLE. I'd guess you have a gmon.out file which is corrupt or for a different type of system. For me it produced a file called hello.gmon, so I had to give this on the command line. David. 182% cat hello.c #include int main(void){ printf("hello world!\n"); } 183% gcc -pg -o hello hello.c 184% ls -l total 55 -rwxr-xr-x 1 dwmalone wheel 54638 Apr 7 20:55 hello -rw-r--r-- 1 dwmalone wheel 76 Apr 7 20:53 hello.c 185% ./hello hello world! 186% ls -l total 74 -rwxr-xr-x 1 dwmalone wheel 54638 Apr 7 20:55 hello -rw-r--r-- 1 dwmalone wheel 76 Apr 7 20:53 hello.c -rw-r--r-- 1 dwmalone wheel 18482 Apr 7 20:55 hello.gmon 187% gprof hello hello.gmon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 7 13:40: 4 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1D7C537BEB5 for ; Fri, 7 Apr 2000 13:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA93472; Fri, 7 Apr 2000 13:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 7 Apr 2000 13:40:01 -0700 (PDT) Message-Id: <200004072040.NAA93472@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Andrew Grillet Subject: Re: misc/15869: 3.4-STABLE-20000103 install fails to disklabel Reply-To: Andrew Grillet Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/15869; it has been noted by GNATS. From: Andrew Grillet To: freebsd-gnats-submit@FreeBSD.org, timlee@netcom.com Cc: Subject: Re: misc/15869: 3.4-STABLE-20000103 install fails to disklabel Date: Fri, 07 Apr 2000 20:13:13 +0100 I had problems with a much smaller HD. I managed to cure it by setting boot0conf to use 'packet' mode - ie not CHS disk parameters. I think this should be the default for larger (over 540MB) HDs. I cannot guarantee its your problem though regards Andrew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 7 13:50:13 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C0AF437BB0D for ; Fri, 7 Apr 2000 13:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA94505; Fri, 7 Apr 2000 13:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 7 Apr 2000 13:50:03 -0700 (PDT) Message-Id: <200004072050.NAA94505@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Jin Guojun (FTG staff) Subject: Re: bin/17847: mv symbolic link cross partition fails Reply-To: Jin Guojun (FTG staff) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/17847; it has been noted by GNATS. From: Jin Guojun (FTG staff) To: dwmalone@maths.tcd.ie Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: bin/17847: mv symbolic link cross partition fails Date: Fri, 7 Apr 2000 13:43:02 -0700 (PDT) Yes, following patch fixed the problem. Shall we apply the patch and close the case? Thanks, -Jin --------- original message ------ > If every one agree this incorrect, I can trace down the code to > find a patch. This sounds like a bug, as it doesn't do the same thing as mving a symlink on a local partition would. If the file the symlink points to is a regular file you'll end up getting a copy of that instead of the symlink. Digital Unix and Linux also do the same "correct" thing as solaris. It looks like mv has a stat, which should be an lstat. The included patch seems to fix it. BTW - for some strange reason your PR seems to be marked as confidential on the web site. David. --- mv.c Fri Apr 7 20:19:19 2000 +++ mv.c.orig Fri Apr 7 20:19:45 2000 @@ -221,7 +221,7 @@ * it's a regular file, do the copy internally; otherwise, use * cp and rm. */ - if (lstat(from, &sb)) { + if (stat(from, &sb)) { warn("%s", from); return (1); } To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 7 14: 0: 9 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B6D4137BB4F for ; Fri, 7 Apr 2000 14:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA95305; Fri, 7 Apr 2000 14:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 7 Apr 2000 14:00:03 -0700 (PDT) Message-Id: <200004072100.OAA95305@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Andrew Grillet Subject: Re: kern/16143: 3C589D (PCMCIA) card not recognized during installation Reply-To: Andrew Grillet Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/16143; it has been noted by GNATS. From: Andrew Grillet To: freebsd-gnats-submit@FreeBSD.org, kuriyakk@cpf.navy.mil Cc: Subject: Re: kern/16143: 3C589D (PCMCIA) card not recognized during installation Date: Fri, 07 Apr 2000 20:30:16 +0100 Mine is recognised, but does not work, although it does work under Win95 (Thinkpad so swappable HDs) Are you using UTP or coax - mine is dual medium, but I am using coax. I never managed to get 3.3 to work due to faulty iso images and no local supplier. regards Andrew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 7 14:20: 8 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BD9F337B5DB for ; Fri, 7 Apr 2000 14:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA97413; Fri, 7 Apr 2000 14:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 7 Apr 2000 14:20:03 -0700 (PDT) Message-Id: <200004072120.OAA97413@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Andrew L. Neporada" Subject: Re: bin/17764: wrong percentage completed in bad144 Reply-To: "Andrew L. Neporada" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/17764; it has been noted by GNATS. From: "Andrew L. Neporada" To: pccb@yahoo.com Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: bin/17764: wrong percentage completed in bad144 Date: Sat, 8 Apr 2000 01:16:51 +0400 (MSD) On Sun, 2 Apr 2000 pccb@yahoo.com wrote: > > >Number: 17764 > >Category: bin > >Synopsis: wrong percentage completed in bad144 > >Confidential: no > >Severity: non-critical > >Priority: low > >Responsible: freebsd-bugs [snip] > >Description: > Running bad144 against a Maxtor 40.9GB Diamondmax Plus 40 harddisk using ^^^^^^ You are lucky ;-) > 'bad144 -v -s /dev/wd1s1c' > After running for one day, screen showing > 30696123 of 80041059 blocks (4294967281%). Please try following very simple patch ( I have revision 1.17.2.1 1999/08/29 of bad144.c). This should help, I suppose... ------begin diff------------ --- bad144.c.orig Sat Apr 8 00:45:41 2000 +++ bad144.c Sat Apr 8 01:01:03 2000 @@ -106,7 +106,7 @@ int f; daddr_t bstart,bend; { - int curr_sec, n; + long long curr_sec, n; int spc = dp->d_secpercyl; int ss = dp->d_secsize; int trk = dp->d_nsectors; ------end diff------------- -- Andrew. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 7 16:36: 3 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from rtp.tfd.com (rtp.tfd.com [198.79.53.206]) by hub.freebsd.org (Postfix) with ESMTP id AE61D37B5FE for ; Fri, 7 Apr 2000 16:35:55 -0700 (PDT) (envelope-from kent@chapel-hill.tfd.com) Received: from chapel-hill.tfd.com (chapel-hill.tfd.com [10.20.0.40]) by rtp.tfd.com (8.9.3/8.9.3) with ESMTP id TAA15257 for ; Fri, 7 Apr 2000 19:36:30 -0400 (EDT) Received: (from kent@localhost) by chapel-hill.tfd.com (8.9.3/8.9.3) id TAA32037 for bugs@freebsd.org; Fri, 7 Apr 2000 19:35:51 -0400 (EDT) (envelope-from kent) Date: Fri, 7 Apr 2000 19:35:51 -0400 (EDT) From: Kent Hauser Message-Id: <200004072335.TAA32037@chapel-hill.tfd.com> To: bugs@freebsd.org Subject: weird dates from mailing list search Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I just did some searches on 'www.freebsd.org'. I was searching 'current' for '3C589'. Several of the dates in the summary page were dated in '96 and '97, but the subject indicated they concerned the 4.0 code freeze. The messages were from this January. Sorry if this is the wrong list. If so, please also file it under wrong date... Kent To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 7 16:44: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A45FC37B96B; Fri, 7 Apr 2000 16:44:05 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: (from murray@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA09595; Fri, 7 Apr 2000 16:44:04 -0700 (PDT) (envelope-from murray@FreeBSD.org) Date: Fri, 7 Apr 2000 16:44:04 -0700 (PDT) From: Message-Id: <200004072344.QAA09595@freefall.freebsd.org> To: murray@FreeBSD.org, freebsd-bugs@FreeBSD.org, murray@FreeBSD.org Subject: Re: bin/17546: Sysinstall does not let you configure NIS Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Sysinstall does not let you configure NIS Responsible-Changed-From-To: freebsd-bugs->murray Responsible-Changed-By: murray Responsible-Changed-When: Fri Apr 7 16:43:07 PDT 2000 Responsible-Changed-Why: I have some more work to do before committing this patch. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 7 18:30:21 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 27DD737B9AC; Fri, 7 Apr 2000 18:30:20 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: (from murray@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA17581; Fri, 7 Apr 2000 18:30:19 -0700 (PDT) (envelope-from murray@FreeBSD.org) Date: Fri, 7 Apr 2000 18:30:19 -0700 (PDT) From: Message-Id: <200004080130.SAA17581@freefall.freebsd.org> To: fpscha@schapachnik.com.ar, murray@FreeBSD.org, freebsd-bugs@FreeBSD.org, murray@FreeBSD.org Subject: Re: bin/7632: Race condition in /stand/sysinstall Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Race condition in /stand/sysinstall State-Changed-From-To: open->closed State-Changed-By: murray State-Changed-When: Fri Apr 7 18:27:07 PDT 2000 State-Changed-Why: This is an old PR that has been fixed long ago. No such deadlock currently exists. Responsible-Changed-From-To: freebsd-bugs->murray Responsible-Changed-By: murray Responsible-Changed-When: Fri Apr 7 18:27:07 PDT 2000 Responsible-Changed-Why: I reviewed the code looking for deadlocks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 7 19: 9:35 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7943A37BB1B; Fri, 7 Apr 2000 19:09:34 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: (from murray@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA20472; Fri, 7 Apr 2000 19:09:34 -0700 (PDT) (envelope-from murray@FreeBSD.org) Date: Fri, 7 Apr 2000 19:09:34 -0700 (PDT) From: Message-Id: <200004080209.TAA20472@freefall.freebsd.org> To: murray@FreeBSD.org, freebsd-bugs@FreeBSD.org, murray@FreeBSD.org Subject: Re: bin/14729: when sysinstall is running as init it should reap zombies but doesn't Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: when sysinstall is running as init it should reap zombies but doesn't Responsible-Changed-From-To: freebsd-bugs->murray Responsible-Changed-By: murray Responsible-Changed-When: Fri Apr 7 19:08:35 PDT 2000 Responsible-Changed-Why: I can't duplicate this user's problem but I'm following up with him in email. I should be able to close this soon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 7 20:22:49 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 628A137BC9B; Fri, 7 Apr 2000 20:22:48 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: (from murray@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA27595; Fri, 7 Apr 2000 20:22:48 -0700 (PDT) (envelope-from murray@FreeBSD.org) Date: Fri, 7 Apr 2000 20:22:48 -0700 (PDT) From: Message-Id: <200004080322.UAA27595@freefall.freebsd.org> To: eduardo.viruena@esfm.ipn.mx, murray@FreeBSD.org, freebsd-bugs@FreeBSD.org, murray@FreeBSD.org Subject: Re: misc/17559: [please] add 3 button mouse emulation on /stand/sysinstall Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [please] add 3 button mouse emulation on /stand/sysinstall State-Changed-From-To: open->closed State-Changed-By: murray State-Changed-When: Fri Apr 7 20:21:14 PDT 2000 State-Changed-Why: I committed a patch to implement exactly what the user asks for in this PR. Responsible-Changed-From-To: freebsd-bugs->murray Responsible-Changed-By: murray Responsible-Changed-When: Fri Apr 7 20:21:14 PDT 2000 Responsible-Changed-Why: I wrote the patch To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 7 22:30: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id ACAF237BD2B for ; Fri, 7 Apr 2000 22:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA36311; Fri, 7 Apr 2000 22:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1AAF237BD19 for ; Fri, 7 Apr 2000 22:22:58 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA35855; Fri, 7 Apr 2000 22:22:57 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004080522.WAA35855@freefall.freebsd.org> Date: Fri, 7 Apr 2000 22:22:57 -0700 (PDT) From: purple05@hotmail.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/17856: After binary upgrade from 3.4 to 4.0 tcpdump doesnt fully work Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17856 >Category: misc >Synopsis: After binary upgrade from 3.4 to 4.0 tcpdump doesnt fully work >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Apr 7 22:30:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Michael Vince >Release: 4.0 Release i386 >Organization: none >Environment: FreeBSD blah.com 4.0-RELEASE FreeBSD 4.0-RELEASE #0: Wed Apr 5 23:09:13 EST 2000 root@blah.com:/usr/src/sys/compile/SUN i386 >Description: After binary upgrade from 3.4 to 4 tcpdump doesnt fully work. eg tcpdump host freebsd.org /usr/libexec/ld-elf.so.1: /usr/lib/libpcap.so.2: Undefined symbol "getaddrinfo" the those lib files do have new file dates. >How-To-Repeat: tcpdump host freebsd.org >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 7 22:40: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0D8B737BD41 for ; Fri, 7 Apr 2000 22:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA37327; Fri, 7 Apr 2000 22:40:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2DF7637B9AC for ; Fri, 7 Apr 2000 22:31:10 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA36406; Fri, 7 Apr 2000 22:31:09 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004080531.WAA36406@freefall.freebsd.org> Date: Fri, 7 Apr 2000 22:31:09 -0700 (PDT) From: purple05@hotmail.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/17857: During a sysinstall kernel sources say they wont be installed because there already there but they get installed any. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17857 >Category: misc >Synopsis: During a sysinstall kernel sources say they wont be installed because there already there but they get installed any. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Apr 7 22:40:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Michael Vince >Release: 4.0 Release i386 >Organization: none >Environment: FreeBSD blah.com 4.0-RELEASE FreeBSD 4.0-RELEASE #0: Wed Apr 5 23:09:13 EST 2000 root@blah.com:/usr/src/sys/compile/SUN i386 >Description: During a binary install from 3.4 release to 4.0 release with sysinstall I choose to install kernel sources but then half way in the install the installer says they wont be installed because the kernel sources are already there but they get installed any. For the upgrade.txt it would be nice to say delete your src and ports dir if you plan on installing them during install so they dont get installed over but still leaving old files from 3.4 there. >How-To-Repeat: Install 3.4 do a binary install over it with 4.0 I did a existing partition binary install. I did use the 4.0 install floppies. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 7 23:20: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AB0AA37B54D for ; Fri, 7 Apr 2000 23:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA40928; Fri, 7 Apr 2000 23:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A9BDF37C083 for ; Fri, 7 Apr 2000 23:12:47 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA40330; Fri, 7 Apr 2000 23:12:47 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004080612.XAA40330@freefall.freebsd.org> Date: Fri, 7 Apr 2000 23:12:47 -0700 (PDT) From: dmitry@asbaikaltv.ru To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/17858: pnp isa ed device problem on 4.0-RELEASE Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17858 >Category: kern >Synopsis: pnp isa ed device problem on 4.0-RELEASE >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Apr 7 23:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: dmitry >Release: 4.0-RELEASE >Organization: >Environment: i can't use this machine without network card :( >Description: when boot: unknown0: RL2000A Compex Ethernet PNP Adapter at 0x220-0x23f irq 5 on isa0 but this device very good worked on 3.1-RELEASE, this pnpinfo out on 3.1 Checking for Plug-n-Play devices... Card assigned CSN #1 Vendor ID CPX1501 (0x0115180e), Serial Number 0x48af5e0b PnP Version 1.0, Vendor Version 1 Device Description: Compex RL2000A PNP Ethernet Adapter Logical Device ID: CPX1501 0x0115180e #0 Device powers up active Device supports I/O Range Check Vendor register funcs 00 Compatible Device ID: PNP80d6 (d680d041) I/O Range 0x220 .. 0x3e0, alignment 0x20, len 0x20 [not 16-bit addr] IRQ: 5 10 11 12 15 IRQ: High true edge sensitive End Tag Successfully got 6 resources, 1 logical fdevs -- card select # 0x0001 CSN CPX1501 (0x0115180e), Serial Number 0x48af5e0b Logical device #0 IO: 0x0220 0x0000 0x0000 0x0000 0x0000 0x0000 0x0000 0x0000 IRQ 5 0 DMA 4 4 IO range check 0x00 activate 0x01 >How-To-Repeat: install this card .. >Fix: i don't know how >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Apr 8 1: 0: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 524DB37B641 for ; Sat, 8 Apr 2000 01:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA48877; Sat, 8 Apr 2000 01:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 8 Apr 2000 01:00:03 -0700 (PDT) Message-Id: <200004080800.BAA48877@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Trev Roydhouse Subject: Re: bin/5609: lpd cannot send long files to HP's JetDirect interface Reply-To: Trev Roydhouse Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/5609; it has been noted by GNATS. From: Trev Roydhouse To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: bin/5609: lpd cannot send long files to HP's JetDirect interface Date: Sat, 08 Apr 2000 17:52:24 +1000 Workaround: We solved the problem by specifying :ct#6000: in the printcap entries. Its nothing but a timeout problem because the LaserJet network interfaces just die while printing... [from Jan Conrad] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Apr 8 3:30: 9 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AEA1D37B59A for ; Sat, 8 Apr 2000 03:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA57888; Sat, 8 Apr 2000 03:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from ada.eu.org (marvin.enst.fr [137.194.161.2]) by hub.freebsd.org (Postfix) with ESMTP id 82F2037B8DA for ; Sat, 8 Apr 2000 03:24:48 -0700 (PDT) (envelope-from sam@ada.eu.org) Received: from antinea.enst.fr (antinea.enst.fr [137.194.160.145]) by ada.eu.org (Postfix) with ESMTP id 2EFC819076 for ; Sat, 8 Apr 2000 12:24:47 +0200 (CEST) Received: by antinea.enst.fr (Postfix, from userid 1000) id 8C809504; Sat, 8 Apr 2000 12:24:46 +0200 (CEST) Message-Id: <20000408102446.8C809504@antinea.enst.fr> Date: Sat, 8 Apr 2000 12:24:46 +0200 (CEST) From: sam@ada.eu.org Reply-To: sam@ada.eu.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/17859: vnode devices reject disklabels Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17859 >Category: kern >Synopsis: vnode devices reject disklabels >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Apr 8 03:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Samuel Tardieu >Release: FreeBSD 5.0-CURRENT i386 >Organization: TELECOM Paris >Environment: >Description: It looks like despites what the manpage reads, it is not possible to make a disklabel on a vnode device, either with a specified or with an automatic type. >How-To-Repeat: % dd if=/dev/zero of=/var/tmp/floppy bs=1k count=1440 % vnconfig -c /dev/vn0 /var/tmp/floppy % disklabel -w vn0 auto disklabel: ioctl DIOCGDINFO: Inappropriate ioctl for device disklabel: auto: unknown disk type % disklabel -w -r /dev/vn0 fd1440 disklabel: ioctl DIOCWLABEL: Inappropriate ioctl for device The manpage for disklabel says that auto is fine with vnode devices, which is obviously not the case. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Apr 8 3:40: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5AAC437B60D for ; Sat, 8 Apr 2000 03:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA58441; Sat, 8 Apr 2000 03:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 8 Apr 2000 03:40:03 -0700 (PDT) Message-Id: <200004081040.DAA58441@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Poul-Henning Kamp Subject: Re: kern/17859: vnode devices reject disklabels Reply-To: Poul-Henning Kamp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/17859; it has been noted by GNATS. From: Poul-Henning Kamp To: sam@ada.eu.org Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: kern/17859: vnode devices reject disklabels Date: Sat, 08 Apr 2000 12:33:31 +0200 Read the vnconfig manpages. VN devices have two modes: with or without disklabels. -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD coreteam member | BSD since 4.3-tahoe Never attribute to malice what can adequatly be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Apr 8 4: 6:57 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1422037B60D; Sat, 8 Apr 2000 04:06:56 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: (from phk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA62111; Sat, 8 Apr 2000 04:06:55 -0700 (PDT) (envelope-from phk@FreeBSD.org) Date: Sat, 8 Apr 2000 04:06:55 -0700 (PDT) From: Message-Id: <200004081106.EAA62111@freefall.freebsd.org> To: sam@ada.eu.org, phk@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/17859: vnode devices reject disklabels Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: vnode devices reject disklabels State-Changed-From-To: open->closed State-Changed-By: phk State-Changed-When: Sat Apr 8 04:06:39 PDT 2000 State-Changed-Why: resolved. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Apr 8 5: 1:34 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CF8CD37B5FE; Sat, 8 Apr 2000 05:01:33 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA66444; Sat, 8 Apr 2000 05:01:33 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Date: Sat, 8 Apr 2000 05:01:33 -0700 (PDT) From: Message-Id: <200004081201.FAA66444@freefall.freebsd.org> To: tla@spiderchain.com, jedgar@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/17805: ${CHMOD} is not set in ports makefiles after upgrading Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ${CHMOD} is not set in ports makefiles after upgrading State-Changed-From-To: open->closed State-Changed-By: jedgar State-Changed-When: Sat Apr 8 05:01:01 PDT 2000 State-Changed-Why: Originator says updating his ports fixed the problem To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Apr 8 8:30: 8 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 203F237BA9A for ; Sat, 8 Apr 2000 08:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA46931; Sat, 8 Apr 2000 08:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.hcisp.net (Stargate.hcisp.net [208.60.89.18]) by hub.freebsd.org (Postfix) with SMTP id A287B37B577 for ; Sat, 8 Apr 2000 08:25:19 -0700 (PDT) (envelope-from tim@mysql.com) Received: (qmail 24248 invoked from network); 8 Apr 2000 15:33:35 -0000 Received: from modem4.hcisp.net (HELO threads.polyesthetic.msg) (208.60.89.70) by stargate.hcisp.net with SMTP; 8 Apr 2000 15:33:35 -0000 Received: (qmail 18378 invoked by uid 1001); 8 Apr 2000 15:24:48 -0000 Message-Id: <20000408152448.18377.qmail@threads.polyesthetic.msg> Date: 8 Apr 2000 15:24:48 -0000 From: "Thimble Smith" Reply-To: tim@mysql.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/17864: PATCH: sys/resource.h needs sys/time.h for struct timeval Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17864 >Category: bin >Synopsis: PATCH: sys/resource.h needs sys/time.h for struct timeval >Confidential: yes >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Apr 8 08:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Thimble Smith >Release: FreeBSD 4.0-STABLE i386 >Organization: >Environment: >Description: Programs that include without including first will not compile, because struct timeval is not defined. This could be a bug in the program instead of in FreeBSD. If so, go ahead and tell me so and I'll bug the program's authors. >How-To-Repeat: >Fix: --- /usr/tmp/resource.h Sat Apr 8 11:17:30 2000 +++ /usr/include/sys/resource.h Sat Apr 8 11:17:48 2000 @@ -37,6 +37,8 @@ #ifndef _SYS_RESOURCE_H_ #define _SYS_RESOURCE_H_ +#include + /* * Process priority specifications to get/setpriority. */ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Apr 8 9: 0: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4C1A637BAA1 for ; Sat, 8 Apr 2000 09:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA49320; Sat, 8 Apr 2000 09:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from smtp.millennium20.com (smtp.thecyberguys.net [209.79.190.13]) by hub.freebsd.org (Postfix) with ESMTP id 4A19337B5DD for ; Sat, 8 Apr 2000 08:51:58 -0700 (PDT) (envelope-from glennpj@bayouhome.net) Received: from gforce.johnson.home (1Cust88.tnt2.covington.la.da.uu.net [63.31.31.88]) by smtp.millennium20.com (8.10.0/8.10.0) with SMTP id e38FnU627466 for ; Sat, 8 Apr 2000 08:49:30 -0700 Received: (from glenn@localhost) by gforce.johnson.home (8.9.3/8.9.3) id KAA00871; Sat, 8 Apr 2000 10:51:51 -0500 (CDT) (envelope-from glenn) Message-Id: <200004081551.KAA00871@gforce.johnson.home> Date: Sat, 8 Apr 2000 10:51:51 -0500 (CDT) From: Glenn Johnson Reply-To: glennpj@bayouhome.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: conf/17865: Add ppp deny keep alive filter entries for NetBIOS Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17865 >Category: conf >Synopsis: example ppp filters to keep NetBIOS from keeping link up >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Apr 8 09:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Glenn Johnson >Release: FreeBSD 4.0-STABLE i386 >Organization: >Environment: >Description: NetBIOS packets will keep a ppp link up longer than desirable in ppp -auto mode. This would apply to people with a network using Samba and ppp -auto as their Internet link. Example filter entries are in /usr/share/examples/ppp/ppp.conf.sample to show how to keep NetBIOS packets from triggering a dial. The enclosed patch adds example entries to show how to keep NetBIOS packets from keeping the connection alive unnecessarily. >How-To-Repeat: >Fix: Apply the enclosed patch to /usr/src/share/examples/ppp/ppp.conf.sample. --- /usr/src/share/examples/ppp/ppp.conf.sample.orig Tue Apr 4 17:27:14 2000 +++ /usr/src/share/examples/ppp/ppp.conf.sample Tue Apr 4 17:31:02 2000 @@ -218,8 +218,14 @@ set filter alive 1 deny udp dst eq 520 # routed set filter alive 2 deny udp src eq 513 # rwhod set filter alive 3 deny udp src eq 525 # timed - set filter alive 4 deny 0/0 MYADDR icmp # Ping to us from outside - set filter alive 5 permit 0/0 0/0 + set filter alive 4 deny udp src eq 137 # NetBIOS name service + set filter alive 5 deny udp src eq 138 # NetBIOS datagram service + set filter alive 6 deny udp src eq 139 # NetBIOS session service + set filter alive 7 deny udp dst eq 137 # NetBIOS name service + set filter alive 8 deny udp dst eq 138 # NetBIOS datagram service + set filter alive 9 deny udp dst eq 139 # NetBIOS session service + set filter alive 10 deny 0/0 MYADDR icmp # Ping to us from outside + set filter alive 11 permit 0/0 0/0 # # And in auto mode, we don't want certain packets to cause a dialup # >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Apr 8 9:10: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6D6D237BABC for ; Sat, 8 Apr 2000 09:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA50633; Sat, 8 Apr 2000 09:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 8 Apr 2000 09:10:03 -0700 (PDT) Message-Id: <200004081610.JAA50633@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Garrett Wollman Subject: bin/17864: PATCH: sys/resource.h needs sys/time.h for struct timeval Reply-To: Garrett Wollman Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/17864; it has been noted by GNATS. From: Garrett Wollman To: tim@mysql.com Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: bin/17864: PATCH: sys/resource.h needs sys/time.h for struct timeval Date: Sat, 8 Apr 2000 12:01:11 -0400 (EDT) < said: > Programs that include without including > first will not compile, because struct timeval is not defined. This > could be a bug in the program instead of in FreeBSD. If so, go ahead > and tell me so and I'll bug the program's authors. is a documented prerequisite of : GETRUSAGE(2) FreeBSD System Calls Manual GETRUSAGE(2) NAME getrusage - get information about resource utilization SYNOPSIS #include #include #include GETRLIMIT(2) FreeBSD System Calls Manual GETRLIMIT(2) NAME getrlimit, setrlimit - control maximum system resource consumption SYNOPSIS #include #include #include -GAWollman -- Garrett A. Wollman | O Siem / We are all family / O Siem / We're all the same wollman@lcs.mit.edu | O Siem / The fires of freedom Opinions not those of| Dance in the burning flame MIT, LCS, CRS, or NSA| - Susan Aglukark and Chad Irschick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Apr 8 10:10:11 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9A9E537BB82 for ; Sat, 8 Apr 2000 10:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA55158; Sat, 8 Apr 2000 10:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from ace.heart.ne.jp (aonori.guru.gr.jp [210.164.220.230]) by hub.freebsd.org (Postfix) with ESMTP id EBA7E37BC4F for ; Sat, 8 Apr 2000 10:05:42 -0700 (PDT) (envelope-from issei@ace.heart.ne.jp) Received: (from issei@localhost) by ace.heart.ne.jp (8.9.3/8.9.3) id CAA60012; Sun, 9 Apr 2000 02:05:43 +0900 (JST) (envelope-from issei) Message-Id: <200004081705.CAA60012@ace.heart.ne.jp> Date: Sun, 9 Apr 2000 02:05:43 +0900 (JST) From: issei@heart.ne.jp Reply-To: issei@ace.heart.ne.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/17866: vr0 hung up Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17866 >Category: kern >Synopsis: vr0 hung up >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Apr 8 10:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Issei Numata >Release: FreeBSD 4.0-STABLE i386 >Organization: Heart >Environment: FreeBSD ace.heart.ne.jp 4.0-STABLE FreeBSD 4.0-STABLE #0: Sat Apr 8 16:01:48 JST 2000 issei@ace.heart.ne.jp:/usr/src/sys/compile/ACe i386 >Description: I'm using corega FirstEtherII PCI-TX. This device is recognized as vr0 and this card worked good in 3.4-RELEASE. When I try to transfer large files in 4.0-RELEASE, it hung up and printed out error message such as, Apr 8 16:07:34 ace /kernel: vr0: rx error: unknown rx error >How-To-Repeat: It's easy to repeat, transfer large file such as FTP, NFS, etc.. >Fix: Sorry, I dont know. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Apr 8 10:20:31 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1A84237BB70; Sat, 8 Apr 2000 10:20:28 -0700 (PDT) (envelope-from jhay@FreeBSD.org) Received: (from jhay@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA56308; Sat, 8 Apr 2000 10:20:27 -0700 (PDT) (envelope-from jhay@FreeBSD.org) Date: Sat, 8 Apr 2000 10:20:27 -0700 (PDT) From: Message-Id: <200004081720.KAA56308@freefall.freebsd.org> To: fujiwara@rcac.tdi.co.jp, jhay@FreeBSD.org, freebsd-bugs@FreeBSD.org, jhay@FreeBSD.org Subject: Re: kern/17814: sr driver ignores IFF_LINK2 | IFF_DEBUG when first time ifconfig Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: sr driver ignores IFF_LINK2 | IFF_DEBUG when first time ifconfig State-Changed-From-To: open->feedback State-Changed-By: jhay State-Changed-When: Sat Apr 8 10:17:21 PDT 2000 State-Changed-Why: I fixed it in rev. 1.35 of if_sr.c. Can you check if it fix it for you too, please? Responsible-Changed-From-To: freebsd-bugs->jhay Responsible-Changed-By: jhay Responsible-Changed-When: Sat Apr 8 10:17:21 PDT 2000 Responsible-Changed-Why: I'll look at it. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Apr 8 10:40:46 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from skynet.ctr.columbia.edu (skynet.ctr.columbia.edu [128.59.64.70]) by hub.freebsd.org (Postfix) with SMTP id 6770C37BB70 for ; Sat, 8 Apr 2000 10:40:36 -0700 (PDT) (envelope-from wpaul@skynet.ctr.columbia.edu) Received: (from wpaul@localhost) by skynet.ctr.columbia.edu (8.6.12/8.6.9) id NAA22322; Sat, 8 Apr 2000 13:44:04 -0400 From: Bill Paul Message-Id: <200004081744.NAA22322@skynet.ctr.columbia.edu> Subject: Re: kern/17866: vr0 hung up To: issei@ace.heart.ne.jp Date: Sat, 8 Apr 2000 13:44:02 -0400 (EDT) Cc: bugs@freebsd.org In-Reply-To: <200004081705.CAA60012@ace.heart.ne.jp> from "issei@heart.ne.jp" at Apr 9, 2000 02:05:43 am X-Mailer: ELM [version 2.4 PL24] Content-Type: text Content-Length: 4089 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Of all the gin joints in all the towns in all the world, issei@heart.ne.jp had to walk into mine and say: > > >Description: > > I'm using corega FirstEtherII PCI-TX. This device is recognized as vr0 > and this card worked good in 3.4-RELEASE. Grrr. When you make a bug report, you need to describe *all* of your hardware, not just the bits that you think are interesting. FreeBSD 4.0 supports DMA for some IDE disk controllers now; I'll bet that you have an IDE disk, and now the controller is running in DMA mode with the ata driver instead of PIO mode like it did with the older wd driver. This is an important thing to know, because the VIA Rhine II chip also uses DMA. It's important to tell people what kind of CPU you have, what other devices you have in your machine, and what the NIC is plugged into (hub? switch? crossover cable to other machine?) so that people have some idea what might be going wrong. All you're saying now is "it doesn't work" which isn't good enough. I can't fix a problem if I can't duplicate it, and I can't duplicate it if I don't know what your hardware is like. > When I try to transfer large files in 4.0-RELEASE, > it hung up and printed out error message such as, > > Apr 8 16:07:34 ace /kernel: vr0: rx error: unknown rx error > > >How-To-Repeat: > > It's easy to repeat, transfer large file such as FTP, NFS, etc.. No, it is not easy to repeat. It is easy to repeat *for you* because you happen to have the correct hardware combination for duplicating the problem. If it was that easy to repeat, others would have reported the same problem by now, which they didn't. > >Fix: > > Sorry, I dont know. I don't know either, but I'm including a small patch for if_vr.c which should make it reset the interface when this problem occurs. This is not the proper fix, but until I have more information, it's the best I can do. Just in case it's not clear, what I want you to do is apply this patch, and then tell me what if any difference it makes. To apply the patch, save this message to a file (i.e. /tmp/vr.patch) and then do the following: # cd /sys/pci # patch < /tmp/vr.patch You can then either make a new kernel or compile and load a new if_vr.ko module (if you're using loadable modules). -Bill -- ============================================================================= -Bill Paul (212) 854-6020 | System Manager, Master of Unix-Fu Work: wpaul@ctr.columbia.edu | Center for Telecommunications Research Home: wpaul@skynet.ctr.columbia.edu | Columbia University, New York City ============================================================================= "It is not I who am crazy; it is I who am mad!" - Ren Hoek, "Space Madness" ============================================================================= *** if_vr.c.orig Sat Apr 8 17:26:18 2000 --- if_vr.c Sat Apr 8 17:31:22 2000 *************** *** 948,956 **** m_adj(m_new, sizeof(u_int64_t)); c->vr_mbuf = m_new; - c->vr_ptr->vr_status = VR_RXSTAT; c->vr_ptr->vr_data = vtophys(mtod(m_new, caddr_t)); c->vr_ptr->vr_ctl = VR_RXCTL | VR_RXLEN; return(0); } --- 948,956 ---- m_adj(m_new, sizeof(u_int64_t)); c->vr_mbuf = m_new; c->vr_ptr->vr_data = vtophys(mtod(m_new, caddr_t)); c->vr_ptr->vr_ctl = VR_RXCTL | VR_RXLEN; + c->vr_ptr->vr_status = VR_RXSTAT; return(0); } *************** *** 1014,1021 **** printf("unknown rx error\n"); break; } ! vr_newbuf(sc, cur_rx, m); ! continue; } /* No errors; receive the packet. */ --- 1014,1021 ---- printf("unknown rx error\n"); break; } ! vr_init(sc); ! return; } /* No errors; receive the packet. */ *************** *** 1317,1322 **** --- 1317,1324 ---- if (m_head->m_len < VR_MIN_FRAMELEN) { m_new->m_pkthdr.len += VR_MIN_FRAMELEN - m_new->m_len; m_new->m_len = m_new->m_pkthdr.len; + bzero(mtod(m_new, char *) + m_new->m_pkthdr.len, + VR_MIN_FRAMELEN - m_new->m_pkthdr.len); } f = c->vr_ptr; f->vr_data = vtophys(mtod(m_new, caddr_t)); To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Apr 8 13:10: 9 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0BFA737B610 for ; Sat, 8 Apr 2000 13:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA68306; Sat, 8 Apr 2000 13:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from heimdall.piqnet.org (adsl-63-197-64-194.dsl.snfc21.pacbell.net [63.197.64.194]) by hub.freebsd.org (Postfix) with ESMTP id C0CD337B680 for ; Sat, 8 Apr 2000 13:06:04 -0700 (PDT) (envelope-from joelh@piqnet.org) Received: from detlev.piqnet.org (root@detlev.pvt.piqnet.org [192.168.13.1]) by heimdall.piqnet.org (8.9.3/8.9.3) with ESMTP id NAA07125 for ; Sat, 8 Apr 2000 13:11:00 -0700 (PDT) (envelope-from joelh@piqnet.org) Received: (from joelh@localhost) by detlev.piqnet.org (8.9.3/8.9.3) id NAA32966; Sat, 8 Apr 2000 13:08:37 -0700 (PDT) (envelope-from joelh@piqnet.org) Message-Id: <200004082008.NAA32966@detlev.piqnet.org> Date: Sat, 8 Apr 2000 13:08:37 -0700 (PDT) From: Joel Ray Holveck Reply-To: joelh@gnu.org To: freefall-gnats@piqnet.org X-Send-Pr-Version: 3.2 Subject: bin/17867: wall does not report time zone [PATCH] Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17867 >Category: bin >Synopsis: wall does not report time zone [PATCH] >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Apr 8 13:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Joel Ray Holveck >Release: FreeBSD 4.0-CURRENT i386 >Organization: >Environment: i386/4.0-CURRENT from 11 Feb 2000 >Description: wall, even though it uses the user's TZ variable, does not include the timezone information in the banner sent. >How-To-Repeat: $ export TZ=PST8PDT $ echo 'foo' | wall $ export TZ=CST6CDT $ echo 'bar' | wall >Fix: Apply the attached patch to usr.bin/wall.c --- wall.c.orig Sat Apr 8 13:00:11 2000 +++ wall.c Sat Apr 8 12:58:32 2000 @@ -172,8 +172,8 @@ whom, hostname); (void)fprintf(fp, "%-79.79s\007\007\r\n", lbuf); (void)snprintf(lbuf, sizeof(lbuf), - " (%s) at %d:%02d ...", ttyname(2), - lt->tm_hour, lt->tm_min); + " (%s) at %d:%02d %s ...", ttyname(2), + lt->tm_hour, lt->tm_min, lt->tm_zone); (void)fprintf(fp, "%-79.79s\r\n", lbuf); } (void)fprintf(fp, "%79s\r\n", " "); >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Apr 8 14: 0: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 53BDE37BA1C for ; Sat, 8 Apr 2000 14:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA72666; Sat, 8 Apr 2000 14:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 8 Apr 2000 14:00:03 -0700 (PDT) Message-Id: <200004082100.OAA72666@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Peter Wemm Subject: Re: kern/17858: pnp isa ed device problem on 4.0-RELEASE Reply-To: Peter Wemm Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/17858; it has been noted by GNATS. From: Peter Wemm To: dmitry@asbaikaltv.ru Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: kern/17858: pnp isa ed device problem on 4.0-RELEASE Date: Sat, 08 Apr 2000 13:50:26 -0700 dmitry@asbaikaltv.ru wrote: > >Number: 17858 > >Synopsis: pnp isa ed device problem on 4.0-RELEASE [..] > Logical Device ID: CPX1501 0x0115180e #0 > Device powers up active > Device supports I/O Range Check > Vendor register funcs 00 > Compatible Device ID: PNP80d6 (d680d041) ^^^^^^^^^^^^^^^^^^ > I/O Range 0x220 .. 0x3e0, alignment 0x20, len 0x20 > [not 16-bit addr] > IRQ: 5 10 11 12 15 IRQ: High true edge sensitive Hmm. We check for that specific compatable pnpid, it should have matched the if_ed driver. However, can you try a couple of things please? First, try this patch and see if it makes any difference: Index: if_ed_isa.c =================================================================== RCS file: /home/ncvs/src/sys/dev/ed/if_ed_isa.c,v retrieving revision 1.5 diff -u -r1.5 if_ed_isa.c --- if_ed_isa.c 1999/11/20 09:28:01 1.5 +++ if_ed_isa.c 2000/04/08 20:41:41 @@ -58,6 +58,7 @@ { 0x19808c4a, NULL }, /* RTL8019 */ { 0x0090252a, NULL }, /* JQE9000 */ { 0x0020832e, NULL }, /* KTC2000 */ + { 0x0115180e, NULL }, /* CPX1501 */ { 0, NULL } }; cd to /sys/dev/ed and apply it with patch and reconfigure/rebuild a kernel and reboot. If this makes a difference, then we have a bug in our compatable device matching code. Can you please check your kernel config file? You should be able to have 'device ed' in there with no 'at isa? port ...' or anything like that. Also, if it's still not working, please try a 'boot -v' and see if the if_ed driver prints any clues about resource conflicts or reasons for the probe failure. Cheers, -Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Apr 8 14:40: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DC34237BC92 for ; Sat, 8 Apr 2000 14:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA77999; Sat, 8 Apr 2000 14:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DE2F137B544 for ; Sat, 8 Apr 2000 14:31:31 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA77242; Sat, 8 Apr 2000 14:31:30 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004082131.OAA77242@freefall.freebsd.org> Date: Sat, 8 Apr 2000 14:31:30 -0700 (PDT) From: simon@lok.net To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/17868: no more buffers / can't allocate llinfo when running gated Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17868 >Category: kern >Synopsis: no more buffers / can't allocate llinfo when running gated >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Apr 8 14:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Simon Lok >Release: RELEASE 3.4 >Organization: INW >Environment: FreeBSD digex-gw.name.space 3.4-RELEAE FreeBSD 3.4-RELEASE #1 Sat Apr 8 18:38:09 EDT 2000 root@digex-gw.name.space:/usr/src/sys/compile/ROUTER >Description: This problem occurs when running gated with a full routing table. After 20 minutes or so, when the routing table is just about done downloading (75K routes nowadays), the system begins to complain about "no more buffers." A few minutes after that, the system starts complaining "arpresolve: cannot allocate llinfo". In order to attempt to fix this, I recompiled the kernel with MAXUSERS 256 and NMBCLUSTERS 4096. (The machine has 128 MB of RAM). That didn't help. I looked on newsgroups, and there were some other people reporting this problem, but no solutions. I am wondering if there is some kind of hard limit to the size of the routing table or something like that. >How-To-Repeat: Setup a machine, compile and install gated. (www.gated.org). Set the gated configuration to import all routes... point it at your upstream (tell them to let you download all routes). Run gated. Wait 20 minutes. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Apr 8 16:44: 0 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 311A737B5D3; Sat, 8 Apr 2000 16:43:55 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: (from murray@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA93387; Sat, 8 Apr 2000 16:43:55 -0700 (PDT) (envelope-from murray@FreeBSD.org) Date: Sat, 8 Apr 2000 16:43:55 -0700 (PDT) From: Message-Id: <200004082343.QAA93387@freefall.freebsd.org> To: alexk@east.ru, murray@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/16325: /stand/sysinstall writes invalid variable into /etc/rc.conf Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: /stand/sysinstall writes invalid variable into /etc/rc.conf State-Changed-From-To: open->closed State-Changed-By: murray State-Changed-When: Sat Apr 8 16:43:27 PDT 2000 State-Changed-Why: Jordan fixed this in September 1999. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Apr 8 18:20: 8 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D432037B5E9 for ; Sat, 8 Apr 2000 18:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA01606; Sat, 8 Apr 2000 18:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6ABEB37B5C0 for ; Sat, 8 Apr 2000 18:11:39 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA00797; Sat, 8 Apr 2000 18:11:39 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004090111.SAA00797@freefall.freebsd.org> Date: Sat, 8 Apr 2000 18:11:39 -0700 (PDT) From: fbibsd@yahoo.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/17870: 4.0-release consistently crashes a couple seconds into the MFSROOT floppy boot process (kern.flp seems OK) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17870 >Category: kern >Synopsis: 4.0-release consistently crashes a couple seconds into the MFSROOT floppy boot process (kern.flp seems OK) >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Apr 8 18:20:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: fbibsd >Release: 4.0-Release CDROM set >Organization: n/a >Environment: System crashes during floppy installation while MFSROOT diskette is starting its process, so no uname -a output is yet available. >Description: Summary: 4.0-Release consistently crashes a couple seconds into the floppy boot of MFSROOT diskette. * Booting not recognized from CDROM #1 (presumably a local BIOS limitation, though I seem to recall that 3.0 could CD boot though then later releases don't, but this isn't the issue) * So: 'dd' used to make /floppies/kern.flp and /floppies/mfsroot.flp from 4.0 release CD set. * kern.flp boots normally and prompts for mfsroot.flp * mfsroot.flp inserted, pressed, system crashes within a few seconds (details/log below) * Problem is repeatable after cold boot / reset; first warm boot retry gave a crash register dump (not inspected); second retry (cold boot) made the system reboot shortly after MFSROOT disk usage started; third retry (cold boot) gave a somewhat differing register dump as that reported below. * floppies were first made via fdimage, then remade with dd after the first failure, so a floppy disk image error is probably not the cause of the floppy boot failures. Motherboard: FIC PA-2011 (VIA VP2 chipset) BIOS: AMI (C) 1996 626CC12 CPU: AMD K6; 233MHz SDRAM: 128 MBy in one DIMM Video: ATI MACH64 SCSI: Diamond Fireport 40UW (NCR 875 type chip) Ethernet: WD 3c905TX-B 10/100 parallel tasking, connected to 100Mbit hub port Sound: SoundBlaster 32 PnP ISA USB devices: HUB, Qtronix trackball Auto-Detecting Primary Master: IDE Hard Disk Auto-Detecting Secondary Master: ATAPI CDROM Auto-Detecting Secondary Slave: Not Detected {None} Primary Master: FA570480 Maxtor 91741U4 Ultra DMA Mode-2 S.M.A.R.T capable and status OK {17 GBy, non UDMA cable, PIO 4 selected in BIOS} Secondary Master: 1R10 Toshiba DVD-ROM SD-M1212 {non UDMA cable, PIO 4 selected in BIOS} Primary Slave: None Secondary Slave: None PCI System BIOS revision 2.10 detected. 51-0606-000000-00111111-071595-VP2-PA2011-T99-F Floppy Drive A: 1.44MB 3.5" Floppy Drive B: None Serial Ports: 3f8 Parallel Ports: 378 External Cache: 512kB, Enabled AMIBIOS Date: 7/15/95 Power Management: Disabled Processor Clock: 233 MHz Display Type: EGA/VGA Hard Disks Cyl Head Sector Size LBA-Mode 32-bit-mode block-mode pio-mode Pri Master 16383 16 63 8064MB LBA On 16Sec 4 Sec Master CDROM 4 Plug And Play ISA Devices: Creative SB32 Pnp PCI Devices: Onboard PCI USB Controller Onboard PCI IDE Controller Slot 1: SCSI, IRQ 10 Slot 2: Ethernet, IRQ 9 Slot 3: VGA Bank 0-1 DRAM type: SDRAM Bank 2-3 DRAM type: None Bank 4-5 DRAM type: None ---------------------------------------------------------------------- {FreeBSD 4.0 Release CDROM set commences booting kern.flp} /boot.config: -P Keyboard: yes BTX loader 1.00 BTX version is 1.01 Console: internal video/keyboard BIOS drive A: is disk0 BIOS drive C: is disk1 BIOS 639kB/130048kB available memory FreeBSD/i386 bootstrap loader, Revision 0.7 (root@monster.cdrom.com, Mon Mar 20 21:05:31 GMT 2000) /kernel text=0x1d581e data=0x24c60+0x1a718 | Please insert MFS root floppy and press enter: [MFS root diskette inserted, ENTER pressed, then a couple seconds after MFSROOT diskette use begins:] - int=00000006 err=00000000 efl=00010202 eip=00001b68 eax=0000005c ebx=0002eab4 ecx=00000003 edx=000944c4 esi=0002e9dc edi=00001000 ebp=00094498 esp=0009447c cs=002b ds=0033 es=0033 fs=0033 gs=0033 ss=0033 cs:eip=ff bf a5 bb 8c f5 fd ff-6b 9f 64 63 5d 7f 2b 49 ss:esp=08 30 01 00 5c 00 00 00-b4 ea 02 00 c8 44 09 00 System halted ---------------------------------------------------------------------- >How-To-Repeat: Make kern.flp and mfsroot.flp from 4.0 release CD set Insert kern.flp boot from kern.flp, until it requests mfsroot floppy insert mfsroot floppy hit enter system will crash with register dump or reboot within a few seconds >Fix: no fix discovered. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Apr 8 20:10: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DFBDE37B606 for ; Sat, 8 Apr 2000 20:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA10168; Sat, 8 Apr 2000 20:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 8 Apr 2000 20:10:02 -0700 (PDT) Message-Id: <200004090310.UAA10168@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Bill Fenner Subject: Re: bin/3170: vi freaks and dump core if user doesn't exist Reply-To: Bill Fenner Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/3170; it has been noted by GNATS. From: Bill Fenner To: dhagan@cs.vt.edu Cc: freebsd-gnats-submit@freebsd.org Subject: Re: bin/3170: vi freaks and dump core if user doesn't exist Date: Sat, 8 Apr 2000 20:08:08 -0700 I'm able to replicate it using the same ol' steps on a month-old 4.0-CURRENT: 1. log in as user foo 2. vi a file 3. ^Z vi 4. su 5. vipw, change user foo's uid (or delete user foo) 6. suspend the su 7. fg the vi 8. make a change; vi says: +=+=+=+=+=+=+=+ Information on user id 1000 not found. Modifications not recoverable if the session fails Segmentation fault (core dumped) (which is not surprising, since vi hasn't changed since 1996) Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Apr 8 20:30: 8 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B84E537B74B for ; Sat, 8 Apr 2000 20:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA11906; Sat, 8 Apr 2000 20:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 99FB037B68C for ; Sat, 8 Apr 2000 20:28:07 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA11734; Sat, 8 Apr 2000 20:28:07 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004090328.UAA11734@freefall.freebsd.org> Date: Sat, 8 Apr 2000 20:28:07 -0700 (PDT) From: jay.krell@cornell.edu To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/17871: starting to accumulate undeletable directories Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17871 >Category: kern >Synopsis: starting to accumulate undeletable directories >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Apr 8 20:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Jay Krell >Release: 4.0-Release from CD >Organization: Jay Krell >Environment: FreeBSD jayk-bsd1 4.0-RELEASE FreeBSD 4.0-RELEASE #0: Sat Apr 8 01:00:33 PDT 20 00 jayk@jayk-bsd1:/usr/src/sys/compile/JAYK1 i386 >Description: I'll be entering a bug on this. Has anyone seen this? I'm starting to get undeleteable files. They all have inconsistencies in the ls output about how many entries they have. One of these cases I might be able to reproduce from a .tar file I have. jayk-bsd1# ls -l drwxr-xr-x 5 jayk jayk 512 Apr 8 13:15 delete drwxr-xr-x 3 jayk jayk 512 Apr 8 20:18 delete2 drwxr-xr-x 3 jayk jayk 512 Apr 8 20:21 delete3 jayk-bsd1# ls del* delete: disks delete2: src delete3: jayk-bsd1# ls -l del* delete: ls: disks: Bad file descriptor delete2: ls: src: Bad file descriptor delete3: jayk-bsd1# rm -rf del* rm: delete/disks: Bad file descriptor rm: delete: Directory not empty rm: delete2/src: Bad file descriptor rm: delete2: Directory not empty rm: delete3: Directory not empty jayk-bsd1# chflags -R 0 del* chflags: delete/disks: Bad file descriptor chflags: delete2/src: Bad file descriptor - Jay >How-To-Repeat: I don't know how to create these directores. src is from /usr/ports/lang/modula-3-lib disks is from /home/ncvs /home/ncvs was created from a .tar, I'll try to repro it >Fix: Unknown >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Apr 8 20:30:10 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6E5F937B530 for ; Sat, 8 Apr 2000 20:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA11915; Sat, 8 Apr 2000 20:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from dustdevil.waterspout.com (dustdevil.waterspout.com [208.13.60.151]) by hub.freebsd.org (Postfix) with ESMTP id DD95C37B628 for ; Sat, 8 Apr 2000 20:29:28 -0700 (PDT) (envelope-from csg@dustdevil.waterspout.com) Received: (from csg@localhost) by dustdevil.waterspout.com (8.9.3/8.9.3) id WAA05395; Sat, 8 Apr 2000 22:34:40 -0500 (EST) (envelope-from csg) Message-Id: <200004090334.WAA05395@dustdevil.waterspout.com> Date: Sat, 8 Apr 2000 22:34:40 -0500 (EST) From: "C. Stephen Gunn" Reply-To: csg@dustdevil.waterspout.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/17872: arpintr() fix followup Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17872 >Category: kern >Synopsis: arpintr() fix followup >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Apr 8 20:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: C. Stephen Gunn >Release: FreeBSD 4.0-STABLE i386 >Organization: WaterSpout Communications, Inc. >Environment: FreeBSD 4.0-STABLE, FreeBSD 5-CURRENT >Description: My previous patch to arpintr() does too much work. I incorrectly assumed that since it was wrong to check m->m_len for the length of the entire mbuf chain, (completely forgetting m->mh_len), that I had to do all the work myself. I even made a comment about how silly it was to do all the work with "wanna implement m_size?" >How-To-Repeat: There's no crash, just a code cleanup. >Fix: Apply this patch to remove the for-loop calculating the length of the mbuf chain, and just trust m->mh_len. Index: if_ether.c =================================================================== RCS file: /project/cvs/FreeBSD/src/sys/netinet/if_ether.c,v retrieving revision 1.68 diff -u -r1.68 if_ether.c --- if_ether.c 2000/03/29 07:50:39 1.68 +++ if_ether.c 2000/04/09 03:28:43 @@ -434,7 +434,7 @@ { register struct mbuf *m, *m0; register struct arphdr *ar; - int s, ml; + int s; while (arpintrq.ifq_head) { s = splimp(); @@ -442,7 +442,14 @@ splx(s); if (m == 0 || (m->m_flags & M_PKTHDR) == 0) panic("arpintr"); - + + if (m->mh_len < sizeof(struct arphdr) + 2 * ar->ar_hln + + 2 * ar->ar_pln) { + log(LOG_ERR, "arp: runt packet\n"); + m_freem(m); + continue; + } + if (m->m_len < sizeof(struct arphdr) && ((m = m_pullup(m, sizeof(struct arphdr))) == NULL)) { log(LOG_ERR, "arp: runt packet -- m_pullup failed\n"); @@ -455,20 +462,6 @@ log(LOG_ERR, "arp: unknown hardware address format (0x%2D)\n", (unsigned char *)&ar->ar_hrd, ""); - m_freem(m); - continue; - } - - m0 = m; - ml = 0; - while (m0 != NULL) { - ml += m0->m_len; /* wanna implement m_size?? */ - m0 = m0->m_next; - } - - if (ml < sizeof(struct arphdr) + 2 * ar->ar_hln - + 2 * ar->ar_pln) { - log(LOG_ERR, "arp: runt packet\n"); m_freem(m); continue; } >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Apr 8 20:50: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D537C37B72C for ; Sat, 8 Apr 2000 20:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA13217; Sat, 8 Apr 2000 20:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 8 Apr 2000 20:50:03 -0700 (PDT) Message-Id: <200004090350.UAA13217@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Jay Krell" Subject: kern/17636: FreeBSD 4 uses network card driver dc where de is needed Reply-To: "Jay Krell" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/17636; it has been noted by GNATS. From: "Jay Krell" To: Cc: Subject: kern/17636: FreeBSD 4 uses network card driver dc where de is needed Date: Sat, 8 Apr 2000 20:46:40 -0700 This sounds like it might be the same as kern/17829 : The dc driver is seriously broken To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Apr 8 21:43: 4 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from dustdevil.waterspout.com (dustdevil.waterspout.com [208.13.60.151]) by hub.freebsd.org (Postfix) with ESMTP id 8563037B530; Sat, 8 Apr 2000 21:43:01 -0700 (PDT) (envelope-from csg@waterspout.com) Received: from waterspout.com (csg@localhost [127.0.0.1]) by dustdevil.waterspout.com (8.9.3/8.9.3) with ESMTP id XAA16277; Sat, 8 Apr 2000 23:48:13 -0500 (EST) (envelope-from csg@waterspout.com) Message-Id: <200004090448.XAA16277@dustdevil.waterspout.com> To: freebsd-bugs@FreeBSD.org Cc: wes@FreeBSD.org Subject: Re: kern/17872: arpintr() fix followup In-Reply-To: Your message of "Sat, 08 Apr 2000 20:30:01 MST." <200004090330.UAA11911@freefall.freebsd.org> From: csg@waterspout.com (C. Stephen Gunn) MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <16234.955255692.1@waterspout.com> Date: Sat, 08 Apr 2000 23:48:12 -0500 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Sorry for the broken patch before. This one should work much better: It's relative to 4.0-STABLE from today. Index: if_ether.c =================================================================== RCS file: /project/cvs/FreeBSD/src/sys/netinet/if_ether.c,v retrieving revision 1.64.2.2 diff -u -b -r1.64.2.2 if_ether.c --- if_ether.c 2000/03/29 07:52:50 1.64.2.2 +++ if_ether.c 2000/04/09 04:22:28 @@ -430,9 +430,9 @@ static void arpintr() { - register struct mbuf *m, *m0; + register struct mbuf *m; register struct arphdr *ar; - int s, ml; + int s; while (arpintrq.ifq_head) { s = splimp(); @@ -457,14 +457,7 @@ continue; } - m0 = m; - ml = 0; - while (m0 != NULL) { - ml += m0->m_len; /* wanna implement m_size?? */ - m0 = m0->m_next; - } - - if (ml < sizeof(struct arphdr) + 2 * ar->ar_hln + if (m->m_pkthdr.len < sizeof(struct arphdr) + 2 * ar->ar_hln + 2 * ar->ar_pln) { log(LOG_ERR, "arp: runt packet\n"); m_freem(m); To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Apr 8 22:20: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9581E37B6F5 for ; Sat, 8 Apr 2000 22:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA19884; Sat, 8 Apr 2000 22:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 276FD37B553 for ; Sat, 8 Apr 2000 22:15:11 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA19417; Sat, 8 Apr 2000 22:15:12 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004090515.WAA19417@freefall.freebsd.org> Date: Sat, 8 Apr 2000 22:15:12 -0700 (PDT) From: greg@greg.rim.or.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/17873: Can not routing IPV6 packet with tun-device Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17873 >Category: kern >Synopsis: Can not routing IPV6 packet with tun-device >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Apr 8 22:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Kensaku Masuda >Release: FreeBSD 4.0-STABLE i386 >Organization: >Environment: Enable INET6 And setting up INET6 routing. >Description: V6 enviroment was completed. And after setting up tun device for V6. creating a static routeing information by od -h /dev/tun0 & route add -inet6 default -interface tun0 And execute ping6 -I tun0 fe80::1 At normal case. V6 packet was routed into interface tun0. But packet was rejected before tun device. So problem dose exist on initializing routine. if tun device is staticaly network interface, Seem to be no problem. But it is not. Must execute a initializing routine "in6_ifattach" directly. >How-To-Repeat: Open and configure some tun for v6. And send some v6 packet which is routed into tun device. >Fix: This is a diffs for net/if_tun.c begin 644 if_tun.c.diff M'XL(`-:S[3@"`VU274_C,!!\;G[%"EXH^702A6M[5$5W5*I42@5!]VB%Q*:6 M2A)BI[J>X+^SCM42X*3(BF=F=W8G<5T7!*>J+;W_8VTV]X4^4:UL9QA)9V M'#LDZ)Q/!2\8A\7J.NV7H8?V\45I^K&R$-QR]2Q'?=*;[%"08$5"!<^4RO*- MKOVL\74\^YI)0YFVGWW]QYIWIE]QD^PN:PZ[$#)R1IAB&#GX*?0V`\%K=XI" M4>5J"Y>`!8)WETF/K5I5M\K0YKW/\FWV))%_ MKN[3R=]EKB()-0/<8Z7#L0X#/\F,7&CIAU7_Y[F=+5PW+I@!3_ @6,7/6OS=U'"HS0NVRelease-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Apr 8 23: 0: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 08C6E37B5C9 for ; Sat, 8 Apr 2000 23:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA22689; Sat, 8 Apr 2000 23:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C12B337B551 for ; Sat, 8 Apr 2000 22:53:33 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA22169; Sat, 8 Apr 2000 22:53:32 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004090553.WAA22169@freefall.freebsd.org> Date: Sat, 8 Apr 2000 22:53:32 -0700 (PDT) From: locke@mcs.net To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/17874: Watchdog Timeout in vr device Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17874 >Category: kern >Synopsis: Watchdog Timeout in vr device >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Apr 8 23:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Peter Johnson >Release: 4.0-STABLE >Organization: >Environment: FreeBSD matrix.bilogic.org 4.0-STABLE FreeBSD 4.0-STABLE #13: Fri Mar 31 02:48:21 CST 2000 >Description: After upgrading to 4.0 from 3.4, I periodically see my network connectivity completely die for about 30 seconds or so (can't ping anything on the network, nothing can ping the machine), and I get a "vr0: watchdog timeout" message in my system log. Several times the disconnection has been quite lengthy (30 secs to 2 minutes) and I get multiple (5-20) watchdog timeout messages in my system log. The connection seems to restore itself after a certain time. My network card is a D-Link 530TX. I never had this problem under 3.4, so I'm assuming something with the new miibus-based drivers is causing this problem. The problem is very intermittant; I first noticed it when trying to transfer large amounts of data over the link, but now it seems to occur even when moderate amounts of data are being transferred. Other (possibly) relevant info: the card is connected to a 10/100 switch; the link light does not go off on the switch when the problem occurs. The IP is configured via DHCP. The traffic over the link is almost exclusively ftp and Samba traffic; the problem has occurred with each one seperately. Although I have not tried to switch cards, the problem first started occurring after I upgraded to 4.0. >How-To-Repeat: Moderate to heavy traffic load on a card using a vr network driver. Hard to repeat because of its unpredictability. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message