From owner-freebsd-bugs Sun Sep 26 11:10:10 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6A55E15339 for ; Sun, 26 Sep 1999 11:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA01072; Sun, 26 Sep 1999 11:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.ppp.net (mail.ppp.net [194.64.12.35]) by hub.freebsd.org (Postfix) with ESMTP id E69C315339 for ; Sun, 26 Sep 1999 05:02:03 -0700 (PDT) (envelope-from ernie!bert.kts.org!hm@ppp.net) Received: from casparc.ppp.net (casparc2.ppp.net [194.64.12.42]) by mail.ppp.net (8.8.8/8.8.8) with SMTP id OAA02579 for ; Sun, 26 Sep 1999 14:02:02 +0200 Received: from ernie by casparc.ppp.net with uucp (Smail3.1.28.1 #1) id m11VD0D-002ZjZC; Sun, 26 Sep 99 13:02 MET Received: from bert.kts.org([194.55.156.2]) (2829 bytes) by ernie.kts.org via sendmail with P:smtp/R:smart_host/T:uux (sender: ) id for ; Sun, 26 Sep 1999 13:38:40 +0200 (CEST) (Smail-3.2.0.103 1998-Oct-9 #5 built 1999-Apr-19) Received: from localhost (2331 bytes) by bert.kts.org via sendmail with P:stdio/R:smart_host/T:smtp (sender: ) (ident using unix) id for ; Sun, 26 Sep 1999 13:44:26 +0200 (CEST) (Smail-3.2.0.103 1998-Oct-9 #4 built 1998-Dec-26) Message-Id: Date: Sun, 26 Sep 1999 13:44:26 +0200 (CEST) From: hm@kts.org Reply-To: hm@kts.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: misc/13978: (n)curses bug in FreeBSD-current Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13978 >Category: misc >Synopsis: a write to last column bug appears since ncurses conversion >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 Sep 26 11:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Hellmuth Michaelis >Release: FreeBSD 4.0-CURRENT i386 >Organization: Kitchen Table Systems >Environment: FreeBSD ernie.kts.org 3.2-STABLE FreeBSD 3.2-STABLE #5: Thu Sep 16 16:44:33 CEST 1999 and FreeBSD bert.kts.org 4.0-CURRENT FreeBSD 4.0-CURRENT #0: Sat Sep 25 15:53:18 CEST 1999 >Description: In contrast to FreeBSD 3.2-Stable, it is no longer possible in a curses window (with scrollok enabled - if that matters) to write to the last column without causing a newline to occur. Running the program below compiled on 3.2 displaying in an xterm on a 4.0 machine gives one output line beneath the other without blank lines between output lines. Running the same program compiled on 4.0 displaying in the same xterm on a 4.0 machine gives a blank line after each line of output from the program. >How-To-Repeat: Compile the program on a 3.2-stable system and on a 4.0 current system (later or equal to September 25, 1999) with: cc test.c -lcurses and run each compilation result in a standard xterm (my termcap entry used was "xterms|vs100s" on 4.0 current) as described above in the Description section. The effect is also visible on the console using the pcvt driver in 3.2 and 4.0. #include #define MAXJ 10 main() { WINDOW *windowp; int i, j; initscr(); noecho(); raw(); if((windowp = newwin(10, COLS, 5, 0)) == NULL) { endwin(); fprintf(stderr, "ERROR, curses init window\n"); exit(1); } scrollok(windowp, 1); wmove(windowp, 0, 0); for(j=0; j < MAXJ; j++) { char buf[] = "BUFFER"; char what[] = "WHAT"; char msg[] = ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>"; wprintw(windowp, "%d %s %s %-.*s\n", j, buf, what, COLS-((strlen(buf))+(strlen(what))+4), msg); wrefresh(windowp); sleep(1); } endwin(); } >Fix: None. >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 Sep 26 11:10:18 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B2A2C1534D for ; Sun, 26 Sep 1999 11:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA01081; Sun, 26 Sep 1999 11:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from pawn.primelocation.net (pawn.primelocation.net [205.161.238.235]) by hub.freebsd.org (Postfix) with ESMTP id 2B05415092 for ; Sun, 26 Sep 1999 06:07:35 -0700 (PDT) (envelope-from jedgar@pawn.primelocation.net) Received: by pawn.primelocation.net (Postfix, from userid 1003) id 029C5F80F; Sun, 26 Sep 1999 09:07:34 -0400 (EDT) Message-Id: <19990926130734.029C5F80F@pawn.primelocation.net> Date: Sun, 26 Sep 1999 09:07:34 -0400 (EDT) From: jedgar@fxp.org Reply-To: jedgar@fxp.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/13979: [PATCH] add serial number to IDE HD probe output for boot -v (like SCSI) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13979 >Category: kern >Synopsis: [PATCH] add serial number to IDE HD probe output for boot -v (like SCSI) >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 Sep 26 11:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris D. Faulhaber >Release: FreeBSD 4.0-CURRENT i386 >Organization: Not in this lifetime >Environment: FreeBSD earth.fxp 4.0-CURRENT FreeBSD 4.0-CURRENT #2: Sun Sep 26 08:51:04 EDT 1999 >Description: Patch to add serial number to IDE HD probe output for verbose boot (like SCSI does): wdc0: unit 0 (wd0): , DMA, 32-bit, multi-block-16 wd0: 4125MB (8448300 sectors), 8940 cyls, 15 heads, 63 S/T, 512 B/S wd0: Serial Number 10012628 (patch should apply to -stable also with a small offset) >How-To-Repeat: boot -v ... no Serial Numbers are shown for IDE hard drives >Fix: Index: src/sys/i386/isa/wd.c =================================================================== RCS file: /home/ncvs/src/sys/i386/isa/wd.c,v retrieving revision 1.210 diff -u -r1.210 wd.c --- wd.c 1999/09/25 18:24:11 1.210 +++ wd.c 1999/09/26 12:55:05 @@ -495,6 +495,8 @@ if (bootverbose) { wp = &du->dk_params; + printf("wd%d: Serial Number %s\n", + lunit, wp->wdp_serial); printf( "wd%d: ATA INQUIRE valid = %04x, " "dmamword = %04x, apio = %04x, " "udma = %04x\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 Sun Sep 26 11:10:22 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1544315356 for ; Sun, 26 Sep 1999 11:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA01090; Sun, 26 Sep 1999 11:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from shell3.ba.best.com (shell3.ba.best.com [206.184.139.134]) by hub.freebsd.org (Postfix) with ESMTP id 9B13A14C97 for ; Sun, 26 Sep 1999 07:27:41 -0700 (PDT) (envelope-from webbhead@shell3.ba.best.com) Received: (from webbhead@localhost) by shell3.ba.best.com (8.9.3/8.9.2/best.sh) id HAA11140; Sun, 26 Sep 1999 07:26:48 -0700 (PDT) Message-Id: <199909261426.HAA11140@shell3.ba.best.com> Date: Sun, 26 Sep 1999 07:26:48 -0700 (PDT) From: Robert Webb Reply-To: Robert Webb To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/13980: Parameter expansion pattern removal bug in sh Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13980 >Category: bin >Synopsis: Parameter expansion pattern removal bug in sh >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 Sep 26 11:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Robert Webb >Release: FreeBSD 2.2.8-STABLE i386 >Organization: RWC >Environment: FreeBSD 2.2.8-STABLE (BEST) #104: Sat Sep 4 16:02:26 PDT 1999 /kernel: $Id: if_xl.c,v 1.5.2.17 1999/02/12 15:57:28 wpaul Exp $ /bin/sh: $Id: alias.c,v 1.4.2.2 1998/11/03 15:57:34 cracauer Exp $ $Id: cd.c,v 1.6.2.2 1998/11/03 15:57:35 cracauer Exp $ $Id: error.c,v 1.5.2.4 1998/11/03 15:57:35 cracauer Exp $ $Id: eval.c,v 1.7.2.5 1998/11/03 15:57:35 cracauer Exp $ $Id: exec.c,v 1.6.2.2 1998/11/03 15:57:35 cracauer Exp $ $Id: expand.c,v 1.11.2.6 1998/11/03 15:57:35 cracauer Exp $ $Id: histedit.c,v 1.6.2.2 1998/11/03 15:57:35 cracauer Exp $ $Id: input.c,v 1.6.2.2 1998/11/03 15:57:35 cracauer Exp $ $Id: jobs.c,v 1.8.2.7 1998/11/03 15:57:35 cracauer Exp $ $Id: mail.c,v 1.3.2.2 1998/11/03 15:57:35 cracauer Exp $ $Id: main.c,v 1.9.2.3 1998/11/03 15:57:35 cracauer Exp $ $Id: memalloc.c,v 1.4.2.3 1998/11/03 15:57:36 cracauer Exp $ $Id: miscbltin.c,v 1.8.2.4 1998/11/03 15:57:36 cracauer Exp $ $Id: mystring.c,v 1.4.2.2 1998/11/03 15:57:36 cracauer Exp $ $Id: options.c,v 1.8.2.3 1998/11/03 15:57:36 cracauer Exp $ $Id: output.c,v 1.4.2.2 1998/11/03 15:57:36 cracauer Exp $ $Id: parser.c,v 1.16.2.2 1998/11/03 15:57:36 cracauer Exp $ $Id: redir.c,v 1.5.2.2 1998/11/03 15:57:36 cracauer Exp $ $Id: show.c,v 1.4.2.2 1998/11/03 15:57:37 cracauer Exp $ $Id: trap.c,v 1.4.2.7 1998/11/03 15:57:37 cracauer Exp $ $Id: var.c,v 1.6.2.2 1998/11/03 15:57:37 cracauer Exp $ $Id: arith.y,v 1.3.2.3 1998/11/03 15:57:35 cracauer Exp $ $Id: arith_lex.l,v 1.5.2.3 1998/11/03 15:57:35 cracauer Exp $ $Id: syscall.S,v 1.3 1996/05/05 07:56:21 peter Exp $ $Id: _setjmp.S,v 1.4.2.1 1998/11/04 08:42:01 tg Exp $ $Id: pipe.S,v 1.5 1996/08/20 08:20:03 julian Exp $ $Id: fork.S,v 1.5 1996/08/20 08:19:58 julian Exp $ $Id: setlocale.c,v 1.8.2.9 1998/04/30 16:50:34 ache Exp $ $Id: yplib.c,v 1.24.2.3 1997/04/10 20:29:35 wpaul Exp $ $Id: xdryp.c,v 1.6 1996/06/03 13:16:53 jraynard Exp $ $Id: index.S,v 1.2 1995/01/23 01:28:56 davidg Exp $ $Id: bcmp.S,v 1.2 1995/01/23 01:28:47 davidg Exp $ $Id: sigsuspend.S,v 1.4 1996/05/05 07:56:20 peter Exp $ $Id: strncmp.S,v 1.3 1995/01/23 01:29:21 davidg Exp $ $Id: strcpy.S,v 1.2 1995/01/23 01:29:17 davidg Exp $ $Id: strcmp.S,v 1.2 1995/01/23 01:29:14 davidg Exp $ $Id: strchr.S,v 1.2 1995/01/23 01:29:12 davidg Exp $ $Id: strcat.S,v 1.2 1995/01/23 01:29:09 davidg Exp $ $NetBSD: bcopy.S,v 1.6 1996/11/12 00:50:06 jtc Exp $ $Id: bzero.S,v 1.2 1995/01/23 01:28:52 davidg Exp $ $Id: isinf.c,v 1.3 1996/07/12 18:54:26 jkh Exp $ $Id: memchr.S,v 1.5 1995/01/23 01:28:58 davidg Exp $ $NetBSD: bcopy.S,v 1.6 1996/11/12 00:50:06 jtc Exp $ $Id: sigprocmask.S,v 1.4 1996/05/05 07:56:19 peter Exp $ $Id: brk.S,v 1.4 1996/06/25 18:54:42 bde Exp $ $Id: memset.S,v 1.2 1995/01/23 01:29:04 davidg Exp $ $NetBSD: bcopy.S,v 1.6 1996/11/12 00:50:06 jtc Exp $ $Id: sbrk.S,v 1.4 1996/05/05 07:56:16 peter Exp $ $Id: cerror.S,v 1.6.2.1 1998/11/04 08:42:01 tg Exp $ $Id: asprintf.c,v 1.1 1996/05/27 10:49:42 peter Exp $ $Id: vasprintf.c,v 1.3.4.1 1997/07/11 14:32:11 peter Exp $ $Id: yp.x,v 1.5 1996/02/26 02:22:53 wpaul Exp $ >Description: The expansion of a Bourne shell parameter with a pattern to be removed produces garbage characters in place of the removed pattern when the pattern includes a slash, and the whole expansion string is quoted. >How-To-Repeat: Run this script: #!/bin/sh f=/tmp/user/wpage.html echo '$f='$f echo '${f%.*}='${f%.*} echo '${f%/*}='${f%/*} echo '${f%"/wpage.html"}='${f%"/wpage.html"} echo '' echo '"$f"='"$f" echo '"${f%.*}"='"${f%.*}" echo '"${f%/*}"='"${f%/*}" echo '"${f%"/wpage.html"}"='"${f%"/wpage.html"}" The last two echos output garbage in place of the trailing pattern which was removed. >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 Sun Sep 26 11:30: 7 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2236514C46 for ; Sun, 26 Sep 1999 11:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA02799; Sun, 26 Sep 1999 11:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from cantor.boolean.net (cantor.boolean.net [209.133.111.73]) by hub.freebsd.org (Postfix) with ESMTP id 2C30415ABD for ; Sun, 26 Sep 1999 11:22:42 -0700 (PDT) (envelope-from kurt@cantor.boolean.net) Received: (from kurt@localhost) by cantor.boolean.net (8.9.3/8.9.1) id SAA38299; Sun, 26 Sep 1999 18:22:41 GMT (envelope-from kurt) Message-Id: <199909261822.SAA38299@cantor.boolean.net> Date: Sun, 26 Sep 1999 18:22:41 GMT From: Kurt Zeilenga Reply-To: kurt@boolean.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/13983: PnP detection of USR3020 modem Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13983 >Category: kern >Synopsis: PnP detection of USR3020 modem >Confidential: yes >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Sep 26 11:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Kurt Zeilenga >Release: FreeBSD 4.0-Currenct i386 >Organization: OpenLDAP >Environment: # uname -a FreeBSD boole.boolean.net 4.0-CURRENT FreeBSD 4.0-CURRENT #14: Sun Sep 26 11:07:57 PDT 1999 kurt@boole.boolean.net:/work/src/sys/compile/BOOLEAN-SMP i386 # pnpinfo -v Checking for Plug-n-Play devices... Card assigned CSN #1 Vendor ID USR2030 (0x30207256), Serial Number 0xadacaa93 PnP Version 1.0, Vendor Version 0 Device Description: U.S.Robotics Inc. Sportster 56000 FAX Internal Logical Device ID: USR2030 0x30207256 #0 TAG Start DF Good Configuration I/O Range 0x2f8 .. 0x2f8, alignment 0x8, len 0x8 [16-bit addr] IRQ: 3 5 7 - only one type (true/edge) TAG Start DF Acceptable Configuration I/O Range 0x3f8 .. 0x3f8, alignment 0x8, len 0x8 [16-bit addr] IRQ: 2 3 4 5 7 - only one type (true/edge) TAG Start DF Acceptable Configuration I/O Range 0x3e8 .. 0x3e8, alignment 0x8, len 0x8 [16-bit addr] IRQ: 2 3 4 5 7 - only one type (true/edge) TAG Start DF Acceptable Configuration I/O Range 0x2e8 .. 0x2e8, alignment 0x8, len 0x8 [16-bit addr] IRQ: 2 3 4 5 7 - only one type (true/edge) TAG End DF End Tag Successfully got 16 resources, 1 logical fdevs -- card select # 0x0001 CSN USR2030 (0x30207256), Serial Number 0xadacaa93 Logical device #0 IO: 0x03e8 0x03e8 0x03e8 0x03e8 0x03e8 0x03e8 0x03e8 0x03e8 IRQ 5 0 DMA 4 4 IO range check 0x00 activate 0x01 >Description: USR modem no longer detected. unknown0: at port 0x3e8-0x3ef irq 5 on isa0 >How-To-Repeat: Boot with USR3020 modem >Fix: Apply patch: sio2: at port 0x3e8-0x3ef irq 5 on isa0 sio2: type 16550A Index: dev/sio/sio.c =================================================================== RCS file: /work/CVS-Repository/src/sys/dev/sio/sio.c,v retrieving revision 1.267 diff -u -u -r1.267 sio.c --- sio.c 1999/09/25 18:23:55 1.267 +++ sio.c 1999/09/26 18:07:29 @@ -563,6 +563,7 @@ {0x1005d041, "Generic IRDA-compatible device"}, /* PNP0510 */ {0x1105d041, "Generic IRDA-compatible device"}, /* PNP0511 */ {0x31307256, "USR3031"}, /* USR3031 */ + {0x30207256, "USR3020"}, /* USR3020 */ {0} }; Index: isa/sio.c =================================================================== RCS file: /work/CVS-Repository/src/sys/isa/sio.c,v retrieving revision 1.268 diff -u -u -r1.268 sio.c --- sio.c 1999/09/25 18:24:21 1.268 +++ sio.c 1999/09/26 18:07:34 @@ -568,6 +568,7 @@ {0x1005d041, "Generic IRDA-compatible device"}, /* PNP0510 */ {0x1105d041, "Generic IRDA-compatible device"}, /* PNP0511 */ {0x31307256, "USR3031"}, /* USR3031 */ + {0x30207256, "USR3020"}, /* USR3020 */ {0} }; Index: pc98/pc98/sio.c =================================================================== RCS file: /work/CVS-Repository/src/sys/pc98/pc98/sio.c,v retrieving revision 1.108 diff -u -u -r1.108 sio.c --- sio.c 1999/09/25 18:24:36 1.108 +++ sio.c 1999/09/26 18:07:38 @@ -959,6 +959,7 @@ {0x1005d041, "Generic IRDA-compatible device"}, /* PNP0510 */ {0x1105d041, "Generic IRDA-compatible device"}, /* PNP0511 */ {0x31307256, "USR3031"}, /* USR3031 */ + {0x30207256, "USR3020"}, /* USR3020 */ {0} }; >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Sep 26 20:40: 3 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EBEB915730 for ; Sun, 26 Sep 1999 20:40:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA45992; Sun, 26 Sep 1999 20:40:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 6F11614DED; Sun, 26 Sep 1999 20:33:34 -0700 (PDT) Message-Id: <19990927033334.6F11614DED@hub.freebsd.org> Date: Sun, 26 Sep 1999 20:33:34 -0700 (PDT) From: dot@dotat.at To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: gnu/13989: SIGWINCH corrupts the display of a multiline readline prompt with invisible characters Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13989 >Category: gnu >Synopsis: SIGWINCH corrupts the display of a multiline readline prompt with invisible characters >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 Sep 26 20:40:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Tony Finch >Release: 3.3-RC-19990916 >Organization: Demon Internet >Environment: FreeBSD fanf.eng.demon.net 3.3-RC-19990916 FreeBSD 3.3-RC-19990916 #3: Thu Sep 16 03:06:33 BST 1999 root@fanf.eng.demon.net:/usr/src/sys/compile/DELL-PREC410 i386 >Description: If you are using libreadline with a multiline prompt containing invisible characters on the last line, then when the program receives SIGWINCH and redraws the last line of the prompt it outputs spurious ^A and ^B character(s). >How-To-Repeat: run bash in an xterm set PS1 to 'line one\n\[\e[1m\]line two\[\e[0m\] ' you will then have a two line prompt with invisible characters on the second line change the size of the xterm; the second line will be bracketed with a diamond-dither pair >Fix: I think the first patch is correct; the second one *might* catch more cases, but requires a bit more work at run time. --- /usr/src/contrib/libreadline/display.c.orig Mon Sep 27 04:30:07 1999 +++ /usr/src/contrib/libreadline/display.c Mon Sep 27 04:30:07 1999 @@ -1540,7 +1540,7 @@ oldp = rl_display_prompt; oldl = local_prompt; oldlprefix = local_prompt_prefix; - rl_display_prompt = ++t; + rl_display_prompt = oldl ? oldl : ++t; local_prompt = local_prompt_prefix = (char *)NULL; rl_forced_update_display (); rl_display_prompt = oldp; --- /usr/src/contrib/libreadline/display.c.orig Mon Sep 27 04:30:07 1999 +++ /usr/src/contrib/libreadline/display.c Mon Sep 27 04:30:07 1999 @@ -1540,9 +1540,10 @@ oldp = rl_display_prompt; oldl = local_prompt; oldlprefix = local_prompt_prefix; - rl_display_prompt = ++t; + rl_display_prompt = expand_prompt(++t); local_prompt = local_prompt_prefix = (char *)NULL; rl_forced_update_display (); + free(rl_display_prompt); rl_display_prompt = oldp; local_prompt = oldl; local_prompt_prefix = oldlprefix; >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 Sep 26 22:58: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5362D1510D; Sun, 26 Sep 1999 22:58:04 -0700 (PDT) (envelope-from ken@FreeBSD.org) Received: (from ken@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA55770; Sun, 26 Sep 1999 22:58:03 -0700 (PDT) (envelope-from ken@FreeBSD.org) Date: Sun, 26 Sep 1999 22:58:03 -0700 (PDT) From: Message-Id: <199909270558.WAA55770@freefall.freebsd.org> To: ken@FreeBSD.org, freebsd-bugs@FreeBSD.org, ken@FreeBSD.org Subject: Re: bin/12358: Patch: "camcontrol help" should go to stdout Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Patch: "camcontrol help" should go to stdout Responsible-Changed-From-To: freebsd-bugs->ken Responsible-Changed-By: ken Responsible-Changed-When: Sun Sep 26 22:57:42 PDT 1999 Responsible-Changed-Why: I wrote camcontrol. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Sep 26 22:58:44 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D5ED514F7D; Sun, 26 Sep 1999 22:58:42 -0700 (PDT) (envelope-from ken@FreeBSD.org) Received: (from ken@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA55962; Sun, 26 Sep 1999 22:58:42 -0700 (PDT) (envelope-from ken@FreeBSD.org) Date: Sun, 26 Sep 1999 22:58:42 -0700 (PDT) From: Message-Id: <199909270558.WAA55962@freefall.freebsd.org> To: ken@FreeBSD.org, freebsd-bugs@FreeBSD.org, ken@FreeBSD.org Subject: Re: kern/13433: 'camcontrol defects' does not work with IBM drives Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: 'camcontrol defects' does not work with IBM drives Responsible-Changed-From-To: freebsd-bugs->ken Responsible-Changed-By: ken Responsible-Changed-When: Sun Sep 26 22:58:19 PDT 1999 Responsible-Changed-Why: I'll handle this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Sep 26 23: 1:29 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 00C73151C5; Sun, 26 Sep 1999 23:01:27 -0700 (PDT) (envelope-from ken@FreeBSD.org) Received: (from ken@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA56328; Sun, 26 Sep 1999 23:01:27 -0700 (PDT) (envelope-from ken@FreeBSD.org) Date: Sun, 26 Sep 1999 23:01:27 -0700 (PDT) From: Message-Id: <199909270601.XAA56328@freefall.freebsd.org> To: sfarrell@palefire.org, ken@FreeBSD.org, freebsd-bugs@FreeBSD.org, ken@FreeBSD.org Subject: Re: kern/10537: extraneous verbose output from cam_xpt.c Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: extraneous verbose output from cam_xpt.c State-Changed-From-To: open->closed State-Changed-By: ken State-Changed-When: Sun Sep 26 23:00:29 PDT 1999 State-Changed-Why: This was changed before 3.2, and so should not be a problem in 3.2 and later releases. Responsible-Changed-From-To: freebsd-bugs->ken Responsible-Changed-By: ken Responsible-Changed-When: Sun Sep 26 23:00:29 PDT 1999 Responsible-Changed-Why: I'm closing the PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Sep 26 23:47: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8EE4914F76; Sun, 26 Sep 1999 23:47:03 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA60142; Sun, 26 Sep 1999 23:47:03 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Sun, 26 Sep 1999 23:47:03 -0700 (PDT) From: Message-Id: <199909270647.XAA60142@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, mpp@FreeBSD.org Subject: Re: conf/13916: man outputs footer only page as first page. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: man outputs footer only page as first page. Responsible-Changed-From-To: freebsd-bugs->mpp Responsible-Changed-By: sheldonh Responsible-Changed-When: Sun Sep 26 23:46:44 PDT 1999 Responsible-Changed-Why: I'm sure Mike will want to have a look at this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Sep 27 0: 0: 3 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6C3C814E27 for ; Mon, 27 Sep 1999 00:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA61601; Mon, 27 Sep 1999 00:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 27 Sep 1999 00:00:02 -0700 (PDT) Message-Id: <199909270700.AAA61601@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: gnu/13921: awk -v var=val coredump Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR gnu/13921; it has been noted by GNATS. From: Sheldon Hearn To: j_guojun@lbl.gov Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: gnu/13921: awk -v var=val coredump Date: Mon, 27 Sep 1999 08:52:16 +0200 On Thu, 23 Sep 1999 12:46:01 MST, Jin Guojun wrote: > All GNU awk on all platforms If this is a bug in gawk-3.0.4, I'd prefer to close your FreeBSD PR and leave this for the gawk maintainer. Let me know. Thanks, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Sep 27 0:15:43 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from dt014n8c.san.rr.com (dt014n8c.san.rr.com [24.30.129.140]) by hub.freebsd.org (Postfix) with ESMTP id 41B351520F for ; Mon, 27 Sep 1999 00:15:40 -0700 (PDT) (envelope-from Doug@gorean.org) Received: from gorean.org (master [10.0.0.2]) by dt014n8c.san.rr.com (8.9.3/8.8.8) with ESMTP id AAA01366; Mon, 27 Sep 1999 00:15:37 -0700 (PDT) (envelope-from Doug@gorean.org) Message-ID: <37EF1996.FE1F3A44@gorean.org> Date: Mon, 27 Sep 1999 00:15:34 -0700 From: Doug Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.61 [en] (X11; U; FreeBSD 4.0-19990918-CURRENT i386) X-Accept-Language: en MIME-Version: 1.0 To: dot@dotat.at Cc: freebsd-bugs@freebsd.org Subject: Re: gnu/13989: SIGWINCH corrupts the display of a multiline readline prompt with invisible characters References: <19990927033334.6F11614DED@hub.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 dot@dotat.at wrote: > >Description: > If you are using libreadline with a multiline prompt containing invisible > characters on the last line, then when the program receives SIGWINCH and > redraws the last line of the prompt it outputs spurious ^A and ^B > character(s). You might want to contact Chet Ramey (maintainer of Bash) on this one. He and I discussed a similar problem with Bash prompts and SIGWINCH on gnu.bash.bug and he told me that he found the problem and it's fixed for Bash 2.04, which is about to go into beta. Good luck, Doug -- "Stop it, I'm gettin' misty." - Mel Gibson as Porter, "Payback" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Sep 27 0:31:25 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 270A814E28; Mon, 27 Sep 1999 00:31:20 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA64575; Mon, 27 Sep 1999 00:30:59 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Mon, 27 Sep 1999 00:30:59 -0700 (PDT) From: Message-Id: <199909270730.AAA64575@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, peter@FreeBSD.org Subject: Re: misc/13978: a write to last column bug appears since ncurses conversion Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: a write to last column bug appears since ncurses conversion Responsible-Changed-From-To: freebsd-bugs->peter Responsible-Changed-By: sheldonh Responsible-Changed-When: Mon Sep 27 00:30:12 PDT 1999 Responsible-Changed-Why: The new ncurses is Peter's baby. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Sep 27 0:40:22 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 30D5A14E28 for ; Mon, 27 Sep 1999 00:40:21 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA65101; Mon, 27 Sep 1999 00:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id B119115254; Mon, 27 Sep 1999 00:30:21 -0700 (PDT) Message-Id: <19990927073021.B119115254@hub.freebsd.org> Date: Mon, 27 Sep 1999 00:30:21 -0700 (PDT) From: riccardo@torrini.org To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: misc/13992: routed exit after some day of work with signal 6 (core dump) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13992 >Category: misc >Synopsis: routed exit after some day of work with signal 6 (core dump) >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 Sep 27 00:40:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Riccardo Torrini >Release: FreeBSD 3.3-STABLE (OCTOPUSSY) #0: Wed Sep 22 08:57:26 CEST 1999 >Organization: ESAOTE s.p.a. >Environment: FreeBSD snail.fi.esaote.it 3.3-STABLE FreeBSD 3.3-STABLE #0: Wed Sep 22 08:57:26 CEST 1999 root@snail.fi.esaote.it:/usr/src/sys/compile/OCTOPUSSY i386 >Description: For the 3rd time routed -s exits after some day of work with signal 6 (SIGABRT) without any other message. Visible on console (and as last line of dmesg) but not always on /var/log/messages. The machine is up from 22.9.1999-23:42 (reboot after make world) From dmesg (this happens at 02:22 GMT+1 this morning, 27.9.1999): -----8<----------8<----------8<----- CPU: i486 DX2 (486-class CPU) Origin = "GenuineIntel" Id = 0x435 Stepping = 5 Features=0x3 real memory = 92274688 (90112K bytes) avail memory = 86380544 (84356K bytes) [...] changing root device to da0s1a pid 1147 (routed), uid 0: exited on signal 6 (core dumped) -----8<----------8<----------8<----- From messages: -----8<----------8<----------8<----- Sep 24 21:24:43 snail routed[1147]: select: Invalid argument Sep 24 21:24:44 snail /kernel: pid 1147 (routed), uid 0: exited on signal 6 (core dumped) >How-To-Repeat: On my machine, an HP NetServer 4/66-LC (486/DX2-66) used as internal router with 4 Intel EtherExpress Pro/10 on isa and internet gateway with 56k internal usrobotics modem, it happens every some day. I recompiled world and kernel, after cvsupping, on end of august, begin of september, 20 and 24 of september. No more often because I need full 24 hours to build and install :-( >Fix: I have work-around with a script that poll processes and respawn "routed -s" when it dies. Not a real 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 Sep 27 0:40:33 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DF84714D6E for ; Mon, 27 Sep 1999 00:40:31 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA65108; Mon, 27 Sep 1999 00:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 27 Sep 1999 00:40:02 -0700 (PDT) Message-Id: <199909270740.AAA65108@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: bin/13980: Parameter expansion pattern removal bug in sh Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/13980; it has been noted by GNATS. From: Sheldon Hearn To: Robert Webb Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/13980: Parameter expansion pattern removal bug in sh Date: Mon, 27 Sep 1999 09:36:16 +0200 On Sun, 26 Sep 1999 07:26:48 MST, Robert Webb wrote: > The last two echos output garbage in place of the trailing pattern > which was removed. The /bin/sh in both 3.2-STABLE and 4.0-CURRENT produce the expected results: $f=/tmp/user/wpage.html ${f%.*}=/tmp/user/wpage ${f%/*}=/tmp/user ${f%"/wpage.html"}=/tmp/user "$f"=/tmp/user/wpage.html "${f%.*}"=/tmp/user/wpage "${f%/*}"=/tmp/user "${f%"/wpage.html"}"=/tmp/user Time to upgrade? :-) 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 Sep 27 1:10: 7 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3893014E67 for ; Mon, 27 Sep 1999 01:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA67986; Mon, 27 Sep 1999 01:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 27 Sep 1999 01:10:02 -0700 (PDT) Message-Id: <199909270810.BAA67986@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Robert Webb Subject: Re: bin/13980: Parameter expansion pattern removal bug in sh Reply-To: Robert Webb Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/13980; it has been noted by GNATS. From: Robert Webb To: Sheldon Hearn Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/13980: Parameter expansion pattern removal bug in sh Date: Mon, 27 Sep 1999 01:06:55 -0700 Sheldon Hearn, at 09:36 AM 9/27/99 +0200, you wrote: > >On Sun, 26 Sep 1999 07:26:48 MST, Robert Webb wrote: >> The last two echos output garbage in place of the trailing pattern >> which was removed. > >The /bin/sh in both 3.2-STABLE and 4.0-CURRENT produce the expected >results: That is good news. >Time to upgrade? :-) Yes! :) I already have 3.2 CDs to install at home. I submitted the bug report from an account at my ISP, though, and they will have a difficult time upgrading from 2.2.8 without breaking many customers' CGIs. Thanks for checking out this problem, Sheldon. -- Robert To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Sep 27 3:30: 3 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2F43F152C6 for ; Mon, 27 Sep 1999 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 DAA78524; Mon, 27 Sep 1999 03:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 27 Sep 1999 03:30:02 -0700 (PDT) Message-Id: <199909271030.DAA78524@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ruslan Ermilov Subject: Re: misc/13992: routed exit after some day of work with signal 6 (core dump) Reply-To: Ruslan Ermilov Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/13992; it has been noted by GNATS. From: Ruslan Ermilov To: riccardo@torrini.org Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: misc/13992: routed exit after some day of work with signal 6 (core dump) Date: Mon, 27 Sep 1999 13:18:41 +0300 On Mon, Sep 27, 1999 at 12:30:21AM -0700, riccardo@torrini.org wrote: > > For the 3rd time routed -s exits after some day of work with signal 6 > (SIGABRT) without any other message. Visible on console (and as last > line of dmesg) but not always on /var/log/messages. > The machine is up from 22.9.1999-23:42 (reboot after make world) > [...] > >From messages: > -----8<----------8<----------8<----- > Sep 24 21:24:43 snail routed[1147]: select: Invalid argument > Sep 24 21:24:44 snail /kernel: pid 1147 (routed), uid 0: exited on signal 6 (core dumped) > Could you please compile the routed(8) with debug symbols, i.e. # cd /usr/src/sbin/routed; make DEBUG_FLAGS=-g clean all And run gdb(1) against the core file with this version of routed(8)? Thanks, -- Ruslan Ermilov Sysadmin and DBA of the ru@ucb.crimea.ua United Commercial Bank, ru@FreeBSD.org FreeBSD committer, +380.652.247.647 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Sep 27 8:30: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2B9B015291 for ; Mon, 27 Sep 1999 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 IAA53376; Mon, 27 Sep 1999 08:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id E74F615037; Mon, 27 Sep 1999 08:28:15 -0700 (PDT) Message-Id: <19990927152815.E74F615037@hub.freebsd.org> Date: Mon, 27 Sep 1999 08:28:15 -0700 (PDT) From: root@kodiak.sdsmt.edu To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: misc/13995: Full duplex mode doesn't work right with de0 driver DEC/Intel DC21x4x (``Tulip'') Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13995 >Category: misc >Synopsis: Full duplex mode doesn't work right with de0 driver DEC/Intel DC21x4x (``Tulip'') >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 Sep 27 08:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Jason Seidel >Release: 3.3-Stable >Organization: >Environment: FreeBSD kodiak.sdsmt.edu 3.3-STABLE FreeBSD 3.3-STABLE #28: Sun Sep 26 16:15:06 MDT 1999 root@kodiak.sdsmt.edu:/usr/src/sys/compile/KODIAK i386 >Description: Switched machine from hub to a switch, tried to enable full duplex, would not work correctly, even if I forced the card to 10mps full-duplex. Tried this on 3 cards. (New) Kingston 10/200 21143 dec chip, and two smc cards with 21140 dec chip. >How-To-Repeat: Just install dec chipset card with de0 DEC/Intel DC21x4x (``Tulip'') >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 Sep 27 8:54:35 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from web307.mail.yahoo.com (web307.mail.yahoo.com [128.11.68.238]) by hub.freebsd.org (Postfix) with SMTP id BEFA715359 for ; Mon, 27 Sep 1999 08:54:32 -0700 (PDT) (envelope-from noeldamonmiller@yahoo.com) Message-ID: <19990927155443.3264.rocketmail@web307.mail.yahoo.com> Received: from [207.138.28.180] by web307.mail.yahoo.com; Mon, 27 Sep 1999 08:54:43 PDT Date: Mon, 27 Sep 1999 08:54:43 -0700 (PDT) From: Noel Miller Subject: join To: freebsd-bugs@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Freebsd bug people, I want to join your mailing list. Please let me know SOP. Noel __________________________________________________ Do You Yahoo!? Bid and sell for free at http://auctions.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Sep 27 9:20: 9 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E69B114DFB for ; Mon, 27 Sep 1999 09:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA57875; Mon, 27 Sep 1999 09:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from abb.zenon.net (abb.zenon.net [195.2.64.43]) by hub.freebsd.org (Postfix) with ESMTP id DA3681536F for ; Mon, 27 Sep 1999 09:10:07 -0700 (PDT) (envelope-from abb@abb.zenon.net) Received: (from abb@localhost) by abb.zenon.net (8.9.3/8.9.3) id UAA13312; Mon, 27 Sep 1999 20:12:19 GMT (envelope-from abb) Message-Id: <199909272012.UAA13312@abb.zenon.net> Date: Mon, 27 Sep 1999 20:12:19 GMT From: abb@zenon.net Reply-To: abb@zenon.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/13997: RLIMIT_NPROC works unadequately for jails (patch included) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13997 >Category: kern >Synopsis: RLIMIT_NPROC works unadequately for jails (patch included) >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Sep 27 09:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Alexander Bezroutchko >Release: FreeBSD 4.0-CURRENT i386 >Organization: Zenon NSP >Environment: 4.0-19990918-CURRENT >Description: The fork() syscall checks RLIMIT_NPROC resource limit using system-wide table `uihashtbl'. So limitation on number of running processes will work unadequately if processes run in different jails but have equal uids. >How-To-Repeat: Run two shells with equal uids (not root) in different jails with RLIMIT_NPROC set to 5. Invoke 3 subshells in one jail. Now it is impossible to run any subprocess in shell in another jail because fork fails. >Fix: Create private `uihashtbl' for each jail. diff -c -r sys/jail.h.orig sys/jail.h *** sys/jail.h.orig Mon Sep 27 11:57:59 1999 --- sys/jail.h Mon Sep 27 14:00:18 1999 *************** *** 29,34 **** --- 29,36 ---- MALLOC_DECLARE(M_PRISON); #endif + #include + /* * This structure describes a prison. It is pointed to by all struct * proc's of the inmates. pr_ref keeps track of them and is used to *************** *** 40,45 **** --- 42,49 ---- char pr_host[MAXHOSTNAMELEN]; u_int32_t pr_ip; void *pr_linux; + struct uihashhead *pr_uihashtbl; + u_long pr_uihash; }; #endif /* !KERNEL */ diff -c -r sys/proc.h.orig sys/proc.h *** sys/proc.h.orig Mon Sep 27 11:58:00 1999 --- sys/proc.h Mon Sep 27 12:21:24 1999 *************** *** 107,112 **** --- 107,116 ---- */ struct jail; + struct prison; + + struct uidinfo; + LIST_HEAD(uihashhead, uidinfo); struct proc { TAILQ_ENTRY(proc) p_procq; /* run/sleep queue. */ *************** *** 373,379 **** struct vm_zone; extern struct vm_zone *proc_zone; ! int chgproccnt __P((uid_t uid, int diff)); int enterpgrp __P((struct proc *p, pid_t pgid, int mksess)); void fixjobc __P((struct proc *p, struct pgrp *pgrp, int entering)); int inferior __P((struct proc *p)); --- 377,383 ---- struct vm_zone; extern struct vm_zone *proc_zone; ! int chgproccnt __P((const struct prison *prison, uid_t uid, int diff)); int enterpgrp __P((struct proc *p, pid_t pgid, int mksess)); void fixjobc __P((struct proc *p, struct pgrp *pgrp, int entering)); int inferior __P((struct proc *p)); diff -c -r kern/init_main.c.orig kern/init_main.c *** kern/init_main.c.orig Mon Sep 27 11:57:11 1999 --- kern/init_main.c Mon Sep 27 12:05:39 1999 *************** *** 396,402 **** /* * Charge root for one process. */ ! (void)chgproccnt(0, 1); /* * Initialize the current process pointer (curproc) before --- 396,402 ---- /* * Charge root for one process. */ ! (void)chgproccnt(NULL, 0, 1); /* * Initialize the current process pointer (curproc) before diff -c -r kern/kern_exit.c.orig kern/kern_exit.c *** kern/kern_exit.c.orig Mon Sep 27 11:57:11 1999 --- kern/kern_exit.c Mon Sep 27 12:57:55 1999 *************** *** 488,494 **** /* * Decrement the count of procs running with this uid. */ ! (void)chgproccnt(p->p_cred->p_ruid, -1); /* * Release reference to text vnode --- 488,494 ---- /* * Decrement the count of procs running with this uid. */ ! (void)chgproccnt(p->p_prison, p->p_cred->p_ruid, -1); /* * Release reference to text vnode *************** *** 509,514 **** --- 509,524 ---- * Destroy empty prisons */ if (p->p_prison && !--p->p_prison->pr_ref) { + #ifdef DIAGNOSTIC + u_long i; + struct prison *pr = p->p_prison; + for(i = 0; i <= pr->pr_uihash; i++) { + if (!LIST_EMPTY(&pr->pr_uihashtbl[i])) { + panic("pr_uihashtbl not empty"); + } + } + #endif + FREE(p->p_prison->pr_uihashtbl, M_PRISON); if (p->p_prison->pr_linux != NULL) FREE(p->p_prison->pr_linux, M_PRISON); FREE(p->p_prison, M_PRISON); diff -c -r kern/kern_fork.c.orig kern/kern_fork.c *** kern/kern_fork.c.orig Mon Sep 27 11:57:11 1999 --- kern/kern_fork.c Mon Sep 27 15:06:34 1999 *************** *** 222,230 **** * Increment the count of procs running with this uid. Don't allow * a nonprivileged user to exceed their current limit. */ ! count = chgproccnt(uid, 1); if (uid != 0 && count > p1->p_rlimit[RLIMIT_NPROC].rlim_cur) { ! (void)chgproccnt(uid, -1); /* * Back out the process count */ --- 222,230 ---- * Increment the count of procs running with this uid. Don't allow * a nonprivileged user to exceed their current limit. */ ! count = chgproccnt(p1->p_prison, uid, 1); if (uid != 0 && count > p1->p_rlimit[RLIMIT_NPROC].rlim_cur) { ! (void)chgproccnt(p1->p_prison, uid, -1); /* * Back out the process count */ diff -c -r kern/kern_jail.c.orig kern/kern_jail.c *** kern/kern_jail.c.orig Mon Sep 27 11:57:11 1999 --- kern/kern_jail.c Mon Sep 27 12:52:01 1999 *************** *** 58,63 **** --- 58,69 ---- pr->pr_ref++; p->p_prison = pr; p->p_flag |= P_JAILED; + + /* The process is being jailed. Assume nested jails are not allowed. */ + /* XXX Perhaps the size of pr_uihashtbl should be decreased */ + pr->pr_uihashtbl = hashinit(maxproc / 16, M_PRISON, &pr->pr_uihash); + chgproccnt(NULL, p->p_cred->p_ruid, -1); + chgproccnt(pr, p->p_cred->p_ruid, 1); return (0); bail: diff -c -r kern/kern_proc.c.orig kern/kern_proc.c *** kern/kern_proc.c.orig Mon Sep 27 11:57:12 1999 --- kern/kern_proc.c Mon Sep 27 13:10:02 1999 *************** *** 49,54 **** --- 49,55 ---- #include #include #include + #include static MALLOC_DEFINE(M_PGRP, "pgrp", "process group header"); MALLOC_DEFINE(M_SESSION, "session", "session header"); *************** *** 65,72 **** uid_t ui_uid; long ui_proccnt; }; ! #define UIHASH(uid) (&uihashtbl[(uid) & uihash]) ! static LIST_HEAD(uihashhead, uidinfo) *uihashtbl; static u_long uihash; /* size of hash table - 1 */ static void orphanpg __P((struct pgrp *pg)); --- 66,73 ---- uid_t ui_uid; long ui_proccnt; }; ! #define UIHASH(uihashtbl, uihash, uid) (&uihashtbl[(uid) & uihash]) ! static struct uihashhead *uihashtbl; static u_long uihash; /* size of hash table - 1 */ static void orphanpg __P((struct pgrp *pg)); *************** *** 102,115 **** * a given user is using. */ int ! chgproccnt(uid, diff) uid_t uid; int diff; { register struct uidinfo *uip; register struct uihashhead *uipp; ! uipp = UIHASH(uid); for (uip = uipp->lh_first; uip != 0; uip = uip->ui_hash.le_next) if (uip->ui_uid == uid) break; --- 103,120 ---- * a given user is using. */ int ! chgproccnt(prison, uid, diff) ! const struct prison *prison; uid_t uid; int diff; { register struct uidinfo *uip; register struct uihashhead *uipp; ! if (prison) ! uipp = UIHASH(prison->pr_uihashtbl, prison->pr_uihash, uid); ! else ! uipp = UIHASH(uihashtbl, uihash, uid); for (uip = uipp->lh_first; uip != 0; uip = uip->ui_hash.le_next) if (uip->ui_uid == uid) break; diff -c -r kern/kern_prot.c.orig kern/kern_prot.c *** kern/kern_prot.c.orig Mon Sep 27 11:57:12 1999 --- kern/kern_prot.c Mon Sep 27 12:08:19 1999 *************** *** 414,421 **** * Transfer proc count to new user. */ if (uid != pc->p_ruid) { ! (void)chgproccnt(pc->p_ruid, -1); ! (void)chgproccnt(uid, 1); } /* * Set real uid --- 414,421 ---- * Transfer proc count to new user. */ if (uid != pc->p_ruid) { ! (void)chgproccnt(p->p_prison, pc->p_ruid, -1); ! (void)chgproccnt(p->p_prison, uid, 1); } /* * Set real uid *************** *** 663,670 **** setsugid(p); } if (ruid != (uid_t)-1 && pc->p_ruid != ruid) { ! (void)chgproccnt(pc->p_ruid, -1); ! (void)chgproccnt(ruid, 1); pc->p_ruid = ruid; setsugid(p); } --- 663,670 ---- setsugid(p); } if (ruid != (uid_t)-1 && pc->p_ruid != ruid) { ! (void)chgproccnt(p->p_prison, pc->p_ruid, -1); ! (void)chgproccnt(p->p_prison, ruid, 1); pc->p_ruid = ruid; setsugid(p); } >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 Sep 27 9:26:13 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D110014E12; Mon, 27 Sep 1999 09:26:11 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA58566; Mon, 27 Sep 1999 09:26:11 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Mon, 27 Sep 1999 09:26:11 -0700 (PDT) From: Message-Id: <199909271626.JAA58566@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, phk@FreeBSD.org Subject: Re: kern/13997: RLIMIT_NPROC works unadequately for jails (patch included) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: RLIMIT_NPROC works unadequately for jails (patch included) Responsible-Changed-From-To: freebsd-bugs->phk Responsible-Changed-By: sheldonh Responsible-Changed-When: Mon Sep 27 09:25:27 PDT 1999 Responsible-Changed-Why: Over to Mr Jail. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Sep 27 11: 0:49 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 051E414A19 for ; Mon, 27 Sep 1999 11:00:08 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA68283 for freebsd-bugs@freebsd.org; Mon, 27 Sep 1999 11:00:03 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 27 Sep 1999 11:00:03 -0700 (PDT) Message-Id: <199909271800.LAA68283@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 [1996/12/20] bin/2258 wollman route add/delete [network] xxx.yyy.zzz.0 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/10] kern/4996 peter NFS crash, possibly related to file bigge o [1997/11/24] bin/5139 sheldonh portmap does not find interfaces correctl f [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/06/23] kern/7028 Panic in vinvalbuf when appending/looking 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. f [1998/09/03] kern/7822 n_hibma Machine Reboots without reason o [1998/09/06] kern/7843 Unable to install FreeBSD on Tekram DC-39 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 peter 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 f [1998/11/04] conf/8576 n_hibma server goes down when client mount its fi 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 a [1999/01/26] i386/9709 n_hibma Kernel page faults during boot with 2GB R o [1999/01/27] kern/9742 tx driver for smc autodetects fine, but n o [1999/02/02] misc/9885 BIND 8.1.2 core dumping o [1999/02/04] kern/9909 Writing incomplete blocks to /dev/nrst0 h 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 a [1999/02/21] i386/10188 n_hibma Cannot get system to boot after Installti 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 o [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/10725stb 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/10965obrien lcc-3.6 unable to compile anything o [1999/04/08] kern/11023 Synchronous PPP not functional in leased o [1999/04/13] kern/11112 Amanda on FreeBSD can wipe the _next_ tap o [1999/04/16] kern/11180 boot of fresh bsd3.1 hangs o [1999/04/17] kern/11196 n_hibma kernel mode page fault o [1999/04/19] misc/11216 Power fail versus Fsck changed my life. 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] bin/11335 find hangs in `nfsrcv' on local filesyste o [1999/04/26] conf/11343 worm; problems with installation and boot 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/03] kern/11470 V3 NFS problem o [1999/05/04] i386/11488 Error while starting FreeBSD o [1999/05/06] kern/11533 NFS v3 locks up on large file transfers 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 f [1999/06/01] kern/11984 pthread_kill cannot kill select() threads 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] ports/12098se KDM not config'd properly 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] bin/12243 NFS re-mount from Solaris 7 server hangs 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/12623alpha 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 f [1999/07/23] i386/12777 sheldonh 3.1 RELEASE -> 3.2 upgrade is incomplete, o [1999/07/26] bin/12819 billf tcpd hosts.[allow|deny] location inconsis o [1999/08/02] misc/12923 Installation fails on HP Net Server o [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 o [1999/08/11] kern/13075 signal is not posted for async I/O on raw o [1999/08/16] kern/13174 3.- branch hardware probe does not detect o [1999/08/20] kern/13270 NFS hangs if written through self-mount o [1999/08/22] kern/13322 FreeBSD freezes when using the soundcard o [1999/08/23] alpha/13338alpha 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/08/31] kern/13488 panic: getnewbuf: o [1999/09/07] bin/13615 awk corrupts the memory arena when OFMT i o [1999/09/09] alpha/13653alpha 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] ports/13820ports Error in Package of port ifmail 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 139 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 f [1996/05/26] kern/1256 ZNYX 314 mysterously looses packets o [1996/06/07] kern/1301 davidg DEC FDDI/PCI Adapter: halt code = 6 (DMA f [1996/08/03] bin/1461 Incorrect address binding of Kerberized r o [1996/08/22] kern/1533 Machine can be panicked by a userland pro o [1996/09/29] kern/1689 wollman 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 a [1996/11/14] kern/2014 sos Console keyboard lockup problem o [1996/11/18] kern/2053 peter de0 driver don't work at 100M for Compex 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 a [1997/01/21] bin/2549 sos cdcontrol refuses to play audio CDs from s [1997/02/03] kern/2647 changing existing route to -static crashe o [1997/02/05] kern/2667 wollman bpfattach can hang the system 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 o [1997/02/15] bin/2747 davidn cannot submit at jobs from within an at j o [1997/02/16] gnu/2749 peter cvs export using remote cvs fails - CVS/T o [1997/02/19] kern/2768 ktrace(1) -i dumps corrupted trace data o [1997/02/19] bin/2769 fsck needs several runs to clean up bad/d o [1997/02/19] kern/2770 panic: vm_fault: fault on nofault entry o [1997/02/19] kern/2771 panic: bad dir o [1997/02/19] kern/2773 peter bad dir panic o [1997/02/20] bin/2785 wpaul callbootd uses an unitialized variable o [1997/02/20] gnu/2786 gcc version 2.7.2.1 C compiler slows down o [1997/02/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/04] kern/2873 the od0 devies does not handle a Maxoptix o [1997/03/08] kern/2919 vm_fault: fault on nofault entry, addr: f o [1997/03/11] bin/2948 can't dump 640MB optical disks o [1997/03/12] kern/2965 st0 hang/fail on reading 4mm DAT tape for o [1997/03/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] gnu/3441 obrien C++ exceptions don't work in shared libra o [1997/05/01] kern/3463 netstat -I packet count increase on sl0 w f [1997/05/04] i386/3502 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/09] kern/3569 ex0 driver doesn't work with EtherExpress 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/08] gnu/3810 cvs can't handle multiple multiple-path d o [1997/06/18] kern/3899 df while unmounting floppy crashes 2.2.2 o [1997/06/19] kern/3909 joerg A patch supporting some new worm drivers o [1997/06/19] gnu/3910 sort(1) of 2.2.1R doesn't work in special o [1997/06/28] misc/3980 peter access via NFS fails during mount-operati o [1997/06/29] bin/3986 rdist seg faults when target machine is d o [1997/07/02] kern/4012 peter 2.2-RELEASE/Digital UNIX NFSv3 0 length f o [1997/07/02] misc/4013 boot floppy hangs if IDE ZIP Drive presen s [1997/07/06] gnu/4042 gdb stackframe in static library shows no o [1997/07/12] bin/4078 sos Typed password to log in on console and i o [1997/07/17] kern/4115 peter SunOS NFS file has wrong owner if creator o [1997/07/26] bin/4176 restore gets confused when run over pipe 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/08] conf/4252 peter sendmail doesn't use smrsh by default o [1997/08/10] kern/4260 EOF handling in st(4) is broken o [1997/08/10] kern/4265 Panic in dsinit when multiple FreeBSD sli o [1997/08/10] kern/4270 ch driver does not use bounce buffers o [1997/08/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/08/25] kern/4381 mount -t msdos causes panic:vm_fault 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/10] kern/4508 peter nfs3 data integrity problems o [1997/09/11] kern/4513 System lockup appears to be VM related. o [1997/09/14] i386/4533 Server with Cyclom-Y PCI card rebooted at o [1997/09/20] kern/4588 peter NFS access locks up 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/05] docs/4691 no documentation for mk_cmds(1) 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/09] kern/4990 peter NFS hangs under FastEthernet. 1024 Bytes o [1997/11/15] conf/5062 login.access not evaluated correctly a [1997/11/18] bin/5084 ru wrong "term" for internal shell o [1997/11/18] kern/5085 System crash during mount command for CD o [1997/11/22] gnu/5126 C++ compiler bug (assembly output) 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 s [1998/01/30] bin/5604 setenv(3) function has memory leak, other 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 hoek groff -mm or groff -mmm ??? o [1998/02/10] i386/5698 des LPIP causes spurious reboots o [1998/02/12] kern/5728 peter NFS hangs o [1998/02/12] kern/5731 peter executables wedge on "vmopar" when built o [1998/02/17] gnu/5767 man leaves partially formatted cat pages o [1998/02/19] kern/5794 Kernel Panic f [1998/02/27] bin/5867 peter pppd or FreeBSD ? o [1998/02/28] kern/5877 sb_cc counts control data as well as data o [1998/03/01] kern/5890 peter NFS server Side say NFSERR_BAD_COOKIE (rm o [1998/03/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/14] conf/6002 peter /etc/mail/sendmail.cf.addtions seems to l 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] i386/6099 des LPIP to slow machine causes hang o [1998/03/22] kern/6103 panic: ffs_valloc: dup alloc o [1998/03/28] bin/6162 kinit does not default to the current use o [1998/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/17] kern/6336 peter NFSv3 should support files >2GB, but does 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/04/25] kern/6412 peter NFS sends packets from the wrong interfac 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/20] kern/6706 mount_msdos+mount_null+mc=panic o [1998/05/25] kern/6751 audio cd play suddenly stops. o [1998/05/25] kern/6755 peter Tulip (if_de) driver buggy in -current o [1998/05/27] kern/6771 peter panic: Bad nfs svc reply s [1998/05/27] misc/6773 [PATCH] tempnam.c security problems o [1998/06/01] misc/6824 peter Intel EtherExpress 100+, 2.2.6 NFS troubl s [1998/06/02] bin/6830 make(1) exhibits confusing and non-standa s [1998/06/04] kern/6854 [PATCH] probing brooktree849 capture card s [1998/06/04] kern/6858 inetd in realloc(): warning: junk pointer 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 f [1998/06/19] i386/6996 Occasional complete lockup of 2.2.5R 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/06/24] ports/7061 ache fspclient's grab command fails (and remov 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 o [1998/07/05] kern/7178 sos IDE Western Digital hard disk detection e s [1998/07/06] misc/7190 jkh "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/21] conf/7354 source distribution selection bug when in f [1998/07/22] kern/7367 panic: malloc: wrong bucket 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 -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/12] bin/7587 There is no pthread_cancel() in libc_r.a! 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 o [1998/08/18] conf/7665 sysinstall quits silently o [1998/08/19] kern/7678 Problems with a 386-16 f [1998/08/20] i386/7698 n_hibma scotty/tkined library error o [1998/08/23] kern/7727 Processes get wedged in 'getblk' on 2.2.7 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/08/30] kern/7781 Problem with setpassent(), getpwnam() and o [1998/09/01] kern/7797 System halted with "panic: pmap_release: o [1998/09/02] i386/7815 probe can't find wdc0 s [1998/09/03] gnu/7821 awk in free(): warning: chunk is already o [1998/09/03] conf/7823 sysinstall will not install XFree 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/09] bin/7877 billf libpcap and tcpdump need updating 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 a [1998/09/19] ports/7987 ports Can't post news with TRN + NNTPCACHE o [1998/09/22] conf/8031 [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/29] bin/8085 sendmail startup could be backgrounded 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/12] bin/8281 writev() in libc_r causes loop 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/20] ports/8394 peter rdist6 won't compile--tries to use MOUNT_ 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/07] kern/8596 panic: page fault while using ping's reco 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 peter exmh2 has problems with some date formats s [1998/11/09] misc/8623 wollman [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 o [1998/11/12] kern/8669 aio_write() and aio_read() do not work AT o [1998/11/14] kern/8683 sos Problems with Atapi in 3.0... o [1998/11/14] bin/8685 sending a SYST by ftp client closes conne o [1998/11/17] kern/8729 SYSV Semaphore blocks all threads 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] kern/8834 NFS can corrupt local file cache o [1998/11/24] conf/8854 boot.flp does not probe atapi cdrom o [1998/11/24] i386/8855 sos can't mount CD in ATAPI drive after eject 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 /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/9362 "lpc start queue" doesn't work in 3.0-R & 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/09] kern/9413 profiling does not work with elf kernels o [1999/01/10] i386/9431 wd.c Does nto recognize certain LBA disks 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/12] bin/9464 fenner Fix for fetch ignoring FTP_PASSIVE_MODE e 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] kern/9537 ep0 driver : no buffer space available 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/21] kern/9612 grog NFS mounts on dual-homed server may hang o [1999/01/22] docs/9618 hoek many typos in groff_mm(7) o [1999/01/24] ports/9665 ache cannot start apache server o [1999/01/25] kern/9673 ISO CD-ROM Problem o [1999/01/25] ports/9688 cwt The current tcl80 port has problems, does 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 o [1999/02/04] misc/9903 thread enabled program can't use popen/sy o [1999/02/04] kern/9910 Heavy traffic renders FreeBSD acting as f 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 f [1999/02/12] docs/10059 sheldonh MALLOC(9) manpage not updated to reflect 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 a [1999/02/14] ports/10094jfitz autogeneration of msql user failed 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/01] bin/10341 memory leak in setenv(3) o [1999/03/02] bin/10353 ypserv gets segmentation violation o [1999/03/03] ports/10373nate Increasing kernel file descriptors causes o [1999/03/03] kern/10381 hlfsd/NFS failure -- directory cached bet a [1999/03/04] ports/10385billf New port: apache13-modperl 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/09] bin/10511 incorrect return value in kvm_read(3) and 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] kern/10616 MSP3400C audio chip from Hauppauge WinTV- 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/18] ports/10665ports ports/graphics/sane needs access to /dev/ o [1999/03/19] kern/10671 setlogin(2) return EINVAL for length of n o [1999/03/19] kern/10676 3.1-RELEASE deadlocks under load with pro 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/26] bin/10805 h2ph incorrectly deals with #error and #w o [1999/03/26] bin/10807 host(1) is broken - multiple options in o o [1999/03/27] bin/10821 des getpwent() fails on NIS clients after dro o [1999/03/29] i386/10862 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/10946se 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 f [1999/04/07] ports/11003ports wmcdplay is not capable of playing an AUD 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/10] ports/11059ache ports/security/pgp does not extract 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/14] bin/11137 /bin/ps output loses the values for all p o [1999/04/16] kern/11164 The ie network driver panics during the i o [1999/04/16] bin/11169 warning: pointer to wrong page in cron(8) o [1999/04/18] kern/11199 3.1-RELEASE kernel page fault (trap 12) u 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/19] bin/11221 comm doesn't obey current locale collatio 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/10] ports/11636jfitz p5-Mail-Folder missing dependencies 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 o [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/11815 mjacob SCSI tape driver fails on media type reco o [1999/05/21] kern/11821 /dev/fd0a hangs on large files, including o [1999/05/22] docs/11852 jkh 3.X install requires 12MB of RAM, not 8 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] conf/11913 jkh Problem about /stand/sysinstall and /etc/ 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] ports/11935ports ports/audio/dap: -DBIGENDIAN is wrong on 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/01] ports/11977ports Eterm port is unable to access .Xauthorit 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] conf/12116 ASCII and US-ASCII locale wrongly aliased 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/11] bin/12136 obrien /sbin/dhclient-script: weird route comman o [1999/06/11] bin/12137 something wrong with shell -- functions w o [1999/06/12] ports/12174ache bash terminate with corefile if pid > 320 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/15] ports/12234ports imlib-1.9.4/gdk_imlib/rend.c has syntax e 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 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/29] ports/12446ports ssh port doesn't build 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/03] bin/12496 yppush broken when pushing to 2 or more s o [1999/07/03] bin/12497 src/etc/periodic/daily/150.clean-hoststat o [1999/07/04] kern/12508 gdb fails to vmcore.0 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/06] ports/12541ports gtk installs itself where it can't be fou 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 a [1999/07/08] bin/12564 jkh Sysinstall can not use live filesystem fr o [1999/07/09] misc/12577 Can't link code using catopen o [1999/07/09] ports/12584stb directories made during 'make install' ar o [1999/07/13] kern/12632 Panic (trap 18) with Symbios SCSI control o [1999/07/14] ports/12637ports patch to help multi-byte support in windo 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] ports/12714ports dylan port doesn't compile 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] ports/12746ache problem with bash-2.03(1) port (/usr/port 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/12821alpha slib.aq for the 3.2-RELEASE alpha distrib o [1999/07/26] ports/12824dirk MySQL client only compile doesn't check t o [1999/07/27] kern/12831 sos CD-rom cannot be mounted o [1999/07/27] conf/12832 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/07/31] ports/12905jmz Graphical setup utility won't always inst o [1999/08/01] bin/12911 alfred NFS umounts are not properly done if just o [1999/08/01] bin/12912 [PATCH] lpd leaves lock file permissions o [1999/08/02] kern/12927 [PATCH] using BROKEN_KEYBOARD_RESET optio o [1999/08/02] ports/12930asami libtool create defuct makefiles if PREFIX o [1999/08/03] misc/12938 gethostbyaddr(209.201.116.19) - Bus error o [1999/08/03] ports/12949ports Fix for rtsp_proxy port. Patches from Jon o [1999/08/04] kern/12979 Response time continually slows on idle m o [1999/08/05] conf/12984 /etc/rc* does not contain any support for f [1999/08/05] docs/12988 doc [Patch] Fix more occurances of 'sd' in FA 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/06] bin/13008 pthread_kill does not always work 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/08] ports/13033ports windowmaker port patch for single icon mo o [1999/08/09] kern/13049 [PATCH] NFS replies with incorrect source o [1999/08/10] i386/13058 Installation hangs after commit f [1999/08/13] pending/13113gnats-adminpanic related (proberbly) to vnode o [1999/08/14] kern/13141 se Multiple LUN support in NCR driver is bro o [1999/08/14] ports/13145se kaudioserver runs amok on logout o [1999/08/15] kern/13150 panic: ufs_dirbad: bad dir o [1999/08/15] ports/13170ports new port: UW-Imap with maildir and qmail 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/13196 [BTX] page in BTX has problem(quit key) 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/21] bin/13286 jhay [SECURITY] Potential IPXrouted(8) /tmp se o [1999/08/21] bin/13292 Ping -s does not work o [1999/08/24] bin/13350 make clean in bsd.obj.mk no longer proper o [1999/08/24] ports/13370ache elm-port upgraded, improved o [1999/08/25] kern/13377 if_tx: 83c170 chip revision 0x07 causes l 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 sys/netinet/in.h violates C++ spec. o [1999/08/26] ports/13396ports Diskusage-1.00 Port o [1999/08/26] kern/13405 syslogd get system hang o [1999/08/27] gnu/13427 gdb reports wrong info f [1999/08/27] kern/13433 ken 'camcontrol defects' does not work with I 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/08/30] ports/13471ports New port for UdmSearch www search engine o [1999/08/31] bin/13504 troubles with the ipfw tool 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] ports/13635ports Compilation problem with Bind 8.2.1 on Fr o [1999/09/08] ports/13636billf beroftpd also affected by proftpd/wuftpd o [1999/09/08] kern/13644 select(2) timer inaccurate, especially wi 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/09] ports/13656obrien update ports: dlint 1.3.3 o [1999/09/10] kern/13678 sos hard lockup's on tsleep in atapi_queue_cm o [1999/09/10] bin/13679 ncurses-based programs eat 100% CPU after o [1999/09/10] ports/13680me distfiles unfetchable o [1999/09/10] bin/13691 tcpslice cannot extract over 2GB part of o [1999/09/11] bin/13703 MCNP compilation problem o [1999/09/12] ports/13710obrien Wrong MD5 and patch-ac was for wrong file o [1999/09/12] bin/13711 root fs not properly unmounted after shut o [1999/09/12] ports/13714ports netatalk-1.4b2+asun2.1.3 fails chmod g+s o [1999/09/13] kern/13721 yokota There is no way to force system panic fro 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/14] docs/13746 doc Incorrect version in FAQ 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/13766 ldconfig doesn't recognize symbolic links 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] ports/13776jmz The XFree86-3.3.5 port -- one of the kerb o [1999/09/16] conf/13785 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] bin/13818 `ipfw' doesn't grok "log" keyword o [1999/09/19] misc/13837 peter src/contrib/bind is outdated. o [1999/09/19] ports/13838andreas postgresql updated to 6.5.2 o [1999/09/19] ports/13839se kdegraphics11 'make PREFIX' fix, one comp o [1999/09/19] i386/13847 missing support for INT 0x13 extensions i o [1999/09/20] ports/13855andreas pgaccess updated to 0.98 o [1999/09/20] i386/13857 Problem with switching between processes o [1999/09/21] ports/13873obrien mutt-1.0b2 port broken o [1999/09/21] ports/13875ports new port: xp-0.5 o [1999/09/22] conf/13900 jkh [PATCH] sysinstall can get SIGPIPE if a d o [1999/09/22] alpha/13912alpha 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] pending/13931gnats-adminsocks5 port is out of sync. 1.0r9 is no l o [1999/09/24] bin/13932 /usr/bin/lock does not report to syslog w 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] misc/13992 routed exit after some day of work with s o [1999/09/27] docs/13993 doc Another commercial database app for FreeB o [1999/09/27] kern/13997 phk RLIMIT_NPROC works unadequately for jails 664 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' o [1995/07/09] misc/605 wpaul NIS: get*bynis routine problems s [1995/08/05] gnu/655 ld -r of shared objects worked in 1.1.5, s [1995/08/07] bin/658 ifconfig alias has to be separately given s [1995/09/26] kern/742 syslog errors accessing Mac hard disks [p s [1995/10/03] kern/765 umount -f can`t umount a NFS filesystem i s [1995/11/20] kern/831 one minor complaint about the kernel visu s [1995/11/27] bin/841 stale nfs mounts cannot be umounted o [1995/11/30] bin/854 dg swapinfo shows incorrect information for 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 o [1996/04/06] kern/1119 dg Mounted EXT2FS partition is not cleanly u s [1996/06/11] bin/1312 automounter hangs on boot s [1996/06/13] bin/1320 dump limits blocksize to 32K s [1996/07/07] bin/1375 jraynard Extraneous warning from mv(1) [PATCH] o [1996/07/24] misc/1428 ncurses doesn't always display ALTCHARSET o [1996/09/06] bin/1577 peter mail -f foo does not look in current dire s [1996/09/08] bin/1589 [PATCH] ftp fails to flush output o [1996/09/14] gnu/1611 phk groff should use "system-wide" papersize s [1996/09/19] kern/1654 [PATCH] In procfs, vattr doesn't contain o [1996/09/23] i386/1671 joerg s2 map in pcvt isn't ISO 8859-1 and claim s [1996/10/13] misc/1791 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/01] bin/1941 danny wtmp and monthly rotation s [1996/11/01] bin/1943 route(8) args 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 s [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/12] kern/2199 joerg [PATCH] Got a lots of "Target Busy" messa 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 [1996/12/29] bin/2315 peter tail segfaults on NFS permission denied s [1996/12/30] kern/2327 [PATCH] `Green' saver for pcvt o [1997/01/10] bin/2442 davidn setusershell()/endusershell() missing o [1997/01/14] kern/2492 AIMS Lab RadioTrack driver for FreeBSD 2. o [1997/01/26] i386/2598 ep0 in EISA mode hangs if ep0-device (ISA o [1997/01/28] bin/2603 dufault Added POSIX.4/POSIX.1b constants in unist o [1997/01/28] bin/2604 dufault Added POSIX.4/POSIX.1b shm_open()/shm_unl o [1997/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/11] kern/2716 od.c/sd.c non 512 byte/sector support imp 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] docs/2897 steve send-pr categories should be explained so 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/18] misc/3024 make reinstall in /usr/src requires writa o [1997/03/22] kern/3061 route does not accept -genmask o [1997/03/31] gnu/3157 Patches to gas and gdb to support MMX ext o [1997/04/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 o [1997/05/08] gnu/3552 the -L option of tar does not work proper s [1997/05/09] kern/3571 Mounted ext2 prevents umount of filesyste 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 o [1997/05/20] docs/3645 torstenb TCP_wrappers package doesn't mention wher s [1997/05/21] bin/3648 roberto [PATCH] find(1) extension for file flags 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/23] kern/3938 peter Problem about mmap() over NFS o [1997/06/24] kern/3944 if_le doesnt receive ether multicast pack o [1997/06/25] kern/3948 nonworking t/tcp server side a [1997/06/25] kern/3953 kern-config: options PANIC_REBOOT_WAIT_TI o [1997/06/26] i386/3962 print disk internal cache size during pro o [1997/06/27] kern/3968 Hardware probes die on Peak SBCs. o [1997/06/29] ports/3983 fenner New port: psf toolkit o [1997/07/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/23] bin/4154 ru wish /bin/sleep handled fractions of a se s [1997/07/24] bin/4157 [PATCH] netstat atalk output should print s [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/23] conf/4363 kernel build depend on make obj 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/07] bin/4484 peter sendmail is barfing o [1997/09/13] kern/4528 processes hang if the mount_portal proces a [1997/09/14] i386/4538 sos byteswapped ATAPI id strings o [1997/09/14] bin/4545 f77 will only call `cc', no com-line opti 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/09] kern/4992 SCSI disk scheduling disabled in 2.2.5 o [1997/11/10] kern/4997 DDB_UNATTENDED doesn't always work o [1997/11/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] gnu/5039 libdialog fails to resore terminal 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 o [1997/11/26] misc/5153 jkh release file checksums in wrong file 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 silo overflows running o [1998/01/02] bin/5410 pkg_info options s [1998/01/03] bin/5419 [PATCH] timed rejects valid networks with o [1998/01/08] kern/5429 Ethernet collision during file transfers s [1998/01/08] kern/5435 [PATCH] if_fe.c for old Gateway Communica s [1998/01/08] bin/5444 [PATCH] ypserv uses wrong dns lookup orde o [1998/01/11] bin/5483 Login(1) clears utmp entry o [1998/01/15] kern/5502 nfsd process usage doesn't get accounted o [1998/01/15] kern/5508 SCSI Message sd0: COMMAND FAILED (4 28) @ s [1998/01/16] kern/5510 sos [PATCH] Incomplete ATAPI diagnostic at bo o [1998/01/18] kern/5517 Recursive NULLFS mount causes ufs_ihashge 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 f [1998/02/05] misc/5662 sysinstall generates short dev names for 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] ports/5788 joerg pcemu harddisk-access fixes o [1998/02/19] kern/5789 wcd0 requires ATAPI_STATIC o [1998/02/19] kern/5795 Panic: "bremfree: removing a buffer when o [1998/02/20] 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/01] ports/5884 dburr New port: icqjava-0.981a (net/icqjava) 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] kern/5964 peter nfsd send interface selection seems broke 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/12] gnu/5992 cvs y2k 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/18] misc/6060 peter Sendmail executable, not doing MASQUERADE 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/29] ports/6170 peter another squid ports o [1998/03/30] ports/6181 andy New port: xoj-1.0 o [1998/03/31] bin/6183 quota hangups o [1998/03/31] kern/6184 No error if resulting file pos in lseek i o [1998/04/01] bin/6187 peter mounting nfs directories with -b can caus o [1998/04/03] bin/6200 flex can be upgraded o [1998/04/03] bin/6202 No way to detect removable media. o [1998/04/03] bin/6206 Enhancements to the shutdown program o [1998/04/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] ports/6230 rse gfont_mkgdf calls wrong interpreter o [1998/04/06] bin/6234 ypserv -d is broken f [1998/04/07] kern/6247 Gravis UltraSound Classic no longer works 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 s [1998/04/16] ports/6315 kuriyama new port request: korean/htm o [1998/04/16] kern/6318 pppd does not update wtmp on hangup o [1998/04/16] misc/6320 Sometimes nohup isn't good enough. 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/28] ports/6445 jkoshy New port: `fhist' 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 f [1998/05/31] ports/6813 fenner patched audio module for vat port 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 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] kern/7029 gibbs cdrecord and aic7880 troubles 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/06/29] bin/7117 flex -I option is broken 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/06] bin/7184 /usr/games/robots fails to write high sco 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 f [1998/07/10] misc/7239 ping(8) and traceroute(8) may report erra 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 o [1998/07/21] bin/7352 libc generates spurious warnings when use a [1998/07/23] ports/7375 dburr New port request: audio/xsplay f [1998/07/23] kern/7377 we have a new digiboard driver supporting s [1998/07/29] i386/7426 Bugs in macro definitions of pthreads. a [1998/07/31] docs/7456 doc dialog(3) man page outdated o [1998/08/01] ports/7464 dburr New port: WMakerconf o [1998/08/03] ports/7485 andy New port: Xterminal-0.2 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] ports/7680 billf New port of tn5250 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/20] bin/7694 bogus error-message from route(8) 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] kern/7782 Kernel rebuild not correctly responding t o [1998/08/30] bin/7786 quota.h has superfluous semicolon in macr a [1998/08/31] docs/7791 doc ipf(1) and ipfstat(1) should have been ip o [1998/09/01] gnu/7800 tar(1) does not recognize --gunzip option 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] ports/7845 tg Unbuffered /dev/vx0-output from Python 1. o [1998/09/07] bin/7846 /sbin/mount_* do not canonicalize the mou o [1998/09/07] misc/7850 lt_LT.* locale 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] misc/7873 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/13] docs/7914 doc no elf(5) manpage o [1998/09/15] ports/7932 torstenb man zshall doesn't work 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/19] ports/7992 ports New port: xemacs20-stepwise (XEmacs20 hac 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 o [1998/10/04] i386/8146 [patch] kzipboot serial console setup and a [1998/10/06] bin/8163 [patch] It is impossible to assign quotas o [1998/10/06] bin/8164 [patch] repquota incorrectly reports quot o [1998/10/06] i386/8171 [patch] Intel EtherExpress Pro 100 suppor o [1998/10/07] misc/8202 semop() is not wrapped for thread safety 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 f [1998/10/17] misc/8357 Segmentation fault while making SWARM-1.3 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/25] kern/8444 hm pcvt with more than 8 virtual consoles o [1998/10/25] docs/8445 doc Update of "Installing Mathematica on Free 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 Murphy's Laws o [1998/11/01] conf/8531 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/08] ports/8620 asami New option to colorls - -K, color only to 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 a [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/28] bin/8881 billf mv missing verbose switch 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/04] kern/8960 lnc driver does not set IFF_MULTICAST 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/14] bin/9078 tunefs cant access mounted devices (vs. m 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/20] ports/9150 nate Ports depending on jdk need to know where 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] conf/9246 allscreens_flags in /etc/rc.conf not work 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/02] bin/9281 awk asumes memory that is returned from m o [1999/01/03] i386/9283 ioctl(SNDCTL_DSP_SETFMT) on /dev/audio (p 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 hoek wrong macro names in groff_[ms|mm|mmse].7 o [1999/01/07] bin/9374 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] misc/9582 configApache command doesn't work for /st 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 a [1999/01/24] ports/9657 ports Progressive Networks' RealAudio proxy por 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] kern/9764 allow /bin/df not to list certain entries 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/29] misc/9778 Need to handle conflicting pthread.h and o [1999/01/29] ports/9786 cwt tk80 port doesn't create man page links 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] ports/9795 obrien The Handbook is not clear on how to deal o [1999/01/30] bin/9809 finger output format wrong f [1999/01/30] ports/9811 nectar New port: lang/gnomeguile o [1999/01/30] ports/9812 nectar New port: devel/libgtopbindings o [1999/01/31] ports/9840 asami patch allows ports to fetch their sources o [1999/01/31] conf/9845 Propose adding options to rc.conf and rc. 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/9893 NFS umount of regular file impossible o [1999/02/03] bin/9902 error in german (and some other) locale s o [1999/02/05] ports/9921 peter exmh2 ports update o [1999/02/06] bin/9931 config gives misleading error when duplic o [1999/02/07] ports/9954 ports new port devel/ACE o [1999/02/08] bin/9972 groff always built for US (letter) sized o [1999/02/09] gnu/9987 jdp wrong (for FreeBSD) ELF_DYNAMIC_INTERPRET o [1999/02/09] bin/9990 Enhancement to filename completeion in cs o [1999/02/09] i386/9991 new driver for National Instruments GPIB o [1999/02/09] ports/9993 kris New Port - graphics/libunfig o [1999/02/09] ports/9998 kris New port - graphics/mtv (MpegTV player) o [1999/02/10] i386/10004 jkh instalation of current version from FTP s o [1999/02/10] ports/10007ports Port of the mercury compiler version 0.8 o [1999/02/11] ports/10023kris 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/14] kern/10077 sheldonh dd'ing a ccd stripped partition sometimes o [1999/02/14] docs/10085 doc NIS Setup Tutorial o [1999/02/14] kern/10095 missing VGA description o [1999/02/14] docs/10098 doc Lack of overall guide for NIS setup o [1999/02/15] gnu/10112 /usr/src/gnu/usr.bin/patch sorely out of o [1999/02/16] kern/10116 acd driver patch to support PD/CD drive. o [1999/02/16] ports/10124ports UNIX|STAT pr submission failed to include f [1999/02/17] bin/10131 n_hibma bug in strptime(3) o [1999/02/18] docs/10146 jkh Release Notes and LINT for 3.1 include ha 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/10162se 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/10178torstenb USE_SOCKS=YES option broken for security/ o [1999/02/22] ports/10196torstenb Better startup scripts for ssh o [1999/02/22] ports/10215rvb net/coda_client and net/coda_server o [1999/02/23] ports/10227peter wrong sendmail path in rdist6-port s [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] conf/10244 100 character limit on any pathname in sy 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] misc/10349 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 o [1999/03/05] ports/10396asami 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/10454obrien Update: emulators/spim a [1999/03/06] kern/10455 pcaudio breakage o [1999/03/07] i386/10465 Must disable ex0 to install. o [1999/03/07] ports/10477ports The fakemail in lib-src fails to link (ne o [1999/03/08] bin/10493 ipfw's undocumented feature s [1999/03/09] bin/10508 obrien isc-dhcp puts garbage to text options, V2 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] ports/10532ports Port of GNU Pascal o [1999/03/10] bin/10538 sbin/nos-tun gives wrong usage message o [1999/03/11] bin/10546 Intel Pro/100 PC card has CIS string > CI o [1999/03/11] bin/10548 More useful default ifconfig behaviour sa o [1999/03/12] gnu/10555 jraynard [PATCH] awk dumps core o [1999/03/12] kern/10563 QIC 40/80 tape drive ft present in versio o [1999/03/13] bin/10568 obrien dhcp client receives garbage (dhclient pr 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] bin/10622 vi does not display Russian characters pr o [1999/03/16] i386/10623 DFLTPHYS in /usr/src/sys/i386/include/par o [1999/03/16] ports/10634ports Update the hylafax port to do a client in o [1999/03/17] ports/10639rse ports/web/wml must be upgraded and unbrok 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] docs/10664 doc Notes on 2.2.8 -> 3.1 migration 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 Non-ASCII chars on serial console with Re o [1999/03/19] kern/10678 Printing problems using ppc bus o [1999/03/19] ports/10682asami List mirror sites in MASTER_SITE_BACKUP - o [1999/03/22] kern/10728 sos WCD driver does not recognize a recovered o [1999/03/22] ports/10734pst Update of gdb port to 4.17 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 whois(1) client enchancements a [1999/03/26] misc/10804 billf whois(1) enhancement o [1999/03/26] ports/10806phk Update net/scotty to 2.1.10 o [1999/03/26] kern/10812 LINT configuration MAXDSIZ/DFLDSIZ mislea o [1999/03/26] ports/10813ports crossgo32 brokeness o [1999/03/27] bin/10825 daily script not executed or executed twi o [1999/03/28] docs/10840 jkh [PATCH] Add pcic double-loading bug fix t f [1999/03/28] ports/10844ports New port: adagdb o [1999/03/29] docs/10850 doc submitting a documentation change for sed o [1999/03/29] bin/10856 vty's from ttyvc - ttvf (maybe more?) do o [1999/03/29] kern/10860 bpf overwrites source ethernet addresses 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] ports/10916ports new port biology/molmol again f [1999/04/02] bin/10921 green I wished from(1) would count the number o o [1999/04/02] bin/10923 /usr/bin/cpp is an out-of-date wrapper fo o [1999/04/02] bin/10924 Extensions to biff(1) o [1999/04/03] bin/10931 biff b o [1999/04/04] ports/10945jmz X11 "sessreg" program does not update /va o [1999/04/06] bin/10980 With ctags -x no space is left between na o [1999/04/06] bin/10992 pthread_kill() doesn't deliver signals to 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] ports/11029ports Configure scripts for non ported applicat 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] ports/11034ports New ports of crazywwwboardle 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/11048obrien 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/12] kern/11109 ipfw.ko Makefile contains CFLAGS+= -DDIVE o [1999/04/13] misc/11111 Error opening terminal: su o [1999/04/13] bin/11114 make(1) does not work as documented with f [1999/04/13] bin/11121 green w(1) cannot handle more than one user on o [1999/04/13] misc/11126 vt100 termcap entry appears broken o [1999/04/14] ports/11134hoek existense of /usr/obj/usr/ports/shells/ba o [1999/04/14] ports/11138jmz New version of Xevil 2.01, I created a po o [1999/04/14] bin/11141 u_long is not big enough o [1999/04/15] misc/11149 Web page entry for BAFUG is incorrect 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/16] kern/11178 [PATCH] minor fix to /usr/include/sys/mbu 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/19] kern/11222 MFS does not sync from reboot syscall 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/21] docs/11258 doc suggestion to refine npx.4 o [1999/04/22] kern/11287 rfork(RFMEM...) doesn't share LDTs set by o [1999/04/22] misc/11289 makeflp.bat suggestion: create "kernel" d 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/25] misc/11316 [PATCH] HTTP proxy support for sysinstall o [1999/04/27] ports/11353asami Feature additions to bsd.port.mk. o [1999/04/27] ports/11354jmz Port fix: x11/XFree86 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/28] misc/11373 errata.txt for 3.1 o [1999/04/29] misc/11383 $Id$ missing in some files in etc [PATCH] o [1999/04/29] bin/11387 mount_cd9660 doesn't show rockridge filen o [1999/04/29] ports/11388torstenb 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/04/30] ports/11421jfitz upgrade p5-Date-Manip 5.33 -> 5.34 o [1999/05/01] ports/11430se incorrect int type causes floating point o [1999/05/02] misc/11448 Better looking VGA font for iso2 o [1999/05/02] ports/11460erich Update to the xlispstat port o [1999/05/03] misc/11478 Non-functional AFS support in KerberosIV o [1999/05/04] ports/11504chuckr Update ports math/octave o [1999/05/05] ports/11510nik new version of www/sitecopy (0.6.0) 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/07] misc/11569 Automatically run fsck when the file syst 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/11611billf 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/11] ports/11652ports New port (net/dictd) o [1999/05/11] misc/11653 obrien patch to allow DHCP configuration of inte 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] ports/11743torstenb inn-2.2 (nonfatal) premature stop of buil 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] ports/11786kuriyama gnupg-0.9.6 port does not install o [1999/05/19] misc/11788 booting problems o [1999/05/19] kern/11789 ELF machine definition missing for ARM o [1999/05/20] misc/11812 ftp5.freebsd.org can't find giflib-3.0 an o [1999/05/21] bin/11818 Added a feature to ping(8) o [1999/05/21] ports/11820asami 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/22] ports/11840asami Feature fixup: bsd.port.mk o [1999/05/24] ports/11879ports dclock's "-miltime" option and "*miltime" 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/27] conf/11905 sysinstall desktop changing inconvenience 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] ports/11963ports should update the ocaml-tk module and ins o [1999/05/31] ports/11964jmacd lang/STk port needs to be updated to STk- o [1999/05/31] kern/11968 kldload should call module entry point be o [1999/06/01] docs/11978 doc timed(8) manpage does not define '-F' swi 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/01] kern/11982 Three cleanup fixes for uthreads o [1999/06/02] conf/11989 pppd(8) output misplaced o [1999/06/02] bin/11997 Enhancement for lpr o [1999/06/02] ports/12001ports wmcdplay 1.0Beta1 05/09/1998 sometimes sk o [1999/06/03] misc/12013 patch for 12012 o [1999/06/03] kern/12014 Fix SysV Semaphore handling o [1999/06/04] conf/12026 /etc/rc.diskless1 refrences non-existant 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/06] kern/12053 fixes a few aio bugs, makes socket io bet o [1999/06/06] ports/12056ache [PATCH] hpack install files always in /us o [1999/06/06] ports/12057markm Perl5 library builds do not honour PREFIX 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/10] ports/12121obrien Update: mail/mutt o [1999/06/12] ports/12151ports New Ports: audio/timidity++-emacs o [1999/06/12] ports/12152ports New Ports: audio/timidity++-gtk o [1999/06/12] ports/12154ports New Ports: audio/timidity++-slang o [1999/06/12] ports/12155ports New Ports: audio/timidity++-motif o [1999/06/12] ports/12156ports New Ports: audio/timidity++-tcltk o [1999/06/12] ports/12157ports New Ports: audio/timidity++-xaw o [1999/06/12] ports/12158ports New Ports: audio/timidity++-xskin o [1999/06/12] ports/12160ports New Ports: japanese/timidity++-slang o [1999/06/12] ports/12161ports New Ports: japanese/timidity++-tcltk o [1999/06/13] ports/12188ports new port: pbs-2.1.11 (misc/PBS) a batch s o [1999/06/13] ports/12195ports submission of new port pgpenvelope o [1999/06/14] ports/12204andy Update port: graphics/EZWGL o [1999/06/14] misc/12209 termcap: "xterm" entry defines bogus capa o [1999/06/15] misc/12228 /etc/security don't search in all the fil o [1999/06/15] bin/12232 Dangling text on #endif causes cpp noise. o [1999/06/16] gnu/12238 bc 1.04 crashes with long formula typed i o [1999/06/16] kern/12241 jkh Req: GENERIC includes bpf device 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] kern/12258 Tuning the FM radio on new -Theatre serie o [1999/06/17] bin/12263 hoek "more" problems with long filenames f [1999/06/17] misc/12268 n_hibma weekly/catman will not work o [1999/06/18] ports/12271ports fix pkg_add with error message and add ne 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/12325asami 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] ports/12366billf finish the port for misc/mprime o [1999/06/23] ports/12368ports Pilot-link installs to ${PREFIX} = ${LOCA o [1999/06/23] bin/12375 mv(1) cannot inherit the file flags. o [1999/06/24] misc/12376 When mounting NFS dirs, /etc/rc doesn't g 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/26] ports/12403ports ssh port has undocumented X11 dependency f [1999/06/26] ports/12406ports New port for the LAM implementation of th 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/29] ports/12456chuckr graphics/xpdf: small fixes o [1999/06/30] bin/12461 it's handy to be able to send syslog mess o [1999/06/30] bin/12467 wollman ac(8) does not accept input from stdin o [1999/07/01] kern/12475 ctrl,shift,alt keys can be used as alock 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/02] ports/12490ports package xmine exits 1 with XawAsciiSource o [1999/07/02] ports/12492ports port misc/diction should be moved to text o [1999/07/03] kern/12495 3.1 install fails to detect Toshiba CDROM o [1999/07/03] ports/12503ports New Port: Willows toolkit (developers rel o [1999/07/04] ports/12515jfitz p5-Apache/scripts/install_httpd needs fix o [1999/07/05] ports/12518ports new port: ifmail-os-2.14.7 o [1999/07/05] ports/12522ports New port: cos o [1999/07/05] ports/12523ports New port: jdbcpool o [1999/07/05] bin/12528 [PATCH] tip's "tipout" child doesn't alwa o [1999/07/06] ports/12530peter squid22 port with --enable-ipf-transparen o [1999/07/06] ports/12536ports New port: lang/cu-prolog o [1999/07/06] kern/12543 [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/12548asami New 'fecth-recursive(-list)' targets in p o [1999/07/07] ports/12549ports imap-uw port doesn't use pw_expire to che o [1999/07/09] ports/12571ports Xfig port doesn't have Ghostscript suppor f [1999/07/11] kern/12594 sheldonh wrong sysctl descriptions f [1999/07/11] ports/12596torstenb pidentd is unstable in 3.2 and 4.0 o [1999/07/11] ports/12604peter New port version: transproxy 1.0 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/12] ports/12618ache poor trouble reporting by qpopper's pop_i o [1999/07/13] ports/12624ports New version of mxv which also works with o [1999/07/13] misc/12633 CMI8330 chip based integrated sound card o [1999/07/15] conf/12650 No card in /etc/pccard.conf.sample (coreg o [1999/07/15] ports/12654pst gnats port failes on "make install" o [1999/07/15] kern/12655 Kernel config file needs more commenting o [1999/07/15] ports/12656ports new port - gnujsp o [1999/07/16] ports/12661cpiazza new port: riva-glx (3d hardware accelerat o [1999/07/16] ports/12666andy New port: kcd-4.7.10 o [1999/07/16] kern/12668 The kernel clock goes slow with PLIP devi o [1999/07/16] ports/12674nik textproc/docproj port has an invalid depe o [1999/07/16] ports/12675chuckr [PATCH] textproc/sp port installs config. o [1999/07/16] docs/12679 dcs splash(4) contains incorrect references o [1999/07/18] ports/12692ports new port: gnome-vnc-0.1 o [1999/07/18] kern/12697 Out of swap handling [PATCH] o [1999/07/18] ports/12699ports new port: gnofin-0.5.10 o [1999/07/18] ports/12700jmz Errors in mtools.conf file o [1999/07/20] bin/12712 release/Makefile: mounting /some/dir with o [1999/07/20] ports/12721brian Leafnode 1.9.4 has enhancements and bug f o [1999/07/20] ports/12722ports new port: AT&T's DjVu library for scanned o [1999/07/20] kern/12723 Unnecessary use of magic numbers in F_[SG o [1999/07/20] ports/12725ache Doing a 'make install' for bash2 gets ins o [1999/07/20] ports/12726jfitz p5-Pg fixed o [1999/07/21] ports/12735ports New ports: lang/ghc o [1999/07/21] ports/12737jfitz regex for checking load avergaes is wrong o [1999/07/21] ports/12739ports port for the AT&T's DjVu Netscape plug-in o [1999/07/22] ports/12761wosch sysutils/stat doesn't terminate buffer an 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/22] bin/12767 doc Expand /etc/ttys manpage o [1999/07/22] bin/12768 billf Compilation warning for fortune.c o [1999/07/22] kern/12770 mount_msdos causes panic: kmem_malloc(134 o [1999/07/23] misc/12776 Add PAM hooks to rlogind and rshd f [1999/07/23] bin/12782 sheldonh xntpd doesn't handle interface aliases pr o [1999/07/24] ports/12787obrien port of GNU helloworld o [1999/07/24] bin/12789 Confusing error msg when dumping a filesy o [1999/07/24] ports/12790kris Update Port: maildrop 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/26] ports/12817kris gdict fix for conflict with dict port f [1999/07/26] bin/12825 sheldonh doscmd build depends on X o [1999/07/27] kern/12833 Support for TI1225 PCI to CardBus Bridge o [1999/07/27] ports/12835andy New port: libcgic-1.06 o [1999/07/27] ports/12836jfitz p5-Apache port mod_perl part is out of da o [1999/07/28] ports/12851jmz XFree86 needs change for pc98 o [1999/07/28] kern/12855 panic:softdep_flushfiles:looping, caused o [1999/07/28] ports/12864ache update: less-340 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/30] ports/12890obrien nmap seems to break under certain conditi o [1999/07/30] ports/12891torstenb Please update converters/recode to 3.5 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/07/31] ports/12899ports New port: wmnet-new o [1999/07/31] ports/12903ports new ports/database/p5-* o [1999/07/31] ports/12904ports new ports/devel/gperf o [1999/08/01] ports/12915ports Add elm 2.5 to ports o [1999/08/01] ports/12916wosch Update Checkbot to 1.56 o [1999/08/02] ports/12921ports [PATCH] palm/xcopilot contains odd markup o [1999/08/02] ports/12924ports port of GRacer, a 3D motor sports simulat o [1999/08/02] docs/12933 n_hibma sio.4 misses description of 0x0080 flag o [1999/08/02] ports/12934ache procmail 3.13 port doesn't have "install- o [1999/08/03] bin/12939 add flag to quota to suppress NFS quota c o [1999/08/03] ports/12941ports New port: Hyperlatex (print/hyperlatex) 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] docs/12951 doc missing link to japanese mailing list gui o [1999/08/04] ports/12952ports make _PORT_USE touch cookies by variable, o [1999/08/04] ports/12953ports tcl81-thread breaks package naming conven 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/04] docs/12969 doc Informacion incorrecta para versiones Fre o [1999/08/04] ports/12974ports New port - numchar (converts phone number 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] misc/12992 sector size independent patch for msdosfs o [1999/08/05] i386/12993 gibbs "ahc0: Data Parity Error Detected during o [1999/08/05] docs/12994 hoek Update to getopt.3 to agree with style.9 o [1999/08/06] bin/13000 vi core dumped o [1999/08/06] ports/13006erich update emulators/x48 to 0.4.1d o [1999/08/07] ports/13012kris update port: xwhois-0.3.6 to 0.3.7 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 doc incorrect (old/obsolete) manpage for name o [1999/08/08] misc/13036 de doesn't work with DEC 21143 based PCI o [1999/08/08] conf/13038 [Patch] pccard.conf for I-O Data PCLATE/ 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] bin/13046 brian [PATCH] ppp don't close session on modem 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/10] ports/13065marcel emulators/linux_base has wrong timezone o [1999/08/11] bin/13068 billf Don't stamp out score files! o [1999/08/11] bin/13070 sheldonh line(1) as required by Unix 98 o [1999/08/11] bin/13071 sheldonh link(1) as required by Unix 98 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] bin/13074 sheldonh unlink(1) as required by Unix 98 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/11] ports/13085ports new port: p5-SQL-Statement o [1999/08/11] misc/13089 sysinstall repeatedly installs a distribu a [1999/08/12] bin/13091 sheldonh [PATCH] pdksh-derived replacement for tes 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 doc typo in ms(7) o [1999/08/13] misc/13117 CVS repo src/lib/libc_r/uthread incorrect o [1999/08/13] ports/13124ports New port, LinAlg; request for local hosti o [1999/08/13] bin/13128 billf pkg_delete doesn't handle absolute pathna o [1999/08/13] ports/13129torstenb Postfix Port Ignores MANPREFIX o [1999/08/13] ports/13133chuckr update: xpdf 0.90 o [1999/08/14] ports/13136ports new port: guiTAR 0.1.4 o [1999/08/14] bin/13143 billf changing mount flags on a mounted filesys o [1999/08/14] ports/13149ports New port : math/topaz o [1999/08/15] misc/13152 systemwide username too short (currently o [1999/08/15] docs/13153 doc fdc.4 has typo (a line which begin with ' o [1999/08/15] ports/13159ports New port: java/collections o [1999/08/15] ports/13160ports New port: java/jaf o [1999/08/15] kern/13161 alfred mounting on top of a mounted file system o [1999/08/15] ports/13162ports New port: java/infobus o [1999/08/15] ports/13163ports New port: java/javamail o [1999/08/15] kern/13164 kthread_exit stops, but doesn't release p o [1999/08/15] ports/13167ports [PATCH] security/ssh package keygen fails o [1999/08/15] i386/13171 "config" not quite right for kernel not n o [1999/08/16] ports/13173andy New port: yiff-0.33 o [1999/08/16] kern/13176 cannot set _default_ colours for console o [1999/08/16] misc/13185 "tengo problemas con el pop3" o [1999/08/17] ports/13191andy New port: fire-1.0 o [1999/08/17] docs/13194 doc Bad info in handbook/kernelconfig o [1999/08/17] docs/13197 mpp aio_*(2) not installing by make installwo o [1999/08/17] ports/13201ports new port: xmess (X11 emulator for game co 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/17] kern/13215 ALPS GlidePoint in Sony Z505 not recogniz 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] docs/13225 doc fpa.4 seems to be i386 specific and shoul o [1999/08/18] kern/13232 panic("rtfree"); when sending bootp reque s [1999/08/18] bin/13235 mpp allow preprocessing with tbl(1) for nroff o [1999/08/18] bin/13236 billf Patch for whois to use UK Nominet databas o [1999/08/18] conf/13249 sysinstall not installing from a local ft o [1999/08/18] ports/13251andy 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/19] misc/13265 lock doesn't lock (doesn't work) o [1999/08/20] misc/13266 Removal of #defines and addition of const o [1999/08/20] ports/13267andy New port: glasteroids-1.0 o [1999/08/20] misc/13275 inter.phone has old codes for Guatemala o [1999/08/20] bin/13278 rogue: killed by fire corrupts score file o [1999/08/20] kern/13281 wollman Support for VLANs missing? o [1999/08/20] misc/13282 partial compliance of dlopen to the Singl o [1999/08/21] ports/13291andy New port: xap-xwf-0.7.8 o [1999/08/21] ports/13297ports [NEW PORT] PyOpenGL - An OpenGL interface o [1999/08/21] kern/13307 Cant build kernet for 2.2.8 o [1999/08/21] bin/13309 Fixes to nos-tun o [1999/08/21] ports/13312ports new port dhid a [1999/08/21] kern/13314 sheldonh can't compile when softupdates + debug. o [1999/08/22] ports/13319dbaker rc5des443 port does not nice o [1999/08/22] ports/13320ports New port: cfingerd o [1999/08/22] ports/13324ports New port: zope-2.0.0b5 o [1999/08/22] misc/13326 additional timeval interfaces for 4.0. o [1999/09/06] ports/13606ports Apache's suEXEC wrapper doesn't enforce u o [1999/09/07] conf/13609 Some deamons not replacable at boot time o [1999/09/07] ports/13614ports xdm and wdm do not set environment variab o [1999/09/07] ports/13619ports www/p5-libwww incorrect dependency orderi o [1999/09/07] ports/13633ports Better location for samba's private direc o [1999/09/08] bin/13649 billf Enhancement to PKG_INSTALL tools (4.0-CUR o [1999/09/08] ports/13650asami Port Conflict Checking for bsd.port.mk o [1999/09/09] docs/13657 doc mklocale(1) man errors o [1999/09/09] kern/13666 buggy filesystems are built as modules o [1999/09/09] ports/13677ports Misc. Ports fix ups. o [1999/09/10] ports/13684ports Just a port submission o [1999/09/10] ports/13689ports Update port www/wwwcount o [1999/09/10] ports/13690sumikawa upgrade ports/palm/syncal to 0.8.1 o [1999/09/10] bin/13692 umount(8) does not unmount filesystems wi o [1999/09/11] ports/13694ports Y2K patch for slurp port o [1999/09/11] bin/13697 pstat(8) command line option '-w' not fun o [1999/09/11] misc/13698 Here is: a euro character for syscons & i o [1999/09/11] ports/13699ports mail/qmail port update to handle >512 dns o [1999/09/11] ports/13700ports security/stunnel patch so configure can l o [1999/09/11] ports/13701ports The qtarch-site has moved o [1999/09/11] ports/13704ports net/gnome-icu/patches/patch-ae broken zh_ o [1999/09/11] ports/13705ports p5-Apache port is outdated and too comple o [1999/09/12] i386/13706 FreeBSD identifies all 80486 processors a o [1999/09/12] ports/13708ports Patch to upgrade devel/pcre up to 2.08 o [1999/09/12] ports/13712sada netscape46-communicator port missing Fort o [1999/09/12] ports/13713jseger upgrade gnugo port to 2.4 o [1999/09/13] ports/13716ports tac_plus.F4.0.2 port for FreeBSD o [1999/09/13] ports/13717ports Fixed port: imlib -> 1.9.7 o [1999/09/13] ports/13718ports Fixed port: ORBit o [1999/09/13] ports/13719ports Fixed port: esound o [1999/09/13] ports/13720ports Fixed port: gnomelibs -> 1.0.16 o [1999/09/13] ports/13723ports upgrade russian/apache port to 1.3.9 o [1999/09/13] kern/13725 sheldonh Comment in LINT: extracting config file f o [1999/09/13] ports/13727ports new port: www/netscape-remote o [1999/09/13] ports/13734billf ifhp-3.3.9 port o [1999/09/13] misc/13737 at Login: My name is entered, but Passwo o [1999/09/13] ports/13743ports New Port: net/priss o [1999/09/14] ports/13745ports [NEW PORT] wamcc - prolog-to-c compiler o [1999/09/14] ports/13753ports Nonexisting file in PLIST o [1999/09/14] ports/13754ports ports:devel/yacl - fix for new gcc/egcs o [1999/09/14] ports/13755ports Wrong MASTER_SITES in ports/databases/int o [1999/09/15] ports/13756ports New port: mail/minimalist o [1999/09/15] bin/13758 [PATCH] adding current download throughpu o [1999/09/15] bin/13759 Makefile for sendmail configurations o [1999/09/15] ports/13760ports new port: www/udmsearch o [1999/09/15] ports/13761ports Just an upgrade to the X-Files port o [1999/09/15] ports/13762ports Additional patches for editors/elvis o [1999/09/15] docs/13763 doc ambiguity in vidcontrol(1) manpage o [1999/09/15] kern/13764 yokota [PATCH] Stop syscons from flushing histor o [1999/09/15] docs/13767 doc rstat_svc(8) manpage present, but /etc/rs o [1999/09/15] conf/13769 NATD is not compatible with the "simple" o [1999/09/15] kern/13770 phk Almost clone update for kernel ppp implem o [1999/09/16] bin/13781 [PATCH] allow tcpdump to print packet con o [1999/09/16] ports/13784ports xfig docs not in a share hierarchy o [1999/09/17] ports/13786ports New port for GHC-4.04 o [1999/09/17] ports/13788ports aclgen port o [1999/09/17] ports/13789ports update to www/fcgi-devkit port to include o [1999/09/17] docs/13792 doc Difficult to find documentation of "secur o [1999/09/17] bin/13799 [patch] teach vidcontrol there are up to o [1999/09/17] ports/13800se Patches attached for kdelibs-1.1.1, fix ' o [1999/09/18] misc/13807 data-sensitivity buglet in 'make release' o [1999/09/18] ports/13808ports linux-rvplayer port improved a'la netscap o [1999/09/18] ports/13809ports new port: sysutils/wmbattery o [1999/09/19] docs/13813 doc Commercial Vendors: NetWolves Corporation o [1999/09/19] docs/13815 doc Out-of-date FAQ entries o [1999/09/19] ports/13821ports New port: games/xpuyopuyo o [1999/09/19] ports/13823ports stat port not formatting device node o [1999/09/19] ports/13826ports gpasman update 1.1.3 -> 1.3.0 o [1999/09/19] ports/13827obrien Update port: lang/mawk o [1999/09/19] ports/13832se kdebase11 doesn't DTRT when PREFIX is set o [1999/09/19] ports/13833se make PREFIX=/foo/bar/quux broken for kdeu o [1999/09/19] ports/13834se make PREFIX= broken in kdesupport11 o [1999/09/19] ports/13835se Fix 'make PREFIX=...' for kdegames11 o [1999/09/19] ports/13840se 'make PREFIX' fails for kdenetwork11 o [1999/09/19] kern/13841 ISDN i4b does not hang up o [1999/09/19] ports/13842se 'make PREFIX' fails for kdemultimedia s [1999/09/19] kern/13843 ken da driver does not support 'CDIOCEJECT' i o [1999/09/19] kern/13846 [PATCH] remove some kernel compile warnin o [1999/09/20] kern/13850 detect more VGA cards o [1999/09/20] ports/13851ports [PATCH] Global CC and CFLAGS settings ign o [1999/09/20] ports/13856ports New ports: fujiplay-1.33(graphics/fujipla o [1999/09/20] ports/13858ports glib 1.2.3, libtool 1.3.3, gtk 1.2.3 inco o [1999/09/20] ports/13860ports update bgrab port to latest version o [1999/09/20] ports/13861ports New port submission - ddup-2.0.4 o [1999/09/20] conf/13863 obrien dhclient-script doesn't update route if n o [1999/09/20] ports/13865ports info fix for postgresql o [1999/09/20] misc/13867 Cannot install source of X11 s [1999/09/21] bin/13869 sheldonh man program saves multiple cached copies o [1999/09/21] bin/13870 "ps tpt" produces "ps: /dev/ttypT: No suc o [1999/09/21] ports/13874ports ports update to openldap-1.2.7 o [1999/09/21] docs/13878 doc No isnanf(3) documentation o [1999/09/21] ports/13880ports upgrade cgoban port to 1.9.8 o [1999/09/21] ports/13881ports upgrade devel/ftnchek to 2.11.0 o [1999/09/21] bin/13882 mount -p is missing the quota options o [1999/09/21] kern/13883 Can't have a MFS filesystem > 512MB o [1999/09/21] conf/13886 3.3-RELEASE /stand/sysinstall wants XF863 o [1999/09/21] ports/13887ports New port (fmirror) f [1999/09/21] bin/13889 ru /usr/bin/chmod +t and /usr/bin/chmod +s h o [1999/09/21] ports/13890ports New ports:gru-8087 o [1999/09/22] docs/13891 doc Submission for commerical vendor page o [1999/09/22] misc/13895 nonexistent words in /usr/share/dict/web2 o [1999/09/22] ports/13896ports new port: misc/dictd-client o [1999/09/22] ports/13897ports Update port: graphics/gimp1-i18n o [1999/09/22] ports/13898ports new port: misc/dictd o [1999/09/22] ports/13899ports port submission: xmsg-1.0 o [1999/09/22] bin/13901 strptime breaks when handling some numeri o [1999/09/22] ports/13903ports Update port: graphics/xfractint o [1999/09/22] ports/13905ports Update port: print/lout to 3.17 o [1999/09/22] ports/13906ports port submission: biffer-1.0 o [1999/09/22] conf/13907 dummynet.4 correction, rc addition of o [1999/09/22] ports/13908obrien Can't compile mutt o [1999/09/22] bin/13909 /etc/security problems: IPFIREWALL and pa o [1999/09/22] docs/13914 doc global(1) manpage does not explain -v opt 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/23] ports/13925ports Brand new port for xcut-0.2. o [1999/09/23] ports/13926asami Patch to allow subdirectories in DISTFILE o [1999/09/23] ports/13927ports textproc/htdig updated o [1999/09/23] bin/13928 Patch for Swedish LC_COLLATE o [1999/09/24] gnu/13935 FreeBSD uses an obsolete version of grep o [1999/09/24] i386/13936 No clear indictaion of how much space to o [1999/09/24] ports/13942ports new port: games/wmminichess o [1999/09/25] docs/13946 doc Various updates to handbook/kernelconfig/ o [1999/09/25] ports/13948ports naim port installs empty man page o [1999/09/25] docs/13949 doc Various fixes to faq/book.sgml o [1999/09/25] docs/13950 doc webpage idea o [1999/09/25] ports/13952ports update emulators/wine to 990923 (supersed o [1999/09/25] docs/13953 doc BRU Product Update o [1999/09/25] docs/13954 doc Listing on Consulting Page: Collective Te o [1999/09/25] docs/13955 doc Vendor: CRiSP visual text editor o [1999/09/25] docs/13956 doc commercial vendor: JAV-Associates Consult o [1999/09/25] docs/13957 doc Correction to your website for ZNYX Corp. o [1999/09/25] docs/13958 doc consultant page submission: Atlas Softwar o [1999/09/25] docs/13959 doc cgi notes o [1999/09/25] docs/13960 doc Consulting group in Melbourne, Australia o [1999/09/25] docs/13961 doc Commercial Vendors - Consulting: Peter Br o [1999/09/25] docs/13962 doc Commercial Vendors - Consulting: Internet o [1999/09/25] docs/13963 doc Request for listing in Consultants Page: o [1999/09/25] docs/13964 doc Vendor: Vancouver Internetworking o [1999/09/25] docs/13966 doc Commercial Vendor list: Parabase Technolo o [1999/09/25] docs/13967 doc FreeBSD Related Publications in Korea o [1999/09/25] docs/13969 doc Commercial Vendors - Hardware: ActiveWire o [1999/09/25] docs/13970 doc FreeBSD Newbie Newsletter o [1999/09/25] docs/13971 doc Vendor: BSD case badges o [1999/09/26] ports/13976mharo proftpd-1.2.0p6 port o [1999/09/26] ports/13977ports Update to java/jfc port o [1999/09/26] kern/13979 [PATCH] add serial number to IDE HD probe o [1999/09/26] docs/13984 doc additional entry in hardware section o [1999/09/26] ports/13986ports new port: sysutils/gnometoaster o [1999/09/26] ports/13987ports Update bochs port to the latest version o [1999/09/26] gnu/13989 SIGWINCH corrupts the display of a multil o [1999/09/26] ports/13991ports update ports : windowmaker-i18n 0.61.0 o [1999/09/27] ports/13994ports update to ports/devel/ORBit o [1999/09/27] ports/13999nik sitecopy is version up! 0.8.0 -> 0.8.1 1229 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 Sep 27 11: 1:19 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from gatekeeper.sterlingdirect.com (gatekeeper.sterlingdirect.com [199.217.179.194]) by hub.freebsd.org (Postfix) with ESMTP id 1DA7314BE9 for ; Mon, 27 Sep 1999 11:01:09 -0700 (PDT) (envelope-from BPalliser@sterlingdirect.com) Received: (from daemon@localhost) by gatekeeper.sterlingdirect.com (8.8.5/8.8.5) id NAA24069 for ; Mon, 27 Sep 1999 13:01:07 -0500 (CDT) Received: from unknown(192.168.0.221) by gatekeeper.sterlingdirect.com via smap (V1.3) id sma024067; Mon Sep 27 13:01:03 1999 Received: by SDI-MAIL with Internet Mail Service (5.5.2448.0) id ; Mon, 27 Sep 1999 13:00:22 -0500 Message-ID: From: BillPalliser To: freebsd-bugs@freebsd.org Subject: Date: Mon, 27 Sep 1999 12:59:56 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2448.0) Content-Type: text/plain Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I am running FreeBSD 2.2.1 What do I need to do to make it Y2K compliant? Is there a patch that I need to download, and where can I find it? Thanks Billp@sterlingdirect.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Sep 27 12:59:18 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from dt014n8c.san.rr.com (dt014n8c.san.rr.com [24.30.129.140]) by hub.freebsd.org (Postfix) with ESMTP id E77B215731 for ; Mon, 27 Sep 1999 12:59:04 -0700 (PDT) (envelope-from Doug@gorean.org) Received: from localhost (doug@localhost) by dt014n8c.san.rr.com (8.9.3/8.8.8) with ESMTP id MAA08665; Mon, 27 Sep 1999 12:59:02 -0700 (PDT) (envelope-from Doug@gorean.org) Date: Mon, 27 Sep 1999 12:59:01 -0700 (PDT) From: Doug X-Sender: doug@dt014n8c.san.rr.com To: BillPalliser Cc: freebsd-bugs@freebsd.org Subject: Re: your mail In-Reply-To: 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 Mon, 27 Sep 1999, BillPalliser wrote: > I am running FreeBSD 2.2.1 What do I need to do to make it Y2K compliant? Upgrade to 3.3-Stable. Good luck, Doug PS, for future reference this should have been sent to freebsd-questions. -- "Stop it, I'm gettin' misty." - Mel Gibson as Porter, "Payback" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Sep 27 13:38:40 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id 3906114D0E for ; Mon, 27 Sep 1999 13:38:37 -0700 (PDT) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.9.3/8.9.3) id QAA10399; Mon, 27 Sep 1999 16:38:36 -0400 (EDT) (envelope-from wollman) Date: Mon, 27 Sep 1999 16:38:36 -0400 (EDT) From: Garrett Wollman Message-Id: <199909272038.QAA10399@khavrinen.lcs.mit.edu> To: BillPalliser Cc: freebsd-bugs@FreeBSD.ORG In-Reply-To: References: Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org < said: > I am running FreeBSD 2.2.1 What do I need to do to make it Y2K compliant? Upgrade to a more recent version, such as 3.3. The FreeBSD Project will not suggest that any prior version may be free of Y2K bugs. Some of the known bugs are summarized on the FreeBSD Project's Web pages under Y2K, which you are advised to read. (You should also provide a subject for your message should you send mail to this list again.) -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 Mon Sep 27 16:10: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6BE0B154CE for ; Mon, 27 Sep 1999 16:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA99643; Mon, 27 Sep 1999 16:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 7E05514F08; Mon, 27 Sep 1999 16:00:27 -0700 (PDT) Message-Id: <19990927230027.7E05514F08@hub.freebsd.org> Date: Mon, 27 Sep 1999 16:00:27 -0700 (PDT) From: youki@center.osaka-u.ac.jp To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: kern/14006: pas2_pcm.c pcm playback problem, with fix Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14006 >Category: kern >Synopsis: pas2_pcm.c pcm playback problem, with fix >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Sep 27 16:10:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Youki Kadobayashi >Release: 3.3-RELEASE >Organization: Computation Center, Osaka University >Environment: FreeBSD xps3.aist-nara.ac.jp 3.3-RELEASE FreeBSD 3.3-RELEASE #6: Tue Sep 28 07:36:54 JST 1999 youki-k@xps3.aist-nara.ac.jp:/usr/src/kame/freebsd3/sys/compile/DELL.v6 i386 PC with PAS16 card >Description: pas2_pcm.c does not calculate sampling rate correctly. As a result, stereo audio playback occurs at higher pitch. >How-To-Repeat: mpg123 someaudiofile.mp3 >Fix: I verified the following patch fixes the problem. *** /sys/i386/isa/sound/pas2_pcm.c.bak Thu Jul 29 21:36:54 1999 --- /sys/i386/isa/sound/pas2_pcm.c Tue Sep 28 07:41:32 1999 *************** *** 66,77 **** if (arg < 5000) arg = 5000; - foo = (1193180 + (arg / 2)) / arg; - arg = 1193180 / foo; - if (pcm_channels & 2) ! foo = foo >> 1; pcm_speed = arg; tmp = pas_read(FILTER_FREQUENCY); --- 66,77 ---- if (arg < 5000) arg = 5000; if (pcm_channels & 2) ! foo = (1193180 + arg) / (arg * 2); ! else ! foo = (1193180 + (arg / 2)) / arg; + arg = 1193180 / foo; pcm_speed = arg; tmp = pas_read(FILTER_FREQUENCY); >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 Sep 27 21:20: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7D46215714 for ; Mon, 27 Sep 1999 21:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA21877; Mon, 27 Sep 1999 21:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from localhost.primenet.com (ip-54-016.scf.primenet.com [206.132.54.16]) by hub.freebsd.org (Postfix) with ESMTP id 2674C1589C for ; Mon, 27 Sep 1999 21:12:08 -0700 (PDT) (envelope-from jreynold@primenet.com) Received: (from jreynold@localhost) by localhost.primenet.com (8.9.3/8.9.3) id VAA89257; Mon, 27 Sep 1999 21:14:16 -0700 (MST) (envelope-from jreynold) Message-Id: <199909280414.VAA89257@localhost.primenet.com> Date: Mon, 27 Sep 1999 21:14:16 -0700 (MST) From: jreynold@primenet.com Reply-To: jreynold@primenet.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/14009: Seagate TapeStor 8000 needs scsi quirk entry Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14009 >Category: kern >Synopsis: Seagate TapeStor 8000 (firmware 4.11) needs quirk entry >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Sep 27 21:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: John Reynolds >Release: FreeBSD 3.3-STABLE i386 >Organization: Four Guys' Plumbing, south Chandler. >Environment: TapeStor 8000 with 4.11 firmware sitting on 7890 Adaptec controller. Running 3.3-STABLE. Problem existed in 3.2-STABLE as well (and -current I assume too). >Description: Running 3.3-STABLE. Had problems getting new TapeStor 8000 from Seagate to work properly. People on -scsi said to try "seteotmodel" to change the EOT characteristics from 2 to 1. This worked. I then modified scsi_sa.c to add a quirk entry that works to put this particular tape into '1-mode' automatically without having to remember to use the mt command. >How-To-Repeat: Using a TapeStor 8000 drive, try doing successive dump(8)'s to the tape using the non-rewinding device /dev/nrsa0. The drive will simply "freak out" and a hard reboot will be in order. Using this quirk entry or "mt seteotmodel 1" fixes the problem and allows multiple files to be placed onto the tape. >Fix: The following patch to src/sys/cam/scsi/scsi_sa.c was posted to -scsi over a week ago but has not been committed as of yet. I would appreciate it very much if someone would. Thank you! -------- --- scsi_sa.c Sun Aug 29 09:21:49 1999 +++ scsi_sa.c.new Wed Sep 22 07:17:36 1999 @@ -213,6 +213,10 @@ static struct sa_quirk_entry sa_quirk_table[] = { + { + { T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "Seagate", + "STT8000N*", "*"}, SA_QUIRK_1FM, 0 + }, { { T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "ARCHIVE", "Python 25601*", "*"}, SA_QUIRK_NOCOMP, 0 @@ -544,7 +548,7 @@ printf("unable to backspace over one of double" " filemarks at end of tape\n"); xpt_print_path(periph->path); - printf("it is possible that this device " + printf("it is possible that this device" " needs a SA_QUIRK_1FM quirk set for it\n"); softc->flags |= SA_FLAG_TAPE_FROZEN; } >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 Sep 27 22:18:48 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5B7F914DC2; Mon, 27 Sep 1999 22:18:47 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Received: (from mjacob@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA25588; Mon, 27 Sep 1999 22:18:47 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Date: Mon, 27 Sep 1999 22:18:47 -0700 (PDT) From: Message-Id: <199909280518.WAA25588@freefall.freebsd.org> To: jreynold@primenet.com, mjacob@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/14009: Seagate TapeStor 8000 (firmware 4.11) needs quirk entry Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Seagate TapeStor 8000 (firmware 4.11) needs quirk entry State-Changed-From-To: open->closed State-Changed-By: mjacob State-Changed-When: Mon Sep 27 22:18:15 PDT 1999 State-Changed-Why: picky picky picky... I have other changes I hadn't committed yet and was going to batch them, but okay.... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Sep 28 1: 0: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F0FC514D21 for ; Tue, 28 Sep 1999 01:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA42964; Tue, 28 Sep 1999 01:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from sibptus.tomsk.ru (sibptus.tomsk.ru [212.176.23.5]) by hub.freebsd.org (Postfix) with ESMTP id 447F014A0D for ; Tue, 28 Sep 1999 00:57:08 -0700 (PDT) (envelope-from tolik@sibptus.tomsk.ru) Received: (from tolik@localhost) by sibptus.tomsk.ru (8.8.8/8.8.8) id PAA28332; Tue, 28 Sep 1999 15:56:40 +0800 (TSD) (envelope-from tolik) Message-Id: <199909280756.PAA28332@sibptus.tomsk.ru> Date: Tue, 28 Sep 1999 15:56:40 +0800 (TSD) From: tolik@mpeks.tomsk.su Reply-To: tolik@mpeks.tomsk.su To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: gnu/14011: Unpredictable grep(1) output for 8-bit characters Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14011 >Category: gnu >Synopsis: grep(1) returned unpredictable output for 8-bit characters >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 Sep 28 01:00:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Anatoly A. Orehovsky >Release: FreeBSD 2.2.8-RELEASE i386 and others >Organization: SibPTUS >Environment: FreeBSD box where russian (for example) locale is set. >Description: If you wanted to search simple russian phrase with grep(1), then grep(1) returned unpredictable output. >How-To-Repeat: $ export LANG=ru_RU.KOI8-R $ echo '27 ÓÅÎ' | grep '27 ÓÅÎ' # search '27 Sep' by russian and grep's output is nothing If input file contain many strings '27 ÓÅÎ', then grep returned unpredictable output or nothing. >Fix: Workaround: Using grep's -i option (if case sensitive not needed): $ export LANG=ru_RU.KOI8-R $ echo '27 ÓÅÎ' | grep -i '27 ÓÅÎ' 27 ÓÅÎ Patch to fix problem: patch.092899: --- grep/kwset.c.orig Tue Sep 28 15:19:49 1999 +++ grep/kwset.c Tue Sep 28 15:20:42 1999 @@ -527,7 +527,7 @@ { struct kwset *kwset; register unsigned char *d1; - register char *ep, *sp, *tp; + register unsigned char *ep, *sp, *tp; register int d, gc, i, len, md2; kwset = (struct kwset *) kws; __ Anatoly A. Orehovsky. AO9-RIPE. AAO1-RIPN http://www.tekmetrics.com/transcript.shtml?pid=6064 >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 Sep 28 1:14:32 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0C1E014D96; Tue, 28 Sep 1999 01:14:31 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA44253; Tue, 28 Sep 1999 01:14:30 -0700 (PDT) (envelope-from ru@FreeBSD.org) Date: Tue, 28 Sep 1999 01:14:30 -0700 (PDT) From: Message-Id: <199909280814.BAA44253@freefall.freebsd.org> To: ru@FreeBSD.org, freebsd-bugs@FreeBSD.org, wosch@FreeBSD.org Subject: Re: gnu/14011: grep(1) returned unpredictable output for 8-bit characters Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: grep(1) returned unpredictable output for 8-bit characters Responsible-Changed-From-To: freebsd-bugs->wosch Responsible-Changed-By: ru Responsible-Changed-When: Tue Sep 28 01:05:59 PDT 1999 Responsible-Changed-Why: Over to the maintainer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Sep 28 2:10:17 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C38E915581 for ; Tue, 28 Sep 1999 02:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA48820; Tue, 28 Sep 1999 02:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 28 Sep 1999 02:10:02 -0700 (PDT) Message-Id: <199909280910.CAA48820@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Pierre Beyssac Subject: Re: kern/11988: recvmsg with a cmsghdr but no iovec is broken Reply-To: Pierre Beyssac Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/11988; it has been noted by GNATS. From: Pierre Beyssac To: FreeBSD-gnats-submit@freebsd.org Cc: dot@dotat.at, brian@Awfulhak.org Subject: Re: kern/11988: recvmsg with a cmsghdr but no iovec is broken Date: Tue, 28 Sep 1999 11:04:16 +0200 Hello, Here's a kernel patch that fixes the panic under -current. Could you try it on your system and tell me if it works for you? I'm still investigating the rest of the PR regarding how descriptor passing should work. Pierre Index: uipc_socket2.c =================================================================== RCS file: /usr/cvs/src/sys/kern/uipc_socket2.c,v retrieving revision 1.50 diff -u -r1.50 uipc_socket2.c --- uipc_socket2.c 1999/09/19 02:16:19 1.50 +++ uipc_socket2.c 1999/09/28 08:23:53 @@ -730,8 +730,15 @@ if (sb->sb_flags & SB_LOCK) panic("sbflush: locked"); - while (sb->sb_mbcnt && sb->sb_cc) + while (sb->sb_mbcnt) { + /* + * Don't call sbdrop(sb, 0) if the leading mbuf is non-empty: + * we would loop forever. Panic instead. + */ + if (!sb->sb_cc && (sb->sb_mb == NULL || sb->sb_mb->m_len)) + break; sbdrop(sb, (int)sb->sb_cc); + } if (sb->sb_cc || sb->sb_mb || sb->sb_mbcnt) panic("sbflush: cc %ld || mb %p || mbcnt %ld", sb->sb_cc, (void *)sb->sb_mb, sb->sb_mbcnt); } -- Pierre Beyssac pb@enst.fr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Sep 28 6:10: 7 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 957771521E for ; Tue, 28 Sep 1999 06:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA07433; Tue, 28 Sep 1999 06:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 28 Sep 1999 06:10:01 -0700 (PDT) Message-Id: <199909281310.GAA07433@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ruslan Ermilov Subject: Re: misc/13992: routed exit after some day of work with signal 6 (core dump) Reply-To: Ruslan Ermilov Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/13992; it has been noted by GNATS. From: Ruslan Ermilov To: Riccardo Torrini Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: misc/13992: routed exit after some day of work with signal 6 (core dump) Date: Tue, 28 Sep 1999 15:56:26 +0300 --bp/iNruPH9dso1Pn Content-Type: text/plain; charset=us-ascii On Tue, Sep 28, 1999 at 12:52:08PM +0200, Riccardo Torrini wrote: > Ruslan Ermilov wrote: > > > Great! Send me this core file as well, and in two minutes after > > that you'll know what happened, I'm very close to it. > > Here it is. > The problem is that gettimeofday(2) returns a garbage for you, and the timeout value being passed to select(2) becomes invalid: : 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"... : Core was generated by `routed'. : Program terminated with signal 6, Abort trap. : #0 0x806d114 in kill () : (gdb) where : #0 0x806d114 in kill () : #1 0x806c608 in abort () : #2 0x804c208 in logbad (dump=1, p=0x80718c7 "select: %s") : at /usr/src/sbin/routed/main.c:901 : #3 0x804b90b in main (argc=0, argv=0xbfbfdbfc) : at /usr/src/sbin/routed/main.c:468 : #4 0x80480e9 in _start () : (gdb) up 3 : #3 0x804b90b in main (argc=0, argv=0xbfbfdbfc) : at /usr/src/sbin/routed/main.c:468 : 468 BADERR(1,"select"); : (gdb) list : 463 trace_flush(); : 464 ibits = fdbits; : 465 n = select(sock_max, &ibits, 0, 0, &wtime); : 466 if (n <= 0) { : 467 if (n < 0 && errno != EINTR && errno != EAGAIN) : 468 BADERR(1,"select"); : 469 continue; : 470 } : 471 : 472 if (FD_ISSET(rt_sock, &ibits)) { : (gdb) print sock_max : $1 = 6 : (gdb) print wtime : $2 = {tv_sec = 3, tv_usec = 695150852} ^^^^^^^^^ that's why select(2) returned EINVAL : (gdb) print ifinit_timer : $3 = {tv_sec = 184988, tv_usec = 841300} : (gdb) print now : $4 = {tv_sec = 184985, tv_usec = -694309552} ^^^^^^^^^^ what's up? : (gdb) print epoch : $5 = {tv_sec = 938326603, tv_usec = 194765} : (gdb) print clk : $6 = {tv_sec = 938511589, tv_usec = -695114787} ^^^^^^^^^^ bah, gettimeofday(2) failed! : (gdb) print prev_clk : $7 = {tv_sec = 938511586, tv_usec = 900334} : (gdb) quit Could you please compile and run an attached test program? Let it run until it finishes. If it finishes, it will print an incorrect date returned by gettimeofday(). Then please send me the output of this test (if any), as well as the output of the following commands: # cat /var/run/dmesg.boot # sysctl kern.timecounter.method machdep.tsc_freq Cheers, -- Ruslan Ermilov Sysadmin and DBA of the ru@ucb.crimea.ua United Commercial Bank, ru@FreeBSD.org FreeBSD committer, +380.652.247.647 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --bp/iNruPH9dso1Pn Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="gettimeofday_test.c" #include #include #include void main() { struct timeval tp; do { if (gettimeofday(&tp, (struct timezone *)NULL) == -1) { err(1, "gettimeofday"); } if (tp.tv_usec < 0) { errx(1, "invalid time returned: %ld:%ld", tp.tv_sec, tp.tv_usec); } } while (1); } --bp/iNruPH9dso1Pn-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Sep 28 7:40: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3BAD814FA1 for ; Tue, 28 Sep 1999 07:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA65371; Tue, 28 Sep 1999 07:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 28 Sep 1999 07:40:01 -0700 (PDT) Message-Id: <199909281440.HAA65371@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Riccardo Torrini Subject: Re: misc/13992: routed exit after some day of work with signal 6 (core dump) Reply-To: Riccardo Torrini Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/13992; it has been noted by GNATS. From: Riccardo Torrini To: Ruslan Ermilov Cc: Subject: Re: misc/13992: routed exit after some day of work with signal 6 (core dump) Date: Tue, 28 Sep 1999 16:20:43 +0200 This is a multi-part message in MIME format. --------------225CBA2E802707D70362173B Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Ruslan Ermilov wrote: > Let it run until it finishes. If it finishes, it will print an > incorrect date returned by gettimeofday(). After about 20minutes: gettimeofday_test: invalid time returned: 938527821:-695331771 # sysctl kern.timecounter.method machdep.tsc_freq kern.timecounter.method: 0 # sysctl -a | grep -i machdep machdep.consdev: { major = 0, minor = 0 } machdep.adjkerntz: -7200 machdep.disable_rtc_set: 0 machdep.wall_cmos_clock: 1 machdep.do_dump: 1 machdep.ispc98: 0 machdep.msgbuf: machdep.msgbuf_clear: 0 machdep.i8254_freq: 1193182 machdep.conspeed: 9600 # sysctl -a | grep -i tsc # sysctl -a | grep -i freq kern.acct_chkfreq: 15 machdep.i8254_freq: 1193182 Sorry, no machdep.tsc_freq (but a sound-like machdep.i8254_freq) If you are sure of spelling I am missing something :-( Ciao++ Vic. /------------------------+---------------------------------------\ | Riccardo "VIC" Torrini | W.W.W.: www.torrini.org // | | Via Montebello, 64 | e-mail : riccardo@torrini.org // | | 50123 Firenze (I) +--------------------------------\\//---| | phone: +39-055-286.574 | This space for rent :-) | \------------------------+---------------------------------------/ --------------225CBA2E802707D70362173B Content-Type: text/plain; charset=us-ascii; name="dmesg.boot" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="dmesg.boot" Copyright (c) 1992-1999 FreeBSD Inc. Copyright (c) 1982, 1986, 1989, 1991, 1993 The Regents of the University of California. All rights reserved. FreeBSD 3.3-STABLE #0: Wed Sep 22 08:57:26 CEST 1999 root@snail.fi.esaote.it:/usr/src/sys/compile/OCTOPUSSY Timecounter "i8254" frequency 1193182 Hz CPU: i486 DX2 (486-class CPU) Origin = "GenuineIntel" Id = 0x435 Stepping = 5 Features=0x3 real memory = 92274688 (90112K bytes) avail memory = 86380544 (84356K bytes) Preloaded elf kernel "kernel" at 0xc0318000. Preloaded splash_image_data "/boot/daemon.bmp" at 0xc031809c. Preloaded elf module "splash_bmp.ko" at 0xc03180ec. eisa0: Probing for devices on the EISA bus ahc0: at 0xbc00-0xbcff irq 15 ahc0: on eisa0 slot 11 ahc0: aic7770 >= Rev E, Twin Channel, A SCSI Id=7, B SCSI Id=7, primary A, 4/255 SCBs Probing for devices on the ISA bus: sc0 on isa sc0: VGA color <16 virtual consoles, flags=0x0> atkbdc0 at 0x60-0x6f on motherboard atkbd0 irq 1 on isa psm0 not found sio2 at 0x3e8-0x3ef irq 4 on isa sio2: type 16550A fdc0 at 0x3f0-0x3f7 irq 6 drq 2 on isa fdc0: FIFO enabled, 8 bytes threshold fd0: 1.44MB 3.5in wdc0 at 0x1f0-0x1f7 irq 14 on isa wdc0: unit 1 (atapi): , removable, intr, iordis acd0: drive speed 689KB/sec, 128KB cache acd0: supported read types: acd0: Audio: play, 255 volume levels acd0: Mechanism: ejectable tray acd0: Medium: no/blank disc inside, unlocked ppc0 at 0x378 irq 7 on isa ppc0: PC87332 chipset (NIBBLE-only) in COMPATIBLE mode ex0 at 0x2a0-0x2af irq 10 on isa ex0: Intel EtherExpress Pro/10, address 00:aa:00:ad:61:fd, connector TPE ex1 at 0x2b0-0x2bf irq 11 on isa ex1: Intel EtherExpress Pro/10, address 00:aa:00:ad:64:f0, connector TPE ex2 at 0x2c0-0x2cf irq 3 on isa ex2: Intel EtherExpress Pro/10, address 00:aa:00:ae:5c:e7, connector TPE ex3 at 0x2d0-0x2df irq 5 on isa ex3: Intel EtherExpress Pro/10, address 00:aa:00:ad:63:8e, connector TPE vga0 at 0x3b0-0x3df maddr 0xa0000 msize 131072 on isa npx0 on motherboard npx0: INT 16 interface ccd0-3: Concatenated disk drivers IP packet filtering initialized, divert enabled, rule-based forwarding enabled, logging disabled DUMMYNET initialized (990504) IP Filter: initialized. Default = pass all, Logging = enabled Waiting 15 seconds for SCSI devices to settle da0 at ahc0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-2 device da0: 10.000MB/s transfers (10.000MHz, offset 15), Tagged Queueing Enabled da0: 1003MB (2055035 512 byte sectors: 64H 32S/T 1003C) da1 at ahc0 bus 0 target 1 lun 0 da1: Fixed Direct Access SCSI-2 device da1: 10.000MB/s transfers (10.000MHz, offset 15), Tagged Queueing Enabled da1: 1003MB (2055035 512 byte sectors: 64H 32S/T 1003C) da3 at ahc0 bus 0 target 3 lun 0 da3: Fixed Direct Access SCSI-2 device da3: 10.000MB/s transfers (10.000MHz, offset 15), Tagged Queueing Enabled da3: 1010MB (2069860 512 byte sectors: 64H 32S/T 1010C) da2 at ahc0 bus 0 target 2 lun 0 da2: Fixed Direct Access SCSI-2 device da2: 10.000MB/s transfers (10.000MHz, offset 15), Tagged Queueing Enabled da2: 1001MB (2051460 512 byte sectors: 64H 32S/T 1001C) changing root device to da0s1a --------------225CBA2E802707D70362173B-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Sep 28 9:30:26 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A2BBB1571E for ; Tue, 28 Sep 1999 09:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA75950; Tue, 28 Sep 1999 09:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.disney.com (mail.disney.com [204.128.192.15]) by hub.freebsd.org (Postfix) with ESMTP id C13B215753 for ; Tue, 28 Sep 1999 09:24:59 -0700 (PDT) (envelope-from Jim.Pirzyk@disney.com) Received: from pain10.corp.disney.com (root@pain10.corp.disney.com [153.7.110.100]) by mail.disney.com (8.9.1/8.9.1) with SMTP id JAA07893 for ; Tue, 28 Sep 1999 09:24:49 -0700 (PDT) Received: from louie.fa.disney.com by pain.corp.disney.com with ESMTP for FreeBSD-gnats-submit@freebsd.org; Tue, 28 Sep 1999 09:24:49 -0700 Received: from snowhite.faf.fa.disney.com (snowhite.faf.fa.disney.com [153.7.115.1]) by louie.fa.disney.com (8.9.2/8.9.2) with ESMTP id JAA18564 for ; Tue, 28 Sep 1999 09:24:35 -0700 (PDT) (envelope-from pirzyk@fa.disney.com) Received: from demons.faf.fa.disney.com (demons.faf.fa.disney.com [153.7.115.13]) by snowhite.faf.fa.disney.com (8.9.2/8.9.2) with ESMTP id MAA10799 for ; Tue, 28 Sep 1999 12:24:34 -0400 (EDT) (envelope-from pirzyk@fa.disney.com) Received: (from pirzyk@localhost) by demons.faf.fa.disney.com (8.9.3/8.9.2) id MAA33527; Tue, 28 Sep 1999 12:24:33 -0400 (EDT) (envelope-from pirzyk@fa.disney.com) Message-Id: <199909281624.MAA33527@demons.faf.fa.disney.com> Date: Tue, 28 Sep 1999 12:24:33 -0400 (EDT) From: Jim.Pirzyk@disney.com Reply-To: Jim.Pirzyk@disney.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/14018: vinum & Raid 5 errors Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14018 >Category: kern >Synopsis: vinum + Raid5 Causes system panics and hangs >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 Sep 28 09:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Jim Pirzyk >Release: FreeBSD 3.3-RELEASE i386 >Organization: >Environment: Setup a Raid 5 partition in vinum with 4 9GB drives. The raid5 configuration looked like this: # Vinum configuration of demons.faf.fa.disney.com, saved at Tue Sep 28 08:11:34 1999 drive a device /dev/da0h drive b device /dev/da1h drive c device /dev/da2h drive d device /dev/da3h volume garage plex org raid5 256k sd drive a len 0 sd drive b len 0 sd drive c len 0 sd drive d len 0 A core dump is available. System has been changed to use striped filesystem and is stable. The filesystem also has quotas and softupdates. Removed softupdates from the partition and still failed. Removed it from the kernel and the system still failed. Only removing the raid5 partition seems to have solved the problem. >Description: The system would hang or panic after about 6 hours. The system panic messages would say 'page fault while in kernel mode' Here is what gdb says about one of the dumps: Fatal trap 12: page fault while in kernel mode fault virtual address = 0x0 fault code = supervisor read, page not present instruction pointer = 0x8:0x0 stack pointer = 0x10:0xc024ca78 frame pointer = 0x10:0xc024cab4 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 = Idle interrupt mask = bio trap number = 12 panic: page fault syncing disks... Fatal trap 12: page fault while in kernel mode fault virtual address = 0x30 fault code = supervisor read, page not present instruction pointer = 0x8:0xc01de294 stack pointer = 0x10:0xc024c868 frame pointer = 0x10:0xc024c86c 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 = Idle interrupt mask = bio trap number = 12 panic: page fault dumping to dev 20001, offset 786432 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 >How-To-Repeat: Do high volume filesystem accesses on the Raid 5 parition. >Fix: Do not use raid5 plex organization in vinum. >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 Sep 28 9:56:36 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2A2D414D8F; Tue, 28 Sep 1999 09:56:35 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA78008; Tue, 28 Sep 1999 09:56:35 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Date: Tue, 28 Sep 1999 09:56:35 -0700 (PDT) From: Message-Id: <199909281656.JAA78008@freefall.freebsd.org> To: cpiazza@FreeBSD.org, freebsd-bugs@FreeBSD.org, grog@FreeBSD.org Subject: Re: kern/14018: vinum + Raid5 Causes system panics and hangs Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: vinum + Raid5 Causes system panics and hangs Responsible-Changed-From-To: freebsd-bugs->grog Responsible-Changed-By: cpiazza Responsible-Changed-When: Tue Sep 28 09:56:13 PDT 1999 Responsible-Changed-Why: Over to maintainer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Sep 28 10:18: 3 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from mailgate.advansys.com (anubis.advansys.com [204.247.22.2]) by hub.freebsd.org (Postfix) with SMTP id 0EE2014DC7 for ; Tue, 28 Sep 1999 10:18:01 -0700 (PDT) (envelope-from tdo@advansys.com) Received: from tdo by mailgate.advansys.com with smtp (Smail3.2.0.108 #7) id m11W0t2-000u31C; Tue, 28 Sep 1999 10:17:56 -0700 (PDT) From: "Trung Do" To: Subject: FreeBSD software ! Date: Tue, 28 Sep 1999 10:08:52 -0700 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-Mimeole: Produced By Microsoft MimeOLE V4.72.3110.3 Importance: Normal Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello FreeBSD teams, My name is Trung Khanh Do, working for Advansys at San Jose, CA. Since we have some new SCSI products are releasing to market and we really want them fully supported by FreeBSD software. Could you please, give me more informations about how to achieve that in order to get fully supported by FreeBSD software, I am willing to provide you all needs. I kindly appreciate for your reply and hope to hear from you soon. Products we are releasing: 1) LVD SCSI controller, model 3940U2W 2) DLVD SCSI controller, model 3950UW Hope to hear from you soon. Or, if available, May I have your phone number? Thanks a mil, Trung Do ******** _________________________________ /_____---GOD BLESS YOU !!!---____/| | | | | Advanced System Products, Inc | | | Trung Khanh Do | | | Phone: (408) 383-5775 | | | Pager: (408) 552-0226 | | | Email: trungd@advansys.com | | | http://www.advansys.com | / |________________________________|/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Sep 28 11: 7:33 1999 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 BB64D157DA for ; Tue, 28 Sep 1999 11:06:16 -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 MAA00469; Tue, 28 Sep 1999 12:06:42 -0600 (MDT) (envelope-from gibbs@caspian.plutotech.com) Message-Id: <199909281806.MAA00469@caspian.plutotech.com> X-Mailer: exmh version 2.0.2 2/24/98 To: "Trung Do" Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: FreeBSD software ! In-reply-to: Your message of "Tue, 28 Sep 1999 10:08:52 PDT." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 28 Sep 1999 12:06:42 -0600 From: "Justin T. Gibbs" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Hello FreeBSD teams, > >My name is Trung Khanh Do, working for Advansys at San Jose, CA. >Since we have some new SCSI products are releasing to market and >we really want them fully supported by FreeBSD software. Could >you please, give me more informations about how to achieve that >in order to get fully supported by FreeBSD software, I am willing >to provide you all needs. >I kindly appreciate for your reply and hope to hear from you soon. > >Products we are releasing: 1) LVD SCSI controller, model 3940U2W > 2) DLVD SCSI controller, model 3950UW > >Hope to hear from you soon. Or, if available, May I have your phone number? Probably the best way to achieve this is to contact me as I've written all of the previous FreeBSD support for the AdvanSys boards. I should be in the office later this afternoon. If the architecture of the cards is at all similar to the UW products, it should be pretty easy to get this support into FreeBSD. Do you guys have any sample code for communicating with the firmware on the boards? -- Justin Justin T. Gibbs (303)402-9109x138 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Sep 28 16:20: 3 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8E372157EC for ; Tue, 28 Sep 1999 16:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA41080; Tue, 28 Sep 1999 16:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id BEF2114FA5; Tue, 28 Sep 1999 16:16:06 -0700 (PDT) Message-Id: <19990928231606.BEF2114FA5@hub.freebsd.org> Date: Tue, 28 Sep 1999 16:16:06 -0700 (PDT) From: rob@ideal.net.au To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: kern/14026: Many network connections get left in the 'CLOSING' state Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14026 >Category: kern >Synopsis: Many network connections get left in the 'CLOSING' state >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 Sep 28 16:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Rob Wise >Release: FreeBSD 3.2-STABLE from July 1999 >Organization: >Environment: FreeBSD proton.ideal.net.au 3.2-STABLE FreeBSD 3.2-STABLE #2: Thu Jul 15 11:04:40 EST 1999 rob@proton.ideal.net.au:/usr/src/sys/compile/PROTON i386 >Description: The machine displaying this problem is running squid and 2 fairly busy websites which have large files on them. I'm not sure if file size is related. After the machine has been up and running for a while many connections are visible in netstat which are stuck in the 'CLOSING' state. For example: tcp 0 0 proxy1.syd.8080 port19.syd.2197 CLOSING tcp 0 0 proxy1.syd.8080 port56.cam.1779 CLOSING These connections can't be cleared by shutting down either the squid or apache daemons. The machine must be restarted to clear them. The machine has 512MB of ram, a PII350 processor, Adaptec 2940UW scsi controller, and a Netgear 10/100 nic using the de0 driver. Tcp extensions are turned off too. >How-To-Repeat: The stuck connections gradually start appearing during normal usage on the machine. >Fix: Unknown. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Sep 28 16:50: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8FD9614EF5 for ; Tue, 28 Sep 1999 16:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA42660; Tue, 28 Sep 1999 16:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from eeback.elen.utah.edu (eeback.elen.utah.edu [128.110.18.4]) by hub.freebsd.org (Postfix) with ESMTP id 3552415913 for ; Tue, 28 Sep 1999 16:41:28 -0700 (PDT) (envelope-from howard@eeback.elen.utah.edu) Received: (from howard@localhost) by eeback.elen.utah.edu (8.9.3/8.9.2) id RAA67298; Tue, 28 Sep 1999 17:41:28 -0600 (MDT) (envelope-from howard) Message-Id: <199909282341.RAA67298@eeback.elen.utah.edu> Date: Tue, 28 Sep 1999 17:41:28 -0600 (MDT) From: howard@ee.utah.edu Reply-To: howard@ee.utah.edu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: i386/14027: initializing disk labels under FreeBSD 3.X Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14027 >Category: i386 >Synopsis: "disklabel -r -w" on new disk reports "No space left on device" >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Sep 28 16:50:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Walt Howard >Release: FreeBSD 3.3-RELEASE i386 >Organization: University of Utah Electrical Engineering Dept >Environment: Dual-686 motherboard (450 MHz) Adaptec 7880 SCSI controller on motherboard IBM DRVS09V 9GB SCSI disk drives (not root drive) System has two IDE drives and a SCSI boot drive >Description: Physically add drives at SCSI targets 8 and 9 The controller does wide SCSI, and the disks are wide also. run /dev/MAKEDEV da8 da9 da8s1a da8s2a da8s3a da8s4a da9s1a run fdisk to create slices this worked, and left the first 64 sectors for a bootblock. I also tried "fdisk -e", which also worked. add entry for drvs09v-8s1 to /etc/disktab it includes offset, partition-size, blocksize, and fragment-size values for partitions c, e, f, g. run disklabel -r -w da8s1 drvs09v-8s1 I tried several variants of the disk-device name. get immediate response "disklabel: No space left on device" find message from kernel in /var/log/messages about lack of existing label on da8 >How-To-Repeat: See above. The prototype files were derived from information on a FreeBSD 3.2 machine configured identically. On that prototype, we configured all disks during the install. May be related to the existence of the bootblock area; we find that we cannot boot from a SCSI disk which has the bootblock outside the slices. There are complaints about no ufs filesystem. >Fix: Workaround may be to re-install and configure all disks then. I don't know what I'll do if I need to add more disks later. >Release-Note: >Audit-Trail: >Unformatted: Walt Howard To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Sep 28 17:10: 3 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 158AF14FCF for ; Tue, 28 Sep 1999 17:10:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA43846; Tue, 28 Sep 1999 17:10:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 7519714FA5; Tue, 28 Sep 1999 17:08:06 -0700 (PDT) Message-Id: <19990929000806.7519714FA5@hub.freebsd.org> Date: Tue, 28 Sep 1999 17:08:06 -0700 (PDT) From: d_batchovski@softhome.net To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: kern/14028: ATAPI cd-rom not boot to install and can't detect wdc with floppy install Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14028 >Category: kern >Synopsis: ATAPI cd-rom not boot to install and can't detect wdc with floppy install >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Sep 28 17:10:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Detelin Batchovski >Release: 3.2 ; 3.3 ; 4.0 Snap. 14.Sep.1999 >Organization: >Environment: >Description: I have ATAPI CD Rom Acer 24x . When I try boot from CD , it fails. After that i was tried floppy instalasion , and i again my CD Rom isn't recognize (wcd not found). And i install FreeBSD 3.3 release from dos partition , rebuild kernel with "Options IDE_DELAY=20000" and "controler wcd0 , wcd1 and etc.", but nothing.After that situation i change my cd-rom with Mitsumi 8x , and all is ok ? I have too SuSE Linux 6.1,Red Hat 6.0 and that CD Rom Acer is working just fine. System : ASUS P2B , Bios rev.1010 3.2 Gb Quantum ST (primary master) ATAPI CD Rom --> Acer 24x (secondary master) >How-To-Repeat: Try with noname ATAPI Cd Rom or ACER (Aopen)? >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 Sep 28 18:10: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 93A4D14DB9 for ; Tue, 28 Sep 1999 18:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA47554; Tue, 28 Sep 1999 18:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 28 Sep 1999 18:10:02 -0700 (PDT) Message-Id: <199909290110.SAA47554@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Garrett Wollman Subject: kern/14026: Many network connections get left in the 'CLOSING' state Reply-To: Garrett Wollman Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/14026; it has been noted by GNATS. From: Garrett Wollman To: rob@ideal.net.au Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: kern/14026: Many network connections get left in the 'CLOSING' state Date: Tue, 28 Sep 1999 21:01:45 -0400 (EDT) < tcp 0 0 proxy1.syd.8080 port19.syd.2197 CLOSING > tcp 0 0 proxy1.syd.8080 port56.cam.1779 CLOSING Sorry, that's Just The Way TCP Works. In particular, this can happen if the client completely disconnects from the network at an inopportune moment.(*) Eventually TCP will send a probe to that address while some other user is connected; when this happens, the other end will reply with a reset and the state for this connection will be zapped. -GAWollman (*)Specifically, CLOSING state is normally entered when: a) the other end requested close before we are ready b) we eventually agree to close c) by which time the other end has gone away It is possible, but unlikely, for CLOSING state to be entered by other means as well. -- 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 Tue Sep 28 18:30: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7EFEE15885 for ; Tue, 28 Sep 1999 18:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA48894; Tue, 28 Sep 1999 18:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 28 Sep 1999 18:30:02 -0700 (PDT) Message-Id: <199909290130.SAA48894@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Rob Wise" Subject: Re: kern/14026: Many network connections get left in the 'CLOSING' state Reply-To: "Rob Wise" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/14026; it has been noted by GNATS. From: "Rob Wise" To: "Garrett Wollman" Cc: Subject: Re: kern/14026: Many network connections get left in the 'CLOSING' state Date: Wed, 29 Sep 1999 11:26:34 +1000 ----- Original Message ----- From: Garrett Wollman To: Cc: Sent: Wednesday, September 29, 1999 11:01 AM Subject: kern/14026: Many network connections get left in the 'CLOSING' state > < > > tcp 0 0 proxy1.syd.8080 port19.syd.2197 CLOSING > > tcp 0 0 proxy1.syd.8080 port56.cam.1779 CLOSING > > Sorry, that's Just The Way TCP Works. In particular, this can happen > if the client completely disconnects from the network at an > inopportune moment.(*) Eventually TCP will send a probe to that address > while some other user is connected; when this happens, the other end > will reply with a reset and the state for this connection will be > zapped. How often are these probes supposed to be sent? Some of these connections have been around for well over a month. I've started a tcpdump on one of the hosts with a 'CLOSING' connection open and I'll see what happens. Rob To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Sep 28 22:10: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D145C15422 for ; Tue, 28 Sep 1999 22:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA63872; Tue, 28 Sep 1999 22:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from cepheus.azstarnet.com (cepheus.azstarnet.com [169.197.56.195]) by hub.freebsd.org (Postfix) with ESMTP id 8DD6014E54 for ; Tue, 28 Sep 1999 22:04:24 -0700 (PDT) (envelope-from bkat@azstarnet.com) Received: from kot.tic.toc (dialup001ip252.tus.azstarnet.com [169.197.12.252]) by cepheus.azstarnet.com (8.9.3+blt.Beta0/8.9.3) with ESMTP id WAA19425 for ; Tue, 28 Sep 1999 22:04:19 -0700 (MST) Received: (from bkat@localhost) by kot.tic.toc (8.8.8/8.8.8) id VAA00387; Tue, 28 Sep 1999 21:33:05 -0700 (MST) (envelope-from bkat) Message-Id: <199909290433.VAA00387@kot.tic.toc> Date: Tue, 28 Sep 1999 21:33:05 -0700 (MST) From: bobkat@azstarnet.com Reply-To: bobkat@azstarnet.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: i386/14030: aha0 probe fails 3.3.0-RELEASE install with DTC3290 EISA SCSI Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14030 >Category: i386 >Synopsis: aha0 probe fails 3.3.0-RELEASE install with DTC3290 EISA SCSI >Confidential: no >Severity: critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Sep 28 22:10:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Bob Kot >Release: FreeBSD 3.3.0-RELEASE i386 >Organization: >Environment: 3.3-RELEASE floppies (kern.flp) & (mfsroot.flp) downloaded from ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/3.3-RELEASE/floppies >Description: I have a DTC3290 SCSI EISA host adapter(Data Technology Corp) Its bios is Rev. 3.1.07 This bios emulates the Adaptec 154x[AB] I have used this controller as is with FreeBSD 1.1 and currently with 2.2.8-RELEASE and the aha controller has worked fine. I recently tried to install 3.3-RELEASE, but the aha0 probe failed when resetting my DTC3290. I am including information on 2.2.8-RELEASE for diagnostic purposes. FreeBSD 2.2.8-RELEASE - Where my DTC3290 SCSI controller is working. /* *dmesg output with -v kernel switch */ Copyright (c) 1992-1998 FreeBSD Inc. Copyright (c) 1982, 1986, 1989, 1991, 1993 The Regents of the University of California. All rights reserved. FreeBSD 2.2.8-RELEASE #0: Wed Mar 17 18:02:39 MST 1999 root@kot.my.domain:/usr/src/sys/compile/KERNKOTA /* * Omit non pertinent lines */ Probing for devices on the ISA bus: /* * Omit non pertinent lines */ aha0: Rev 41 (AHA-154x[AB]) V1.0, enabling residuals, target ops aha0: reading board settings, dma=5 int=11 id=7 (bus speed defaulted) aha0 at 0x330-0x333 irq 11 drq 5 on isa aha0 waiting for scsi devices to settle (aha0:0:0): "MICROP 1624-07MZ1077801 HZ2P" type 0 fixed SCSI 1 sd0(aha0:0:0): Direct-Access 642MB (1316751 512 byte sectors) sd0(aha0:0:0): with 2112 cyls, 7 heads, and an average 89 sectors/track (aha0:1:0): "IMPRIMIS 94601-15 1250" type 0 fixed SCSI 1 sd1(aha0:1:0): Direct-Access 990MB (2027760 512 byte sectors) sd1(aha0:1:0): with 1931 cyls, 15 heads, and an average 70 sectors/track (aha0:2:0): "TOSHIBA CD-ROM XM-3401TA 0283" type 5 removable SCSI 2 cd0(aha0:2:0): CD-ROM can't get the size /* * Omit non pertinent lines */ BIOS Geometries: 0:02813f20 0..641=642 cylinders, 0..63=64 heads, 1..32=32 sectors 1:03dd3f20 0..989=990 cylinders, 0..63=64 heads, 1..32=32 sectors 0 accounted for Device configuration finished. /* END 2.2.8 dmesg */ You will notice that I have rebuilt the kernel, but I assure you that the source code was as received in the 2.2.8-RELEASE. My kernel rebuild was to pare down all the default device support that is not needed in my system. My KERNKOTA is GENERIC with a lot of lines commented out. I downloaded the 3.3-RELEASE floppies (kern.flp) & (mfsroot.flp) from ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/3.3-RELEASE/floppies An attempt at installing resulted in the following. Visual kernel config with default arguments for aha0 device and elimination of all conflicts. After visual kernel config I did not let it auto reboot. I gave it the boot -v command to turn on verbose output dmesg output - (segment retyped by hand) aha0: ahareset - Diagnostic Active failed to assert. status = 0x30 aha0: Failed Reset aha0: status reg test failed ff aha0: status reg test failed ff aha0: status reg test failed ff aha0: status reg test failed 0 aha0: status reg test failed 0 aha0: not found at 0x134 Then I repeated the installation except in CLI mode I set aha0 port to 0x330 dmesg output aha0: ahareset - Diagnostic Active failed to assert. status = 0x30 aha0: Failed Reset aha0: not found at 0x330 Needless to say, with all my hard drives being SCSI, this probe failure ended my attempt at installation. >How-To-Repeat: This should be obvious from the description section above. However, you need the DTC3290 board to duplicate the problem! >Fix: I don't have an actual fix or work around but here are some observations. In the source code for 3.3-RELEASE $FreeBSD: src/sys/dev/aha/aha.c,v 1.19.2.6 1999/09/14 04:07:49 gibbs Exp $ In the ahareset() function the PRVERB that causes aha0: ahareset - Diagnostic Active failed to assert. status = 0x30 is the result of the preceding while loop never detecting the DIAG_ACTIVE (0x80) bit when it polls the STATUS_REG. The DTC3290 board is returning 0x30 This leads to the following. 1. Is the board being sent the proper reset command? I find it curious that the old $Id: aha1542.c,v 1.63.2.1 1997/01/10 09:08:46 phk Exp $ in function aha_init() issued the reset command as outb(AHA_CTRL_STAT_PORT, AHA_HRST | AHA_SRST); (0x80) (0x40) The hard and soft reset bits are or'ed which sends (0xC0). The new aha.c sends only (0x80). Is this significant? 2. Does the DTC3290 ever return status with the DIAG_ACTIVE(0x80) bit set? Perhaps DTC's emulation of Adaptec behavior is deficient, or is their reset accomplished and that bit is set and reset before being polled the first time? I don't know the answer to this. I also find it curious that the old code defined AHA_STST = 0x80 but never used that value for anything. I am willing to assist with this problem. If someone can assist me in being able to edit and compile 3.3-RELEASE sources into a kernel while executing on 2.2.8-RELEASE, I could try some variations and see if this problem is as simple as it currently seems, or if there are other problems lurking. This failure was very early in the probe. >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 Sep 28 23:40:13 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 69916158E3 for ; Tue, 28 Sep 1999 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 XAA02887; Tue, 28 Sep 1999 23:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by hub.freebsd.org (Postfix) with ESMTP id 229CA14F06 for ; Tue, 28 Sep 1999 23:32:31 -0700 (PDT) (envelope-from doconnor@cain.gsoft.com.au) Received: (from doconnor@localhost) by cain.gsoft.com.au (8.8.8/8.8.8) id QAA26462; Wed, 29 Sep 1999 16:02:30 +0930 (CST) (envelope-from doconnor) Message-Id: <199909290632.QAA26462@cain.gsoft.com.au> Date: Wed, 29 Sep 1999 16:02:30 +0930 (CST) From: "Daniel O'Connor" Reply-To: doconnor@gsoft.com.au To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/14033: Data acq process gets stuck in vmopar Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14033 >Category: kern >Synopsis: Data acq process gets stuck in vmopar >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Sep 28 23:40:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Daniel O'Connor >Release: FreeBSD 3.3-RELEASE i386 >Organization: Genesis Software >Environment: 3.2, 3.3-RC, 3.3-REL, and 3.3-STABLE. PII-350, 128meg of RAM. >Description: We have a PCI data acquisition card which effectivly maps a FIFO into memory and the kernel reads it during interrupt, and passes the data off to a userland process in read(). Occasionally (happens much more often when the system is loaded, ie buildworld, and doing networking) the process reading from the card gets stuck in vmopar. I looked in the archives and there was a suggestion that it was NFS related so I umount'd the NFS partitions but no joy. This problem does not occur in 2.2.8, and the driver code is almost identical, (except poll) so I suspect the OS, but I do not know where to start looking. >How-To-Repeat: Rather complicated :( >Fix: Go back to 2.2.8+CAM (blerg) >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 Sep 29 1:10:30 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3E3A8154A3 for ; Wed, 29 Sep 1999 01:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA10275; Wed, 29 Sep 1999 01:10:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 7449C154A3; Wed, 29 Sep 1999 01:03:52 -0700 (PDT) Message-Id: <19990929080352.7449C154A3@hub.freebsd.org> Date: Wed, 29 Sep 1999 01:03:52 -0700 (PDT) From: riccardo@torrini.org To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: kern/14034: gettimeofday() returns negative value Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14034 >Category: kern >Synopsis: gettimeofday() returns negative value >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 Sep 29 01:10:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Riccardo Torrini >Release: 3.3-STABLE (cvsuped on Sep 20, 1999) >Organization: ESAOTE s.p.a. >Environment: FreeBSD snail.fi.esaote.it 3.3-STABLE FreeBSD 3.3-STABLE #0: Wed Sep 22 08:57:26 CEST 1999 root@snail.fi.esaote.it:/usr/src/sys/compile/OCTOPUSSY i386 The machine is an HP NetServer 4/66-LC (486/DX2-66) used as internal router with 4 Intel EtherExpress Pro/10 on isa and internet gateway with 56k internal usrobotics modem and it happens every some day. I recompiled world and kernel, after cvsupping, on end of august, begin of september, 20 and 24 of september. No more often because I need full 24 hours to build and install :-( -----8<-----[ /var/run/dmesg.boot ]-----8<----- Copyright (c) 1992-1999 FreeBSD Inc. Copyright (c) 1982, 1986, 1989, 1991, 1993 The Regents of the University of California. All rights reserved. FreeBSD 3.3-STABLE #0: Wed Sep 22 08:57:26 CEST 1999 root@snail.fi.esaote.it:/usr/src/sys/compile/OCTOPUSSY Timecounter "i8254" frequency 1193182 Hz CPU: i486 DX2 (486-class CPU) Origin = "GenuineIntel" Id = 0x435 Stepping = 5 Features=0x3 real memory = 92274688 (90112K bytes) avail memory = 86380544 (84356K bytes) Preloaded elf kernel "kernel" at 0xc0318000. Preloaded splash_image_data "/boot/daemon.bmp" at 0xc031809c. Preloaded elf module "splash_bmp.ko" at 0xc03180ec. eisa0: Probing for devices on the EISA bus ahc0: at 0xbc00-0xbcff irq 15 ahc0: on eisa0 slot 11 ahc0: aic7770 >= Rev E, Twin Channel, A SCSI Id=7, B SCSI Id=7, primary A, 4/255 SCBs Probing for devices on the ISA bus: sc0 on isa sc0: VGA color <16 virtual consoles, flags=0x0> atkbdc0 at 0x60-0x6f on motherboard atkbd0 irq 1 on isa psm0 not found sio2 at 0x3e8-0x3ef irq 4 on isa sio2: type 16550A fdc0 at 0x3f0-0x3f7 irq 6 drq 2 on isa fdc0: FIFO enabled, 8 bytes threshold fd0: 1.44MB 3.5in wdc0 at 0x1f0-0x1f7 irq 14 on isa wdc0: unit 1 (atapi): , removable, intr, iordis acd0: drive speed 689KB/sec, 128KB cache acd0: supported read types: acd0: Audio: play, 255 volume levels acd0: Mechanism: ejectable tray acd0: Medium: no/blank disc inside, unlocked ppc0 at 0x378 irq 7 on isa ppc0: PC87332 chipset (NIBBLE-only) in COMPATIBLE mode ex0 at 0x2a0-0x2af irq 10 on isa ex0: Intel EtherExpress Pro/10, address 00:aa:00:ad:61:fd, connector TPE ex1 at 0x2b0-0x2bf irq 11 on isa ex1: Intel EtherExpress Pro/10, address 00:aa:00:ad:64:f0, connector TPE ex2 at 0x2c0-0x2cf irq 3 on isa ex2: Intel EtherExpress Pro/10, address 00:aa:00:ae:5c:e7, connector TPE ex3 at 0x2d0-0x2df irq 5 on isa ex3: Intel EtherExpress Pro/10, address 00:aa:00:ad:63:8e, connector TPE vga0 at 0x3b0-0x3df maddr 0xa0000 msize 131072 on isa npx0 on motherboard npx0: INT 16 interface ccd0-3: Concatenated disk drivers IP packet filtering initialized, divert enabled, rule-based forwarding enabled, logging disabled DUMMYNET initialized (990504) IP Filter: initialized. Default = pass all, Logging = enabled Waiting 15 seconds for SCSI devices to settle da0 at ahc0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-2 device da0: 10.000MB/s transfers (10.000MHz, offset 15), Tagged Queueing Enabled da0: 1003MB (2055035 512 byte sectors: 64H 32S/T 1003C) da1 at ahc0 bus 0 target 1 lun 0 da1: Fixed Direct Access SCSI-2 device da1: 10.000MB/s transfers (10.000MHz, offset 15), Tagged Queueing Enabled da1: 1003MB (2055035 512 byte sectors: 64H 32S/T 1003C) da3 at ahc0 bus 0 target 3 lun 0 da3: Fixed Direct Access SCSI-2 device da3: 10.000MB/s transfers (10.000MHz, offset 15), Tagged Queueing Enabled da3: 1010MB (2069860 512 byte sectors: 64H 32S/T 1010C) da2 at ahc0 bus 0 target 2 lun 0 da2: Fixed Direct Access SCSI-2 device da2: 10.000MB/s transfers (10.000MHz, offset 15), Tagged Queueing Enabled da2: 1001MB (2051460 512 byte sectors: 64H 32S/T 1001C) changing root device to da0s1a -----8<-----[ /usr/src/sys/i386/conf/OCTOPUSSY ]-----8<----- # $Id: GENERIC,v 1.143.2.2 1999/02/15 02:50:07 des Exp $ # Modified by Riccardo "VIC" Torrini for OCTOPUSSY machine "i386" cpu "I386_CPU" cpu "I486_CPU" ident OCTOPUSSY maxusers 32 options INET #InterNETworking options IPX #IPX/SPX communications protocols 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 config kernel root on da0 controller isa0 controller eisa0 options "EISA_SLOTS=12" controller pci0 controller fdc0 at isa? port "IO_FD1" bio irq 6 drq 2 disk fd0 at fdc0 drive 0 options "CMD640" # work around CMD640 chip deficiency controller wdc0 at isa? port "IO_WD1" bio irq 14 options ATAPI #Enable ATAPI support for IDE bus options ATAPI_STATIC #Don't do it as an LKM device acd0 #IDE CD-ROM controller ahc0 controller scbus0 device da0 device cd0 #Only need one of these, the code dynamically grows # atkbdc0 controlls both the keyboard and the PS/2 mouse 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 # splash screen/screen saver pseudo-device splash options "VM86" options VESA # needs VM86 defined too!! # syscons is the default console driver, resembling an SCO console device sc0 at isa? tty device npx0 at isa? port IO_NPX irq 13 device sio2 at isa? port "IO_COM3" tty irq 4 # Parallel port device ppc0 at isa? port? net irq 7 controller ppbus0 device nlpt0 at ppbus? # Network device ex0 at isa? port 0x2a0 net irq 10 device ex1 at isa? port 0x2b0 net irq 11 device ex2 at isa? port 0x2c0 net irq 3 device ex3 at isa? port 0x2d0 net irq 5 pseudo-device loop pseudo-device ether pseudo-device sl 1 pseudo-device ppp 1 pseudo-device tun 1 pseudo-device pty 16 pseudo-device gzip # Exec gzipped a.out's pseudo-device speaker #Play IBM BASIC-style noises out your speaker pseudo-device ccd 4 #Concatenated disk driver options SYSVSHM options SYSVMSG pseudo-device bpfilter 4 #Berkeley packet filter options IPFIREWALL #firewall options IPFIREWALL_FORWARD #enable transparent proxy support options IPDIVERT #divert sockets options IPFILTER #kernel ipfilter support options IPFILTER_LOG #ipfilter logging options "ICMP_BANDLIM" options DUMMYNET >Description: gettimeofday() sometimes returns negative values for microseconds. Already submitted as PR misc/13992 (routed exit after some day of work with signal 6, core dump). >How-To-Repeat: -----8<-----[ gettimeofday_test.c ]-----8<----- #include #include #include void main() { struct timeval tp; do { if (gettimeofday(&tp, (struct timezone *)NULL) == -1) { err(1, "gettimeofday"); } if (tp.tv_usec < 0) { errx(1, "invalid time returned: %ld:%ld", tp.tv_sec, tp.tv_usec); } } while (1); } =====[ output on my machine ]===== After about 20minutes: gettimeofday_test: invalid time returned: 938527821:-695331771 # sysctl kern.timecounter.method machdep.i8254_freq kern.timecounter.method: 0 machdep.i8254_freq: 1193182 >Fix: I have work-around with a script that poll processes and respawn "routed -s" when it dies. Not a real 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 Sep 29 1:55:37 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E68BF15169; Wed, 29 Sep 1999 01:55:35 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA14337; Wed, 29 Sep 1999 01:55:35 -0700 (PDT) (envelope-from ru@FreeBSD.org) Date: Wed, 29 Sep 1999 01:55:35 -0700 (PDT) From: Message-Id: <199909290855.BAA14337@freefall.freebsd.org> To: riccardo@torrini.org, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/13992: routed exit after some day of work with signal 6 (core dump) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: routed exit after some day of work with signal 6 (core dump) State-Changed-From-To: open->closed State-Changed-By: ru State-Changed-When: Wed Sep 29 01:52:27 PDT 1999 State-Changed-Why: Superseded by PR kern/14034. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Sep 29 2:30:21 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3DD7C1516C for ; Wed, 29 Sep 1999 02:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA16441; Wed, 29 Sep 1999 02:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 29 Sep 1999 02:30:02 -0700 (PDT) Message-Id: <199909290930.CAA16441@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ruslan Ermilov Subject: Re: i386/14027: initializing disk labels under FreeBSD 3.X Reply-To: Ruslan Ermilov Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/14027; it has been noted by GNATS. From: Ruslan Ermilov To: howard@ee.utah.edu Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: i386/14027: initializing disk labels under FreeBSD 3.X Date: Wed, 29 Sep 1999 12:27:08 +0300 On Tue, Sep 28, 1999 at 05:41:28PM -0600, howard@ee.utah.edu wrote: > > Physically add drives at SCSI targets 8 and 9 > The controller does wide SCSI, and the disks are wide also. > run /dev/MAKEDEV da8 da9 da8s1a da8s2a da8s3a da8s4a da9s1a > run fdisk to create slices > this worked, and left the first 64 sectors for a bootblock. > I also tried "fdisk -e", which also worked. > add entry for drvs09v-8s1 to /etc/disktab > it includes offset, partition-size, blocksize, and > fragment-size values for partitions c, e, f, g. > run disklabel -r -w da8s1 drvs09v-8s1 > I tried several variants of the disk-device name. > get immediate response "disklabel: No space left on device" > find message from kernel in /var/log/messages about lack > of existing label on da8 > Please tell me whether the following will work for you: - disklabel /dev/da8 > mylabel - edit `mylabel' appropriately with text editor - disklabel -R [-B] da8 mylabel -- Ruslan Ermilov Sysadmin and DBA of the ru@ucb.crimea.ua United Commercial Bank, ru@FreeBSD.org FreeBSD committer, +380.652.247.647 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Sep 29 10: 3: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 385F415958; Wed, 29 Sep 1999 10:02:17 -0700 (PDT) (envelope-from dillon@FreeBSD.org) Received: (from dillon@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA69616; Wed, 29 Sep 1999 10:02:16 -0700 (PDT) (envelope-from dillon@FreeBSD.org) Date: Wed, 29 Sep 1999 10:02:16 -0700 (PDT) From: Message-Id: <199909291702.KAA69616@freefall.freebsd.org> To: spe@oleane.net, dillon@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/13488: panic: getnewbuf: Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: panic: getnewbuf: State-Changed-From-To: open->closed State-Changed-By: dillon State-Changed-When: Wed Sep 29 10:00:27 PDT 1999 State-Changed-Why: Just prior to the 3.3 release getnewbuf() was patched to avoid this particular panic. The patch is about as good as we can get short of rewriting getnewbuf() in the 3.x releases. getnewbuf() *has* been completely rewritten in the 4.x development kernels (i.e. -current) and does not have this problem at all. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Sep 29 10: 9: 1 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2B135155DB; Wed, 29 Sep 1999 10:07:22 -0700 (PDT) (envelope-from dillon@FreeBSD.org) Received: (from dillon@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA70016; Wed, 29 Sep 1999 10:07:22 -0700 (PDT) (envelope-from dillon@FreeBSD.org) Date: Wed, 29 Sep 1999 10:07:22 -0700 (PDT) From: Message-Id: <199909291707.KAA70016@freefall.freebsd.org> To: mi@aldan.algebra.com, dillon@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/11335: find hangs in `nfsrcv' on local filesystem despite -xdev Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: find hangs in `nfsrcv' on local filesystem despite -xdev State-Changed-From-To: open->closed State-Changed-By: dillon State-Changed-When: Wed Sep 29 10:05:42 PDT 1999 State-Changed-Why: This bug is believed to be fixed in the 3.3 release as well as in -current. The bug that was fixed was a realignment bug related to NFS/TCP mounts, causing NFS/TCP mounts to hang indefinitely when subjected to heavy loads. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Sep 29 10:20:27 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A05F1157C7; Wed, 29 Sep 1999 10:20:09 -0700 (PDT) (envelope-from dillon@FreeBSD.org) Received: (from dillon@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA71093; Wed, 29 Sep 1999 10:20:09 -0700 (PDT) (envelope-from dillon@FreeBSD.org) Date: Wed, 29 Sep 1999 10:20:09 -0700 (PDT) From: Message-Id: <199909291720.KAA71093@freefall.freebsd.org> To: jso@research.att.com, dillon@FreeBSD.org, freebsd-bugs@FreeBSD.org, dillon@FreeBSD.org Subject: Re: kern/11470: V3 NFS problem Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: V3 NFS problem State-Changed-From-To: open->analyzed State-Changed-By: dillon State-Changed-When: Wed Sep 29 10:17:54 PDT 1999 State-Changed-Why: A bug fix for what we believe is causing this problem is under test in CURRENT and will be backported to STABLE if it proves effacious. I'll close the PR after the change is backported to stable. Responsible-Changed-From-To: freebsd-bugs->dillon Responsible-Changed-By: dillon Responsible-Changed-When: Wed Sep 29 10:17:54 PDT 1999 Responsible-Changed-Why: Reassigned to NFS maintainer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Sep 29 10:28:20 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0B3C11589C; Wed, 29 Sep 1999 10:28:10 -0700 (PDT) (envelope-from dillon@FreeBSD.org) Received: (from dillon@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA71781; Wed, 29 Sep 1999 10:28:09 -0700 (PDT) (envelope-from dillon@FreeBSD.org) Date: Wed, 29 Sep 1999 10:28:09 -0700 (PDT) From: Message-Id: <199909291728.KAA71781@freefall.freebsd.org> To: amor@eos.ubc.ca, dillon@FreeBSD.org, freebsd-bugs@FreeBSD.org, dillon@FreeBSD.org Subject: Re: kern/11533: NFS v3 locks up on large file transfers Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: NFS v3 locks up on large file transfers State-Changed-From-To: open->analyzed State-Changed-By: dillon State-Changed-When: Wed Sep 29 10:23:38 PDT 1999 State-Changed-Why: There were lots of bugs in 3.1-circa NFS, and some remained in 3.2. The bug needs to be retested with the latest 3.3 release. A number of bugs were fixed that may have been responsible for the problem. A bug was fixed in the nfs packet realignment code that had locked-up NFS/TCP mounts, and a number of bugs have been fixed in the NFSv3 code relating to improper error handling which could also lead to a lockup. Responsible-Changed-From-To: freebsd-bugs->dillon Responsible-Changed-By: dillon Responsible-Changed-When: Wed Sep 29 10:23:38 PDT 1999 Responsible-Changed-Why: assigned to NFS maintainer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Sep 29 10:32: 1 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E0DFF1591C; Wed, 29 Sep 1999 10:31:49 -0700 (PDT) (envelope-from dillon@FreeBSD.org) Received: (from dillon@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA72164; Wed, 29 Sep 1999 10:31:49 -0700 (PDT) (envelope-from dillon@FreeBSD.org) Date: Wed, 29 Sep 1999 10:31:49 -0700 (PDT) From: Message-Id: <199909291731.KAA72164@freefall.freebsd.org> To: timlee@netcom.com, dillon@FreeBSD.org, freebsd-bugs@FreeBSD.org, dillon@FreeBSD.org Subject: Re: kern/13270: NFS hangs if written through self-mount Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: NFS hangs if written through self-mount State-Changed-From-To: open->analyzed State-Changed-By: dillon State-Changed-When: Wed Sep 29 10:29:12 PDT 1999 State-Changed-Why: This is a known problem which we believe we have fixed in -current (4.x) but which we have not fixed in -stable (3.x). It may not be possible to fix this problem in -stable. I've marked the bug report as analyzed but am leaving it open either until we find a way to fix in -stable, or until we rotate major releases again. Responsible-Changed-From-To: freebsd-bugs->dillon Responsible-Changed-By: dillon Responsible-Changed-When: Wed Sep 29 10:29:12 PDT 1999 Responsible-Changed-Why: responsibility shifted to NFS maintainer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Sep 29 11:35: 8 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 80FB515954; Wed, 29 Sep 1999 11:34:41 -0700 (PDT) (envelope-from ken@FreeBSD.org) Received: (from ken@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA79430; Wed, 29 Sep 1999 11:34:41 -0700 (PDT) (envelope-from ken@FreeBSD.org) Date: Wed, 29 Sep 1999 11:34:41 -0700 (PDT) From: Message-Id: <199909291834.LAA79430@freefall.freebsd.org> To: ken@FreeBSD.org, freebsd-bugs@FreeBSD.org, imp@FreeBSD.org Subject: Re: i386/14030: aha0 probe fails 3.3.0-RELEASE install with DTC3290 EISA SCSI Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: aha0 probe fails 3.3.0-RELEASE install with DTC3290 EISA SCSI Responsible-Changed-From-To: freebsd-bugs->imp Responsible-Changed-By: ken Responsible-Changed-When: Wed Sep 29 11:34:12 PDT 1999 Responsible-Changed-Why: Warner wrote the aha driver. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Sep 29 14:10:29 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 76FC01563E for ; Wed, 29 Sep 1999 14:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA00954; Wed, 29 Sep 1999 14:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.disney.com (mail.disney.com [204.128.192.15]) by hub.freebsd.org (Postfix) with ESMTP id 6CA8514D8E for ; Wed, 29 Sep 1999 13:55:07 -0700 (PDT) (envelope-from Jim.Pirzyk@disney.com) Received: from pain10.corp.disney.com (root@pain10.corp.disney.com [153.7.110.100]) by mail.disney.com (8.9.1/8.9.1) with SMTP id NAA15767 for ; Wed, 29 Sep 1999 13:55:01 -0700 (PDT) Received: from louie.fa.disney.com by pain.corp.disney.com with ESMTP for FreeBSD-gnats-submit@freebsd.org; Wed, 29 Sep 1999 13:54:59 -0700 Received: from snowhite.faf.fa.disney.com (snowhite.faf.fa.disney.com [153.7.115.1]) by louie.fa.disney.com (8.9.2/8.9.2) with ESMTP id NAA06205 for ; Wed, 29 Sep 1999 13:54:44 -0700 (PDT) (envelope-from pirzyk@fa.disney.com) Received: from amigo.faf.fa.disney.com (amigo.faf.fa.disney.com [153.7.115.94]) by snowhite.faf.fa.disney.com (8.9.2/8.9.2) with ESMTP id QAA17438 for ; Wed, 29 Sep 1999 16:54:44 -0400 (EDT) (envelope-from pirzyk@fa.disney.com) Received: (from pirzyk@localhost) by amigo.faf.fa.disney.com (8.9.3/8.9.2) id QAA83350; Wed, 29 Sep 1999 16:54:44 -0400 (EDT) (envelope-from pirzyk@fa.disney.com) Message-Id: <199909292054.QAA83350@amigo.faf.fa.disney.com> Date: Wed, 29 Sep 1999 16:54:44 -0400 (EDT) From: Jim.Pirzyk@disney.com Reply-To: Jim.Pirzyk@disney.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/14040: amd has wrong uname data compile in it Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14040 >Category: bin >Synopsis: amd has wrong uname data compile in it >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 Sep 29 14:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Jim Pirzyk >Release: FreeBSD 3.3-RELEASE i386 >Organization: >Environment: When upgrading to FreeBSD 3.3, I did a make world in /usr/src. When amd got compiled, it saw that I was currently running 3.2-RELEASE. It put that into the amd binary. When I rebooted, I was running 3.3-RELEASE. This means that amd had the wrong info. >Description: Amd had the OS version of the system it was compiled on, not the system that it is running on. >How-To-Repeat: Compile amd on one version of the OS and put it on another. >Fix: Have amd call the uname C library function at run time to set the $os and $osver variables. >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 Sep 29 17:30:26 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9653A151B7 for ; Wed, 29 Sep 1999 17:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA11956; Wed, 29 Sep 1999 17:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from home.ieng.com (home.ieng.com [207.24.215.20]) by hub.freebsd.org (Postfix) with ESMTP id 181F0151FB for ; Wed, 29 Sep 1999 17:19:59 -0700 (PDT) (envelope-from pauls@ieng.com) Received: from localhost (pauls@localhost) by home.ieng.com (8.9.1a/8.9.1) with SMTP id UAA23311 for ; Wed, 29 Sep 1999 20:19:58 -0400 (EDT) Message-Id: Date: Wed, 29 Sep 1999 20:19:58 -0400 (EDT) From: Paul Southworth To: FreeBSD-gnats-submit@freebsd.org Subject: bin/14041: "host" blows up with incomplete arguments Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14041 >Category: bin >Synopsis: "host" blows up with incomplete arguments >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 Sep 29 17:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Paul Southworth >Release: FreeBSD 3.3-RELEASE i386 >Organization: Internet Engineering Group >Environment: FreeBSD 3.3-RELEASE, nothing unusual >Description: If you give the "host" command some flags but nothing to query, it dies and dumps core. >How-To-Repeat: pauls@deadbeef(11)% host -t any highwing.cdrom.com highwing.cdrom.com has address 204.216.28.168 highwing.cdrom.com mail is handled (pri=10) by pike.cdrom.com highwing.cdrom.com mail is handled (pri=5) by zippy.cdrom.com pauls@deadbeef(12)% host -t any Segmentation fault (core dumped) >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 Sep 29 20:10:11 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3F60C14C9C for ; Wed, 29 Sep 1999 20:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA06246; Wed, 29 Sep 1999 20:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from jehovah.technokratis.com (jehovah.technokratis.com [207.139.100.241]) by hub.freebsd.org (Postfix) with ESMTP id 9E3C014C9C for ; Wed, 29 Sep 1999 20:09:10 -0700 (PDT) (envelope-from bmilekic@jehovah.technokratis.com) Received: (from bmilekic@localhost) by jehovah.technokratis.com (8.9.3/8.9.1) id XAA00879; Wed, 29 Sep 1999 23:09:36 -0400 (EDT) (envelope-from bmilekic) Message-Id: <199909300309.XAA00879@jehovah.technokratis.com> Date: Wed, 29 Sep 1999 23:09:36 -0400 (EDT) From: Bosko.Milekic@jehovah.technokratis.com (bmilekic@dsuper.net) Reply-To: bmilekic@dsuper.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/14042: mbuf shortage and calls with M_WAIT Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14042 >Category: kern >Synopsis: mbuf shortage and allocation with M_WAIT results in a panic >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Sep 29 20:10:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Bosko Milekic bmilekic@dsuper.net >Release: FreeBSD 3.3-STABLE i386 >Organization: (None) >Environment: $ uname -v FreeBSD 3.3-STABLE #1: Wed Sep 29 19:35:08 EDT 1999 bmilekic@jehovah.technokratis.com >Description: Upon starvation of the mb_map arena, we solely rely on freed (recycled) mbufs and mbuf clusters since nothing is every freed back to the map. When no free mbuf is available, if we're M_DONTWAIT, a null is returned (this is expected behaviour). However, if we're calling with M_WAIT and there's nothing available, a call to the protocol drain routines is made and if after that point we still have nothing available, we panic(). When no free mbuf cluster is available, whether we call M_DONTWAIT or M_WAIT makes no difference in the case of mb_map already being starved and a failure is immediately reported. >How-To-Repeat: There are several ways to reproduce this problem. An obvious [local] way to do this would be to sockopt large socket buffer space. Eventually, we will run out of mbufs and panic. >Fix: The diffs provided below add functions that will sleep for a predefined amount of time waiting for an mbuf (or mbuf cluster) to be freed. In the case of a failure even after the sleep, the callers to the allocation routines should check for a null being returned. These diffs make sure that the check is performed, and if the failure is detected, the calling routines themselves would normally return ENOBUFS. The applications in userland generating the system calls that eventually end up calling the allocation routines (e.g. sosend() ) should check for the possiblity of the ENOBUFS and handle the situation appropriately. These diffs are for -STABLE but if the decision is made for them to be commited, I will gladly make sure that they function and not interfere with other work that made be in progress on this part of the code for what concerns -CURRENT. The first diff applies to sys/kern whereas the second applies to sys/sys/mbuf.h --8<--[mbuf.patch]--8<-- diff -ruN /usr/src/sys/kern.old/uipc_mbuf.c /usr/src/sys/kern/uipc_mbuf.c --- /usr/src/sys/kern.old/uipc_mbuf.c Wed Sep 8 20:45:50 1999 +++ /usr/src/sys/kern/uipc_mbuf.c Wed Sep 29 19:31:37 1999 @@ -47,6 +47,10 @@ #include #include +#ifdef INVARIANTS +#include +#endif + static void mbinit __P((void *)); SYSINIT(mbuf, SI_SUB_MBUF, SI_ORDER_FIRST, mbinit, NULL) @@ -60,6 +64,8 @@ int max_hdr; int max_datalen; +static u_int m_mballoc_wid = 0, m_clalloc_wid = 0; + SYSCTL_INT(_kern_ipc, KIPC_MAX_LINKHDR, max_linkhdr, CTLFLAG_RW, &max_linkhdr, 0, ""); SYSCTL_INT(_kern_ipc, KIPC_MAX_PROTOHDR, max_protohdr, CTLFLAG_RW, @@ -73,9 +79,12 @@ /* "number of clusters of pages" */ #define NCL_INIT 1 - #define NMB_INIT 16 +/* This sleep time definition/hz will determine the duration of the + mbuf and mbuf cluster "wait" sleeps if exhaustion occurs. */ +#define M_SLEEP_TIME 32 + /* ARGSUSED*/ static void mbinit(dummy) @@ -153,6 +162,50 @@ return (1); } +/* + * For callers with M_WAIT (who prefer -- and can afford -- to wait + * a little longer as opposed to immediately return null). + */ +struct mbuf * +m_mballoc_wait(caller, type) + int caller; + u_short type; +{ + struct mbuf *p; + + /* Sleep until something's available or until we expire. */ + m_mballoc_wid++; + if ( (tsleep(&m_mballoc_wid, PVM, "mballc", + M_SLEEP_TIME)) == EWOULDBLOCK) + m_mballoc_wid--; + + /* + * Now that we (think) that we've got something, we will redo an + * MGET, but avoid getting into another instance of m_mballoc_wait() + */ +#define m_mballoc_wait(caller,type) (struct mbuf *)0 + if (caller == MGET_C) { + MGET(p, M_WAIT, type); + } else { + MGETHDR(p, M_WAIT, type); + } +#undef m_mballoc_wait + + return (p); +} + +/* + * Function used to wakeup sleepers waiting for mbufs... + */ +void +m_mballoc_wakeup(void) +{ + if (m_mballoc_wid) { + m_mballoc_wid = 0; + wakeup(&m_mballoc_wid); + } +} + #if MCLBYTES > PAGE_SIZE static int i_want_my_mcl; @@ -242,6 +295,46 @@ } /* + * For callers with M_WAIT (who prefer -- and can afford -- to wait + * a little longer as opposed to immediately return null). + */ +caddr_t +m_clalloc_wait(void) +{ + caddr_t p; + + KASSERT(intr_nesting_level == 0,("CLALLOC: CANNOT WAIT IN INTERRUPT")); + + /* Sleep until something's available or until we expire. */ + m_clalloc_wid++; + if ( (tsleep(&m_clalloc_wid, PVM, "mclalc", + M_SLEEP_TIME)) == EWOULDBLOCK) + m_clalloc_wid--; + + /* + * Now that we (think) that we've got something, we will redo and + * MGET, but avoid getting into another instance of m_clalloc_wait() + */ +#define m_clalloc_wait() (caddr_t)0 + MCLALLOC(p,M_WAIT); +#undef m_clalloc_wait + + return (p); +} + +/* + * Function used to wakeup sleepers waiting for mbuf clusters... + */ +void +m_clalloc_wakeup(void) +{ + if (m_clalloc_wid) { + m_clalloc_wid = 0; + wakeup(&m_clalloc_wid); + } +} + +/* * When MGET fails, ask protocols to free space when short of memory, * then re-attempt to allocate an mbuf. */ @@ -254,19 +347,27 @@ /* * Must only do the reclaim if not in an interrupt context. */ - if (i == M_WAIT) + if (i == M_WAIT) { + KASSERT(intr_nesting_level == 0, + ("MBALLOC: CANNOT WAIT IN INTERRUPT")); m_reclaim(); + } + + /* + * XXX Be paranoid and define both as null. We don't want to wait + * from here. + */ +#define m_mballoc_wait(caller,type) (struct mbuf *)0 #define m_retry(i, t) (struct mbuf *)0 MGET(m, i, t); #undef m_retry +#undef m_mballoc_wait + if (m != NULL) { mbstat.m_wait++; - } else { - if (i == M_DONTWAIT) - mbstat.m_drops++; - else - panic("Out of mbuf clusters"); - } + } else + mbstat.m_drops++; + return (m); } @@ -284,17 +385,16 @@ */ if (i == M_WAIT) m_reclaim(); +#define m_mballoc_wait(caller,type) (struct mbuf *)0 #define m_retryhdr(i, t) (struct mbuf *)0 MGETHDR(m, i, t); #undef m_retryhdr +#undef m_mballoc_wait if (m != NULL) { mbstat.m_wait++; - } else { - if (i == M_DONTWAIT) - mbstat.m_drops++; - else - panic("Out of mbuf clusters"); - } + } else + mbstat.m_drops++; + return (m); } diff -ruN /usr/src/sys/kern.old/uipc_socket.c /usr/src/sys/kern/uipc_socket.c --- /usr/src/sys/kern.old/uipc_socket.c Wed Sep 8 20:45:50 1999 +++ /usr/src/sys/kern/uipc_socket.c Sun Sep 26 19:33:42 1999 @@ -486,15 +486,21 @@ } else do { if (top == 0) { MGETHDR(m, M_WAIT, MT_DATA); + if (m == NULL) + return ENOBUFS; mlen = MHLEN; m->m_pkthdr.len = 0; m->m_pkthdr.rcvif = (struct ifnet *)0; } else { MGET(m, M_WAIT, MT_DATA); + if (m == NULL) + return ENOBUFS; mlen = MLEN; } if (resid >= MINCLSIZE) { MCLGET(m, M_WAIT); + if (m == NULL) + return ENOBUFS; if ((m->m_flags & M_EXT) == 0) goto nopages; mlen = MCLBYTES; @@ -606,6 +612,8 @@ flags = 0; if (flags & MSG_OOB) { m = m_get(M_WAIT, MT_DATA); + if (m == NULL) + return ENOBUFS; error = (*pr->pr_usrreqs->pru_rcvoob)(so, m, flags & MSG_PEEK); if (error) goto bad; diff -ruN /usr/src/sys/kern.old/uipc_socket2.c /usr/src/sys/kern/uipc_socket2.c --- /usr/src/sys/kern.old/uipc_socket2.c Wed Sep 8 20:45:50 1999 +++ /usr/src/sys/kern/uipc_socket2.c Sun Sep 26 16:17:56 1999 @@ -407,7 +407,15 @@ sbrelease(sb) struct sockbuf *sb; { - + /* + * XXX If sockbuf is locked and we call sbflush, we will + * panic for sure, avoid that for now by just unlocking the + * sockbuf, so that sbflush can flush it, because if this is + * occuring, chances are we want to kill the process holding + * the sockbuf space anyway... + */ + if (sb->sb_flags & SB_LOCK) + sb->sb_flags &= ~SB_LOCK; sbflush(sb); sb->sb_hiwat = sb->sb_mbmax = 0; } diff -ruN /usr/src/sys/kern.old/uipc_syscalls.c /usr/src/sys/kern/uipc_syscalls. c --- /usr/src/sys/kern.old/uipc_syscalls.c Wed Sep 8 20:45:50 1999 +++ /usr/src/sys/kern/uipc_syscalls.c Sun Sep 26 19:34:29 1999 @@ -1620,6 +1620,8 @@ * Get an mbuf header and set it up as having external storage. */ MGETHDR(m, M_WAIT, MT_DATA); + if (m == NULL) + return ENOBUFS; m->m_ext.ext_free = sf_buf_free; m->m_ext.ext_ref = sf_buf_ref; m->m_ext.ext_buf = (void *)sf->kva; --8<--[end]--8<-- --8<--[mbuf2.patch]--8<-- --- mbuf.h.orig Sun Sep 26 14:17:20 1999 +++ mbuf.h Tue Sep 28 23:39:22 1999 @@ -153,6 +153,17 @@ #define M_DONTWAIT 1 #define M_WAIT 0 +/* + * Flags to pass to the *_wait functions (when we have to wait for an + * mbuf to be freed). + * XXX this could theoretically also be implemented as a char (which would + * be SLIGHTLY less costly) that would be ORed with a specific 'pattern' + * that could represent each one of the options -- but it's kept this way + * for now for simplicity's sake. + */ +#define MGET_C 1 +#define MGETHDR_C 2 + /* Freelists: * * Normal mbuf clusters are normally treated as character arrays @@ -203,7 +214,8 @@ splx(_ms); \ } else { \ splx(_ms); \ - (m) = m_retry((how), (type)); \ + if (((m)=m_retry((how), (type)))==NULL && (how)==M_WAIT) \ + (m) = m_mballoc_wait(MGET_C,(type)); \ } \ } @@ -223,7 +235,8 @@ splx(_ms); \ } else { \ splx(_ms); \ - (m) = m_retryhdr((how), (type)); \ + if (((m)=m_retryhdr((how),(type)))==NULL && (how)==M_WAIT) \ + (m) = m_mballoc_wait(MGETHDR_C,(type)); \ } \ } @@ -235,16 +248,20 @@ * MCLFREE releases a reference to a cluster allocated by MCLALLOC, * freeing the cluster if the reference count has reached 0. */ -#define MCLALLOC(p, how) \ - MBUFLOCK( \ - if (mclfree == 0) \ +#define MCLALLOC(p, how) { \ + int _ms = splimp(); \ + if (mclfree == 0) \ (void)m_clalloc(1, (how)); \ - if (((p) = (caddr_t)mclfree) != 0) { \ + if (((p) = (caddr_t)mclfree) != 0) { \ ++mclrefcnt[mtocl(p)]; \ mbstat.m_clfree--; \ mclfree = ((union mcluster *)(p))->mcl_next; \ - } \ - ) + splx(_ms); \ + } else if ((how) == M_WAIT) { \ + splx(_ms); \ + (p) = m_clalloc_wait(); \ + } \ +} #define MCLGET(m, how) \ { MCLALLOC((m)->m_ext.ext_buf, (how)); \ @@ -263,6 +280,7 @@ ((union mcluster *)(p))->mcl_next = mclfree; \ mclfree = (union mcluster *)(p); \ mbstat.m_clfree++; \ + (void)m_clalloc_wakeup(); \ } \ ) @@ -284,6 +302,7 @@ ((union mcluster *)(p))->mcl_next = mclfree; \ mclfree = (union mcluster *)(p); \ mbstat.m_clfree++; \ + (void)m_clalloc_wakeup(); \ } \ } \ } \ @@ -292,6 +311,7 @@ mbstat.m_mtypes[MT_FREE]++; \ (m)->m_next = mmbfree; \ mmbfree = (m); \ + (void)m_mballoc_wakeup(); \ ) /* @@ -408,16 +428,20 @@ struct mbuf *m_gethdr __P((int, int)); struct mbuf *m_prepend __P((struct mbuf *,int,int)); struct mbuf *m_pullup __P((struct mbuf *, int)); +struct mbuf *m_mballoc_wait __P((int,u_short)); struct mbuf *m_retry __P((int, int)); struct mbuf *m_retryhdr __P((int, int)); struct mbuf *m_split __P((struct mbuf *,int,int)); void m_adj __P((struct mbuf *, int)); void m_cat __P((struct mbuf *,struct mbuf *)); +void m_mballoc_wakeup __P((void)); +void m_clalloc_wakeup __P((void)); int m_mballoc __P((int, int)); int m_clalloc __P((int, int)); void m_copyback __P((struct mbuf *, int, int, caddr_t)); void m_copydata __P((struct mbuf *,int,int,caddr_t)); void m_freem __P((struct mbuf *)); +caddr_t m_clalloc_wait __P((void)); #endif /* KERNEL */ #endif /* !_SYS_MBUF_H_ */ --8<--[end]--8<-- There are still very few calls to the allocation routines and macros from some of the net module code (net/, netinet/, etc.) with M_WAIT. Most of these calls check for the possibility of error... a few still remain. From what I've been able to see, what remains is not much and can be remedied fairly quickly (I just never got around to it). Again, if interest arises, I will gladly go over that as well -- these patches, however, take care of the main problem. --Bosko M. >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 Sep 29 21:40: 2 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F0BA91529A for ; Wed, 29 Sep 1999 21:40:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA13586; Wed, 29 Sep 1999 21:40:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 2A9C41504E; Wed, 29 Sep 1999 21:37:11 -0700 (PDT) Message-Id: <19990930043711.2A9C41504E@hub.freebsd.org> Date: Wed, 29 Sep 1999 21:37:11 -0700 (PDT) From: hvb@dsms.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: misc/14043: lo0 not configured by default Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14043 >Category: misc >Synopsis: lo0 not configured by default >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Sep 29 21:40:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: harold barker >Release: 3.3 >Organization: Dark Side of the Moon SoftWare >Environment: sm.dsms.com 3.3-RELEASE FreeBSD 3.3-RELEASE #0: Wed Sep 29 20:09:34 PDT 1999 root@sm.dsms.com:/usr/src/sys/compile/dsms33aSMPsm i386 >Description: lo0 was not added to network_interface in rc.conf. This breaks lot-o-stuff >How-To-Repeat: I loaded from CD so i did the netconfig sometime after install. network_interface was set to "fxp0 auto". I would think sysconfig would setup lo0 in all cases. >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 Sep 30 0:49: 2 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from neo.gen.oleane.fr (neo.gen.oleane.fr [194.2.203.96]) by hub.freebsd.org (Postfix) with ESMTP id EB703151C6; Thu, 30 Sep 1999 00:48:59 -0700 (PDT) (envelope-from spe@oleane.net) Received: by neo.gen.oleane.fr (Postfix, from userid 0) id D9406995E0; Thu, 30 Sep 1999 09:52:37 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by neo.gen.oleane.fr (Postfix) with ESMTP id D74FC993CD; Thu, 30 Sep 1999 09:52:37 +0200 (CEST) Date: Thu, 30 Sep 1999 09:52:37 +0200 (CEST) From: Sebastien Petit To: dillon@FreeBSD.org Cc: spe@oleane.net, freebsd-bugs@FreeBSD.org Subject: Re: kern/13488: panic: getnewbuf: In-Reply-To: <199909291702.KAA69616@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 > Synopsis: panic: getnewbuf: > > State-Changed-From-To: open->closed > State-Changed-By: dillon > State-Changed-When: Wed Sep 29 10:00:27 PDT 1999 > State-Changed-Why: > Just prior to the 3.3 release getnewbuf() was patched to avoid this particular > panic. The patch is about as good as we can get short of rewriting > getnewbuf() in the 3.x releases. getnewbuf() *has* been completely rewritten > in the 4.x development kernels (i.e. -current) and does not have this problem > at all. Yes, good, I try the bug of getnewbuf on 3.3-RELEASE and It doesn't crash. Thanks for your patch and your good work. Sebastien. --- spe@oleane.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Sep 30 2:50:10 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6E135159D1 for ; Thu, 30 Sep 1999 02:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA36025; Thu, 30 Sep 1999 02:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from jimex.jinr.ru (jimex.jinr.ru [159.93.17.7]) by hub.freebsd.org (Postfix) with ESMTP id 515AD159BB for ; Thu, 30 Sep 1999 02:48:59 -0700 (PDT) (envelope-from isupov@moonhe.jinr.ru) Received: from moonhe.jinr.ru (isupov@moonhe.jinr.ru [159.93.18.27]) by jimex.jinr.ru (8.8.8/8.8.4) with ESMTP id NAA03100 for ; Thu, 30 Sep 1999 13:48:48 +0400 (MSD) Received: (from isupov@localhost) by moonhe.jinr.ru (8.9.3/8.9.3) id NAA07887; Thu, 30 Sep 1999 13:48:02 +0400 (MSD) (envelope-from isupov) Message-Id: <199909300948.NAA07887@moonhe.jinr.ru> Date: Thu, 30 Sep 1999 13:48:02 +0400 (MSD) From: isupov@moonhe.jinr.ru Reply-To: isupov@moonhe.jinr.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: i386/14048: ``doscmd -r'' doesn't work Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14048 >Category: i386 >Synopsis: ``doscmd -r'' doesn't 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: Thu Sep 30 02:50:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Isupov A.Yu. >Release: FreeBSD 3.2-RELEASE i386 >Organization: LHE, JINR >Environment: - FreeBSD 3.2-RELEASE i386 - doscmd(1) recompiled with X support, as described in doscmd.1 manual pages, DIAGNOSTICS - Processors: AMD K6-III-400 and Pentium P54C 90MHz >Description: 1. doscmd/tty.c/console_init(): mmap() of /dev/vga: Invalid argument 2. doscmd/tty.c/console_init(): doscmd/AsyncIO.c/_RegisterIO(): 1060: Invalid FD 3. doscmd/trap.c/sigbus(): ax=0003 bx=0000 cx=ffff dx=0000 si=0000 di=ffff sp=7fe5 bp=0000 cs=6f00 ss=9800 ds=0000 es=0000 ip=0 eflags=b0286 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 addb %al,(%bx+%si) doscmd: fatal error unsupported instruction (Note, that ``doscmd -x'' works.) >How-To-Repeat: 1. ``doscmd -r'' on console 2. ``doscmd -r'' on console after fix 1. 3. ``doscmd -r'' on console after fix 2. >Fix: 1. device vga0 in kernel reports (and this reasonable!): /kernel: vga0 at 0x3b0-0x3df maddr 0xa0000 msize 131072 on isa but in the doscmd/tty.c/console_init() we have: addr = mmap((caddr_t)0xA0000, 5 * 64 * 1024, PROT_EXEC | PROT_READ | PROT_WRITE, MAP_FILE | MAP_FIXED | MAP_INHERIT | MAP_SHARED, fd, 0); so 5*64*1024 = 327680 (from 0xA0000 to 0xEFFFF !) slightly huge... I think, 2*64*1024 = 131072 (from 0xA0000 to 0xBFFFF) will be enough ? Following fix proposed (diff -c): -----------------fix 1---------------------------------------------- *** tty.c.orig Thu Sep 30 12:21:23 1999 --- tty.c Thu Sep 30 13:25:07 1999 *************** *** 286,292 **** perror("/dev/vga"); quit(1); } ! addr = mmap((caddr_t)0xA0000, 5 * 64 * 1024, PROT_EXEC | PROT_READ | PROT_WRITE, MAP_FILE | MAP_FIXED | MAP_INHERIT | MAP_SHARED, fd, 0); --- 286,292 ---- perror("/dev/vga"); quit(1); } ! addr = mmap((caddr_t)0xA0000, 2 * 64 * 1024, PROT_EXEC | PROT_READ | PROT_WRITE, MAP_FILE | MAP_FIXED | MAP_INHERIT | MAP_SHARED, fd, 0); -----------------fix 1 end------------------------------------------- 2. In the doscmd/tty.c/console_init() we have: if ((fd = open("/dev/console", 2)) < 0) { perror("/dev/console"); quit(1); } fd = squirrel_fd(fd); squirrel_fd() duplicates file descriptor at the top of the permitted fd range. It's high limit obtained by sysconf(_SC_OPEN_MAX). But this incompatible with doscmd/AsyncIO.c, where we have definition: static Async handlers[OPEN_MAX]; and direct check in the doscmd/AsyncIO.c/_RegisterIO() : if (fd < 0 || fd > OPEN_MAX) { printf("%d: Invalid FD\n", fd); return; } Following fix proposed (diff -c): -----------------fix 2------------------------------------------ *** tty.c.orig Thu Sep 30 12:21:23 1999 --- tty.c Thu Sep 30 13:25:07 1999 *************** *** 311,317 **** quit(1); } ! fd = squirrel_fd(fd); kbd_fd = fd; #ifdef __FreeBSD__ --- 311,317 ---- quit(1); } ! fd = squirrel1_fd(fd); kbd_fd = fd; #ifdef __FreeBSD__ *** doscmd.c.orig Thu Sep 30 12:21:23 1999 --- doscmd.c Thu Sep 30 13:25:41 1999 *************** *** 761,766 **** --- 761,784 ---- return(fd); } + int + squirrel1_fd(int fd) + { + int sfd = OPEN_MAX; + struct stat sb; + + do { + errno = 0; + fstat(--sfd, &sb); + } while (sfd > 0 && errno != EBADF); + + if (errno == EBADF && dup2(fd, sfd) >= 0) { + close(fd); + return(sfd); + } + return(fd); + } + /* ** Exit-time stuff */ -----------------fix 2 end---------------------------------- 3. doscmd(1) obtain SIGBUS for unknown reasons. 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 Sep 30 4: 0:14 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1DD51159BB for ; Thu, 30 Sep 1999 04:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA39647; Thu, 30 Sep 1999 04:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 30 Sep 1999 04:00:03 -0700 (PDT) Message-Id: <199909301100.EAA39647@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: bin/14040: amd has wrong uname data compile in it Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/14040; it has been noted by GNATS. From: Sheldon Hearn To: Jim.Pirzyk@disney.com Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/14040: amd has wrong uname data compile in it Date: Thu, 30 Sep 1999 12:54:48 +0200 On Wed, 29 Sep 1999 16:54:44 -0400, Jim.Pirzyk@disney.com wrote: > Have amd call the uname C library function at run time to set the > $os and $osver variables. Could you try to explain how this behaviour actually causes a problem for you, particularly in the light of the -o option. 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 Sep 30 4:10: 2 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5B744150E3 for ; Thu, 30 Sep 1999 04:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA42637; Thu, 30 Sep 1999 04:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 30 Sep 1999 04:10:01 -0700 (PDT) Message-Id: <199909301110.EAA42637@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: bin/14041: "host" blows up with incomplete arguments Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/14041; it has been noted by GNATS. From: Sheldon Hearn To: Paul Southworth Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/14041: "host" blows up with incomplete arguments Date: Thu, 30 Sep 1999 12:58:42 +0200 On Wed, 29 Sep 1999 20:19:58 -0400, Paul Southworth wrote: > If you give the "host" command some flags but nothing > to query, it dies and dumps core. This is why it should be using getopt. :-) 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 Sep 30 5:50: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 78BA215419 for ; Thu, 30 Sep 1999 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 FAA50298; Thu, 30 Sep 1999 05:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 30 Sep 1999 05:50:02 -0700 (PDT) Message-Id: <199909301250.FAA50298@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Jim Pirzyk Subject: Re: bin/14040: amd has wrong uname data compile in it Reply-To: Jim Pirzyk Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/14040; it has been noted by GNATS. From: Jim Pirzyk To: Sheldon Hearn Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/14040: amd has wrong uname data compile in it Date: Thu, 30 Sep 1999 08:41:34 -0400 On Thu, 30 Sep 1999, Sheldon Hearn wrote: >On Wed, 29 Sep 1999 16:54:44 -0400, Jim.Pirzyk@disney.com wrote: > >> Have amd call the uname C library function at run time to set the >> $os and $osver variables. > >Could you try to explain how this behaviour actually causes a problem >for you, particularly in the light of the -o option. > >Ciao, >Sheldon. If you use the -o option and upgrade your system, then the -o option could have the wrong value (if you forget to change it). Since there is an easy way to have the system figure it out for you, it is one less thing that needs to be maintained. I understand that it is a semantic issue, hence the low priority and severity. Does this make sense? - JimP -- --- @(#) $Id: dot.signature,v 1.6 1999/09/24 12:53:00 pirzyk Exp $ __o Jim.Pirzyk@disney.com ------------------------------------- _'\<,_ System Intergrator, Walt Disney Feature Animation Florida (*)/ (*) at Disney MGM Studios To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Sep 30 5:50: 8 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5017D151FB for ; Thu, 30 Sep 1999 05:50:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA50306; Thu, 30 Sep 1999 05:50:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 30 Sep 1999 05:50:04 -0700 (PDT) Message-Id: <199909301250.FAA50306@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: bin/14040: amd has wrong uname data compile in it Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/14040; it has been noted by GNATS. From: Sheldon Hearn To: Jim Pirzyk Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/14040: amd has wrong uname data compile in it Date: Thu, 30 Sep 1999 14:45:42 +0200 On Thu, 30 Sep 1999 08:41:34 -0400, Jim Pirzyk wrote: > I understand that it is a semantic issue, hence the low priority and > severity. > > Does this make sense? Yes, I just want to know what problems you think would be caused in such a case. I ask because this is something that'll "go wrong" very seldom, and I'm pretty sure that osversion is supposed to store the os under which amd was compiled, not what it's running under right now. 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 Sep 30 7:10:11 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 06CB515095 for ; Thu, 30 Sep 1999 07:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA06230; Thu, 30 Sep 1999 07:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 30 Sep 1999 07:10:02 -0700 (PDT) Message-Id: <199909301410.HAA06230@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Jim Pirzyk Subject: Re: bin/14040: amd has wrong uname data compile in it Reply-To: Jim Pirzyk Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/14040; it has been noted by GNATS. From: Jim Pirzyk To: Sheldon Hearn Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/14040: amd has wrong uname data compile in it Date: Thu, 30 Sep 1999 10:02:59 -0400 On Thu, 30 Sep 1999, Sheldon Hearn wrote: >On Thu, 30 Sep 1999 08:41:34 -0400, Jim Pirzyk wrote: > >> I understand that it is a semantic issue, hence the low priority and >> severity. >> >> Does this make sense? > >Yes, I just want to know what problems you think would be caused in such >a case. I ask because this is something that'll "go wrong" very seldom, >and I'm pretty sure that osversion is supposed to store the os under >which amd was compiled, not what it's running under right now. But hard coding values that should be determined at run time limits the flexability of the software.... - JimP -- --- @(#) $Id: dot.signature,v 1.6 1999/09/24 12:53:00 pirzyk Exp $ __o Jim.Pirzyk@disney.com ------------------------------------- _'\<,_ System Intergrator, Walt Disney Feature Animation Florida (*)/ (*) at Disney MGM Studios To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Sep 30 8:37:51 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from mail.mira.dk (mail.mira.dk [212.70.21.10]) by hub.freebsd.org (Postfix) with ESMTP id A58A914CF6 for ; Thu, 30 Sep 1999 08:37:29 -0700 (PDT) (envelope-from anders@givskov.dk) Received: from givskov (d4460b18.rev.mira.dk [212.70.11.24]) by mail.mira.dk (8.8.2/8.8.2) with SMTP id RAA14349 for ; Thu, 30 Sep 1999 17:45:33 +0200 (MET DST) Message-ID: <000701bf0b59$c52cb6a0$6501a8c0@givskov> From: "Anders Givskov Pedersen" To: Subject: FreeBSD won't boot on 17.3Gb harddrive! Date: Thu, 30 Sep 1999 17:37:52 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2314.1300 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I'm having trouble booting my FreeBSD after upgrading my harddrive. I've = recently installed a 17,3Gb Fujitsu harddrive in my computer. To be able = to boot multiple operating systems, I've used the boot manager that = comes with FreeBSD. Booting Win98 works fine, but when I try to boot the = FreeBSD partition is just stops. My partitions are configures like this: Partition 1 : FAT32 size 7.06Gb Partition 2 : FAT32 size 8.12Gb Partition 3 : FreeBSD size 2.12Gb I've tried several thing, and I found out that if I removed my second = partition containing FAT32, and partitioned a FreeBSD slice like this: Partition 1 : FAT32 size 7.06Gb Partition 2 : FreeBSD size 2.12Gb Partition 3 : FAT32 size 8.12Gb then the FreeBSD slice would boot as normal. Could it be the fact that = the boot manager can't reach partitions that are located above 8Gb on = the harddrive. I would appreciate any kind of feedback on this issue Best regards Anders G. Pedersen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Sep 30 9:20: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4F2611567C for ; Thu, 30 Sep 1999 09:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA16490; Thu, 30 Sep 1999 09:20:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 74F2E14ED9; Thu, 30 Sep 1999 09:17:05 -0700 (PDT) Message-Id: <19990930161705.74F2E14ED9@hub.freebsd.org> Date: Thu, 30 Sep 1999 09:17:05 -0700 (PDT) From: rconde@btg.cc To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: misc/14056: FreeBsd 3.3 Make world fails Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14056 >Category: misc >Synopsis: FreeBsd 3.3 Make world fails >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Sep 30 09:20:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Robert Conde >Release: 3.2 >Organization: Brookhaven Technology Group >Environment: FreeBSD btg1.lihti.org 3.2-STABLE FreeBSD-3.2 STABLE #2: Fri Jun 25 19:02:12 EDT 1999 root@btg1.lihti.org:/usr/src/sys/compile/BGT1 i386 >Description: error 71 install: ufs/ffs/softdep.h: No such file or directory - dynamic link is gone >How-To-Repeat: n/a >Fix: n/a >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Sep 30 9:30: 9 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B3B09159F9 for ; Thu, 30 Sep 1999 09:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA17763; Thu, 30 Sep 1999 09:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 30 Sep 1999 09:30:02 -0700 (PDT) Message-Id: <199909301630.JAA17763@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: bin/14040: amd has wrong uname data compile in it Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/14040; it has been noted by GNATS. From: Sheldon Hearn To: Jim Pirzyk Cc: freebsd-gnats-submit@freebsd.org Subject: Re: bin/14040: amd has wrong uname data compile in it Date: Thu, 30 Sep 1999 18:28:28 +0200 On Thu, 30 Sep 1999 12:05:43 -0400, Jim Pirzyk wrote: > I see, said the blind man. I cannot answer the question if it is > storing the osver at compile time because it may not be able to get it > at run time. Maybe it was before most systems had the uname C library > routine, so it had to be compiled in? Could be. I'll have a closer look at where (if at all) amd users osversion internally. :-) Later, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Sep 30 10:30: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 49FB514BD2 for ; Thu, 30 Sep 1999 10:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA23258; Thu, 30 Sep 1999 10:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id C0ABF151A4; Thu, 30 Sep 1999 10:26:10 -0700 (PDT) Message-Id: <19990930172610.C0ABF151A4@hub.freebsd.org> Date: Thu, 30 Sep 1999 10:26:10 -0700 (PDT) From: tmb@sophos.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: kern/14060: 3.3-STABLE on primary mail server panics on intermittent (async. to any other event) basis 4 times in last week Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14060 >Category: kern >Synopsis: 3.3-STABLE on primary mail server panics on intermittent (async. to any other event) basis 4 times in last week >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 Sep 30 10:30:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Mark Blackman >Release: 3.3-STABLE >Organization: Sophos PLC >Environment: FreeBSD viking.sophos.com 3.3-STABLE FreeBSD 3.3-STABLE #0: Thu Sep 30 05:06:32 GMT 1999 root@viking.sophos.com:/usr/src/sys/compile/VIKING_D i386 >Description: (kgdb) symbol kernel Reading symbols from kernel...(no debugging symbols found)...done. (kgdb) exec-file /var/crash/kernel.2 (kgdb) core-file /var/crash/vmcore.2 IdlePTD 2965504 initial pcb at 2541e8 panicstr: softdep_lock: locking against myself panic messages: --- panic: softdep_fsync: pending ops syncing disks... panic: softdep_lock: locking against myself dumping to dev 20001, offset 262144 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 0xc014408f in boot () (kgdb) where #0 0xc014408f in boot () #1 0xc014432d in panic () #2 0xc01d0d7d in acquire_lock () #3 0xc01d3b17 in initiate_write_inodeblock () #4 0xc01d38c7 in softdep_disk_io_initiation () #5 0xc017507e in spec_strategy () #6 0xc0174811 in spec_vnoperate () #7 0xc01df9ad in ufs_vnoperatespec () #8 0xc01622a7 in bwrite () #9 0xc0166976 in vop_stdbwrite () #10 0xc01667c1 in vop_defaultop () #11 0xc0174811 in spec_vnoperate () #12 0xc01df9ad in ufs_vnoperatespec () #13 0xc0162c53 in vfs_bio_awrite () #14 0xc01d929e in ffs_fsync () #15 0xc01d7747 in ffs_sync () #16 0xc016b31b in sync () #17 0xc0143ed5 in boot () #18 0xc014432d in panic () #19 0xc01d49d2 in softdep_fsync () #20 0xc016dbf2 in fsync () #21 0xc020866f in syscall () #22 0xc01fda9c in Xint0x80_syscall () #23 0x804e53c in ?? () #24 0x8049b89 in ?? () #25 0x804b9d1 in ?? () #26 0x804bafa in ?? () #27 0x8052739 in ?? () #28 0x804c266 in ?? () #29 0x8049e9a in ?? () #30 0x8049989 in ?? () (kgdb) exit >How-To-Repeat: keep running. :) >Fix: turn off soft-updates? >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 Sep 30 13:20: 9 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 87E15152E3 for ; Thu, 30 Sep 1999 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 NAA36020; Thu, 30 Sep 1999 13:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from misha.cisco.com (misha.cisco.com [171.69.206.50]) by hub.freebsd.org (Postfix) with ESMTP id A2D7B152EB for ; Thu, 30 Sep 1999 13:17:58 -0700 (PDT) (envelope-from mi@misha.cisco.com) Received: (from mi@localhost) by misha.cisco.com (8.9.3/8.9.1) id QAA42394; Thu, 30 Sep 1999 16:17:56 -0400 (EDT) (envelope-from mi) Message-Id: <199909302017.QAA42394@misha.cisco.com> Date: Thu, 30 Sep 1999 16:17:56 -0400 (EDT) From: Mikhail Teterin Reply-To: mi@aldan.algebra.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/14066: use of ssh2 as CVS_RSH breaks commiting Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14066 >Category: bin >Synopsis: use of ssh2 as CVS_RSH breaks commiting >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 Sep 30 13:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Mikhail Teterin >Release: FreeBSD 3.3-STABLE i386 >Organization: Virtual Estates, Inc. >Environment: setenv CVS_RSH ssh2 >Description: When committing to a remote location, ssh2 is invoked. It properly prompts for password, etc. But when cvs invokes vi after that, vi quits immediately with: ``Error: input: Resource temporarily unavailable'' Other non-X editors break in a similar fasion. >How-To-Repeat: See Environment and Description. >Fix: . Use RSH, which is insecure and requires use of .rhost, which is even worse, with CVS_RSH environment variable, or . Use some X-editor, such as gvim or xedit, with EDITOR environment variable: env EDITOR=xedit cvs commit >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 Sep 30 13:51:32 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from dt014n8c.san.rr.com (dt011n66.san.rr.com [204.210.13.102]) by hub.freebsd.org (Postfix) with ESMTP id 48EED14ECA for ; Thu, 30 Sep 1999 13:51:22 -0700 (PDT) (envelope-from Doug@gorean.org) Received: from localhost (doug@localhost) by dt014n8c.san.rr.com (8.9.3/8.8.8) with ESMTP id NAA44045; Thu, 30 Sep 1999 13:50:57 -0700 (PDT) (envelope-from Doug@gorean.org) Date: Thu, 30 Sep 1999 13:50:57 -0700 (PDT) From: Doug X-Sender: doug@dt014n8c.san.rr.com To: hvb@dsms.com Cc: freebsd-bugs@freebsd.org Subject: Re: misc/14043: lo0 not configured by default In-Reply-To: <19990930043711.2A9C41504E@hub.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 Wed, 29 Sep 1999 hvb@dsms.com wrote: > lo0 was not added to network_interface in rc.conf. This breaks lot-o-stuff This problem has already been fixed and is noted in the errata for this release. Thanks, Doug -- "Stop it, I'm gettin' misty." - Mel Gibson as Porter, "Payback" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Sep 30 18:35:31 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freebie.lemis.com (freebie.lemis.com [192.109.197.137]) by hub.freebsd.org (Postfix) with ESMTP id 556FA14F22; Thu, 30 Sep 1999 18:35:09 -0700 (PDT) (envelope-from grog@freebie.lemis.com) Received: (from grog@localhost) by freebie.lemis.com (8.9.3/8.9.0) id LAA24796; Fri, 1 Oct 1999 11:04:38 +0930 (CST) Date: Fri, 1 Oct 1999 11:04:38 +0930 From: Greg Lehey To: Anders Givskov Pedersen Cc: FreeBSD Questions Subject: Re: FreeBSD won't boot on 17.3Gb harddrive! Message-ID: <19991001110438.G496@freebie.lemis.com> References: <000701bf0b59$c52cb6a0$6501a8c0@givskov> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <000701bf0b59$c52cb6a0$6501a8c0@givskov>; from Anders Givskov Pedersen on Thu, Sep 30, 1999 at 05:37:52PM +0200 WWW-Home-Page: http://www.lemis.com/~grog X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-41-739-7062 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [Format recovered--see http://www.lemis.com/email/email-format.html] [following up to -questions] I can't see a bug here. If you have installation problems, please ask FreeBSD-questions. You'll get more response. On Thursday, 30 September 1999 at 17:37:52 +0200, Anders Givskov Pedersen wrote: > Hi, > > I'm having trouble booting my FreeBSD after upgrading my > harddrive. I've recently installed a 17,3Gb Fujitsu harddrive in my > computer. To be able to boot multiple operating systems, I've used > the boot manager that comes with FreeBSD. Booting Win98 works fine, > but when I try to boot the FreeBSD partition is just stops. My > partitions are configures like this: The previous paragraph was received as a single line, 359 characters long. The other paragraphs were also in a single line. Please limit your lines to about 75 characters. > Partition 1 : FAT32 size 7.06Gb > Partition 2 : FAT32 size 8.12Gb > Partition 3 : FreeBSD size 2.12Gb > > I've tried several thing, and I found out that if I removed my > second partition containing FAT32, and partitioned a FreeBSD slice > like this: > > Partition 1 : FAT32 size 7.06Gb > Partition 2 : FreeBSD size 2.12Gb > Partition 3 : FAT32 size 8.12Gb > > then the FreeBSD slice would boot as normal. Could it be the fact > that the boot manager can't reach partitions that are located above > 8Gb on the harddrive. I would appreciate any kind of feedback on this > issue This is almost certainly a BIOS issue. It has nothing to do with FreeBSD. It's described in the FAQ at http://www.freebsd.org/FAQ/install.html#AEN583: Q: Any restrictions on how I divide the disk up? A: Yes. You must make sure that your root partition is below 1024 cylinders so the BIOS can boot the kernel from it. (Note that this is a limitation in the PC's BIOS, not FreeBSD). For a SCSI drive, this will normally imply that the root partition will be in the first 1024MB (or in the first 4096MB if extended translation is turned on - see previous question). For IDE, the corresponding figure is 504MB. This entry is no longer up to date; most modern systems don't have *this* limitation. Greg -- When replying to this message, please copy the original recipients. For more information, see http://www.lemis.com/questions.html See complete headers for address, home page and phone numbers finger grog@lemis.com for PGP public key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Sep 30 21:40:10 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5F3C114CB4 for ; Thu, 30 Sep 1999 21:40:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA69483; Thu, 30 Sep 1999 21:40:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from alcanet.com.au (border.alcanet.com.au [203.62.196.10]) by hub.freebsd.org (Postfix) with ESMTP id 6014614C06 for ; Thu, 30 Sep 1999 21:39:22 -0700 (PDT) (envelope-from jeremyp@gsmx07.alcatel.com.au) Received: by border.alcanet.com.au id <40354>; Fri, 1 Oct 1999 14:36:12 +1000 Message-Id: <99Oct1.143612est.40354@border.alcanet.com.au> Date: Fri, 1 Oct 1999 14:39:16 +1000 From: Peter Jeremy Reply-To: peter.jeremy@alcatel.com.au To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: bin/14069: Buffer overflow in mail(1) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14069 >Category: bin >Synopsis: Buffer overflow in mail(1) >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 Sep 30 21:40:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Peter Jeremy >Release: FreeBSD 4.0-CURRENT i386 >Organization: Alcatel Australia Limited >Environment: cvs-cur 5710 >Description: Mail(1) gets SIGSEGV whilst processing mailbox. >How-To-Repeat: Create a file containing the following (between the '===') and feed it to mail with `mail -f file'. (The mail addresses have been munged both to protect the guilty and to enable the location of the failure to be more accurately identified). Mail reports: Mail version 8.1 6/6/93. Type ? for help. "file": 1 message 1 new zsh: segmentation fault (core dumped) ================================================================ From aZZYZ.XZWZV@ZUZTZSZ.RZQ.ZP Mon Sep 27 18:11:11 1999 Return-Path: Received: from ZDZCZB.ZAZzZyZ.xZw.Zv (ZuZtZs.ZrZqZpZ.oZn.Zm [139.188.20.1]) by ZlZkZj.ZiZhZgZ.fZe.Zd (8.9.3/8.9.3) with ESMTP id SAA17296 for ; Mon, 27 Sep 1999 18:11:10 +1000 (EST) (envelope-from SYRYQ.YPYOY@NYMYLYK.YJY.IY) Received: from HYGY.FYE.YDYCYBY.AYz.Yy (mfg1 [139.188.23.1]) by YxYwYv.YuYtYsY.rYq.Yp (8.8.8/8.7.3) with ESMTP id SAA15285 for ; Mon, 27 Sep 1999 18:11:10 +1000 (EST) Received: from YfYeYd.YcYbYaX.XWX.VX by UXT.XSXRXQX.PXO.XN (PMDF V5.2-32 #37641) with ESMTP id <01JGH2YWZRSWBL6YMG@XMX.LXKXJXI.XHX.GX> for jeremyp@FXEXDX.CXBXAXz.XyX.xX (ORCPT rfc822;wXvXu.XtXsXr@XqXpXoX.nXm.Xl) ; Mon, 27 Sep 1999 18:09:45 +1000 Received: (from prdadm@localhost) by XkXjXi.XhXgXfX.eXd.Xc (AIX4.3/UCB 8.8.8/8.8.8) id SAA27452 for XbXaW.WVWUWT@WSWRWQW.PWO.WN; Mon, 27 Sep 1999 18:05:26 +1000 Date: Mon, 27 Sep 1999 18:05:26 +1000 From: WMWLW.KWJWI@WHWGWFW.EWD.WC (KYLIE SMITH) Subject: Notification of future termination xxxxxxxx To: WBW_AWzWyWxW@wWvWuW.tWsWrWq.WpW.oW To: nWm_WlWkWjWi@WhWgWf.WeWdWcW.bWa.VV To: UVT_VS@VRVQVP.VOVNVMV.LVK.VJ To: VIV_HVGVFVE@VDVCVB.VAVzVyV.xVw.Vv To: VuV_tVsVrVqV@pVoVnV.mVlVkVj.ViV.hV To: gVf_VeVdV@cVbVaU.UTUSURU.QUP.UO To: UNU_MULUKU@JUIUHU.GUFUEUD.UCU.BU To: AUz_UyUxUw@UvUuUt.UsUrUqU.pUo.Un To: UmU_lU@kUjUiU.hUgUfUe.UdU.cU To: bUa_TTSTRTQT@PTOTNT.MTLTKTJ.TIT.HT To: GTFTETDT.CTBTAT@zTyTxTw.TvT.uT To: tTsTr.TqTpTo@TnTmTlT.kTj.Ti To: ThTgTfT.eTdTcT@bTaSSRS.QSP.SO To: SNSMSLSKSJ.SISHSGS@FSESDSC.SBS.AS To: zSySxSwS.vSuStS@sSrSqSp.SoS.nS To: mSlSkS.jS@iShSgSf.SeS.dS To: cSbS.aRRQR@PRORNRM.RLR.KR To: JRIRH.RGR@FRERDRC.RBR.AR To: zRyRx.RwRv@RuRtRsR.rRq.Rp To: RoRnRmRl.RkRjRi@RhRgRfR.eRd.Rc To: RbRa.QQPQOQNQ@MQLQKQJ.QIQ.HQ To: GQFQEQDQCQ.BQAQzQy@QxQwQvQ.uQt.Qs To: QrQqQp.QoQnQmQ@lQkQjQi.QhQ.gQ To: fQeQdQcQbQa.PPOPNPMPLP@KPJPIPH.PGP.FP To: EPDPCPBP.APzP@yPxPwPv.PuP.tP To: sPr.PqPpP@oPnPmPl.PkP.jP To: iPhPgP.fPePd@PcPbPaO.ONO.MO To: LOK.OJO@IOHOGOF.OEO.DO To: COBO.AOzOyOxOw@OvOuOtO.sOr.Oq To: OpOoOn.OmOlOkOjOiOhO@gOfOeOd.OcO.bO To: aNNMN.LNKNJN@INHNGNF.NEN.DN To: CNBNA.NzNyN@xNwNvNu.NtN.sN To: rNqN.pNoNnNmN@lNkNjNi.NhN.gN To: fNeN.dNcNb@NaMMLMK.MJM.IM Reply-to: HMGMF.MEMDM@CMBMAMz.MyM.xM (KYLIE SMITH) Message-id: MIME-version: 1.0 X-Mailer: SAP R/3 Internet Mail Gateway 3.1I8 Content-type: TEXT/PLAIN; CHARSET="ISO-8859-1" Content-transfer-encoding: 7BIT Termination Date : 01.10.1999 Employee No: xxxxxxxx UPI: ZZxxxxxxx Employee Name : Xxxxx Xxxxxxx Xxxxxx Work Address : A.2/1F . Phone Extension : Position title : xxxxxxxx xxxxxxx xxxxxxxxxx Department : xxxxxxxxxx xxxxxxxxxx xxxxxxxxxx Supervisor : Zxxxx Yttttt ================================================================ Invoking gdb on the core file shows %ebp contains 0x4d492e4d, which is "M.IM" after byte reversal. This appears in the last `To:' address above. >Fix: The work-around I implemented was: # cd /usr/ports/mail/mutt # make # make install :-) I found (and fixed) what appeared to be a number of potential buffer overflows in copyin(), nextword() and parse() (all of which take char array with no size as an argument). This didn't help. Further investigation with gdb shows that skin() reads arbitrarily-sized input into a fixed size buffer. A quick fix for this is below. This fixed my problem with the above message, but I don't know if it's safe in general. Index: aux.c =================================================================== RCS file: /home/CVSROOT/src/usr.bin/mail/aux.c,v retrieving revision 1.4 diff -u -r1.4 aux.c --- aux.c 1997/07/24 06:56:33 1.4 +++ aux.c 1999/10/01 04:32:09 @@ -456,7 +456,7 @@ register char *cp, *cp2; char *bufend; int gotlt, lastsp; - char nbuf[BUFSIZ]; + char *nbuf = alloca(strlen(name)); if (name == NOSTR) return(NOSTR); Peter -- Peter Jeremy (VK2PJ) peter.jeremy@alcatel.com.au Alcatel Australia Limited 41 Mandible St Phone: +61 2 9690 5019 ALEXANDRIA NSW 2015 Fax: +61 2 9690 5982 >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 Sep 30 23:40: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 270E3150CF for ; Thu, 30 Sep 1999 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 XAA77320; Thu, 30 Sep 1999 23:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 3FE2E14FED; Thu, 30 Sep 1999 23:39:57 -0700 (PDT) Message-Id: <19991001063957.3FE2E14FED@hub.freebsd.org> Date: Thu, 30 Sep 1999 23:39:57 -0700 (PDT) From: rgyip@students.wisc.edu To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: i386/14071: FreeBSD 3.3 Installation CD does not boot. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14071 >Category: i386 >Synopsis: FreeBSD 3.3 Installation CD does not boot. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Sep 30 23:40:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Rick Yip >Release: 3.3 >Organization: >Environment: Intel >Description: There is a boot.cat on installation cd, but does not boot like version 3.2. Confirm by Cheapbytes. >How-To-Repeat: Put installation cd in and boot of cdrom. >Fix: Make boot floppies in DOS. >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 Sep 30 23:50:14 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3F92114D44 for ; Thu, 30 Sep 1999 23:50:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA77855; Thu, 30 Sep 1999 23:50:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 214CE14D0B; Thu, 30 Sep 1999 23:43:11 -0700 (PDT) Message-Id: <19991001064311.214CE14D0B@hub.freebsd.org> Date: Thu, 30 Sep 1999 23:43:11 -0700 (PDT) From: rgyip@students.wisc.edu To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: kern/14072: Rebooting in FreeBSD 3.3 wipes out known active partition (can't boot). Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14072 >Category: kern >Synopsis: Rebooting in FreeBSD 3.3 wipes out known active partition (can't boot). >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 Sep 30 23:50:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Rick Yip >Release: 3.3 >Organization: >Environment: Intel >Description: Booting in FreeBSD 3.3 wipes out the active partition(s) so if you dual boot, it cannot find the master boot record to boot off of later on. >How-To-Repeat: Install 3.3 and reboot. >Fix: Have Windows boot disk and fdisk and set the correct HD to active and reboot. >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 Sep 30 23:57:21 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8E755151AC; Thu, 30 Sep 1999 23:57:19 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA78544; Thu, 30 Sep 1999 23:57:19 -0700 (PDT) (envelope-from ru@FreeBSD.org) Date: Thu, 30 Sep 1999 23:57:19 -0700 (PDT) From: Message-Id: <199910010657.XAA78544@freefall.freebsd.org> To: mi@aldan.algebra.com, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/14066: use of ssh2 as CVS_RSH breaks commiting Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: use of ssh2 as CVS_RSH breaks commiting State-Changed-From-To: open->closed State-Changed-By: ru State-Changed-When: Thu Sep 30 23:55:58 PDT 1999 State-Changed-Why: Please send your complaint to . To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 1 2:41:21 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0233A14C86; Fri, 1 Oct 1999 02:41:19 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA90368; Fri, 1 Oct 1999 02:41:19 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Fri, 1 Oct 1999 02:41:19 -0700 (PDT) From: Message-Id: <199910010941.CAA90368@freefall.freebsd.org> To: rconde@btg.cc, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/14056: FreeBsd 3.3 Make world fails Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: FreeBsd 3.3 Make world fails State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Fri Oct 1 02:40:10 PDT 1999 State-Changed-Why: Your symlinks are pointing at the wrong place. Please read the file /usr/src/sys/ufs/ffs/README.softupdates and note that the location of the softupdates files has changed. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 1 3: 4:45 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6189A159D3; Fri, 1 Oct 1999 03:04:16 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA91612; Fri, 1 Oct 1999 03:04:15 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Fri, 1 Oct 1999 03:04:15 -0700 (PDT) From: Message-Id: <199910011004.DAA91612@freefall.freebsd.org> To: hvb@dsms.com, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/14043: lo0 not configured by default Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: lo0 not configured by default State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Fri Oct 1 03:02:15 PDT 1999 State-Changed-Why: The release errata for 3.3-RELEASE explain the problem and a work-around. http://www.freebsd.org/releases/3.3R/errata.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 1 3:20: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 086E414CA6 for ; Fri, 1 Oct 1999 03:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA92440; Fri, 1 Oct 1999 03:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 1 Oct 1999 03:20:03 -0700 (PDT) Message-Id: <199910011020.DAA92440@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Brian Somers Subject: Re: kern/11988: recvmsg with a cmsghdr but no iovec is broken Reply-To: Brian Somers Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/11988; it has been noted by GNATS. From: Brian Somers To: Pierre Beyssac Cc: FreeBSD-gnats-submit@FreeBSD.ORG, dot@dotat.at, brian@Awfulhak.org Subject: Re: kern/11988: recvmsg with a cmsghdr but no iovec is broken Date: Fri, 01 Oct 1999 11:18:41 +0100 > Hello, > > Here's a kernel patch that fixes the panic under -current. Could > you try it on your system and tell me if it works for you? > > I'm still investigating the rest of the PR regarding how descriptor > passing should work. > > Pierre Hi, I'm afraid I don't have any code to test this... I saw the problem while developing the ppp MP, but decided that I needed to send data at the same time anyway... I believe Tony is the person with the code. > -- > Pierre Beyssac pb@enst.fr Cheers. -- Brian Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 1 3:52:23 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8F88D14FF5; Fri, 1 Oct 1999 03:52:11 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA94359; Fri, 1 Oct 1999 03:52:11 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Fri, 1 Oct 1999 03:52:11 -0700 (PDT) From: Message-Id: <199910011052.DAA94359@freefall.freebsd.org> To: hvb@dsms.com, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, ru@FreeBSD.org Subject: Re: misc/14043: lo0 not configured by default Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: lo0 not configured by default State-Changed-From-To: closed->open State-Changed-By: sheldonh State-Changed-When: Fri Oct 1 03:51:13 PDT 1999 State-Changed-Why: As reported by Ruslan Ermilov the problem is still not fixed. Responsible-Changed-From-To: freebsd-bugs->ru Responsible-Changed-By: sheldonh Responsible-Changed-When: Fri Oct 1 03:51:13 PDT 1999 Responsible-Changed-Why: Ruslan requested that this PR be re-opened. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 1 4:50:52 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8E7BD14C86; Fri, 1 Oct 1999 04:50:50 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA00585; Fri, 1 Oct 1999 04:50:50 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Fri, 1 Oct 1999 04:50:50 -0700 (PDT) From: Message-Id: <199910011150.EAA00585@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, dillon@FreeBSD.org Subject: Re: misc/12376: When mounting NFS dirs, /etc/rc doesn't give sensible error messages Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: When mounting NFS dirs, /etc/rc doesn't give sensible error messages Responsible-Changed-From-To: freebsd-bugs->dillon Responsible-Changed-By: sheldonh Responsible-Changed-When: Fri Oct 1 04:50:21 PDT 1999 Responsible-Changed-Why: Over to the NFS maintainer, who might be interested in diffs. ;-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 1 5: 4:46 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 939CF14E84; Fri, 1 Oct 1999 05:04:45 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA02062; Fri, 1 Oct 1999 05:04:39 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Fri, 1 Oct 1999 05:04:39 -0700 (PDT) From: Message-Id: <199910011204.FAA02062@freefall.freebsd.org> To: andrew.lofthouse@robins.af.mil, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/13174: 3.- branch hardware probe does not detect primary IDE controller Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: 3.- branch hardware probe does not detect primary IDE controller State-Changed-From-To: open->feedback State-Changed-By: sheldonh State-Changed-When: Fri Oct 1 05:04:21 PDT 1999 State-Changed-Why: Any news on this one? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 1 5:10: 3 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 676631504F for ; Fri, 1 Oct 1999 05:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA02535; Fri, 1 Oct 1999 05:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 3D49314DD2; Fri, 1 Oct 1999 05:00:34 -0700 (PDT) Message-Id: <19991001120034.3D49314DD2@hub.freebsd.org> Date: Fri, 1 Oct 1999 05:00:34 -0700 (PDT) From: reuben.brown@online.no To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: conf/14075: CDROM not being recognized during certain phase of OS installation Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14075 >Category: conf >Synopsis: CDROM not being recognized during certain phase of OS installation >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Oct 1 05:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Reuben Brown >Release: FreeBSD 3.3-RC >Organization: Telenor AS >Environment: Haven't done a uname -a Haven't been able to do a CDROM install on problem machine. >Description: Compaq Deskpro EN 6400 Compaq BIOS Date July 3, 1999 Compaq ATAPI CDROM has the new drive shadowing specification ATAPI CDROM is Cable Select Master on the second IDE Controller IRQ 15 >How-To-Repeat: Reproduceable on stock Compaq Deskpro EN Series Desktop PCs purchased within the last 6 months. >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 Oct 1 5:15:30 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AF83414E84; Fri, 1 Oct 1999 05:15:23 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA02917; Fri, 1 Oct 1999 05:15:23 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Fri, 1 Oct 1999 05:15:23 -0700 (PDT) From: Message-Id: <199910011215.FAA02917@freefall.freebsd.org> To: rcharron@sci-syscom.com, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/13265: lock doesn't lock (doesn't work) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: lock doesn't lock (doesn't work) State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Fri Oct 1 05:05:55 PDT 1999 State-Changed-Why: Timed out. It is suspected that the originator was not using FreeBSD's stock lock. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 1 5:18: 2 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 236E915051; Fri, 1 Oct 1999 05:18:01 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA03170; Fri, 1 Oct 1999 05:18:01 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Fri, 1 Oct 1999 05:18:01 -0700 (PDT) From: Message-Id: <199910011218.FAA03170@freefall.freebsd.org> To: andrew@grillet98.freeserve.co.uk, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/13307: Cant build kernet for 2.2.8 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Cant build kernet for 2.2.8 State-Changed-From-To: open->feedback State-Changed-By: sheldonh State-Changed-When: Fri Oct 1 05:17:08 PDT 1999 State-Changed-Why: Any news on this one, Andre? Andrew, even. Sorry. :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 1 5:24: 9 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2575A14C5A; Fri, 1 Oct 1999 05:24:08 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA03698; Fri, 1 Oct 1999 05:24:08 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Fri, 1 Oct 1999 05:24:08 -0700 (PDT) From: Message-Id: <199910011224.FAA03698@freefall.freebsd.org> To: geniusj@free-bsd.org, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/13322: FreeBSD freezes when using the soundcard Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: FreeBSD freezes when using the soundcard State-Changed-From-To: open->feedback State-Changed-By: sheldonh State-Changed-When: Fri Oct 1 05:21:57 PDT 1999 State-Changed-Why: Did you ever get your dmesg and kernel config to Amancio? Any news? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 1 5:29:37 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D989D14C5A; Fri, 1 Oct 1999 05:29:35 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA04207; Fri, 1 Oct 1999 05:29:35 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Fri, 1 Oct 1999 05:29:35 -0700 (PDT) From: Message-Id: <199910011229.FAA04207@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, sheldonh@FreeBSD.org Subject: Re: misc/13398: Add WHICH_GAMES variable to src/Makefile.inc1 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Add WHICH_GAMES variable to src/Makefile.inc1 Responsible-Changed-From-To: freebsd-bugs->sheldonh Responsible-Changed-By: sheldonh Responsible-Changed-When: Fri Oct 1 05:28:36 PDT 1999 Responsible-Changed-Why: I've been using WHICH_GAMES quite happily for a while now. I'll commit next week unless someone pisses on my parade over the week-end. ;-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 1 5:53:32 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E7BB014FFE; Fri, 1 Oct 1999 05:53:30 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA06089; Fri, 1 Oct 1999 05:53:25 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Fri, 1 Oct 1999 05:53:25 -0700 (PDT) From: Message-Id: <199910011253.FAA06089@freefall.freebsd.org> To: geniusj@free-bsd.org, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/13322: FreeBSD freezes when using the soundcard Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: FreeBSD freezes when using the soundcard State-Changed-From-To: feedback->closed State-Changed-By: sheldonh State-Changed-When: Fri Oct 1 05:49:17 PDT 1999 State-Changed-Why: Mail to originator bounces. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 1 6: 7:30 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from kot.ne.mediaone.net (kot.ne.mediaone.net [24.218.15.190]) by hub.freebsd.org (Postfix) with ESMTP id 1138114BD8; Fri, 1 Oct 1999 06:07:14 -0700 (PDT) (envelope-from mi@aldan.algebra.com) Received: from rtfm.newton (rtfm.newton [10.10.0.1]) by kot.ne.mediaone.net (8.9.3/8.9.1) with ESMTP id JAA40413; Fri, 1 Oct 1999 09:07:14 -0400 (EDT) From: Mikhail Teterin X-Relay-IP: 10.10.0.1 Received: (from mi@localhost) by rtfm.newton (8.9.3/8.9.1) id JAA76736; Fri, 1 Oct 1999 09:07:14 -0400 (EDT) Message-Id: <199910011307.JAA76736@rtfm.newton> Subject: Re: bin/14066: use of ssh2 as CVS_RSH breaks commiting In-Reply-To: <199910010657.XAA78544@freefall.freebsd.org> from "ru@FreeBSD.org" at "Sep 30, 1999 11:57:19 pm" To: ru@FreeBSD.org Date: Fri, 1 Oct 1999 09:07:14 -0400 (EDT) Cc: freebsd-bugs@FreeBSD.org X-Face: %UW#n0|w>ydeGt/b@1-.UFP=K^~-:0f#O:D7w hJ5G_<5143Bb3kOIs9XpX+"V+~$adGP:J|SLieM31VIhqXeLBli"closed =State-Changed-By: ru =State-Changed-When: Thu Sep 30 23:55:58 PDT 1999 =State-Changed-Why: =Please send your complaint to . Why are you so sure it is ssh's problem? Just because this does not happen with rsh? I'd spend more then a day investigating if, perhaps, something is wrong with cvs(1). Is not ssh/rsh long gone by the time the editor is invoked? Yours, -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 1 6:19:31 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from axl.noc.iafrica.com (axl.noc.iafrica.com [196.31.1.175]) by hub.freebsd.org (Postfix) with ESMTP id 933B015350; Fri, 1 Oct 1999 06:19:22 -0700 (PDT) (envelope-from sheldonh@axl.noc.iafrica.com) Received: from sheldonh (helo=axl.noc.iafrica.com) by axl.noc.iafrica.com with local-esmtp (Exim 3.037 #1) id 11X2aW-000AYl-00; Fri, 01 Oct 1999 15:19:04 +0200 From: Sheldon Hearn To: Mikhail Teterin Cc: ru@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/14066: use of ssh2 as CVS_RSH breaks commiting In-reply-to: Your message of "Fri, 01 Oct 1999 09:07:14 -0400." <199910011307.JAA76736@rtfm.newton> Date: Fri, 01 Oct 1999 15:19:04 +0200 Message-ID: <40594.938783944@axl.noc.iafrica.com> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, 01 Oct 1999 09:07:14 -0400, Mikhail Teterin wrote: > Why are you so sure it is ssh's problem? Just because this does not > happen with rsh? It doesn't happen with ssh1 either. 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 Oct 1 6:50: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A397D1504F for ; Fri, 1 Oct 1999 06:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA65345; Fri, 1 Oct 1999 06:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 1 Oct 1999 06:50:02 -0700 (PDT) Message-Id: <199910011350.GAA65345@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ruslan Ermilov Subject: Re: bin/14041: "host" blows up with incomplete arguments Reply-To: Ruslan Ermilov Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/14041; it has been noted by GNATS. From: Ruslan Ermilov To: Paul Southworth Cc: FreeBSD-gnats-submit@FreeBSD.ORG, bind-bugs@isc.org Subject: Re: bin/14041: "host" blows up with incomplete arguments Date: Fri, 1 Oct 1999 16:38:06 +0300 --FL5UXtIhxfXey3p5 Content-Type: text/plain; charset=us-ascii On Wed, Sep 29, 1999 at 08:19:58PM -0400, Paul Southworth wrote: > > >Number: 14041 > >Category: bin > >Synopsis: "host" blows up with incomplete arguments > >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 Sep 29 17:30:01 PDT 1999 > >Closed-Date: > >Last-Modified: > >Originator: Paul Southworth > >Release: FreeBSD 3.3-RELEASE i386 > >Organization: > Internet Engineering Group > >Environment: > > FreeBSD 3.3-RELEASE, nothing unusual > > >Description: > > If you give the "host" command some flags but nothing > to query, it dies and dumps core. > > >How-To-Repeat: > > pauls@deadbeef(11)% host -t any highwing.cdrom.com > highwing.cdrom.com has address 204.216.28.168 > highwing.cdrom.com mail is handled (pri=10) by pike.cdrom.com > highwing.cdrom.com mail is handled (pri=5) by zippy.cdrom.com > pauls@deadbeef(12)% host -t any > Segmentation fault (core dumped) > The attached patch fixes the problem. -- Ruslan Ermilov Sysadmin and DBA of the ru@ucb.crimea.ua United Commercial Bank, ru@FreeBSD.org FreeBSD committer, +380.652.247.647 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --FL5UXtIhxfXey3p5 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="host.c.patch" Index: host.c =================================================================== RCS file: /usr/FreeBSD-CVS/src/contrib/bind/bin/host/host.c,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 host.c --- host.c 1998/05/03 04:09:49 1.1.1.1 +++ host.c 1999/10/01 12:32:39 @@ -175,10 +175,6 @@ res_init(); _res.retrans = 5; - if (c < 2) { - fprintf(stderr, "Usage: host [-w] [-v] [-r] [-d] [-t querytype] [-c class] [-a] host [server]\n -w to wait forever until reply\n -v for verbose output\n -r to disable recursive processing\n -d to turn on debugging output\n -t querytype to look for a specific type of information\n -c class to look for non-Internet data\n -a is equivalent to '-v -t *'\n"); - exit(1); - } while (c > 2 && v[1][0] == '-') { if (strcmp (v[1], "-w") == 0) { _res.retry = 1; @@ -228,6 +224,10 @@ c--; } } + if (c < 2) { + fprintf(stderr, "Usage: host [-w] [-v] [-r] [-d] [-t querytype] [-c class] [-a] host [server]\n -w to wait forever until reply\n -v for verbose output\n -r to disable recursive processing\n -d to turn on debugging output\n -t querytype to look for a specific type of information\n -c class to look for non-Internet data\n -a is equivalent to '-v -t *'\n"); + exit(1); + } if (c > 2) { s = v[2]; server_specified++; --FL5UXtIhxfXey3p5-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 1 6:56:34 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from axl.noc.iafrica.com (axl.noc.iafrica.com [196.31.1.175]) by hub.freebsd.org (Postfix) with ESMTP id D32FC157FE for ; Fri, 1 Oct 1999 06:56:17 -0700 (PDT) (envelope-from sheldonh@axl.noc.iafrica.com) Received: from sheldonh (helo=axl.noc.iafrica.com) by axl.noc.iafrica.com with local-esmtp (Exim 3.037 #1) id 11X39a-000AoU-00; Fri, 01 Oct 1999 15:55:18 +0200 From: Sheldon Hearn To: Ruslan Ermilov Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: bin/14041: "host" blows up with incomplete arguments In-reply-to: Your message of "Fri, 01 Oct 1999 06:50:02 MST." <199910011350.GAA65345@freefall.freebsd.org> Date: Fri, 01 Oct 1999 15:55:18 +0200 Message-ID: <41569.938786118@axl.noc.iafrica.com> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, 01 Oct 1999 06:50:02 MST, Ruslan Ermilov wrote: > The attached patch fixes the problem. Submit to the bind people? 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 Oct 1 7: 4:28 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from relay.ucb.crimea.ua (relay.ucb.crimea.ua [212.110.138.1]) by hub.freebsd.org (Postfix) with ESMTP id A0B0715488 for ; Fri, 1 Oct 1999 07:03:57 -0700 (PDT) (envelope-from ru@ucb.crimea.ua) Received: (from ru@localhost) by relay.ucb.crimea.ua (8.9.3/8.9.3/UCB) id RAA07907; Fri, 1 Oct 1999 17:02:39 +0300 (EEST) (envelope-from ru) Date: Fri, 1 Oct 1999 17:02:39 +0300 From: Ruslan Ermilov To: Sheldon Hearn Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: bin/14041: "host" blows up with incomplete arguments Message-ID: <19991001170239.C79506@relay.ucb.crimea.ua> Mail-Followup-To: Sheldon Hearn , freebsd-bugs@FreeBSD.ORG References: <199910011350.GAA65345@freefall.freebsd.org> <41569.938786118@axl.noc.iafrica.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i In-Reply-To: <41569.938786118@axl.noc.iafrica.com>; from Sheldon Hearn on Fri, Oct 01, 1999 at 03:55:18PM +0200 X-Operating-System: FreeBSD 3.2-STABLE i386 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Oct 01, 1999 at 03:55:18PM +0200, Sheldon Hearn wrote: > > > On Fri, 01 Oct 1999 06:50:02 MST, Ruslan Ermilov wrote: > > > The attached patch fixes the problem. > > Submit to the bind people? > Why don't you look at the audit-trail's mail headers? :-) Will commit it in 10 minutes. Ciao, -- Ruslan Ermilov Sysadmin and DBA of the ru@ucb.crimea.ua United Commercial Bank, ru@FreeBSD.org FreeBSD committer, +380.652.247.647 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 1 7: 6:15 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from axl.noc.iafrica.com (axl.noc.iafrica.com [196.31.1.175]) by hub.freebsd.org (Postfix) with ESMTP id 44F9015488 for ; Fri, 1 Oct 1999 07:06:10 -0700 (PDT) (envelope-from sheldonh@axl.noc.iafrica.com) Received: from sheldonh (helo=axl.noc.iafrica.com) by axl.noc.iafrica.com with local-esmtp (Exim 3.037 #1) id 11X3JL-000Arh-00; Fri, 01 Oct 1999 16:05:23 +0200 From: Sheldon Hearn To: Ruslan Ermilov Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: bin/14041: "host" blows up with incomplete arguments In-reply-to: Your message of "Fri, 01 Oct 1999 17:02:39 +0300." <19991001170239.C79506@relay.ucb.crimea.ua> Date: Fri, 01 Oct 1999 16:05:22 +0200 Message-ID: <41768.938786722@axl.noc.iafrica.com> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, 01 Oct 1999 17:02:39 +0300, Ruslan Ermilov wrote: > Why don't you look at the audit-trail's mail headers? :-) i don't see anything that goes "Ping". :-) My point was that you want the change to come in on the vendor branch. 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 Oct 1 7: 7: 9 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from kot.ne.mediaone.net (kot.ne.mediaone.net [24.218.15.190]) by hub.freebsd.org (Postfix) with ESMTP id 956BA1565D; Fri, 1 Oct 1999 07:07:06 -0700 (PDT) (envelope-from mi@aldan.algebra.com) Received: from rtfm.newton (rtfm.newton [10.10.0.1]) by kot.ne.mediaone.net (8.9.3/8.9.1) with ESMTP id KAA40533; Fri, 1 Oct 1999 10:07:05 -0400 (EDT) From: Mikhail Teterin X-Relay-IP: 10.10.0.1 Received: (from mi@localhost) by rtfm.newton (8.9.3/8.9.1) id KAA76944; Fri, 1 Oct 1999 10:07:05 -0400 (EDT) Message-Id: <199910011407.KAA76944@rtfm.newton> Subject: Re: bin/14066: use of ssh2 as CVS_RSH breaks commiting In-Reply-To: <40594.938783944@axl.noc.iafrica.com> from Sheldon Hearn at "Oct 1, 1999 03:19:04 pm" To: Sheldon Hearn Date: Fri, 1 Oct 1999 10:07:05 -0400 (EDT) Cc: ru@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG X-Face: %UW#n0|w>ydeGt/b@1-.UFP=K^~-:0f#O:D7w hJ5G_<5143Bb3kOIs9XpX+"V+~$adGP:J|SLieM31VIhqXeLBli" Why are you so sure it is ssh's problem? Just because this does not => happen with rsh? = =It doesn't happen with ssh1 either. It is still worth investigating further, I believe... -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 1 7: 7:26 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from relay.ucb.crimea.ua (relay.ucb.crimea.ua [212.110.138.1]) by hub.freebsd.org (Postfix) with ESMTP id 6825915488 for ; Fri, 1 Oct 1999 07:06:25 -0700 (PDT) (envelope-from ru@ucb.crimea.ua) Received: (from ru@localhost) by relay.ucb.crimea.ua (8.9.3/8.9.3/UCB) id QAA06480; Fri, 1 Oct 1999 16:57:09 +0300 (EEST) (envelope-from ru) Date: Fri, 1 Oct 1999 16:57:09 +0300 From: Ruslan Ermilov To: Doug Cc: hvb@dsms.com, freebsd-bugs@FreeBSD.ORG Subject: Re: misc/14043: lo0 not configured by default Message-ID: <19991001165709.B79506@relay.ucb.crimea.ua> Mail-Followup-To: Doug , hvb@dsms.com, freebsd-bugs@FreeBSD.ORG References: <19990930043711.2A9C41504E@hub.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i In-Reply-To: ; from Doug on Thu, Sep 30, 1999 at 01:50:57PM -0700 X-Operating-System: FreeBSD 3.2-STABLE i386 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Sep 30, 1999 at 01:50:57PM -0700, Doug wrote: > On Wed, 29 Sep 1999 hvb@dsms.com wrote: > > > lo0 was not added to network_interface in rc.conf. This breaks lot-o-stuff > > This problem has already been fixed and is noted in the errata for > this release. > No, the problem has not been FIXED, just worked around. Let's read the ERRATA: :o The lo0 (loop-back) device is not configured on startup, causing : utilities like mountd to fail. : :Fix: Assuming that you experience this problem at all, edit /etc/rc.conf : and search for where the network_interfaces variable is set. In : its value, change the word "auto" to "lo0" since the auto keyword : doesn't bring the loop-back device up properly, for reasons yet to ^^^^^^^^^^^^^^^^^^ : be adequately determined. Since your other interface(s) will already ^^^^^^^^^^^^^^^^^^^^^^^^ : be set in the network_interfaces variable after initial installation, : it's reasonable to simply s/auto/lo0/ in rc.conf and move on. That's why I requested Sheldon to re-open this PR. Cheers, -- Ruslan Ermilov Sysadmin and DBA of the ru@ucb.crimea.ua United Commercial Bank, ru@FreeBSD.org FreeBSD committer, +380.652.247.647 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 1 7: 9:54 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from axl.noc.iafrica.com (axl.noc.iafrica.com [196.31.1.175]) by hub.freebsd.org (Postfix) with ESMTP id 0A9811565D; Fri, 1 Oct 1999 07:09:41 -0700 (PDT) (envelope-from sheldonh@axl.noc.iafrica.com) Received: from sheldonh (helo=axl.noc.iafrica.com) by axl.noc.iafrica.com with local-esmtp (Exim 3.037 #1) id 11X3NH-000AsQ-00; Fri, 01 Oct 1999 16:09:27 +0200 From: Sheldon Hearn To: Mikhail Teterin Cc: ru@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/14066: use of ssh2 as CVS_RSH breaks commiting In-reply-to: Your message of "Fri, 01 Oct 1999 10:07:05 -0400." <199910011407.KAA76944@rtfm.newton> Date: Fri, 01 Oct 1999 16:09:27 +0200 Message-ID: <41813.938786967@axl.noc.iafrica.com> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, 01 Oct 1999 10:07:05 -0400, Mikhail Teterin wrote: > It is still worth investigating further, I believe... Absolutely, it just seems that investigations would be better if they were headed down the ssh road. :-) 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 Oct 1 7:10: 7 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5BD9615A79 for ; Fri, 1 Oct 1999 07:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA68110; Fri, 1 Oct 1999 07:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 1 Oct 1999 07:10:02 -0700 (PDT) Message-Id: <199910011410.HAA68110@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: marka@isc.org Subject: Re: bin/14041: "host" blows up with incomplete arguments Reply-To: marka@isc.org Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/14041; it has been noted by GNATS. From: marka@isc.org To: Ruslan Ermilov Cc: Paul Southworth , FreeBSD-gnats-submit@freebsd.org, bind-bugs@isc.org Subject: Re: bin/14041: "host" blows up with incomplete arguments Date: Fri, 01 Oct 1999 23:59:20 +1000 This was fixed in BIND 8.2. Mark > > --FL5UXtIhxfXey3p5 > Content-Type: text/plain; charset=us-ascii > > On Wed, Sep 29, 1999 at 08:19:58PM -0400, Paul Southworth wrote: > > > > >Number: 14041 > > >Category: bin > > >Synopsis: "host" blows up with incomplete arguments > > >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 Sep 29 17:30:01 PDT 1999 > > >Closed-Date: > > >Last-Modified: > > >Originator: Paul Southworth > > >Release: FreeBSD 3.3-RELEASE i386 > > >Organization: > > Internet Engineering Group > > >Environment: > > > > FreeBSD 3.3-RELEASE, nothing unusual > > > > >Description: > > > > If you give the "host" command some flags but nothing > > to query, it dies and dumps core. > > > > >How-To-Repeat: > > > > pauls@deadbeef(11)% host -t any highwing.cdrom.com > > highwing.cdrom.com has address 204.216.28.168 > > highwing.cdrom.com mail is handled (pri=10) by pike.cdrom.com > > highwing.cdrom.com mail is handled (pri=5) by zippy.cdrom.com > > pauls@deadbeef(12)% host -t any > > Segmentation fault (core dumped) > > > The attached patch fixes the problem. > > -- > Ruslan Ermilov Sysadmin and DBA of the > ru@ucb.crimea.ua United Commercial Bank, > ru@FreeBSD.org FreeBSD committer, > +380.652.247.647 Simferopol, Ukraine > > http://www.FreeBSD.org The Power To Serve > http://www.oracle.com Enabling The Information Age > > --FL5UXtIhxfXey3p5 > Content-Type: text/plain; charset=us-ascii > Content-Disposition: attachment; filename="host.c.patch" > > Index: host.c > =================================================================== > RCS file: /usr/FreeBSD-CVS/src/contrib/bind/bin/host/host.c,v > retrieving revision 1.1.1.1 > diff -u -r1.1.1.1 host.c > --- host.c 1998/05/03 04:09:49 1.1.1.1 > +++ host.c 1999/10/01 12:32:39 > @@ -175,10 +175,6 @@ > res_init(); > _res.retrans = 5; > > - if (c < 2) { > - fprintf(stderr, "Usage: host [-w] [-v] [-r] [-d] [-t querytype] > [-c class] [-a] host [server]\n -w to wait forever until reply\n -v for ve > rbose output\n -r to disable recursive processing\n -d to turn on debugging > output\n -t querytype to look for a specific type of information\n -c clas > s to look for non-Internet data\n -a is equivalent to '-v -t *'\n"); > - exit(1); > - } > while (c > 2 && v[1][0] == '-') { > if (strcmp (v[1], "-w") == 0) { > _res.retry = 1; > @@ -228,6 +224,10 @@ > c--; > } > } > + if (c < 2) { > + fprintf(stderr, "Usage: host [-w] [-v] [-r] [-d] [-t querytype] > [-c class] [-a] host [server]\n -w to wait forever until reply\n -v for ve > rbose output\n -r to disable recursive processing\n -d to turn on debugging > output\n -t querytype to look for a specific type of information\n -c clas > s to look for non-Internet data\n -a is equivalent to '-v -t *'\n"); > + exit(1); > + } > if (c > 2) { > s = v[2]; > server_specified++; > > --FL5UXtIhxfXey3p5-- -- Mark Andrews, Internet Software Consortium 1 Seymour St., Dundas Valley, NSW 2117, Australia PHONE: +61 2 9871 4742 INTERNET: marka@isc.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 1 7:28:56 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 82B0E14C06; Fri, 1 Oct 1999 07:28:54 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA70795; Fri, 1 Oct 1999 07:28:54 -0700 (PDT) (envelope-from ru@FreeBSD.org) Date: Fri, 1 Oct 1999 07:28:54 -0700 (PDT) From: Message-Id: <199910011428.HAA70795@freefall.freebsd.org> To: pauls@ieng.com, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org, peter@FreeBSD.org Subject: Re: bin/14041: "host" blows up with incomplete arguments Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: "host" blows up with incomplete arguments State-Changed-From-To: open->closed State-Changed-By: ru State-Changed-When: Fri Oct 1 07:20:44 PDT 1999 State-Changed-Why: Mark Andrews reports that the problem has been fixed in BIND 8.2, so this PR is superseded by PR misc/13837. Responsible-Changed-From-To: freebsd-bugs->peter Responsible-Changed-By: ru Responsible-Changed-When: Fri Oct 1 07:20:44 PDT 1999 Responsible-Changed-Why: Just to let Peter know :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 1 8:22:30 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from ns.mt.sri.com (ns.mt.sri.com [206.127.79.91]) by hub.freebsd.org (Postfix) with ESMTP id 52C01159CE; Fri, 1 Oct 1999 08:22:14 -0700 (PDT) (envelope-from nate@mt.sri.com) Received: from mt.sri.com (rocky.mt.sri.com [206.127.76.100]) by ns.mt.sri.com (8.9.3/8.9.3) with SMTP id JAA17563; Fri, 1 Oct 1999 09:22:10 -0600 (MDT) (envelope-from nate@rocky.mt.sri.com) Received: by mt.sri.com (SMI-8.6/SMI-SVR4) id JAA03530; Fri, 1 Oct 1999 09:22:09 -0600 Date: Fri, 1 Oct 1999 09:22:09 -0600 Message-Id: <199910011522.JAA03530@mt.sri.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Mikhail Teterin Cc: ru@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/14066: use of ssh2 as CVS_RSH breaks commiting In-Reply-To: <199910011307.JAA76736@rtfm.newton> References: <199910010657.XAA78544@freefall.freebsd.org> <199910011307.JAA76736@rtfm.newton> X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Reply-To: nate@mt.sri.com (Nate Williams) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > =Synopsis: use of ssh2 as CVS_RSH breaks commiting > = > =State-Changed-From-To: open->closed > =State-Changed-By: ru > =State-Changed-When: Thu Sep 30 23:55:58 PDT 1999 > =State-Changed-Why: > =Please send your complaint to . > > Why are you so sure it is ssh's problem? Just because this does not > happen with rsh? Or with SSH1, since it works fine for me using SSH1. But, Ruslan didn't know that, or maybe he did. :) Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 1 8:25:20 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from relay.ucb.crimea.ua (relay.ucb.crimea.ua [212.110.138.1]) by hub.freebsd.org (Postfix) with ESMTP id D48BE15A2E for ; Fri, 1 Oct 1999 08:22:02 -0700 (PDT) (envelope-from ru@ucb.crimea.ua) Received: (from ru@localhost) by relay.ucb.crimea.ua (8.9.3/8.9.3/UCB) id SAA25692; Fri, 1 Oct 1999 18:16:34 +0300 (EEST) (envelope-from ru) Date: Fri, 1 Oct 1999 18:16:34 +0300 From: Ruslan Ermilov To: Mikhail Teterin Cc: freebsd-bugs@FreeBSD.org Subject: Re: bin/14066: use of ssh2 as CVS_RSH breaks commiting Message-ID: <19991001181634.F79506@relay.ucb.crimea.ua> Mail-Followup-To: Mikhail Teterin , freebsd-bugs@FreeBSD.org References: <199910010657.XAA78544@freefall.freebsd.org> <199910011307.JAA76736@rtfm.newton> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i In-Reply-To: <199910011307.JAA76736@rtfm.newton>; from Mikhail Teterin on Fri, Oct 01, 1999 at 09:07:14AM -0400 X-Operating-System: FreeBSD 3.2-STABLE i386 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Oct 01, 1999 at 09:07:14AM -0400, Mikhail Teterin wrote: > ru@FreeBSD.org once stated: > > =Synopsis: use of ssh2 as CVS_RSH breaks commiting > = > =State-Changed-From-To: open->closed > =State-Changed-By: ru > =State-Changed-When: Thu Sep 30 23:55:58 PDT 1999 > =State-Changed-Why: > =Please send your complaint to . > > Why are you so sure it is ssh's problem? Just because this does not > happen with rsh? I'd spend more then a day investigating if, perhaps, > something is wrong with cvs(1). > Then use cvsbug(1)! Seriously, we do not support neither CVS nor SSH; we use CVS exclusively as a mean to let people update their sources and as a development tool for committers on freefall. So, the category "bin" in this case doesn't apply. But if you'd come up with a patch for SSH2, that would be another story. You send us a "ports" category PR and we use it until the problem is fixed by the authors in a new version. Cheers, -- Ruslan Ermilov Sysadmin and DBA of the ru@ucb.crimea.ua United Commercial Bank, ru@FreeBSD.org FreeBSD committer, +380.652.247.647 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 1 8:25:35 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from relay.ucb.crimea.ua (relay.ucb.crimea.ua [212.110.138.1]) by hub.freebsd.org (Postfix) with ESMTP id 57B3915A7F for ; Fri, 1 Oct 1999 08:24:47 -0700 (PDT) (envelope-from ru@ucb.crimea.ua) Received: (from ru@localhost) by relay.ucb.crimea.ua (8.9.3/8.9.3/UCB) id SAA25719; Fri, 1 Oct 1999 18:17:16 +0300 (EEST) (envelope-from ru) Date: Fri, 1 Oct 1999 18:17:16 +0300 From: Ruslan Ermilov To: Mikhail Teterin Cc: Sheldon Hearn , freebsd-bugs@FreeBSD.ORG Subject: Re: bin/14066: use of ssh2 as CVS_RSH breaks commiting Message-ID: <19991001181716.G79506@relay.ucb.crimea.ua> Mail-Followup-To: Mikhail Teterin , Sheldon Hearn , freebsd-bugs@FreeBSD.ORG References: <40594.938783944@axl.noc.iafrica.com> <199910011407.KAA76944@rtfm.newton> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i In-Reply-To: <199910011407.KAA76944@rtfm.newton>; from Mikhail Teterin on Fri, Oct 01, 1999 at 10:07:05AM -0400 X-Operating-System: FreeBSD 3.2-STABLE i386 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Oct 01, 1999 at 10:07:05AM -0400, Mikhail Teterin wrote: > Sheldon Hearn once stated: > > =On Fri, 01 Oct 1999 09:07:14 -0400, Mikhail Teterin wrote: > = > => Why are you so sure it is ssh's problem? Just because this does not > => happen with rsh? > = > =It doesn't happen with ssh1 either. > > It is still worth investigating further, I believe... > Feel free to. Cheers, -- Ruslan Ermilov Sysadmin and DBA of the ru@ucb.crimea.ua United Commercial Bank, ru@FreeBSD.org FreeBSD committer, +380.652.247.647 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 1 8:36:58 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from wotan.2slo.waw.pl (wotan.2slo.waw.pl [195.117.4.98]) by hub.freebsd.org (Postfix) with ESMTP id 5750515005 for ; Fri, 1 Oct 1999 08:34:02 -0700 (PDT) (envelope-from kaczor@wotan.2slo.waw.pl) Received: from wotan.2slo.waw.pl (kaczor@wotan.2slo.waw.pl [195.117.4.98]) by wotan.2slo.waw.pl (8.9.3/8.9.1) with ESMTP id RAA52902 for ; Fri, 1 Oct 1999 17:39:13 +0200 (CEST) (envelope-from kaczor@wotan.2slo.waw.pl) Date: Fri, 1 Oct 1999 17:39:13 +0200 (CEST) From: Wiktor To: freebsd-bugs@FreeBSD.ORG Subject: Size of the file In-Reply-To: <19991001170239.C79506@relay.ucb.crimea.ua> 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 Hi, I noticed some wired problem: bash-2.02$ ls -l /home/quota.user -rw-r----- 1 root operator 2097120 1 Paz 17:16 /home/quota.user bash-2.02$ du /home/quota.user 56 /home/quota.user I tried to do something with this file, but nothing changed his size to normal. Wiktor Niesiobedzki To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 1 8:40:31 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CC9B115A2E for ; Fri, 1 Oct 1999 08:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA76863; Fri, 1 Oct 1999 08:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 1 Oct 1999 08:40:02 -0700 (PDT) Message-Id: <199910011540.IAA76863@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ruslan Ermilov Subject: Re: bin/14069: Buffer overflow in mail(1) Reply-To: Ruslan Ermilov Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/14069; it has been noted by GNATS. From: Ruslan Ermilov To: peter.jeremy@alcatel.com.au Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/14069: Buffer overflow in mail(1) Date: Fri, 1 Oct 1999 18:28:49 +0300 On Fri, Oct 01, 1999 at 02:39:16PM +1000, Peter Jeremy wrote: > > >Description: > > Mail(1) gets SIGSEGV whilst processing mailbox. > > >How-To-Repeat: > > Create a file containing the following (between the '===') and > feed it to mail with `mail -f file'. (The mail addresses have > been munged both to protect the guilty and to enable the > location of the failure to be more accurately identified). > > Mail reports: > Mail version 8.1 6/6/93. Type ? for help. > "file": 1 message 1 new > zsh: segmentation fault (core dumped) > Not for me: Script started on Fri Oct 1 18:26:18 1999 Mail version 8.1 6/6/93. Type ? for help. "file": 1 message 1 new >N 1 WMWLW.KWJWI@WHWGWFW. Mon Sep 27 18:11 68/2789 "Notification of futur" & q "file" complete Script done on Fri Oct 1 18:26:20 1999 Could you please gzip and send me your test mbox? Thanks, -- Ruslan Ermilov Sysadmin and DBA of the ru@ucb.crimea.ua United Commercial Bank, ru@FreeBSD.org FreeBSD committer, +380.652.247.647 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 1 9: 6:31 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from apollo.backplane.com (apollo.backplane.com [216.240.41.2]) by hub.freebsd.org (Postfix) with ESMTP id 299D81571C; Fri, 1 Oct 1999 09:06:10 -0700 (PDT) (envelope-from dillon@apollo.backplane.com) Received: (from dillon@localhost) by apollo.backplane.com (8.9.3/8.9.1) id JAA26622; Fri, 1 Oct 1999 09:05:30 -0700 (PDT) (envelope-from dillon) Date: Fri, 1 Oct 1999 09:05:30 -0700 (PDT) From: Matthew Dillon Message-Id: <199910011605.JAA26622@apollo.backplane.com> To: Jan.Conrad.conrad@dirac.th.physik.uni-bonn.de Cc: sheldonh@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: misc/12376: When mounting NFS dirs, /etc/rc doesn't give sensible error messages References: <199910011150.EAA00585@freefall.freebsd.org> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org If Jan will tell me exactly which error message he is getting, I can instrument mount_nfs to be a little more verbose in reporting that and similar errors. We are not going to make mount_nfs verbose when reporting non-errors. Output from /etc/rc is already too cluttered. -Matt Matthew Dillon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 1 9:35:25 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from misha.cisco.com (misha.cisco.com [171.69.206.50]) by hub.freebsd.org (Postfix) with ESMTP id 1696E14C8A; Fri, 1 Oct 1999 09:35:13 -0700 (PDT) (envelope-from mi@misha.cisco.com) Received: (from mi@localhost) by misha.cisco.com (8.9.3/8.9.1) id MAA43945; Fri, 1 Oct 1999 12:35:12 -0400 (EDT) (envelope-from mi) Message-Id: <199910011635.MAA43945@misha.cisco.com> Subject: Re: bin/14066: use of ssh2 as CVS_RSH breaks commiting In-Reply-To: <19991001181716.G79506@relay.ucb.crimea.ua> from Ruslan Ermilov at "Oct 1, 1999 06:17:16 pm" To: Ruslan Ermilov Date: Fri, 1 Oct 1999 12:35:12 -0400 (EDT) Cc: freebsd-bugs@FreeBSD.ORG Reply-To: mi@aldan.algebra.com From: Mikhail Teterin X-Mailer: ELM [version 2.4ME+ PL60 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Ruslan Ermilov once wrote: > On Fri, Oct 01, 1999 at 10:07:05AM -0400, Mikhail Teterin wrote: > > Sheldon Hearn once stated: > > > > =On Fri, 01 Oct 1999 09:07:14 -0400, Mikhail Teterin wrote: > > = > > => Why are you so sure it is ssh's problem? Just because this does > > => not happen with rsh? > > = > > =It doesn't happen with ssh1 either. > > > > It is still worth investigating further, I believe... > > > Feel free to. Why don't you just say, that PRs without patches are NOT accepted? And spare the discussions? This problem involves part of the FreeBSD (/usr/bin/cvs) interacting with the FreeBSD port (/usr/ports/security/ssh2). Yet, FreeBSD team refuses to aknowledge the problem has anything to do with FreeBSD -- the PR was closed the next day without much investigation. -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 1 9:52:13 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from axl.noc.iafrica.com (axl.noc.iafrica.com [196.31.1.175]) by hub.freebsd.org (Postfix) with ESMTP id 7FACB156F3 for ; Fri, 1 Oct 1999 09:52:07 -0700 (PDT) (envelope-from sheldonh@axl.noc.iafrica.com) Received: from sheldonh (helo=axl.noc.iafrica.com) by axl.noc.iafrica.com with local-esmtp (Exim 3.037 #1) id 11X5uM-000BC3-00; Fri, 01 Oct 1999 18:51:46 +0200 From: Sheldon Hearn To: Matthew Dillon Cc: Jan.Conrad.conrad@dirac.th.physik.uni-bonn.de, freebsd-bugs@FreeBSD.ORG Subject: Re: misc/12376: When mounting NFS dirs, /etc/rc doesn't give sensible error messages In-reply-to: Your message of "Fri, 01 Oct 1999 09:05:30 MST." <199910011605.JAA26622@apollo.backplane.com> Date: Fri, 01 Oct 1999 18:51:46 +0200 Message-ID: <43030.938796706@axl.noc.iafrica.com> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, 01 Oct 1999 09:05:30 MST, Matthew Dillon wrote: > We are not going to make mount_nfs verbose when reporting non-errors. > Output from /etc/rc is already too cluttered. We, we've already agreed that changes are only useful in the case of mount failure, particularly when mount_nfs "backgrounds". 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 Oct 1 10:41:45 1999 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 19B0E14C30; Fri, 1 Oct 1999 10:41:43 -0700 (PDT) (envelope-from billf@jade.chc-chimes.com) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id 128031C4D; Fri, 1 Oct 1999 12:45:12 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by jade.chc-chimes.com (Postfix) with ESMTP id 0F4A5381A; Fri, 1 Oct 1999 12:45:12 -0400 (EDT) Date: Fri, 1 Oct 1999 12:45:12 -0400 (EDT) From: Bill Fumerola To: Mikhail Teterin Cc: Ruslan Ermilov , freebsd-bugs@FreeBSD.ORG Subject: Re: bin/14066: use of ssh2 as CVS_RSH breaks commiting In-Reply-To: <199910011635.MAA43945@misha.cisco.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 Fri, 1 Oct 1999, Mikhail Teterin wrote: > Why don't you just say, that PRs without patches are NOT > accepted? And spare the discussions? This problem involves part > of the FreeBSD (/usr/bin/cvs) interacting with the FreeBSD port > (/usr/ports/security/ssh2). Yet, FreeBSD team refuses to aknowledge the > problem has anything to do with FreeBSD -- the PR was closed the next > day without much investigation. I like this better: CVS is vendor imported software that we didn't write nor do we maintain. SSH is a port that not only didn't we write: we don't even update or include it as part of the base system. -- - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.com - billf@FreeBSD.org - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 1 10:49:10 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from feral.com (feral.com [192.67.166.1]) by hub.freebsd.org (Postfix) with ESMTP id EF3211518E; Fri, 1 Oct 1999 10:48:56 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from beppo.feral.com (beppo [192.67.166.79]) by feral.com (8.8.7/8.8.7) with ESMTP id KAA17111; Fri, 1 Oct 1999 10:48:14 -0700 Date: Fri, 1 Oct 1999 10:48:04 -0700 (PDT) From: Matthew Jacob Reply-To: mjacob@feral.com To: Bill Fumerola Cc: Mikhail Teterin , Ruslan Ermilov , freebsd-bugs@FreeBSD.ORG Subject: Re: bin/14066: use of ssh2 as CVS_RSH breaks commiting In-Reply-To: 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 > > > Why don't you just say, that PRs without patches are NOT > > accepted? And spare the discussions? This problem involves part > > of the FreeBSD (/usr/bin/cvs) interacting with the FreeBSD port > > (/usr/ports/security/ssh2). Yet, FreeBSD team refuses to aknowledge the > > problem has anything to do with FreeBSD -- the PR was closed the next > > day without much investigation. > > I like this better: > > CVS is vendor imported software that we didn't write nor do > we maintain. SSH is a port that not only didn't we write: we > don't even update or include it as part of the base system. That said, both of these are important tools that we all use, so at the very least we are all concerned over usability issues. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 1 10:57:23 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from misha.cisco.com (misha.cisco.com [171.69.206.50]) by hub.freebsd.org (Postfix) with ESMTP id 78F1115A9B; Fri, 1 Oct 1999 10:57:19 -0700 (PDT) (envelope-from mi@misha.cisco.com) Received: (from mi@localhost) by misha.cisco.com (8.9.3/8.9.1) id NAA44195; Fri, 1 Oct 1999 13:57:11 -0400 (EDT) (envelope-from mi) Message-Id: <199910011757.NAA44195@misha.cisco.com> Subject: Re: bin/14066: use of ssh2 as CVS_RSH breaks commiting In-Reply-To: from Bill Fumerola at "Oct 1, 1999 12:45:12 pm" To: Bill Fumerola Date: Fri, 1 Oct 1999 13:57:11 -0400 (EDT) Cc: Mikhail Teterin , Ruslan Ermilov , freebsd-bugs@FreeBSD.ORG Reply-To: mi@aldan.algebra.com From: Mikhail Teterin X-Mailer: ELM [version 2.4ME+ PL60 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Bill Fumerola once wrote: > > Why don't you just say, that PRs without patches are NOT > > accepted? And spare the discussions? This problem involves part > > of the FreeBSD (/usr/bin/cvs) interacting with the FreeBSD port > > (/usr/ports/security/ssh2). Yet, FreeBSD team refuses to aknowledge > > the problem has anything to do with FreeBSD -- the PR was closed the > > next day without much investigation. > > I like this better: > > CVS is vendor imported software that we didn't write nor do we > maintain. SSH is a port that not only didn't we write: we don't even > update or include it as part of the base system. And the fact, they don't work together on FreeBSD does not bother us much. Right? -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 1 11:30:10 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C6AFD15190 for ; Fri, 1 Oct 1999 11:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA90963; Fri, 1 Oct 1999 11:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 1 Oct 1999 11:30:02 -0700 (PDT) Message-Id: <199910011830.LAA90963@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Bill Fenner Subject: Re: conf/14075: CDROM not being recognized during certain phase of OS installation Reply-To: Bill Fenner Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR conf/14075; it has been noted by GNATS. From: Bill Fenner To: reuben.brown@online.no Cc: freebsd-gnats-submit@freebsd.org Subject: Re: conf/14075: CDROM not being recognized during certain phase of OS installation Date: Fri, 1 Oct 1999 11:28:32 -0700 I solved this problem by using Soren's alpha-test ATAPI stuff from -current . There's a PR somewhere in the database where someone else reported a similar problem and I followed up with how I built a 3.x kernel with the new ata driver; perhaps you can find it in the PR database with http://www.freebsd.org/cgi/query-pr-summary.cgi?query . Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 1 11:45:31 1999 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 9D90C157DD; Fri, 1 Oct 1999 11:43:26 -0700 (PDT) (envelope-from billf@jade.chc-chimes.com) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id 4F3ED1C23; Fri, 1 Oct 1999 13:46:54 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by jade.chc-chimes.com (Postfix) with ESMTP id 4BB1F3817; Fri, 1 Oct 1999 13:46:54 -0400 (EDT) Date: Fri, 1 Oct 1999 13:46:54 -0400 (EDT) From: Bill Fumerola To: Matthew Jacob Cc: Mikhail Teterin , Ruslan Ermilov , freebsd-bugs@FreeBSD.ORG Subject: Re: bin/14066: use of ssh2 as CVS_RSH breaks commiting In-Reply-To: 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 Fri, 1 Oct 1999, Matthew Jacob wrote: > > CVS is vendor imported software that we didn't write nor do > > we maintain. SSH is a port that not only didn't we write: we > > don't even update or include it as part of the base system. > > That said, both of these are important tools that we all use, so at the > very least we are all concerned over usability issues. Concerned? Yes. Concerned about certain incantations with obvious workarounds? Not really. [freefall-billf] /home/billf > ssh -V SSH Version 1.2.26 [i386--freebsd3.1], protocol version 1.5. Compiled with RSAREF. We don't even use ssh2 with *.FreeBSD.org -- - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.com - billf@FreeBSD.org - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 1 12: 0:36 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4E78115245 for ; Fri, 1 Oct 1999 12:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA92726; Fri, 1 Oct 1999 12:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from martini.ics.es.osaka-u.ac.jp (martini.ics.es.osaka-u.ac.jp [133.1.12.150]) by hub.freebsd.org (Postfix) with ESMTP id 162511535E; Fri, 1 Oct 1999 11:55:18 -0700 (PDT) (envelope-from matusita@jp.FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by martini.ics.es.osaka-u.ac.jp (8.9.3/3.7W/INO-1.0v8-SLAVE) with ESMTP id DAA56098; Sat, 2 Oct 1999 03:55:14 +0900 (JST) Message-Id: <19991002035511U.matusita@jp.FreeBSD.org> Date: Sat, 02 Oct 1999 03:55:11 +0900 From: Makoto MATSUSHITA To: FreeBSD-gnats-submit@freebsd.org Cc: jkh@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/14078: -stable 'make release' does not work on -current environment Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14078 >Category: bin >Synopsis: -stable 'make release' does not work on -current environment >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Oct 1 12:00:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Makoto MATSUSHITA >Release: FreeBSD 4.0-CURRENT i386 >Organization: Japan FreeBSD Users' Group >Environment: current 4.0-CURRENT >Description: src/release/Makefile (both -stable and -current) says: DISTRIBUTIONS?= ${BIN_DISTS} ${OTHER_DISTS} ${COMPAT_DISTS} ${CRYPTO_DISTS} and environment variable 'DISTRIBUTIONS' is defined before running make under chroot-ed environment. However, this situation isn't happy for building a -stable on -current environment. 'DISTRIBUTIONS' definition is different each other (krb4 and compat3x is only for -current, and krb is only for -stable), so such 'make release' should be failed. I want to build both -stable/-current in a same host, and I think it is reasonable if building environment is -current. >How-To-Repeat: try to 'make release' to build -stable on -current machine. >Fix: I don't know it is the right fix, but a proposal: Stop defining 'DISTRIBUTIONS' environment variable in a shell script for release engineering. Both -stable/-current of src/release/Makefile should be modified to do so. >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 Oct 1 12:41:47 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from ns.mt.sri.com (ns.mt.sri.com [206.127.79.91]) by hub.freebsd.org (Postfix) with ESMTP id 54BFF152C7; Fri, 1 Oct 1999 12:41:43 -0700 (PDT) (envelope-from nate@mt.sri.com) Received: from mt.sri.com (rocky.mt.sri.com [206.127.76.100]) by ns.mt.sri.com (8.9.3/8.9.3) with SMTP id NAA19941; Fri, 1 Oct 1999 13:41:41 -0600 (MDT) (envelope-from nate@rocky.mt.sri.com) Received: by mt.sri.com (SMI-8.6/SMI-SVR4) id NAA04652; Fri, 1 Oct 1999 13:41:40 -0600 Date: Fri, 1 Oct 1999 13:41:40 -0600 Message-Id: <199910011941.NAA04652@mt.sri.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: mi@aldan.algebra.com Cc: Bill Fumerola , Ruslan Ermilov , freebsd-bugs@FreeBSD.ORG Subject: Re: bin/14066: use of ssh2 as CVS_RSH breaks commiting In-Reply-To: <199910011757.NAA44195@misha.cisco.com> References: <199910011757.NAA44195@misha.cisco.com> X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Reply-To: nate@mt.sri.com (Nate Williams) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > > Why don't you just say, that PRs without patches are NOT > > > accepted? And spare the discussions? This problem involves part > > > of the FreeBSD (/usr/bin/cvs) interacting with the FreeBSD port > > > (/usr/ports/security/ssh2). Yet, FreeBSD team refuses to aknowledge > > > the problem has anything to do with FreeBSD -- the PR was closed the > > > next day without much investigation. > > > > I like this better: > > > > CVS is vendor imported software that we didn't write nor do we > > maintain. SSH is a port that not only didn't we write: we don't even > > update or include it as part of the base system. > > And the fact, they don't work together on FreeBSD does not bother us > much. Who is 'us'? It might bother some of 'us', but the people that it bothers the most are the people who have experienced the bug. They are also the most qualified/motivated to find out what the problem is and potentially find a fix. One of those people that fits the description of 'us' would be *you*, wouldn't it, given that you have a need, a desire to see it fixed, and all the resources necessary. You've got SSH2 and CVS installed on your box, and are using them (attempting to anyway). Right? *grin* Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 1 23:40: 7 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 30B2914F27 for ; Fri, 1 Oct 1999 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 XAA32601; Fri, 1 Oct 1999 23:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 1 Oct 1999 23:40:01 -0700 (PDT) Message-Id: <199910020640.XAA32601@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Subject: Re: misc/12209: termcap: "xterm" entry defines bogus capabilities Reply-To: Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/12209; it has been noted by GNATS. From: To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: misc/12209: termcap: "xterm" entry defines bogus capabilities Date: Fri, 1 Oct 1999 23:36:48 -0700 (PDT) If you are using the 'xterm' that comes with XFree86, then the correct value of the TERM variable seems to be 'xterm-xf86-v32'. screen(1) works fine with this TERM setting. Regards, Koshy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 1 23:41:37 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 75C4E14F27; Fri, 1 Oct 1999 23:41:27 -0700 (PDT) (envelope-from roger@FreeBSD.org) Received: (from roger@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA32660; Fri, 1 Oct 1999 23:41:27 -0700 (PDT) (envelope-from roger@FreeBSD.org) Date: Fri, 1 Oct 1999 23:41:27 -0700 (PDT) From: Message-Id: <199910020641.XAA32660@freefall.freebsd.org> To: yuri@xpert.com, roger@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/10616: MSP3400C audio chip from Hauppauge WinTV-pci frame grabber doesn't works Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: MSP3400C audio chip from Hauppauge WinTV-pci frame grabber doesn't works State-Changed-From-To: open->closed State-Changed-By: roger State-Changed-When: Fri Oct 1 23:38:43 PDT 1999 State-Changed-Why: On 29th April 1999 I released bktr driver revision 1.61 which solved this problem. Users must add optnios BKTR_NO_MSP_RESET to their kernel config to prevent the MSP3400c being reset on bootup. This means any exisintg configuration (from MS Windows for example) followed by a soft boot will work once again. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 1 23:49:45 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1022314F27; Fri, 1 Oct 1999 23:49:43 -0700 (PDT) (envelope-from roger@FreeBSD.org) Received: (from roger@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA32956; Fri, 1 Oct 1999 23:49:43 -0700 (PDT) (envelope-from roger@FreeBSD.org) Date: Fri, 1 Oct 1999 23:49:43 -0700 (PDT) From: Message-Id: <199910020649.XAA32956@freefall.freebsd.org> To: jbryant@tfs.net, roger@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/12258: Tuning the FM radio on new -Theatre series cards from Hauppage requires that the entered frequency be 5.6 MHz low. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Tuning the FM radio on new -Theatre series cards from Hauppage requires that the entered frequency be 5.6 MHz low. State-Changed-From-To: open->closed State-Changed-By: roger State-Changed-When: Fri Oct 1 23:43:19 PDT 1999 State-Changed-Why: Fixed in bktr driver release This fix should suffice until the driv~v ~v Fixed in bktr driver release 1.74, 17th September 1999. The PR author sain in the PR report" This fix should suffice until the driver maintainer wakes up and reads his two day old email Well, fopr the record, I was away on vacation at the time. I happed to be on a remote Scottish Island called North Uist, with no internet connection. The nearest Internet Cafe is reachable by the Ferry. A 1 hour crossing, which only runs once a day. :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Oct 2 0:15:25 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from fleming.cs.strath.ac.uk (fleming.cs.strath.ac.uk [130.159.196.126]) by hub.freebsd.org (Postfix) with ESMTP id 7870E14C48 for ; Sat, 2 Oct 1999 00:15:11 -0700 (PDT) (envelope-from roger@cs.strath.ac.uk) Received: from cs.strath.ac.uk (scary.dmem.strath.ac.uk [130.159.202.5]) by fleming.cs.strath.ac.uk (8.8.8/8.8.8) with ESMTP id IAA13295 Sat, 2 Oct 1999 08:15:10 +0100 (BST) Message-ID: <37F5B0D0.FA5B3717@cs.strath.ac.uk> Date: Sat, 02 Oct 1999 08:14:24 +0100 From: Roger Hardiman Organization: Strathclyde University X-Mailer: Mozilla 4.51 [en] (X11; I; FreeBSD 3.3-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-bugs@FreeBSD.org Subject: typos in my last PR close reports Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, In my last two PR close reports, I ended up with a whole load of typos. I've been back and corrected them all now. Sorry about that. Once I had a line entered, I could not find a way to go back and edit it. Roger To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Oct 2 2:15:23 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from martini.ics.es.osaka-u.ac.jp (martini.ics.es.osaka-u.ac.jp [133.1.12.150]) by hub.freebsd.org (Postfix) with ESMTP id B2A3714F34; Sat, 2 Oct 1999 02:15:03 -0700 (PDT) (envelope-from matusita@jp.FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by martini.ics.es.osaka-u.ac.jp (8.9.3/3.7W/INO-1.0v8-SLAVE) with ESMTP id SAA54536; Sat, 2 Oct 1999 18:15:01 +0900 (JST) In-Reply-To: <199909240319.UAA89735@freefall.freebsd.org> References: <199909240319.UAA89735@freefall.freebsd.org> X-Face: '*aj"d@ijeQ:/X}]oM5c5Uz{ZZZk90WPt>a^y4$cGQp8:!H\W=hSM;PuNiidkc]/%,;6VGu e+`&APmz|P;F~OL/QK%;P2vU>\j4X.8@i%j6[%DTs_3J,Fff0)*oHg$A.cDm&jc#pD24WK@{,"Ef!0 P\):.2}8jo-BiZ?X&t$V X-User-Agent: Mew/1.94 XEmacs/21.2 (Toshima) X-SKK-Version: 10.52 X-FaceAnim: (-O_O-)(O_O- )(_O- )(O- )(- -)( -O)( -O_)( -O_O)(-O_O-) X-Fingerprint: 0C AC 93 FC E3 9D 9E 5B 3D B8 AC 5C 4A 79 D8 A6 Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Dispatcher: imput version 990905(IM130) Lines: 10 From: Makoto MATSUSHITA To: cpiazza@FreeBSD.org, jkh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/13919: 'make release' fails in some cases Date: Sat, 02 Oct 1999 18:14:58 +0900 Message-Id: <19991002181458H.matusita@jp.FreeBSD.org> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This PR was already closed but... cpiazza> Fixed by jkh in rev 1.514 of release/Makefile. Thanks for noticing! Would you please change the same fix to -stable? There are the same (potential) problem in src/release/Makefile. -- - Makoto `MAR' MATSUSHITA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Oct 2 2:31:27 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D2F5C152AC for ; Sat, 2 Oct 1999 02:30:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA40209; Sat, 2 Oct 1999 02:30:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from storm.FreeBSD.org.uk (storm.freebsd.org.uk [194.242.128.198]) by hub.freebsd.org (Postfix) with ESMTP id BE89914F90 for ; Sat, 2 Oct 1999 02:21:19 -0700 (PDT) (envelope-from joe@storm.FreeBSD.org.uk) Received: (from joe@localhost) by storm.FreeBSD.org.uk (8.9.3/8.9.3) id KAA10111; Sat, 2 Oct 1999 10:21:19 +0100 (BST) (envelope-from joe) Message-Id: <199910020921.KAA10111@storm.FreeBSD.org.uk> Date: Sat, 2 Oct 1999 10:21:19 +0100 (BST) From: joe@FreeBSD.org.uk Reply-To: joe@pavilion.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: i386/14085: Some includes weren't being force-linked. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14085 >Category: i386 >Synopsis: Some includes weren't being force-linked. >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 Oct 2 02:30:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Joe Karthauser >Release: FreeBSD 3.3-STABLE i386 >Organization: Pavilion Internet plc/FreeBSD UK >Environment: >Description: Going through the include/Makefile some include files get installed with an 'ln -sf' and some with an 'ln -s'. In particular the i386/include files aren't forced. This means if there's a local copy of a header file we'll never overwrite it, leading to potential problems. In my case the problem was caused by a stray i4b_X.h header file that had got there from a manual install. >How-To-Repeat: >Fix: Any reason why we can't apply this patch? Index: Makefile =================================================================== RCS file: /home/ncvs/src/include/Makefile,v retrieving revision 1.92.2.2 diff -u -r1.92.2.2 Makefile --- Makefile 1999/08/29 14:38:49 1.92.2.2 +++ Makefile 1999/10/02 09:13:12 @@ -112,9 +112,9 @@ @${ECHO} "Setting up symlinks to kernel source tree..." .for i in ${LDIRS} ${LNOHEADERDIRS} rm -rf ${DESTDIR}/usr/include/$i - ln -s ../../sys/$i ${DESTDIR}/usr/include/$i + ln -sf ../../sys/$i ${DESTDIR}/usr/include/$i .endfor rm -rf ${DESTDIR}/usr/include/machine - ln -s ../../sys/${MACHINE_ARCH}/include ${DESTDIR}/usr/include/machine + ln -sf ../../sys/${MACHINE_ARCH}/include ${DESTDIR}/usr/include/machine .include >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 Oct 2 4:30:13 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 570411514F for ; Sat, 2 Oct 1999 04:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA47061; Sat, 2 Oct 1999 04:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from noc.clix.net.nz (noc.clix.net.nz [203.167.224.28]) by hub.freebsd.org (Postfix) with ESMTP id EB5E31514F for ; Sat, 2 Oct 1999 04:27:47 -0700 (PDT) (envelope-from jabley@noc.clix.net.nz) Received: (from jabley@localhost) by noc.clix.net.nz (8.8.8/8.8.8) id XAA24441; Sat, 2 Oct 1999 23:27:46 +1200 (NZST) (envelope-from jabley) Message-Id: <199910021127.XAA24441@noc.clix.net.nz> Date: Sat, 2 Oct 1999 23:27:46 +1200 (NZST) From: Joe Abley Reply-To: jabley@patho.gen.nz To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/14087: FICL/softcore.awk patch Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14087 >Category: kern >Synopsis: update sys/boot/ficl/softwords/softcore.awk >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 2 04:30:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Joe Abley >Release: current >Organization: Global Domination Inc >Environment: N/A >Description: Update sys/boot/ficl/softwords/softcore.awk in the tree to include some space optimisation in the ficl keywords stored in the giant C string softWords[]. Optimisation rules tested to exactly match output of new softcore.pl supplied by dcs for test data cat /sys/boot/ficl/softwords/*.fr >How-To-Repeat: N/A >Fix: Apply the following patch. If symptoms persist, consult a specialist. *** softcore.awk.orig Sat Oct 2 23:19:48 1999 --- softcore.awk Sat Oct 2 23:18:52 1999 *************** *** 1,6 **** --- 1,15 ---- #!/usr/bin/awk -f + # # Convert forth source files to a giant C string + # # Joe Abley , 12 January 1999 + # + # 02-oct-1999: Cleaned up awk slightly; added some additional logic + # suggested by dcs to compress the stored forth program. + # + # Note! This script uses strftime() which is a gawk-ism, and the + # POSIX [[:space:]] character class. + # # $FreeBSD: src/sys/boot/ficl/softwords/softcore.awk,v 1.3 1999/09/29 10:58:43 dcs Exp $ BEGIN \ *************** *** 19,60 **** printf "** Created automagically by ficl/softwords/softcore.awk\n"; printf "*/\n\n"; printf "#include \"ficl.h\"\n\n"; ! printf "static char softWords[] =\n"; commenting = 0; } # some general early substitutions { ! gsub("\t", " "); # replace each tab with 4 spaces ! gsub("\"", "\\\""); # escape quotes ! gsub("\\\\[[:space:]]+$", ""); # toss empty comments ! } ! ! # strip out empty lines ! /^ *$/ \ ! { ! next; } # emit \ ** lines as multi-line C comments ! /^\\[[:space:]]\*\*/ && (commenting == 0) \ { ! sub("^\\\\[[:space:]]", ""); ! printf "/*\n%s\n", $0; commenting = 1; next; } ! /^\\[[:space:]]\*\*/ \ { - sub("^\\\\[[:space:]]", ""); - printf "%s\n", $0; next; } ! # if we are in a comment, then close it now (actual meat for this ! # input line processed in later predicates) (commenting != 0) \ { commenting = 0; --- 28,64 ---- printf "** Created automagically by ficl/softwords/softcore.awk\n"; printf "*/\n\n"; printf "#include \"ficl.h\"\n\n"; ! printf "static char softWords[] = \n"; commenting = 0; } # some general early substitutions { ! gsub(/\t/, " "); # replace each tab with 4 spaces ! gsub(/\"/, "\\\""); # escape quotes ! gsub(/\\[[:space:]]+$/, ""); # toss empty comments } # emit \ ** lines as multi-line C comments ! /^\\[[:space:]]\*\*/ \ { ! sub(/^\\[[:space:]]/, ""); ! if (commenting == 0) printf "/*\n"; ! printf "%s\n", $0; commenting = 1; next; } ! # strip blank lines ! /^[[:space:]]*$/ \ { next; } ! # if we have previously been processing a multi-line comment, then ! # close the comment now (since this line isn't part of a multi-line ! # comment) (commenting != 0) \ { commenting = 0; *************** *** 65,110 **** # (supports single-line directives only) /^\\[[:space:]]#/ \ { ! sub("^\\\\[[:space:]]", ""); printf "%s\n", $0; next; } ! # toss all other comments /^[[:space:]]*\\/ \ { next; } ! # lop off trailing comments /\\[[:space:]]+/ \ { ! sub("\\\\[[:space:]]+.*$", ""); } ! # delete ( ) comments ! /[[:space:]]+\([[:space:]].*\)/ \ { ! gsub("[[:space:]]+\([[:space:]].*\)", ""); } # remove leading spaces /^[[:space:]]+/ \ { ! sub("^[[:space:]]+", ""); } # removing trailing spaces /[[:space:]]+$/ \ { ! sub("[[:space:]]+$", ""); } # emit all other lines as quoted string fragments { ! sub("\\\\[[:space:]]+.*$", ""); # lop off trailing \ comments ! sub("[[:space:]]+$", ""); # remove trailing spaces ! printf " \"%s\"\n", $0; next; } --- 69,118 ---- # (supports single-line directives only) /^\\[[:space:]]#/ \ { ! sub(/^\\[[:space:]]/, ""); printf "%s\n", $0; next; } ! # toss all other full-line \ comments /^[[:space:]]*\\/ \ { next; } ! # lop off trailing \ comments /\\[[:space:]]+/ \ { ! sub(/\\[[:space:]]+.*$/, ""); } ! # expunge ( ) comments ! /[[:space:]]+\([[:space:]][^\)]*\)/ \ { ! gsub(/[[:space:]]+\([[:space:]][^\)]*\)/, ""); } # remove leading spaces /^[[:space:]]+/ \ { ! sub(/^[[:space:]]+/, ""); } # removing trailing spaces /[[:space:]]+$/ \ { ! sub(/[[:space:]]+$/, ""); ! } ! ! # strip out empty lines again (preceding rules may have generated some) ! /^[[:space:]]*$/ \ ! { ! next; } # emit all other lines as quoted string fragments { ! printf " \"%s \"\n", $0; next; } >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 Oct 2 5:35:28 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6DACC151DB; Sat, 2 Oct 1999 05:35:23 -0700 (PDT) (envelope-from dcs@FreeBSD.org) Received: (from dcs@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA52932; Sat, 2 Oct 1999 05:35:23 -0700 (PDT) (envelope-from dcs@FreeBSD.org) Date: Sat, 2 Oct 1999 05:35:23 -0700 (PDT) From: Message-Id: <199910021235.FAA52932@freefall.freebsd.org> To: dcs@FreeBSD.org, freebsd-bugs@FreeBSD.org, dcs@FreeBSD.org Subject: Re: kern/14087: update sys/boot/ficl/softwords/softcore.awk Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update sys/boot/ficl/softwords/softcore.awk Responsible-Changed-From-To: freebsd-bugs->dcs Responsible-Changed-By: dcs Responsible-Changed-When: Sat Oct 2 05:34:41 PDT 1999 Responsible-Changed-Why: I asked for it, I got it. :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Oct 2 8: 6:38 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from axl.noc.iafrica.com (axl.noc.iafrica.com [196.31.1.175]) by hub.freebsd.org (Postfix) with ESMTP id 0424C14D9F; Sat, 2 Oct 1999 08:06:22 -0700 (PDT) (envelope-from sheldonh@axl.noc.iafrica.com) Received: from sheldonh (helo=axl.noc.iafrica.com) by axl.noc.iafrica.com with local-esmtp (Exim 3.037 #1) id 11XQiQ-000DMP-00; Sat, 02 Oct 1999 17:04:50 +0200 From: Sheldon Hearn To: mi@aldan.algebra.com Cc: Bill Fumerola , Ruslan Ermilov , freebsd-bugs@FreeBSD.ORG Subject: Re: bin/14066: use of ssh2 as CVS_RSH breaks commiting In-reply-to: Your message of "Fri, 01 Oct 1999 13:57:11 -0400." <199910011757.NAA44195@misha.cisco.com> Date: Sat, 02 Oct 1999 17:04:50 +0200 Message-ID: <51360.938876690@axl.noc.iafrica.com> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, 01 Oct 1999 13:57:11 -0400, Mikhail Teterin wrote: > And the fact, they don't work together on FreeBSD does not bother us > much. Hi Mikhail, This really doesn't have anything to do with what software works and what doesn't -- it has to do with what the PR database is used for. In this case, you seem to suspect CVS, yes? CVS is in src/contrib because it's maintained _outside_ the FreeBSD project. That means that the FreeBSD PR database is probably not the best resource to use in tracking the problem you're having with it. I hope this helps. Please don't feel that your problem reports aren't valued. It's just that, in this case, your report doesn't seem appropriate in the FreeBSD PR database. Later, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Oct 2 16:50:21 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8F85115450 for ; Sat, 2 Oct 1999 16:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA43978; Sat, 2 Oct 1999 16:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from noc.clix.net.nz (noc.clix.net.nz [203.167.224.28]) by hub.freebsd.org (Postfix) with ESMTP id 50C6715436 for ; Sat, 2 Oct 1999 16:40:45 -0700 (PDT) (envelope-from jabley@noc.clix.net.nz) Received: (from jabley@localhost) by noc.clix.net.nz (8.8.8/8.8.8) id MAA03133; Sun, 3 Oct 1999 12:40:44 +1300 (NZDT) (envelope-from jabley) Message-Id: <199910022340.MAA03133@noc.clix.net.nz> Date: Sun, 3 Oct 1999 12:40:44 +1300 (NZDT) From: Joe Abley Reply-To: jabley@patho.gen.nz To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/14095: minor enhancements to whois(1) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14095 >Category: bin >Synopsis: Add some (cosmetic) functionality to whois(1) >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 2 16:50:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Joe Abley >Release: current >Organization: Ballistic Shoe-Shine, Inc >Environment: N/A >Description: Adds two new switches to whois(1). From revised man page: -m Use the Route Arbiter Database (RADB) database. It contains route policy specifications for a large number of operators' networks. -q Construct the name of a whois server to use from the top-level domain (TLD) of the supplied (single) argument, and appending ".whois-servers.net". This effectively allows a suitable whois server to be selected automatically for a large number of TLDs. The -m switch follows the existing -a, -d, -g, -p, -r and -R switches. The -q switch allows the user to be more stupid in selecting a whois server. For example, whois -q patho.gen.nz, whois -q nasa.gov, whois -q microsoft.com and whois -q demon.co.uk all produce meaningful results. >How-To-Repeat: N/A >Fix: Apply the following sterile dressing, stir gently and bake for six hours. diff -c whois/whois.1 whois.new/whois.1 *** whois/whois.1 Sat Aug 28 12:17:00 1999 --- whois.new/whois.1 Sun Oct 3 12:34:37 1999 *************** *** 70,80 **** --- 70,91 ---- Use the specified host instead of the default NIC (whois.internic.net). Either a host name or an IP address may be specified. + .It Fl m + Use the Route Arbiter Database + .Pq Tn RADB + database. It contains route policy specifications for a large + number of operators' networks. .It Fl p Use the Asia/Pacific Network Information Center .Pq Tn APNIC database. It contains network numbers used in East Asia, Australia, New Zealand, and the Pacific islands. + .It Fl q + Construct the name of a whois server to use from the top-level domain + .Pq Tn TLD + of the supplied (single) argument, and appending ".whois-servers.net". + This effectively allows a suitable whois server to be selected + automatically for a large number of TLDs. .It Fl r Use the R\(aaeseaux IP Europ\(aaeens .Pq Tn RIPE diff -c whois/whois.c whois.new/whois.c *** whois/whois.c Sat Aug 28 12:17:00 1999 --- whois.new/whois.c Sun Oct 3 12:17:14 1999 *************** *** 63,68 **** --- 63,70 ---- #define RNICHOST "whois.ripe.net" #define PNICHOST "whois.apnic.net" #define RUNICHOST "whois.ripn.net" + #define MNICHOST "whois.ra.net" + #define QNICHOST_TAIL ".whois-servers.net" #define WHOIS_PORT 43 static void usage __P((void)); *************** *** 79,91 **** struct servent *sp; int s; char *host; #ifdef SOCKS SOCKSinit(argv[0]); #endif host = NICHOST; ! while ((ch = getopt(argc, argv, "adgh:prR")) != -1) switch((char)ch) { case 'a': host = ANICHOST; --- 81,97 ---- struct servent *sp; int s; char *host; + char *qnichost; + int use_qnichost; + int i, j; #ifdef SOCKS SOCKSinit(argv[0]); #endif host = NICHOST; ! use_qnichost = 0; ! while ((ch = getopt(argc, argv, "adgh:mpqrR")) != -1) switch((char)ch) { case 'a': host = ANICHOST; *************** *** 99,107 **** --- 105,119 ---- case 'h': host = optarg; break; + case 'm': + host = MNICHOST; + break; case 'p': host = PNICHOST; break; + case 'q': + use_qnichost = 1; + break; case 'r': host = RNICHOST; break; *************** *** 118,123 **** --- 130,151 ---- if (!argc) usage(); + if (use_qnichost != 0) { + if (argc == 1) { + for (i = j = 0; (*argv)[i]; i++) + if ((*argv)[i] == '.') j = i; + if (j != 0) { + qnichost = (char *) calloc(i - j + 1 + \ + strlen(QNICHOST_TAIL), sizeof(char)); + if (qnichost) { + strcpy(qnichost, *argv + j + 1); + strcat(qnichost, QNICHOST_TAIL); + host = qnichost; + } + } + } + } + s = socket(PF_INET, SOCK_STREAM, 0); if (s < 0) err(EX_OSERR, "socket"); *************** *** 159,164 **** static void usage() { ! fprintf(stderr, "usage: whois [-adgprR] [-h hostname] name ...\n"); exit(EX_USAGE); } --- 187,192 ---- static void usage() { ! fprintf(stderr, "usage: whois [-adgmpqrR] [-h hostname] name ...\n"); exit(EX_USAGE); } >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 Oct 2 18:10: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2AFBD14E45 for ; Sat, 2 Oct 1999 18:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA49466; Sat, 2 Oct 1999 18:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 2 Oct 1999 18:10:02 -0700 (PDT) Message-Id: <199910030110.SAA49466@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Chris Costello Subject: Re: bin/14095: minor enhancements to whois(1) Reply-To: Chris Costello Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/14095; it has been noted by GNATS. From: Chris Costello To: jabley@patho.gen.nz Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/14095: minor enhancements to whois(1) Date: Sat, 02 Oct 1999 20:02:15 -0500 On Sun, Oct 03, 1999, Joe Abley wrote: > The -m switch follows the existing -a, -d, -g, -p, -r and -R switches. If more and more countries keep setting up whois hosts, whois(1) is going to have more switches than ls(1)! -- |Chris Costello |The best packed information most resembles random noise. `-------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Oct 2 18:10: 7 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0129F14DE7 for ; Sat, 2 Oct 1999 18:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA49471; Sat, 2 Oct 1999 18:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 2 Oct 1999 18:10:02 -0700 (PDT) Message-Id: <199910030110.SAA49471@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Joe Abley Subject: Re: bin/14095: minor enhancements to whois(1) Reply-To: Joe Abley Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/14095; it has been noted by GNATS. From: Joe Abley To: Chris Costello Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/14095: minor enhancements to whois(1) Date: Sun, 3 Oct 1999 14:05:23 +1300 On Sat, Oct 02, 1999 at 08:02:15PM -0500, Chris Costello wrote: > On Sun, Oct 03, 1999, Joe Abley wrote: > > The -m switch follows the existing -a, -d, -g, -p, -r and -R switches. > > If more and more countries keep setting up whois hosts, > whois(1) is going to have more switches than ls(1)! Aah, but my next plan was to submit a patch to remove -R and make -q the default. Then we never need any more :) Joe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Oct 2 19:15: 0 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D121B14CFC; Sat, 2 Oct 1999 19:14:47 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA51991; Sat, 2 Oct 1999 19:14:47 -0700 (PDT) (envelope-from ache@FreeBSD.org) Date: Sat, 2 Oct 1999 19:14:47 -0700 (PDT) From: Message-Id: <199910030214.TAA51991@freefall.freebsd.org> To: girgen@partitur.se, ache@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/13928: Patch for Swedish LC_COLLATE Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Patch for Swedish LC_COLLATE State-Changed-From-To: open->closed State-Changed-By: ache State-Changed-When: Sat Oct 2 19:14:12 PDT 1999 State-Changed-Why: Fix commited to -current To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Oct 2 20:10: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2A43914DC4 for ; Sat, 2 Oct 1999 20:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA55129; Sat, 2 Oct 1999 20:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from iss-p1.lbl.gov (iss-p1.lbl.gov [131.243.2.47]) by hub.freebsd.org (Postfix) with ESMTP id 7D76914D2C for ; Sat, 2 Oct 1999 20:00:33 -0700 (PDT) (envelope-from jin@iss-p1.lbl.gov) Received: (from jin@localhost) by iss-p1.lbl.gov (8.9.3/8.9.3) id UAA29855; Sat, 2 Oct 1999 20:00:31 -0700 (PDT) (envelope-from jin) Message-Id: <199910030300.UAA29855@iss-p1.lbl.gov> Date: Sat, 2 Oct 1999 20:00:31 -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: kern/14096: parallel port -- ppi -- driver broken after 3.3-RELEASE Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14096 >Category: kern >Synopsis: parallel port -- ppi -- driver broken after 3.3-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: Sat Oct 2 20:10:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Jin Guojun (FTG staff) >Release: FreeBSD 3.3-RELEASE i386 >Organization: >Environment: FreeBSD 3.3-RELEASE or later All version prior to 3.3-RELEASE are OK >Description: The ppi driver will return error "Error<22> Invalid argument" if I/O frequency is higher than 250 Hz. The version prior to 3.3-RELEASE can do I/O at least 5000Hz without problem. This is repeatable problem. 100 freq = 100.000000 : 0 125 freq = 125.000000 : 0 150 freq = 150.015002 : 0 175 freq = 175.008750 : 0 200 freq = 200.000000 : 0 225 freq = 225.022502 : 0 250 freq = 250.000000 : 0 249 freq = 249.003984 : 0 248 freq = 248.015873 : 0 act freq = 158.220191 249 freq = 249.003984 : 0 250 freq = 250.000000 : 0 act freq = 247.870888 251 freq = 251.004016 : 0 252 freq = 252.016129 : 0 act freq = 249.957130 ? [NoVer] : ioc = 255; Error<22> Invalid argument ? [NoVer] : ioc = 0; Error<22> Invalid argument >How-To-Repeat: pio(int pp_fd, u_int8_t *c, bool in) /* real code */ { static int errs; u_int8_t sval; ioctl(pp_fd, in ? PPIGDATA : PPISDATA, c); if (errno && errno != EINTR) { prgmerr(0, "ioc = %d", *c); if (errs++ > 2) clean_up(-errs); } } main() /* semi pesudo code */ { u_int8_t iob=0; struct pioargu tc; u_thread_t tid; /* create a thread to change the frequence timer */ u_thread_create(&tid, 0, freq_input, &tc); Loop { pio(pd, &iob, 0); delay(tc.pio_tm.tv_sec, tc.pio_tm.tv_usec); iob = ~iob; pio(pd, &iob, 0); delay(tc.pio_tm.tv_sec, tc.pio_tm.tv_usec); iob = ~iob; } clean_up(-1); } >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 Oct 2 21: 0:12 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 15CA015408 for ; Sat, 2 Oct 1999 21:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA57548; Sat, 2 Oct 1999 21:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 0B542150E7; Sat, 2 Oct 1999 20:54:28 -0700 (PDT) Message-Id: <19991003035428.0B542150E7@hub.freebsd.org> Date: Sat, 2 Oct 1999 20:54:28 -0700 (PDT) From: amorita@meadow.scphys.kyoto-u.ac.jp To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: conf/14098: routing problem on DHCP client with network_interfaces="auto" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14098 >Category: conf >Synopsis: routing problem on DHCP client with network_interfaces="auto" >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 Oct 2 21:00:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Akio Morita >Release: FreeBSD 3.3-STABLE >Organization: Department of Physics, Kyoto University, Japan >Environment: FreeBSD sasami.jyurai 3.3-STABLE FreeBSD 3.3-STABLE #3: Sat Sep 18 16:17:37 JST 1999 amorita@sasami:/usr/src/sys/compile/SASAMI >Description: Using Ethernet device intialized DHCP and network_interfaces="auto" configuration, ping to IP address of Ethernet device configured by DHCP is faild. In my machine, ifconfig -l gives "fxp0 lp0 tun0 lo0" Configuration Case 1: network_interfaces="lo0 fxp0" # conventional case ifconfig_fxp0="DHCP" Configuration Case 2: network_interfaces="fxp0 lo0" # same as "auto "case ifconfig_fxp0="DHCP" netstat -rn results --- case 1 --- Destination Gateway Flags Refs Use Netif Expire default xxx.y.zz.254 UGSc 2 3 fxp0 127.0.0.1 127.0.0.1 UH 1 5843 lo0 xxx.y.zz/23 link#1 UC 0 0 fxp0 xxx.y.zz.106 127.0.0.1 UGHS 0 0 lo0 xxx.y.zz.254 0:0:4c:a2:15:bc UHLW 3 0 fxp0 566 --- case 1 --- --- case 2 --- Destination Gateway Flags Refs Use Netif Expire default xxx.y.zz.254 UGSc 0 0 fxp0 127.0.0.1 127.0.0.1 UH 0 0 lo0 xxx.y.zz/23 link#1 UC 0 0 fxp0 xxx.y.zz.106 127.0.0.1 UGHS 0 0 fxp0 xxx.y.zz.254 link#1 UHLW 1 0 fxp0 --- case 2 --- , where xxx.y.zz.106 is IP address of fxp0 and xxx.y.zzz.254 is gateway. In the case 2(same as network_interfaces="auto"), ping xxx.y.zz.106 faild because of --- dmesg --- arplookup 127.0.0.1 failed: could not allocate llinfo arpresolve: can't allocate llinfo for 127.0.0.1rt --- dmesg --- >How-To-Repeat: In the case, you have fxp0 and use lo0 for loopback and fxp0 configured by DHCP. set /etc/rc.conf as following network_interfaces="auto" (default value of /etc/defaults/rc.conf) ifconfig_fxp0="DHCP" and reboot in the network with DHCP Server. Then ping to IP address of fxp0 interface. I found this problem in the Note PC installed 3.3-RC by DHCP configuration first. And I tested 3.3-STABLE kernel build Sep 18,1999 with 3.3-RELESE userland. >Fix: Initializing lo0 before other Ethernet device configured by DHCP is essential. I thought two way of fix. one is /etc/rc.network initializing lo0 first. the other is that /sbin/ifconfig -l gives lo0 as the first component of the NIC list. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message