From owner-freebsd-bugs Sun Oct 1 3:29:37 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0A38E37B502; Sun, 1 Oct 2000 03:29:36 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA40123; Sun, 1 Oct 2000 03:29:36 -0700 (PDT) (envelope-from peter@FreeBSD.org) Date: Sun, 1 Oct 2000 03:29:36 -0700 (PDT) From: Message-Id: <200010011029.DAA40123@freefall.freebsd.org> To: mzaki@e-mail.ne.jp, peter@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/21657: nexus without initialization causes booting failed Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: nexus without initialization causes booting failed State-Changed-From-To: open->closed State-Changed-By: peter State-Changed-When: Sun Oct 1 03:28:06 PDT 2000 State-Changed-Why: Fixed in i386/i386/nexus.c rev 1.36 http://www.freebsd.org/cgi/query-pr.cgi?pr=21657 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 1 7:20: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7346237B503 for ; Sun, 1 Oct 2000 07:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA53483; Sun, 1 Oct 2000 07:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from nhj.nlc.net.au (nhj.nlc.net.au [203.24.133.1]) by hub.freebsd.org (Postfix) with SMTP id C7D9637B66D for ; Sun, 1 Oct 2000 07:11:52 -0700 (PDT) Received: (qmail 11667 invoked from network); 2 Oct 2000 01:11:49 +1100 Received: from monster.nlc.net.au (203.24.133.6) by nhj.nlc.net.au with SMTP; 2 Oct 2000 01:11:49 +1100 Received: (qmail 2371 invoked from network); 2 Oct 2000 01:11:48 +1100 Received: from pacer.nlc.net.au (HELO sentinel.pakprotector.com) (203.24.133.16) by monster.nlc.net.au with SMTP; 2 Oct 2000 01:11:48 +1100 Received: from pacer.pakprotector.com (root@pacer.pakprotector.com [203.41.181.2]) by sentinel.pakprotector.com (8.11.0/8.9.3) with ESMTP id e91ECTA11377 for ; Mon, 2 Oct 2000 01:12:30 +1100 (EST) (envelope-from john@pacer.pakprotector.com) Received: (from john@localhost) by pacer.pakprotector.com (8.11.0/8.11.0) id e91EBwm00582; Mon, 2 Oct 2000 01:11:58 +1100 (EST) (envelope-from john) Message-Id: <200010011411.e91EBwm00582@pacer.pakprotector.com> Date: Mon, 2 Oct 2000 01:11:58 +1100 (EST) From: john@pakprotector.com Reply-To: john@pakprotector.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: i386/21672: AMD Duron Rev. A0 reports incorrect L2 cache size Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21672 >Category: i386 >Synopsis: AMD Duron Rev. A0 reports incorrect L2 cache size >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 01 07:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: John Saunders >Release: FreeBSD 4.1-STABLE i386 >Organization: NORTHLINK COMMUNICATIONS PTY LTD >Environment: AMD Duron Rev. A0 chip. >Description: There is errata with Rev. A0 AMD Duron in that it reports a L2 cache size of 1K when it really should be 64K. >How-To-Repeat: Boot with the -v option with a Rev. A0 Duron. >Fix: Apply the following patch to implement AMD's suggestion solution. --- sys/i386/i386/identcpu.c.orig Sat Sep 30 15:07:33 2000 +++ sys/i386/i386/identcpu.c Mon Oct 2 01:07:22 2000 @@ -918,9 +918,16 @@ printf(", %d bytes/line", regs[3] & 0xff); printf(", %d lines/tag", (regs[3] >> 8) & 0xff); print_AMD_assoc((regs[3] >> 16) & 0xff); - if (amd_maxregs >= 0x80000006) { /* K6-III only */ + if (amd_maxregs >= 0x80000006) { /* K6-III, K7 or later */ do_cpuid(0x80000006, regs); - printf("L2 internal cache: %d kbytes", regs[2] >> 16); + /* + * Duron Rev. A0 incorrectly reports L2 cache size as 1K when it's 64K. + */ + if ((cpu_id & 0xFF0) == 0x630) { + printf("L2 internal cache: 64 kbytes"); + } else { + printf("L2 internal cache: %d kbytes", regs[2] >> 16); + } printf(", %d bytes/line", regs[2] & 0xff); printf(", %d lines/tag", (regs[2] >> 8) & 0x0f); print_AMD_assoc((regs[2] >> 12) & 0x0f); >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 Oct 1 7:50: 9 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 022E837B503 for ; Sun, 1 Oct 2000 07:50:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA73438; Sun, 1 Oct 2000 07:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sun, 1 Oct 2000 07:50:01 -0700 (PDT) Message-Id: <200010011450.HAA73438@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Masayuki FUKUI Subject: Re: i386/20379: unable to install, monitor goes black during boot (with serial is disabled) Reply-To: Masayuki FUKUI Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/20379; it has been noted by GNATS. From: Masayuki FUKUI To: Sheldon Hearn Cc: freebsd-gnats-submit@FreeBSD.org, gyula_matics@hp.com, msmith@FreeBSD.org Subject: Re: i386/20379: unable to install, monitor goes black during boot (with serial is disabled) Date: Sun, 01 Oct 2000 23:43:16 +0900 My machine cannot boot with 4.1.1-RELEASE as before. I'm inconvenienced. >On Tue, 08 Aug 2000 14:12:03 +0900, Masayuki FUKUI wrote: > >> It seems to me that FreeBSD 4 kernel's PCI bus probe fails on 450GX chipset >> and the machine hangs up. >> (maybe in src/i386/isa/pcibus.c) I tried to find the cause and probably found it. In src/sys/i386/isa/pcibus.c nexus_pcib_identify(), | retry: | for (probe.slot = 0; probe.slot <= PCI_SLOTMAX; probe.slot++) { | probe.func = 0; | hdrtype = pci_cfgread(&probe, PCIR_HEADERTYPE, 1); On unavailable PCI slot, 'hdrtype' is always 0xff (-1). (Is this right with PCI standard?) | if (hdrtype & PCIM_MFDEV) | pcifunchigh = 7; | else | pcifunchigh = 0; and 'pcifunchigh' sets to 7. (Is this expected?) | for (probe.func = 0; | probe.func <= pcifunchigh; | probe.func++) { | /* | * Read the IDs and class from the device. | */ | u_int32_t id; | u_int8_t class, subclass, busnum; | device_t child; | const char *s; | | id = pci_cfgread(&probe, PCIR_DEVVENDOR, 4); When 'probe.slot' is PCI_SLOTMAX (== 31) and 'probe.func' is 7, call to 'pci_cfgread()' here and machine suddenly hangs up. I don't know why... (or 450GX chipset's bug?) (When 'probe.slot' is 31 and 'probe.func' is 6, it returns from 'pci_cfgread()' and 'id' is 0xffffffff (-1).) I don't know how to fix rightly. But I rebuild 4-STABLE kernel with following patch, and it works fine. I hope for fixing the probrem as soon as possible. --- src/sys/i386/isa/pcibus.c.orig Thu Feb 24 05:25:06 2000 +++ src/sys/i386/isa/pcibus.c Sun Oct 1 23:16:06 2000 @@ -439,6 +439,7 @@ int found = 0; int pcifunchigh; int found824xx = 0; + int found_orion = 0; if (pci_cfgopen() == 0) return; @@ -448,7 +449,7 @@ for (probe.slot = 0; probe.slot <= PCI_SLOTMAX; probe.slot++) { probe.func = 0; hdrtype = pci_cfgread(&probe, PCIR_HEADERTYPE, 1); - if (hdrtype & PCIM_MFDEV) + if (hdrtype & PCIM_MFDEV && (!found_orion || hdrtype != 0xff) ) pcifunchigh = 7; else pcifunchigh = 0; @@ -483,6 +484,8 @@ found = 1; if (id == 0x12258086) found824xx = 1; + if (id == 0x84c48086) + found_orion = 1; } } } To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 1 7:50: 9 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 208B737B66D for ; Sun, 1 Oct 2000 07:50:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA73447; Sun, 1 Oct 2000 07:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id E5DBC37B66C; Sun, 1 Oct 2000 07:48:07 -0700 (PDT) Message-Id: <20001001144807.E5DBC37B66C@hub.freebsd.org> Date: Sun, 1 Oct 2000 07:48:07 -0700 (PDT) From: whs@xs4all.nl To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/21673: tail doesn't work correctly on files >=2GB Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21673 >Category: misc >Synopsis: tail doesn't work correctly on files >=2GB >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 01 07:50:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: W.Scholten >Release: 3.3 >Organization: >Environment: FreeBSD localhost 3.3-RELEASE FreeBSD 3.3-RELEASE #28 >Description: tail doesn't work correctly on files >=2GB due to use of mmap on entire file This patch fixes that (and restricts use of tail to the latter 1GB of a file, should be much less of a bug :) >How-To-Repeat: tail on file > 2G >Fix: begin 644 tail.diff.gz M'XL("'1'USD``W1A:6PN9&EF9@"54LN.FT`0/,-75$X!`UX&.W[*EHF6/!3O M0_9&.2)B!AN%!32,%6VB_??T#+9C;;R'<&&FN[JFNJO3/,O@B?TM9)(7W4KD MVZNL$C\3D78W.O;W:GJ>=PEFW%0EPEH``[#1A/4F_3'8>#PR'<=YP6&L]R7N M-A)@8(.)SQ0V\'W?7"S@!HLBR6:/)??'H>WNP2 M@4ZM8NVQD8F04],QVH+'QZ2.Z8@9?`(1+,]@O;$4$<6:[[4W;V2LKK9-66*6 M>U%.6SF![XY(3L!<]J[5<\K#>"8ZQ[CJ(&ST,T@KWI1O)79)F182U[UN"!2L6?3>OVZW+IMN*(3/U1>&UBYOP M/EY_"E<1G;.@/:'B?H]X]+1!ZMN83<> M=I5;,"ZL"KEQW,1O*ZMV]8W4>'JD6!T]Z+X\ :U@[G5%;INO,*YSB)BZ6OC^(/]8%B0MH#``"& ` 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 Sun Oct 1 8: 0: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4375C37B503 for ; Sun, 1 Oct 2000 08:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA82159; Sun, 1 Oct 2000 08:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id DDE0937B503; Sun, 1 Oct 2000 07:52:24 -0700 (PDT) Message-Id: <20001001145224.DDE0937B503@hub.freebsd.org> Date: Sun, 1 Oct 2000 07:52:24 -0700 (PDT) From: whs@xs4all.nl To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/21674: Fujitsu MO drives M2513A don't like the syncronize cache command. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21674 >Category: kern >Synopsis: Fujitsu MO drives M2513A don't like the syncronize cache command. >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 Oct 01 08:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: W.Scholten >Release: 3.3 >Organization: >Environment: FreeBSD localhost 3.3-RELEASE FreeBSD 3.3-RELEASE #28 >Description: Fujitsu MO drives M2513A hang at various operations due to the synchronize cache command (actually, after a few minutes the bus is reset and the disk can be ejected). >How-To-Repeat: mount a ufs partition, dd to a disk, newfs a disk etc.. >Fix: quirk entry for both modes of the drive (optical/direct access): begin 644 scsi_da.c.diff.gz M'XL(".$/UCD``W-C6&KH[?AGQPYG0E8\,$/FU7NO]+GY(X=D1\60#<_'A>A,/Q;#18M#`?WX63 MT7`R)+TSG05@MI\?.Y^/NQX6,L$UH6LM;=>-?.HO[;\9Q\01S%Q6_P(D&1Q3 $N0,``+TS ` 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 Sun Oct 1 8: 0: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 07D8D37B502 for ; Sun, 1 Oct 2000 08:00:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA82199; Sun, 1 Oct 2000 08:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sun, 1 Oct 2000 08:00:02 -0700 (PDT) Message-Id: <200010011500.IAA82199@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: David Malone Subject: Re: misc/21673: tail doesn't work correctly on files >=2GB Reply-To: David Malone Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/21673; it has been noted by GNATS. From: David Malone To: whs@xs4all.nl Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: misc/21673: tail doesn't work correctly on files >=2GB Date: Sun, 1 Oct 2000 15:59:26 +0100 On Sun, Oct 01, 2000 at 07:48:07AM -0700, whs@xs4all.nl wrote: This has already been reported in PR 14786: http://www.FreeBSD.org/cgi/query-pr.cgi?pr=14786 Could you have a look and tell me what you think of the patch there? David. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 1 8: 0:14 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 76A0937B66D for ; Sun, 1 Oct 2000 08:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA82172; Sun, 1 Oct 2000 08:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 2932A37B502; Sun, 1 Oct 2000 07:56:44 -0700 (PDT) Message-Id: <20001001145644.2932A37B502@hub.freebsd.org> Date: Sun, 1 Oct 2000 07:56:44 -0700 (PDT) From: whs@xs4all.nl To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/21675: Better and more disktab entries for MO drives Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21675 >Category: misc >Synopsis: Better and more disktab entries for MO drives >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Oct 01 08:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: W.Scholten >Release: 3.3 >Organization: >Environment: FreeBSD localhost 3.3-RELEASE FreeBSD 3.3-RELEASE #28 >Description: Disktab entries for MO drives and a little info on how to use it. Very useful, could also be put in sec 8.3 of the handbook. >How-To-Repeat: >Fix: This patch replaces an old entry (named after and IBM MO drive, but MO disks can be used on any other MO drive) and adds 640MB formats. begin 644 disktab.diff.gz M'XL("!I*USD``V1I,W/6GN?!A33B MHBC;6\/S<:/+]P`_1EYF\8"!B$[*=JZ'DU7\#BZWN/0D"?A5Q#.([+6MS`@J]K:1KO>F-*P2O< MS#O)S/U42]7<29Y7,BO,=/EA>95IY81$P$):Z<1^D-7&2:*L;IT0OPLG0(4M M+BQ*L[9SHB@*TZA/0`'#JQ6`M",V28CVOIH>*G90TC]RG;\2Y#JO*R+,GTFB MC+=JLM@C43`"5=:EZA214ZMV;W_?,F/#Z)%*D*:,R/@8(=L@J?,(7+L$#ZY! M`TS0(>EO9*AJ;Z)\!\D)D@^0?`\B=A"BF8L!(BQDY-+M@(<73!@H!:KO-S1] MOX%L#ZM&*VY:."UD@5$C"QL_RVPF5?BBY89K";Q/X"WF5%6SQ1PY7H^A:\MZ M#86\*X6$@K,SLL$)82N>RPJ\.7A;\#3]!M865+71Q[`]3!)9S*FYD92^JO@: M1*>UEK6I[J%H9%N_,[!MM!4`B(?%'!1*X&=C2N5U`9A=VTUJN5VUX!E@X'7X MP$UX7W_*+++#54E>MY0#=[SJ)*K4C8)'?MNRJB"7*!=;1)LZ8#07MRU5H&H. MM%*81K?$@.[^"'R2M=2EZ%U/9P")+JYM8?+;&PS_O-\O#_V>A$'<)UB[V]=7 M[#ZXO8?V1YB(8T./B&/DD#@,UX[_B_0MR2/^?NSO\P]]%L;!06F4,40?9#S\ M@=JD`R6/26*7]"@(^_Y=\1\O36,P,J)`\(THS;T=\X?/2\@Y#1W/C.@J;LJF M;I_LP+,3W"'W.H$-ITZ$U(DX\H]UOVU\^Z*?G.(3H@\F^;]%IR0:?8NBDW\S ,;!C]`ID&5AH'"``` ` 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 Sun Oct 1 8:30: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ECB0637B503 for ; Sun, 1 Oct 2000 08:30:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA11739; Sun, 1 Oct 2000 08:30:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id AC57937B503; Sun, 1 Oct 2000 08:22:22 -0700 (PDT) Message-Id: <20001001152222.AC57937B503@hub.freebsd.org> Date: Sun, 1 Oct 2000 08:22:22 -0700 (PDT) From: jean-sebastien.roy@wanadoo.fr To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/21676: CDROM drive not recognised during install but recognised after install Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21676 >Category: kern >Synopsis: CDROM drive not recognised during install but recognised after install >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 01 08:30:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Jean-Sebastien ROY >Release: 4.1.1 >Organization: - >Environment: FreeBSD local.local 4.1.1-RELEASE FreeBSD 4.1.1-RELEASE #0: Tue Sep 26 00:46:59 GMT 2000 jkh@narf.osd.bsdi.com:/usr/src/sys/compile/GENERIC i386 >Description: When booting from CDROM to install FreeBSD 4.1.1, my CDROM drive is not recognised by the kernel ('No CDROM devices found' when I try to choose FreeBSD CRDOM as the install media). (even if it booted from the CD !) After installing FreeBSD (via FTP), my CDROM drive is correctly recognised. I tried various configurations for my IDE devices (swapping primary/secondary and master/slave) to no avail. (note the the CDROM and Hard disk were never on the same bus) My hardware is : Duron on an ASUS A7V. IBM-DTLA-305020 hard disk E5SA CDROM (recognised as : acd0: CDROM at ata0-master using PIO4 after install) (note : I did not use the onboard Promise ATA100 controller) >How-To-Repeat: Try installing FreeBSD 4.1.1 from CDROM on a computer with an ASUS A7V mainboard. >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 Oct 1 9:10: 3 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A169137B66E for ; Sun, 1 Oct 2000 09:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA44262; Sun, 1 Oct 2000 09:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id D6B1037B503; Sun, 1 Oct 2000 09:05:55 -0700 (PDT) Message-Id: <20001001160555.D6B1037B503@hub.freebsd.org> Date: Sun, 1 Oct 2000 09:05:55 -0700 (PDT) From: subz@inbox.ru To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/21677: Instalation crashed when shell started Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21677 >Category: i386 >Synopsis: Instalation crashed when shell started >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 01 09:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Subz >Release: FreeBSD 4.0 Release >Organization: MEPHI >Environment: >Description: Computer: processor AMD K6 3D 300 Mhz RAM 48 Mb Problem: Computer crashed after loading kernel Menu appeared and there wasn't anything alive: no mouse, no keyboard nothing >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 1 9:50: 4 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3C90737B503 for ; Sun, 1 Oct 2000 09:50:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA77928; Sun, 1 Oct 2000 09:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sun, 1 Oct 2000 09:50:02 -0700 (PDT) Message-Id: <200010011650.JAA77928@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Salvo Bartolotta Subject: Re: i386/21677: Instalation crashed when shell started Reply-To: Salvo Bartolotta Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/21677; it has been noted by GNATS. From: Salvo Bartolotta To: subz@inbox.ru Cc: freebsd-gnats-submit@freebsd.org Subject: Re: i386/21677: Instalation crashed when shell started Date: Sun, 01 Oct 2000 17:44:39 GMT >>>>>>>>>>>>>>>>>> Original Message <<<<<<<<<<<<<<<<<< On 10/1/00, 5:05:55 PM, subz@inbox.ru wrote regarding i386/21677:=20 Instalation crashed when shell started: > >Number: 21677 > >Category: i386 > >Synopsis: Instalation crashed when shell started > >Confidential: no > >Severity: critical > >Priority: high > >Responsible: freebsd-bugs > >State: open > >Quarter: > >Keywords: > >Date-Required: > >Class: sw-bug > >Submitter-Id: current-users > >Arrival-Date: Sun Oct 01 09:10:01 PDT 2000 > >Closed-Date: > >Last-Modified: > >Originator: Subz > >Release: FreeBSD 4.0 Release > >Organization: > MEPHI > >Environment: > >Description: > Computer: > processor AMD K6 3D 300 Mhz > RAM 48 Mb > Problem: > Computer crashed after loading kernel > Menu appeared and there wasn't anything alive: > no mouse, no keyboard nothing Dear Sir or Madam, Thank you for taking the time to submit a PR. Unfortunately, the information you have kindly posted is not=20 sufficient. Could you please provide as many hardware details as possible -- in=20 particular, make and model of your motherboard (and chipsets), your=20 HD(s), CDROM(s), etc. -- and as many error messages as possible ?=20 These elements will considerably help the debugging people to identify=20 and probably solve the problem. Thank you very much. Best regards, Salvo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 1 12:20: 4 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DBA1737B503 for ; Sun, 1 Oct 2000 12:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA74485; Sun, 1 Oct 2000 12:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 4DA1D37B66C; Sun, 1 Oct 2000 12:12:59 -0700 (PDT) Message-Id: <20001001191259.4DA1D37B66C@hub.freebsd.org> Date: Sun, 1 Oct 2000 12:12:59 -0700 (PDT) From: root@chv.ukrpack.net To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/21683: Unable to compile kernel after CVSUP. CVSUP was made 30.09.2000 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21683 >Category: kern >Synopsis: Unable to compile kernel after CVSUP. CVSUP was made 30.09.2000 >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 01 12:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Ivanov I. Ivanovich >Release: 3.5-STABLE >Organization: DataCom >Environment: FreeBSD dc 3.5-STABLE FreeBSD 3.5-STABLE #0: Fri Sep 22 19:39:29 EEST 2000 root@dc:/usr/src/sys/compile/dc i386 >Description: When i done CVSUP at 30.09.2000, recompiling my whole system (cd /usr/src;make buildworld;make installworld) i trying to recompile kernel and get an error with using command arc4random(). I find this function in /usr/include/stdlib.h, but this header never included in kernel /usr/src/sys/netinet/*.c files. I cannot compile kernel, until i changes arc4random() directive to simple random() directive in the /usr/src/sys/netinet/tcp_subr.c and /usr/src/sys/netinet/tcp_seq.h >How-To-Repeat: get a CVS repository of 30.09.2000 of 3.5-STABLE and try to compile kernel. >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 Oct 1 13:20: 4 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3C95F37B503 for ; Sun, 1 Oct 2000 13:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA10064; Sun, 1 Oct 2000 13:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by hub.freebsd.org (Postfix) with ESMTP id 61CFA37B66D for ; Sun, 1 Oct 2000 13:17:06 -0700 (PDT) Received: (from robert@localhost) by fledge.watson.org (8.9.3/8.9.3) id QAA57771; Sun, 1 Oct 2000 16:17:01 -0400 (EDT) (envelope-from robert) Message-Id: <200010012017.QAA57771@fledge.watson.org> Date: Sun, 1 Oct 2000 16:17:01 -0400 (EDT) From: rwatson@freebsd.org Reply-To: rwatson@freebsd.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: gnu/21685: remote gdb: ptrace(PT_GETDBREGS) failed: No such process Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21685 >Category: gnu >Synopsis: remote gdb: ptrace(PT_GETDBREGS) failed: No such process >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 01 13:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Robert Watson >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: FreeBSD alsvid.watson.org 5.0-CURRENT FreeBSD 5.0-CURRENT #1: Fri Sep 22 10:54:51 EDT 2000 robert@alsvid.watson.org:/data/fbsd-current/fresh/acl/src/sys/compile/ACL i386 Using gdb to remote debug a kernel. >Description: Gdb spits out lots of ptrace() errors during remote debugging, whereas previously it did not. Since ptrace() should only be used for local debugging, there's probably a call to ptrace() that should not be occuring. Don't have the threshold date that it started due to spotty following of -CURRENT. >How-To-Repeat: (kgdb) target remote /dev/cuaa0 Remote debugging using /dev/cuaa0 ptrace(PT_GETDBREGS) failed: No such process Debugger (msg=0xc039af4f "Boot flags requested debugger") at ../../i386/i386/db_interface.c:326 326 in_Debugger = 0; >Fix: Not included. This doesn't appear to result in actual breakage, just an annoying message getting printed fairly frequently. >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 Oct 1 13:40: 4 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7A63A37B66C for ; Sun, 1 Oct 2000 13:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA23155; Sun, 1 Oct 2000 13:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 4425337B503; Sun, 1 Oct 2000 13:35:30 -0700 (PDT) Message-Id: <20001001203530.4425337B503@hub.freebsd.org> Date: Sun, 1 Oct 2000 13:35:30 -0700 (PDT) From: admin@govital.net To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/21686: 3ware twe driver not working properly with 6000 series cards Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21686 >Category: kern >Synopsis: 3ware twe driver not working properly with 6000 series cards >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 Oct 01 13:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Chris Demers >Release: 4.1 >Organization: GoVital Hosting >Environment: FreeBSD web002.govitalhosting.com 4.1-RELEASE FreeBSD 4.1-RELEASE #0: Thu Jul 27 04:44:16 GMT 2000 root@usw4.freebsd.org:/usr/src/sys/compile/GENERIC i386 >Description: I am trying to use FreeBSD with the 6200/6400 series ide raid cards from 3ware and have had much difficulty getting them to run properly t raid level 1 just basic mirroring. The problem that we are having is that we cannot properly install FreeBSD 4.1-Release with the 6000 series cards. If we setup a raid 1 mirror, shutdown the machine and then disconnect one of the drives and then boot up again everything is fine running from a single drive, we can setup the system no problem get everything running all fine, but as soon as we add in the second or additional drives we start to get errors. The errors start to appear about a couple minutes after initial startup and as the drives begin to sync up their data updating the new drive. After a little while the system starts to core dump everything pretty well that loads up. Systems being used are super socket 7 motherboards atx, amd k6/2 500mhz, 128-256mb ram, 15GB hard drives (fujitsu 7200rpm), generic pci vga cards. >How-To-Repeat: Just setup a raid 1 mirroring with the 3ware 6200/6400 cards and use system like normal. The problem has occured identical on 4 seperate setups of cards and motherboards. >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 Oct 1 18: 0: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AE56237B66F for ; Sun, 1 Oct 2000 18:00:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA46487; Sun, 1 Oct 2000 18:00:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id A82B337B66E; Sun, 1 Oct 2000 17:54:24 -0700 (PDT) Message-Id: <20001002005424.A82B337B66E@hub.freebsd.org> Date: Sun, 1 Oct 2000 17:54:24 -0700 (PDT) From: crainm@techie.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/21688: Kernel crash with Adaptec AAA-133 and ahc driver but not with aic driver trap 12 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21688 >Category: kern >Synopsis: Kernel crash with Adaptec AAA-133 and ahc driver but not with aic driver trap 12 >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 Oct 01 18:00:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Erik B. Ordway >Release: 4.1.1-Stable >Organization: The Evergreen State College >Environment: FreeBSD files.my.domain 4.1.1-STABLE FreeBSD 4.1.1-STABLE #2: Mon Oct 2 00:31:14 PDT 2000 root@files.my.domain:/usr/src/sys/compile/files.conf i386 clock not correct off by 8 hours >Description: This is similar to [2000/08/08] kern/20484 but involves 4.1.1 and crashing at but not at run time. source was cvsup'ed 21:00:00 pacific approx. on Sept./31/2000. When booting with the Adaptec AAA-133 installed the kernel will crash when the first of three SCSI buses is probed. Each bus uses a AIC7880P to drive it. If the AIC driver is enabled in the kernel and not the AHC the kernel will not crash but the device shows up as an unknown PCI device. Oct 2 00:52:51 files /kernel.old: pcib2: at device$ Oct 2 00:52:51 files /kernel.old: pci2: on pcib2 Oct 2 00:52:51 files /kernel.old: pci2: (vendor=0x9004, dev=0x$ Oct 2 00:52:51 files /kernel.old: pci2: (vendor=0x9004, dev=0x$ Oct 2 00:52:51 files /kernel.old: pci2: (vendor=0x9004, dev=0x$ Oct 2 00:52:51 files /kernel.old: pci2: (vendor=0x9004, dev=0x$ Oct 2 00:52:51 files /kernel.old: atapci0: port 0xc800-0xc8ff mem 0xe6000000-0xe61ffffff,0xde000000-dxe000fff irq 10 ate device 0.0 n pci2 RAID Functionalality unsupported Fatal trap 12: pagefualt while in kernel mode fault virual address =0x32 fault code =superviso read, page not found instruction pointer =0x8_0xc013805b stack pointer =0x10_:0xc039fde4 frame pointer =0x10_:0xc039fdec code segment =base 0x0, limit 0xfffff, type 0x1b =DPL 0, pres 1, def32 1, gran 1 processor eflags =interrupt enable, resume, IOPL = 0 current process =0 (swapper) interrupt mask =net tty bio cam trap number =12 panic: page fault Uptime: 0s Full dmessage >How-To-Repeat: Install a AAA-133 on a PCI machine and boot with the AHC drive or without it and no AIC driver. >Fix: remove card or boot with the aic driver and no ahc driver. In either case access to the drive is lost >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 Oct 2 0:26:37 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from nhj.nlc.net.au (nhj.nlc.net.au [203.24.133.1]) by hub.freebsd.org (Postfix) with SMTP id B576A37B502 for ; Mon, 2 Oct 2000 00:26:32 -0700 (PDT) Received: (qmail 28855 invoked from network); 2 Oct 2000 18:26:28 +1100 Received: from monster.nlc.net.au (203.24.133.6) by nhj.nlc.net.au with SMTP; 2 Oct 2000 18:26:28 +1100 Received: (qmail 14763 invoked from network); 2 Oct 2000 18:26:27 +1100 Received: from pacer.nlc.net.au (HELO sentinel.pakprotector.com) (203.24.133.16) by monster.nlc.net.au with SMTP; 2 Oct 2000 18:26:27 +1100 Received: from pacer (pacer.pakprotector.com [203.41.181.2]) by sentinel.pakprotector.com (8.11.0/8.11.0) with SMTP id e927R4F00475; Mon, 2 Oct 2000 18:27:08 +1100 (EST) (envelope-from john@pakprotector.com) Message-ID: <005301c02c42$1e6d09e0$02b529cb@pakprotector.com> From: "John Saunders" To: , References: <200010011420.HAA53479@freefall.freebsd.org> Subject: Re: i386/21672: AMD Duron Rev. A0 reports incorrect L2 cache size Date: Mon, 2 Oct 2000 18:26:39 +1100 Organization: PAKPROTECTOR MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Actually there is a bug in the patch code I submitted. The cpu_id variable _should not_ be masked with 0xFF0 before comparing to 0x620. This mistake is harmless, until Durons with larger L2 cache become available. Thanks. ----- Original Message ----- From: To: Sent: Monday, October 02, 2000 1:20 AM Subject: Re: i386/21672: AMD Duron Rev. A0 reports incorrect L2 cache size > Thank you very much for your problem report. > It has the internal identification `i386/21672'. > The individual assigned to look at your > report is: freebsd-bugs. > > You can access the state of your problem report at any time > via this link: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=21672 > > >Category: i386 > >Responsible: freebsd-bugs > >Synopsis: AMD Duron Rev. A0 reports incorrect L2 cache size > >Arrival-Date: Sun Oct 01 07:20:01 PDT 2000 > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 2 2:40: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0EB4737B66F for ; Mon, 2 Oct 2000 02:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA70399; Mon, 2 Oct 2000 02:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id B26F137B502; Mon, 2 Oct 2000 02:38:28 -0700 (PDT) Message-Id: <20001002093828.B26F137B502@hub.freebsd.org> Date: Mon, 2 Oct 2000 02:38:28 -0700 (PDT) From: pekkas@netcore.fi To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: conf/21695: ifconfig_XXX_aliasY in rc.conf; Y must be in sequential order Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21695 >Category: conf >Synopsis: ifconfig_XXX_aliasY in rc.conf; Y must be in sequential order >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 Oct 02 02:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Pekka Savola >Release: FreeBSD-4.1-STABLE >Organization: Netcore >Environment: >Description: ifconfig_fxp0_aliasX definitions in /etc/rc.conf must be in sequential order. Also, if one (here 'X-1') is missing, all aliases from X onwards will be ignored. This could be viewed as a configuration issue (which it is, strictly speaking), but as some poeple have a lot of aliases, this kind of mechanism could be optimized. >How-To-Repeat: Put the following in rc.conf: ifconfig_fxp0="inet x.y.129.194 netmask 255.255.255.240" ifconfig_fxp0_alias0="inet x.y.129.195 netmask 255.255.255.255" #ifconfig_fxp0_alias1="inet x.y.129.196 netmask 255.255.255.255" ifconfig_fxp0_alias2="inet x.y.129.198 netmask 255.255.255.255" alias2 will not be configured. >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 Oct 2 2:40:14 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CAABE37B66D for ; Mon, 2 Oct 2000 02:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA70384; Mon, 2 Oct 2000 02:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.turbolinux.co.jp (mail.turbolinux.co.jp [210.171.55.67]) by hub.freebsd.org (Postfix) with ESMTP id E698137B502 for ; Mon, 2 Oct 2000 02:32:13 -0700 (PDT) Received: from localhost (tlgw1.turbolinux.co.jp [210.171.55.80]) by mail.turbolinux.co.jp (8.9.3+3.2W/3.7Wpl2) with ESMTP id SAA31073 for ; Mon, 2 Oct 2000 18:32:10 +0900 Message-Id: <20001002183014F.masaru@turbolinux.co.jp> Date: Mon, 02 Oct 2000 18:30:14 +0900 From: Masaru Yokoi To: FreeBSD-gnats-submit@FreeBSD.org Subject: conf/21694: Multi network interface will not be work well in /etc/rc.network6. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21694 >Category: conf >Synopsis: Multi network interface will not be work well in /etc/rc.network6. >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 02 02:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Masaru Yokoi >Release: FreeBSD 4.1.1-RELEASE i386 >Organization: TurboLinux Japan, K.K. >Environment: * FreeBSD 4.1.1-RELEASE i386 * /etc/rc.network6 CVS Revision is 1.5.2.6 >Description: In network6_pass1() in rc.network6 of shell script, it should do "ifconfig" and "rtsol" for each network interfaces. But now, it is using a variable (ipv6_network_interfaces) of whole of IPv6 network interface. It should use valiable of each network interface using with "for i in ${ipv6_network_interfaces}". >How-To-Repeat: * Prepare 2 or more NIC. * Configure in /etc/rc.conf --- ipv6_gateway_enable="NO" ipv6_network_interfaces="AUTO" --- >Fix: Please apply this patch. --- ./rc.network6 Wed Sep 27 21:19:30 2000 +++ /etc/rc.network6 Wed Sep 27 21:13:39 2000 @@ -190,14 +190,16 @@ sysctl -w net.inet6.ip6.forwarding=0 sysctl -w net.inet6.ip6.accept_rtadv=1 - case ${ipv6_network_interfaces} in - lo0|gif*|stf*|faith*) - ;; - *) - ifconfig ${ipv6_network_interfaces} up - rtsol ${ipv6_network_interfaces} - ;; - esac + for i in ${ipv6_network_interfaces} ; do + case ${i} in + lo0|gif*|stf*|faith*) + ;; + *) + ifconfig ${i} up + rtsol ${i} + ;; + esac + done # wait for DAD's completion (for global addrs) sleep `sysctl -n net.inet6.ip6.dad_count` >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 Oct 2 3:20: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F3EF237B503 for ; Mon, 2 Oct 2000 03:20:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA97784; Mon, 2 Oct 2000 03:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 2 Oct 2000 03:20:03 -0700 (PDT) Message-Id: <200010021020.DAA97784@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Chris D. Faulhaber" Subject: Re: conf/21695: ifconfig_XXX_aliasY in rc.conf; Y must be in sequential order Reply-To: "Chris D. Faulhaber" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR conf/21695; it has been noted by GNATS. From: "Chris D. Faulhaber" To: pekkas@netcore.fi Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: conf/21695: ifconfig_XXX_aliasY in rc.conf; Y must be in sequential order Date: Mon, 2 Oct 2000 06:10:02 -0400 (EDT) On Mon, 2 Oct 2000 pekkas@netcore.fi wrote: > >Synopsis: ifconfig_XXX_aliasY in rc.conf; Y must be in sequential order > > >How-To-Repeat: > Put the following in rc.conf: > > ifconfig_fxp0="inet x.y.129.194 netmask 255.255.255.240" > ifconfig_fxp0_alias0="inet x.y.129.195 netmask 255.255.255.255" > #ifconfig_fxp0_alias1="inet x.y.129.196 netmask 255.255.255.255" > ifconfig_fxp0_alias2="inet x.y.129.198 netmask 255.255.255.255" > > alias2 will not be configured. > Is this a problem or just something you noticed? This behaviour is documented in rc.conf(5). ----- Chris D. Faulhaber - jedgar@fxp.org - jedgar@FreeBSD.org -------------------------------------------------------- FreeBSD: The Power To Serve - http://www.FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 2 3:20: 8 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B78AF37B66C for ; Mon, 2 Oct 2000 03:20:05 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA97800; Mon, 2 Oct 2000 03:20:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 2 Oct 2000 03:20:05 -0700 (PDT) Message-Id: <200010021020.DAA97800@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Pekka Savola Subject: Re: conf/21695: ifconfig_XXX_aliasY in rc.conf; Y must be in sequential order Reply-To: Pekka Savola Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR conf/21695; it has been noted by GNATS. From: Pekka Savola To: "Chris D. Faulhaber" Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: conf/21695: ifconfig_XXX_aliasY in rc.conf; Y must be in sequential order Date: Mon, 2 Oct 2000 13:18:29 +0300 (EEST) On Mon, 2 Oct 2000, Chris D. Faulhaber wrote: > On Mon, 2 Oct 2000 pekkas@netcore.fi wrote: > > > >Synopsis: ifconfig_XXX_aliasY in rc.conf; Y must be in sequential order > > > > >How-To-Repeat: > > Put the following in rc.conf: > > > > ifconfig_fxp0="inet x.y.129.194 netmask 255.255.255.240" > > ifconfig_fxp0_alias0="inet x.y.129.195 netmask 255.255.255.255" > > #ifconfig_fxp0_alias1="inet x.y.129.196 netmask 255.255.255.255" > > ifconfig_fxp0_alias2="inet x.y.129.198 netmask 255.255.255.255" > > > > alias2 will not be configured. > > > > Is this a problem or just something you noticed? This behaviour is > documented in rc.conf(5). Well, both. :-) Actually I hadn't noticed there was a man page about rc.conf earlier, so I just noticed it now. Nevertheless, even though it's documented, this would seem to be like a thing that should just plain work :-) -- Pekka Savola "Tell me of difficulties surmounted, Pekka.Savola@netcore.fi not those you stumble over and fall" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 2 3:30: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DAB4337B502 for ; Mon, 2 Oct 2000 03:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA03609; Mon, 2 Oct 2000 03:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 31B8237B502; Mon, 2 Oct 2000 03:28:22 -0700 (PDT) Message-Id: <20001002102822.31B8237B502@hub.freebsd.org> Date: Mon, 2 Oct 2000 03:28:22 -0700 (PDT) From: barak_enat@yahoo.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/21697: libedit does not #include causing some code in read.c to be ifdef'd out Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21697 >Category: misc >Synopsis: libedit does not #include causing some code in read.c to be ifdef'd out >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 Oct 02 03:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Barak Enat >Release: >Organization: >Environment: >Description: in libedit the file read.c include some code to handle the case of stdin becoming NON blocking. this is done in the function read__fixio. however, the # if defined(F_SETFL) && defined(O_NDELAY) line is evaluated to false preventing this code from compiling. this is because Cis missing from the compilation. >How-To-Repeat: to see the problem run sh -E, and then execute a program that sets STDIN to NB mode. when the program terminates, sh keeps beeping, since libedit doesn't return STDIN to blocking mode. >Fix: fix the compilation to have #include >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 2 3:30: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B047737B503 for ; Mon, 2 Oct 2000 03:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA03600; Mon, 2 Oct 2000 03:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 2D66137B502; Mon, 2 Oct 2000 03:21:40 -0700 (PDT) Message-Id: <20001002102140.2D66137B502@hub.freebsd.org> Date: Mon, 2 Oct 2000 03:21:40 -0700 (PDT) From: barak_enat@yahoo.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/21696: libedit does not #include Number: 21696 >Category: misc >Synopsis: libedit does not #include 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 Oct 02 03:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Barak Enat >Release: >Organization: >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 Mon Oct 2 4:20: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 470ED37B503 for ; Mon, 2 Oct 2000 04:20:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA33001; Mon, 2 Oct 2000 04:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 2 Oct 2000 04:20:03 -0700 (PDT) Message-Id: <200010021120.EAA33001@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ruslan Ermilov Subject: Re: conf/21695: ifconfig_XXX_aliasY in rc.conf; Y must be in sequential order Reply-To: Ruslan Ermilov Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR conf/21695; it has been noted by GNATS. From: Ruslan Ermilov To: Pekka Savola Cc: bug-followup@FreeBSD.org Subject: Re: conf/21695: ifconfig_XXX_aliasY in rc.conf; Y must be in sequential order Date: Mon, 2 Oct 2000 14:16:57 +0300 On Mon, Oct 02, 2000 at 03:20:05AM -0700, Pekka Savola wrote: > The following reply was made to PR conf/21695; it has been noted by GNATS. > > From: Pekka Savola > To: "Chris D. Faulhaber" > Cc: freebsd-gnats-submit@FreeBSD.org > Subject: Re: conf/21695: ifconfig_XXX_aliasY in rc.conf; Y must be in sequential > order > Date: Mon, 2 Oct 2000 13:18:29 +0300 (EEST) > > On Mon, 2 Oct 2000, Chris D. Faulhaber wrote: > > > On Mon, 2 Oct 2000 pekkas@netcore.fi wrote: > > > > > >Synopsis: ifconfig_XXX_aliasY in rc.conf; Y must be in sequential order > > > > > > >How-To-Repeat: > > > Put the following in rc.conf: > > > > > > ifconfig_fxp0="inet x.y.129.194 netmask 255.255.255.240" > > > ifconfig_fxp0_alias0="inet x.y.129.195 netmask 255.255.255.255" > > > #ifconfig_fxp0_alias1="inet x.y.129.196 netmask 255.255.255.255" > > > ifconfig_fxp0_alias2="inet x.y.129.198 netmask 255.255.255.255" > > > > > > alias2 will not be configured. > > > > > > > Is this a problem or just something you noticed? This behaviour is > > documented in rc.conf(5). > > Well, both. :-) > > Actually I hadn't noticed there was a man page about rc.conf earlier, so I > just noticed it now. > > Nevertheless, even though it's documented, this would seem to be like a > thing that should just plain work :-) > Hmm, how would you expect it to work? rc.network scanning all possible ifconfig__alias, where n is from 0 to infinity? I doubt this would be practical. -- Ruslan Ermilov Oracle Developer/DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 2 4:30: 9 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8FCC737B502 for ; Mon, 2 Oct 2000 04:30:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA38228; Mon, 2 Oct 2000 04:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 2 Oct 2000 04:30:03 -0700 (PDT) Message-Id: <200010021130.EAA38228@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Pekka Savola Subject: Re: conf/21695: ifconfig_XXX_aliasY in rc.conf; Y must be in sequential order Reply-To: Pekka Savola Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR conf/21695; it has been noted by GNATS. From: Pekka Savola To: Ruslan Ermilov Cc: bug-followup@FreeBSD.org Subject: Re: conf/21695: ifconfig_XXX_aliasY in rc.conf; Y must be in sequential order Date: Mon, 2 Oct 2000 14:23:09 +0300 (EEST) On Mon, 2 Oct 2000, Ruslan Ermilov wrote: > On Mon, Oct 02, 2000 at 03:20:05AM -0700, Pekka Savola wrote: > > The following reply was made to PR conf/21695; it has been noted by GNATS. > > > > From: Pekka Savola > > To: "Chris D. Faulhaber" > > Cc: freebsd-gnats-submit@FreeBSD.org > > Subject: Re: conf/21695: ifconfig_XXX_aliasY in rc.conf; Y must be in sequential > > order > > Date: Mon, 2 Oct 2000 13:18:29 +0300 (EEST) > > > > On Mon, 2 Oct 2000, Chris D. Faulhaber wrote: > > > > > On Mon, 2 Oct 2000 pekkas@netcore.fi wrote: > > > > > > > >Synopsis: ifconfig_XXX_aliasY in rc.conf; Y must be in sequential order > > > > > > > > >How-To-Repeat: > > > > Put the following in rc.conf: > > > > > > > > ifconfig_fxp0="inet x.y.129.194 netmask 255.255.255.240" > > > > ifconfig_fxp0_alias0="inet x.y.129.195 netmask 255.255.255.255" > > > > #ifconfig_fxp0_alias1="inet x.y.129.196 netmask 255.255.255.255" > > > > ifconfig_fxp0_alias2="inet x.y.129.198 netmask 255.255.255.255" > > > > > > > > alias2 will not be configured. > > > > > > > > > > Is this a problem or just something you noticed? This behaviour is > > > documented in rc.conf(5). > > > > Well, both. :-) > > > > Actually I hadn't noticed there was a man page about rc.conf earlier, so I > > just noticed it now. > > > > Nevertheless, even though it's documented, this would seem to be like a > > thing that should just plain work :-) > > > Hmm, how would you expect it to work? rc.network scanning all possible > ifconfig__alias, where n is from 0 to infinity? I doubt this > would be practical. Well, this is a bit hackish approach, but an equivalent of: grep ^ifconfig_.*_alias /etc/rc.conf would probably be good. -- Pekka Savola "Tell me of difficulties surmounted, Pekka.Savola@netcore.fi not those you stumble over and fall" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 2 4:31: 2 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from sentinel.office1.bg (sentinel.office1.bg [195.24.48.182]) by hub.freebsd.org (Postfix) with SMTP id 03E4637B502 for ; Mon, 2 Oct 2000 04:30:56 -0700 (PDT) Received: (qmail 2602 invoked by uid 1001); 2 Oct 2000 11:30:34 -0000 Date: Mon, 2 Oct 2000 14:30:34 +0300 From: Peter Pentchev To: Ruslan Ermilov Cc: freebsd-bugs@FreeBSD.org Subject: Re: conf/21695: ifconfig_XXX_aliasY in rc.conf; Y must be in sequential order Message-ID: <20001002143034.A2489@ringwraith.office1.bg> References: <200010021120.EAA33001@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200010021120.EAA33001@freefall.freebsd.org>; from ru@sunbay.com on Mon, Oct 02, 2000 at 04:20:03AM -0700 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Oct 02, 2000 at 04:20:03AM -0700, Ruslan Ermilov wrote: > > > > Put the following in rc.conf: > > > > > > > > ifconfig_fxp0="inet x.y.129.194 netmask 255.255.255.240" > > > > ifconfig_fxp0_alias0="inet x.y.129.195 netmask 255.255.255.255" > > > > #ifconfig_fxp0_alias1="inet x.y.129.196 netmask 255.255.255.255" > > > > ifconfig_fxp0_alias2="inet x.y.129.198 netmask 255.255.255.255" > > > > > > > > alias2 will not be configured. > > > > > > > > > > Is this a problem or just something you noticed? This behaviour is > > > documented in rc.conf(5). > > > > Well, both. :-) > > > > Actually I hadn't noticed there was a man page about rc.conf earlier, so I > > just noticed it now. > > > > Nevertheless, even though it's documented, this would seem to be like a > > thing that should just plain work :-) > > > Hmm, how would you expect it to work? rc.network scanning all possible > ifconfig__alias, where n is from 0 to infinity? I doubt this > would be practical. Theoretically, it could be done with some form of `set | grep '^ifconfig_.*_alias'` .. however, grep is in /usr/bin, which presents a bit of trouble with using it before configuring the network interfaces :) Hmm any way to do it in pure /bin/sh scripting? /bin/ed comes to mind, but creating a temporary file, ed'ing it, then sourcing the result... rrrrgggggg... did I hear someone whisper 'race condition' from the back rows? :P Not to mention 'ugly' :( G'luck, Peter -- This sentence contains exactly threee erors. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 2 5: 0: 4 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7F40937B503 for ; Mon, 2 Oct 2000 05:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA53417; Mon, 2 Oct 2000 05:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 441F937B502; Mon, 2 Oct 2000 04:52:18 -0700 (PDT) Message-Id: <20001002115218.441F937B502@hub.freebsd.org> Date: Mon, 2 Oct 2000 04:52:18 -0700 (PDT) From: storozhilov@mail.ru To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/21699: ad4: READ command timeout - resetting\n ata2: resetting devices .. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21699 >Category: misc >Synopsis: ad4: READ command timeout - resetting\n ata2: resetting devices .. >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 Oct 02 05:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Ilya Storozhilov >Release: FreeBSD 4.0 Stable >Organization: Pregrad.Net Ltd. >Environment: FreeBSD illy.ptt.ru 4.0-RELEASE FreeBSD 4.0-RELEASE #0 >Description: Hardware: Intel Celeron 450, Motherboard: ABit BE6-II, HDD 15Gb Quantum Fireball LM UDMA-66, 128 MB RAM, Video: NVIDIA Riva TNT 2 GENERIC. After installing OS on the computer, during the installation of programs from sources this message appeares (installation mc from ports, for example): ===> Installing for gmake-3.78.1 ad4: READ command timeout - resetting ata2: resetting devices .. Then the system hangs up. After pressing the Reset button OS can't load, fsck failed and /usr not mounted. >How-To-Repeat: Each time I install software from sources (sometimes from packages too). >Fix: i don't know it :( >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 Oct 2 5: 1:42 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C556137B502; Mon, 2 Oct 2000 05:01:40 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA54461; Mon, 2 Oct 2000 05:01:40 -0700 (PDT) (envelope-from johan@FreeBSD.org) Date: Mon, 2 Oct 2000 05:01:40 -0700 (PDT) From: Message-Id: <200010021201.FAA54461@freefall.freebsd.org> To: barak_enat@yahoo.com, johan@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/21696: libedit does not #include closed State-Changed-By: johan State-Changed-When: Mon Oct 2 05:00:47 PDT 2000 State-Changed-Why: Superseeded by valid PR 21697. http://www.freebsd.org/cgi/query-pr.cgi?pr=21696 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 2 6:10: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3852437B66C for ; Mon, 2 Oct 2000 06:10:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA95739; Mon, 2 Oct 2000 06:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 2 Oct 2000 06:10:03 -0700 (PDT) Message-Id: <200010021310.GAA95739@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ruslan Ermilov Subject: Re: conf/21695: ifconfig_XXX_aliasY in rc.conf; Y must be in sequential order Reply-To: Ruslan Ermilov Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR conf/21695; it has been noted by GNATS. From: Ruslan Ermilov To: Pekka Savola Cc: bug-followup@FreeBSD.org Subject: Re: conf/21695: ifconfig_XXX_aliasY in rc.conf; Y must be in sequential order Date: Mon, 2 Oct 2000 16:01:12 +0300 On Mon, Oct 02, 2000 at 04:30:03AM -0700, Pekka Savola wrote: [...] > > Hmm, how would you expect it to work? rc.network scanning all possible > > ifconfig__alias, where n is from 0 to infinity? I doubt this > > would be practical. > > Well, this is a bit hackish approach, but an equivalent of: > > grep ^ifconfig_.*_alias /etc/rc.conf > > would probably be good. > Not if /usr/bin/grep is called when /usr is not yet mounted. If you really need to have the ability to selectively turn on/off aliases on your interface, the below might work. Besides that it would allow you to selectively turn your aliases, it also has a plus in that you may choose whatever name you wish for your alias (much like the same as we do for ${static_routes}). #!/bin/sh network_interfaces="ed0" ifconfig_ed0_aliases="foo bar" ifconfig_ed0_alias_foo="alias_foo" ifconfig_ed0_alias_bar="alias_bar" for ifn in ${network_interfaces}; do eval ifconfig_aliases=\$ifconfig_${ifn}_aliases if [ -n "${ifconfig_aliases}" ]; then for i in ${ifconfig_aliases}; do eval ifconfig_args=\$ifconfig_${ifn}_alias_${i} if [ -n "${ifconfig_args}" ]; then echo ifconfig ${ifn} ${ifconfig_args} alias eval showstat_$ifn=1 fi done fi done -- Ruslan Ermilov Oracle Developer/DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 2 6:20: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 865BE37B503 for ; Mon, 2 Oct 2000 06:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA01665; Mon, 2 Oct 2000 06:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id AA45037B502; Mon, 2 Oct 2000 06:10:51 -0700 (PDT) Message-Id: <20001002131051.AA45037B502@hub.freebsd.org> Date: Mon, 2 Oct 2000 06:10:51 -0700 (PDT) From: mib@asdis.de To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/21701: Keymap selection menu broken on initial installation Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21701 >Category: misc >Synopsis: Keymap selection menu broken on initial installation >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 02 06:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Martin Ibert >Release: 4.1.1-RELEASE >Organization: ASDIS Software AG >Environment: there is no uname output at the time the problem occurs >Description: When installing FreeBSD 4.1.1-RELEASE on a system with a German keyboard, one would like to use the German keymap during the installation process. So when I install FreeBSD, the first thing I do is always to select the keymap before going on to the "standard" install. With 4.1.1, the keymap menu is optically broken (functionally it is OK). >How-To-Repeat: - Boot from the 4.1.1 installation floppies kern.flp and mfsroot.flp - From the installation menu, select "Keymap" - Voila! >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 Oct 2 6:22:49 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4789537B502; Mon, 2 Oct 2000 06:22:48 -0700 (PDT) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA03074; Mon, 2 Oct 2000 06:22:48 -0700 (PDT) (envelope-from dwmalone@FreeBSD.org) Date: Mon, 2 Oct 2000 06:22:48 -0700 (PDT) From: Message-Id: <200010021322.GAA03074@freefall.freebsd.org> To: dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org, jlemon@FreeBSD.org Subject: Re: i386/21329: change to allow vm86 interrupt calls from userland Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: change to allow vm86 interrupt calls from userland Responsible-Changed-From-To: freebsd-bugs->jlemon Responsible-Changed-By: dwmalone Responsible-Changed-When: Mon Oct 2 06:19:34 PDT 2000 Responsible-Changed-Why: I think jlemon committed a change roughly equivelent to the patch in this PR - can it be closed now? http://www.freebsd.org/cgi/query-pr.cgi?pr=21329 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 2 7: 0: 9 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8030A37B66D for ; Mon, 2 Oct 2000 07:00:05 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA70389; Mon, 2 Oct 2000 07:00:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 2 Oct 2000 07:00:05 -0700 (PDT) Message-Id: <200010021400.HAA70389@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Salvo Bartolotta Subject: Re: misc/21699: ad4: READ command timeout - resetting\n ata2: resetting devices .. Reply-To: Salvo Bartolotta Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/21699; it has been noted by GNATS. From: Salvo Bartolotta To: storozhilov@mail.ru Cc: freebsd-gnats-submit@freebsd.org Subject: Re: misc/21699: ad4: READ command timeout - resetting\n ata2: resetting devices .. Date: Mon, 02 Oct 2000 14:55:36 GMT >>>>>>>>>>>>>>>>>> Original Message <<<<<<<<<<<<<<<<<< On 10/2/00, 12:52:18 PM, storozhilov@mail.ru wrote regarding misc/21699: ad4: READ command timeout - resetting\n ata2: resetting devices ..: > >Number: 21699 > >Category: misc > >Synopsis: ad4: READ command timeout - resetting\n ata2: resetting devices .. > >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 Oct 02 05:00:01 PDT 2000 > >Closed-Date: > >Last-Modified: > >Originator: Ilya Storozhilov > >Release: FreeBSD 4.0 Stable > >Organization: > Pregrad.Net Ltd. > >Environment: > FreeBSD illy.ptt.ru 4.0-RELEASE FreeBSD 4.0-RELEASE #0 > >Description: > Hardware: Intel Celeron 450, Motherboard: ABit BE6-II, HDD 15Gb Quantum Fireball LM UDMA-66, 128 MB RAM, Video: NVIDIA Riva TNT 2 GENERIC. After installing OS on the computer, during the installation=20 of programs from sources this message appeares (installation mc from=20 ports, for example): Dear Ilya Storozhilov, thank you for submitting the PR. Unfortunately, in the hardware description above, you have not specified your chipset. AFAIR, similar problems have been reported for the last few weeks; which problems were caused by **some** VIA chipsets. Could you please provide as much information as possible in this respect ? A possible/probable explanation of your error message lies in the malfunction of your chipset in UDMA mode. Possible workaround (until the bug is fixed): please disable UDMA mode in your HD(s) and revert to PIO mode. In this connection, you may wish to have a look at sysctl(8), sysctl.conf(5), and at your hw.atamodes variable (sysctl -a | grep atamodes). Set "hw.atamodes" to pio mode, ie substitute "pio" for "dma" in your hw.atamodes (sysctl -w hw.atamodes=3Dpio,pio,pio,pio). > =3D=3D=3D> Installing for gmake-3.78.1 > ad4: READ command timeout - resetting > ata2: resetting devices .. > Then the system hangs up. After pressing the Reset button OS can't load, fsck failed and /usr not mounted. > >How-To-Repeat: > Each time I install software from sources (sometimes from packages too). > >Fix: > i don't know it :( HTH a little, Salvo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 2 7:30: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D5FF837B503 for ; Mon, 2 Oct 2000 07:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA19138; Mon, 2 Oct 2000 07:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 2 Oct 2000 07:30:01 -0700 (PDT) Message-Id: <200010021430.HAA19138@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Salvo Bartolotta Subject: Re: misc/21699: ad4: READ command timeout - resetting\n ata2: resetting devices .. Reply-To: Salvo Bartolotta Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/21699; it has been noted by GNATS. From: Salvo Bartolotta To: freebsd-gnats-submit@freebsd.org Cc: sos@freebsd.org Subject: Re: misc/21699: ad4: READ command timeout - resetting\n ata2: resetting devices .. Date: Mon, 02 Oct 2000 15:21:13 GMT Dear FreeSBD PR maintainers, I replied to a PR which, actually, turned out to be a duplicate of=20 kern/17592 *sigh* My humblest apologies for any inconvenience. I should have taken one=20 more cup of coffe. Best regards, Salvo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 2 10:20:45 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from mail.swissonline.ch (mail.swissonline.ch [62.2.32.83]) by hub.freebsd.org (Postfix) with ESMTP id BE76C37B502 for ; Mon, 2 Oct 2000 10:20:38 -0700 (PDT) Received: from localhost (sol-91-44.swissonline.ch [195.24.91.44]) by mail.swissonline.ch (8.9.3/8.9.3) with ESMTP id TAA28658 for ; Mon, 2 Oct 2000 19:20:34 +0200 (MET DST) Message-Id: <200010021720.TAA28658@mail.swissonline.ch> X-Sender: Educatainment@orell.ch From: ORELL Verkaufs- und Managementseminare To: freebsd-bugs@FreeBSD.ORG Date: Mon, 02 Oct 2000 19:20:08 +0200 Subject: =?iso-8859-1?Q?Aus-&_Weiterbildung_f=FCr_KMU's_und_Abteilungen?= MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_001__7793735_69608.28" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a Multipart MIME message. ------=_NextPart_000_001__7793735_69608.28 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sehr geehrte Damen und Herren Haben Sie die Mitarbeiterschulung schon geplant? Wir möchten Ihnen ein attraktives Angebot unterbreiten. Besuchen Sie unsere Websites und informieren Sie sich über die aktuellen Aus- und Weiterbildungsangebote für KMU’s und Abteilungen: • klassische Verkaufs- und Managementtrainings finden Sie bei www.orell.ch (inkl. Trainings für Kommunikation, Kreativität, Sprechen vor Publikum etc.) • individuell gestaltete Ausbildung finden Sie unter www.educatainment.ch Wir freuen uns auf Ihre Kontaktaufnahme. ORELL Verkaufs- und Managementseminare 8802 Kilchberg   Wir möchten Sie mit unserem Angebot nicht belästigen, sondern eine attraktive Dienstleitung anbieten. Sollten wir trotzdem Ihren Unmut geweckt haben, bitten wir um Entschuldigung. Damit wir Ihre Adresse löschen können, klicken Sie REMOVE ------=_NextPart_000_001__7793735_69608.28 Content-Type: text/html; charset=iso-8859-1 Content-Transfer-Encoding: base64 PEhUTUw+DQo8SEVBRD4NCjxNRVRBIE5BTUU9IkdFTkVSQVRPUiIgQ29udGVudD0iR3JvdXBI VE1MIFBsdWdpbiBmb3IgR3JvdXAgTWFpbCI+DQo8VElUTEU+PC9USVRMRT4NCjwvSEVBRD4N CjxCT0RZPjxGT05UIGNvbG9yPSMwMDAwMDAgZmFjZT1BcmlhbCBzaXplPTI+DQo8UD5TZWhy IGdlZWhydGUgRGFtZW4gdW5kIEhlcnJlbjwvUD4NCjxQPkhhYmVuIFNpZSBkaWUgTWl0YXJi ZWl0ZXJzY2h1bHVuZyBzY2hvbiBnZXBsYW50PyBXaXIgbfZjaHRlbiBJaG5lbiBlaW4gDQph dHRyYWt0aXZlcyBBbmdlYm90IHVudGVyYnJlaXRlbi48L1A+DQo8UD5CZXN1Y2hlbiBTaWUg dW5zZXJlIFdlYnNpdGVzIHVuZCBpbmZvcm1pZXJlbiBTaWUgc2ljaCD8YmVyIGRpZSBha3R1 ZWxsZW4gQXVzLSANCnVuZCBXZWl0ZXJiaWxkdW5nc2FuZ2Vib3RlIGb8ciBLTVWScyB1bmQg QWJ0ZWlsdW5nZW46PC9QPg0KPFVMPg0KICA8TEk+a2xhc3Npc2NoZSBWZXJrYXVmcy0gdW5k IE1hbmFnZW1lbnR0cmFpbmluZ3MgZmluZGVuIFNpZSBiZWkgPC9GT05UPjxBIA0KICBocmVm PSJodHRwOi8vd3d3Lm9yZWxsLmNoLyI+PEZPTlQgZmFjZT1BcmlhbCANCiAgc2l6ZT0yPnd3 dy5vcmVsbC5jaDwvRk9OVD48L0E+PC9MST48L1VMPg0KPERJUj48Rk9OVCBjb2xvcj0jMDAw MDAwIGZhY2U9QXJpYWwgc2l6ZT0yPg0KPFA+KGlua2wuIFRyYWluaW5ncyBm/HIgS29tbXVu aWthdGlvbiwgS3JlYXRpdml05HQsIFNwcmVjaGVuIHZvciBQdWJsaWt1bSANCmV0Yy4pPC9Q PjwvRElSPg0KPFVMPg0KICA8TEk+aW5kaXZpZHVlbGwgZ2VzdGFsdGV0ZSBBdXNiaWxkdW5n IGZpbmRlbiBTaWUgdW50ZXIgPC9GT05UPjxBIA0KICBocmVmPSJodHRwOi8vd3d3LmVkdWNh dGFpbm1lbnQuY2gvIj48Rk9OVCBmYWNlPUFyaWFsIA0KICBzaXplPTI+d3d3LmVkdWNhdGFp bm1lbnQuY2g8L0ZPTlQ+PC9BPjwvTEk+PC9VTD48Rk9OVCBjb2xvcj0jMDAwMDAwIGZhY2U9 QXJpYWwgDQpzaXplPTI+DQo8UD5XaXIgZnJldWVuIHVucyBhdWYgSWhyZSBLb250YWt0YXVm bmFobWUuPC9QPg0KPFA+T1JFTEw8QlI+VmVya2F1ZnMtIHVuZCBNYW5hZ2VtZW50c2VtaW5h cmU8L1A+DQo8UD44ODAyIEtpbGNoYmVyZzwvUD4NCjxQPjwvRk9OVD48Rk9OVCBmYWNlPUFy aWFsIHNpemU9MT4mbmJzcDs8L1A+DQo8UD5XaXIgbfZjaHRlbiBTaWUgbWl0IHVuc2VyZW0g QW5nZWJvdCBuaWNodCBiZWzkc3RpZ2VuLCBzb25kZXJuIGVpbmUgYXR0cmFrdGl2ZSANCkRp ZW5zdGxlaXR1bmcgYW5iaWV0ZW4uIFNvbGx0ZW4gd2lyIHRyb3R6ZGVtIElocmVuIFVubXV0 IGdld2Vja3QgaGFiZW4sIGJpdHRlbiANCndpciB1bSBFbnRzY2h1bGRpZ3VuZy4gRGFtaXQg d2lyIElocmUgQWRyZXNzZSBs9nNjaGVuIGv2bm5lbiwga2xpY2tlbiBTaWUgPEEgDQpocmVm PSJtYWlsdG86cmVtb3ZlQG9yZWxsLmNoP3N1YmplY3Q9UkVNT1ZFJmFtcDtib2R5PUJpdHRl IEFkcmVzc2Ugc3RyZWljaGVuIFtUZXh0IG5pY2h0IORuZGVybl0iPlJFTU9WRTwvQT48L1A+ PC9GT05UPg0KPC9CT0RZPg0KPC9IVE1MPg0K ------=_NextPart_000_001__7793735_69608.28-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 2 11: 1:29 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F194037B502 for ; Mon, 2 Oct 2000 11:00:17 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA97558 for freebsd-bugs@freebsd.org; Mon, 2 Oct 2000 11:00:04 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 2 Oct 2000 11:00:04 -0700 (PDT) Message-Id: <200010021800.LAA97558@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list Subject: Current problem reports Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Current FreeBSD problem reports The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. Bugs can be in one of several states: o - open A problem report has been submitted, no sanity checking performed. a - analyzed The report has been examined by a team member and evaluated. f - feedback The problem has been solved, and the originator has been given a patch or a fix has been committed. The PR remains in this state pending a response from the originator. s - suspended The problem is not being worked on. This is a prime candidate for somebody who is looking for a project to do. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested. Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1997/03/08] kern/2923 panic: vm_fault: fault on nofault entry, o [1997/12/21] kern/5355 Fix for NULLFS problems o [1998/02/03] kern/5641 jasone running processes at the IDLE priority (i o [1998/02/10] kern/5703 CDROM Media Error triggers complete syste s [1998/05/13] kern/6630 julian [PATCH] Fix for Cyrix I8254 bug o [1998/07/12] kern/7264 gibbs Buslogic BT 950 scsi card not detected o [1998/08/15] kern/7622 Kernel panic with Fatal trap 18. o [1998/09/08] i386/7859 luigi fatal trap 12 in midi_synth_input o [1998/09/28] kern/8074 se CAM rescan operation fatal o [1998/10/03] gnu/8138 obrien gcc -pipe xxx.s hangs f [1998/10/06] i386/8179 Install failure with motherbord using SIS a [1998/11/08] ports/8609 nectar eklogin service (kerberos klogind) fails o [1998/11/24] bin/8829 bug in innetgr (was: Fix port: security/s o [1998/11/25] kern/8861 mdodd under heavy (multi interface) traffic ep0 f [1998/12/09] kern/9036 Boot 3.0-Release hangs with BT-445S after o [1999/02/19] kern/10166 panic during heavy sio i/o;no coproc; ves o [1999/02/20] kern/10172 [panics] Kernel (esp kern/sys_pipe.c) die s [1999/02/26] kern/10281 Crash of 3.1-STABLE system due to scsi er o [1999/03/01] kern/10332 gibbs System freezes during certain SCSI activi 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/20] i386/10690 Installation freezes after device selecti f [1999/03/20] kern/10701 ppbus printing problems o [1999/03/22] ports/10725 stb Wrong Cyrus IMAP deliver group o [1999/03/23] bin/10744 call to login() from aout/libutil.so.2.2 o [1999/03/27] kern/10828 3.1-STABLE freezes when writing to floppy o [1999/03/30] kern/10872 Panic in sorecieve() due to NULL mbuf poi o [1999/04/05] ports/10965 obrien lcc-3.6 unable to compile anything o [1999/04/13] kern/11112 Amanda on FreeBSD can wipe the _next_ tap f [1999/04/17] kern/11196 kernel mode page fault 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/23] i386/11298 sos Enabling IDE DMA on Opti Viper-M crashes o [1999/04/27] kern/11351 system reboot for error with popper and d 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 o [1999/05/24] kern/11869 wpaul Network hangging due to xl0: tx underrun o [1999/05/31] kern/11966 TCP copies send and receive socket buffer o [1999/06/02] kern/11988 recvmsg with a cmsghdr but no iovec is br f [1999/06/05] kern/12041 n_hibma Crashes on startup if Zip drive is switch o [1999/06/07] kern/12072 vm_fault happened in binary file transfer o [1999/06/09] kern/12106 error 6: panic: cannot mount root o [1999/06/10] kern/12127 persistent crash on idle SMP system o [1999/06/16] kern/12248 CRON in malloc(): warning: pointer to wr o [1999/06/18] i386/12286 Segmentation violation when invoking JNI s [1999/06/23] kern/12367 Writing files larger than floppy capacity o [1999/06/25] kern/12395 gibbs Buslogic SCSI cards (BT948) time out unde o [1999/06/30] kern/12466 Fast system hangs under high FS load o [1999/07/05] kern/12521 lmbench-1.1's context switching test hang o [1999/07/12] misc/12607 System crashes after boot, portmap endles o [1999/07/13] alpha/12623 alpha Certain valid numeric strings cause a SIG f [1999/07/20] misc/12720 gdbm (And possibly other libraries in /us o [1999/07/21] kern/12730 poll() causes indeterministic program han o [1999/07/21] misc/12743 Cannot boot the 3.2 floppies o [1999/08/02] misc/12923 Installation fails on HP Net Server o [1999/08/06] bin/12998 des still inetd junk pointer too low to make o [1999/08/10] i386/13059 imp Install aborts with panic:aha0: Invalid C a [1999/08/20] kern/13270 dillon NFS hangs if written through self-mount o [1999/08/23] alpha/13338 alpha panic: pmap_remove_all: pv_table for 162b o [1999/08/24] kern/13352 No support for Promise Ultra/66 o [1999/08/30] misc/13474 Maximum Number of IPs Permitted in the .. o [1999/09/09] alpha/13653 alpha panic: pmap_remove_all: pv_table for 90b6 o [1999/09/12] kern/13709 panic: sched_sync: fsync failed o [1999/09/19] kern/13825 tx0 "holds" packets for long periods, eve o [1999/09/19] i386/13844 keyboard locks up when I page through a m f [1999/09/20] i386/13849 grog dump on vinum r5 freezes system o [1999/09/22] i386/13892 Kern.flp does not boot on Compaq Presario o [1999/09/24] i386/13933 nfs server panics in tulip_rx_intr() o [1999/09/24] kern/13940 Panic with dd on block/"cooked" devices u o [1999/09/24] kern/13944 ATAPI cd-rom not boot to install, nor de o [1999/09/27] misc/13995 Full duplex mode doesn't work right with o [1999/09/28] kern/14028 ATAPI cd-rom not boot to install and can' o [1999/09/28] i386/14030 imp aha0 probe fails 3.3.0-RELEASE install wi o [1999/10/05] kern/14141 3.3-RELEASE crashing often o [1999/10/06] kern/14162 sudden reboot problem ( maybe kernel pani o [1999/10/08] misc/14204 error 6: panic: cannot mout root(2) o [1999/10/10] i386/14256 System doesn't boot under FreeBSD 3.2 o [1999/10/14] kern/14322 mount respects permissions of underlying o [1999/10/15] kern/14347 kdump & truss won't compile because addit f [1999/10/24] i386/14492 FreeBSD won't install/work with an Asus S o [1999/10/25] kern/14510 kernel panic while pressing panic o [2000/02/09] i386/16620 mdodd 4.0-20000208-CURRENT fails to boot on ASU o [2000/02/14] kern/16708 wpaul 3Com 3c900-Combo Ehternet card make kerne o [2000/02/15] kern/16740 mckusick The kernel panics with "ffs_clusteralloc: o [2000/02/18] i386/16802 An user math program have the system on K o [2000/02/19] kern/16828 High Speed Pinging Over 8184 bytes Kills o [2000/02/21] kern/16890 Fatal trap 12: page fault while in kernel o [2000/02/26] kern/17011 Fatal trap 12 occur, dhclient with BOOTP o [2000/02/28] kern/17067 consistent "make -k buildworld" crash wit o [2000/03/03] kern/17152 alfred kernel panic:aio_write o [2000/03/07] kern/17248 FreeBSD 3.4 won't install on 486/100 IBM o [2000/03/10] kern/17305 advansys driver time-out around 30 minute o [2000/03/12] kern/17339 3.4-R on a K6-2: panic: pmap_release: fre o [2000/03/15] i386/17391 jhb FreeBSD boot loader does not recognize ke f [2000/03/15] i386/17398 imp Install failure of 4.0-Release via ftp an o [2000/03/15] kern/17400 sos panic: resource_list_alloc when booting o [2000/03/18] i386/17485 Partition editor completely non-functiona o [2000/03/22] i386/17558 ncr1 controller is not working properly i o [2000/03/23] kern/17565 4.0-RELEASE install does not access IDE d o [2000/03/27] kern/17620 jhay Digi/570i sync driver (if_ar.c) causes sy o [2000/03/28] alpha/17642 alpha FreeBSD/alpha 4.0 RELEASE installation fa o [2000/03/28] kern/17643 sos 3.4 to 4.0 upgrade: ATAPI drivers damage o [2000/03/29] i386/17661 sos 4.0-REL hangs after detecting ata1 o [2000/04/03] kern/17776 RAID5 with crashed disk corrupts filesyst o [2000/04/03] i386/17778 sos 4.0-RELEASE will not recognize IDE Contro o [2000/04/04] bin/17791 Restore does not handle bad or missing ta o [2000/04/04] misc/17793 Keyboard not found o [2000/04/04] ports/17806 msmith make in ports/net/citrix_ica loops on scr o [2000/04/04] i386/17808 cannot swap /dev/.... o [2000/04/05] kern/17821 Wavelan driver not working in 4.0 o [2000/04/08] kern/17870 n_hibma 4.0-release consistently crashes a couple o [2000/04/09] kern/17881 4.0-RELEASE kern.flp boot crashes upon pr f [2000/04/13] kern/17971 cannot boot 4.0 floppies to install o [2000/04/18] kern/18074 Fatal trap 12: page fault while in kernel o [2000/04/20] i386/18123 4.0-RELEASE crashes during boot from CD-R o [2000/04/23] kern/18182 Remote serial gdb no longer works since m o [2000/04/24] bin/18198 owner of ccontrol file in spool dir is wr o [2000/04/24] misc/18201 Freeze at boot time when trying to upgrad o [2000/04/25] misc/18205 Install via CD-Romm hangs o [2000/04/25] i386/18207 3.2-RELEASE to 4.0-RELEASE FTP upgrade fa o [2000/04/27] kern/18265 Vendor specific word = FFFF o [2000/05/01] kern/18335 sos FreeBSD 4.0 has a "WRITE command timeout f [2000/05/04] kern/18387 grog when performing certain vinum operations, o [2000/05/09] misc/18466 dillon install via nfs or ftp media silently tru o [2000/05/13] bin/18531 installation will not read files frm flop o [2000/05/16] ports/18606 billf cannot install the latest ucd-snmp port o [2000/05/17] kern/18623 out of swap s [2000/05/17] misc/18641 paul FreeBSD V4.0 crashes when using ifconfig o [2000/05/18] i386/18655 4.0-RELEASE Fails to install o [2000/05/18] kern/18665 Unpredictable crashes. Page fault while i o [2000/05/21] kern/18712 Kernel panic o [2000/05/22] kern/18754 grog Vinum: reviving RAID5 volume corrupts dat o [2000/05/23] misc/18786 SCSI hangs during FreeBSD 4.0 installatio s [2000/05/24] misc/18793 ken Hitachi DK319H needs quirk entry to work o [2000/05/25] alpha/18808 alpha Unalligned trap handler fails on quadword o [2000/05/29] kern/18874 32bit NFS servers export wrong negative v o [2000/05/29] bin/18887 Undefined symbol "_krb_err_txt" in telnet f [2000/06/03] kern/18982 make buildworld freezes my machine with a o [2000/06/04] kern/19000 Automatic Reebot, Fatal o [2000/06/05] kern/19022 pcm driver causes immediate panic on use o [2000/06/05] i386/19027 FTP install operation does not find XFree o [2000/06/07] kern/19106 wpaul Corruption of xl driver's TX chain during f [2000/06/09] kern/19162 asmodai 4.0-STABLE panics w/ softupdates and quot o [2000/06/10] misc/19175 mounting NFS can be done multiple times C o [2000/06/13] kern/19247 uthread_sigaction.c does not do anything o [2000/06/14] misc/19257 Detection of connected ports on a Cyclom o [2000/06/15] kern/19297 Multi-processor kernel fails to boot on T o [2000/06/16] conf/19336 write failure when adding distribution fi o [2000/06/16] i386/19338 ProLiant DL360 dual proc. locks when boot o [2000/06/17] kern/19353 Cannot install 4.0 o [2000/06/22] misc/19441 4.0-STABLE (06/21/00) Panics On bootup o [2000/06/23] kern/19480 System hang when use current (GENERIC) ke o [2000/06/26] bin/19529 Burning cdrom with burncd fails o [2000/06/27] kern/19551 bmilekic panic when enabling bridge_ipfw o [2000/06/28] kern/19572 executing command cd ../cdrom after mount a [2000/06/30] ports/19613 nate java causing SIGSEGV 11* segmentation vi o [2000/07/01] conf/19629 imp /etc/rc.sysctl can't set all syctls f [2000/07/03] kern/19661 imp hang or reboot when pcmcia ethernet adapt o [2000/07/05] kern/19726 wpaul fatal trap 12 / page fault o [2000/07/09] kern/19794 FreeBSD 4.0-Stable crash o [2000/07/12] gnu/19882 obrien ld does not detect all undefined symbols! o [2000/07/13] ports/19888 ports qpopper3 dumps core for APOP authetificat f [2000/07/20] i386/20069 sos hard crash, errors with freebsd 4.0 (waln o [2000/07/20] ports/20077 jmz Latex 99.12 fails to make completely f [2000/07/25] kern/20175 Unknown Ethernet Card f [2000/07/26] ports/20199 ade ports/graphics/hdf patch failure o [2000/07/26] misc/20205 FreeBSD 4 will not install on a Compaq Pr o [2000/07/27] kern/20227 jlemon 4.1-RC: UDP checksum problem f [2000/07/29] kern/20296 sheldonh matcd driver is a) not in GENERIC and b) o [2000/07/30] i386/20308 yokota vidcontrol VESA_800x600 causes a kernel p f [2000/07/31] kern/20310 groudier Symbios 53c875j drivers don't work a [2000/07/31] kern/20312 tegge IO APIC problems o [2000/08/01] misc/20353 4.1 doesn't work on Compaq ML370 o [2000/08/03] kern/20375 APM doesn't work properly! Suspend/resum f [2000/08/03] i386/20379 unable to install, monitor goes black dur o [2000/08/04] kern/20394 sos kernel fails to recognize the second IDE o [2000/08/05] kern/20429 yokota setting flags 0x1 in atkbd0 locks keyboar o [2000/08/08] kern/20484 jlemon FreeBSD 4.0 crashes repeatedly: trap 12: o [2000/08/08] bin/20489 davidn pw problems: -w random not working correc o [2000/08/08] ports/20491 ade AbiWord-0.7.10 fails to compile on FreeBS o [2000/08/08] i386/20495 yokota 4.1-STABLE and 4.1-RELEASE: keyboard does o [2000/08/11] kern/20534 sos ata panic: resource_list_alloc: resource a [2000/08/13] kern/20573 sos ATA MFC Breaks -STABL o [2000/08/16] kern/20671 wpaul panicstr:page fault; panic messages:Fatal f [2000/08/22] kern/20776 rnordier Cannot boot the install floppy for versio o [2000/08/22] i386/20791 gibbs Adaptec 2940UW bootup errors in FSD 4.0/3 o [2000/08/28] kern/20895 groudier sym driver doesn't work for SYM53C895A o [2000/08/31] gnu/20966 obrien binutils break C++ in GCC 2.95.x and GCC- o [2000/09/02] i386/20994 /etc/fstab or kernel not correctly instal f [2000/09/02] kern/21009 /etc/security make the system hangup o [2000/09/04] misc/21025 msmith BTX loader 1.00 gets 1Gb of memory from B f [2000/09/04] i386/21042 mdodd Keyboard driver problems with PS/2 Model o [2000/09/04] kern/21046 sos ATAPI interface hangs during install of 4 f [2000/09/05] i386/21071 gibbs SCSI Controller Not Detected When Attempt o [2000/09/05] i386/21072 sos Unable to install. Can't write disklabel o [2000/09/06] kern/21079 ume IPSEC, kernel ARPs for tunnel endpoint in f [2000/09/08] i386/21117 When booting 4.0 install disk receive thi f [2000/09/09] kern/21148 grog multiple crashes while using vinum o [2000/09/12] kern/21220 msmith mlx0: I/O error - attempt to write beyond o [2000/09/13] bin/21253 dump/restore fail on any stream (tape/pip o [2000/09/14] misc/21269 Install does not see disk on Advansys car o [2000/09/14] kern/21272 wpaul USB interrupts seem to be turned off o [2000/09/14] kern/21278 scsi ahc driver wedges on stressed SMP system o [2000/09/17] kern/21323 msmith Lock up at boot on Acer507DX with pci.c 1 o [2000/09/17] ports/21332 will kde2 fails on dependency build o [2000/09/18] kern/21378 Accessing floppy under 4.1-STABLE (with D o [2000/09/19] kern/21397 Floppy drive doesn't work on Compaq ProLi o [2000/09/20] kern/21438 cg Sox recording in 16 bits creates a panic: o [2000/09/21] ports/21465 ports nmh-1.0.4: multiple simultaneous "inc"s s o [2000/09/21] ports/21466 ports port xpaint-2.5.7 won't make install f [2000/09/22] misc/21480 Harddrive death after FreeBSD Install o [2000/09/26] bin/21566 passwd does not work after updating from o [2000/09/27] kern/21592 insufficient PAP authentication in isp pr o [2000/10/01] i386/21677 Instalation crashed when shell started 250 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1995/10/18] bin/786 wpaul Problem with NIS and large group maps f [1996/08/22] kern/1533 dillon Machine can be panicked by a userland pro o [1996/09/29] kern/1689 TCP extensions throttles distant connecti s [1996/10/26] bin/1892 n_hibma install(1) removes target file s [1996/11/08] gnu/1981 ypserv handles null key incorrectly f [1996/12/22] kern/2270 Hayes ESP serial card locks system as of a [1996/12/30] kern/2325 quota.user enlarged, no boot on 2.2-BETA f [1997/01/09] bin/2430 grog mountd stops on loading if subnet mask is o [1997/02/07] kern/2690 asami When Using ccd in a mirror mode, file cre o [1997/02/09] kern/2698 After rewind I cannot read a tape; blocks 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/20] bin/2785 wpaul callbootd uses an unitialized variable o [1997/02/22] kern/2800 DDS large data writing probrem o [1997/03/01] kern/2840 mlock+minherit+fork+munlock causes panics o [1997/03/03] kern/2858 peter FreeBSD NFS client can't mount filesystem o [1997/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/3219 sppp or arnet gets looped after connectio o [1997/04/15] bin/3305 Can't do encrypted rlogin into self o [1997/04/25] kern/3381 peter 2.2.x kernel panic on traversing and remo o [1997/04/25] kern/3384 telldir-seekdir can cause livelock o [1997/05/01] kern/3463 netstat -I packet count increase on sl0 w f [1997/05/04] i386/3502 mdodd Merge of if_ix* and if_ie* broke EE/16 su o [1997/05/06] bin/3524 imp rlogin doesn't read $HOSTALIASES for non- o [1997/05/12] kern/3579 peter de driver doesn't support newer SMC 9332 o [1997/05/12] kern/3581 intermittent trap 12 in lockstatus() f [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 f [1997/06/03] kern/3771 dillon NFS hangs when writing to local FS re-mou o [1997/06/04] i386/3779 changing cursor to blinking block causes o [1997/06/28] misc/3980 peter access via NFS fails during mount-operati o [1997/07/02] kern/4012 peter 2.2-RELEASE/Digital UNIX NFSv3 0 length f s [1997/07/06] gnu/4042 obrien gdb stackframe in static library shows no o [1997/07/17] kern/4115 peter SunOS NFS file has wrong owner if creator o [1997/07/26] bin/4176 restore gets confused when run over pipe o [1997/07/28] kern/4186 peter nfsiod, panic, page fault in kernel mode o [1997/07/30] kern/4194 peter kernel pci driver for Digital 21041 Ether o [1997/08/06] kern/4240 kernel fails to recognise 2nd serial port o [1997/08/10] kern/4265 Panic in dsinit when multiple FreeBSD sli o [1997/08/12] kern/4284 le0 goes OACTIVE after some time o [1997/08/13] kern/4295 SL/IP difficulties between 2.2.1 & 2.2.2 o [1997/08/16] kern/4312 arp table gets messed up, syslog "gateway o [1997/08/17] kern/4327 peter NFS over TCP reconnect problem s [1997/08/19] kern/4338 New device driver (Cyclades Cyclom-Z) o [1997/08/22] bin/4357 wosch bug in adduser script causes duplicate UI o [1997/09/02] kern/4454 X drops characters/locks up keyboard when o [1997/09/03] bin/4460 lpd hangs exiting (IE in ps table) o [1997/09/11] kern/4513 System lockup appears to be VM related. o [1997/09/14] i386/4533 Server with Cyclom-Y PCI card rebooted at o [1997/09/21] kern/4600 peter nfs lookups might give incorrect result o [1997/09/30] kern/4663 checkalias panic o [1997/10/01] kern/4666 dfr umount -f doesn't seem to work o [1997/10/01] bin/4672 rdist does not do hard links right when t o [1997/10/03] bin/4683 imp restore doesn't correctly handle "sparse" o [1997/10/16] kern/4774 trying to use IBCS2 shared libraries cras o [1997/10/16] kern/4782 dillon Under certain conditions, several krsh's o [1997/10/31] kern/4909 de ethernet driver is crazy on 100base o [1997/11/03] kern/4927 kernel does not check any quota and permi o [1997/11/05] bin/4949 rpc.rquotad stat()s fs with quota file in o [1997/11/15] conf/5062 login.access not evaluated correctly o [1997/11/18] kern/5085 System crash during mount command for CD o [1997/11/23] i386/5128 Adaptec 2940U Timeouts with QUANTUM disk o [1997/12/06] kern/5244 F00F workaround dosn't always work on SMP o [1997/12/14] bin/5297 will 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) o [1998/01/26] misc/5574 bootpd gets timezone incorrectly o [1998/01/27] kern/5587 session id gets dropped o [1998/01/29] kern/5598 Support for magneto-optic SCSI devices wi o [1998/01/31] kern/5611 bind does not check sockaddr->sin_family o [1998/02/01] kern/5618 kernel memory leak in routetbl. o [1998/02/01] kern/5624 dumping to tape causes scsi bus reset o [1998/02/04] kern/5643 NCR 810/815 do not handle rewind correctl o [1998/02/19] kern/5794 Kernel Panic o [1998/02/28] kern/5877 sb_cc counts control data as well as data f [1998/03/11] kern/5975 can't boot freebsd: fatal trap12: page fa o [1998/03/16] kern/6035 The system "sort-of" hangs when playing b o [1998/03/19] kern/6066 lnc driver does not work correctly with A f [1998/03/22] kern/6103 panic: ffs_valloc: dup alloc o [1998/03/28] bin/6162 kinit does not default to the current use f [1998/04/03] kern/6203 kernel panics with "blkfree: freeing free f [1998/04/03] conf/6205 NFS/NIS freak out o [1998/04/04] kern/6212 dillon Two bugs with MFS filesystems fixed, one o [1998/04/07] kern/6238 luigi Sound-driver patch for MAD16 (OPTi 928,92 f [1998/04/08] kern/6252 sos ide cdrom hangs system when on same bus a 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/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/05/03] kern/6506 system will not soft reboot a [1998/05/06] bin/6536 pppd doesn't restore drainwait for tty o [1998/05/12] kern/6603 ncr driver hangs under high load f [1998/05/17] kern/6670 PANIC on boot with FreeBSD 3.0 (same comp 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] misc/6773 kris [PATCH] tempnam.c security problems s [1998/06/02] bin/6830 will make(1) exhibits confusing and non-standa o [1998/06/05] kern/6865 OS crashes when exiting shell with suspen o [1998/06/10] kern/6908 kernel crash from user land o [1998/06/19] bin/6994 The netstat(1) -s generates wrong output s [1998/06/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 mdodd 3Com 3C509 locks up, or has >1000ms rtt u s [1998/07/05] kern/7169 cannot use accton on a append-only file s [1998/07/06] misc/7190 phk "Invalid partition table" after new insta s [1998/07/10] kern/7237 NCR SCSI driver ch0 troubles o [1998/07/11] kern/7245 processes die with signal 6, if machine o o [1998/07/12] i386/7266 yokota PSM detection failure with Linksys consol s [1998/07/14] kern/7281 [STABLE] Multicast kludge does not work c o [1998/07/26] kern/7405 dillon 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 dillon Machine crashes do not occur very often, o [1998/07/30] bin/7446 jdp Dlopen succeed in particular cases, but i s [1998/08/10] kern/7556 sl_compress_init() will fail if called an f [1998/08/10] kern/7557 dillon -current machine running Diablo, lockup, s [1998/08/10] kern/7561 CDROM (wcd) is prone to lock up system/pr 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/27] bin/7756 disklabel misbehaving on seriously sick d o [1998/08/27] kern/7764 ps(1) hangs in pfslck/lockrd - All subseq o [1998/08/27] kern/7766 de driver still buggy - random ifc death o [1998/08/27] kern/7767 de driver still buggy - power cycle of de o [1998/09/09] bin/7872 dwmalone [PATCH] mountd(8) can apply flags to wron o [1998/09/09] bin/7876 gethostbyname flags temporary failure as o [1998/09/10] kern/7880 mount_cd9660 incorrect on multitrack CD-R o [1998/09/11] kern/7902 if_de doesn't properly recognize a "Magic o [1998/09/12] conf/7908 wrong perms on objformat after upgrade o [1998/09/16] gnu/7951 The gnu readline library core dumps when o [1998/09/17] bin/7968 If /usr/libexec/yppwupdate DNE, rpc.yppas o [1998/09/28] misc/8070 can't get a system with an NCR 810 contro o [1998/09/28] i386/8081 Problem with MULTIPORT driver and Boca BB o [1998/09/30] gnu/8099 obrien [patch] some bugs in cpio o [1998/10/03] kern/8137 [patch] quotaoff followed by quotaon can f [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/08] kern/8206 [patch] Unconected UDP socket declined, i o [1998/10/08] kern/8215 Creating 2 root partitions in sysinstall 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/19] conf/8379 gshapiro check_rcpt returns OK for nonexistent add o [1998/10/20] i386/8385 2.2.7 hangs while detecting type of COM1' o [1998/10/21] i386/8397 Code using popen compiled on BSDI BSD/OS o [1998/10/22] i386/8414 ibcs2 emulation sets serial baud-rate inc o [1998/10/22] kern/8415 SMP kernel freezes while downloading larg 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 f [1998/11/05] kern/8580 dillon Hanging NFS pagein in nfs_bio.c (2.2.7, w o [1998/11/08] kern/8607 maxprocsperuid setting causes sybase/linu o [1998/11/08] ports/8622 markm exmh2 has problems with some date formats o [1998/11/10] bin/8646 Implement rlogind -a option o [1998/11/11] kern/8655 Umount trouble of SCSI removable device f [1998/11/11] kern/8657 dillon nfs client hung in nfs_bwrite/vfs_busy_pa o [1998/11/14] bin/8685 sending a SYST by ftp client closes conne o [1998/11/18] bin/8745 wosch adduser permit adding `root' and mail ali o [1998/11/20] kern/8773 Intel AN430TX motherboard ps/2 port not r f [1998/11/20] kern/8778 gibbs Buslogic BT948 in 2 boxes upgraded from S f [1998/11/25] bin/8865 dwmalone syslogd hangs with serial console o [1998/11/29] conf/8903 dillon /etc/rc can do NFS mounts before the netw o [1998/12/02] kern/8940 system clock runs extremely slowly (and s f [1998/12/06] kern/8981 this also fixes X crashes and sio silo ov o [1998/12/16] kern/9095 swap detect error o [1998/12/20] i386/9140 NIS "Magic cookie" in master.passwd slays o [1998/12/21] kern/9163 ports [patch] squid does not join a multicast g o [1998/12/31] bin/9252 [patch] login program "login" don't set K o [1999/01/06] kern/9355 can't select() for writes on a bpf o [1999/01/07] bin/9379 pppd does not go through all interfaces l o [1999/01/08] kern/9391 if_addmulti doesn't check for retifma == o [1999/01/09] kern/9407 "make kernel" yields buggy kernel in cera o [1999/01/09] kern/9408 parameter reversed to a pci_cfgwrite in p o [1999/01/09] kern/9411 System crash on swapping to hole-files o [1999/01/11] bin/9440 obrien amd can't mount filesystems with type:=uf o [1999/01/13] kern/9478 support for running a script from kldload f [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/9548 UNION fs corrupts data and has undefined f [1999/01/17] kern/9550 sos The latest -current as of 17 January has o [1999/01/21] kern/9599 SMP hang after reseting CPU 1 s [1999/01/22] docs/9618 asmodai many typos in groff_mm(7) f [1999/01/25] kern/9673 ISO CD-ROM Problem o [1999/01/28] i386/9759 Tar process hangs on buggy tapes o [1999/02/01] kern/9862 system crashes writing to msdos jaz disk o [1999/02/02] kern/9883 MGET()(and variants) return NULL with M_W s [1999/02/06] kern/9927 gibbs the ahc driver doesn't correctly grok swi o [1999/02/06] i386/9933 No error reported writing to write-protec o [1999/02/06] kern/9935 vmstat reprots bad AVM values o [1999/02/08] kern/9961 When loading if_ppp_mod.o system crashes, o [1999/02/08] i386/9962 Install Panics in with integer divide fau o [1999/02/08] kern/9974 Large amounts of kernel clock drift with f [1999/02/09] bin/9982 ume inet_addr(3) should be return 32bit uint. o [1999/02/10] misc/10009 jdp dlopen will crash when opening some strip o [1999/02/11] kern/10021 MOUNTING A EXT2FS A AFTER MOUNTING AN MSD o [1999/02/11] bin/10031 ypxfr does not work with Solaris master s o [1999/02/13] kern/10066 problem with a X-Window and syscons drive f [1999/02/14] i386/10089 sos ATAPI tape driver (wst) doesn't handle En o [1999/02/15] kern/10107 dillon interlock situation with exec_map and a p f [1999/02/25] bin/10264 davidn 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 jkh installer o [1999/02/28] bin/10312 ken pciconf -l generates output incompatible o [1999/02/28] kern/10316 le0 goes OACTIVE after some time o [1999/03/02] bin/10353 ypserv gets segmentation violation o [1999/03/03] kern/10381 hlfsd/NFS failure -- directory cached bet o [1999/03/05] kern/10411 top, vmstat, iostat show 0% cpu idle & us o [1999/03/07] kern/10466 resume causes crashes if BIOS extmem != R o [1999/03/08] kern/10492 broadcast IP address can be set on interf o [1999/03/09] bin/10510 Remote cvs botches commits on occassion o [1999/03/11] bin/10553 syslogd suddenly stopped logging o [1999/03/14] kern/10581 Kernel panic while using find on an ext2 o [1999/03/14] kern/10594 EXT2FS mount problems o [1999/03/14] bin/10596 I can't find out where someone is logged o [1999/03/15] misc/10599 [PATCH included]malloc/free breaks in cer o [1999/03/15] kern/10603 dcs Random system panics o [1999/03/15] kern/10607 Fast forwarding breaks when arp cache exp f [1999/03/16] i386/10626 RTC BIOS diagnostic error on install o [1999/03/16] bin/10633 obrien [patch] tcpslice timezone problem and upd o [1999/03/17] i386/10646 Bridge code missing from ed0 driver in 3. o [1999/03/19] kern/10671 setlogin(2) return EINVAL for length of n o [1999/03/20] kern/10698 de driver doesn't work with some tulip bo o [1999/03/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/27] bin/10821 des getpwent() fails on NIS clients after dro o [1999/03/29] i386/10862 sos 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/10935 PCI cards detected twice o [1999/04/05] i386/10969 kernel fails to compile with ccs0 f [1999/04/06] i386/10983 lnc NIC driver doesn't work o [1999/04/06] bin/10991 lpd hangs system if printer not ready on o [1999/04/07] kern/11004 Quota Issues on SMP o [1999/04/07] bin/11005 `umount -f' does not work if the NFS-serv o [1999/04/08] misc/11024 getpwnam(3) uses incorrect #define to lim o [1999/04/11] kern/11080 fatal trap 18 while trying to mount inval o [1999/04/11] kern/11084 3.1-R kernel trap 12 with interrupts o [1999/04/13] bin/11119 NFS quotas fail to report if alternate fi o [1999/04/18] kern/11208 Complete system hang/freeze. No PANIC me o [1999/04/20] bin/11247 des 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/26] conf/11336 Broken data sent to printer through devic o [1999/04/28] kern/11366 Filesystem can cause hang/crash in certai o [1999/04/28] conf/11376 NFS mount may be happening too soon in /e o [1999/04/29] bin/11382 generated code using rpcgen with -b optio o [1999/04/29] kern/11385 PCNet/PCI Ethernet adapter works in 3.1-R o [1999/04/29] i386/11395 ghostscript5.50 does not print properly, o [1999/04/30] kern/11405 pwd_mkdb with no tmp space leads to kerne o [1999/05/02] i386/11454 mkdir() and chdir() doesn't check argumen o [1999/05/03] kern/11462 CS network interface driver (for CS89XX b o [1999/05/03] bin/11464 obrien union copies likely broken for alpha egcs o [1999/05/04] kern/11490 yokota VESA+VM86+Splash == unstable system o [1999/05/05] kern/11507 msmith CS89XX (i386/isa/if_cs.c) fails to proper o [1999/05/05] kern/11513 cannot mount CD-ROM: Device not configure o [1999/05/05] misc/11523 3.1-STABLE BRIDGE option does not work o [1999/05/05] misc/11525 dwmalone [PATCH] Networking patches to increase # o [1999/05/07] gnu/11562 tar verification doesn't work o [1999/05/07] kern/11563 pci_unmap_int doesn't do anything o [1999/05/12] i386/11664 lnc1 NIC fail to work o [1999/05/12] bin/11666 ypserv fails to reply host name resolutio f [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 f [1999/05/18] kern/11766 darrenr 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 f [1999/05/20] misc/11800 gibbs Problem with scsi AHA2940 and sony SDT-20 o [1999/05/20] i386/11801 Remounting CD on IDE CDROM after eject fa o [1999/05/21] kern/11821 /dev/fd0a hangs on large files, including o [1999/05/23] kern/11867 Sound driver loses interrupts, no sound o [1999/05/28] kern/11911 3.1-R : writing file larger than floppy s o [1999/05/28] kern/11915 access system call says file is readable o [1999/05/28] kern/11922 missing reentrant interfaces for getpwnam o [1999/05/29] kern/11928 kldload loads kernel modules even if ther 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. f [1999/06/02] i386/11991 fdisk does not assign slices to unused pa o [1999/06/02] bin/11992 /usr/src/sbin/mountd/mountd.c has '#ifdef o [1999/06/04] kern/12022 phk 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/09] kern/12104 Certain cdcontrol commands don't work pro o [1999/06/10] bin/12120 named crashes. o [1999/06/12] gnu/12175 obrien gdb crashes with pids > 32736 o [1999/06/13] bin/12191 wcol is trying to allocate a shared memor o [1999/06/16] bin/12242 segmentation fault running /usr/bin/fmt o [1999/06/16] kern/12247 userlevel program let kernel hang f [1999/06/17] kern/12262 pcm sound driver with SB16pnp does not ap o [1999/06/18] bin/12272 The ctype locales print an error message o [1999/06/18] kern/12274 cd mount problem o [1999/06/20] kern/12305 clock() ticks backwards o [1999/06/21] kern/12320 error 6: panic: cannot mount root (2) o [1999/06/22] bin/12349 des 3.2-R inetd doesn't re-read ALL configura s [1999/06/24] kern/12381 bde Bad scheduling in FreeBSD o [1999/06/25] conf/12387 CDROM boot failure on Thinpad 770X, 380ED o [1999/06/25] kern/12394 3.2-RELEASE, rl0 ethernet interface freez o [1999/06/28] kern/12434 signal 11 (core dumped) on mysqld when ma o [1999/06/30] kern/12464 bad reference in struct vm_zone o [1999/07/01] kern/12484 [PATCH] bpf_filter() broken f [1999/07/06] i386/12529 Linksys ether16 NE2000 compat. won't conf o [1999/07/06] bin/12538 getpwuid() NIS UID override fails o [1999/07/07] kern/12551 mks ASIC output is shifted following a short o [1999/07/07] docs/12557 nik There are no man pages for the widely use o [1999/07/09] misc/12577 Can't link code using catopen o [1999/07/13] kern/12632 Panic (trap 18) with Symbios SCSI control o [1999/07/14] misc/12640 Can use 2nd CD-ROM for fixit mode. o [1999/07/15] kern/12646 IGMP reports not sent if no multicast rou o [1999/07/18] kern/12703 tx0 truncates skip packets o [1999/07/20] bin/12727 billf Game patches from NetBSD o [1999/07/21] conf/12745 diffs to delay start of amd rwhod timed o o [1999/07/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/27] alpha/12832 alpha config -g creates broken Makefile in 3.2- o [1999/07/27] kern/12838 PC-Card ctlr(0) Vadem 365 support seems b o [1999/07/28] misc/12856 installworld over nfs broken (3.2S) o [1999/07/29] kern/12869 panic: softdep_flushfiles: looping o [1999/07/30] kern/12884 Hot to panic FreeBSD-3.2-Release o [1999/08/02] ports/12930 asami libtool create defuct makefiles if PREFIX o [1999/08/03] misc/12938 gethostbyaddr(209.201.116.19) - Bus error o [1999/08/04] kern/12979 Response time continually slows on idle m o [1999/08/05] kern/12991 system queue is cleared when a port or pi f [1999/08/06] kern/12996 ifconf in sys/net/if.c returns larger buf o [1999/08/07] conf/13013 Selecting CDROM as install media doesn't o [1999/08/08] misc/13027 sysinstall has no /dev entry for wfd0s4 ( f [1999/08/10] i386/13058 Installation hangs after commit o [1999/08/14] kern/13141 se Multiple LUN support in NCR driver is bro o [1999/08/15] kern/13150 panic: ufs_dirbad: bad dir o [1999/08/15] gnu/13172 Bug in workaround of russian locale & sor o [1999/08/16] kern/13180 panic: ffs_alloccg: map corrupted o [1999/08/17] kern/13198 panic: vm_fault: fault on nofault entry o [1999/08/17] gnu/13200 The assembler chokes on very long operand o [1999/08/18] kern/13234 .../netinet/ip_input.c should include opt o [1999/08/24] bin/13350 make clean in bsd.obj.mk no longer proper o [1999/08/25] misc/13378 Tecra 8000 hangs in UserConfig, cannot co o [1999/08/25] kern/13382 Only 1 parallel port supported if pps ena o [1999/08/26] kern/13405 syslogd get system hang o [1999/08/27] gnu/13427 obrien gdb reports wrong info o [1999/08/28] gnu/13438 objc forward core dump using system cc f [1999/08/29] i386/13452 changing to root device wd0s1a \n error 2 o [1999/08/29] bin/13463 /bin/sh does not handle interrupts correc o [1999/08/30] misc/13470 Old problem re-introduced: TCP sucket buf o [1999/09/01] kern/13517 hang system o [1999/09/05] kern/13587 Voxware MIXER_READ ioctl corrupts memory o [1999/09/06] kern/13593 Problems with FIFO and select o [1999/09/07] kern/13612 gibbs "Timedout SCB handled by another timeout" o [1999/09/07] kern/13630 system halts after npx0 detected on 3.2 i o [1999/09/07] kern/13632 Floppy hangs system o [1999/09/08] kern/13646 Kernel Trap error when booting 3.3-RC ker f [1999/09/09] i386/13655 sysmouse, signal 10 and XF86_S3 o [1999/09/10] bin/13679 ncurses-based programs eat 100% CPU after o [1999/09/10] bin/13691 fenner tcpslice cannot extract over 2GB part of o [1999/09/11] bin/13703 MCNP compilation problem o [1999/09/12] bin/13711 root fs not properly unmounted after shut o [1999/09/12] ports/13714 stb netatalk-1.4b2+asun2.1.3 fails chmod g+s o [1999/09/13] gnu/13729 strip(1) exits with an error on script fi o [1999/09/13] kern/13736 enabling NAT on 3.3RC results in panic sb o [1999/09/13] kern/13740 wrong IP statistics o [1999/09/15] kern/13757 wpaul tl0: adapter check: 180005 mesages keep c f [1999/09/15] i386/13765 memory problem: compilation of emacs dies o [1999/09/15] bin/13768 sh MAKEDEV cdN creates all cd(N-1)-device o [1999/09/16] conf/13775 multi-user boot may hang in NIS environme o [1999/09/16] conf/13785 jkh boot block/manager problem at installatio o [1999/09/17] i386/13787 lnc driver isn't really the lnc driver f [1999/09/18] i386/13811 ide cdrom stops recognizing audio cdroms o [1999/09/19] ports/13839 will kdegraphics11 'make PREFIX' fix, one comp f [1999/09/20] i386/13857 Problem with switching between processes o [1999/09/22] alpha/13912 alpha unaligned access Problem seems to be aff o [1999/09/23] misc/13920 pppd acts differently on 3.3-RELEASE ("mi o [1999/09/24] kern/13941 ncr0: SCSI phase error on GENERIC kernel o [1999/09/26] misc/13978 peter a write to last column bug appears since o [1999/09/26] bin/13980 Parameter expansion pattern removal bug i o [1999/09/27] kern/13997 phk RLIMIT_NPROC works unadequately for jails o [1999/09/28] kern/14026 Many network connections get left in the o [1999/09/28] kern/14033 Data acq process gets stuck in vmopar o [1999/09/30] kern/14060 3.3-STABLE on primary mail server panics o [1999/09/30] bin/14069 Buffer overflow in mail(1) o [1999/09/30] kern/14072 Rebooting in FreeBSD 3.3 wipes out known o [1999/10/02] kern/14096 parallel port -- ppi -- driver broken aft o [1999/10/03] bin/14102 make world -DWANT_AOUT fails in lib/compa o [1999/10/04] misc/14121 resurfaced bug in rmt preventing remote d o [1999/10/04] kern/14123 lnc driver is not working o [1999/10/04] i386/14135 lpt1 nolonger exists after 3.2-RELEASE o [1999/10/05] kern/14144 bad conversions in kern_fork() o [1999/10/07] misc/14178 FreeBSD 3.2 - Calls from CGI scripts, cro o [1999/10/07] kern/14183 grog bridge forwarding corrupted broadcast IP o [1999/10/10] bin/14250 dwmalone restore(8) can loop if tty goes away or w o [1999/10/10] misc/14254 [Fwd: clock(3) runs backwards! (fwd)] (fw o [1999/10/10] kern/14257 error 6: panic: cannot mount root (2) - d o [1999/10/12] i386/14282 Using FreeBSD 3.* ThinkPad 600E doesn't r o [1999/10/12] kern/14285 dillon NFS client appears to lose data f [1999/10/14] i386/14324 wst OR atapi drivers won't work o [1999/10/14] misc/14326 kerberos4 pam-related breakage in current o [1999/10/14] misc/14327 names used in netdb.h may conflict with n o [1999/10/14] i386/14334 imp AHA-1542A not supported by FreeBSD 3.x (" o [1999/10/15] kern/14354 grog vinum cannot compile for alpha o [1999/10/20] misc/14431 Network Interface Problem o [1999/10/20] bin/14444 enigma command can't decrypt files encryp o [1999/10/21] i386/14446 Doesn't boot on Mobile Celeron o [1999/10/25] bin/14524 markm PERL 5.005_03 Config.PM on 3.2-STABLE say o [1999/10/25] kern/14536 kernel panic on 64KB block size ufs files o [1999/10/26] kern/14546 SB128PCI work incorrect play wav-files un o [1999/10/26] kern/14549 mdodd 3C509 broken in 3.3 o [1999/10/27] kern/14566 yokota Non-kernel programs have little/no contro o [1999/10/31] bin/14626 gshapiro sendmail 8.9.3 bug with aliases in -CURRE o [1999/11/03] i386/14689 waitpid doesn't harvest child process whe o [1999/11/04] kern/14712 root has access to NFS mounted directorie o [1999/11/05] kern/14722 TCP connections hangs in FIN_WAIT_2 for > o [1999/11/05] bin/14729 murray when sysinstall is running as init it sho o [1999/11/07] bin/14782 ypbind can not bind to Solaris NIS master o [1999/11/10] misc/14811 getpwent is not enumerating all entries i o [1999/11/10] kern/14812 de0 driver malfunctions in full-duplex o [1999/11/11] ports/14826 obrien security/fwtk smapd calls sendmail with w o [1999/11/12] bin/14844 rwhod is remotely crashable o [1999/11/12] kern/14848 Frame Relay support, corrected a [1999/11/12] misc/14856 billf ftp stalls on FreeBSD 3.3 (CDROM) tested o [1999/11/14] kern/14890 ffs_valloc: dup alloc o [1999/11/15] misc/14895 portmap bug (when run with -v flag) o [1999/11/15] kern/14900 3.3-RELEASE panic in pmap_pte_quick() o [1999/11/16] kern/14917 grog DMA doesn't works with ALI ALADDIN M1543/ o [1999/11/16] bin/14920 install(1) hangs when intalling files sam o [1999/11/17] i386/14946 mjacob rmt - remote magtape protocol o [1999/11/17] kern/14962 PnP doesn't detect AWE64 when PnP modem i o [1999/11/17] misc/14964 Network Interface Configuration Problem a o [1999/11/18] bin/14978 lprm(1) does not kill active daemon if ho o [1999/11/19] kern/14997 NFSv3 open O_EXCL fails to set proper "at o [1999/11/19] i386/15003 mdodd 3C574 (ep0) reads bogus ethernet address o [1999/11/21] i386/15018 Printingproblem o [1999/11/22] bin/15046 obrien /sbin/dhclient-script ignores resolv.conf o [1999/11/23] bin/15070 vfprintf/cvt/__dtoa race condition in thr o [1999/11/24] i386/15074 Two different panics when running Linux b o [1999/11/24] kern/15075 Intel Etherexpress Pro timeouts when >1 c o [1999/11/24] kern/15086 Borked sscape drivers :) o [1999/11/25] kern/15087 3.3-STABLE panic while starting daemons ( o [1999/11/25] kern/15089 mmap of files from 2K-block device failed f [1999/11/26] ports/15107 green Patch for FreeBSD s/key support in OpenSS o [1999/11/26] misc/15109 problem printing graphic pages o [1999/11/27] ports/15123 rse www/apache13-modssl has PREFIX problems f o [1999/11/28] conf/15150 phantom Taking encoding scheme latin1 into accoun o [1999/11/30] misc/15190 crashing while in a multiplatform environ o [1999/12/01] kern/15204 systems panics when ktrace-ing o [1999/12/02] misc/15228 C++ exceptions+threads SIGABRTs. o [1999/12/02] kern/15235 dillon Race conditions in pipe_write causes kern o [1999/12/05] misc/15269 error server timeout downloading small fi o [1999/12/06] i386/15327 Unable to use ISA sound card with AD1816A o [1999/12/08] i386/15364 Flash Player 4 for Linux has no sound wit o [1999/12/11] kern/15420 3.3-RELEASE Kernel freeze o [1999/12/12] bin/15450 The name of the tagfile is left in the pa o [1999/12/13] bin/15471 kris Fix several buffer overflows o [1999/12/13] kern/15475 pppd(8) sets the Source Address field of o [1999/12/14] kern/15478 incorrect utmp/wtmp records update upon c o [1999/12/14] kern/15486 Attempt to write to a "write-prot" floppy o [1999/12/15] kern/15508 disk usage after "strip" is wrong o [1999/12/17] kern/15542 de suddenly stops working o [1999/12/17] ports/15543 hosokawa Samba + DHCP = UNKNOWN HOST NAME o [1999/12/17] i386/15548 Intel EtherExpress Pro/10+: Only 1024 byt o [1999/12/18] i386/15553 marcel Linux Emulation don't emulate accept(2) e o [1999/12/18] kern/15554 malloc fails in OMAGIC programs o [1999/12/20] bin/15581 ftp(1) file completion does not work if s o [1999/12/21] misc/15610 3.4-RELEASE installation hang on aic0 SCS o [1999/12/21] kern/15611 EIDE Large Disk Support, Newfs problem, F f [1999/12/22] i386/15631 3.4 won't install with IBM 37.5 gb disks o [1999/12/23] misc/15662 markm [PATCH] perl5 Sys::Hostname fails if no P o [1999/12/26] kern/15707 dillon bad trap in mprotect o [1999/12/29] conf/15766 My desktop display is too large, I can´t o [2000/01/01] kern/15825 dillon Softupdates gets behind, runs the system o [2000/01/01] bin/15829 peter cvs -C not_a_number core dumps o [2000/01/02] i386/15845 Driver for RealTek 8029 o [2000/01/03] misc/15869 3.4-STABLE-20000103 install fails to disk o [2000/01/03] kern/15870 small PicoBSD Kernel link fails o [2000/01/03] bin/15877 Perl 5.00503 interpreter crashes with a s o [2000/01/04] i386/15879 System hangs while watching the tv and ap o [2000/01/04] gnu/15892 NFS-exported ext2 file system makes Linux o [2000/01/04] i386/15897 Any fix for rpc.lockd on Free BSD 3.2 nfs o [2000/01/05] ports/15922 chuckr print/a2ps cannot find ogonkfied fonts [p o [2000/01/05] bin/15924 ndc restart don't preserve start options o [2000/01/07] i386/15961 System allows no keyboard input after flo o [2000/01/09] kern/16013 FreeBSD 3.3 sends ICMP reply to IP unicas o [2000/01/09] bin/16014 New cvs in -stable prints consistent erro o [2000/01/10] kern/16040 Read-only files under NFS are not seen as o [2000/01/11] misc/16068 FreeBSD 3.3 with IDE > 32GB causes Panic: o [2000/01/12] kern/16090 mdodd No buffer space available o [2000/01/13] misc/16102 root's home directory is too open o [2000/01/14] kern/16122 Incorrect SysV SHM segment accounting by o [2000/01/15] i386/16132 FreeBSD doesn't install on Notebook w/ Sy o [2000/01/17] misc/16154 modem ring kills freebsd o [2000/01/17] bin/16155 cp -p does not preserve modification time o [2000/01/17] i386/16164 "vga"/"sc" don't work when a video card i o [2000/01/18] kern/16171 mmap(2) of /dev/kmem cause kernel panic o [2000/01/18] bin/16186 [PATCH] Insecure use of strncpy() and str o [2000/01/18] misc/16197 Installation problems on IBM Thinkpad 365 o [2000/01/19] i386/16214 Driver for Intel EtherExpress 16 is unrel f [2000/01/20] misc/16238 e-bones has a Y2K bug o [2000/01/20] kern/16239 dillon NFS mount file system from multi-homed re o [2000/01/20] bin/16244 [PATCH] don't allow password re-use when o [2000/01/21] kern/16257 Kernel panic in sbdrop o [2000/01/21] i386/16269 smp dosen't work with >2 cpus on AMI Goli o [2000/01/21] bin/16271 vi has wrong len type in re_tag_conv() o [2000/01/22] kern/16299 nfs.ko can be unloaded when nfsd is runni o [2000/01/23] kern/16318 Fix for wrong interface when adding new r o [2000/01/23] alpha/16319 alpha No trailing newline in /usr/src/lib/libc/ o [2000/01/24] ports/16341 obrien Fix for minicom detecting modem status li o [2000/01/24] bin/16342 Problems with krb_realmofhost() and/or kr o [2000/01/24] ports/16343 reg bsd.port.mk cannot override make.conf. o [2000/01/25] i386/16349 Intel EtherExpress Pro/10+ card detection o [2000/01/25] bin/16353 rlogin encryption is broken on transmit s o [2000/01/27] ports/16396 reg libtool -export-symbols doesn't restrict f [2000/01/27] ports/16410 kris ssh and x forwarding problem o [2000/01/27] kern/16416 Hang on boot with SMP Dell 2400 o [2000/01/28] misc/16423 Installation problem of 3.4-RELEASE using o [2000/01/30] gnu/16481 Cpp crashes frequently o [2000/01/30] i386/16482 IDE disk fails on secondary IDE master de o [2000/02/06] kern/16515 Deadlock by ntpd o [2000/02/08] bin/16578 host-name field is hexadecimal instead of o [2000/02/08] conf/16586 net if down after fail during install o [2000/02/08] kern/16587 cg Can't record with newpcm & CS4236 (AW35/P o [2000/02/09] kern/16598 xmcd stopped by racd0c ioctl error while o [2000/02/09] kern/16605 samba 2.0.6 under 3.4-RELEASE can't open o [2000/02/09] ports/16621 marcel emulators/linux_base needs to be installe o [2000/02/10] kern/16644 Bad comparsion expression in bpf_filter.c o [2000/02/10] bin/16645 Inetd(8) internal ident won't work with m o [2000/02/18] bin/16812 level 0 dump runs forever -- generates a o [2000/02/18] kern/16816 vop_stdpoll() in /sys/kern/vfs_default.c o [2000/02/20] conf/16832 amd.map options won't play with Solaris N o [2000/02/20] kern/16849 Close on an ide tape drive hangs o [2000/02/20] misc/16860 suggetion on installation process. o [2000/02/21] conf/16879 tanimura Sound drivers seem to be using shared irq o [2000/02/21] ports/16882 obrien Memory leak with g++ 2.8.1 and STL 2.8.1. o [2000/02/22] bin/16920 cdcontrol fails under 4.0-20000214-CURREN o [2000/02/23] kern/16937 ie0 not probed in -current of 2000-02-18 o [2000/02/23] conf/16948 murray Sysinstall/disklabel: bad partition table o [2000/02/23] ports/16955 markm 'pgp5' built with ports/security/pgp5 doe o [2000/02/25] ports/16983 ache procmail port not prefix clean o [2000/02/25] misc/16991 jhb booting install disk and USB o [2000/02/27] kern/17033 Samsung SN-124 ATAPI CD-ROM not supported o [2000/02/28] bin/17056 rshd does improper home directory check o [2000/03/01] misc/17108 SecureRPC not supported in mount_nfs comm o [2000/03/01] conf/17117 Dial-up problems when using Kppp o [2000/03/02] bin/17134 problem with 3.0-RELEASE cron forgetting o [2000/03/03] kern/17142 4.0-CURRENT hangs in ex_isa_identify() wh o [2000/03/03] kern/17146 panic in devfs_open() while mounting devi o [2000/03/03] kern/17153 mjacob Qlogic Ultra3 cards seem to write very sl o [2000/03/05] kern/17208 3.4 Lock-up during file-completion o [2000/03/06] i386/17228 Installation floppies hang up on Compaq A o [2000/03/06] misc/17235 endless loop? harddrive corrupted? o [2000/03/06] ports/17237 hosokawa in samba suite smbclient -M worked incorr o [2000/03/10] misc/17310 NIS host name resolving may loop forever o [2000/03/11] ports/17313 ache wu-ftpd ports install invalid file owners o [2000/03/11] ports/17314 hosokawa in samba: testparm incorrectly generate w o [2000/03/12] bin/17338 netstat shows down counting UDP delivery o [2000/03/12] i386/17346 APIC cannot be enabled without turning on o [2000/03/13] bin/17360 kris [PATCH] Cleanup bug in pam_ssh o [2000/03/14] i386/17374 Archive QIC02 tape-unit device randomly h o [2000/03/14] kern/17375 yokota kldload/unload cycles with syscons screen o [2000/03/15] kern/17393 kldload syscall allows the same kernel mo o [2000/03/16] kern/17403 cg CS4232 wont play w/newpcm o [2000/03/16] conf/17406 nis in /etc/host.conf breaks network prog f [2000/03/16] misc/17409 4.0-RELEASE install fails on Compaq 1850R o [2000/03/16] alpha/17410 alpha Bad tag on Alpha boot floppies o [2000/03/16] kern/17422 bde 4.0-STABLE: top: nlist failed o [2000/03/16] i386/17423 System hangs then reboots o [2000/03/17] gnu/17433 libobjc locks mutex before deallocating i o [2000/03/17] misc/17435 There's no DES crypto distribution in 4.0 o [2000/03/17] kern/17439 sos 4.0-STABLE: mount of non-fixated CD-R -> o [2000/03/18] bin/17482 ftpd(8) forget to close TCP port in passi o [2000/03/18] kern/17483 Cannot run disklabel on virgin disk o [2000/03/19] kern/17494 Two problems with the tun device o [2000/03/19] kern/17499 grog Can't revive VINUM RAID5 o [2000/03/20] ports/17503 obrien lsof port doesn't build on FreeBSD 5.0 o [2000/03/20] kern/17504 ken Another Micropolis Synchronize Cache Prob f [2000/03/20] misc/17517 wpaul 100/10baseT card resets under load f [2000/03/21] i386/17526 PB of frequency heuristic in uipc_socket. o [2000/03/21] conf/17540 NIS host lookups cause NFS mounts to wedg o [2000/03/21] kern/17542 cg random static with GUS PnP o [2000/03/22] misc/17562 PAS16 sound cycles o [2000/03/23] misc/17567 make buildworld bombing at KerbIV o [2000/03/24] kern/17583 julian NETATALK code can corrupt mbuf free lists o [2000/03/24] misc/17584 groudier fatal SCSI error with a Symbios 53c875 co o [2000/03/24] kern/17592 sos ata READ/WRITE command timeouts o [2000/03/26] kern/17613 impossible to build FS KLD without kernel o [2000/03/27] i386/17626 green sshd cores when I scp to it o [2000/03/28] kern/17634 cg Non-deterministic PnP sound device config o [2000/03/28] kern/17636 FreeBSD 4 uses network card driver dc whe s [2000/03/28] alpha/17637 billf misconfigured syscons bell causes panic o o [2000/03/28] ports/17652 stb netatalk port modification for des/md5 ch o [2000/03/29] i386/17662 gibbs cam_xpt.c incorrectly disables tagged que o [2000/03/29] kern/17680 Multiple crashes due to load in 4.0/5.0 e o [2000/03/30] kern/17695 cg Vibra16X sound card doesn't record audio o [2000/03/30] kern/17697 Boot floppy+local ftp upgrade from 3.4/in o [2000/03/31] i386/17713 gibbs MAKEDEV and /stand/sysinstall goofups wit o [2000/03/31] kern/17715 io memory requests from pnp devices lands o [2000/04/01] kern/17738 reboot after panic: softdep_lock: locking o [2000/04/01] kern/17746 sos afd0 is accessed for no reason a couple o o [2000/04/02] i386/17755 FTP install of 4.0 allocates too few inod o [2000/04/02] kern/17757 deischen select returns 0 if pthread_kill'd w/ sig o [2000/04/02] i386/17761 disk label editor in 4.0 deleted 3.4 part o [2000/04/03] kern/17779 ADIC 1200d (DAT changer) and Symbios SCSI o [2000/04/04] i386/17800 bde [PATCH] problem with statclock initializa o [2000/04/06] kern/17829 The dc driver is seriously broken o [2000/04/06] misc/17832 Enlightenment gives Segmentation fault o [2000/04/06] alpha/17833 alpha dc driver for embedded ethernet on Miata a [2000/04/06] kern/17839 sos ad driver and SMP kernel panic (vinum may o [2000/04/07] bin/17841 ttyp0 (and only 0!) produces stdout input o [2000/04/07] kern/17842 Erratic user time reports for long runnin o [2000/04/07] bin/17843 ftpd fails to set cwd with mode 700 NFS m o [2000/04/07] kern/17844 Amd wedges every morning since I've upgra o [2000/04/08] kern/17863 Running DAP reboots computer o [2000/04/08] kern/17871 starting to accumulate undeletable direct o [2000/04/09] i386/17883 4.0-RELEASE panics during install. o [2000/04/09] i386/17890 sos Still having trouble identifying disk geo o [2000/04/10] kern/17895 stale unix domain connections o [2000/04/10] kern/17905 dillon 4.0-SNAP keep on crashing every 3 days o [2000/04/10] i386/17915 pcm0 direct DMA issues. o [2000/04/10] kern/17920 sos ata/ad driver HARD ERROR failure with int o [2000/04/10] kern/17923 cg SB16 ISA-PnP sometimes produces loud stat o [2000/04/11] i386/17926 yokota psm device problems with apm resume o [2000/04/11] i386/17930 wpaul Patch to MFC WaveLAN WEP into 3.4-STABLE o [2000/04/11] kern/17936 panic: resource_list_alloc: resource entr o [2000/04/11] i386/17940 Cannot recongize the scsi card AIC-7899 o [2000/04/12] kern/17961 n_hibma Fatal Trap 12. Page fault while in kernel o [2000/04/12] kern/17965 wpaul vr (MII-bus version in 4.0 ONLY) driver l o [2000/04/14] ports/18003 cwt amanda2.4's SCSI changer script (chg-chio o [2000/04/14] kern/18012 adrian vnode_free_list corruption, "free vnode i o [2000/04/15] kern/18024 when printing through gs: panic: lockmgr: o [2000/04/15] kern/18031 alpha system panics cpu_fork during AIO c o [2000/04/17] misc/18065 FREEBSD 4.0 crashes on boot Compaq Prolia o [2000/04/18] misc/18071 I cannot install Oracle 8i in FreeBSD 4.0 o [2000/04/19] i386/18089 4.0R install hangs on newfs or fsck o [2000/04/19] kern/18096 random crashes probably caused by lockmgr o [2000/04/20] kern/18110 DC-390 SCSI BIOS setting no effect and IB f [2000/04/20] kern/18113 Kernel panic while untarring a large arch o [2000/04/21] i386/18132 BTX dumps trying to boot w/ dedicated SCS o [2000/04/22] bin/18160 pppd does not hang up sometimes while sta o [2000/04/23] ports/18180 jmz xdm authorization fails with XDM-AUTHORIZ o [2000/04/23] bin/18181 Getty can fail to observe :de: specificat o [2000/04/23] i386/18185 gibbs Adaptec 3950U2 errors during boot/probe o [2000/04/24] kern/18200 mdodd 3com 3c509b recognized twice during boot o [2000/04/25] kern/18209 green rlimits are never checked in exec() if ex f [2000/04/25] i386/18212 4.0-RELEASE does not see all disk. o [2000/04/25] misc/18220 wosch Mailing list search date problems o [2000/04/25] bin/18221 DNS resolver can fail for large DNS respo f [2000/04/26] kern/18234 phk 4.0-CURRENT crashes when "make test" in p o [2000/04/27] kern/18252 sysctl -a causes panic o [2000/04/28] i386/18268 RTC BIOS error10 (memorysize) o [2000/04/28] kern/18270 [PATCH] kldunload "vn" doesn't clean up e o [2000/04/28] kern/18285 the system froze when use scon -s 50 f [2000/04/29] kern/18303 grog panic: vinvalbuf: dirty bufs o [2000/04/30] kern/18315 System hang when doing back-to-back captu o [2000/04/30] kern/18316 close-together bt848/878 captures to file o [2000/05/02] kern/18345 cg sbc / pcm not fully recognizing AWE64 o [2000/05/02] kern/18348 yokota kernel crash o [2000/05/18] kern/18650 panic when enabling linux with emu10k1 dr o [2000/05/19] gnu/18672 std::basic_string::c_str() o [2000/05/19] bin/18678 Bug in libz o [2000/05/19] kern/18687 mrouted and IPDIVERT cause a panic o [2000/05/20] kern/18704 GLOB_ERR not handled correctly by glob() o [2000/05/21] misc/18728 Audio and video desynch in Realplayer on s [2000/05/21] kern/18735 asmodai add support to Accton EN1217 network adap o [2000/05/22] bin/18742 times.allow field parsed incorrectly o [2000/05/22] kern/18751 if_dc doesn't autosense 100Mb mode o [2000/05/22] kern/18757 dg [PATCH] fxp driver doesn't enable flow co o [2000/05/22] kern/18763 kernel crashes when sysctl(3) is called o [2000/05/22] alpha/18768 wpaul Digital DE500-BA with "dc" driver doesn't f [2000/05/28] kern/18858 microuptime() errors even after disabling o [2000/05/28] misc/18860 Cannot write DATA record to /home/archive o [2000/05/29] kern/18869 4.0-Stable SMP kernel from 22. May unstab o [2000/05/29] kern/18875 arpintr() problem o [2000/05/30] kern/18899 if_vr.c can't bridging properly when bpf o [2000/05/30] bin/18903 pkg_add deleted its own database o [2000/05/31] kern/18924 sysctl hw.bt848 crashes machine (bktr dri o [2000/05/31] conf/18925 No X Desktop Environments in 4.0 o [2000/05/31] misc/18927 jwd Missing tools in release/scripts/src-inst o [2000/05/31] gnu/18930 obrien Fix mktemp() problem with libg2c o [2000/05/31] kern/18932 Total loss of ethernet needing reboot. P o [2000/06/01] i386/18940 Reading from stdin using linux-jdk-1.2.2 o [2000/06/02] kern/18980 ATAPI Drive boots Install CD but then say o [2000/06/03] i386/18981 3.4 CDROM fails to boot on Dell PowerEdge f [2000/06/04] kern/19009 Mounting bad CD-ROM causes crash o [2000/06/05] kern/19020 kernel reboots sometimes o [2000/06/05] misc/19025 Installer assumes /dev exists if target d f [2000/06/06] conf/19080 murray sysinstall's use of host.conf prevents ft o [2000/06/07] ports/19093 obrien problem with mail/muttzilla o [2000/06/08] kern/19121 IPv4 multicast does not work without rout o [2000/06/08] misc/19125 Undefined symbol `_poll' referenced from o [2000/06/12] kern/19219 le driver causes kernel panic during ifco o [2000/06/12] bin/19231 quota/mount commands inconsistency o [2000/06/12] ports/19232 ports port name changed and being updated o [2000/06/13] ports/19238 will sgmltools1 o [2000/06/13] i386/19245 -fexpensive-optimizations buggy (even wit o [2000/06/14] kern/19256 in devicedriver cy.c make_dev (..) probl o [2000/06/14] ports/19281 billf Error in ucd-snmp port with tkmib o [2000/06/16] kern/19347 top, CPU and SMP-problem in new kernel o [2000/06/17] bin/19357 swap info incorrect after using sysinstal o [2000/06/18] kern/19363 Do allow processes know about their file o [2000/06/19] bin/19375 makekey accepts only 8-byte password o [2000/06/19] misc/19376 ncurses alters buffering of stdin/stdout o [2000/06/19] kern/19389 Panic caused by sendfile(2) o [2000/06/19] bin/19393 programs using strftime () dump core if R o [2000/06/20] kern/19402 Signals 127 and 128 cannot be detected in o [2000/06/20] bin/19405 telnetd sends DO AUTHENTICATION even if a o [2000/06/20] kern/19407 Panic running linux binary on ext2fs o [2000/06/23] conf/19461 X authentication doesn't work off the CD o [2000/06/23] kern/19465 SYNC_CHACHE PROBREM: NEWTECH NDA20128A o [2000/06/23] kern/19479 processes stuck in 'ffsvgt' and 'FFS no' o [2000/06/23] kern/19482 Upgrade from 4.0-RELEASE to 4.0-STABLE ca o [2000/06/24] kern/19488 Bug in 4.0-STABLE (acting as a Bridging f o [2000/06/25] kern/19499 EtherExpress 16 is not probed o [2000/06/25] i386/19508 pci bus not probed for pci ethernet card o [2000/06/25] i386/19512 get problem in compile gcc-2.7.2.3 o [2000/06/26] ports/19518 jkoshy xli-1.17.0 fillscreen option paints white o [2000/06/27] conf/19542 Problem with Proxy o [2000/06/27] misc/19548 DES in 3.5-RELEASE allows trailing charac o [2000/06/27] misc/19557 Denying more than 10 ports with an 'open' a [2000/06/28] ports/19561 andreas Ghostscript 6 in ports refuses to build o [2000/06/28] conf/19569 stock IPFW rules have subtle udp hole o [2000/06/30] kern/19603 luigi 20 ethernet interfaces not compatible wit o [2000/06/30] docs/19604 steve Web query interface doesn't search or Ori o [2000/06/30] bin/19606 Telnet & Telnetd coredump when disabling o [2000/06/30] kern/19612 cg SBLive produces 75% static and 25% actual f [2000/06/30] kern/19614 johan missing blowfish in current kernel tree ( f [2000/06/30] kern/19615 cannot build current kernel (30-june-2000 f [2000/06/30] kern/19616 current kernel build failes on miibus o [2000/07/02] misc/19646 Level 0 dump takes way longer than it sho o [2000/07/02] kern/19654 wpaul 20 dc ports in one machine (5x 4port card o [2000/07/03] i386/19662 kernel panic after too many socket freed o [2000/07/03] kern/19672 dillon contigmalloc1() oddity for large alignmen o [2000/07/03] misc/19673 obrien dhclient-script will not always set the h o [2000/07/04] ports/19699 jmz pgperl-2.16 fails to build o [2000/07/04] misc/19703 sos HTP366 ATA66 lockup with Fast ATA66 Drive o [2000/07/05] ports/19711 asami bsd.port.mk and autoconf are conflict o [2000/07/05] kern/19714 dillon swap_pager_getswapspace: failed a [2000/07/05] misc/19718 n_hibma Power on failed, IOERROR when usb initial o [2000/07/06] i386/19737 Cannot build a profiled kernel; load fail o [2000/07/07] bin/19773 [PATCH] telnet infinite loop depending on a [2000/07/08] bin/19783 marcel make installworld dependencies wrong o [2000/07/08] bin/19789 sos [PATCH] msinfo reports incorrect data for o [2000/07/09] kern/19814 marcel Oracle8i installer triggers problem in th o [2000/07/10] i386/19820 Installation of Lotus Notes 5.0 for Linux a [2000/07/11] misc/19845 hm Creatix PnP ISDN card conflicts with 2nd o [2000/07/12] kern/19875 A new protocol family, PF_IPOPTION, to ha o [2000/07/12] kern/19880 Problem with configuring RS-232 multiport o [2000/07/13] misc/19909 dillon Problem with NFS client in 4.0-STABLE o [2000/07/14] bin/19935 obrien tcsh doesn't seem to pass control charcte o [2000/07/14] kern/19938 sos IDE tape drive (ast0) timeout too quick o [2000/07/15] bin/19946 possible bug in sh(1) with -p flag (privi o [2000/07/15] misc/19951 jmz moused has problems with XFree86 o [2000/07/16] ports/19967 obrien Update port: sysutils/lsof o [2000/07/17] bin/19978 will /usr/bin/make segfaults w/o Makefile for o [2000/07/17] misc/19994 sscanf() fails on 64-bit operations o [2000/07/17] kern/20001 small PicoBSD kernels fail to compile o [2000/07/18] kern/20016 pthreads: Cannot set scheduling timer/Can o [2000/07/18] docs/20028 doc ASCII docs should reflect tags f [2000/07/19] kern/20035 sos Kernal Panik when try to install FreeBSD o [2000/07/19] kern/20040 msmith Toshiba 2775 hangs after pcib0 driver is o [2000/07/21] kern/20086 imp The procedure in UPDATING misses install o [2000/07/22] kern/20115 cg pcm0 doesnot work on Panasonic Let's note o [2000/07/23] docs/20117 doc *printf manpage doesn't document %n o [2000/07/24] ports/20156 dirk 1.6.2.2 has some nasty bugs o [2000/07/25] misc/20172 byacc 1.9 fails to generate $default tran o [2000/07/26] bin/20194 amd doesn't provide directories automatic o [2000/07/27] misc/20210 4.1-RC crashes o [2000/07/27] kern/20217 avalon IPF default block and inclusion in rc.net o [2000/07/27] bin/20220 unable to Ctrl-C (quit) when using "more" o [2000/07/27] kern/20234 green panic(): lockmgr: pid 259, not exclusive o [2000/07/28] alpha/20248 alpha DEFPA FDDI on alpha panics system o [2000/07/28] kern/20256 phk microuptime went backwards message keeps o [2000/07/28] bin/20259 des fetch(1) confused when redirected from ht o [2000/07/28] conf/20272 jkh Missing subdirs in the src/usr.sbin src p o [2000/07/28] kern/20273 dillon swap o [2000/07/29] conf/20282 murray sysinstall does not recover some /etc fil o [2000/07/29] kern/20288 o [2000/07/30] kern/20299 f [2000/07/31] kern/20335 yokota S3Trio64V+ is detected as CGA by syscons o [2000/08/01] kern/20340 cg SNDCTL_DSP_GETODELAY on pcm device is inc o [2000/08/02] kern/20361 In in.c:in_addmulti, missing splx when if o [2000/08/02] bin/20372 ftp login incorrect when s/key active but a [2000/08/02] bin/20373 obrien Setting breakpoints in shared objects bro o [2000/08/03] kern/20382 sos Panic when trying to mount non-fixated CD o [2000/08/03] ports/20392 ports Fixed new port: Perl5 data debugging tool o [2000/08/04] ports/20401 ports lang/erlang skips the build of crypto.app o [2000/08/04] i386/20403 sos ata(4) UDMA4 mode does not work on i810 m o [2000/08/07] bin/20454 imp pccardd looses track of available I/O spa o [2000/08/08] ports/20490 tg Termios timeout parameters, VMIN, VTIME, o [2000/08/09] ports/20503 sheldonh apache w/ mod_perl segfaults on 'use IO;' f [2000/08/09] i386/20507 yokota Mouse freezes in 4.0-release after some u f [2000/08/09] i386/20513 obrien Installation (over internet) does not wor o [2000/08/10] kern/20523 Support for PCI multiport cards for sio d o [2000/08/10] misc/20530 asmodai CMSG_DATA requires additional header file o [2000/08/11] ports/20554 ports java/perltools: New port o [2000/08/12] ports/20564 ports [PATCH] nethack-gtk md5 correction, typo o [2000/08/13] kern/20572 marcel cannot safely remove COMPAT_43 from the k o [2000/08/13] ports/20581 ports current cdrecord port fails to install o [2000/08/14] bin/20591 src/usr.bin/file/MAINT & README & file.1 s [2000/08/14] ports/20607 ports plugger fails to build f [2000/08/14] gnu/20608 Problem by 'make world' from update 4.0-R o [2000/08/14] kern/20609 dillon panic: vm_fault: fault on nofault entry, o [2000/08/15] kern/20619 arpintr o [2000/08/15] kern/20631 kernel panics on ifconfig if_le f [2000/08/15] kern/20632 stacking mount_null causes an error: moun o [2000/08/15] bin/20633 jhb fdisk doesn't handle LBA correctly o [2000/08/16] bin/20646 dwmalone [PATCH] /bin/cp -p whines on set[ug]id im o [2000/08/16] ports/20656 dec Update port: net/gated (fix ports/19988) o [2000/08/16] ports/20663 andreas MD5 checksum mismatches for ports/databas o [2000/08/16] ports/20668 ports new port: databases/db3 (Berkeley DB rev. o [2000/08/17] ports/20679 ports Port of Tcpview-1.0 o [2000/08/17] ports/20680 ports ports that don't have man pages with NO_I f [2000/08/17] i386/20685 fbsd 4.1-stable crashed when compiling st o [2000/08/17] misc/20687 murray FTP Install thru http proxy jumps to extr f [2000/08/17] kern/20689 groudier Newbusified version of ncr driver does no o [2000/08/18] ports/20705 ports xwave port fails to build o [2000/08/18] gnu/20707 obrien /usr/libexec/cpp doesn't support -undef f o [2000/08/18] kern/20708 imp Adaptec 1542 ISA SCSI Controller not dete o [2000/08/18] ports/20711 cwt amanda doesn't like the output from its c o [2000/08/20] bin/20725 Raw floppy writes fail for partial bytes. o [2000/08/20] ports/20727 ports new port: databases/db3 (Berkeley DB revi o [2000/08/20] kern/20734 n_hibma USB mouse detaches and never reataches o [2000/08/21] ports/20759 ports new port: databases/db3 o [2000/08/21] ports/20762 ports o [2000/08/21] kern/20765 imp Crash in bdgtakeifaces when performing kl o [2000/08/22] bin/20779 assar junk pointer error causes kpasswd to fail o [2000/08/22] kern/20783 hm patch to use IPACv1.2 with o [2000/08/22] kern/20785 changing IP address on an interface may n o [2000/08/23] misc/20796 After "Waiting 15 seconds for SCSI device o [2000/08/24] ports/20819 ports XFMail 1.4.0 dumps core w/signal 6 when c o [2000/08/24] ports/20822 jmz [PATCH] PAM support broken in XDM o [2000/08/24] ports/20831 torstenb Autoconf Port: Bug introduced by patch-ag f [2000/08/25] i386/20833 On first boot, filesystem failed, startup o [2000/08/25] gnu/20835 markm Errno.pm is lost in perl system o [2000/08/25] misc/20838 Please check PR bin/15830: PATCH: rdump o o [2000/08/25] kern/20842 dillon NFS client ignores read-only file setting a [2000/08/25] misc/20843 murray 4.1-R: install crashes when ftp-ing via H o [2000/08/25] ports/20850 ports security/portsentry patch o [2000/08/26] ports/20856 ports portsentry o [2000/08/26] misc/20861 jasone libc_r does not honor socket timeouts o [2000/08/26] misc/20865 murray Installation auto default 50 MB root not o [2000/08/28] ports/20905 ports new port: www/oops o [2000/08/28] gnu/20912 obrien gdb does not recognise old executables. o [2000/08/28] ports/20913 ports ports not linking against -ljpeg o [2000/08/29] kern/20924 sos ata0-slave doesn't show up o [2000/08/29] i386/20925 doscmd(1) does not truncate a file int wr o [2000/08/29] kern/20933 sos ATAPI ZIP drive allows mounted disks to b o [2000/08/30] bin/20952 ftpd doesn't honor account expiration tim o [2000/08/31] kern/20958 mdodd ep0 lockup with ifconfig showing OACTIVE f [2000/08/31] i386/20973 Probing error-------cannot install o [2000/08/31] docs/20976 wosch "Web" mailing list search interface repor o [2000/09/01] ports/20986 reg Mozilla M17 installs incorrectly o [2000/09/02] ports/21002 stb setiathome port has problems under clean o [2000/09/03] ports/21014 will [PATCH] Fix for kdelibs2 PLIST o [2000/09/03] ports/21015 will [PATCH] Fix for kdebase2 PLIST a [2000/09/04] kern/21028 sheldonh Add Zoom V90 Internal modem support o [2000/09/04] ports/21054 jseger guile does not build on CURRENT o [2000/09/04] ports/21055 ports popper3 dumps core o [2000/09/06] kern/21073 cg PCM sound driver silently accepts imprope o [2000/09/06] bin/21078 wpaul rtsol does not work on USB interface aue0 o [2000/09/06] i386/21087 tanimura ed driver incorrectly fails probe for ISA o [2000/09/07] misc/21089 vi silently corrupt open file on SIGINT w o [2000/09/07] ports/21095 ports MASTER_SITES_GNU are semi-broken [PATCH] o [2000/09/08] ports/21116 ports vmware2 does not compile on -current o [2000/09/08] kern/21118 luigi Multiple problems in ipfw's stateful code f [2000/09/08] ports/21126 ports httpd warnings regarding attempts to free o [2000/09/08] kern/21131 Floppy causing cold boot in -STABLE o [2000/09/08] kern/21132 setting kern.hostid to 2887705710 fails. o [2000/09/08] bin/21133 sail driver dies o [2000/09/08] kern/21139 IBM DNES drives need 'quirk table' entry. o [2000/09/09] kern/21143 `#define schedsofttty' et al. should not o [2000/09/09] ports/21146 green [patch] openssh with LOGIN_CAP don't setu f [2000/09/09] misc/21150 ru 'make includes' clobbers some headers o [2000/09/09] bin/21152 @monthly entry in crontab is run every da o [2000/09/09] kern/21155 Load average (either with uptime both top o [2000/09/10] kern/21162 panic in ffs_softdep.c: handle_workitem_f o [2000/09/10] kern/21173 cg pcm "panic: no feed" with Creative SB AWE o [2000/09/10] kern/21175 ISA DMA channels 4-7 operate on wrong mem o [2000/09/11] bin/21208 tar does not support 2.5 GB file o [2000/09/11] kern/21209 groudier scsi ncr driver installs instead of scsi o [2000/09/11] ports/21210 dima acroread port missing lib o [2000/09/13] alpha/21247 alpha edquota fails with alignment error a [2000/09/13] bin/21248 kris openssl dumps core with blank passwords o [2000/09/13] bin/21251 NIS problem - ypbind does loop in CLNT_BR o [2000/09/13] misc/21252 dhclient opens too many files o [2000/09/14] gnu/21260 buffer overrun in uux o [2000/09/14] ports/21263 jseger Cannot use ImageMagick o [2000/09/14] ports/21264 markm tn3270 port receives segmentation fault s [2000/09/14] bin/21268 [MFC] user set no nobody is not good o [2000/09/14] kern/21270 Kernel compilation errors and dies when c o [2000/09/14] gnu/21276 libI77 is unable to handle files >2Gbytes o [2000/09/15] ports/21289 ports qpopauth doesn't work(qpopper ports) o [2000/09/15] bin/21292 ifconfig warn but does duplicate IP addre f [2000/09/15] kern/21294 des linprocfs:/proc/stat & /proc//stat d o [2000/09/15] i386/21297 kernel panic TRAP 18 during kern.flp inst o [2000/09/15] misc/21300 Install CD-ROMs don't give users enough r o [2000/09/15] kern/21304 wpaul dc0 watchdog timeouts on NetGear FA310TX o [2000/09/15] kern/21305 roger bktr driver dosn't send signals in contin o [2000/09/16] ports/21306 ports New ports: GB2JIS, a tool to convert GB t o [2000/09/16] ports/21319 ports ports submission - wmx10 o [2000/09/16] ports/21320 ports ports submission - wmusic o [2000/09/16] ports/21322 ports ports/mbone/rat update to support newpcm o [2000/09/17] misc/21328 Should newer version of OS-BS be on CDROM o [2000/09/17] ports/21330 ports Update port: mbone/rat for newpcm mixer a o [2000/09/18] ports/21355 ports evg port fails to run - syntax error in a o [2000/09/18] ports/21360 ports kaffe port's PLIST file is inaccurate o [2000/09/18] kern/21363 cg Panic in pcm/channel.c when running RealP o [2000/09/18] bin/21375 obrien [PATCH] dhclient runs away on interface r o [2000/09/18] misc/21384 pcm driver has static in recorded audio o [2000/09/18] ports/21386 ports compile fails on -current o [2000/09/19] kern/21400 ata driver stealing IRQ15 on Compaq Proli o [2000/09/19] misc/21406 freebsd's bootinst or booteasy overwrites o [2000/09/20] ports/21416 ports Patch-ab for port emulators/xmame refer t o [2000/09/20] ports/21417 ports ports/news/trn/pkg/PLIST misses bin/inews o [2000/09/20] kern/21424 Blocking issue while regenerating aliases o [2000/09/20] i386/21427 g++ barfs on anonymous i386 sigjmp_buf st o [2000/09/20] kern/21429 box reboots with panic: pipeinit: cannot o [2000/09/20] gnu/21433 g++ optimiser produces bad code on right o [2000/09/20] ports/21437 ports port update to correct mail/exmh2 support o [2000/09/21] ports/21448 ports msql2d.sh doesn't start the daemon o [2000/09/21] misc/21451 [PATCH] Release/Sysinstall documentation: o [2000/09/21] kern/21461 ISA PnP resource allocator problem o [2000/09/21] kern/21463 marcel Linux compatability mode should not allow o [2000/09/21] ports/21464 marcel linux_base port installs insecure glibc r o [2000/09/22] ports/21486 ports fetchmail KPOP does not work o [2000/09/23] ports/21508 ports Re: FIX: devel/pcre to install a working o [2000/09/25] bin/21537 killall -HUP inetd ignores changes to /et o [2000/09/25] conf/21540 installworld panics for diskless clients o [2000/09/25] ports/21548 ports libcoro.a (ports) should use MAP_STACK wh o [2000/09/25] docs/21550 doc Some documents on Softupdates are not yet o [2000/09/25] ports/21554 ports linux_base-6.1 incorrectly enables NIS by o [2000/09/26] i386/21559 rnordier BTX loader sometime show registers o [2000/09/26] kern/21565 Profiling Timer Expired messages with 4.1 o [2000/09/26] kern/21582 rndcontrol -s 21 returns invalid argument o [2000/09/26] misc/21583 CVS pserver - login succeeds but checkout o [2000/09/27] conf/21593 Whither cons25, or, cons25 causing intero o [2000/09/27] bin/21603 green Can't change user passwords on 4.1.1-STAB o [2000/09/27] bin/21605 will make(1) lacks :C/// variable modifier (pa o [2000/09/28] i386/21624 trap in gusc_attach o [2000/09/28] kern/21625 kernel hangs if SC_NO_FONT_LOADING define o [2000/09/28] kern/21631 4.1.1 Release and Stable don't detect my o [2000/09/28] bin/21637 [telnet] No address associated with hostn o [2000/09/28] kern/21642 Compaq Netelligent 10/100 card (TI Thunde o [2000/09/29] kern/21647 unable to boot 4.1-STABLE- with 4GB of RA o [2000/09/29] ports/21656 ports PGP6 port based on pgp-6.5.8 f [2000/09/29] bin/21658 obrien The combination of dhclient & WinNT serve o [2000/09/30] pending/21660gnats-admincrontab mishandles day range o [2000/10/01] kern/21674 Fujitsu MO drives M2513A don't like the s o [2000/10/01] kern/21676 CDROM drive not recognised during install o [2000/10/01] kern/21686 3ware twe driver not working properly wit o [2000/10/01] kern/21688 Kernel crash with Adaptec AAA-133 and ahc o [2000/10/02] conf/21694 Multi network interface will not be work o [2000/10/02] misc/21701 Keymap selection menu broken on initial i 982 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- a [1995/01/11] i386/105 bde Distributed libm (msun) has non-standard s [1995/05/13] bin/401 Add REMOTE_* variables s [1995/06/15] bin/517 Bad group change with 'install' s [1995/08/07] bin/658 ifconfig alias has to be separately given s [1995/09/26] kern/742 syslog errors accessing Mac hard disks [p o [1995/10/03] kern/765 asmodai umount -f can`t umount a NFS filesystem i s [1995/11/20] kern/831 one minor complaint about the kernel visu a [1995/11/30] bin/854 swapinfo shows incorrect information for a [1996/01/30] bin/981 fenner clnt_broadcast() is not aware of aliases s [1996/03/20] bin/1093 route's diagnostic is weird a [1996/07/07] bin/1375 eivind Extraneous warning from mv(1) [PATCH] s [1996/09/08] bin/1589 msmith [PATCH] ftp fails to flush output o [1996/09/14] gnu/1611 phk groff should use "system-wide" papersize s [1996/10/13] misc/1791 tegge syslimits.h does not allow overriding def o [1996/10/20] bin/1849 obrien gdb sets library breakpoints on the wrong o [1996/10/24] bin/1881 obrien file(1) misidentifies Sun3/m68k executabl s [1996/11/04] gnu/1961 [PATCH] uucp logging files are in /var/sp s [1996/11/22] bin/2090 clients may bind to FreeBSD ypserv refusi s [1996/12/02] bin/2137 vm statistics are bad s [1996/12/14] bin/2216 obrien [PATCH] Ada specs not being compiled into a [1996/12/21] bin/2265 guido su(1) does not call skeyaccess() o [1996/12/24] kern/2273 dufault support for POSIX.4 / POSIX.1a RT-schedul s [1996/12/27] kern/2298 Support for DSR/DCD swapping on serial po a [1996/12/27] misc/2302 brandon new crypt() including SHS and an extendab o [1997/01/10] bin/2442 davidn setusershell()/endusershell() missing o [1997/01/28] bin/2603 dufault Added POSIX.4/POSIX.1b constants in unist 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/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/2865 peter NFS client hangs on umount, ls, df when N o [1997/03/06] bin/2898 fenner arp -a -n buglet o [1997/03/10] bin/2934 sh(1) has problems with $ENV o [1997/03/10] bin/2938 hoek Add -b, -l, and -f options to du(1) o [1997/03/31] gnu/3157 obrien Patches to gas and gdb to support MMX ext o [1997/04/07] bin/3221 rpc.rusersd : can't communicate with SunO o [1997/04/07] misc/3225 [PATCH] uucpd.c should normalize host nam o [1997/04/08] misc/3237 marcel 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/29] bin/3416 ibcs emulation problems a [1997/05/08] gnu/3552 the -L option of tar does not work proper o [1997/05/12] kern/3584 luigi cleanup TCP_REASS macro in tcp_input.c o [1997/05/16] bin/3608 Telnet in linemode will break apart long o [1997/06/02] bin/3762 dufault Bogus return values from rtprio(1) f [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/15] kern/3879 peter Can't export mounted ext2fs via NFS o [1997/06/18] kern/3901 Multicast for Intel 10/100 Ethernet Card o [1997/06/19] misc/3912 ctags(1) cannot trace some macro correctl o [1997/06/24] kern/3944 if_le doesnt receive ether multicast pack o [1997/06/25] kern/3948 nonworking t/tcp server side o [1997/06/26] i386/3962 sos print disk internal cache size during pro o [1997/06/27] kern/3968 Hardware probes die on Peak SBCs. o [1997/07/07] kern/4051 pppd connect 'chat ...' broken o [1997/07/18] bin/4116 davidn Kerberized login as .root fails to o [1997/07/23] kern/4153 New tcp initial send sequence number code s [1997/07/24] bin/4157 [PATCH] netstat atalk output should print o [1997/07/26] bin/4172 des 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/07] kern/4243 file locking doesn't work for pipe 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/29] kern/4413 No way to unmount a floppy that goes bad o [1997/08/29] bin/4419 sheldonh man can display the same man page twice o [1997/08/29] bin/4420 roberto 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 jdp dlopen is not available from static execu o [1997/09/13] kern/4528 processes hang if the mount_portal proces o [1997/09/14] bin/4545 f77 will only call `cc', no com-line opti s [1997/09/15] i386/4547 luigi asc.c and pcaudio.c should use selrecord o [1997/09/16] misc/4556 will make can't build executable from single F o [1997/09/21] kern/4597 Patch to pass NPX status word in signal c f [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/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 imp 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/08] bin/4975 quotaon while server very busy causes loc o [1997/11/10] kern/4997 DDB_UNATTENDED doesn't always work o [1997/11/11] kern/5009 ibcs2 emulation o [1997/11/11] kern/5011 rndcontrol -s 8 causes kernel panic o [1997/11/13] bin/5031 lpr does not remove original file if -s i o [1997/11/14] kern/5048 dillon 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 dillon pmap_release panics with 'freeing held pa o [1997/11/20] kern/5110 dillon kernel crash & core in pmap_testbit durin o [1997/11/23] bin/5134 cdcontrol will eject a mounted CDROM s [1997/11/28] bin/5173 [PATCH] restore ought to deal with root s s [1997/11/30] i386/5182 bde [PATCH] A patch support high speed serial s [1997/12/11] kern/5275 dillon [PATCH] Added volume (barcode) support to s [1997/12/14] bin/5296 slattach fails creating pidfile with ioct o [1997/12/22] kern/5362 peter mount incorrectly reports / as an NFS exp f [1997/12/30] i386/5398 dillon silo overflows running o [1998/01/02] bin/5410 phantom pkg_info options s [1998/01/03] bin/5419 [PATCH] timed rejects valid networks with f [1998/01/08] kern/5429 Ethernet collision during file transfers s [1998/01/08] bin/5444 [PATCH] ypserv uses wrong dns lookup orde o [1998/01/11] bin/5483 Login(1) clears utmp entry o [1998/01/15] kern/5502 nfsd process usage doesn't get accounted o [1998/01/18] kern/5517 Recursive NULLFS mount causes ufs_ihashge s [1998/01/20] misc/5531 [SUBMISSION] new library function abs2rel s [1998/01/20] kern/5532 [PATCH] Dropped packet counts are inaccur o [1998/01/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 o [1998/02/06] kern/5672 dillon Crash from scsi aborted command 'Overlapp o [1998/02/09] kern/5689 phk sysctl vm.vmmeter - bogus and unsupported o [1998/02/10] bin/5712 /bin/chio code cleaup and option added 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/17] kern/5768 Shutdown aborts syncing, when sync isn't o [1998/02/18] i386/5784 ibcs2 emulation not handling ioctl(..FION o [1998/02/19] kern/5795 Panic: "bremfree: removing a buffer when o [1998/02/20] misc/5803 "tab" function from "ee" not compatible w s [1998/02/25] misc/5855 /etc/services is out of date with IANA o [1998/02/26] bin/5857 non-functional lpr/lpr o [1998/02/26] kern/5863 Kernel support for sorted SHUTDOWN & SHUT o [1998/03/01] bin/5880 df -t does not support devfs o [1998/03/02] bin/5901 new version of `fmt' o [1998/03/03] bin/5912 kinit exits if no user name specified o [1998/03/06] kern/5931 dma errors in syslog with GUS-max o [1998/03/06] i386/5932 perfmon kernel code should check for non- o [1998/03/11] gnu/5982 no error exit code from tar on child fail o [1998/03/13] bin/6000 kadmin ank uses bad default expiration of o [1998/03/15] bin/6015 indent(1) breaks source with backslash ne o [1998/03/16] kern/6032 poor TCP performance using FDDI over long o [1998/03/22] gnu/6107 obrien gdb should support PRINTF_HAS_LONG_LONG o [1998/03/28] bin/6156 Patches to make dump understand ENOSPC f [1998/03/28] bin/6161 assar 2.2.6 kerberos servers are awfully visibl o [1998/03/31] bin/6183 quota hangups o [1998/03/31] kern/6184 No error if resulting file pos in lseek i o [1998/04/01] bin/6187 peter mounting nfs directories with -b can caus o [1998/04/03] bin/6202 No way to detect removable media. o [1998/04/04] kern/6213 peter NFS-mounted swap (via vnconfig) easily cr o [1998/04/06] bin/6234 ypserv -d is broken o [1998/04/14] kern/6296 IP_HDRINCL sockets force header fields to a [1998/04/14] kern/6299 vmstat -i does not show PnP device interr s [1998/04/15] bin/6314 [PATCH] /usr/sbin/ac modification o [1998/04/16] kern/6318 pppd does not update wtmp on hangup o [1998/04/16] misc/6320 Sometimes nohup isn't good enough. o [1998/04/17] bin/6332 bde /usr/include/time.h doesn't compile with o [1998/04/17] gnu/6338 Gnu tar not working properly with the -G o [1998/04/18] conf/6346 Kernel version strings need to relate to f [1998/04/20] bin/6359 routed does sent router discovry solicita a [1998/04/27] kern/6432 IFF_NOARP does not affect ethernet interf o [1998/05/03] kern/6495 Need pci_unmap_mem and pci_unmap_port rou s [1998/05/05] bin/6521 nbm [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/11] i386/6595 Old IP address persistent after change o [1998/05/12] misc/6612 hoek 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/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/6769 peter panic: nfs rcvunlock s [1998/05/29] kern/6781 [PATCH] exabyte changer doesn't grok LUNs s [1998/05/29] bin/6785 place for all the default dump flags o [1998/06/01] kern/6820 cd9660_mount NULL pointer deref for no CD o [1998/06/06] kern/6874 accounting prevents transition to multi u o [1998/06/13] misc/6936 phk sysinstall: install from MS-DOS MO divece o [1998/06/18] kern/6981 CD unmount w/o CD in drive can cause pani o [1998/06/22] bin/7022 asami changes to bsd.port.mk to accompany PR bi o [1998/06/22] bin/7023 asami bsd.port.(%|subdir.).mk patches for size f [1998/06/23] i386/7031 Our RocketPort port does not support DEVF s [1998/06/24] kern/7044 [PATCH] WaveLAN (2.4G, ISA, full-length b o [1998/06/25] docs/7065 wosch FreeBSD webpages -> applications, port br s [1998/06/28] i386/7100 integrate pcvt configuration into the /et s [1998/07/01] bin/7136 kerberized telnetd doesn't use gettytab % f [1998/07/02] kern/7146 imp The PCCARD doesnt recognize cards in top s [1998/07/08] kern/7210 [PATCH] od(4) bug fixes and enhancements, s [1998/07/10] misc/7232 murray Suggestion for FreeBSD installation dialo o [1998/07/10] kern/7234 yokota keyboard problems during login immediatel o [1998/07/12] bin/7265 A warning flag is added to ln(1). o [1998/07/13] ports/7268 asami MASTER_SITE_OVERRIDE works more better o [1998/07/14] kern/7282 some old and rarely used drivers have app o [1998/07/15] bin/7287 Incorrect domain name for MAP_UPDATE in m o [1998/07/16] bin/7298 Improvements to ln(1). a [1998/07/19] bin/7324 wosch Suggestions for minor modifications to ad f [1998/07/23] kern/7377 we have a new digiboard driver supporting a [1998/07/31] docs/7456 doc dialog(3) man page outdated f [1998/08/12] kern/7589 Tulip Driver parses SROM contents wrong f [1998/08/13] conf/7606 [PATCH] NIS Makefile.dist: NOPUSH replace s [1998/08/18] bin/7669 libalias does not IRC DCC packets under c o [1998/08/19] gnu/7687 description of default baud rate for cu c o [1998/08/20] kern/7693 Misleading warning in cblock_alloc_cblock o [1998/08/22] kern/7722 Changes to acct format o [1998/08/23] bin/7728 ftpd processes hang o [1998/08/27] bin/7753 arp command fails silently on invalid pro o [1998/08/28] misc/7771 Debugging putenv/getenv o [1998/09/02] i386/7816 dfr [Patch] NE2000 PnP card IDs to sys/i386/i 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/08] bin/7860 Extra option to pr(1). s [1998/09/08] bin/7868 [almost patch]Morse Code Fixups o [1998/09/11] bin/7895 multiple identical NFS mounts accepted o [1998/09/16] misc/7946 ccdconfig gives confusing error when give o [1998/09/17] bin/7962 /usr/bin/ee prompts "save changes" when f o [1998/09/18] bin/7973 lpd: Bad control file owner in case of re o [1998/09/19] kern/7990 patch - teach kernel about RB_POWEROFF fl o [1998/09/20] bin/7998 jkh pkg_add seems to have unneeded umask o [1998/09/20] misc/8005 yokota Keyboard freezes going from KDE to text m s [1998/09/21] kern/8015 nbm [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/03] misc/8133 markm [patch] bug in telnetd (Kerberos IV) o [1998/10/03] misc/8139 [patch] missing /usr/src/share/examples/d f [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] kern/8349 [PATCH] Changer definition for SureStore o [1998/10/19] kern/8376 CLOCK_VIRTUAL not implemented o [1998/10/19] misc/8378 Is termcap not maintained enough ? o [1998/10/22] kern/8420 __getcwd() from an (forcibly) unmounted f o [1998/10/24] misc/8434 boot.flp /bin/init crashes during probe w o [1998/10/24] i386/8436 boot.flp sysinstall crashes when probing o [1998/10/24] bin/8438 ex/vi: Error: tcsetattr: Interrupted syst o [1998/10/27] i386/8474 repquota does not pick up NIS information o [1998/10/28] bin/8479 Final \'s in /etc/exports did not work in o [1998/10/30] kern/8498 Race condition between unp_gc() and accep o [1998/11/03] bin/8553 /usr/libexec/mail.local doesn't handle "> 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/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/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/27] i386/8867 murray /stand/sysinstall core dumps (signal 11) o [1998/11/30] bin/8913 negative time values for csh 'time' built o [1998/12/01] kern/8925 options kern file needs AWE_DEFAULT_MEM_S o [1998/12/08] bin/9012 route add -host hostIP -interface localIP o [1998/12/15] kern/9092 DELF raid volumes cause panics under CAM f [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/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/22] bin/9176 dillon placemark to split mount_ufs out of mount o [1998/12/24] bin/9188 telnet gets stuck in ttydrain() f [1998/12/28] misc/9220 nvi: catalog: mistake in Russian error me o [1998/12/29] bin/9233 gmp's mpq_add and mpq_sub are buggy 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 f [1999/01/07] bin/9374 roberto Improved functionality for find(1) o [1999/01/08] conf/9388 obrien magic(5) correction for wordperfect o [1999/01/08] kern/9392 Alternate system clock OR kernel stats cl o [1999/01/13] kern/9474 "comcontrol rescan 0:8:0" hangs, causes o o [1999/01/14] bin/9494 new option to prevent mail from sending m o [1999/01/16] bin/9529 ftp filname completion can't handle space o [1999/01/19] kern/9570 dfr ed(4) irq config enhancement o [1999/01/19] bin/9573 ksrvtgt not working o [1999/01/20] kern/9590 Clean up for -Wall warnings o [1999/01/21] kern/9611 MFS calculates the size incorrectly when o [1999/01/22] kern/9619 Restarting mountd kills existing mounts o [1999/01/25] kern/9679 fix for uninterruptible open in portal fi o [1999/01/25] kern/9689 panic in sbdrop(kern/uipc_socket2.c) o [1999/01/26] bin/9711 Fails: cd /usr/bin; gzip file ; mv file. o [1999/01/27] i386/9721 Patch for FreeBSD netboot (booting via DO o [1999/01/28] kern/9748 error in queue handling of at_shutdown() o [1999/01/28] bin/9770 kris An openpty(3) auxiliary program o [1999/01/29] i386/9777 luigi Generic AD1816 sound suport in Luigi's pc o [1999/01/30] kern/9791 enhancement for netinet/ip_icmp.c to cont o [1999/01/30] ports/9792 msmith pib coredumps in port maker mode o [1999/01/31] ports/9840 asami patch allows ports to fetch their sources o [1999/02/01] bin/9868 Patch to add "date -a" o [1999/02/01] kern/9869 When using macros out of function, they s o [1999/02/01] conf/9874 idle-timeout facilities in /etc/login.con o [1999/02/03] bin/9902 error in german (and some other) locale s o [1999/02/08] bin/9972 groff always built for US (letter) sized o [1999/02/09] i386/9991 new driver for National Instruments GPIB o [1999/02/11] bin/10030 markm Kerberized telnet fails to encrypt when a o [1999/02/16] kern/10116 sos acd driver patch to support PD/CD drive. o [1999/02/19] bin/10158 Reference to ncheck in quot(8) o [1999/02/19] kern/10160 kldload of umap module panics the system o [1999/02/20] kern/10175 Bridging support incomplete for some netc f [1999/02/21] ports/10178 kris USE_SOCKS=YES option broken for security/ a [1999/02/23] misc/10231 inet_addr() doesn't check for illegal val o [1999/02/25] docs/10240 wosch We need a script which check if our web m f [1999/02/26] bin/10274 will make does not understand "lib(obj)" synta o [1999/02/26] bin/10283 Race condition in rc.network o [1999/03/01] docs/10349 phantom For long .Dt fields, rendering is broken- o [1999/03/02] misc/10351 /usr/share/examples/worm is out of date o [1999/03/02] bin/10358 ftp(1) has problems with long pathnames f [1999/03/05] ports/10396 asami SPIN is in the wrong category o [1999/03/06] kern/10440 Discard device does not set ifq_maxlen o [1999/03/06] bin/10444 avoiding lost mail when mail filesystem i o [1999/03/06] ports/10454 obrien Update: emulators/spim a [1999/03/06] kern/10455 pcaudio breakage f [1999/03/07] i386/10465 mdodd Must disable ex0 to install. o [1999/03/12] kern/10563 QIC 40/80 tape drive ft present in versio o [1999/03/13] kern/10574 3.1-stable kernel reports k6 cpu as "\^E" o [1999/03/14] conf/10582 marcel Makefile.upgrade fails with make -j o [1999/03/14] misc/10589 Incorrect assumptions in /etc/security o [1999/03/15] bin/10601 wosch Ownership of symlinks copied by adduser a 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/17] kern/10641 Default sync rate in ncr SCSI driver is s o [1999/03/18] kern/10663 hpscan doesn't like 3.1's pt device o [1999/03/18] misc/10667 murray Sysinstall inserts multiple # -- sysinsta o [1999/03/19] gnu/10670 cvs doesn't allow digits in local keyword o [1999/03/19] kern/10673 wpaul Non-ASCII chars on serial console with Re o [1999/03/19] kern/10678 Printing problems using ppc bus o [1999/03/19] ports/10682 asami List mirror sites in MASTER_SITE_BACKUP - o [1999/03/23] kern/10755 de driver says `invalid EESPROM checksum' o [1999/03/25] bin/10793 cvs update modification time check granul o [1999/03/26] misc/10803 joe whois(1) client enchancements a [1999/03/26] misc/10804 joe whois(1) enhancement o [1999/03/26] kern/10812 LINT configuration MAXDSIZ/DFLDSIZ mislea o [1999/03/27] bin/10825 daily script not executed or executed twi o [1999/03/29] bin/10856 vty's from ttyvc - ttvf (maybe more?) do o [1999/03/30] bin/10868 BUG in /usr/bin/calendar o [1999/03/30] misc/10871 wst0 fails with Sony SuperStation streami o [1999/03/31] kern/10894 wrong error message in svctcp_create() o [1999/04/01] gnu/10910 obrien Integration of Objective C patches into g o [1999/04/02] bin/10924 Extensions to biff(1) o [1999/04/03] bin/10931 biff b o [1999/04/06] bin/10980 With ctags -x no space is left between na o [1999/04/07] docs/10997 doc Problem with query-pr-summary.cgi o [1999/04/08] kern/11020 popen does not honor ISO 9899 syntax o [1999/04/08] bin/11036 markm Perl does not honor -DNOMAN o [1999/04/08] bin/11037 Gencat doesn't properly handle \ddd octal o [1999/04/09] ports/11048 obrien variable not initialized in fwtk-lib lead o [1999/04/09] misc/11052 [PATCH] performance bug fix to fgets() ro o [1999/04/10] conf/11058 Recent change to rc script causes hang on o [1999/04/11] bin/11085 Per-host configuration for syslog.conf o [1999/04/11] bin/11092 readlink(1) from OpenBSD o [1999/04/11] bin/11094 lastlogin.8 from NetBSD o [1999/04/13] misc/11111 Error opening terminal: su o [1999/04/13] bin/11114 will make(1) does not work as documented with o [1999/04/13] misc/11126 vt100 termcap entry appears broken o [1999/04/14] ports/11134 hoek existense of /usr/obj/usr/ports/shells/ba o [1999/04/16] i386/11165 IBCS2 don't work correctly with PID_MAX 9 a [1999/04/16] bin/11168 davidn pw(8) usermod does not recognize -w flag o [1999/04/18] bin/11205 Suggestion: move mt(1) to /bin 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/23] kern/11293 brian FreeBSD's PPP implementation of LQM appea o [1999/04/23] bin/11294 direct logging to other hosts (no local s o [1999/04/27] bin/11360 Allow specification of "search" in resolv o [1999/04/28] kern/11365 plip in Linux mode has trouble with some o [1999/04/29] bin/11387 mount_cd9660 doesn't show rockridge filen o [1999/04/29] bin/11399 Calendar doesn't always handle 'last' day o [1999/04/30] kern/11416 code typo in sequencer.c: "if (!processed o [1999/05/02] misc/11448 Better looking VGA font for iso2 o [1999/05/03] misc/11478 assar Non-functional AFS support in KerberosIV o [1999/05/06] misc/11553 /usr/share/misc/latin1 (new file submissi o [1999/05/09] bin/11608 vnconfig not supporting swap-backed vn de o [1999/05/09] bin/11609 vnconfig -v reports page numbers, not byt s [1999/05/09] ports/11611 billf Update port: net/ntop o [1999/05/10] bin/11623 quot uses 32-bit integers for its calcula o [1999/05/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] kern/11676 PCIless kernel will not compile with ATAP o [1999/05/13] i386/11683 olpt/nlpt name change not in man pages o [1999/05/13] misc/11689 Change "netstat" mode in daily "status-ne o [1999/05/17] bin/11746 Add support for Solaris mailboxes o [1999/05/18] kern/11765 performance bug: network devices fxp & de o [1999/05/18] misc/11767 sppp does not implement VJ compression o [1999/05/19] kern/11789 ELF machine definition missing for ARM o [1999/05/21] bin/11818 Added a feature to ping(8) o [1999/05/21] i386/11829 Boot Failure (Register Dump) with MFSroot o [1999/05/22] misc/11838 xwindows configuration problem o [1999/05/26] bin/11896 cap_mkdb dumps core when non-files passe o [1999/05/26] i386/11898 Connot wirte to floppy on HP OB800CT with o [1999/05/26] bin/11900 Sed(1) fails with MALLOC_OPTIONS set to ' o [1999/05/28] bin/11914 wosch makewhatis during installworld uses /usr/ o [1999/05/29] bin/11929 symorder doesn't work on elf format objec o [1999/05/29] kern/11941 FreeBSD box reboots itself when changing o [1999/05/30] kern/11945 tape problems on -stable, mt bl(ocksize), o [1999/05/31] kern/11968 kldload should call module entry point be o [1999/06/01] i386/11979 Vaio 505DX touchpad not detected as Glide o [1999/06/01] kern/11981 brian access to tunN devices not allowed to non o [1999/06/02] conf/11989 pppd(8) output misplaced o [1999/06/03] kern/12014 Fix SysV Semaphore handling o [1999/06/06] gnu/12046 markm Perl subsystem does not install all tutor a [1999/06/06] bin/12052 sh type builtin appends first path compon o [1999/06/07] kern/12071 [PATCH] large scale IP aliasing o [1999/06/08] i386/12088 Enhancement to ed driver for Linksys 10/1 o [1999/06/09] kern/12095 [PATCH] Buggy ATAPI Zip Drive is not dete o [1999/06/09] bin/12107 Add switch to dump to support multiple du o [1999/06/10] i386/12113 ESS1688 support for VoxWare sound driver o [1999/06/10] bin/12115 pppd reports wrong connected duration wit o [1999/06/15] misc/12228 phantom /etc/security don't search in all the fil o [1999/06/16] gnu/12238 bc 1.04 crashes with long formula typed i o [1999/06/16] bin/12244 realpath() fails when there is no permiss o [1999/06/17] bin/12263 hoek "more" problems with long filenames o [1999/06/18] bin/12280 jdp LD_IGNORE_MISSING_OBJECTS not honored for o [1999/06/18] kern/12281 active-filter option in pppd doesn't stop o [1999/06/20] bin/12308 LPD can't be told not to bind to a TCP po o [1999/06/21] conf/12324 jkh Sysinstall's fdisk partition editor is mi o [1999/06/21] ports/12325 asami Adds refetch functionallity to bsd.port.m o [1999/06/21] i386/12326 wdc flag 0x1000 (LBA addressing) prevents o [1999/06/21] kern/12333 ProAudio Spectrum sound card broken model o [1999/06/21] kern/12334 Some ProAudio SPectrum cards do not do DM o [1999/06/21] kern/12335 if_pn.c lacks bridging support; patch enc o [1999/06/22] bin/12357 [PATCH] allow route to create "proxy only s [1999/06/23] bin/12358 ken Patch: "camcontrol help" should go to std o [1999/06/24] i386/12383 make release warns about /dev entries mak o [1999/06/26] bin/12398 fsck in free(): warning: pointer to wrong o [1999/06/27] bin/12421 sysinstall label fails o [1999/06/28] conf/12432 empty amd_flags causes start failure in r 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 a [1999/07/05] ports/12518 will new port: mail/ifmail-os o [1999/07/05] bin/12528 [PATCH] tip's "tipout" child doesn't alwa o [1999/07/06] kern/12543 dg [PATCH] cumulative error counters for fxp o [1999/07/07] bin/12545 kldload(8) should be more sensitive to er o [1999/07/08] ports/12566 billf a guide to pyrotechnics o [1999/07/12] kern/12609 At boottime NFS mounts on a 3.2 client fr f [1999/07/12] misc/12612 ncurses ash shipped with 3.2-R missing sy o [1999/07/13] misc/12633 CMI8330 chip based integrated sound card o [1999/07/15] kern/12655 Kernel config file needs more commenting o [1999/07/16] kern/12668 The kernel clock goes slow with PLIP devi o [1999/07/18] kern/12697 Out of swap handling [PATCH] o [1999/07/20] bin/12712 release/Makefile: mounting /some/dir with o [1999/07/20] kern/12723 imp Unnecessary use of magic numbers in F_[SG o [1999/07/22] kern/12764 luigi Patch for using x11amp with voxware (stol o [1999/07/22] misc/12765 cable problem: link down for de0 NICs. o [1999/07/23] misc/12776 Add PAM hooks to rlogind and rshd f [1999/07/23] bin/12782 roberto xntpd doesn't handle interface aliases pr o [1999/07/24] bin/12789 Confusing error msg when dumping a filesy s [1999/07/25] bin/12801 sheldonh nvi infinite recursion with options "left o [1999/07/25] bin/12806 `sh -e' doesn't parse multi-command lines o [1999/07/28] kern/12855 panic:softdep_flushfiles:looping, caused o [1999/07/30] misc/12887 Problem with "top" command in SMP o [1999/07/30] misc/12888 strange kernel messages when copying file o [1999/07/31] bin/12898 Added a command-line switch to netstat to o [1999/08/03] bin/12939 add flag to quota to suppress NFS quota c o [1999/08/03] bin/12942 m4: len(`') returns `' a [1999/08/03] kern/12943 dg fxp driver not completely compatible with o [1999/08/04] ports/12952 asami make _PORT_USE touch cookies by variable, o [1999/08/04] bin/12957 rpc.rusersd dumps core with signal 11 whe f [1999/08/04] bin/12962 des basename(3) and dirname(3) part 2 o [1999/08/04] kern/12966 receiver lockups in vr0 driver o [1999/08/05] bin/12982 last does not support -y option. o [1999/08/05] misc/12983 system hang accessing mounted msdos flopp o [1999/08/05] i386/12993 gibbs "ahc0: Data Parity Error Detected during o [1999/08/07] conf/13016 gshapiro Wrong sendmail.cf file used by mergemaste o [1999/08/07] docs/13020 mpp Manpage capitalization o [1999/08/08] misc/13036 de doesn't work with DEC 21143 based PCI o [1999/08/09] bin/13042 will make doesn't handle wildcards in subdirec o [1999/08/09] bin/13043 minigzip -c option support. o [1999/08/09] i386/13051 after installation on system using COM1, o [1999/08/10] kern/13062 lnc ethernet xmit underflow problem o [1999/08/11] bin/13068 billf Don't stamp out score files! o [1999/08/11] bin/13072 billf Extensions to biff(1) o [1999/08/11] bin/13073 billf Extensions to mesg(1) o [1999/08/11] docs/13079 dwhite new man page describing timeradd() family o [1999/08/11] kern/13082 dfr Improved support for NE2000 PnP cards o [1999/08/12] bin/13108 authunix_create_default includes egid twi o [1999/08/13] docs/13116 phantom typo in ms(7) o [1999/08/13] bin/13128 billf pkg_delete doesn't handle absolute pathna o [1999/08/15] kern/13161 alfred mounting on top of a mounted file system o [1999/08/15] kern/13164 kthread_exit stops, but doesn't release p o [1999/08/16] misc/13185 "tengo problemas con el pop3" o [1999/08/18] docs/13218 mpp Many manpages still not conformed mdoc(7) o [1999/08/18] kern/13220 mkdep: compile failed - ../../pci/if_de.c o [1999/08/18] kern/13232 panic("rtfree"); when sending bootp reque s [1999/08/19] kern/13252 niced jobs don't behave really nice o [1999/08/19] bin/13254 yp_all error messages have wrong text o [1999/08/20] misc/13266 Removal of #defines and addition of const o [1999/08/20] bin/13278 rogue: killed by fire corrupts score file o [1999/08/21] bin/13309 Fixes to nos-tun o [1999/08/22] misc/13326 additional timeval interfaces for 512MB o [1999/09/22] ports/13898 obrien New port: misc/dictd o [1999/09/23] conf/13918 Termcap entries for VESA modes missing a [1999/09/23] gnu/13921 sheldonh awk -v var=val coredump o [1999/09/23] kern/13924 sb/snd driver broken under 4.0-19990918-C o [1999/09/24] i386/13936 murray No clear indictaion of how much space to o [1999/09/25] docs/13950 doc webpage idea o [1999/09/25] docs/13967 doc FreeBSD Related Publications in Korea o [1999/09/26] kern/13979 [PATCH] add serial number to IDE HD probe o [1999/09/26] gnu/13989 SIGWINCH corrupts the display of a multil o [1999/09/27] kern/14006 pas2_pcm.c pcm playback problem, with fix o [1999/09/29] bin/14040 amd has wrong uname data compile in it o [1999/09/30] i386/14048 ``doscmd -r'' doesn't work o [1999/10/01] ports/14077 dec Multicast not available on multicast enab o [1999/10/01] bin/14078 -stable 'make release' does not work on - f [1999/10/01] kern/14083 gibbs CAM 3.3-RELEASE fails boot w/2940UW + non o [1999/10/04] docs/14129 phantom gated(8) and htable(8) as referenced in r o [1999/10/05] bin/14142 gshapiro sendmail: mci.c: bad pointer conversion i o [1999/10/06] docs/14158 doc md5(1) manpage should not claim the md5 a o [1999/10/06] docs/14165 nbm FDP introduction article o [1999/10/06] kern/14166 roger AVER TVPhone o [1999/10/07] bin/14175 route for ip aliasing o [1999/10/07] ports/14182 asami Patch: bsd.port.mk: add plist target o [1999/10/08] kern/14217 [PATCH] EXT2FS as a KLD o [1999/10/09] ports/14225 markm Patches for security/pgp5 o [1999/10/09] kern/14240 compilation error: __cmpdi2 unresolved o [1999/10/09] bin/14246 kvm_open and kvm_openfiles not works corr o [1999/10/10] bin/14255 rup and rusers could not deal with many h o [1999/10/11] misc/14258 IP_TOS and IP_TTL sockopt doesn't work on a [1999/10/11] ports/14260 jkoshy new port: www/woda - A Web Oriented Datab o [1999/10/11] misc/14263 phantom There ara no ukrainian locale in stable/c o [1999/10/11] misc/14273 Somewhat bogus entry in termcap o [1999/10/13] ports/14316 markm exmh not recognizing mh and uses too many o [1999/10/13] bin/14318 jkh sysinstall upon install has some counter- o [1999/10/14] ports/14323 markm [PATCH] ports/security/pgp5: Invoked with o [1999/10/14] bin/14330 peter [PATCH] fix clash between /usr/src/contri o [1999/10/14] bin/14335 peter Manual page for ndc gives incorrect path o [1999/10/15] kern/14346 imp Both pccard/cardinfo.h and sys/memrange.h o [1999/10/15] kern/14350 Security enhancement to ICMP o [1999/10/15] kern/14355 perhaps a guard page needed for UP-mode k o [1999/10/15] kern/14356 grog vinum and ``some processes would not die; o [1999/10/16] bin/14361 locate bogusly converts to network byte o o [1999/10/17] kern/14380 [PATCH] if_de workaround for when BIOS do o [1999/10/18] i386/14396 Floppy install of 3.2-release, 3.3-releas o [1999/10/21] bin/14448 ftp-client may not recognize failure, rep o [1999/10/23] misc/14488 kget doesn´t write the key word "enable" o [1999/10/25] misc/14511 chapss Y2K problem o [1999/10/25] docs/14530 phantom Printed manual pages have extraneous blan o [1999/10/25] bin/14533 imp pccardd improperly assigns irqs o [1999/10/26] bin/14545 quota reports in K, but header says 'bloc a [1999/10/27] kern/14561 ken ioctl (fd, CDIOCEJECT, (void*) 0) doesn't s [1999/10/27] kern/14562 ken ioctl() codes should be provided for ejec o [1999/10/27] docs/14565 doc ioctl() codes for device type `fd' (flopp o [1999/10/27] i386/14574 ISA based ESS1688 support(partially) for o [1999/10/28] kern/14584 Proposition for improved file permissions o [1999/10/29] misc/14599 pam_kerberosIV.so in the 'krb.??' package o [1999/10/29] kern/14602 struct utsname fields are allocated too s o [1999/10/31] kern/14639 convert proc.p_peers to a queue(3) LIST a [1999/11/01] ports/14643 sada new port: chinese/pydict - A Chinese/Engl o [1999/11/01] kern/14646 kern.boottime affected by APM suspend/res o [1999/11/01] bin/14648 markm `make world' now requires -DNOCRYPT in my o [1999/11/02] gnu/14664 tar checks for volno-file even if it shou o [1999/11/02] docs/14677 chris listing of (48) utilities in /bin:/sbin:/ a [1999/11/03] docs/14682 marko lprm(1) unaware of lp(1) Environment Vari o [1999/11/03] bin/14697 grog Exploitable buffer overflow in Vinum (Fre o [1999/11/04] conf/14714 phantom Need support for imap4 and pop3 in /etc/p o [1999/11/06] misc/14746 xf86config shell script leaves arrow keys o [1999/11/08] ports/14783 jmz mgetty 1.1.12 always sets clocal o [1999/11/08] bin/14786 dwmalone [PATCH] tail breaks on large files o [1999/11/08] conf/14791 Optionally change the behaviour of fsck u o [1999/11/08] i386/14793 more fdisk partition types o [1999/11/09] i386/14800 FreeBSD BootMgr not configurable (or at l o [1999/11/10] conf/14810 [PATCH] initialising multiple interfaces a [1999/11/10] bin/14817 strptime(3) '%C' conversion incorrect o [1999/11/11] ports/14824 wosch no '\0' at the end of buffer o [1999/11/11] bin/14829 rc.shutdown is handled unconsistently by o [1999/11/12] kern/14839 RELENG_2_2 boot kernel is large size prob o [1999/11/12] kern/14840 Opti930 doesn't work. o [1999/11/12] kern/14841 adrian IEEE 802 encapsulation for arp on etherne o [1999/11/12] ports/14854 peter port comms/conserver partially ignores ${ o [1999/11/13] conf/14864 I can not get dual Boot to boot FreeBSD f o [1999/11/14] i386/14891 New smbus driver lmsmb a [1999/11/16] ports/14924 markm p5-Apache-Radius with mod_perl broken on o [1999/11/16] bin/14925 getsubopt isn't poisonous enough o [1999/11/16] conf/14931 rc logging facility f [1999/11/16] ports/14933 imp Simple patch to log password attempts on o [1999/11/17] bin/14954 search.h is missing o [1999/11/17] ports/14965 wosch stat port doesn't know fifo file type o [1999/11/17] kern/14968 wollman Convert resource_head and resource.r_link o [1999/11/17] ports/14970 peter conserver-7.4 port submission o [1999/11/18] conf/14973 Digi-multiport serial card? f [1999/11/18] conf/14974 jhb In RELENG_3, fdisk reports sizes incorrec o [1999/11/18] ports/14977 peter conserver doesn't support speed over than f [1999/11/18] ports/14991 ports new port: devel/tcl-trf - Tcl Data transf o [1999/11/19] misc/14993 Freebsd Locks up when trying to set the h o [1999/11/19] misc/14999 phantom ISO8859-5 locale missing from RELENG_3 o [1999/11/19] misc/15000 ftp(1) needs to send HTTP/1.1 Host: heade o [1999/11/20] conf/15010 "client" firewall configuration kills inc o [1999/11/21] ports/15021 asami some port installs fail for non-root user o [1999/11/21] kern/15022 jkh Suggestion for enhancement: move isp firm o [1999/11/21] conf/15038 jkh In sysinstall, easy to not notice that se o [1999/11/23] kern/15065 fsck can't fix "huge" zero length files o [1999/11/25] kern/15095 TCP's advertised window is not scaled imm o [1999/11/27] i386/15119 pcm sound driver dma problems with isa-pn o [1999/11/28] ports/15142 jmz Added DIST_SUBDIR to print/tex port o [1999/11/29] misc/15168 Adding tracklist support to fdformat o [1999/11/29] kern/15175 tcp_input() fails to update m->m_pkthdr.l o [1999/11/30] bin/15182 "* Wed-1 event" in calendar produces "31 o [1999/11/30] misc/15196 shutdown -h no longer synching disks, thu o [1999/12/01] misc/15205 billf Addition to /usr/games/random o [1999/12/01] misc/15215 Outputting in Fortune under certain circu o [1999/12/02] i386/15218 kernel says: raw partition size != slice o [1999/12/02] bin/15227 gshapiro New option for vacation(1) -- dir to use o [1999/12/02] bin/15229 joe mtree - different from mtree in NetBSD 1. o [1999/12/03] ports/15239 asami fix MASTER_SITE_GNOME in bsd.port.mk: mi o [1999/12/05] kern/15280 kernel panic during FreeBSD install o [1999/12/06] bin/15301 Bug in /usr/sbin/syslogd: strips 8th bits o [1999/12/06] misc/15304 billf proposed modifications to pkg_version o [1999/12/07] ports/15329 cwt amanda24 modification o [1999/12/07] misc/15339 fdformat should exit non-zero when user c o [1999/12/09] ports/15387 billf ethereal's packet-smb.c calls str*() func o [1999/12/09] bin/15390 obrien Upgrade rdist to 6.1.5 o [1999/12/10] bin/15410 edquota -p copies current usage as well a o [1999/12/11] bin/15416 addr2line is unable to find line numbers o [1999/12/11] bin/15418 tput(1) doesn't work with new libncurses. o [1999/12/11] misc/15421 initgroups(3) spits out messages to stder o [1999/12/12] kern/15435 Attempts to execute programs from a noexe o [1999/12/12] kern/15436 syscons extension: "propellers" o [1999/12/12] kern/15455 dg Intel EtherExpress Pro does not properly o [1999/12/13] bin/15456 Usage of ktrace(1) is invalid a [1999/12/13] bin/15458 sort(1) doesn't sort correctly in some ca o [1999/12/13] bin/15470 Proposed change to comments in /etc/named o [1999/12/14] ports/15477 ports wwwstat-2.01 port is not Y2K compliant: 1 o [1999/12/14] misc/15480 Change-request for /usr/src/usr.sbin/cdco o [1999/12/14] kern/15489 running fstat causes a bus error o [1999/12/15] kern/15492 Patch to fixup bridging support for 2.2-S o [1999/12/15] kern/15493 Patch to enable bridging support for if_c o [1999/12/15] ports/15495 asami Add "addsum" target to bsd.port.mk o [1999/12/15] bin/15496 killall(1) limited to 16 character proces o [1999/12/15] bin/15497 NIS does not deal well with comments o [1999/12/15] bin/15510 df(1) does not lineup with large filesyst o [1999/12/15] kern/15511 Cannot scroll up after panic? o [1999/12/17] i386/15528 doscmd exec function fail. o [1999/12/17] i386/15531 doscmd DOS function 0a fail when DL is 0 o [1999/12/17] kern/15532 Reboot just to kill a print job? o [1999/12/17] misc/15546 Need to enable LBA flag for large IDE dis o [1999/12/17] i386/15547 discmd function 51 ( get ps ) fail o [1999/12/18] misc/15555 some enhancements for uudecode o [1999/12/20] bin/15593 [SECURITY] ustrcpy() buffer overflow in d o [1999/12/20] ports/15594 will kscd-1.2.7 in -STABLE ports not playing A o [1999/12/20] bin/15596 netstat -rn does'n fit on a 80 chars wide o [1999/12/21] kern/15608 acd0 / cd0 give inconsistent errors on em o [1999/12/21] conf/15612 jkh Re-Scan devices in 3.4-Release options me o [1999/12/21] i386/15619 standard pppd doesn't authenticate users o [1999/12/22] kern/15636 dillon reminder to self for MAP_ VM defines o [1999/12/23] misc/15658 edquota misinterprets usernames as uid ra o [1999/12/24] bin/15663 yokota none a [1999/12/25] ports/15691 steve Ssh ports fail to check inetd.conf before o [1999/12/28] bin/15739 repquota report format fix for better par o [1999/12/28] kern/15747 dcs loader's builtin "more" command won't res o [1999/12/28] conf/15748 jkh sysinstall - upgrade a [2000/01/01] docs/15821 asmodai Wrong device names in manpages for lpt(4) o [2000/01/01] kern/15827 Power-Off causes Trap 9 in kernel o [2000/01/01] bin/15830 imp PATCH: rdump over ssh o [2000/01/02] kern/15838 Conversion tables in msdosfs_conv.c are b o [2000/01/02] bin/15852 asmodai predefined \*(DT string has Y2K bug o [2000/01/02] bin/15853 tar --newer-mtime flag has Y2K bug o [2000/01/03] bin/15855 comsat(8) failes to open system mail box o [2000/01/03] kern/15860 patch to make default kern.maxfilesperpro o [2000/01/03] bin/15861 dan ftpd did not use sendfile(2) when sending o [2000/01/03] misc/15871 small CVS directories copied to PicoBSD filesys o [2000/01/03] misc/15874 small PicoBSD can only update files from within o [2000/01/03] misc/15875 small Incorrect permissions on PicoBSD /tmp dir o [2000/01/03] misc/15876 small PicoBSD message of the day problems o [2000/01/05] misc/15908 patch to fix argument mismatch in getnano s [2000/01/06] docs/15959 phantom misplaced lines in psignal.9 man page o [2000/01/08] kern/15983 n_hibma C++ keywords in kernel header files o [2000/01/08] ports/15992 joe [PATCH] Add a default for $SUP in the /us o [2000/01/08] ports/15993 asami [PATCH]No line-feed in warnings from ``ma o [2000/01/09] misc/16003 sysinstall crashes if it gets more than o o [2000/01/09] bin/16005 brian add new option to date(1) o [2000/01/09] bin/16007 joe cdcontrol(1) defaulting do /dev/cdrom ins o [2000/01/09] misc/16009 Invoking /stand/sysinstall from kde termi o [2000/01/09] kern/16016 cam/scsi/scsi_da.c: Fujitsu M2952 doesn't o [2000/01/10] kern/16021 To support SMP on NEC PC98, call mp_probe o [2000/01/10] kern/16023 Add an idletime counter for sppp, just li s [2000/01/10] bin/16048 asmodai "file" command cannot recognize LaTeX2e f o [2000/01/10] kern/16049 Connor Drive fails cache sync o [2000/01/11] ports/16072 obrien vim5 port update o [2000/01/11] conf/16076 markm [PATCH] pam_ssh examples for /etc/pam.con o [2000/01/13] ports/16109 max Update port: japanese/mimekit to 1.8 o [2000/01/14] bin/16119 ctm_rmail does not honor umask o [2000/01/14] bin/16124 imp [PATCH] Enhancement for 'lpr -r' o [2000/01/15] misc/16131 wosch bizarre dates displayed when searching th o [2000/01/15] ports/16139 billf Ntop port fails to find lsof o [2000/01/18] kern/16169 The U.S. Robotics 56K Voice Int modem is o [2000/01/18] kern/16170 compiling machine/setjmp.h with g++ o [2000/01/18] bin/16179 ipfw(8) poor design of command line parsi o [2000/01/18] misc/16189 Advansys ASB-3940U2W SCSI Card does not w o [2000/01/18] kern/16195 16-bit uid/gid struct in sys/ipc.h o [2000/01/19] bin/16206 PATCH: vmstat column alignment, %ll not s o [2000/01/19] misc/16208 ps/2 mouse problem o [2000/01/19] misc/16212 in /stand/sysinstall -- cannot exit menu o [2000/01/20] ports/16220 obrien -frepo is broken in gcc-devel and egcs po o [2000/01/21] ports/16252 asami bsd.port.mk: Add bzip2 support for distri o [2000/01/21] bin/16275 steve approve send-pr(1) (attach files, use env o [2000/01/22] kern/16292 performance problem of divert socket o [2000/01/23] bin/16316 Enhancement: allow .fakeid to be a named o [2000/01/23] bin/16320 fstat -f confuses some partitions o [2000/01/24] kern/16339 vm/vm_page.h PQ_L2_SIZE options too limit o [2000/01/25] ports/16347 sobomax Inconsistencies between Java ports o [2000/01/25] kern/16360 kernel timestamping of ICMP echo requests o [2000/01/26] bin/16364 [PATCH] Add msdosfs and cd9660 support to f [2000/01/26] ports/16374 ache Ports fix: news/tin o [2000/01/27] i386/16411 DUMP freezes system if uucico or samba wr o [2000/01/28] bin/16422 newfs always make root's / directory o [2000/01/28] misc/16434 Odd rlogin problem. o [2000/01/30] misc/16475 wosch search.cgi gives bogus dates o [2000/01/30] bin/16480 locked accounts and adduser o [2000/02/06] conf/16536 size of /var/spool/uucp/Log, a UUCP logfi o [2000/02/06] kern/16551 cosmetic cleanup in sys/dev/ppbus/pcfcloc o [2000/02/07] ports/16570 asami ports toplevel README.html has bad link t o [2000/02/08] conf/16584 jkh Hostname field too small during install ( o [2000/02/09] bin/16619 trimdomain does not handle peer domains o [2000/02/09] bin/16625 Incorrect information in routed(8) error o [2000/02/10] ports/16640 jfitz rwhois port install tries to copy wrong l o [2000/02/10] bin/16649 /bin/lastcomm: output contains extraneous f [2000/02/11] ports/16654 mharo Some master sites have discontinued hosti o [2000/02/11] bin/16657 /bin/hostname: New feature to return subc o [2000/02/13] bin/16705 ftpd doesn't support -h option o [2000/02/14] kern/16709 PATCH: make poll work for -STABLE's Audio o [2000/02/14] kern/16713 grog Vinum: some processes would not die; ps a o [2000/02/14] misc/16719 /stand/sysinstall does not redraw the scr o [2000/02/14] i386/16722 squid (a 3.x binary) won't run under 4.0- o [2000/02/15] bin/16726 rpc.rstatd from inetd sig11's o [2000/02/16] kern/16745 Kernel Makefile doesn't sanitise PATH [PA o [2000/02/16] kern/16765 Add support for mark/space parity o [2000/02/18] kern/16815 dillon Cannot "rm -rf" for not-existed file on r o [2000/02/19] misc/16830 markm PAM-related error messages on -current o [2000/02/20] misc/16839 dan MFC Matthew D. Fuller's patch to deal wit o [2000/02/20] misc/16840 dan MFC: Matthew D. Fuller's teach pkg_info t o [2000/02/20] docs/16843 doc Knob for release/Makefile to prevent dele o [2000/02/20] ports/16857 jdp cvsup coredump o [2000/02/21] ports/16872 max Update port: japanese/pine o [2000/02/21] bin/16880 davidn [PATCH] pw(8) hardcodes directory creatio o [2000/02/22] bin/16924 tmpfile(3) ignores TMPDIR and always uses o [2000/02/22] bin/16926 kris [PATCH] banner doesn't allocate space fo o [2000/02/22] kern/16928 dynamic sysctl enhancement o [2000/02/22] bin/16929 [PATCH] prevent possible race condition i o [2000/02/23] misc/16938 FTP does not fully parse ftp:// URLs o [2000/02/23] misc/16954 kris [PATCH] catopen(3) in libc can overflow o o [2000/02/24] misc/16969 yokota /kernel: psmintr: out of sync (0000 != 00 o [2000/02/24] bin/16971 Exiting from /usr/sbin/login does not res o [2000/02/25] ports/16987 obrien pkg_delete vim-5.X incorrect o [2000/02/26] kern/17003 dscheck() overzealously protects labels o o [2000/02/26] kern/17007 This is a code for implementing ethernet o [2000/02/27] conf/17022 rwatson newsyslog.conf not in sync with syslog.co o [2000/02/27] alpha/17032 alpha strtod(3) floating exception o [2000/02/28] misc/17045 Cannot install on Siemens Primergy 870 (d o [2000/02/28] kern/17058 mjacob SCSI tape driver can't drive devs that ca o [2000/02/29] bin/17077 yokota write() error o [2000/03/01] docs/17104 phantom gethostbyname(3) contains a reference to o [2000/03/01] kern/17109 darrenr fastroute crashes for lo0 udp o [2000/03/02] ports/17127 obrien Ports fix: editors/vim5 o [2000/03/02] misc/17132 bugs in xdr functions o [2000/03/02] ports/17139 billf PLIST correction for Apache13-fp o [2000/03/04] misc/17178 -d option of lpd didnt work o [2000/03/04] misc/17185 main ncurses headerfile is installed as c f [2000/03/04] i386/17198 3.4 doesn't boot from CD on dell 3500 o [2000/03/04] ports/17199 jmz emulators/mtools configure fix o [2000/03/04] gnu/17202 uucp grade patch and policy o [2000/03/05] conf/17207 disktab support for Fuji-MO o [2000/03/05] gnu/17214 obrien gdb doesn't honor auto-solib-add o [2000/03/06] kern/17222 Avance Logic ALS/100 sound card doesn't r o [2000/03/06] kern/17224 4.0-20000214-CURRENT: pcm/csa sound - sha o [2000/03/06] bin/17226 markm ftpd can't use PAM o [2000/03/06] misc/17232 obrien chown(1) and chgrp(1) do not honor -v fla a [2000/03/06] ports/17241 mharo Update: japanese/tkdesk o [2000/03/07] ports/17255 pst Update the GNATS port to 3.113 o [2000/03/07] ports/17259 reg Update port www/mozilla o [2000/03/08] misc/17270 FreeBSD should support nsswitch.conf, or o [2000/03/08] misc/17272 deleting a file that a program has open c o [2000/03/08] misc/17275 asami make release fails when making readmes fo f [2000/03/08] ports/17279 obrien USA/Canada Netscape Navigator 4.72 FreeBS o [2000/03/09] bin/17289 [PATCH] wrong permissions on /var/run/pri o [2000/03/09] ports/17293 hosokawa samba port installs man-pages twice, fail o [2000/03/09] kern/17297 Panic when mounting a CDRom f [2000/03/10] ports/17309 ports ports/audio/cdd doesn't support .wav outp o [2000/03/12] ports/17342 will ports/devel/qtez build failure o [2000/03/13] kern/17358 PCI ids for Aureal 8810, 8820 and 8830 au o [2000/03/13] bin/17363 crontab(1) leaves files in /var/cron/tabs o [2000/03/13] bin/17368 billf Bad error messaging from mountd(8) o [2000/03/14] misc/17377 "Checking for rejected mail hosts:" gives o [2000/03/14] kern/17385 Support for IIT's "XC87SLC-33" numeric pr o [2000/03/15] bin/17389 /bin/cp failed on some synthetic vfs o [2000/03/15] bin/17395 This is a replacement for the perl versio o [2000/03/15] misc/17399 FTPing into machine slows it down o [2000/03/16] bin/17405 one more fstat patch o [2000/03/16] alpha/17411 alpha No link/activity lights Alpha ethernet ca f [2000/03/16] ports/17414 mharo upgrade and fix for the postilion port o [2000/03/16] kern/17425 nsouch [PATCH] fix two small printing errors in o [2000/03/16] ports/17427 cwt a big enhancement to the flexability of t o [2000/03/17] bin/17430 jkh Missing Czech keyboard in /stand/sysinsta o [2000/03/17] kern/17438 cg newpcm volume too low on Soundblaster Pro o [2000/03/17] kern/17441 4.0-STABLE: Intel 82801AA SMBus Controlle o [2000/03/18] ports/17465 jmacd Update port: lang/STk to 4.0.1 o [2000/03/18] docs/17470 doc Missing man page: pthread_yield o [2000/03/18] ports/17471 rse presence of devel/pth-devel port breaks w o [2000/03/18] ports/17479 asami bsd.port.mk: PARALLEL_BUILD o [2000/03/18] bin/17480 m4 changecom doesn't work as documented o [2000/03/19] kern/17487 sos ide/atapi/cdrom bugs o [2000/03/19] ports/17489 ports Zephyr port is broken with Kerberos enabl o [2000/03/19] ports/17490 markm ports fail for some gnu programs as the g o [2000/03/19] kern/17493 Updates to use FreeBSD as a firewall and o [2000/03/19] bin/17498 killall(1) is a slow perl script that's d o [2000/03/20] i386/17505 Problems with with SMP on Compaq proliant f [2000/03/20] docs/17521 doc Proposed FAQ on assembly programming o [2000/03/21] bin/17532 "host" only prints A records by default o [2000/03/21] kern/17539 kernel panic when asking help in visual u o [2000/03/22] bin/17546 murray Sysinstall does not let you configure NIS f [2000/03/22] bin/17555 green fstat(1) doesn't show memory-mapped files o [2000/03/24] kern/17581 devices failing probing do so silently o [2000/03/24] ports/17585 obrien Outputs small message for user of lang/gc o [2000/03/24] kern/17589 sos ata crashes when trying to extract cd-da o [2000/03/25] docs/17598 doc installworld over NFS documentation no lo o [2000/03/25] ports/17602 jmz Port fix x11/XFree86-4.0 (make deinstall o [2000/03/26] bin/17611 f77 man page needs updated o [2000/03/27] bin/17619 pax cannot read all tar files created by o [2000/03/27] bin/17623 date(1) -v doesn't handle time changes (D o [2000/03/27] i386/17628 mdodd 3c509b hangs on running ifconfig o [2000/03/28] bin/17640 lseek();read() -> pread() in dump and fsc o [2000/03/29] bin/17679 wpaul wicontrol should take multiple args on co o [2000/03/30] kern/17688 es_callback() in /sys/pci/es1370.c does n a [2000/03/30] ports/17693 ports new port: www/linux-djvuplugin o [2000/03/30] bin/17694 wcstombs(), mbstowcs() not complying with o [2000/03/30] conf/17699 Support for dutch keyboards in the consol o [2000/03/31] bin/17720 presence of old /dev entries causes sysin o [2000/04/01] kern/17728 probe Macronix 98715/98715A 10/100BaseTX f [2000/04/01] misc/17737 dwhite Major repair of PicoBSD o [2000/04/01] bin/17739 Traceroute will not compile without IPSEC o [2000/04/02] kern/17751 wpaul rl driver loaded as module when it alread o [2000/04/02] bin/17756 kris sshd ignores .hushlogin f [2000/04/02] kern/17758 green Make sl driver dynamicallly expandable. o [2000/04/03] bin/17772 TFTP can not handle big files (> 32MBytes o [2000/04/03] kern/17774 doc stray irq7 o [2000/04/03] kern/17775 4.0-STABLE: Adaptec-155-ATM at en0 causi o [2000/04/03] ports/17777 torstenb [PATCH] Postfix port to consistently use o [2000/04/04] kern/17796 cg pcm drivers failes to load for Neomagic o o [2000/04/04] ports/17799 alex new port: lang/jgnat o [2000/04/04] ports/17801 jake new port: devel/binutils11 o [2000/04/04] ports/17802 jake port update: devel/gcc11 o [2000/04/04] ports/17803 jake new port: devel/gdb11 o [2000/04/05] gnu/17812 gprof gives error: o [2000/04/05] kern/17819 adrian Build ports on nfs & union mount panics k o [2000/04/06] ports/17822 obrien www/netscape47-navigator.us port missing f [2000/04/06] bin/17824 sheldonh [PATCH] /usr/bin/column has arithmetic ov o [2000/04/06] bin/17830 /usr/bin/login called from command line d o [2000/04/06] kern/17831 FreeBSD 4.0 doesn't detect EpoX 7KXA prop o [2000/04/07] misc/17848 Patches to remove support for CSRG libm f [2000/04/07] docs/17855 alex PPP Primer is out-of-date o [2000/04/07] misc/17857 During a sysinstall kernel sources say th o [2000/04/08] bin/17864 PATCH: sys/resource.h needs sys/time.h fo o [2000/04/09] misc/17889 certain type of DNS queries seem to get d o [2000/04/10] ports/17897 chuckr transfig does not compile with XFree86-4. o [2000/04/10] ports/17903 billf Allow CVS_UPDATE to be used with SUP_UPDA o [2000/04/10] i386/17906 le ethernet device doesn't work in 4.0 o [2000/04/10] kern/17907 cg Audio record levels are too low o [2000/04/10] docs/17916 alex [PATCH] rewrite of cutting-edge section o o [2000/04/10] ports/17921 green licq in the ports collection is missing a o [2000/04/10] bin/17922 steve send-pr should be upgraded a [2000/04/11] bin/17939 sheldonh routed calls ntohs twice on the same fiel o [2000/04/12] ports/17952 torstenb [PATCH] tcp_wrappers port to give better o [2000/04/12] misc/17957 installer navigation is confusing o [2000/04/13] misc/17983 Minikernel build instructions do not work o [2000/04/13] conf/17993 improving on the default /etc/amd.map o [2000/04/13] bin/17997 nvi doesn't set variables on startup (via o [2000/04/14] kern/18001 PCM - Yamaha OPL-SAx doesn't have treble/ o [2000/04/14] misc/18014 Machine doesn't boot without keyboard att o [2000/04/15] bin/18030 billf [PATCH] pkg_version thinks 4.04 > 4.1 o [2000/04/17] ports/18057 jmz make install for XFree86-4 fails on alpha o [2000/04/17] gnu/18061 obrien /usr/bin/ld (GNU ld 2.9.1) ignores rpath o [2000/04/18] ports/18073 obrien wget fails to build correctly o [2000/04/18] bin/18080 davidn [PATCH] pw documentation updated to refle o [2000/04/18] ports/18083 rse Gratuitous Apache package inconsistencies o [2000/04/19] ports/18093 obrien lang/gcc-devel install error o [2000/04/19] misc/18097 What is this: LIBRATION not specified - u o [2000/04/19] bin/18100 update to src/usr.bin/from/from.c for mul o [2000/04/20] misc/18109 if pw_shell is empty(/bin/sh is assumed), s [2000/04/20] bin/18114 ken msps from iostat is wrong o [2000/04/21] misc/18131 MAX_IFS in pppd/sys-bsd.c too small for m a [2000/04/22] conf/18152 /etc/exports should suggest how to get mo o [2000/04/22] i386/18154 [PATCH] Add cpu class and features flags a [2000/04/22] kern/18155 sos [Patch] OPTi FireStar(82C700) o [2000/04/22] bin/18157 pnpinfo only prints first io-start for ev o [2000/04/22] conf/18164 roberto /var/log/ntpstats fill with stat files by o [2000/04/23] misc/18175 strtok(3) example doesn't work. o [2000/04/23] ports/18184 ache GNU Patch 2.5.4 Port o [2000/04/24] bin/18191 pac core dumped without set /etc/printcap o [2000/04/24] bin/18193 Bogus diagnostics by nslookup(1) o [2000/04/26] kern/18232 SMP + APM configerd 4.0 kernel did panic a [2000/04/26] docs/18233 asmodai man and nroff -mdoc produce extra blank l o [2000/04/26] docs/18243 alex wrong description of -p option in sh(1) m o [2000/04/27] misc/18255 makewhatis weekly job doesn't look at /us o [2000/04/27] ports/18256 sada www/netscape4* lacks Fortify on alpha o [2000/04/27] ports/18259 obrien ElectricFence installation breaks if the o [2000/04/28] kern/18271 simplelock: klds not portable across UP a o [2000/04/28] bin/18275 proposed TMPDIR setting and /usr/bin/mkin o [2000/04/28] kern/18289 CPU Time exceeded delivered multiple time o [2000/04/29] ports/18291 asami make makesum fetches new sources, make fe o [2000/04/29] kern/18293 lack of versapad mouse wheel emulation o [2000/04/29] kern/18295 Audio is gone after hibernation o [2000/04/30] ports/18310 obrien ports/devel/cdk install error o [2000/04/30] bin/18319 "dump" fails with "cannot reopen disk: in o [2000/05/01] bin/18326 dwmalone no /usr/libdata/lint/llib-lc.ln o [2000/05/01] bin/18329 ben futimes() and lutimes() missing from ' cannot be used in "via" o [2000/05/29] ports/18896 jseger Tcl "info hostname" command returns chop- o [2000/05/30] kern/18909 dwmalone select(2) timeout limited to 100000000 se a [2000/05/30] ports/18911 sada New port - plptools o [2000/05/31] kern/18928 options ROOTDENAME=xxx on kernel config f f [2000/06/01] misc/18934 X11 forwarding not requested with DISPLAY o [2000/06/01] bin/18946 jhb Add support for enabling USB daemon from o [2000/06/01] ports/18960 asami Add USE_APACHE to bsd.port.mk for Apache o [2000/06/01] bin/18961 kris sshd does not print before motd o [2000/06/02] bin/18967 ypserv not linked with tcp wrappers o [2000/06/02] misc/18969 sound card not recognized by probe o [2000/06/02] ports/18977 obrien rsync report end job o [2000/06/03] misc/18987 Problems with Comtrol RocketPort o [2000/06/03] bin/18992 log packets blocked by filter rules o [2000/06/03] kern/18994 imp PCMCIA sio will happily attach to a used o [2000/06/03] misc/18995 assar Kerberos5 INCLUDES needed for make world o [2000/06/03] misc/18997 markm Kerberos5 CFLAGS needed o [2000/06/04] conf/19001 Delayed fsck + mount of insignificant fil o [2000/06/05] docs/19010 doc Bad144 obsoletion by 4.0 is undocumented; o [2000/06/05] i386/19012 No volume run out for /var and lead my Fr o [2000/06/05] bin/19019 billf pkg_version -c doesn't honor -l (limit st o [2000/06/05] misc/19037 Keyboard not detected on new install o [2000/06/05] misc/19038 The qpopper port accepts empty X-UIDL: he o [2000/06/05] bin/19044 billf Some games compare initscr() to ERR. o [2000/06/06] bin/19056 yacc in 3.4 and 4.0 reports "maximum tabl o [2000/06/06] bin/19057 offer of patch to uname that produces pre f [2000/06/06] ports/19061 kuriyama ports/textproc/lotusxsl the source zip pa f [2000/06/06] kern/19063 rnordier VGA keyboard sometimes fails to work in b o [2000/06/06] ports/19064 obrien Xosview broken on AXP Alpha o [2000/06/06] i386/19070 boot0 displays NTFS partitions as "??" o [2000/06/06] bin/19071 fmt not folding very long lines a [2000/06/06] ports/19082 ports Can't build editors/aXe-6.1.2 o [2000/06/07] misc/19086 pseudo-device vn doesn't work properly wi a [2000/06/07] misc/19087 deischen selects always restart when using threads o [2000/06/07] misc/19088 STL from SGI for FreeBSD 3.4 o [2000/06/07] ports/19112 asami files with names something,v in patches d o [2000/06/08] bin/19118 vmstat¤Ç avm¤Èfre¤ÎÃͤ¬Àܤ¹¤ë¡£ o [2000/06/08] ports/19119 jmz un-forbid x11/XFree86-4 and unbreak its x o [2000/06/08] misc/19124 ps(1) to support SysV-style options? o [2000/06/08] kern/19127 kernel panic on mount on burncd'd device o [2000/06/08] misc/19129 AMI Raid Express 200 card extremely slow o [2000/06/08] kern/19132 ATM HARP support apparently does not supp o [2000/06/09] kern/19156 jkh Enable the doFS.sh to run in arbitrary lo o [2000/06/09] kern/19158 U.S.Robotics 56K FAX INT not recognize co f [2000/06/10] conf/19178 ume add reject routes and comments in /etc/rc o [2000/06/10] bin/19183 more(1) doesn't handle redraw correctly o [2000/06/10] ports/19185 torstenb mail/postfix: manual pages contains !!PRE o [2000/06/10] ports/19193 jfieber Update textproc/jade to C{XX,}FLAGS safe o [2000/06/11] ports/19212 ports New port py-amk-crypto-0.13 o [2000/06/11] kern/19213 SC_DFLT_FONT compile option breaks kernel s [2000/06/12] conf/19217 billf Add an IGNORE_LIST to mergemaster. o [2000/06/12] ports/19224 andreas Problem installing p5-Net-SSLeay port o [2000/06/12] ports/19227 ports Installation problem: apache13-ssl port f [2000/06/13] conf/19236 sanpei not-existing PCMCI cards in pccard.conf.s o [2000/06/13] bin/19239 login allows users to login remotely with o [2000/06/13] misc/19246 ports Poor error message when fetching files wi o [2000/06/13] ports/19253 dirk mod_php4 has pkg dependency when not usin o [2000/06/14] docs/19260 asmodai There's no documentation for the files kb o [2000/06/14] ports/19270 asami Ports build mechanism doesn't check wheth o [2000/06/14] kern/19273 dwmalone Syscons has no key for halting the machin o [2000/06/15] ports/19325 tom ports/mail/ezmlm-idx: mysql & pgsql suppo o [2000/06/15] gnu/19326 obrien Fix GCC Target Macro 'i386/freebsd.h'. o [2000/06/15] gnu/19327 Fix to build 'a.out' binary. o [2000/06/16] ports/19333 cwt patch to make amanda24 more userfriendly o [2000/06/16] bin/19337 obrien c89(1) not POSIX compliant (-l lib) and m o [2000/06/17] bin/19355 fstat gives signal 10 (SIGBUS) when outpu o [2000/06/18] i386/19365 lnc1 is not worked with Am79C973 o [2000/06/18] misc/19367 markm /etc/defaults/make.conf lists wrong value o [2000/06/18] bin/19369 Inadequate error reporting in "mount" com o [2000/06/19] bin/19377 tcpdump -i tun0 not port/host x shows inc o [2000/06/19] misc/19391 marcel Evilness with Linux Terminus, causes X to o [2000/06/20] ports/19403 ports portsifying of the glide3 source for dri o [2000/06/20] bin/19404 /usr/bin/error should be included in the o [2000/06/20] misc/19406 setenv() allocates memory which is not fr o [2000/06/20] i386/19410 spontaneous reboot when esd runs on a -ST o [2000/06/21] conf/19413 Too few MCAM SCSI devices in /dev o [2000/06/21] bin/19422 users can overflow argv to make ps segfau o [2000/06/22] ports/19434 obrien ports/mail/mutt dumps core o [2000/06/22] kern/19436 when using vlanX interface arp ageing wor o [2000/06/22] conf/19442 can't install on diverse harddisks. o [2000/06/22] ports/19448 markm filename input broken o [2000/06/22] ports/19456 chuckr the sp port is hardwired to install it's o [2000/06/22] ports/19457 vanilla The gimp port has /usr/local/bin hardwire o [2000/06/23] misc/19462 using HARP atm driver on FreeBSD3.4 freez o [2000/06/23] misc/19467 kris OpenSSH (as an rsync tunnel) blocks forev o [2000/06/23] docs/19481 doc Serial Communications chapter in Handbook o [2000/06/24] ports/19486 stb net/netatalk fix PLIST o [2000/06/24] kern/19490 faith0 network device has high number of o [2000/06/25] kern/19497 Adaptec AHA-1530P PNP scsi card is not re o [2000/06/25] ports/19498 kris ssh (1) instal fails o [2000/06/25] docs/19507 wosch Mailing-list search at www.freebsd.org re o [2000/06/25] kern/19511 luigi a typo in ip_fw.c o [2000/06/26] bin/19514 patch to prevent tail'ing directories o [2000/06/26] ports/19523 billf Update port: graphics/gd o [2000/06/26] bin/19532 cdcontrol does not handle EOF on stdin pr o [2000/06/26] kern/19535 adrian procfs_rlimit tidyup o [2000/06/26] bin/19536 patch to prevent head'ing directories o [2000/06/26] ports/19539 obrien ports/editors/vim-lite cannot deinstall p o [2000/06/27] kern/19541 Want to marge ds1 sound card driver from o [2000/06/27] kern/19546 No CD audio o [2000/06/27] kern/19553 "panic: zone: entry not free" in namei() o [2000/06/28] bin/19558 amd doesn't know whether NFS feature is a o [2000/06/28] misc/19564 PNP-Id for ESS1681 o [2000/06/28] ports/19571 tg python/TKinter busy waits f [2000/06/28] conf/19573 Dot Files for Optional Shells o [2000/06/29] i386/19574 Let badsect recognize character device. o [2000/06/29] misc/19576 obrien [patch] add magic to file(1) to recognise o [2000/06/29] ports/19585 obrien bounce port misconfiguration o [2000/06/29] ports/19591 ports ssh2 port ignores 'ignorenologin' from lo o [2000/06/29] bin/19592 imp pccard_ether does not honor dhcp_{program f [2000/06/30] ports/19594 trevor update port: qrash o [2000/06/30] bin/19598 traceroutes default of 30 Hops is too low o [2000/07/01] kern/19624 make {DFL,MAX}SSIZ kernel options o [2000/07/01] bin/19635 add -c for grand total to df(1), like du( o [2000/07/02] ports/19641 jfitz Newer version of swatch available o [2000/07/02] gnu/19642 kbyanc patch to merge OpenBSD changes to patch(1 o [2000/07/02] ports/19650 asami python package causes segmentation fault f [2000/07/02] ports/19659 ports erlang port: proposal for updating the mn o [2000/07/03] ports/19665 max Update port: net/delegate o [2000/07/03] misc/19670 jkh Incorrect duplicate in fortunes2 o [2000/07/03] bin/19683 green mount displays incorrect mount point on f o [2000/07/03] kern/19686 yokota splash screen fails o [2000/07/03] kern/19688 jlemon Some boundry checking KASSERTS in network o [2000/07/05] kern/19706 Framing error on PC/NET 32 also used in o o [2000/07/05] ports/19713 max Update port lang/swi-pl to CFLAGS safeten o [2000/07/05] bin/19719 imp pccard_ether lacks the start_if hooks as o [2000/07/05] kern/19720 kbyanc more sysctl signed-ness patches o [2000/07/05] misc/19725 4.0-STABLE: sys/boot/ficl build fails if o [2000/07/06] gnu/19733 obrien GDB 4.18 is not GDB 4.18 o [2000/07/07] bin/19755 nologin not configurable o [2000/07/07] kern/19756 sheldonh Inability to use linux extended partition o [2000/07/07] ports/19757 obrien Update port: http://home.sol.no/~sverrehu o [2000/07/07] bin/19772 df output wrong for union-mounts o [2000/07/07] ports/19780 stb SETI@home port startup script fails o [2000/07/08] kern/19782 dirk mkisofs 1.12.1 (i386-unknown-freebsd4.0) o [2000/07/08] ports/19784 obrien comms/minicom v. 1.83.1 has the wrong che o [2000/07/08] bin/19790 gshapiro Cannot rebuild sendmail.cf without instal f [2000/07/09] misc/19798 cg 4DWAVE doesn't work. o [2000/07/09] misc/19805 not installable on old-fashioned dx50 o [2000/07/09] ports/19806 swallace error message w/xcdplayer: ioctl (cdromr f [2000/07/09] kern/19807 incorrect dates a [2000/07/09] bin/19810 hm i4b isdntel core-dumping if screen cols<8 a [2000/07/09] bin/19811 hm i4b isdntel leaving the tty in a strange o [2000/07/09] ports/19812 mharo [PATCH] LDAP support for proftpd o [2000/07/10] docs/19818 doc /usr/share/man/man8/sysinstall.8 missing o [2000/07/10] ports/19823 obrien gnucache build depends on unimplemented s o [2000/07/10] kern/19827 yokota psm flag bit9(NOIDPROBE) doesn't work cor o [2000/07/10] misc/19837 murray Run Fit it floppy from serial port o [2000/07/11] conf/19849 MAKEDEV still defaults to da0X instead of f [2000/07/11] ports/19854 ports [PATCH] inclusion of full mozart-oz docum o [2000/07/11] kern/19863 markm Non-blocking IO not supported on /dev/ran o [2000/07/12] kern/19865 sos atapi-cd.c does not check CDIOCREADSUBCHA o [2000/07/12] ports/19868 asami modify ports/Mk/bsd.port.mk to remove ALL o [2000/07/12] kern/19871 select on named pipes always returns 'ava o [2000/07/13] kern/19887 mjacob Boot hang while scanning SCSI bus o [2000/07/13] i386/19890 davidn Stallion serial driver support missing [p o [2000/07/13] bin/19897 gshapiro Allow building more then 1 SENDMAIL_CF a [2000/07/13] docs/19898 hm i4btel(4) man page refers to isdnphone(1) o [2000/07/14] kern/19913 des add SYN+FIN counter o [2000/07/14] ports/19914 max Update port: net/delegate o [2000/07/14] i386/19920 tanimura Add a PNP ISA modem to sio.c (details att o [2000/07/15] bin/19959 will new variable modifiers for make(1) o [2000/07/15] kern/19966 new syscons screensaver o [2000/07/16] misc/19971 asmodai bug in /usr/include/sys/socket.h o [2000/07/16] i386/19972 Add of pckg (several pkgs) aborted, error o [2000/07/17] ports/19977 rse mod_php3 and mod_php4 ports doesn't recog o [2000/07/17] docs/19981 doc Indonesian translations o [2000/07/17] docs/19995 doc keymap(5) missing from manual in 3.4-RELE o [2000/07/18] gnu/20004 obrien FBSD4 gcc __attribute__(constructor) not f [2000/07/18] misc/20007 mharo du -hcs * gives different wrong results d o [2000/07/18] misc/20024 jake [PATCH] queue(3) concatenation macros o [2000/07/18] kern/20029 des linprocfs does not accurately emulate Lin o [2000/07/19] bin/20042 "rsh -t" doesn't timeout if rcmd(3) never o [2000/07/19] alpha/20047 alpha FreeBSD does not yet support system type o [2000/07/20] bin/20054 ftpd: rotating _PATH_FTPDSTATFILE losts x o [2000/07/20] ports/20061 ports New Port: Entity - a RAD that work. Its f o [2000/07/20] docs/20067 doc src/sbin/nologin/nologin.5 is bad place o [2000/07/20] bin/20074 darrenr enable STATETOP for ipfstat (ipfilter) o [2000/07/20] bin/20078 obrien No problem o [2000/07/20] ports/20079 jseger Non-upgrade fixes for tk8[023] ports. o [2000/07/23] docs/20121 jim Better user ppp documentation in man page o [2000/07/23] ports/20122 obrien update pgcc to 2.95.3 o [2000/07/23] misc/20131 obrien Suggested additions to `magic' file o [2000/07/24] misc/20139 msmith Simple typo in src/share/examples/ppi/ppi o [2000/07/24] ports/20145 dburr improving the devel/SN port o [2000/07/24] bin/20154 quiting more/less on the console early le o [2000/07/24] misc/20159 strftime() can't produce ISO8601 format t o [2000/07/24] kern/20161 cg Integrate VIA VT82C686 AC'97 audio driver o [2000/07/24] bin/20165 markm PERL_THREADED=true fails; "yes" works; ma o [2000/07/24] misc/20166 billf Corrections & additions to games/quiz/dat f [2000/07/25] ports/20170 ports [PATCH] fvwm2-beta update o [2000/07/25] ports/20171 andreas postgresql7 user message contains $PREFIX o [2000/07/25] gnu/20173 steve send-pr(1) cannot override From: address o [2000/07/25] ports/20179 nbm Follow up on ports/20168 o [2000/07/25] ports/20186 nbm New port: fdp-tools o [2000/07/25] bin/20188 brian tcpdump -d enables promisc mode on tun0 a o [2000/07/26] ports/20196 jfitz update: x11-toolkits/p5-Tk to nonbeta f [2000/07/26] kern/20198 log setup of dynamic rules for ipfw o [2000/07/26] conf/20202 darrenr ipfilter hooks in rc.network o [2000/07/26] bin/20204 ps more doesn't handle 8-bit characters prop o [2000/07/27] kern/20214 dec kernel routing bug for nexthop is routed o [2000/07/27] kern/20231 non existing kernel files found in conf/f o [2000/07/28] ports/20240 obrien Update port: net/netcat has bogus master- o [2000/07/28] misc/20254 jhb BTX loader 1.00 can not recognize floppy o [2000/07/28] kern/20255 cg [PATCH] resume from suspend breaks pcm o [2000/07/28] ports/20267 chuckr Update port: print/transfig to 3.2.3c o [2000/07/28] ports/20270 reg libtool needlessly runs ldconfig after in o [2000/07/28] ports/20275 jmacd Update port: lang/mit-scheme to 7.5.9 (fi o [2000/07/28] kern/20278 cg YMF724 initialization fails on my environ s [2000/07/29] docs/20294 darrenr ipf(5) defines icmp rule twice f [2000/07/29] bin/20295 fdisk -s give incorrect disk size o [2000/07/29] kern/20297 cg Joystick is not enabled with es1370 based o [2000/07/30] docs/20298 doc man 5 keymap missing in 4.1 (Stable) o [2000/07/30] ports/20301 billf New port: irc/ircd-hybrid6 o [2000/07/30] ports/20307 obrien [PATCH] editors/vim5 PLIST needs fix o [2000/07/31] bin/20311 markm src/release/Makefile: broken CHECKSUM.MD5 o [2000/07/31] misc/20326 marcel [PATCH] installkernel fails if DESTDIR is o [2000/07/31] misc/20327 marcel [PATCH] src/sys/conf/Makefile.${MACHINE} o [2000/07/31] misc/20333 sheldonh ftp login fails on unix password when s/k o [2000/08/01] ports/20344 ports [PATCH] Port for QDraw-0.7.tar.gz o [2000/08/01] bin/20345 brian screensaver wont come on if pppctl is run o [2000/08/01] kern/20352 yokota Configuring a synaptics touchpad o [2000/08/01] misc/20354 sos interrupting burncd with ^C o [2000/08/02] ports/20356 mharo Update port: ftp/proftpd o [2000/08/02] ports/20359 ports New port: Apache-mod_perl_guide o [2000/08/02] ports/20364 dburr audio/ripit-atapi can use 'dagrab' instea o [2000/08/02] docs/20369 doc [patch] mountd.8 missing cross-references o [2000/08/02] bin/20371 obrien dhclient inserts bogus configurations o [2000/08/03] kern/20384 n_hibma Phase errors with Zip650 CD on USB o [2000/08/03] gnu/20387 ld error messages refers to undocumented o [2000/08/03] kern/20389 ken "device pass" required for CD ripping o [2000/08/03] bin/20391 jhb sysinstall should check debug.boothowto s o [2000/08/03] kern/20393 dillon processes get stuck in vmwait instead of o [2000/08/04] docs/20400 doc Building a kernel with debugging info sec o [2000/08/04] bin/20402 ache 4.1R's ls conflicts with Emacs' dired mod o [2000/08/04] misc/20408 Distribution CDs will not boot on IBM Thi o [2000/08/04] kern/20410 sio support for high speed NS16550A, ST16 o [2000/08/05] ports/20435 ports New port: Free EcmaScript Interpreter o [2000/08/05] conf/20436 asmodai Can't make only cd0 under 4.1-STABLE o [2000/08/05] kern/20437 sos IDE on Intel 815E looks like Intel ICH (y o [2000/08/06] docs/20447 doc forcing NFS exports to be updated o [2000/08/06] kern/20448 luigi expired dynamic rules shown in "ipfw get" o [2000/08/06] kern/20451 luigi net.inet.ip.fw.dyn_short_lifetime bound t f [2000/08/07] docs/20453 phantom wrong character set for chinese FAQ o [2000/08/07] misc/20457 davidn pw command doesn't generate random passwo o [2000/08/07] ports/20464 ports Port update of grace to 5.1.1 (included u o [2000/08/07] kern/20473 itojun socket(AF_INET, SOCK_RAW, 4) no longer wo o [2000/08/07] misc/20474 jkh Spelling fixes to fortune data file o [2000/08/07] misc/20475 mjacob SES/SAF-TE giving bogus temps on JMR ELEC o [2000/08/07] docs/20477 doc Document syslogd's special treatment of k o [2000/08/08] conf/20479 updates for rc.conf.5 manpage o [2000/08/08] i386/20485 AdvanSys ISA probe problems in 4.1-R GENE o [2000/08/09] conf/20498 brian All FreeBSD systems trigger massive late- o [2000/08/09] ports/20499 obrien [PATCH] conserver port doesn't like MD5 c o [2000/08/09] bin/20501 extra flag to dump to offline autoloaders o [2000/08/09] misc/20502 assar kerberos5 w/o kerberos4 attempts to build o [2000/08/09] misc/20504 assar [PATCH] ssh (openssh) cannot connect to s o [2000/08/10] ports/20520 will New port: lang/mercury o [2000/08/10] bin/20527 ume redundant binaries for similar IPv4 and I o [2000/08/10] docs/20528 doc sysconf(3) manpage doesn't mention posix. s [2000/08/10] kern/20529 billf gigabit cards fail to link o [2000/08/11] i386/20537 msmith HP NetRAID controller error when rebootin o [2000/08/11] ports/20542 ports New Port: Fugu-0.9.9d (http://gale.org/fu o [2000/08/12] ports/20561 dburr [PATCH] x11-fonts/sharefonts typo fix o [2000/08/12] ports/20565 torstenb [PATCH] More docs for postfix o [2000/08/12] bin/20569 sos libvgl tries to free global array o [2000/08/13] ports/20577 thepish update x11-toolkits/xmhtml, please close o [2000/08/13] misc/20579 wosch www.FreeBSD.org search-form date result i f [2000/08/13] ports/20582 will New port: tuxracer (3d penguin racing gam o [2000/08/13] ports/20587 ports Update port: upsd-2.0.1.6 o [2000/08/13] ports/20588 ports New port: upsd100-2.0.1.6(sysutils/upsd10 o [2000/08/14] bin/20600 net getpeereid obtains credentials from conne o [2000/08/14] ports/20601 ports DESTDIR and /etc/shells o [2000/08/14] ports/20602 ports New Ports: Manipulate / fetch info from M o [2000/08/14] ports/20610 ports New port of cgoban2 o [2000/08/14] kern/20611 VLAN parent device does not count VLAN ou o [2000/08/15] bin/20613 des fetch -T n is not timeout correctly when o [2000/08/15] docs/20626 des fetch(3) omits some of the env. vars unde o [2000/08/15] ports/20627 jseger tcl83 build is broken o [2000/08/16] bin/20643 dwmalone /usr/bin/kzip is obsolete; remove it? o [2000/08/16] ports/20644 ports Installation of port DAP requires compat3 o [2000/08/16] ports/20658 chuckr Update port: graphics/xpdf to 0.91 o [2000/08/16] i386/20660 wpaul if_wi provides 802.11 src and dst, not et o [2000/08/16] ports/20662 ports New port of viewkit f [2000/08/16] ports/20665 ports [PATCH] Update PORTVERSION for JadeTeX po o [2000/08/16] kern/20670 imp No PC-CARD Slots; Device Not Configured o [2000/08/17] ports/20678 asami make SORTED_MASTER_SITES_CMD variable ove o [2000/08/17] bin/20681 des [PATCH] show service names in netstat and o [2000/08/17] kern/20686 brian bpf filters do not behave as expected wit f [2000/08/17] ports/20693 ports Two patches for fxtv o [2000/08/18] bin/20696 Pkg_add does not make use of HTTP_PROXY / o [2000/08/18] conf/20698 cg pcm device o [2000/08/19] ports/20722 ports New port: x11-fonts/jmk-x11-fonts o [2000/08/19] ports/20723 murray [PATCH] Update port: eterm 0.9 o [2000/08/20] ports/20730 peter Update Squid 2.3-STABLE4 with latest vend o [2000/08/20] i386/20731 cg syslog reports pcm0: hwptr went backwards f [2000/08/20] ports/20737 ports audio/cdrdao test for pccts has a LOCALBA o [2000/08/20] docs/20738 doc correction and modification to clocks(7) f [2000/08/21] ports/20741 will new port submission o [2000/08/21] bin/20742 ps Weird problem with 'more' on 4-1-STABLE o [2000/08/21] ports/20749 stb [PATCH] ports/mail/cyrus update f [2000/08/21] ports/20760 ports unfetchable mail for a resource which is f [2000/08/21] misc/20773 Can NOT run PS after upgrade using CTM o [2000/08/22] conf/20774 sheldonh 'NFS access cache time=2' is not a daemon f [2000/08/22] misc/20778 aio_write function cannot be used. o [2000/08/22] kern/20781 ESS Solo is not listed in supported sound o [2000/08/22] ports/20793 ports (socket-server) of clisp does not create o [2000/08/23] docs/20794 doc Request 2 good documents under people.fre o [2000/08/23] ports/20795 msmith FBSD 4.x: Citrix client with drive mappin o [2000/08/23] bin/20799 davidn top's problem o [2000/08/23] i386/20803 mdodd ep0 driver finds additional "shadow" ep c o [2000/08/23] kern/20804 deadlocking when using vnode disk file an o [2000/08/23] misc/20808 ps netstat -m doesn't use -N or -M arguments o [2000/08/23] misc/20812 obrien Magic file missing EPS binary document su f [2000/08/23] misc/20813 use "|more" will lost one line of datas o [2000/08/24] ports/20821 jmz [PATCH] XDM PAM support should not requir o [2000/08/24] bin/20824 ftpd returns, "ad0s1a: not a plain file." o [2000/08/24] bin/20827 billf pkg_add -r only fetchs one-level deep dep o [2000/08/24] misc/20830 lile kernel link problems with Olicom token ri o [2000/08/25] kern/20834 sos Patches and remarks ASUS A7V onboard Prom o [2000/08/25] ports/20837 ports new port: palm/palmpower - disassembler + o [2000/08/25] i386/20845 Cyclades cy driver incompatible with Cycl o [2000/08/25] ports/20849 dec fix port: net/gated o [2000/08/25] ports/20851 torstenb Update port: audio/mpegaudio o [2000/08/26] bin/20858 sos libvgl does not handle fonts wider than 8 o [2000/08/26] kern/20878 wpaul Patch to add support for the 3c556B MiniP o [2000/08/26] ports/20880 ports new fvwm2-beta port o [2000/08/26] bin/20881 kris There's no reason not to build DNSsec-DSA o [2000/08/27] ports/20884 sobomax py-MySQLdb checksums are broken o [2000/08/27] ports/20885 ports new port request o [2000/08/27] ports/20888 stb [PATCH] Miscellaneous fixes for the cyrus o [2000/08/27] bin/20889 dwmalone syslogd.c still uses depreciated domain A o [2000/08/27] misc/20891 cg Suspend/Resume does not work for the YMF7 o [2000/08/27] ports/20892 ports new port : databases/mytop s [2000/08/28] misc/20906 darrenr [PATCH] typo in ipmon.8 o [2000/08/28] bin/20908 murray /stand/sysinstall too limited in selectio o [2000/08/29] misc/20920 yokota window(1) interferes with screensaver o [2000/08/29] misc/20921 yokota `Splash' screen fails to display splash.b f [2000/08/29] kern/20927 ume dmesg output: looutput: mbuf allocation f o [2000/08/30] bin/20944 ru natd enhancements, default config file an o [2000/08/30] misc/20948 billf /etc/aliases and other changes not known o [2000/08/30] bin/20949 marcel openssl build references non-buildtool, w o [2000/08/30] docs/20950 kris [PATCH] openssl.1 has bogus section title o [2000/08/31] ports/20964 ports New port: databases/hypersonicsql o [2000/08/31] ports/20968 ports Remove port: graphics/pnmtopng o [2000/08/31] ports/20970 andreas Remove port: print/ghostscript5 o [2000/08/31] ports/20975 ports update math/grace f [2000/09/01] kern/20992 kern/tty_subr.c, b_to_q to a clist with n o [2000/09/02] bin/20993 many ftpd commands not limited to logins f [2000/09/02] ports/20995 sheldonh freeciv-civ gtk make problem. o [2000/09/02] bin/20996 kris permissions on /usr/bin/opiepasswd f [2000/09/02] ports/20997 ports [PATCH] Man page, install enhancements fo f [2000/09/02] ports/20998 ports [PATCH] Enhancements for Xfstt port o [2000/09/02] ports/20999 jmz [PATCH] fix messages in mtools port a [2000/09/02] kern/21000 sheldonh 4.1-STABLE doesn't have card ID o [2000/09/02] ports/21003 ports New Port, modification of tcopy f [2000/09/02] bin/21007 wollman Improve/fix error messages in lpr's recvj o [2000/09/02] bin/21008 sheldonh Fix for lpr's handling of lots of jobs in o [2000/09/03] ports/21013 will [PATCH] Small fix for kdesupport2 PLIST a [2000/09/03] bin/21017 sheldonh mtree "no such file" message at job's end a [2000/09/04] ports/21021 ports graphics/quickpics bogus colorspace error o [2000/09/04] bin/21024 pow() ERANGE bug f [2000/09/04] gnu/21026 obrien gcc bug with -mno-ieee-fp and -march=pent o [2000/09/04] ports/21038 jseger CFengine doesn't install info files o [2000/09/04] ports/21045 se Port Broken: xblast o [2000/09/04] kern/21051 Updating 4.1-RELEASE to -current fails be o [2000/09/04] ports/21052 jseger Update: x11/xscreensaver o [2000/09/05] conf/21059 marcel `make -jN buildkernel' can't keep source o [2000/09/05] conf/21066 Proposed change in rc scripts o [2000/09/05] misc/21070 marcel default setting of ${SUP} in Makefile.inc o [2000/09/06] bin/21074 davidn chkgrp vs group(5) inconsistency f [2000/09/06] bin/21075 sheldonh top: can't allocate sufficient memory o [2000/09/06] bin/21080 mjacob dump doesn't use eject tape device correc o [2000/09/06] ports/21081 andreas Update port: devel/SpecTcl o [2000/09/06] bin/21086 joe Annoying little bug using ls -G with o [2000/09/07] ports/21088 sumikawa Virtual Hosts don't work under the apache f [2000/09/07] ports/21094 will New port: PHP 3.0.16 - standalone interpr o [2000/09/07] ports/21097 ports new port: net/xtradius o [2000/09/08] ports/21113 ports New port; voicetronix unified telephony A o [2000/09/08] ports/21120 grog Update port: x11-servers/x2x o [2000/09/08] ports/21124 markm Updete port: x11-wm/gwm to 1.8d o [2000/09/08] gnu/21128 a proposed patch for uucp package o [2000/09/09] bin/21142 [PATCH] avoid errors from "make objlink" o [2000/09/09] bin/21144 des [PATCH] fetch(1): don't bonk if ftp SIZE o [2000/09/09] kern/21154 Change the name of *_saver.ko to saver_*. o [2000/09/09] kern/21156 yokota [PATCH] inconsistency in scmouse vs xterm o [2000/09/10] ports/21160 jseger A patch for editors/emacs20 XIM support o [2000/09/10] ports/21168 ports New port: www/apache-contrib s [2000/09/10] bin/21178 ken voltag selector, and unload support for c f [2000/09/10] ports/21179 will New port: math/gul-vdog-qt o [2000/09/10] misc/21180 New USB device vendor / device (sys/dev/u o [2000/09/11] misc/21204 bit_ffc and bit_ffs macros in bitstring.h o [2000/09/11] ports/21211 rse the startup file installed by apache-mods o [2000/09/12] ports/21218 cwt amanda24 should config with --with-buffer o [2000/09/12] kern/21222 wrong behavior of concurrent mmap()s on N o [2000/09/12] kern/21229 Proper value for vfs.nfs.access_cache_tim o [2000/09/12] misc/21230 jhb The URL for splash window is gone o [2000/09/12] bin/21231 roberto the ntp HTML docs don't have the images o [2000/09/12] misc/21239 murray sysinstall doesn't know that block device f [2000/09/12] kern/21240 mbufs allocated to data is huge number in o [2000/09/12] misc/21241 MAKEDEV on fixit floppy should not reset o [2000/09/12] kern/21242 Koutech PCI dual port serial card patch o [2000/09/12] ports/21243 obrien lsof port fails if $(CC) has a space in i o [2000/09/12] ports/21244 will Update port: emulators/xmame o [2000/09/12] bin/21246 nvi's -c flag does no do what it is docum o [2000/09/13] misc/21255 phk /sbin/md5 suggestion o [2000/09/14] bin/21261 burncd blank fails f [2000/09/14] ports/21262 ports Fix port: mail/postfix-current o [2000/09/14] misc/21265 Not a bug, say: feature? o [2000/09/14] misc/21273 PLIP Configuration in sysinstall is broke f [2000/09/14] ports/21286 sobomax [PATCH] ports/graphics/tiff fix o [2000/09/15] misc/21287 "make all" for a jail build fails at lib/ o [2000/09/15] ports/21288 jseger Modify net/trafshow to not destron ${PREF o [2000/09/15] ports/21291 ports New port: Free EcmaScript Interpreter (fe o [2000/09/15] ports/21293 ports An emacs major mode for editing SGML and o [2000/09/15] ports/21296 torstenb [PATCH] INN port is outdated o [2000/09/15] misc/21298 tftpd problem "Socket operation on non-so o [2000/09/16] ports/21307 ports New ports: dsssl-docbook-cygnus-1.44(text o [2000/09/16] kern/21308 Sound Blaster 16 (using pcm) and new DEVF o [2000/09/16] misc/21310 Telnetd locks up when trying to connect v o [2000/09/16] bin/21312 more incorrectly redraws screen on xterm f [2000/09/16] ports/21313 ports vmwarIPv6 and vmware2 panic: Fatal trap 1 o [2000/09/16] bin/21315 Shells often behave oddly when executing o [2000/09/16] kern/21317 [PATCH] LINT and NOTES give false default o [2000/09/16] bin/21321 [PATCHES] Finish the job of conditionaliz o [2000/09/17] ports/21324 dirk mysql port out of date o [2000/09/17] ports/21327 ports Initial ports entry for Bayonne IVR serve o [2000/09/17] ports/21334 trevor update port audio/spiralsynth o [2000/09/17] conf/21339 ssh-keygen: not found o [2000/09/18] ports/21341 ports New port: devel/elib-emacs + devel/elib-e o [2000/09/18] ports/21344 fenner ports/benchmark/netperf missing checksum f [2000/09/18] ports/21345 ports ports/biology/molden has a checksum error f [2000/09/18] ports/21346 ports ports/biology/platon o [2000/09/18] ports/21348 obrien ports/devel/pccts has a checksum error o [2000/09/18] ports/21350 nakai ports/editors/dedit o [2000/09/18] ports/21351 jhb ports/emulators/bfe sourcetarball no long o [2000/09/18] misc/21354 FreeBSD4.1 + SMP + vinum = crashes o [2000/09/18] ports/21356 ports New port: mbone/rat30 (rat-3.0.35), the s s [2000/09/18] kern/21362 bmilekic Adds M_RDONLY to external storage mbufs o [2000/09/18] ports/21365 obrien Update port: comms/conserver o [2000/09/18] ports/21366 sobomax Update port: comms/mserver o [2000/09/18] ports/21367 se Update port: comms/yaps o [2000/09/18] ports/21368 flathill Update port: games/xosmulti o [2000/09/18] ports/21371 bp Update port: net/mars_nwe to 0.99.20 o [2000/09/18] ports/21372 nectar Update port: sysutils/doconfig o [2000/09/18] ports/21382 ports lang/pike port update o [2000/09/18] misc/21385 About daemon_saver o [2000/09/18] ports/21389 ports g2c libraries and compatibility for DJGPP o [2000/09/18] kern/21391 WARNING messages occur when bpf is used w o [2000/09/18] ports/21392 ports New port: converters/tnef - Unpack data f o [2000/09/19] ports/21393 ports Update port: sysutils/lavaps o [2000/09/19] bin/21394 [PATCH] MAKEDEV creates rocketport specia o [2000/09/19] ports/21396 ports New port: net/ghtool - cmdline interface o [2000/09/19] ports/21401 ports Update port sysutils/wmtop to 0.83 with f o [2000/09/19] kern/21402 marcel Linuxulator: getpgid(0) fails o [2000/09/19] bin/21404 bug fix version of GLOBAL (3.56) released o [2000/09/19] kern/21405 Default module patch mismatch between ker o [2000/09/19] kern/21409 The ID for the VIA KT133 chipset is not i o [2000/09/19] kern/21410 ATA driver problems when UDMA66 is used w o [2000/09/19] ports/21411 ports Cyrus-SASL autodetected DB3, but fails to o [2000/09/20] ports/21412 ports New port: net/yaz o [2000/09/20] ports/21413 ports New port: net/zebra-server o [2000/09/20] ports/21414 ports New port: www/mod_zap o [2000/09/20] ports/21415 ports update ports: mail/smapi (new version) o [2000/09/20] ports/21418 jim update gaim make file so that we can use o [2000/09/20] ports/21419 ports update ports: mail/smapi (fix PLIST file) o [2000/09/20] ports/21422 ports msql install fails looking for startup sc o [2000/09/20] ports/21435 ports New port Jakarta Ant (A Java based build o [2000/09/20] bin/21436 pkg_install will not compile without erro o [2000/09/20] ports/21439 ports FIX: mail/postfix-current o [2000/09/20] ports/21441 ports FIX: devel/pcre to install a working pgre o [2000/09/21] ports/21442 ports Upgrade/fix port graphics/avifile (checks o [2000/09/21] i386/21452 cg Add speaker volume adjusting support for o [2000/09/21] ports/21454 lioux Port updates for JX family ports (MAINTAI f [2000/09/21] ports/21455 ports update graphics/giram to 0.1.7 o [2000/09/21] ports/21458 ports MASTER_SITES port update games/crossfire o [2000/09/21] ports/21460 jseger Patch net/trafshow: Allow showing ipv6 p o [2000/09/22] misc/21468 `kerberos' misspelled in etc/kerberos/REA o [2000/09/22] ports/21473 dburr update devel/SN to 4.5.2, not from mainta o [2000/09/22] ports/21474 trevor new port x11/dynamag o [2000/09/22] ports/21475 ports Port broken: xlockmore 4.17.2 o [2000/09/22] bin/21476 ftp in 4.1-STABLE fails on http:// URLs o [2000/09/22] ports/21477 ports New port: xmms-crossfade o [2000/09/22] ports/21481 ports Update port math/abs o [2000/09/22] ports/21482 ports New port: games/gnurobots o [2000/09/22] ports/21485 ports Update: devel/camlp4 o [2000/09/22] ports/21488 ports New port: bmsync, a bookmark converter o [2000/09/22] conf/21489 /etc/pccard_ether feature request o [2000/09/22] ports/21491 billf Too old ethreal version, please update to o [2000/09/22] ports/21493 obrien Updated port emulators/spim 5.9 -> 6.2 o [2000/09/22] misc/21494 ftpd doesn't count a [2000/09/22] ports/21495 ade Evolution calendar crashes on attempt to o [2000/09/23] ports/21497 ports New addition to ports/ o [2000/09/23] ports/21502 ports Upgrade ports/lang/ghc to version 4.08.1 o [2000/09/23] ports/21504 ports New port: korean/tin o [2000/09/23] ports/21505 trevor new port x11-fm/xdiskusage o [2000/09/23] ports/21507 lioux New port emulators/sope (Playstation(tm) o [2000/09/23] ports/21511 ports Update port: security/pam-mysql o [2000/09/23] misc/21512 cdrdao fails to build with SCGLIB o [2000/09/23] ports/21513 ports stunnel port should be compiled using non o [2000/09/24] ports/21515 ports pine4 complains about wrong permissions o o [2000/09/24] ports/21516 ports New FreeBSD port for Fuzz o [2000/09/24] ports/21517 ports start|stop script for upsd (/usr/local/et o [2000/09/24] misc/21518 missed some parametrs o [2000/09/24] bin/21519 sys/dir.h should be deprecated some more o [2000/09/24] ports/21520 ports Configure the synaptics touchpad. o [2000/09/24] kern/21524 Crashs while using talk with another loca o [2000/09/24] ports/21525 lioux Update port: audio/lame (WWW: tag missing o [2000/09/24] ports/21526 billf update graphics/qiv to 1.5, non-maintaine o [2000/09/24] misc/21528 installworld fails in secure/usr.bin/open o [2000/09/24] bin/21531 csh/tcsh provide no way to see/adjust new o [2000/09/24] ports/21532 ports No formal mechanism in place for discussi o [2000/09/24] ports/21533 ports A homebrewer's recipe calculator o [2000/09/24] misc/21534 ipfw + bridging + 4.x release = crash o [2000/09/25] misc/21536 jkh [PATCH] Add Hungarian FTP mirror to sysin o [2000/09/25] ports/21541 ports Replacement for pr 21538 o [2000/09/25] docs/21542 doc sigaction(2) man page is misleading o [2000/09/25] bin/21544 mail.local(8) doesn't allow nobiff option o [2000/09/25] ports/21545 ports emulators/vmware broken... o [2000/09/25] bin/21546 netstat -rn output needs netmask info add o [2000/09/25] ports/21549 gj Update ports: XEmacs21-21.1.12 o [2000/09/25] conf/21551 /etc/services needs a kpop entry o [2000/09/25] ports/21555 ports [PATCH] citrix_ica upgrade to version 6.0 o [2000/09/26] ports/21557 ports New port: MagicCube4D - four-dimensional o [2000/09/26] ports/21558 ports Skill fails to ID os and fails build o [2000/09/26] ports/21564 ports New port: security/sing o [2000/09/26] bin/21567 [PATCH] pkg_version -v confuzzled by mult o [2000/09/26] bin/21570 [PATCH] Add -r option to /usr/bin/mail, q o [2000/09/26] ports/21572 ports Update port: biology/clustalw o [2000/09/26] ports/21573 ports Update port: cad/qcad to 1.4.4 o [2000/09/26] ports/21574 ports Update port: devel/qtez o [2000/09/26] ports/21575 ports Update port: graphics/ImageMagick to 5.2. o [2000/09/26] ports/21576 ports Update port: graphics/gnofract4d to 1.3 o [2000/09/26] ports/21577 ports Update port: graphics/togl o [2000/09/26] misc/21578 sindri@gmx.net o [2000/09/26] ports/21579 ports Update port: graphics/vcg o [2000/09/26] ports/21581 ports Update port: misc/xpns o [2000/09/26] ports/21584 ports mpd whines if kernel has option NETGRAPH o [2000/09/26] ports/21585 ports New port: biology/nab o [2000/09/26] misc/21587 install problem in 4.1-Stable o [2000/09/26] ports/21589 ports Update port: www/udmsearch o [2000/09/27] ports/21594 ports New port: command line SMTP agent o [2000/09/27] ports/21597 ports port of WMusic o [2000/09/27] ports/21598 ports port of wm x10 controller o [2000/09/27] bin/21600 /etc/periodic/daily/460.status-mail-rejec o [2000/09/27] ports/21602 ports misc/sls port lost distfile (by maintaine o [2000/09/27] ports/21604 ports new port: java/jad o [2000/09/28] ports/21607 ports Update port: biology/deft o [2000/09/28] ports/21608 ports Update port: biology/ortep3 o [2000/09/28] ports/21609 ports Update port: biology/povchem o [2000/09/28] ports/21610 ports Update port: databases/sqsh o [2000/09/28] ports/21611 ports Update port: games/gleyes o [2000/09/28] ports/21612 ports Update port: games/xbomber o [2000/09/28] ports/21613 ports Update port: games/xracer o [2000/09/28] ports/21614 ports Update port: graphics/4va o [2000/09/28] ports/21615 ports Update port: print/pdq o [2000/09/28] ports/21616 ports Update port: print/pstotext o [2000/09/28] ports/21617 ports Update port: sysutils/logrotate o [2000/09/28] ports/21618 ports Update port: sysutils/pwgen o [2000/09/28] ports/21619 ports Update port: x11/xkeywrap o [2000/09/28] ports/21620 ports Update port: audio/cd2mp3 o [2000/09/28] ports/21621 reg Update port: devel/libtool to 1.3.5 o [2000/09/28] kern/21623 Chipset SiS630E / NIC SiS 900 o [2000/09/28] kern/21627 Chipset SiS630E / ATA SiS 5591 o [2000/09/28] ports/21630 ports Update of games/KnightCap to recognize CC o [2000/09/28] misc/21634 worms(6) ignores -d option o [2000/09/28] ports/21636 ade gnomelibs PLIST bug f [2000/09/28] ports/21638 ports Update: games/xlifegame o [2000/09/28] misc/21639 It's to easy to accidently tag a pr as Co o [2000/09/28] ports/21640 ports Update: games/xeji o [2000/09/28] ports/21641 ports Port update: fetchmail 5.5.3 o [2000/09/29] misc/21644 /usr/include/sys/mman.h uses a type defin o [2000/09/29] conf/21646 [PATCH] mailer.conf(5) manpage example fi o [2000/09/29] conf/21649 [Patch] rc.conf knob for unaligned access o [2000/09/29] bin/21650 dwmalone inetd doesn't take notice of new auth wit o [2000/09/30] bin/21659 Berkeley db library is statically compile o [2000/09/30] bin/21661 kris SSH connections die when using some X11 a o [2000/09/30] pending/21662gnats-adminjust another product o [2000/09/30] ports/21663 lioux Update port: graphics/avifile to 0.48 (no o [2000/09/30] ports/21664 ports port of gmail gnome email-client o [2000/09/30] ports/21665 trevor new port x11-toolkits/xclasses o [2000/09/30] ports/21666 trevor new port mail/xc-mail o [2000/10/01] ports/21668 ports Update x11-wm/enlightenment o [2000/10/01] ports/21669 ports MAINTAINER new port: graphics/xine o [2000/10/01] ports/21670 ports MAINTAINER: new port: net/arping o [2000/10/01] i386/21672 AMD Duron Rev. A0 reports incorrect L2 ca o [2000/10/01] misc/21673 tail doesn't work correctly on files >=2G o [2000/10/01] misc/21675 Better and more disktab entries for MO dr o [2000/10/01] ports/21678 ports New port: biology/biojava o [2000/10/01] ports/21679 ports New port: biology/biojava o [2000/10/01] ports/21681 ports the startup elisp file of PSGML port has a [2000/10/01] ports/21682 trevor ports/x11-wm/sapphire-themes missing chec o [2000/10/01] kern/21683 Unable to compile kernel after CVSUP. CVS o [2000/10/01] ports/21684 lioux Port update: Makefile cleaning on astro/x o [2000/10/01] gnu/21685 remote gdb: ptrace(PT_GETDBREGS) failed: o [2000/10/01] ports/21687 ports rpm port is out-dated (2.5.6 instead of 3 o [2000/10/01] pending/21689gnats-adminUpdate Port: audio/cdindex to 1.2.0 o [2000/10/02] ports/21691 ports New port: chinese/linux_base o [2000/10/02] conf/21695 ifconfig_XXX_aliasY in rc.conf; Y must be o [2000/10/02] misc/21697 libedit does not #include causi o [2000/10/02] misc/21699 ad4: READ command timeout - resetting\n a o [2000/10/02] docs/21700 doc Description of SysKonnect Gigabit Etherne o [2000/10/02] ports/21703 ports New port: chinese/moefonts-cid 1652 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 Oct 2 11:50: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DB62837B66D for ; Mon, 2 Oct 2000 11:50:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA29748; Mon, 2 Oct 2000 11:50:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from berkeley.us.and.or.jp (berkeley.us.and.or.jp [210.136.4.34]) by hub.freebsd.org (Postfix) with ESMTP id 6FE1937B66D for ; Mon, 2 Oct 2000 11:42:04 -0700 (PDT) Received: (from sa2c@localhost) by berkeley.us.and.or.jp (8.11.0/8.11.0) id e92IfvX61007; Tue, 3 Oct 2000 03:41:57 +0900 (JST) (envelope-from sa2c) Message-Id: <200010021841.e92IfvX61007@berkeley.us.and.or.jp> Date: Tue, 3 Oct 2000 03:41:57 +0900 (JST) From: sa2c@and.or.jp Reply-To: sa2c@and.or.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/21704: enabling fingerd makes files world readable Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21704 >Category: bin >Synopsis: enabling fingerd makes files world readable >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 02 11:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: NIIMI Satoshi >Release: FreeBSD 4.1.1-RELEASE i386 >Organization: >Environment: FreeBSD berkeley.us.and.or.jp 4.1.1-RELEASE FreeBSD 4.1.1-RELEASE #0: Wed Sep 27 00:28:17 JST 2000 sa2c@berkeley.us.and.or.jp:/usr/obj/usr/src/sys/GENERIC i386 >Description: If finger takes full path name as user name, it prints out contents of that file. Because fingerd executes finger as local information provider, finger /path/to/file@some.host prints /path/to/file at some.host. >How-To-Repeat: finger /path/to/file@some.host >Fix: Index: finger.c =================================================================== RCS file: /home/ncvs/src/usr.bin/finger/finger.c,v retrieving revision 1.15.2.3 diff -u -r1.15.2.3 finger.c --- finger.c 2000/09/15 21:51:00 1.15.2.3 +++ finger.c 2000/10/02 18:04:06 @@ -318,26 +318,19 @@ /* * Traverse the list of possible login names and check the login name - * and real name against the name specified by the user. If the name - * begins with a '/', try to read the file of that name instead of - * gathering the traditional finger information. + * and real name against the name specified by the user. */ if (mflag) for (p = argv; *p; ++p) { - if (**p != '/' || !show_text("", *p, "")) { - if (((pw = getpwnam(*p)) != NULL) && !hide(pw)) - enter_person(pw); - else - warnx("%s: no such user", *p); - } + if (((pw = getpwnam(*p)) != NULL) && !hide(pw)) + enter_person(pw); + else + warnx("%s: no such user", *p); } else { while ((pw = getpwent()) != NULL) { for (p = argv, ip = used; *p; ++p, ++ip) - if (**p == '/' && *ip != 1 - && show_text("", *p, "")) - *ip = 1; - else if (match(pw, *p) && !hide(pw)) { + if (match(pw, *p) && !hide(pw)) { enter_person(pw); *ip = 1; } >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 2 11:56:22 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8493E37B503; Mon, 2 Oct 2000 11:56:20 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA34217; Mon, 2 Oct 2000 11:56:20 -0700 (PDT) (envelope-from johan@FreeBSD.org) Date: Mon, 2 Oct 2000 11:56:20 -0700 (PDT) From: Message-Id: <200010021856.LAA34217@freefall.freebsd.org> To: whs@xs4all.nl, johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, dwmalone@FreeBSD.org Subject: Re: misc/21673: tail doesn't work correctly on files >=2GB Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: tail doesn't work correctly on files >=2GB State-Changed-From-To: open->closed State-Changed-By: johan State-Changed-When: Mon Oct 2 11:50:15 PDT 2000 State-Changed-Why: Duplicate of PR 14786. Please do submit the feedback David asked for either to this PR or to PR 14786 by sending mail to 'freebsd-gnats-submit@FreeBSD.org' with either "Re: misc/21673: tail doesn't work correctly on files >=2GB" or "Re: bin/14786: tail breaks on large files" as subject. David wants the feedback if it is sent to this PR. Responsible-Changed-From-To: freebsd-bugs->dwmalone Responsible-Changed-By: johan Responsible-Changed-When: Mon Oct 2 11:50:15 PDT 2000 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=21673 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 2 11:59: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B763B37B502; Mon, 2 Oct 2000 11:59:04 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA36194; Mon, 2 Oct 2000 11:59:04 -0700 (PDT) (envelope-from peter@FreeBSD.org) Date: Mon, 2 Oct 2000 11:59:04 -0700 (PDT) From: Message-Id: <200010021859.LAA36194@freefall.freebsd.org> To: peter@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/21662: just another USB product ID Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Old Synopsis: just another product New Synopsis: just another USB product ID Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: peter Responsible-Changed-When: Mon Oct 2 11:58:45 PDT 2000 Responsible-Changed-Why: misfiled http://www.freebsd.org/cgi/query-pr.cgi?pr=21662 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 2 12: 0:11 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3672337B502; Mon, 2 Oct 2000 12:00:10 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA36869; Mon, 2 Oct 2000 12:00:10 -0700 (PDT) (envelope-from peter@FreeBSD.org) Date: Mon, 2 Oct 2000 12:00:10 -0700 (PDT) From: Message-Id: <200010021900.MAA36869@freefall.freebsd.org> To: mark.rowlands@minmail.net, peter@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/21565: Profiling Timer Expired messages with 4.1 stable and isp driver (qlogic) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Profiling Timer Expired messages with 4.1 stable and isp driver (qlogic) State-Changed-From-To: open->closed State-Changed-By: peter State-Changed-When: Mon Oct 2 11:59:41 PDT 2000 State-Changed-Why: Submitter reports fixed in 4.1.1 via pr 21606 http://www.freebsd.org/cgi/query-pr.cgi?pr=21565 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 2 12: 0:46 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B3BE837B66D; Mon, 2 Oct 2000 12:00:42 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA37249; Mon, 2 Oct 2000 12:00:42 -0700 (PDT) (envelope-from peter@FreeBSD.org) Date: Mon, 2 Oct 2000 12:00:42 -0700 (PDT) From: Message-Id: <200010021900.MAA37249@freefall.freebsd.org> To: mark.rowlands@minmail.net, peter@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/21606: re 21565 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: re 21565 State-Changed-From-To: open->closed State-Changed-By: peter State-Changed-When: Mon Oct 2 12:00:13 PDT 2000 State-Changed-Why: Close report Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: peter Responsible-Changed-When: Mon Oct 2 12:00:13 PDT 2000 Responsible-Changed-Why: orphaned PR http://www.freebsd.org/cgi/query-pr.cgi?pr=21606 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 2 12: 1: 4 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 35E8337B66C; Mon, 2 Oct 2000 12:01:03 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA37495; Mon, 2 Oct 2000 12:01:03 -0700 (PDT) (envelope-from johan@FreeBSD.org) Date: Mon, 2 Oct 2000 12:01:03 -0700 (PDT) From: Message-Id: <200010021901.MAA37495@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, jkh@FreeBSD.org Subject: Re: misc/21629: Duplicate fortune in fortune datafile Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Duplicate fortune in fortune datafile Responsible-Changed-From-To: freebsd-bugs->jkh Responsible-Changed-By: johan Responsible-Changed-When: Mon Oct 2 12:00:13 PDT 2000 Responsible-Changed-Why: Over to fortune maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=21629 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 2 12: 1:21 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8F29537B503; Mon, 2 Oct 2000 12:01:19 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA37694; Mon, 2 Oct 2000 12:01:19 -0700 (PDT) (envelope-from peter@FreeBSD.org) Date: Mon, 2 Oct 2000 12:01:19 -0700 (PDT) From: Message-Id: <200010021901.MAA37694@freefall.freebsd.org> To: peter@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/21653: I need a AD1816 Driver Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: I need a AD1816 Driver Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: peter Responsible-Changed-When: Mon Oct 2 12:00:52 PDT 2000 Responsible-Changed-Why: misfiled PR http://www.freebsd.org/cgi/query-pr.cgi?pr=21653 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 2 12: 1:50 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1772537B503; Mon, 2 Oct 2000 12:01:49 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA38034; Mon, 2 Oct 2000 12:01:49 -0700 (PDT) (envelope-from peter@FreeBSD.org) Date: Mon, 2 Oct 2000 12:01:49 -0700 (PDT) From: Message-Id: <200010021901.MAA38034@freefall.freebsd.org> To: peter@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/21654: Re: nvi's -c flag does no do what it is documented to do. (it does nothing) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Re: nvi's -c flag does no do what it is documented to do. (it does nothing) Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: peter Responsible-Changed-When: Mon Oct 2 12:01:27 PDT 2000 Responsible-Changed-Why: misfiled http://www.freebsd.org/cgi/query-pr.cgi?pr=21654 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 2 12: 2:31 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4B46837B503; Mon, 2 Oct 2000 12:02:30 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA38506; Mon, 2 Oct 2000 12:02:30 -0700 (PDT) (envelope-from peter@FreeBSD.org) Date: Mon, 2 Oct 2000 12:02:30 -0700 (PDT) From: Message-Id: <200010021902.MAA38506@freefall.freebsd.org> To: peter@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/21660: crontab mishandles day range Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: crontab mishandles day range Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: peter Responsible-Changed-When: Mon Oct 2 12:02:01 PDT 2000 Responsible-Changed-Why: misfiled PR http://www.freebsd.org/cgi/query-pr.cgi?pr=21660 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 2 12: 3:30 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A6D5737B66C; Mon, 2 Oct 2000 12:03:28 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA39118; Mon, 2 Oct 2000 12:03:28 -0700 (PDT) (envelope-from peter@FreeBSD.org) Date: Mon, 2 Oct 2000 12:03:28 -0700 (PDT) From: Message-Id: <200010021903.MAA39118@freefall.freebsd.org> To: peter@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/21692: The time_t variable is only 4 bytes long Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Old Synopsis: New Synopsis: The time_t variable is only 4 bytes long Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: peter Responsible-Changed-When: Mon Oct 2 12:02:43 PDT 2000 Responsible-Changed-Why: misfiled PR http://www.freebsd.org/cgi/query-pr.cgi?pr=21692 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 2 12: 4:51 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 487C837B66C; Mon, 2 Oct 2000 12:04:49 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA39933; Mon, 2 Oct 2000 12:04:49 -0700 (PDT) (envelope-from peter@FreeBSD.org) Date: Mon, 2 Oct 2000 12:04:49 -0700 (PDT) From: Message-Id: <200010021904.MAA39933@freefall.freebsd.org> To: peter@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/21693: hwptr went backwards 2112 -> 1312 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Old Synopsis: New Synopsis: hwptr went backwards 2112 -> 1312 Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: peter Responsible-Changed-When: Mon Oct 2 12:04:04 PDT 2000 Responsible-Changed-Why: misfiled PR http://www.freebsd.org/cgi/query-pr.cgi?pr=21693 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 2 12:18:34 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1B13A37B502; Mon, 2 Oct 2000 12:18:33 -0700 (PDT) Received: (from phk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA49938; Mon, 2 Oct 2000 12:18:33 -0700 (PDT) (envelope-from phk@FreeBSD.org) Date: Mon, 2 Oct 2000 12:18:33 -0700 (PDT) From: Message-Id: <200010021918.MAA49938@freefall.freebsd.org> To: wn23590@sgh.waw.pl, phk@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/21692: The time_t variable is only 4 bytes long Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: The time_t variable is only 4 bytes long State-Changed-From-To: open->closed State-Changed-By: phk State-Changed-When: Mon Oct 2 12:16:14 PDT 2000 State-Changed-Why: 1. The timezone didn't change, but Daylight savings time ends in the last weekend of october in the CET timezone. 2. It is far too early to decide what to do about time representation past 2038 at this time. 3. If you have unique needed for time representation, you will need unique methods. 4. A good guess is that we'll adopt a 64bit time_t sometime in the next five years (a 30 year margin seems likely). http://www.freebsd.org/cgi/query-pr.cgi?pr=21692 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 2 13:33: 4 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4061C37B503; Mon, 2 Oct 2000 13:33:02 -0700 (PDT) Received: (from bmah@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA90945; Mon, 2 Oct 2000 13:33:02 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Date: Mon, 2 Oct 2000 13:33:02 -0700 (PDT) From: Message-Id: <200010022033.NAA90945@freefall.freebsd.org> To: bmah@FreeBSD.org, freebsd-bugs@FreeBSD.org, bmah@FreeBSD.org Subject: Re: bin/21567: [PATCH] pkg_version -v confuzzled by multiple versions Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] pkg_version -v confuzzled by multiple versions Responsible-Changed-From-To: freebsd-bugs->bmah Responsible-Changed-By: bmah Responsible-Changed-When: Mon Oct 2 13:31:44 PDT 2000 Responsible-Changed-Why: This isn't quite the right answer, but so many people have asked for some sort of solution to this problem that I'll grab the PR as a reminder. http://www.freebsd.org/cgi/query-pr.cgi?pr=21567 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 2 14:19:15 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A093837B66C; Mon, 2 Oct 2000 14:19:13 -0700 (PDT) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA17662; Mon, 2 Oct 2000 14:19:13 -0700 (PDT) (envelope-from dwmalone@FreeBSD.org) Date: Mon, 2 Oct 2000 14:19:13 -0700 (PDT) From: Message-Id: <200010022119.OAA17662@freefall.freebsd.org> To: dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org, dwmalone@FreeBSD.org Subject: Re: misc/21204: bit_ffc and bit_ffs macros in bitstring.h test 1 byte too many. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: bit_ffc and bit_ffs macros in bitstring.h test 1 byte too many. Responsible-Changed-From-To: freebsd-bugs->dwmalone Responsible-Changed-By: dwmalone Responsible-Changed-When: Mon Oct 2 14:18:08 PDT 2000 Responsible-Changed-Why: I've looked at the patch and it seems correct. Anyone want to review it for me? http://www.freebsd.org/cgi/query-pr.cgi?pr=21204 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 2 14:55:14 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EC4CC37B502; Mon, 2 Oct 2000 14:55:12 -0700 (PDT) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA40894; Mon, 2 Oct 2000 14:55:12 -0700 (PDT) (envelope-from brian@FreeBSD.org) Date: Mon, 2 Oct 2000 14:55:12 -0700 (PDT) From: Message-Id: <200010022155.OAA40894@freefall.freebsd.org> To: dhw@whistle.com, brian@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/21600: /etc/periodic/daily/460.status-mail-rejects is case-sensitive Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: /etc/periodic/daily/460.status-mail-rejects is case-sensitive State-Changed-From-To: open->closed State-Changed-By: brian State-Changed-When: Mon Oct 2 14:54:44 PDT 2000 State-Changed-Why: Committed to -current - thanks. I'll MFC in a week http://www.freebsd.org/cgi/query-pr.cgi?pr=21600 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 2 14:59:46 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2262937B503; Mon, 2 Oct 2000 14:59:45 -0700 (PDT) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA44032; Mon, 2 Oct 2000 14:59:45 -0700 (PDT) (envelope-from brian@FreeBSD.org) Date: Mon, 2 Oct 2000 14:59:45 -0700 (PDT) From: Message-Id: <200010022159.OAA44032@freefall.freebsd.org> To: efutch@nyct.net, brian@FreeBSD.org, freebsd-bugs@FreeBSD.org, brian@FreeBSD.org Subject: Re: conf/21649: [Patch] rc.conf knob for unaligned access warnings on Alpa Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [Patch] rc.conf knob for unaligned access warnings on Alpa State-Changed-From-To: open->analyzed State-Changed-By: brian State-Changed-When: Mon Oct 2 14:58:07 PDT 2000 State-Changed-Why: The patch lacks an addition to rc.conf.5 - any chance of an update ? Responsible-Changed-From-To: freebsd-bugs->brian Responsible-Changed-By: brian Responsible-Changed-When: Mon Oct 2 14:58:07 PDT 2000 Responsible-Changed-Why: I'll do this http://www.freebsd.org/cgi/query-pr.cgi?pr=21649 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 2 15: 8:26 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 758DD37B502; Mon, 2 Oct 2000 15:08:24 -0700 (PDT) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA51048; Mon, 2 Oct 2000 15:08:24 -0700 (PDT) (envelope-from brian@FreeBSD.org) Date: Mon, 2 Oct 2000 15:08:24 -0700 (PDT) From: Message-Id: <200010022208.PAA51048@freefall.freebsd.org> To: barak_enat@yahoo.com, brian@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/21697: libedit does not #include causing some code in read.c to be ifdef'd out Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: libedit does not #include causing some code in read.c to be ifdef'd out State-Changed-From-To: open->closed State-Changed-By: brian State-Changed-When: Mon Oct 2 15:08:04 PDT 2000 State-Changed-Why: Fixed in -current - thanks. I'll MFC in a week. http://www.freebsd.org/cgi/query-pr.cgi?pr=21697 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 2 15:28: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2E1C737B502; Mon, 2 Oct 2000 15:28:05 -0700 (PDT) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA62985; Mon, 2 Oct 2000 15:28:05 -0700 (PDT) (envelope-from brian@FreeBSD.org) Date: Mon, 2 Oct 2000 15:28:05 -0700 (PDT) From: Message-Id: <200010022228.PAA62985@freefall.freebsd.org> To: sa2c@and.or.jp, brian@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/21704: enabling fingerd makes files world readable Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: enabling fingerd makes files world readable State-Changed-From-To: open->closed State-Changed-By: brian State-Changed-When: Mon Oct 2 15:27:47 PDT 2000 State-Changed-Why: Fixed in -current and -stable http://www.freebsd.org/cgi/query-pr.cgi?pr=21704 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 2 16:48:25 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from pike.osd.bsdi.com (pike.osd.bsdi.com [204.216.28.222]) by hub.freebsd.org (Postfix) with ESMTP id C8E2537B502; Mon, 2 Oct 2000 16:48:21 -0700 (PDT) Received: (from sethk@localhost) by pike.osd.bsdi.com (8.11.0/8.9.3) id e92NmKX11364; Mon, 2 Oct 2000 16:48:20 -0700 (PDT) (envelope-from sethk) Date: Mon, 2 Oct 2000 16:48:19 -0700 From: Seth Kingsley To: gnats-admin@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/21654: Re: nvi's -c flag does no do what it is documented to do. (it does nothing) Message-ID: <20001002164819.B76593@osd.bsdi.com> References: <200010021901.MAA38034@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200010021901.MAA38034@freefall.freebsd.org>; from peter@FreeBSD.ORG on Mon, Oct 02, 2000 at 12:01:49PM -0700 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Re: nvi's -c flag does no do what it is documented to do. (it does nothing) I believe that this is part of nvi's compatiblity with traditional Vi in that it will not execute +cmd's when creating a new file to edit. This patch just makes it complain and notes it in the manual page: Index: common/exf.c =================================================================== RCS file: /ncvs/src/contrib/nvi/common/exf.c,v retrieving revision 1.3 diff -u -r1.3 exf.c --- common/exf.c 2000/01/10 09:17:46 1.3 +++ common/exf.c 2000/09/30 02:05:09 @@ -546,14 +546,17 @@ */ nb = 0; gp = sp->gp; - if (gp->c_option != NULL && !F_ISSET(sp->frp, FR_NEWFILE)) { + if (gp->c_option != NULL) { if (db_last(sp, &sp->lno)) return; if (sp->lno == 0) { sp->lno = 1; sp->cno = 0; } - if (ex_run_str(sp, + if (F_ISSET(sp->frp, FR_NEWFILE)) + msgq_str(sp, M_ERR, sp->frp->name, + "318|%s: Warning: +cmd ignored for new file"); + else if (ex_run_str(sp, "-c option", gp->c_option, strlen(gp->c_option), 1, 1)) return; gp->c_option = NULL; Index: docs/USD.doc/vi.man/vi.1 =================================================================== RCS file: /ncvs/src/contrib/nvi/docs/USD.doc/vi.man/vi.1,v retrieving revision 1.4 diff -u -r1.4 vi.1 --- docs/USD.doc/vi.man/vi.1 1997/09/18 06:49:40 1.4 +++ docs/USD.doc/vi.man/vi.1 2000/10/02 19:19:46 @@ -107,7 +107,9 @@ is not limited to positioning commands. This is the POSIX 1003.2 interface for the historic ``+cmd'' syntax. .I Nex/nvi -supports both the old and new syntax. +supports both the old and new syntax. If a +.B \-c +option is used when creating a new file, it is ignored. .TP .B \-e Start editing in ex mode, as if the command name were To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 2 18:39:40 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from mx7.port.ru (mx7.port.ru [194.67.23.44]) by hub.freebsd.org (Postfix) with ESMTP id 01D9137B502 for ; Mon, 2 Oct 2000 18:39:38 -0700 (PDT) Received: from ppp12.access1.zetcom.net.ru ([212.34.50.173] helo=saratov73) by mx7.port.ru with smtp (Exim 3.14 #8) id 13gH3Q-0005Kc-00 for freebsd-bugs@FreeBSD.ORG; Tue, 03 Oct 2000 05:39:36 +0400 From: Íàäåæäà Êàëèíè÷åíêî To: freebsd-bugs@FreeBSD.ORG Subject: Íà ìîé âçãëÿä íåïëîõîé ñïîñîá Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1251 Message-Id: Date: Tue, 03 Oct 2000 05:39:36 +0400 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Óâàæàåìûå ãîñïîäà! Åñòü íåïëîõîé ñïîñîá çàðàáîòàòü êðóãëóþ ñóììó. Ñ óñëîâèÿìè ìîæíî îçíàêîìèòüñÿ íà ñàéòå: http://www.rmi.bos.ru/ _________________ Ïðîñèì ïðîùåíèÿ, åñëè äîñòàâèëè Âàì íåóäîáñòâà. Âàø email áûë âçÿò ñ ýëåêòðîííîé äîñêè îáúÿâëåíèé. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 2 19:30: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B281937B66E for ; Mon, 2 Oct 2000 19:30:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA95926; Mon, 2 Oct 2000 19:30:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 0336337B66C; Mon, 2 Oct 2000 19:26:39 -0700 (PDT) Message-Id: <20001003022639.0336337B66C@hub.freebsd.org> Date: Mon, 2 Oct 2000 19:26:39 -0700 (PDT) From: ismailsyed@schoolcity.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/21713: Getting an error message in Free BSD while loggin in Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21713 >Category: misc >Synopsis: Getting an error message in Free BSD while loggin in >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 02 19:30:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Ismail syed >Release: i386 >Organization: Schoolcity >Environment: Free BSD mail.schoolcity.net 3.2 - Release Free BSD 3.2-Release #0: Tue May 18 04:05:08 GMT 1999 jkh@cathair: /usr/src/sys/compile/GENERIC i386 >Description: The error message that pops up when logged in as 'root' is mail popper[327]:(V2.53) Unable to get canonical name of client, err=0 when trying to connect to this mail server from another machine (through Outlook) it says that it is not able to connect to the mail server >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 2 20:10: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3675E37B66E for ; Mon, 2 Oct 2000 20:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA16796; Mon, 2 Oct 2000 20:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from guru.mired.org (okc-27-149-77.mmcable.com [24.27.149.77]) by hub.freebsd.org (Postfix) with SMTP id C307037B502 for ; Mon, 2 Oct 2000 20:00:41 -0700 (PDT) Received: (qmail 21893 invoked by uid 100); 3 Oct 2000 03:00:41 -0000 Message-Id: <20001003030041.21892.qmail@guru.mired.org> Date: 3 Oct 2000 03:00:41 -0000 From: mwm@mired.org Reply-To: mwm@mired.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: misc/21715: The freebsd mail list digifier loses MIME headers. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21715 >Category: misc >Synopsis: The freebsd mail list digifier loses MIME headers. >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 02 20:10:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mike Meyer >Release: FreeBSD 5.0-CURRENT i386 >Organization: Meyer Consulting >Environment: Subscribed to freebsd-current >Description: Messages that use MIME (either for encoding, attachments, or formatting) don't make it through the digestifier. >How-To-Repeat: Subscribe to, say questions-digest for a while, and watch for mesages in the above three categories. >Fix: Needs to happen on the server; I don't know what mail digistifier is being used, but it needs to forward the MIME headers for such messages. >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 Oct 2 21:40: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 969F137B67E for ; Mon, 2 Oct 2000 21:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA72739; Mon, 2 Oct 2000 21:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from guru.mired.org (okc-27-149-77.mmcable.com [24.27.149.77]) by hub.freebsd.org (Postfix) with SMTP id 8715B37B503 for ; Mon, 2 Oct 2000 21:31:27 -0700 (PDT) Received: (qmail 64196 invoked by uid 100); 3 Oct 2000 04:31:21 -0000 Message-Id: <20001003043121.64195.qmail@guru.mired.org> Date: 3 Oct 2000 04:31:21 -0000 From: mwm@mired.org Reply-To: mwm@mired.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: misc/21716: The site search results *suck*. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21716 >Category: misc >Synopsis: The site search results *suck*. >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 02 21:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mike Meyer >Release: FreeBSD 5.0-CURRENT i386 >Organization: Meyer Consulting >Environment: http://www.freebsd.org/search/search.html >Description: The results returned by the web search engine are nearly useless for figuring out which thing to look at, They consist of the URL, the score (whatever the hell that is), lines (presumably the length of the source file in lines, which meaningless for an HTML file), what looks like it might be a date of some kind, and the archive it came from (which is always www for web site searches). Ok, for mail list searches, it's actually useful - you get the the author and subject (though there is no clear deliniation between them), and the archive is the mail list. The other "search" features have radically different interfaces. >How-To-Repeat: Go to http://www.freebsd.org/, and enter some random word ("disk" works well) in the search gadget and hit go. Observe the URLs. >Fix: At the very least, dig the Title out of the HTML document being indexed! If you have HTML documents without titles, or so ill-formed that they can't reasonably be found, that's a different problem. >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 Oct 2 21:50: 8 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6CAC437B503 for ; Mon, 2 Oct 2000 21:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA78916; Mon, 2 Oct 2000 21:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from ws-ilmar.ints.ru (ws-ilmar.ints.ru [194.67.173.16]) by hub.freebsd.org (Postfix) with ESMTP id CA45437B66C for ; Mon, 2 Oct 2000 21:41:35 -0700 (PDT) Received: (from ilmar@localhost) by ws-ilmar.ints.ru (8.11.1/8.9.3) id e934fXU03141; Tue, 3 Oct 2000 08:41:33 +0400 (MSD) Message-Id: <200010030441.e934fXU03141@ws-ilmar.ints.ru> Date: Tue, 3 Oct 2000 08:41:33 +0400 (MSD) From: ilmar@ints.ru Reply-To: ilmar@ints.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: i386/21717: DOS while opening /dev/audio Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21717 >Category: i386 >Synopsis: DOS while opening /dev/audio >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 02 21:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Ilmar S. Habibulin >Release: FreeBSD 5.0-CURRENT i386 >Organization: Intranet-TS (http://www.ints.ru) >Environment: my kernel config: machine i386 cpu I686_CPU ident WS_ILMAR maxusers 32 options INET #InterNETworking options INET6 #IPv6 communications protocols options IPSEC options IPSEC_ESP options FFS #Berkeley Fast Filesystem options FFS_ROOT #FFS usable as root device [keep this!] options SOFTUPDATES options FFS_EXTATTR options MFS #Memory Filesystem options NFS #Network Filesystem options MSDOSFS #MSDOS Filesystem options CD9660 #ISO 9660 Filesystem options PROCFS #Process filesystem options KERNFS options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!] options UCONSOLE #Allow users to grab the console options KTRACE #ktrace(1) support options SYSVSHM #SYSV-style shared memory options SYSVMSG #SYSV-style message queues options SYSVSEM #SYSV-style semaphores options P1003_1B #Posix P1003_1B real-time extentions options _KPOSIX_PRIORITY_SCHEDULING options KBD_INSTALL_CDEV #options RANDOMDEV device random device isa device pci #options COMPAT_OLDISA # Old ISA driver shims #options COMPAT_OLDPCI # Old PCI driver shims device fdc device ata device atadisk # ATA disk drives device atapicd # ATAPI CDROM drives options ATA_STATIC_ID #Static device numbering options ATA_ENABLE_ATAPI_DMA #Enable DMA on ATAPI devices device atkbdc device atkbd device vga device splash device sc device npx device apm device sio device ppc device ppbus # Parallel port bus (required) device lpt # Printer device plip # TCP/IP over parallel device ppi # Parallel port interface device device miibus # MII bus support device rl # RealTek 8129/8139 device loop # Network loopback device ether # Ethernet support #device sl 1 # Kernel SLIP #device ppp 1 # Kernel PPP device tun # Packet tunnel. device pty # Pseudo-ttys (telnet etc) device md # Memory "disks" device gif 4 # IPv6 and IPv4 tunneling device faith 1 # IPv6-to-IPv4 relaying (translation) device bpf # Berkeley packet filter options COMPAT_LINUX device pcm #device sbc0 at isa? port 0x220 irq 5 drq 1 flags 0x15 #device midi0 device sbc device midi device seq device smbus device smb device intpm my hints for the loader: hint.fdc.0.at="isa" hint.fdc.0.port="0x3F0" hint.fdc.0.irq="6" hint.fdc.0.drq="2" hint.fd.0.at="fdc0" hint.fd.0.drive="0" hint.fd.1.at="fdc0" hint.fd.1.drive="1" hint.ata.0.at="isa" hint.ata.0.port="0x1F0" hint.ata.0.irq="14" hint.ata.1.at="isa" hint.ata.1.port="0x170" hint.ata.1.irq="15" hint.atkbdc.0.at="isa" hint.atkbdc.0.port="0x060" hint.atkbd.0.at="atkbdc" hint.atkbd.0.irq="1" hint.vga.0.at="isa" hint.sc.0.at="isa" hint.npx.0.at="nexus" hint.npx.0.port="0x0F0" hint.npx.0.irq="13" hint.apm.0.at="nexus" hint.apm.0.disabled="1" hint.apm.0.flags="0x20" hint.sio.0.at="isa" hint.sio.0.port="0x3F8" hint.sio.0.flags="0x10" hint.sio.0.irq="4" hint.sio.1.at="isa" hint.sio.1.port="0x2F8" hint.sio.1.irq="3" hint.ppc.0.at="isa" hint.ppc.0.irq="7" hint.sbc.0.at="isa" hint.sbc.0.port="0x220" hint.sbc.0.irq="5" hint.sbc.0.drq="1" hint.sbc.0.flags="0x15" my PCs' dmesg output: Copyright (c) 1992-2000 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.0-CURRENT #1: Sun Oct 1 21:37:21 MSD 2000 root@ws-ilmar.ints.ru:/var/ftp/pub/FreeBSD/current-src/sys/compile/WS_ILMAR Timecounter "i8254" frequency 1193182 Hz CPU: Pentium II/Pentium II Xeon/Celeron (367.50-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x660 Stepping = 0 Features=0x183f9ff real memory = 134152192 (131008K bytes) avail memory = 126685184 (123716K bytes) Preloaded elf kernel "kernel" at 0xc03d8000. seq0-15: Midi sequencers. Pentium Pro MTRR support enabled md0: Malloc disk apm0: on motherboard apm0: found APM BIOS v1.2, connected at v1.2 npx0: on motherboard npx0: INT 16 interface pcib0: at pcibus 0 on motherboard pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0xf000-0xf00f at device 7.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 pci0: at 7.2 irq 11 intpm0: port 0x5000-0x500f irq 9 at device 7.3 on pci0 intpm0: I/O mapped 5000 intpm0: intr IRQ 9 enabled revision 0 smbus0: on intsmb0 smb0: on smbus0 intpm0: PM I/O mapped 4000 pci0: at 9.0 irq 9 rl0: port 0xe400-0xe47f mem 0xe7000000-0xe700007f irq 11 at device 11.0 on pci0 rl0: Ethernet address: 00:c0:df:23:60:e2 miibus0: on rl0 rlphy0: on miibus0 rlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto atkbdc0: at port 0x60,0x64 on isa0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: Generic chipset (NIBBLE-only) in COMPATIBLE mode ppi0: on ppbus0 plip0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port sc0: on isa0 sc0: VGA <16 virtual consoles, flags=0x200> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sbc0: at port 0x220-0x22f,0x388-0x38b,0x330-0x331 irq 5 drq 1,0 on isa0 pcm0: on sbc0 midi0: on sbc0 midi1: on sbc0 unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources IPsec: Initialized Security Association Processing. ad0: 3077MB [6253/16/63] at ata0-master UDMA33 ata1-master: DMA limited to UDMA33, non-ATA66 compliant cable ad2: 19574MB [39770/16/63] at ata1-master tagged UDMA33 acd0: CDROM at ata1-slave using WDMA2 Mounting root from ufs:/dev/ad0s2a WARNING: / was not properly dismounted link_elf: symbol tsleep undefined >Description: While openning /dev/audio PC freeses and i have to use BIG power off button. :( This situation last for about 2-3 months, earlier sound worked. >How-To-Repeat: Just open /dev/audio in midnight commander for ex. (push F3) >Fix: do not use audio at all. ;-) I have to delete audio devs to make kde work. >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 Oct 3 1:30: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9BA5837B66C for ; Tue, 3 Oct 2000 01:30:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA15851; Tue, 3 Oct 2000 01:30:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from guru.mired.org (okc-27-149-77.mmcable.com [24.27.149.77]) by hub.freebsd.org (Postfix) with SMTP id 7995837B503 for ; Tue, 3 Oct 2000 01:23:34 -0700 (PDT) Received: (qmail 3173 invoked by uid 100); 3 Oct 2000 08:23:28 -0000 Message-Id: <20001003082328.3172.qmail@guru.mired.org> Date: 3 Oct 2000 08:23:28 -0000 From: mwm@mired.org Reply-To: mwm@mired.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: conf/21722: The mixer settings are lost on sysetm reboot.s Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21722 >Category: conf >Synopsis: The mixer settings are lost on sysetm reboot.s >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Oct 03 01:30:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mike Meyer >Release: FreeBSD 5.0-CURRENT i386 >Organization: Meyer Consulting >Environment: A system with at least one sound card. >Description: The system mixer settings - possibly carefully tuned by the user - are lost whenever the system goes through a hard shutdown. >How-To-Repeat: Reboot your system so that the mixer settings are at the default values. Find a line input source that's not acceptable at those values, and adjust the mixer settings. Now reboot again, and notice that the values you had saved were gone. >Fix: The following patch (apply in /etc) adds an rc.conf knob to save the mixer settings in /var/db on shutdown, and restore from those files on restart. And I forgot to test the "mixer numbers" case, but shutting down now to do it would lose the PR entry, so... --- rc Tue Oct 3 03:14:55 2000 +++ /etc/rc Tue Oct 3 03:10:50 2000 @@ -276,6 +276,19 @@ ;; esac +# +# If we have saved mixer state and the user wants it restored, do it. +# +case ${mixer_devices} in +[Nn][Oo] | '') + ;; +*) + for settings in /var/db/mixer*.settings; do + mixer -f `echo $settings | sed -e 's/.settings//' -e 's;/var/db;/dev;'` `cat $settings` >/dev/null + done + ;; +esac + # Remove X lock files, since they will prevent you from restarting X11 # after a system crash. # --- rc.shutdown Tue Oct 3 03:14:55 2000 +++ /etc/rc.shutdown Tue Oct 3 03:09:30 2000 @@ -43,6 +43,25 @@ ;; esac +# Save the mixer settings - if the user wants it. +# +case ${mixer_devices} in +[Nn][Oo] | '') + ;; +[Yy][Ee][Ss]) + echo "Saving mixer settings." + rm /var/db/mixer*.settings + /usr/sbin/mixer -s > /var/db/mixer.settings + ;; +*) + echo "Saving mixer settings." + rm /var/db/mixer*.settings + for dev in ${mixer_devices}; do + /usr/sbin/mixer -f /dev/mixer${dev} -s > /var/db/mixer${dev}.settings + done + ;; +esac + # Check if /var/db/mounttab is clean. case $1 in reboot) --- defaults/rc.conf Fri Sep 1 08:37:25 2000 +++ /etc/defaults/rc.conf Tue Oct 3 02:31:22 2000 @@ -298,6 +298,7 @@ start_vinum="" # set to YES to start vinum entropy_file="/var/db/entropy" # Set to NO to disable caching entropy through reboots +mixer_devices="NO" # NO to disable saving, YES for /dev/mixer, or list of mixer numbers ############################################################## ### Define source_rc_confs, the mechanism used by /etc/rc.* ## >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 Oct 3 2:40: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 20A4237B66C for ; Tue, 3 Oct 2000 02:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA64085; Tue, 3 Oct 2000 02:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id CEF7637B503; Tue, 3 Oct 2000 02:30:09 -0700 (PDT) Message-Id: <20001003093009.CEF7637B503@hub.freebsd.org> Date: Tue, 3 Oct 2000 02:30:09 -0700 (PDT) From: razuwaev@relex.ru To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/21723: sa device driver bug Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21723 >Category: kern >Synopsis: sa device driver bug >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 Oct 03 02:40:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Andrew >Release: 4.1-STABLE >Organization: Relex, Ltd. >Environment: FreeBSD p227.relex.ru 4.1-STABLE FreeBSD 4.1-STABLE #12: Mon Sep 25 15:50:49 MSD 2000 amass@p227.relex.ru:/usr/src/sys/compile/KERNEL-A i386 >Description: f=open("/dev/nrsa0",O_RDWR); write(f, buf, size); ioctl(fd, MTIOCRDSPOS, &offs); This sequence hangs up the task on waiting disk operation. Driver waits for awake on sys/cam/cam_periph.c : cam_periph_getccb() on tsleep(&periph->ccb_list, PRIBIO, "cgticb", 0); >How-To-Repeat: f=open("/dev/nrsa0",O_RDWR); write(f, buf, size); ioctl(fd, MTIOCRDSPOS, &offs); >Fix: This problem is fixed by replace : ccb = cam_periph_getccb(periph, 1); if (softc->flags & SA_FLAG_TAPE_WRITTEN) { error = sawritefilemarks(periph, 0, 0); if (error && error != EACCES) return (error); } to : if (softc->flags & SA_FLAG_TAPE_WRITTEN) { error = sawritefilemarks(periph, 0, 0); if (error && error != EACCES) return (error); } ccb = cam_periph_getccb(periph, 1); >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 3 4:30: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8D8FA37B502 for ; Tue, 3 Oct 2000 04:30:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA23389; Tue, 3 Oct 2000 04:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 3 Oct 2000 04:30:03 -0700 (PDT) Message-Id: <200010031130.EAA23389@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Salvo Bartolotta Subject: Re: conf/21722: The mixer settings are lost on sysetm reboot.s Reply-To: Salvo Bartolotta Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR conf/21722; it has been noted by GNATS. From: Salvo Bartolotta To: mwm@mired.org Cc: freebsd-gnats-submit@freebsd.org Subject: Re: conf/21722: The mixer settings are lost on sysetm reboot.s Date: Tue, 03 Oct 2000 12:22:07 GMT >>>>>>>>>>>>>>>>>> Original Message <<<<<<<<<<<<<<<<<< On 10/3/00, 9:23:28 AM, mwm@mired.org wrote regarding conf/21722: The mixer settings are lost on sysetm reboot.s: > >Number: 21722 > >Category: conf > >Synopsis: The mixer settings are lost on sysetm reboot.s > >Confidential: no > >Severity: non-critical > >Priority: medium > >Responsible: freebsd-bugs > >State: open > >Quarter: > >Keywords: > >Date-Required: > >Class: sw-bug > >Submitter-Id: current-users > >Arrival-Date: Tue Oct 03 01:30:00 PDT 2000 > >Closed-Date: > >Last-Modified: > >Originator: Mike Meyer > >Release: FreeBSD 5.0-CURRENT i386 > >Organization: > Meyer Consulting > >Environment: > A system with at least one sound card. > >Description: > The system mixer settings - possibly carefully tuned by the user= - > are lost whenever the system goes through a hard shutdown. > >How-To-Repeat: > Reboot your system so that the mixer settings are at the default= > values. Find a line input source that's not acceptable at those > values, and adjust the mixer settings. Now reboot again, and notice > that the values you had saved were gone. > >Fix: > The following patch (apply in /etc) adds an rc.conf knob to save the > mixer settings in /var/db on shutdown, and restore from those files on= > restart. > And I forgot to test the "mixer numbers" case, but shutting down now > to do it would lose the PR entry, so... > --- rc Tue Oct 3 03:14:55 2000 > +++ /etc/rc Tue Oct 3 03:10:50 2000 > @@ -276,6 +276,19 @@ > ;; > esac > +# > +# If we have saved mixer state and the user wants it restored, do it.= > +# > +case ${mixer_devices} in > +[Nn][Oo] | '') > + ;; > +*) > + for settings in /var/db/mixer*.settings; do > + mixer -f `echo $settings | sed -e 's/.settings//' -e 's;/var/db;/dev;'` `cat $settings` >/dev/null > + done > + ;; > +esac > + > # Remove X lock files, since they will prevent you from restarting X11 > # after a system crash. > # > --- rc.shutdown Tue Oct 3 03:14:55 2000 > +++ /etc/rc.shutdown Tue Oct 3 03:09:30 2000 > @@ -43,6 +43,25 @@ > ;; > esac > +# Save the mixer settings - if the user wants it. > +# > +case ${mixer_devices} in > +[Nn][Oo] | '') > + ;; > +[Yy][Ee][Ss]) > + echo "Saving mixer settings." > + rm /var/db/mixer*.settings > + /usr/sbin/mixer -s > /var/db/mixer.settings > + ;; > +*) > + echo "Saving mixer settings." > + rm /var/db/mixer*.settings > + for dev in ${mixer_devices}; do > + /usr/sbin/mixer -f /dev/mixer${dev} -s > /var/db/mixer${dev}.settings > + done > + ;; > +esac > + > # Check if /var/db/mounttab is clean. > case $1 in > reboot) > --- defaults/rc.conf Fri Sep 1 08:37:25 2000 > +++ /etc/defaults/rc.conf Tue Oct 3 02:31:22 2000 > @@ -298,6 +298,7 @@ > start_vinum=3D"" # set to YES to start vinum > entropy_file=3D"/var/db/entropy" > # Set to NO to disable caching entropy through reboots > +mixer_devices=3D"NO" # NO to disable saving, YES for /dev/mixer, or= list of mixer numbers > ############################################################## > ### Define source_rc_confs, the mechanism used by /etc/rc.* ## Dear Mike Meyer, Under -STABLE, I had solved this "problem" at a user level as follows:
# # $FreeBSD: src/share/skel/dot.login,v 1.11.2.2 1999/12/13 05:47:28 # dcs Exp $ # # .login - csh login script, read by login shell, # after `.cshrc' at login. # # see also csh(1), environ(7). # # Cdcontrol-related stuff setenv MUSIC_CD /dev/acd0c mixer dev vol 100 100 > /dev/null mixer dev igain 75 75 > /dev/null mixer dev ogain 75 75 > /dev/null mixer dev pcm 33 33 > /dev/null mixer dev cd 100 100 > /dev/null mixer dev mic 0 0 > /dev/null mixer dev speaker 0 0 > /dev/null mixer dev line 0 0 > /dev/null mixer dev bass 90 90 > /dev/null mixer dev treble 90 90 > /dev/null mixer dev synth 90 90 > /dev/null # I determined the above settings by trial and error. # Your mileage may vary.
Whether I use cdcontrol (when working in CUI/CLI), or KDE cdplayer (when working in GUI), the settings are preserved. There is more than one way to do it(tm) :-) Best regards, Salvo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 3 5: 0: 8 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 089D837B66E for ; Tue, 3 Oct 2000 05:00:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA39939; Tue, 3 Oct 2000 05:00:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from chagford.netcraft.com (chagford.netcraft.com [195.188.192.48]) by hub.freebsd.org (Postfix) with ESMTP id F19F437B66C for ; Tue, 3 Oct 2000 04:52:54 -0700 (PDT) Received: (from root@localhost) by chagford.netcraft.com (8.11.0/8.9.3) id e93Bt7V00813; Tue, 3 Oct 2000 12:55:07 +0100 (BST) (envelope-from jez) Message-Id: <200010031155.e93Bt7V00813@chagford.netcraft.com> Date: Tue, 3 Oct 2000 12:55:07 +0100 (BST) From: jez@netcraft.com (Jeremy Prior) Reply-To: jez@netcraft.com (Jeremy Prior) To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/21725: mtree + symlinks == DoS Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21725 >Category: bin >Synopsis: mtree follows symlinks! >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 Oct 03 05:00:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Jeremy Prior >Release: FreeBSD 4.1-STABLE i386 >Organization: Netcraft Ltd >Environment: Bog-standard FreeBSD 4.1-STABLE installation >Description: Why, oh why does mtree(8) follow symlinks? >How-To-Repeat: % mkdir test ; cd test % ln -s / foo % mtree -c >Fix: Here's a patch that adds -P and -L switches to mtree - cribbed from du(1). -P prevents mtree from following symlinks, but I've left the default as -L. I see no point in adding the -H, as mtree does a chdir to the named directory, but this could be added easily. Finally, this patch seems to fix problem report bin/21017 as well, making the link itself part of the report, rather than what its pointing at. -- CUT HERE -- cvs diff: Diffing . Index: mtree.8 =================================================================== RCS file: /usr/cvs/src/usr.sbin/mtree/mtree.8,v retrieving revision 1.16.2.3 diff -u -r1.16.2.3 mtree.8 --- mtree.8 2000/06/30 09:54:06 1.16.2.3 +++ mtree.8 2000/10/02 17:01:14 @@ -40,7 +40,7 @@ .Nd map a directory hierarchy .Sh SYNOPSIS .Nm mtree -.Op Fl cdeinrUux +.Op Fl cdeiLnPrUux .Op Fl f Ar spec .Op Fl K Ar keywords .Op Fl k Ar keywords @@ -85,6 +85,8 @@ Use the ``type'' keyword plus the specified (whitespace or comma separated) .Ar keywords instead of the current set of keywords. +.It Fl L +Symbolic links in file hierarchies are followed (default). .It Fl n Do not emit pathname comments when creating a specification. Normally a comment is emitted before each directory and before the close of that @@ -95,6 +97,8 @@ Use the file hierarchy rooted in .Ar path , instead of the current directory. +.It Fl P +No symbolic links are followed. .It Fl r Remove any files in the file hierarchy that are not described in the specification. Index: mtree.c =================================================================== RCS file: /usr/cvs/src/usr.sbin/mtree/mtree.c,v retrieving revision 1.8.2.1 diff -u -r1.8.2.1 mtree.c --- mtree.c 2000/05/15 20:49:59 1.8.2.1 +++ mtree.c 2000/10/02 16:59:18 @@ -57,8 +57,9 @@ extern long int crc_total; -int ftsoptions = FTS_LOGICAL; +int ftsoptions = 0; int cflag, dflag, eflag, iflag, nflag, rflag, sflag, uflag, Uflag; +int Lflag, Pflag; u_int keys; char fullpath[MAXPATHLEN]; @@ -77,7 +78,7 @@ keys = KEYDEFAULT; init_excludes(); - while ((ch = getopt(argc, argv, "cdef:iK:k:np:rs:UuxX:")) != -1) + while ((ch = getopt(argc, argv, "cdef:iK:k:Lnp:Prs:UuxX:")) != -1) switch((char)ch) { case 'c': cflag = 1; @@ -106,12 +107,22 @@ if (*p != '\0') keys |= parsekey(p, NULL); break; + case 'L': + if (Pflag) + usage(); + Lflag = 1; + break; case 'n': nflag = 1; break; case 'p': dir = optarg; break; + case 'P': + if (Lflag) + usage(); + Pflag = 1; + break; case 'r': rflag = 1; break; @@ -143,6 +154,18 @@ if (argc) usage(); + if (Lflag + Pflag > 1) + usage(); + + if (Lflag + Pflag == 0) + Lflag = 1; /* -L (follow symlinks) default */ + + if (Lflag) + ftsoptions |= FTS_LOGICAL; + + if (Pflag) + ftsoptions |= FTS_PHYSICAL; + if (dir && chdir(dir)) err(1, "%s", dir); @@ -163,7 +186,7 @@ usage() { (void)fprintf(stderr, -"usage: mtree [-cdeinrUux] [-f spec] [-K key] [-k key] [-p path] [-s seed]\n" +"usage: mtree [-cdeiLnPrUux] [-f spec] [-K key] [-k key] [-p path] [-s seed]\n" "\t[-X excludes]\n"); exit(1); } -- CUT HERE -- >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 Oct 3 8:10: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2334E37B66C for ; Tue, 3 Oct 2000 08:10:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA30841; Tue, 3 Oct 2000 08:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 3 Oct 2000 08:10:03 -0700 (PDT) Message-Id: <200010031510.IAA30841@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Matthew Jacob Subject: Re: kern/21723: sa device driver bug Reply-To: Matthew Jacob Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/21723; it has been noted by GNATS. From: Matthew Jacob To: razuwaev@relex.ru Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: kern/21723: sa device driver bug Date: Tue, 3 Oct 2000 08:08:01 -0700 (PDT) Good spotting, thanks... On Tue, 3 Oct 2000 razuwaev@relex.ru wrote: > > >Number: 21723 > >Category: kern > >Synopsis: sa device driver bug > >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 Oct 03 02:40:00 PDT 2000 > >Closed-Date: > >Last-Modified: > >Originator: Andrew > >Release: 4.1-STABLE > >Organization: > Relex, Ltd. > >Environment: > FreeBSD p227.relex.ru 4.1-STABLE > FreeBSD 4.1-STABLE #12: Mon Sep 25 15:50:49 MSD 2000 > amass@p227.relex.ru:/usr/src/sys/compile/KERNEL-A i386 > >Description: > f=open("/dev/nrsa0",O_RDWR); > write(f, buf, size); > ioctl(fd, MTIOCRDSPOS, &offs); > This sequence hangs up the task on waiting disk operation. > Driver waits for awake on sys/cam/cam_periph.c : cam_periph_getccb() on > tsleep(&periph->ccb_list, PRIBIO, "cgticb", 0); > > >How-To-Repeat: > f=open("/dev/nrsa0",O_RDWR); > write(f, buf, size); > ioctl(fd, MTIOCRDSPOS, &offs); > > >Fix: > This problem is fixed by replace : > ccb = cam_periph_getccb(periph, 1); > if (softc->flags & SA_FLAG_TAPE_WRITTEN) { > error = sawritefilemarks(periph, 0, 0); > if (error && error != EACCES) > return (error); > } > to : > if (softc->flags & SA_FLAG_TAPE_WRITTEN) { > error = sawritefilemarks(periph, 0, 0); > if (error && error != EACCES) > return (error); > } > ccb = cam_periph_getccb(periph, 1); > > > > >Release-Note: > >Audit-Trail: > >Unformatted: > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-bugs" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 3 9: 0: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C8BE837B503 for ; Tue, 3 Oct 2000 09:00:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA80623; Tue, 3 Oct 2000 09:00:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id BA5CB37B502; Tue, 3 Oct 2000 08:57:00 -0700 (PDT) Message-Id: <20001003155700.BA5CB37B502@hub.freebsd.org> Date: Tue, 3 Oct 2000 08:57:00 -0700 (PDT) From: buckshot70@my-deja.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/21728: KDE won't start with kernel_securelevel="2"; no warning of this is given when setting security level. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21728 >Category: misc >Synopsis: KDE won't start with kernel_securelevel="2"; no warning of this is given when setting security level. >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 Oct 03 09:00:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Nathan W. >Release: 4.1.1-RELEASE >Organization: >Environment: >Description: After changing the security level to "high" using /stand/sysinstall, the following error is given when trying to start KDE 1.1.2: Fatal server error: xf86OpenConsole: KDENABIO failed (operation not permitted) >How-To-Repeat: Install KDE 1.1.2, use /stand/sysinstall to set security level to "high," and startx. >Fix: Edit /etc/rc.conf and set kern_securelevel_enable="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 Oct 3 9:20: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A8E8437B66E for ; Tue, 3 Oct 2000 09:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA97199; Tue, 3 Oct 2000 09:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 06BE537B66D; Tue, 3 Oct 2000 09:10:24 -0700 (PDT) Message-Id: <20001003161024.06BE537B66D@hub.freebsd.org> Date: Tue, 3 Oct 2000 09:10:24 -0700 (PDT) From: c6re@sdsumus.sdstate.edu To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: conf/21729: Using /stand/sysinstall to set security level to "medium" doesn't reduce kern_securelevel in /etc/rc.conf if security level was previously set to "high". Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21729 >Category: conf >Synopsis: Using /stand/sysinstall to set security level to "medium" doesn't reduce kern_securelevel in /etc/rc.conf if security level was previously set to "high". >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: Tue Oct 03 09:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Nathan W. >Release: 4.1.1-RELEASE >Organization: >Environment: FreeBSD Guitarman.SDSTATE.EDU 4.1.1-RELEASE FreeBSD 4.1.1-RELEASE #0 Tue Sep 26 00:46:59 GMT 2000 jkh@narf.osd.bsdi.com:/usr/src/sys/compile/GENERIC i386 >Description: After using /stand/sysinstall to set security level to "high," kern_securelevel="2" is added to /etc/rc.conf. If /stand/sysinstall is later used to set security level to "moderate," kern_securelevel="2" is not overridden, thus the kernel security level remains at 2. >How-To-Repeat: Use /stand/sysinstall to set security level to "high," then use /stand/sysinstall to set security level to "moderate." >Fix: Manually edit /etc/rc.conf to set kern_securelevel to the desired level. >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 Oct 3 11: 0: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8DB5737B502 for ; Tue, 3 Oct 2000 11:00:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA72046; Tue, 3 Oct 2000 11:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 3 Oct 2000 11:00:04 -0700 (PDT) Message-Id: <200010031800.LAA72046@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Garrett Wollman Subject: bin/21659: Berkeley db library is statically compiled into libc, which make use of newer BDB very difficult, if possible at all Reply-To: Garrett Wollman Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/21659; it has been noted by GNATS. From: Garrett Wollman To: matrix@ipform.ru Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: bin/21659: Berkeley db library is statically compiled into libc, which make use of newer BDB very difficult, if possible at all Date: Tue, 3 Oct 2000 13:50:11 -0400 (EDT) < Stop statically linking libdb into libc. Make a separate libdb > library, so user can easily upgrade berkeley db library when newer > releases are available. Impractical. Several important libc functions depend on having databases available. Something which exports an ndbm-compatible interface is required by SUSv3/POSIX.1-200x. The on-disk file formats are in any case incompatible between db 1.x and db y.x for all y > 1. -GAWollman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 3 12:10:34 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7FD7137B502; Tue, 3 Oct 2000 12:10:31 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA18087; Tue, 3 Oct 2000 12:10:31 -0700 (PDT) (envelope-from johan@FreeBSD.org) Date: Tue, 3 Oct 2000 12:10:31 -0700 (PDT) From: Message-Id: <200010031910.MAA18087@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, n_hibma@FreeBSD.org Subject: Re: kern/21662: just another USB product ID Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: just another USB product ID Responsible-Changed-From-To: freebsd-bugs->n_hibma Responsible-Changed-By: johan Responsible-Changed-When: Tue Oct 3 12:10:00 PDT 2000 Responsible-Changed-Why: Over to USB maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=21662 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 3 12:10:39 2000 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 AA45337B66D for ; Tue, 3 Oct 2000 12:10:24 -0700 (PDT) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.9.3/8.9.3) id PAA43095; Tue, 3 Oct 2000 15:10:02 -0400 (EDT) (envelope-from wollman) Date: Tue, 3 Oct 2000 15:10:02 -0400 (EDT) From: Garrett Wollman Message-Id: <200010031910.PAA43095@khavrinen.lcs.mit.edu> To: Bruce Evans Cc: freebsd-bugs@FreeBSD.ORG, freebsd-standards@khavrinen.lcs.mit.edu Subject: Re: misc/21644: /usr/include/sys/mman.h uses a type defined in /usr/include/sys/types.h In-Reply-To: References: <200009291628.MAA92746@khavrinen.lcs.mit.edu> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org < said: > Not precisely the change in the PR. has too much namespace > pollution to include nested. The correct change (unless P1003.1-200x is > so broken as to require everything that may be in a POSIX > to be declared in ) is to replace mode_t by a basic type that > is compatible with mode_t and whose name is not in the application namespace. In certain instances, POSIX actually requires that the types themselves be defined; for example, is required to cause the definition of the types `blkcnt_t', `blksize_t', `dev_t', `ino_t', `mode_t', `nlink_t', `uid_t', `gid_t', `off_t', and `time_t' from . This suggests to me that we may need to use the _BSD_SIZE_T trick on many or all of the types in question. If we can centralize these definitions it would be better than allowing the various _t types to potentially become desynchronized with their consumers. -GAWollman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 3 12:16: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6CC2A37B502; Tue, 3 Oct 2000 12:16:04 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA21392; Tue, 3 Oct 2000 12:16:04 -0700 (PDT) (envelope-from johan@FreeBSD.org) Date: Tue, 3 Oct 2000 12:16:04 -0700 (PDT) From: Message-Id: <200010031916.MAA21392@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, wpaul@FreeBSD.org Subject: Re: kern/21623: Chipset SiS630E / NIC SiS 900 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Chipset SiS630E / NIC SiS 900 Responsible-Changed-From-To: freebsd-bugs->wpaul Responsible-Changed-By: johan Responsible-Changed-When: Tue Oct 3 12:15:38 PDT 2000 Responsible-Changed-Why: Over to if_sis maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=21623 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 3 12:23:40 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 859DD37B503; Tue, 3 Oct 2000 12:23:38 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA25134; Tue, 3 Oct 2000 12:23:38 -0700 (PDT) (envelope-from johan@FreeBSD.org) Date: Tue, 3 Oct 2000 12:23:38 -0700 (PDT) From: Message-Id: <200010031923.MAA25134@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, msmith@FreeBSD.org Subject: Re: kern/21686: 3ware twe driver not working properly with 6000 series cards Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: 3ware twe driver not working properly with 6000 series cards Responsible-Changed-From-To: freebsd-bugs->msmith Responsible-Changed-By: johan Responsible-Changed-When: Tue Oct 3 12:22:54 PDT 2000 Responsible-Changed-Why: Over to twe maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=21686 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 3 12:25:28 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8EAE237B502; Tue, 3 Oct 2000 12:25:26 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA26012; Tue, 3 Oct 2000 12:25:26 -0700 (PDT) (envelope-from johan@FreeBSD.org) Date: Tue, 3 Oct 2000 12:25:26 -0700 (PDT) From: Message-Id: <200010031925.MAA26012@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, murray@FreeBSD.org Subject: Re: misc/21701: Keymap selection menu broken on initial installation Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Keymap selection menu broken on initial installation Responsible-Changed-From-To: freebsd-bugs->murray Responsible-Changed-By: johan Responsible-Changed-When: Tue Oct 3 12:24:40 PDT 2000 Responsible-Changed-Why: This sound like a sysinstall problem :-) http://www.freebsd.org/cgi/query-pr.cgi?pr=21701 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 3 13:56:18 2000 Delivered-To: freebsd-bugs@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 618) id 9E8CC37B503; Tue, 3 Oct 2000 13:56:15 -0700 (PDT) Subject: Re: kern/21623: Chipset SiS630E / NIC SiS 900 In-Reply-To: <200010031916.MAA21392@freefall.freebsd.org> from "johan@FreeBSD.org" at "Oct 3, 2000 12:16:04 pm" To: roland@serv.ch Date: Tue, 3 Oct 2000 13:56:15 -0700 (PDT) Cc: freebsd-bugs@freebsd.org X-Mailer: ELM [version 2.4ME+ PL54 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Message-Id: <20001003205615.9E8CC37B503@hub.freebsd.org> From: wpaul@FreeBSD.ORG (Bill Paul) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Synopsis: Chipset SiS630E / NIC SiS 900 Ok. According to the SiS630 datasheet, the embedded SiS 900 controller in this chipset differs slightly from the standalone chip in that the EEPROM control register doubles as a HomePNA PHY control register. You have to clear bit 7 in the EEPROM control register in order to select the EEPROM control function. I think this may be the problem, but I can't be certain since I don't have a board with that chipset that I can test with. I'm including a patch for you to try with the if_sis driver. If this works, please let me know so I can merge it into the tree. -Bill *** if_sis.c.orig Tue Aug 22 16:26:51 2000 --- if_sis.c Tue Oct 3 13:43:48 2000 *************** *** 348,353 **** --- 348,363 ---- int i; u_int16_t word = 0, *ptr; + /* + * The embedded SiS 900 ethernet in the SiS 630E + * chipset (ab)uses the EEPROM control register as a + * HomePNA PHY control register, so we need to make sure + * to select the EEPROM control function here. For a + * regular SiS 900, this has no effect. + */ + if (sc->sis_type == SIS_TYPE_900) + SIS_CLRBIT(sc, SIS_EECTL, SIS_EECTL_EESEL); + for (i = 0; i < cnt; i++) { sis_eeprom_getword(sc, off + i, &word); ptr = (u_int16_t *)(dest + (i * 2)); *** if_sisreg.h.orig Tue Aug 22 16:26:51 2000 --- if_sisreg.h Tue Oct 3 13:36:01 2000 *************** *** 112,117 **** --- 112,118 ---- #define SIS_EECTL_DOUT 0x00000002 #define SIS_EECTL_CLK 0x00000004 #define SIS_EECTL_CSEL 0x00000008 + #define SIS_EECTL_EESEL 0x00000080 #define SIS_EECMD_WRITE 0x140 #define SIS_EECMD_READ 0x180 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 3 14:50: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1130F37B503 for ; Tue, 3 Oct 2000 14:50:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA17200; Tue, 3 Oct 2000 14:50:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from athserv.otenet.gr (athserv.otenet.gr [195.170.0.1]) by hub.freebsd.org (Postfix) with ESMTP id E947137B503 for ; Tue, 3 Oct 2000 14:48:06 -0700 (PDT) Received: from hades.hell.gr (patr530-b052.otenet.gr [195.167.121.180]) by athserv.otenet.gr (8.10.1/8.10.1) with ESMTP id e93Lkod05268 for ; Wed, 4 Oct 2000 00:46:51 +0300 (EET DST) Received: (from charon@localhost) by hades.hell.gr (8.11.0/8.11.0) id e93LlAl04340; Wed, 4 Oct 2000 00:47:10 +0300 (EEST) Message-Id: <200010032147.e93LlAl04340@hades.hell.gr> Date: Wed, 4 Oct 2000 00:47:10 +0300 (EEST) From: Giorgos Keramidas To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/21734: calendar(1) usage message correction Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21734 >Category: bin >Synopsis: Correction to calendar(1) usage message >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: Tue Oct 03 14:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Giorgos Keramidas >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: % uname -a FreeBSD hades.hell.gr 4.1-STABLE FreeBSD 4.1-STABLE #0: Tue Sep 26 02:30:46 EEST 2000 root@hades.hell.gr:/usr/src/sys/compile/HADES i386 >Description: The manpage of calendar(1) describes the -t option, but the usage message that is printed when the command is used with an invalid option does not include the description of -t. >How-To-Repeat: % man calendar [ look for description of -t option ] % calendar -h calendar: illegal option -- h usage: calendar [-a] [-A days] [-B days] [-f calendarfile] >Fix: The following small patch corrects this. diff -r -u -N /usr/src/usr.bin/calendar/calendar.c calendar/calendar.c --- /usr/src/usr.bin/calendar/calendar.c Sat Aug 26 05:50:59 2000 +++ calendar/calendar.c Tue Oct 3 23:32:17 2000 @@ -135,7 +135,7 @@ usage() { (void)fprintf(stderr, - "usage: calendar [-a] [-A days] [-B days] [-f calendarfile]\n"); + "usage: calendar [-a] [-A days] [-B days] [-f calendarfile] [-t dd[.mm[.year]]]\n"); exit(1); } >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 3 15:10: 8 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 98EFE37B66C for ; Tue, 3 Oct 2000 15:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA25393; Tue, 3 Oct 2000 15:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from modemcable101.200-201-24.mtl.mc.videotron.ca (modemcable140.61-201-24.mtl.mc.videotron.ca [24.201.61.140]) by hub.freebsd.org (Postfix) with SMTP id 635C237B66C for ; Tue, 3 Oct 2000 15:02:47 -0700 (PDT) Received: (qmail 13825 invoked by alias); 3 Oct 2000 22:02:46 -0000 Received: (qmail 13821 invoked from network); 3 Oct 2000 22:02:46 -0000 Received: from nitro.local.mindstep.com (qmailr@192.168.10.2) by jacuzzi.local.mindstep.com with SMTP; 3 Oct 2000 22:02:46 -0000 Received: (qmail 3915 invoked by uid 0); 3 Oct 2000 22:06:14 -0000 Message-Id: <20001003220614.3914.qmail@nitro.local.mindstep.com> Date: 3 Oct 2000 22:06:14 -0000 From: patrick@mindstep.com Reply-To: patrick@mindstep.com To: freefall-gnats@mindstep.com Subject: kern/21735: Let ipfw increment rules by arbitrary amount Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21735 >Category: kern >Synopsis: Let ipfw increment rules by arbitrary amount >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 Oct 03 15:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Patrick Bihan-Faou >Release: FreeBSD 4.1.1-STABLE i386 >Organization: MindStep Corporation >Environment: FreeBSD nitro 4.1.1-STABLE FreeBSD 4.1.1-STABLE #0: Tue Oct 3 17:42:33 EDT 2000 patrick@nitro:/music/usr_obj/music/usr_src/sys/NITRO i386 Source code CVSup'd today >Description: The following patch adds a sysctl variable to set the amount by which the rule numbers are incremented when they are not specified on the command line. This is usefull to create large rule sets with variable number of rules. The following patch to sys/inet/ip_fw.c and sbin/ipfw/ipfw.8 are based on the code in the RELENG_4 branch. Loca testing was done. >How-To-Repeat: n/a >Fix: --- sys/netinet/ip_fw.c.orig Tue Oct 3 13:49:23 2000 +++ sys/netinet/ip_fw.c Tue Oct 3 14:01:36 2000 @@ -78,6 +78,7 @@ #else static int fw_verbose_limit = 0; #endif +static int fw_auto_increment = 100; static u_int64_t counter; /* counter for ipfw_report(NULL...) */ struct ipfw_flow_id last_pkt ; @@ -102,6 +103,8 @@ &fw_verbose, 0, "Log matches to ipfw rules"); SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, verbose_limit, CTLFLAG_RW, &fw_verbose_limit, 0, "Set upper limit of matches of ipfw rules logged"); +SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, auto_increment, CTLFLAG_RW, + &fw_auto_increment, 0, "Amount by which to increment rule numbers when it is not specified"); #if STATEFUL /* @@ -1458,7 +1461,7 @@ return(0); } - /* If entry number is 0, find highest numbered rule and add 100 */ + /* If entry number is 0, find highest numbered rule and add fw_auto_increment */ if (ftmp->fw_number == 0) { for (fcp = LIST_FIRST(chainptr); fcp; fcp = LIST_NEXT(fcp, chain)) { if (fcp->rule->fw_number != (u_short)-1) @@ -1466,8 +1469,8 @@ else break; } - if (nbr < IPFW_DEFAULT_RULE - 100) - nbr += 100; + if (nbr < IPFW_DEFAULT_RULE - fw_auto_increment) + nbr += fw_auto_increment; ftmp->fw_number = nbr; } --- sbin/ipfw/ipfw.8.orig Tue Oct 3 14:11:34 2000 +++ sbin/ipfw/ipfw.8 Tue Oct 3 14:15:10 2000 @@ -1056,6 +1056,8 @@ firewall even if compiled in. .It Em net.inet.ip.fw.verbose_limit : No 0 Limits the number of messages produced by a verbose firewall. +.It Em net.inet.ip.fw.auto_increment : No 100 +Amount by which to increment the current rule number when none is specified .It Em net.inet.ip.fw.dyn_buckets : No 256 .It Em net.inet.ip.fw.curr_dyn_buckets : No 256 The configured and current size of the hash table used to >Release-Note: >Audit-Trail: >Unformatted: X-send-pr-version: 3.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 3 15:12:10 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B53D937B503; Tue, 3 Oct 2000 15:12:08 -0700 (PDT) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA26312; Tue, 3 Oct 2000 15:12:08 -0700 (PDT) (envelope-from billf@FreeBSD.org) Date: Tue, 3 Oct 2000 15:12:08 -0700 (PDT) From: Message-Id: <200010032212.PAA26312@freefall.freebsd.org> To: patrick@mindstep.com, billf@FreeBSD.org, freebsd-bugs@FreeBSD.org, billf@FreeBSD.org Subject: Re: kern/21735: Let ipfw increment rules by arbitrary amount Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Let ipfw increment rules by arbitrary amount State-Changed-From-To: open->closed State-Changed-By: billf State-Changed-When: Tue Oct 3 15:11:13 PDT 2000 State-Changed-Why: Duplicate of pr#18366 Responsible-Changed-From-To: freebsd-bugs->billf Responsible-Changed-By: billf Responsible-Changed-When: Tue Oct 3 15:11:13 PDT 2000 Responsible-Changed-Why: Keep this where I can grab it, I'll probably still use the man page delta. thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21735 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 3 15:20: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7BA0A37B66C for ; Tue, 3 Oct 2000 15:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA28982; Tue, 3 Oct 2000 15:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.it-netservice.de (mail.it-netservice.de [213.179.64.4]) by hub.freebsd.org (Postfix) with ESMTP id 7BA1337B66D for ; Tue, 3 Oct 2000 15:10:25 -0700 (PDT) Received: from phase2.intern.it-netservice.de ([192.168.2.209]) by mail.it-netservice.de (8.9.3/8.9.3) with ESMTP id AAA17441 for ; Wed, 4 Oct 2000 00:18:39 +0200 Message-Id: Date: Wed, 4 Oct 2000 02:04:46 +0200 (CEST) From: Christian Ruediger Bahls To: FreeBSD-gnats-submit@freebsd.org Subject: kern/21736: problems to compile kernel Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21736 >Category: kern >Synopsis: Source-tree broken, can't compile Kernel >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 Oct 03 15:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Christian Bahls >Release: FreeBSD 4.1.1-STABLE i386 >Organization: IT-netservice GmbH, Leipzig, Germany >Environment: FreeBSD-4.1.1-STABLE on i386 CVS-update on Oct 3rd 2000 in the evening >Description: Can't compile kernel .. sourcetree seems broken .. log of kernelcompile available .. deletion of sourcetree and cvsup-date didn't help >How-To-Repeat: get my source tree :) + config file >Fix: to be filled in >Release-Note: >Audit-Trail: >Unformatted: Submitter-Id: current-users To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 3 15:50: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0872237B66E for ; Tue, 3 Oct 2000 15:50:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA40172; Tue, 3 Oct 2000 15:50:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from plan9.hert.org (dyn-212-129-10-58.paris.none.net [212.129.10.58]) by hub.freebsd.org (Postfix) with ESMTP id DC01137B66C for ; Tue, 3 Oct 2000 15:45:04 -0700 (PDT) Received: (from pb@localhost) by plan9.hert.org (8.9.3/8.9.3) id AAA44304 for FreeBSD-gnats-submit@freebsd.org; Wed, 4 Oct 2000 00:44:04 +0200 (CEST) (envelope-from pb@hert.org) Message-Id: <20001004004403.A44296@eclipse.home> Date: Wed, 4 Oct 2000 00:44:03 +0200 From: Kalou To: FreeBSD-gnats-submit@freebsd.org Subject: kern/21737: EINVAL with sendto(), IP_HDRINCL, and IPPROTO_RAW Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21737 >Category: kern >Synopsis: sendto returns systematically EINVAL with HDRINCL raw socks. >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Oct 03 15:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Pascal Bouchareine >Release: FreeBSD 4.1-RELEASE i386 and 4.0-RELEASE alpha >Organization: hert >Environment: a lot.. >Description: An IPPROTO_RAW socket, set with IP_HDRINCL option via setsockopt, won't let any raw packet out and return EINVAL. This is due to the fact that FreeBSD kernel uses flipped ip_len to speed up handling, where the user just supplied a htons'ed one. Then, a check in rip_output() forbids the case where : ip->ip_len < m->m_pkthdr.len A user supplied IP header is seen as 10240 bytes long and denied. Is this a kernel bug or a documented feature of the IPPROTO_RAW layer ? >How-To-Repeat: Well the code is rather heavy so i won't post there in. Just compile and run freebsd-spoof.c or any raw ip utility using IP_HDRINCL or mail me back for an example.. >Fix: Against version 1.64.2.1 of sys/netinet/raw_ip.c : --- raw_ip.c Sat Jul 15 09:14:31 2000 +++ /sys/netinet/raw_ip.c Wed Oct 4 02:45:28 2000 @@ -210,7 +210,16 @@ m_freem(m); return(EMSGSIZE); } + ip = mtod(m, struct ip *); + + /* user supplied packet is supposed to be sent + ** as is. Since we work with flipped ip_len until + ** the packet is sent, fixup user input :) + */ + + ip->ip_len = ntohs(ip->ip_len); + /* don't allow both user specified and setsockopt options, and don't allow packet length sizes that will crash */ if (((IP_VHL_HL(ip->ip_vhl) != (sizeof (*ip) >> 2)) -- pub 1024D/98F6C473 2000-08-14 Pascal Bouchareine (kalou) >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 Oct 3 16:20: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 607B737B66C for ; Tue, 3 Oct 2000 16:20:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA52920; Tue, 3 Oct 2000 16:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 3 Oct 2000 16:20:02 -0700 (PDT) Message-Id: <200010032320.QAA52920@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Salvo Bartolotta Subject: Re: kern/21736: problems to compile kernel Reply-To: Salvo Bartolotta Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/21736; it has been noted by GNATS. From: Salvo Bartolotta To: Christian Ruediger Bahls Cc: freebsd-gnats-submit@freebsd.org Subject: Re: kern/21736: problems to compile kernel Date: Wed, 04 Oct 2000 00:12:18 GMT >>>>>>>>>>>>>>>>>> Original Message <<<<<<<<<<<<<<<<<< On 10/4/00, 1:04:46 AM, Christian Ruediger Bahls=20 wrote regarding kern/21736: problems to=20 compile kernel: > >Number: 21736 > >Category: kern > >Synopsis: Source-tree broken, can't compile Kernel > >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 Oct 03 15:20:01 PDT 2000 > >Closed-Date: > >Last-Modified: > >Originator: Christian Bahls > >Release: FreeBSD 4.1.1-STABLE i386 > >Organization: > IT-netservice GmbH, Leipzig, Germany > >Environment: > FreeBSD-4.1.1-STABLE on i386 > CVS-update on Oct 3rd 2000 in the evening > >Description: > Can't compile kernel .. sourcetree seems broken .. log > of kernelcompile available .. deletion of sourcetree and > cvsup-date didn't help Dear Christian Bahls, have you checked out /usr/src/UPDATING and the procedure described=20 therein ? Whenever you cvsup your sources, the build procedure is different. If=20 you still have difficulties, please post your woes (and error=20 messages) to -stable first. That forum may provide you with advice and=20 workarounds.=20 When -STABLE sources don't compile, problems are usually fixed quickly=20 (within hours). Best regards & best of luck, Salvo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 3 20:40: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7EB2937B503 for ; Tue, 3 Oct 2000 20:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA44923; Tue, 3 Oct 2000 20:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id DF5F337B502; Tue, 3 Oct 2000 20:38:28 -0700 (PDT) Message-Id: <20001004033828.DF5F337B502@hub.freebsd.org> Date: Tue, 3 Oct 2000 20:38:28 -0700 (PDT) From: protius@bobdbob.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/21741: Unable to use the BROOKTREE_ALLOC_PAGES kernel config option for bktr Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21741 >Category: kern >Synopsis: Unable to use the BROOKTREE_ALLOC_PAGES kernel config option for bktr >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Oct 03 20:40:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Tommy Johnson >Release: 4.1.1-STABLE (cvsupped on 10-2-2000) >Organization: >Environment: FreeBSD zarquon.bobdbob.com 4.1.1-STABLE FreeBSD 4.1.1-STABLE #2: Tue Oct 3 23:15:52 EDT 2000 protius@zarquon.bobdbob.com:/usr/src/sys/compile/ZARQUON i386 >Description: The bktr(4) manpage says one can say options BROOKTREE_ALLOC_PAGES=xxx in the kernel config file to specify the amount of ram reserved for the bktr card. But config says unknown option when one trys to config the kernel. >How-To-Repeat: Attempt to use the BROOKTREE_ALLOC_PAGES kernel option. >Fix: Add the line BROOKTREE_ALLOC_PAGES opt_bktr.h to /usr/src/sys/conf/options, around line 395, where the rest of the bktr options are. >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 Oct 3 23:30: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0F60137B66C for ; Tue, 3 Oct 2000 23:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA11143; Tue, 3 Oct 2000 23:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from heitec.net (paladin.heitec.net [193.101.232.30]) by hub.freebsd.org (Postfix) with ESMTP id 7513937B503 for ; Tue, 3 Oct 2000 23:24:46 -0700 (PDT) Received: (from root@localhost) by heitec.net (8.11.0/8.11.0) id e946OuW00627; Wed, 4 Oct 2000 08:24:56 +0200 (CEST) (envelope-from bernd) Message-Id: <200010040624.e946OuW00627@ heitec.net> Date: Wed, 4 Oct 2000 08:24:56 +0200 (CEST) From: bdluevel@heitec.net Reply-To: bdluevel@heitec.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/21742: 'ipfw add' does not check the protocol name Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21742 >Category: bin >Synopsis: 'ipfw add' does not check the protocol name >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 Oct 03 23:30:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Bernd Luevelsmeyer >Release: FreeBSD 4.1.1-STABLE i386 >Organization: Heitec AG >Environment: FreeBSD 4.1.1-STABLE #5: Mon Oct 2 00:14:43 CEST 2000 >Description: If you add a IPFW rule to pass TCP traffic to port 'echo', then port 4 will be allowed instead of port 7; apparently, because there's an 'echo' with port 4 in /etc/services. That's only protocol 'ddp' though, hence I assume 'ipfw add' does not check the protocol if looking up port names. >How-To-Repeat: #ipfw list 00100 allow ip from any to any 65535 deny ip from any to any #ipfw add pass tcp from any to any echo 00000 allow tcp from any to any 4 #ipfw list 00100 allow ip from any to any 00200 allow tcp from any to any 4 65535 deny ip from any to any #grep echo /etc/services echo 4/ddp #AppleTalk Echo Protocol echo 7/tcp echo 7/udp at-echo 204/tcp #AppleTalk Echo at-echo 204/udp #AppleTalk Echo >Fix: Workaround: use port numbers only when specifying firewall rules, not port names. >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 Oct 4 1:11:30 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from gidora.zeta.org.au (gidora.zeta.org.au [203.26.10.25]) by hub.freebsd.org (Postfix) with SMTP id 0675837B503 for ; Wed, 4 Oct 2000 01:11:26 -0700 (PDT) Received: (qmail 28531 invoked from network); 4 Oct 2000 08:11:19 -0000 Received: from unknown (HELO bde.zeta.org.au) (203.2.228.102) by gidora.zeta.org.au with SMTP; 4 Oct 2000 08:11:18 -0000 Date: Wed, 4 Oct 2000 19:11:14 +1100 (EST) From: Bruce Evans X-Sender: bde@besplex.bde.org To: Garrett Wollman Cc: freebsd-bugs@FreeBSD.ORG, freebsd-standards@khavrinen.lcs.mit.edu Subject: Re: misc/21644: /usr/include/sys/mman.h uses a type defined in /usr/include/sys/types.h In-Reply-To: <200010031910.PAA43095@khavrinen.lcs.mit.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, 3 Oct 2000, Garrett Wollman wrote: > In certain instances, POSIX actually requires that the types > themselves be defined; for example, is required to cause > the definition of the types `blkcnt_t', `blksize_t', `dev_t', `ino_t', > `mode_t', `nlink_t', `uid_t', `gid_t', `off_t', and `time_t' from > . This suggests to me that we may need to use the > _BSD_SIZE_T trick on many or all of the types in question. If we can > centralize these definitions it would be better than allowing the > various _t types to potentially become desynchronized with their > consumers. I agree. This makes the treatment of POSIX typedefs more like the treatment of Standard C typedefs ( shouldn't exist; instead, each header should declare precisely the types required to use the header, preferably without types being defined all over the place). Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 4 1:12:37 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AE87737B502; Wed, 4 Oct 2000 01:12:36 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA50930; Wed, 4 Oct 2000 01:12:36 -0700 (PDT) (envelope-from ru@FreeBSD.org) Date: Wed, 4 Oct 2000 01:12:36 -0700 (PDT) From: Message-Id: <200010040812.BAA50930@freefall.freebsd.org> To: bdluevel@heitec.net, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/21742: 'ipfw add' does not check the protocol name Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: 'ipfw add' does not check the protocol name State-Changed-From-To: open->closed State-Changed-By: ru State-Changed-When: Wed Oct 4 01:02:59 PDT 2000 State-Changed-Why: Fixed in src/sbin/ipfw/ipfw.c, revisions 1.93 (5.0-CURRENT) and 1.80.2.5 (4.1.1-STABLE). http://www.freebsd.org/cgi/query-pr.cgi?pr=21742 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 4 2:10: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 14E4037B66C for ; Wed, 4 Oct 2000 02:10:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA73418; Wed, 4 Oct 2000 02:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 3D42737B66C; Wed, 4 Oct 2000 02:00:26 -0700 (PDT) Message-Id: <20001004090026.3D42737B66C@hub.freebsd.org> Date: Wed, 4 Oct 2000 02:00:26 -0700 (PDT) From: B.Candler@pobox.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/21743: pxeboot ignores NFS server IP address in root-path; libstand tweak Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21743 >Category: i386 >Synopsis: pxeboot ignores NFS server IP address in root-path; libstand tweak >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Oct 04 02:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Brian Candler >Release: 4.1.1 >Organization: >Environment: >Description: pxeboot ignores the IP address component of the root-path, i.e. options root-path "10.0.0.1:/remoteroot"; ^^^^^^^^ and instead uses the DHCP server's IP address and tries to mount that. Hence it is impossible to have one machine as DHCP/TFTP server and a different machine as NFS server. The kernel itself, with 'options BOOTP' and 'options BOOTP_NFSROOT', _does_ honour the NFS server IP address - so it's only a problem with pxeboot. >How-To-Repeat: Set up DHCP and TFTP server on 10.0.0.200 with next-server 10.0.0.200; filename "pxeboot"; option root-path "10.0.0.1:/os/freebsd-4.1"; Start up a DHCP/PXE machine. It reports: pxe_open: server addr: 10.0.0.200 <<< This should be 10.0.0.1 pxe_open: server path: /os/freebsd-4.1 pxe_open: gateway ip: 0.0.0.0 >Fix: --- sys/boot/i386/libi386/pxe.c.orig Sun Sep 10 02:52:18 2000 +++ sys/boot/i386/libi386/pxe.c Wed Oct 4 09:13:06 2000 @@ -292,6 +292,8 @@ if(rootpath[i] == ':') break; if(i && i != FNAME_SIZE) { + rootpath[i] = '\0'; + rootip.s_addr = inet_addr(&rootpath[0]); i++; bcopy(&rootpath[i], &temp[0], strlen(&rootpath[i])+1); bcopy(&temp[0], &rootpath[0], strlen(&rootpath[i])+1); However this turns up another problem; there are two versions of inet_addr, one in libstand/net.o and the other in libstand/inet_addr.o (the problem being that inet_addr.o comes from libc/inet_addr.c and references other libc things, so the link fails) The solution is to remove libstand's reliance on libc, which I guess is a hangover from olden times: --- lib/libstand/Makefile.orig Wed Oct 4 10:42:22 2000 +++ lib/libstand/Makefile Wed Oct 4 10:44:16 2000 @@ -86,10 +86,6 @@ ${.ALLSRC} > ${.TARGET} .endif -# network support from libc -.PATH: ${.CURDIR}/../libc/net -SRCS+= inet_ntoa.c inet_addr.c - # _setjmp/_longjmp .PATH: ${.CURDIR}/${MACHINE_ARCH} SRCS+= _setjmp.S @@ -107,7 +103,7 @@ fstat.c close.c lseek.c open.c read.c write.c readdir.c # network routines -SRCS+= arp.c ether.c in_cksum.c net.c udp.c netif.c rpc.c +SRCS+= arp.c ether.c inet_ntoa.c in_cksum.c net.c udp.c netif.c rpc.c # network info services: SRCS+= bootp.c rarp.c bootparam.c However, note that I haven't done a buildworld to check that this doesn't affect anything else which uses libstand. >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 Oct 4 2:25:32 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 76F3D37B502; Wed, 4 Oct 2000 02:25:30 -0700 (PDT) Received: (from ps@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA79111; Wed, 4 Oct 2000 02:25:30 -0700 (PDT) (envelope-from ps@FreeBSD.org) Date: Wed, 4 Oct 2000 02:25:30 -0700 (PDT) From: Message-Id: <200010040925.CAA79111@freefall.freebsd.org> To: ps@FreeBSD.org, freebsd-bugs@FreeBSD.org, ps@FreeBSD.org Subject: Re: i386/21743: pxeboot ignores NFS server IP address in root-path; libstand tweak Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: pxeboot ignores NFS server IP address in root-path; libstand tweak Responsible-Changed-From-To: freebsd-bugs->ps Responsible-Changed-By: ps Responsible-Changed-When: Wed Oct 4 02:25:15 PDT 2000 Responsible-Changed-Why: I'll take this http://www.freebsd.org/cgi/query-pr.cgi?pr=21743 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 4 7:10: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4F9B737B66C for ; Wed, 4 Oct 2000 07:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA56832; Wed, 4 Oct 2000 07:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 13AF637B66C; Wed, 4 Oct 2000 07:03:39 -0700 (PDT) Message-Id: <20001004140339.13AF637B66C@hub.freebsd.org> Date: Wed, 4 Oct 2000 07:03:39 -0700 (PDT) From: dockes@musicmaker.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: bin/21751: libcam's cam_real_open_device() may lose fds on error condition Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21751 >Category: bin >Synopsis: libcam's cam_real_open_device() may lose fds on error condition >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 Oct 04 07:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Jean-Francois Dockes >Release: 4.1.1-RELEASE >Organization: musicmaker.com >Environment: FreeBSD hautmedoc 4.1.1-RELEASE FreeBSD 4.1.1-RELEASE #1: Tue Oct 3 17:15:13 MEST 2000 dockes@hautmedoc:/u/src/sys/compile/HAUTMEDOC i386 >Description: In libcam's camlib.c, if one of the 2 last ioctl calls in cam_real_open_device() fails (probably a very unlikely condition, but the fix is simple enough),the routine will return an error without closing an open descriptor. >How-To-Repeat: >Fix: *** camlib.c.org Tue Oct 3 16:29:40 2000 --- camlib.c Wed Oct 4 15:51:51 2000 *************** *** 555,559 **** char *func_name = "cam_real_open_device"; union ccb ccb; ! int fd, malloced_device = 0; /* --- 555,559 ---- char *func_name = "cam_real_open_device"; union ccb ccb; ! int fd = -1, malloced_device = 0; /* *************** *** 692,695 **** --- 692,697 ---- crod_bailout: http://perso.wanadoo.fr/dockes/camlib-fd.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 Wed Oct 4 7:30: 9 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3EA8437B66D for ; Wed, 4 Oct 2000 07:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA64268; Wed, 4 Oct 2000 07:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id E255D37B66D; Wed, 4 Oct 2000 07:22:10 -0700 (PDT) Message-Id: <20001004142210.E255D37B66D@hub.freebsd.org> Date: Wed, 4 Oct 2000 07:22:10 -0700 (PDT) From: nickc@corp.firstindustrial.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/21752: Infortrend IFT-3102 doesn't like SCSI Cache Sync Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21752 >Category: kern >Synopsis: Infortrend IFT-3102 doesn't like SCSI Cache Sync >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 Oct 04 07:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Nick R. Colakovic >Release: 4.1.1-STABLE >Organization: First Industrial Realty Trust >Environment: FreeBSD stvincent2.firstindustrial.com 4.1.1-STABLE FreeBSD 4.1.1-STABLE #0: Wed Sep 27 09:48:02 CDT 2000 nickc@stvincent2.firstindustrial.com:/usr/obj/usr/src/sys/SCLEAN i386 Hardware Environment: Intel L440GX+ Server Board 2 X PII-450 128MB RAM Onboard Adaptec AIC-78xx U2 Controller attached to channel 0 on IFT-3102 w/ both IFT-3102 and system board controllers set at 80 MB/s U2 operation. Onboard Intel Pro/100+ NIC >Description: The Infortrend IFT-3102 is a external multihost U2 SCSI to U2 SCSI controller. The logical drives/partions created using the controller appear on a conventional SCSI controller as a normal SCSI disk drive. The advantage of this was to provide host OS independance for RAID support (esp. given the 2.x and 3.x branches limited HW raid support). FreeBSD 3.x and 4.x are setup to send SCSI CACHE_SYNC commands to SCSI disk drives unless they are listed in the scsi_da.c quirk table as not supporting this. The IFT-3102 doesn't accept this command and as a result a kernel error message is seen at shutdown. I haven't yet experienced a operational problem under 4.1-STABLE and greater as a result. But this problem did cause 3.5-RELEASE to crash during the post install reboot. >How-To-Repeat: Install FreeBSD 3.4-RELEASE and greater on a IFT-3102 hosted logical drive. Reboot and you will get an error like the following: syncing disks... 12 done Uptime: 21h18m36s (da0:ahc0:0:0:0): SYNCHRONIZE CACHE. CDB: 35 0 0 0 0 0 0 0 0 0 (da0:ahc0:0:0:0): ILLEGAL REQUEST asc:20,0 (da0:ahc0:0:0:0): Invalid command operation code Rebooting... >Fix: Add the IFT-3102 to the scsi_da.c quirks table disabling Sync Cache. Apply the following patch to sys/cam/scsi_da.c, recompile your kernel and reboot: *** sys/cam/scsi/scsi_da.c.orig Wed Oct 4 09:10:18 2000 --- sys/cam/scsi/scsi_da.c Wed Oct 4 09:10:32 2000 *************** *** 215,221 **** */ {T_DIRECT, SIP_MEDIA_REMOVABLE, "Y-E DATA", "USB-FDU", "*"}, /*quirks*/ DA_Q_NO_6_BYTE|DA_Q_NO_SYNC_CACHE ! } }; static d_open_t daopen; --- 215,230 ---- */ {T_DIRECT, SIP_MEDIA_REMOVABLE, "Y-E DATA", "USB-FDU", "*"}, /*quirks*/ DA_Q_NO_6_BYTE|DA_Q_NO_SYNC_CACHE ! }, ! { ! /* ! * Infortrend IFT-3102 SCSI to SCSI controller as of ! * Firmware Version 2.23 doesn't like SCSI SYNC_CACHE ! */ ! {T_DIRECT, SIP_MEDIA_FIXED, "IFT", "3102", "*"}, ! /* quirks*/ DA_Q_NO_SYNC_CACHE ! } ! }; static d_open_t daopen; >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 Oct 4 7:40:12 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E96F737B66F for ; Wed, 4 Oct 2000 07:40:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA67742; Wed, 4 Oct 2000 07:40:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from sentry.granch.com (sentry.granch.com [212.109.197.55]) by hub.freebsd.org (Postfix) with ESMTP id EE14037B66C for ; Wed, 4 Oct 2000 07:37:29 -0700 (PDT) Received: (from root@localhost) by sentry.granch.com (8.9.3/8.9.3) id SAA00375; Wed, 4 Oct 2000 18:58:49 +0700 (NOVST) Message-Id: <200010041158.SAA00375@sentry.granch.com> Date: Wed, 4 Oct 2000 18:58:49 +0700 (NOVST) From: System Administartor Reply-To: root@sentry.granch.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/21753: Proc size mismatch Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21753 >Category: kern >Synopsis: Proc size mismatch >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 Oct 04 07:40:04 PDT 2000 >Closed-Date: >Last-Modified: >Originator: System Administartor >Release: FreeBSD 4.1.1-STABLE i386 >Organization: Granch Ltd. >Environment: FreeBSD 4.1.1-STABLE,Genuine PIII, 192 RAM, M/b ASUS P3B-F, HDD 6Gb FreeBSD 4.1.1-STABLE,AMD K6-2 350, 64 RAM, M/b ATC i430TX, HDD 10Gb >Description: After install new kernel, which was CVSed recently, at 30 Sep 2000, ps says "Proc size mismatch (32736 total, 1048 chunks)" >How-To-Repeat: CVS new kernel. Install. Reboot. See this message... >Fix: Return to 4.1-RELEASE kernel code >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 Oct 4 8: 1:23 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D23E037B502; Wed, 4 Oct 2000 08:01:21 -0700 (PDT) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA75492; Wed, 4 Oct 2000 08:01:21 -0700 (PDT) (envelope-from will@FreeBSD.org) Date: Wed, 4 Oct 2000 08:01:21 -0700 (PDT) From: Message-Id: <200010041501.IAA75492@freefall.freebsd.org> To: root@sentry.granch.com, will@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/21753: Proc size mismatch Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Proc size mismatch State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Wed Oct 4 08:00:18 PDT 2000 State-Changed-Why: You have to install updated binaries along with a new kernel if you updated sources. Hence, you can't normally install a kernel built from newer sources and use it with a world based on older sources. To really solve your problem, try running `make world'. http://www.freebsd.org/cgi/query-pr.cgi?pr=21753 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 4 8:10: 8 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1901637B502 for ; Wed, 4 Oct 2000 08:10:05 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA80244; Wed, 4 Oct 2000 08:10:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 4 Oct 2000 08:10:05 -0700 (PDT) Message-Id: <200010041510.IAA80244@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: kern/21753: Proc size mismatch Reply-To: Peter Pentchev Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/21753; it has been noted by GNATS. From: Peter Pentchev To: System Administartor Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: kern/21753: Proc size mismatch Date: Wed, 4 Oct 2000 18:01:46 +0300 On Wed, Oct 04, 2000 at 06:58:49PM +0700, System Administartor wrote: > >Synopsis: Proc size mismatch [snip] > > >Description: > > After install new kernel, which was CVSed recently, at 30 Sep 2000, > ps says "Proc size mismatch (32736 total, 1048 chunks)" > > >How-To-Repeat: > > CVS new kernel. > Install. > Reboot. > See this message... > > >Fix: > > Return to 4.1-RELEASE kernel code Wrong. Fix: Always read /usr/src/UPDATING when rebuilding a kernel. COMMON ITEMS: To build a kernel ----------------- cd /usr/src # If you have not already done so, please buildworld here # You will also need to update your config file to 4.x. Always upgrade your whole system when upgrading your kernel - there are almost certain to be changes in the system programs as well, especially if some important kernel structures have changed. G'luck, Peter -- Hey, out there - is it *you* reading me, or is it someone else? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 4 8:20: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A039D37B503 for ; Wed, 4 Oct 2000 08:20:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA84085; Wed, 4 Oct 2000 08:20:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from itesec.hsc.fr (itesec.hsc.fr [192.70.106.33]) by hub.freebsd.org (Postfix) with ESMTP id 4C83D37B66C; Wed, 4 Oct 2000 08:13:54 -0700 (PDT) Received: from yoko.hsc.fr (yoko.hsc.fr [192.70.106.76]) (using TLSv1 with cipher EDH-RSA-DES-CBC3-SHA (168/168 bits)) (Client CN "yoko.hsc.fr", Issuer CN "HSC CA" (verified OK)) by itesec.hsc.fr (Postfix) with ESMTP id 6EBBE10E0D; Wed, 4 Oct 2000 17:13:53 +0200 (CEST) Received: by yoko.hsc.fr (Postfix-TLS, from userid 1001) id 657EA9B3B3; Wed, 4 Oct 2000 17:13:32 +0200 (CEST) Message-Id: <20001004151332.657EA9B3B3@yoko.hsc.fr> Date: Wed, 4 Oct 2000 17:13:32 +0200 (CEST) From: at@rominet.net Reply-To: at@rominet.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/21754: Sound stops working when NetGear USB Device is plugged Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21754 >Category: kern >Synopsis: Sound stops working when NetGear USB Device is plugged >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 Oct 04 08:20:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Alain Thivillon >Release: FreeBSD 5.0-CURRENT i386 >Organization: Rominet Networks >Environment: FreeBSD-CURRENT (SMP-NG) on Toshiba Tecra 8100 (cvsupped one week ago) FreeBSD yoko.hsc.fr 5.0-CURRENT FreeBSD 5.0-CURRENT #69: Wed Oct 4 16:16:39 CEST 2000 titi@yoko.hsc.fr:/usr/src/sys/compile/YOKO50 i386 Dmesg relevant info: uhci0: port 0xffe0-0xffff irq 11 at device 5.2 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered kue0: NETGEAR NETGEAR EA101 USB Ethernet Adapter , rev 1.00/2.02, addr 2 kue0: Ethernet address: 00:a0:cc:61:4a:ae .... pcm0: at port 0x220-0x233,0x530-0x537,0x388-0x38f,0x330-0x333,0x538-0x539 irq 7 drq 1,0 on isa0 >Description: When NetGear USB Ethernet device is plugged, sound (in amp, xamp, Real Audio Plugin, mtvp, ...) stop working. All applications are 'looping' on the first sound frame downloaded to the OPL chip. No kernel messages are logged. Other sound fucntions seems to work (volume, balance, mixer, ...) As soon as Netgear is removed, everything is ok (no need to reboot). As far as i can see, no IRQ nor hardware ressources are in conflict. >How-To-Repeat: I have only this USB device, so i am unable to check if this is a general problem with USB code or just NetGear. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 4 9:10: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A2C9B37B503 for ; Wed, 4 Oct 2000 09:10:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA04682; Wed, 4 Oct 2000 09:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 4 Oct 2000 09:10:02 -0700 (PDT) Message-Id: <200010041610.JAA04682@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Justin Gibbs Subject: Re: kern/21752: Infortrend IFT-3102 doesn't like SCSI Cache Sync Reply-To: Justin Gibbs Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/21752; it has been noted by GNATS. From: Justin Gibbs To: nickc@corp.firstindustrial.com Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: kern/21752: Infortrend IFT-3102 doesn't like SCSI Cache Sync Date: Wed, 4 Oct 2000 10:03:18 -0600 (MDT) > >Synopsis: Infortrend IFT-3102 doesn't like SCSI Cache Sync > FreeBSD 3.x and 4.x are setup to send SCSI CACHE_SYNC commands > to SCSI disk drives unless they are listed in the scsi_da.c quirk > table as not supporting this. The IFT-3102 doesn't accept this > command and as a result a kernel error message is seen at shutdown. > I haven't yet experienced a operational problem under 4.1-STABLE > and greater as a result. But this problem did cause 3.5-RELEASE > to crash during the post install reboot. I don't know why 3.5R would crash because the command failed, but so long as the device does not die due to the sync cache command, I would rather not place an entry into the quirk table. Unfortunately, there are several entries (perhaps all but those for MO devices) in the quirk table that shouldn't need to be there. I am still confused as to why the system prints any error at all. The code in both dashutdown and daclose is supposed to prevent the error from being reported if the device does not support the command. Perhaps you could spend some time instrumenting the "error avoidance" code to determine exactly why it doesn't work. -- Justin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 4 9:33: 8 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 131A237B502; Wed, 4 Oct 2000 09:33:07 -0700 (PDT) Received: (from ken@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA12909; Wed, 4 Oct 2000 09:33:07 -0700 (PDT) (envelope-from ken@FreeBSD.org) Date: Wed, 4 Oct 2000 09:33:07 -0700 (PDT) From: Message-Id: <200010041633.JAA12909@freefall.freebsd.org> To: ken@FreeBSD.org, freebsd-bugs@FreeBSD.org, ken@FreeBSD.org Subject: Re: bin/21751: libcam's cam_real_open_device() may lose fds on error condition Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: libcam's cam_real_open_device() may lose fds on error condition Responsible-Changed-From-To: freebsd-bugs->ken Responsible-Changed-By: ken Responsible-Changed-When: Wed Oct 4 09:32:51 PDT 2000 Responsible-Changed-Why: My code. http://www.freebsd.org/cgi/query-pr.cgi?pr=21751 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 4 11: 0: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3308B37B66D for ; Wed, 4 Oct 2000 11:00:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA45524; Wed, 4 Oct 2000 11:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id CEA6537B503; Wed, 4 Oct 2000 10:59:12 -0700 (PDT) Message-Id: <20001004175912.CEA6537B503@hub.freebsd.org> Date: Wed, 4 Oct 2000 10:59:12 -0700 (PDT) From: B.Candler@pobox.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/21757: cp from nullfs-mounted filesystem aborts with EFAULT Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21757 >Category: kern >Synopsis: cp from nullfs-mounted filesystem aborts with EFAULT >Confidential: no >Severity: critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Oct 04 11:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Brian Candler >Release: 4.1.1 and 4.1 >Organization: >Environment: >Description: Using 'cp' to copy a file from within a null-mounted filesystem to another filesystem causes an address fault. (Noticed when running a diskless system; at one point /etc/rc tries to copy /tmp/xxxx to /etc/motd, and /tmp is itself a null mount of /var/tmp, and this fails) >How-To-Repeat: # mkdir /a /b /c # mount_null /b /c # echo wibble >/c/stuff # cp /c/stuff /a cp: /a/stuff: Bad address # >Fix: No idea >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 Oct 4 11:17:54 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 37B5E37B503; Wed, 4 Oct 2000 11:17:53 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA53111; Wed, 4 Oct 2000 11:17:53 -0700 (PDT) (envelope-from johan@FreeBSD.org) Date: Wed, 4 Oct 2000 11:17:53 -0700 (PDT) From: Message-Id: <200010041817.LAA53111@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, roger@FreeBSD.org Subject: Re: kern/21741: Unable to use the BROOKTREE_ALLOC_PAGES kernel config option for bktr Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Unable to use the BROOKTREE_ALLOC_PAGES kernel config option for bktr Responsible-Changed-From-To: freebsd-bugs->roger Responsible-Changed-By: johan Responsible-Changed-When: Wed Oct 4 11:17:19 PDT 2000 Responsible-Changed-Why: Over to bktr maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=21741 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 4 11:40: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5611B37B502 for ; Wed, 4 Oct 2000 11:40:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA61032; Wed, 4 Oct 2000 11:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 4 Oct 2000 11:40:02 -0700 (PDT) Message-Id: <200010041840.LAA61032@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Johan Karlsson Subject: Re: bin/21734: Correction to calendar(1) usage message Reply-To: Johan Karlsson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/21734; it has been noted by GNATS. From: Johan Karlsson To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: bin/21734: Correction to calendar(1) usage message Date: Wed, 04 Oct 2000 20:35:20 +0200 Hi Actually the man page should be updated to list the option in alphabetic order as well. --- src/usr.bin/calendar/calendar.1.old Wed Oct 4 20:29:57 2000 +++ src/usr.bin/calendar/calendar.1 Wed Oct 4 20:25:29 2000 @@ -43,12 +43,12 @@ .Op Fl a .Op Fl A Ar num .Op Fl B Ar num +.Op Fl f Ar calendarfile .Oo Fl t Ar dd .Sm off .Op . Ar mm Op . Ar year .Sm on .Oc -.Op Fl f Ar calendarfile .Sh DESCRIPTION .Nm Calendar checks the current directory for a file named /Johan K To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 4 12:37:25 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 94CF637B502; Wed, 4 Oct 2000 12:37:23 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA83496; Wed, 4 Oct 2000 12:37:23 -0700 (PDT) (envelope-from johan@FreeBSD.org) Date: Wed, 4 Oct 2000 12:37:23 -0700 (PDT) From: Message-Id: <200010041937.MAA83496@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, murray@FreeBSD.org Subject: Re: conf/21729: Using /stand/sysinstall to set security level to "medium" doesn't reduce kern_securelevel in /etc/rc.conf if security level was previously set to "high". Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Using /stand/sysinstall to set security level to "medium" doesn't reduce kern_securelevel in /etc/rc.conf if security level was previously set to "high". Responsible-Changed-From-To: freebsd-bugs->murray Responsible-Changed-By: johan Responsible-Changed-When: Wed Oct 4 12:36:38 PDT 2000 Responsible-Changed-Why: Over to sysinstall maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=21729 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 4 12:40: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B388B37B503 for ; Wed, 4 Oct 2000 12:40:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA84384; Wed, 4 Oct 2000 12:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 4 Oct 2000 12:40:02 -0700 (PDT) Message-Id: <200010041940.MAA84384@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Johan Karlsson Subject: Re: misc/21728: KDE won't start with kernel_securelevel="2"; no warning of this is given when setting security level. Reply-To: Johan Karlsson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/21728; it has been noted by GNATS. From: Johan Karlsson To: freebsd-gnats-submit@FreeBSD.org Cc: buckshot70@my-deja.com Subject: Re: misc/21728: KDE won't start with kernel_securelevel="2"; no warning of this is given when setting security level. Date: Wed, 04 Oct 2000 21:36:20 +0200 Hi Actually this is not a problem with KDE but with XFree86. Atleast with version 3.3.6 of XFree86 I do not know about 4.0.1. /Johan K To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 4 13:40: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 027D137B66D for ; Wed, 4 Oct 2000 13:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA07390; Wed, 4 Oct 2000 13:40:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 3A6C337B502; Wed, 4 Oct 2000 13:31:08 -0700 (PDT) Message-Id: <20001004203108.3A6C337B502@hub.freebsd.org> Date: Wed, 4 Oct 2000 13:31:08 -0700 (PDT) From: cdburgess75@yahoo.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/21758: X display font problem Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21758 >Category: i386 >Synopsis: X display font problem >Confidential: no >Severity: critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Oct 04 13:40:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Charles D. Burgess >Release: Free BSD 4.0 >Organization: US Army >Environment: >Description: I cannot see any words in X. KDE or GNOME. I mean everything works fine but all the text are not characters, just bars of stuff where letters should be in X. I figured I didnt have the fonts for X loaded but I cannot manage to load them or reload them with the sysinstall disk. Can someone tell me how to do it at the promt. Unless it something else I overlooked. Help please! >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 Wed Oct 4 19: 0:54 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from gssm.otsuka.tsukuba.ac.jp (utogwgw.gssm.otsuka.tsukuba.ac.jp [130.158.176.189]) by hub.freebsd.org (Postfix) with SMTP id 65E9037B503 for ; Wed, 4 Oct 2000 19:00:48 -0700 (PDT) Received: (qmail 51729 invoked from network); 5 Oct 2000 02:00:46 -0000 Received: from OneOfLocalMachines (HELO smr00.gssm.otsuka.tsukuba.ac.jp) (10.2.1.1) by utogw.gssm.otsuka.tsukuba.ac.jp with SMTP; 5 Oct 2000 02:00:46 -0000 Received: from localhost (localhost [127.0.0.1]) by smr00.gssm.otsuka.tsukuba.ac.jp (8.9.3/8.9.3) with ESMTP id LAA02927; Thu, 5 Oct 2000 11:00:46 +0900 (JST) (envelope-from ohki@gssm.otsuka.tsukuba.ac.jp) Message-Id: <200010050200.LAA02927@smr00.gssm.otsuka.tsukuba.ac.jp> From: Atsuo Ohki To: freebsd-bugs@freebsd.org Cc: ohki@gssm.otsuka.tsukuba.ac.jp Subject: if_wi.c of FreeBSD Mime-Version: 1.0 Content-Type: text/plain;charset="us-ascii" Date: Thu, 05 Oct 2000 11:00:46 +0900 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I found a small problem with if_wi.c in FreeBSD(3.3-RELEASE and later, probably 4.1.1 too) After using WaveLan PCMCIA card, other PCMCIA cards do not work properly. (they work for a while but become inoperable sometime.) This problem is due to the timeout route in if_wi.c, wi_inquire(). I'm afraid that untimeout() should be call for it when a WaveLan PCMCIA card is just unloaded, like following context diff (based on FreeBSD 3.3-RELEASE). --- if_wi.c-ORIG Mon Aug 30 01:07:24 1999 +++ if_wi.c Wed Oct 4 17:08:06 2000 @@ -246,6 +246,8 @@ sc->wi_gone = 1; printf("wi%d: unloaded\n", sc_p->isahd.id_unit); + untimeout(wi_inquire, sc, sc->wi_stat_ch); /* XXX */ + return; } @@ -509,6 +511,8 @@ struct ifnet *ifp; sc = xsc; + if (sc->wi_gone) return; /* XXX paranoia ? */ + ifp = &sc->arpcom.ac_if; sc->wi_stat_ch = timeout(wi_inquire, sc, hz * 60); To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 4 20: 7:35 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ED3CC37B502; Wed, 4 Oct 2000 20:07:33 -0700 (PDT) Received: (from gibbs@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA54182; Wed, 4 Oct 2000 20:07:33 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) Date: Wed, 4 Oct 2000 20:07:33 -0700 (PDT) From: Message-Id: <200010050307.UAA54182@freefall.freebsd.org> To: gibbs@narnia.plutotech.com, gibbs@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/6156: Patches to make dump understand ENOSPC Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Patches to make dump understand ENOSPC State-Changed-From-To: open->closed State-Changed-By: gibbs State-Changed-When: Wed Oct 4 20:06:57 PDT 2000 State-Changed-Why: These changes were committed to dump several years ago. http://www.freebsd.org/cgi/query-pr.cgi?pr=6156 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 4 20: 9:56 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 78F0937B671; Wed, 4 Oct 2000 20:09:55 -0700 (PDT) Received: (from gibbs@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA54940; Wed, 4 Oct 2000 20:09:55 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) Date: Wed, 4 Oct 2000 20:09:55 -0700 (PDT) From: Message-Id: <200010050309.UAA54940@freefall.freebsd.org> To: gibbs@narnia.plutotech.com, gibbs@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/6495: Need pci_unmap_mem and pci_unmap_port routines Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Need pci_unmap_mem and pci_unmap_port routines State-Changed-From-To: open->closed State-Changed-By: gibbs State-Changed-When: Wed Oct 4 20:08:14 PDT 2000 State-Changed-Why: Obviated by new bus. http://www.freebsd.org/cgi/query-pr.cgi?pr=6495 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 4 23:10: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9F4E837B502 for ; Wed, 4 Oct 2000 23:10:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA26600; Wed, 4 Oct 2000 23:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 4 Oct 2000 23:10:02 -0700 (PDT) Message-Id: <200010050610.XAA26600@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Rashid N. Achilov" Subject: Re: kern/21753: Proc size mismatch Reply-To: "Rashid N. Achilov" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/21753; it has been noted by GNATS. From: "Rashid N. Achilov" To: Peter Pentchev Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: kern/21753: Proc size mismatch Date: Thu, 05 Oct 2000 12:58:29 +0700 Peter Pentchev wrote: > > On Wed, Oct 04, 2000 at 06:58:49PM +0700, System Administartor wrote: > > >Synopsis: Proc size mismatch > [snip] > > > > >Description: > > > > After install new kernel, which was CVSed recently, at 30 Sep 2000, > > ps says "Proc size mismatch (32736 total, 1048 chunks)" > > > > >Fix: > > > > Return to 4.1-RELEASE kernel code > > Wrong. Right. At least for me :-) When I saw it, I got very surprised, and reboot from 4.1-RELEASE kernel fix this problem... > > Always upgrade your whole system when upgrading your kernel - > there are almost certain to be changes in the system programs > as well, especially if some important kernel structures have > changed. > I *REALLY* need rebuild hundred of there binaries, many of them didn't change? -- With Best Regards. Rashid N. Achilov (RNA1-RIPE), Brainbench ID: 28514 Granch Ltd. lead engineer, e-mail: achilov@granch.ru tel/fax (383-2) 24-2363 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 4 23:20: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 82EF437B503 for ; Wed, 4 Oct 2000 23:20:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA30130; Wed, 4 Oct 2000 23:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 4 Oct 2000 23:20:02 -0700 (PDT) Message-Id: <200010050620.XAA30130@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: kern/21753: Proc size mismatch Reply-To: Peter Pentchev Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/21753; it has been noted by GNATS. From: Peter Pentchev To: achilov@granch.ru Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: kern/21753: Proc size mismatch Date: Thu, 5 Oct 2000 09:11:36 +0300 On Thu, Oct 05, 2000 at 12:58:29PM +0700, Rashid N. Achilov wrote: > Peter Pentchev wrote: > > > > On Wed, Oct 04, 2000 at 06:58:49PM +0700, System Administartor wrote: > > > >Synopsis: Proc size mismatch > > [snip] > > > > > > >Description: > > > > > > After install new kernel, which was CVSed recently, at 30 Sep 2000, > > > ps says "Proc size mismatch (32736 total, 1048 chunks)" > > > > > > >Fix: > > > > > > Return to 4.1-RELEASE kernel code > > > > Wrong. > > Right. At least for me :-) When I saw it, I got very surprised, and > reboot from 4.1-RELEASE kernel fix this problem... This is a workaround, not a fix. A workaround, as in it lets you continue with your *old* binaries and your *old* kernel, which of course are in sync. It does not 'fix' the problem as in let you make use of the new features introduced in FreeBSD with the changes. > > > > Always upgrade your whole system when upgrading your kernel - > > there are almost certain to be changes in the system programs > > as well, especially if some important kernel structures have > > changed. > > > > I *REALLY* need rebuild hundred of there binaries, many of them didn't > change? Well, there is always make -DNOCLEAN buildworld, which leaves all of the /usr/obj tree intact (well, most of it, anyway :), and recompiles only the programs that have changed. If this should fail, then you must rebuild the whole thing - but this only happens very rarely, when major changes have been introduced. Ah, and yes, judging from personal experience, it's better to run mergemaster *before* the world build, so it can update make.conf *and* the mtree files - this takes care of the case when a new directory has been introduced in the tree and the build falls over for lack of dependencies :) G'luck, Peter -- I am not the subject of this sentence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 5 2:57:30 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by hub.freebsd.org (Postfix) with SMTP id D8E0437B502; Thu, 5 Oct 2000 02:57:26 -0700 (PDT) Received: from turing.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 5 Oct 2000 10:57:21 +0100 (BST) Date: Thu, 5 Oct 2000 10:57:20 +0100 From: David Malone To: dwmalone@FreeBSD.org Cc: freebsd-bugs@FreeBSD.org, bob@immure.com Subject: Re: misc/21204: bit_ffc and bit_ffs macros in bitstring.h test 1 byte too many. Message-ID: <20001005105720.A1562@turing.maths.tcd.ie> References: <200010022119.OAA17662@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.2i In-Reply-To: <200010022119.OAA17662@freefall.freebsd.org>; from dwmalone@FreeBSD.org on Mon, Oct 02, 2000 at 02:19:13PM -0700 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Oct 02, 2000 at 02:19:13PM -0700, dwmalone@FreeBSD.org wrote: > I've looked at the patch and it seems correct. Anyone want to review it for > me? As bde pointed out, the patch is not correct. Bitstring.h also has other problems. If no one objects I'll sync our version with NetBSD's version. They have already fixed most of the issues with the code. David. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 5 6: 0: 8 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 54DB537B503 for ; Thu, 5 Oct 2000 06:00:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA96072; Thu, 5 Oct 2000 06:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from sentinel.office1.bg (sentinel.office1.bg [195.24.48.182]) by hub.freebsd.org (Postfix) with SMTP id 0B44D37B66C for ; Thu, 5 Oct 2000 05:58:12 -0700 (PDT) Received: (qmail 7109 invoked by uid 0); 5 Oct 2000 12:58:02 -0000 Message-Id: <20001005125802.7108.qmail@ringwraith.office1> Date: 5 Oct 2000 12:58:02 -0000 From: "Peter Pentchev" Reply-To: "Peter Pentchev" To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/21766: [PATCH] add -s (skip) flag to head(1) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21766 >Category: bin >Synopsis: [PATCH] add -s (skip) flag to head(1) >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 Oct 05 06:00:04 PDT 2000 >Closed-Date: >Last-Modified: >Originator: "Peter Pentchev" >Release: FreeBSD 4.1.1-STABLE i386 >Organization: Orbitell JSCo. >Environment: FreeBSD 4.1.1-STABLE #1: Thu Oct 5 13:13:32 EEST 2000 >Description: It is sometimes useful to display, say, the *second* 20 lines of a file. Yes, I am perfectly aware that head -40 | tail -20 works, but having head(1) able to skip lines/bytes is a little bit better in my book :) The attached patch adds a -s flag, expecting a numeric argument; that number of lines/bytes is skipped, after which the quantity requested by -n or -c (or the implicit 10) are displayed as usual. >How-To-Repeat: Try to display the second 20 (or 800 in my case) lines of a file; watch yourself go through loops ;) >Fix: diff -urN src/usr.bin/head/head.1 mysrc/usr.bin/head/head.1 --- src/usr.bin/head/head.1 Sat Aug 28 04:01:58 1999 +++ mysrc/usr.bin/head/head.1 Thu Oct 5 15:43:08 2000 @@ -42,6 +42,7 @@ .Nm head .Op Fl n Ar count .Op Fl c Ar bytes +.Op Fl s Ar skipcount .Op Ar file ... .Sh DESCRIPTION This filter displays the first @@ -60,6 +61,14 @@ where .Dq XXX is the name of the file. +.Pp +If +.Ar skipcount +is specified, the +.Nm head +utility skips the specified number of lines or bytes before displaying +the requested +.Ar count . .Pp The .Nm head diff -urN src/usr.bin/head/head.c mysrc/usr.bin/head/head.c --- src/usr.bin/head/head.c Sat Aug 28 04:01:58 1999 +++ mysrc/usr.bin/head/head.c Thu Oct 5 15:37:31 2000 @@ -60,8 +60,8 @@ * Bill Joy UCB August 24, 1977 */ -void head __P((FILE *, int)); -void head_bytes __P((FILE *, int)); +void head __P((FILE *, int, int)); +void head_bytes __P((FILE *, int, int)); void obsolete __P((char *[])); void usage __P((void)); @@ -74,11 +74,11 @@ { register int ch; FILE *fp; - int first, linecnt = -1, bytecnt = -1; + int first, linecnt = -1, bytecnt = -1, skipcnt = 0; char *ep; obsolete(argv); - while ((ch = getopt(argc, argv, "n:c:")) != -1) + while ((ch = getopt(argc, argv, "n:c:s:")) != -1) switch(ch) { case 'c': bytecnt = strtol(optarg, &ep, 10); @@ -90,6 +90,11 @@ if (*ep || linecnt <= 0) errx(1, "illegal line count -- %s", optarg); break; + case 's': + skipcnt = strtol(optarg, &ep, 10); + if (*ep || skipcnt <= 0) + errx(1, "illegal skip count -- %s", optarg); + break; case '?': default: usage(); @@ -113,40 +118,49 @@ first ? "" : "\n", *argv); first = 0; } - if (bytecnt == -1) - head(fp, linecnt); - else - head_bytes(fp, bytecnt); + if (bytecnt == -1) { + if (skipcnt) head(fp, skipcnt, 0); + head(fp, linecnt, 1); + } else { + if (skipcnt) head_bytes(fp, skipcnt, 0); + head_bytes(fp, bytecnt, 1); + } (void)fclose(fp); } } - else if (bytecnt == -1) - head(stdin, linecnt); - else - head_bytes(stdin, bytecnt); + else if (bytecnt == -1) { + if (skipcnt) head(stdin, skipcnt, 0); + head(stdin, linecnt, 1); + } else { + if (skipcnt) head_bytes(stdin, skipcnt, 0); + head_bytes(stdin, bytecnt, 1); + } exit(eval); } void -head(fp, cnt) +head(fp, cnt, out) FILE *fp; register int cnt; + int out; { register int ch; while (cnt && (ch = getc(fp)) != EOF) { + if (out) if (putchar(ch) == EOF) err(1, "stdout"); - if (ch == '\n') - cnt--; - } + if (ch == '\n') + cnt--; + } } void -head_bytes(fp, cnt) +head_bytes(fp, cnt, out) FILE *fp; register int cnt; + int out; { char buf[4096]; register int readlen; @@ -159,8 +173,9 @@ readlen = fread(buf, sizeof(char), readlen, fp); if (readlen == 0) break; - if (fwrite(buf, sizeof(char), readlen, stdout) != readlen) - err(1, "stdout"); + if (out) + if (fwrite(buf, sizeof(char), readlen, stdout) != readlen) + err(1, "stdout"); cnt -= readlen; } } >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 Oct 5 7:50: 8 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BF01F37B66D for ; Thu, 5 Oct 2000 07:50:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA05816; Thu, 5 Oct 2000 07:50:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from ender.tfz.net (ender.worldnet.net [195.3.3.22]) by hub.freebsd.org (Postfix) with ESMTP id 19A3437B502 for ; Thu, 5 Oct 2000 07:45:56 -0700 (PDT) Received: by ender.tfz.net (Postfix, from userid 0) id 7AA7D24; Thu, 5 Oct 2000 16:45:53 +0200 (CEST) Message-Id: <20001005144553.7AA7D24@ender.tfz.net> Date: Thu, 5 Oct 2000 16:45:53 +0200 (CEST) From: pb@hert.org Reply-To: pb@hert.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/21768: shouldn't trailing '/' on regular file symlink return EISDIR ? Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21768 >Category: kern >Synopsis: shouldn't trailing '/' on regular file symlink return EISDIR ? >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 Oct 05 07:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Pascal Bouchareine [kalou] >Release: FreeBSD 5.x current >Organization: HERT >Environment: $FreeBSD: src/sys/kern/vfs_lookup.c,v 1.40 2000/09/17 07:26:41 bp Exp $ >Description: Trailing slash after a symlink which points to a regular file resolves the link, where i think it should return EISDIR. >How-To-Repeat: [ender][root]~# ln -s /etc/motd link [ender][root]~# file link link: symbolic link to /etc/motd [ender][root]~# file link/ link/: ASCII text >Fix: --- vfs_lookup.c Thu Oct 5 16:25:22 2000 +++ vfs_lookup.c.new Thu Oct 5 16:24:44 2000 @@ -504,6 +504,14 @@ } /* + * Check for bogus trailing slashes. + */ + if (trailing_slash && dp->v_type != VDIR) { + error = ENOTDIR; + goto bad2; + } + + /* * Check for symbolic link */ if ((dp->v_type == VLNK) && @@ -515,14 +523,6 @@ goto bad2; } return (0); - } - - /* - * Check for bogus trailing slashes. - */ - if (trailing_slash && dp->v_type != VDIR) { - error = ENOTDIR; - goto bad2; } nextname: >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 Oct 5 8:20: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CCC0437B66D for ; Thu, 5 Oct 2000 08:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA18247; Thu, 5 Oct 2000 08:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from ender.tfz.net (ender.worldnet.net [195.3.3.22]) by hub.freebsd.org (Postfix) with ESMTP id 37A1F37B503 for ; Thu, 5 Oct 2000 08:16:34 -0700 (PDT) Received: by ender.tfz.net (Postfix, from userid 0) id 1B9CF13; Thu, 5 Oct 2000 17:16:29 +0200 (CEST) Message-Id: <20001005151629.1B9CF13@ender.tfz.net> Date: Thu, 5 Oct 2000 17:16:29 +0200 (CEST) From: pb@hert.org Reply-To: pb@hert.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/21769: jail problem Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21769 >Category: kern >Synopsis: jail problem >Confidential: yes >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Oct 05 08:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Pascal Bouchareine >Release: FreeBSD 5.x current, 4.0, 4.1 >Organization: HERT >Environment: FreeBSD and jail() support - any release i could test this on. Jail and mount settings are by default. >Description: A jailed superuser is able to unmount a directory, provided the fact that this directory is under his jail root directory. The problem lies in the way uid is checked. Where user.creds are compared to object.creds, if uid == 0, the suser()-in-jail-like behaviour is not true anymore. This may be true for other protection checks (ipc, nicing of processes, what else.. ?) >How-To-Repeat: I'm so sorry i don't have an example right there. Just email me back for the C source I tested this with. >Fix: --- vfs_syscalls.c Thu Oct 5 17:06:22 2000 +++ vfs_syscalls.c.new Thu Oct 5 17:06:22 2000 @@ -423,7 +423,8 @@ * Only root, or the user that did the original mount is * permitted to unmount this filesystem. */ - if ((mp->mnt_stat.f_owner != p->p_ucred->cr_uid) && + if ((p->p_ucred->cr_uid && + (mp->mnt_stat.f_owner != p->p_ucred->cr_uid)) && (error = suser(p))) { vput(vp); return (error); >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 Oct 5 8:36:50 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6DCCE37B502; Thu, 5 Oct 2000 08:36:48 -0700 (PDT) Received: (from rwatson@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA24477; Thu, 5 Oct 2000 08:36:48 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Date: Thu, 5 Oct 2000 08:36:48 -0700 (PDT) From: Message-Id: <200010051536.IAA24477@freefall.freebsd.org> To: rwatson@FreeBSD.org, freebsd-bugs@FreeBSD.org, rwatson@FreeBSD.org Subject: Re: kern/21768: shouldn't trailing '/' on regular file symlink return EISDIR ? Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: shouldn't trailing '/' on regular file symlink return EISDIR ? Responsible-Changed-From-To: freebsd-bugs->rwatson Responsible-Changed-By: rwatson Responsible-Changed-When: Thu Oct 5 08:35:22 PDT 2000 Responsible-Changed-Why: I'll take this. http://www.freebsd.org/cgi/query-pr.cgi?pr=21768 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 5 8:37:17 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 413DF37B502; Thu, 5 Oct 2000 08:37:16 -0700 (PDT) Received: (from rwatson@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA24702; Thu, 5 Oct 2000 08:37:16 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Date: Thu, 5 Oct 2000 08:37:16 -0700 (PDT) From: Message-Id: <200010051537.IAA24702@freefall.freebsd.org> To: rwatson@FreeBSD.org, freebsd-bugs@FreeBSD.org, rwatson@FreeBSD.org Subject: Re: kern/21769: jail problem Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: jail problem Responsible-Changed-From-To: freebsd-bugs->rwatson Responsible-Changed-By: rwatson Responsible-Changed-When: Thu Oct 5 08:36:58 PDT 2000 Responsible-Changed-Why: I'm chasing these bugs. http://www.freebsd.org/cgi/query-pr.cgi?pr=21769 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 5 8:51:39 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1BAED37B66D for ; Thu, 5 Oct 2000 08:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA29187; Thu, 5 Oct 2000 08:50:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from hanoi.cronyx.ru (hanoi.cronyx.ru [144.206.181.53]) by hub.freebsd.org (Postfix) with ESMTP id 217B937B66D for ; Thu, 5 Oct 2000 08:46:44 -0700 (PDT) Received: by hanoi.cronyx.ru id TAA03183; (8.9.3/vak/2.1) Thu, 5 Oct 2000 19:52:53 +0400 (MSD) Message-Id: <200010051552.TAA03183@hanoi.cronyx.ru> Date: Thu, 5 Oct 2000 19:52:53 +0400 (MSD) From: rik@cronyx.ru Reply-To: rikcronyx.ru@hanoi.cronyx.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/21771: Fix for sppp and Cronyx drivers update Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21771 >Category: kern >Synopsis: Fix for sppp and Cronyx drivers update >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Oct 05 08:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Roman I.Kurakin >Release: FreeBSD 4.1-RELEASE i386 >Organization: Cronyx Engineering >Environment: FreeBSD 4-Current, Cronyx adapters (Sigma, Tau, Tau-PCI) >Description: Numerous fixes for sppp driver to make it workable in real life situations. It also contains patch with Frame Relay. Drivers update consists of update for Cronyx-Sigma adapter (cx) and two new drivers Cronyx-Tau (ct) and Cronyx-TauPCI (cp, taupci). If it is possible, we would like to submit the part of the TauPCI driver as the object file (containing the low level hardware handling routings). We knew about NETGRAPH and we support it, but many of users, better to say most of them, who uses our equipment still prefer sppp, so we would like to see all our changes for sppp in main tree. Moreover all our drivers hardly depend on these changes. We made patch keeping in mind that these changes should be transparent for all other drivers and we think we succeed in it. Because this patch is quite big (about 1M), if needed, we could split it in to logical pieces in order they should be applied. >How-To-Repeat: >Fix: begin 664 cronyx_patch.tgz M'XL(`%9[W#D``^Q;>U?;2);O?^U/<3?)F0'\P/(3R##=!$@WLQU@`[W3/9LY M)[)4MK7(DD8/P)F9[[Z_>ZM*D@U)R&ZGSYZSR^F65:I;5??]DN*E<;2ZW_WF M:_[1L#>9C.@;(AH,A_)+U#._9D`39SSI34:#T8C(Z0U[SC#,:]B9'_>-P; M]2'_/GZ_H=Y7P.7!W_]Q^?O!;$:=@CI3ZJ34N:0L]3IQ&LQW5>[MOCGZU].3 MTW_GA_5QL]/I/`K8N%X4]*"@OZ>!O_N..I-^>TPM7)T^??==DYXWO,(]V6F>KMSN-M[%WHW)^*!!!5`%@FX<`U18MV>)^IW&L+>,JF"]= MRE0**`U"6V;%M@%>?0GPAR<#`]'/HQ%$%O;S6%2PGT>"8>DY_J/+3!5^3+E* MET'DAMD!,S')<5RFPQS)UAL/VOI%I MD(3X?Q:$O-R+HSR-0_+5;>`I((+9-@5)Y.;\`T/-%=^X1;Y@[!HW4[]QHU9: M'UR`3.X2<&,_H,Z$3U[80SC\NCZAV?TUY>4+U0DG.N/'>9< M?])K[PGG&MF"K'$&PVFNPI[Y=4"F36=7)^ MOF3./2>7EH6WH%1E>1IXN8+^::4$Z\B=QK=0F#RF3'0R55X0%QD%G2CV(1BX M'X`)@P?.D!D\Z(_:$\W@Y0V`*,M]E:8-C_I]ZK^D1L-;+/%X/!Z;J1(R\0*` M3?:H5P-#M,-S@?$#N->$9C[(+4?:[C"_Y?F8HM_]CH+#'G[PJ'&W"$(%U7@1 M4"?,L1FKA!_SE#D3,X+9BT"(V-^;,!'[^_MMQUFC(E'N#1L8]4ZE:LG5U^N M2JXS+`9&K2;KB/LM8_,M[+M1P*W_?:^+WA7BG!TE:ZLT&DY)B5LY_L'+RY7\!Q8TF6TGO6T;'EZLF?)-<3-3( MA5@/W^,17"MAQ.VWFW MC=-:#<_-E#X&WA3CWC:].3N_>'O8>_FRX=B!\Q**W[>C/J8&=C`06H=V.,3< MR`Y&&(SM8(S!Q`XFLFK/#O,BE^.@$M#E2-& M95:.1K)29:Z''W'+_T(=1;MP0KO@C/7(K89A"22I.2(IP[?;QMPLO$=#Z)#L M+1M+KO`XE.&^P-*[%C*;]^62#T];,NB;)09_ZX.0@<$_M!JSH%0ZL7RQLY5< M/Z(&;&3_KP9?H@;"UZ<)N+_WGHK"2PXXVU*I%IU(Y&GKA\/'US]16YQQ[Y'U M&ZHS?DQUDIW'E:6N*H9IST1;GM4YQLF042&N^AU._FE`-"1"X3]&'4BT1[3/ M30""'T?VS_\-R1F]X_4-+AJ1]SLH,/;(V4?!0'U'PO.`^D,&08ALE2%2F*## M["X+ZL7?^?1_@BG.8*BU6:"K@/V1%7IGN%)H1@BI?^*,+]A\D[GYUV3N%S!G M?__K\>:)>V^RYO[IK-%.ZK?3.NJ/.+-"TC1PJH4HD`8#@D8,1C08 MTV!"@ST:[-.P1T.'C7,X(#!@.*+AF(:3+Q!39=A"'>QZ/'S_-63&@>R+94;+ M3.T\FL]@HI0:8;_TL#\Q)>)XT@9#422BUAGK#(;G1[TRF_50[6EZD5AASF!& M-;Q*D&:'<>DT.X\D/AWCO@-VWIW&#N*9(,IA9,V;(T6QGWPPXFNVX]F!!8VI'CE[GV;&@ MXML11[,=94>"RLR.1K)2//L&Q3H=(:J+Q^J13D`Z)O]X'$9G'.7>M9JD5!?+ M?MU?W"ZA]%A#C@=E0?>?\6J[^?&65#8-HMU@L#?>?8-Z9L;E$?>4'CY>;U`] MG&^\3@/ZDQN)B>\?#,8'H[WU/M4C:];;52/G8#2LVE4.ZL:68XK'Y_3B=:K4 MJZN3@X]LUKXEI[LORW=[SBZC,39H)(I[(:?W";U@EES]].KD[.UA8^8'J&7> M@8.1NL^G<0SF/C^_N/[E]/H`1;,71[-@#JNSL\3^)S./L4\WB+RP\!7]89KY MW:R8H@3M+F_^V+R(PA7[Q8?LJNW[%)F8PSXFF\WIC\EH$T[W%"$KN.W>X*#7 MXYZBLS]Y3%8/UGY29KUVCV4V9)FU+M]>?$^'9#G6>G-TOE>-NWLH3UOK/$S2 M>"X<_!+FE/M]!//JO,^PIP3\[_"G6OP4!@WV!\*B[HE/5RK)U7(*#1VWC<5T M3W*Z.KXX?WWV/8%-W8N,C/9C<+6@\Z,WI[@[7U;,[9[#!2S<*%(AZ6=%ZN8! M<"GR(`SR5:UI5NNO\6Y7OYQ?7%Z=7I:;U1I&[5-4S M-W<)IRB*$SXJ*V<@R#SVXM!.4+?;+2?+_N'&+%`Y.;TZ?GMV>7UV<=YL72^4 M0[=90(?.TOCI>:G4,"O5U+8`3L_B_UYS&USX7V$N,#*8X]><%^4V_\1T@+9 M]E:E*]:K//"*T$W!"60,FKUP,6X.3))<6JK`.*OT8(F<*R)F!-.Q1B8VX?'= M(@:^1K,9MW?/.O^C/S;"C)Z=14!\J;V'H>M9L_4+*S4PRA+E!;.5U4B+;E8J M+DQL!LW9W(/55*\-E`^>&]<%NP'[8&QWM*Z_]1V860(7S*,XU>8:BPJ9,[&? MNO?@28V"5]X*?+E2O"*+\3CSTD!C8XSM,?CNJY`ZN3NGSEW@YPM4,+"6[EE. M?XA`[Q_9,X&6"F\(CM4J8R'6Y-35B]B7(AA"#?.:+=HU;5)_*V`U9FE],V*;!,A'EE%6T M$#N'AXQ6<`Q>L538,E6AR[U_@Y:<@$TEL_GQM#RK=)'ZI"D,',)G[61A:R#< M741B+9%6[SNV&_CQDD^B+^+&+F8S`VEU/8!K89]7D9U9LBT(4QQD,"^A&KO@ MO[EV$&MS5@VP$[913+&O[X%QJ;NO8;/Y`]Y9P92>V[H".;`ZA<\6@P=]LR+D M-U%,\XP5>AXK:`W\Y5R?8AQ.FX$0,9HM\1U13"P)T92T2/+,,(1C"C.MG"A] M/[N@5,T#?F&HQ&>_.KNXTDZ-5W!@HK.K(YI"+THV*LO&:1JH&9TZN]]/>H,U MAIT)7J`Y5!X?A[,TF]KR7`Q@KG(=20S]K@<-*K3R,`+PN0&J$[:V`+(OE=T9 M$<)%D:N*Y;EVHGD<;ZF6$*F=L4;Q,K+VW4X[J?!:%)^%0M[O'6#T)V&:ON+]$[S M`#'I.%1NI"F["2(YN,X#@)Z&OUY8.-%.4JL#T$-,,(_`ZC4OQG[4.MC*Y5E] M+5,XUP+JQ**/'3 MX)93.B1Q.M?A\-\U61>+"J)7,0=_/J7FFNP!$JQUG+6/ILIS&5*3"0UB4A#? MPC!@`S]:AW:31+G``,9YHU*3I.\`6;)D_=M,.?27QJ8YXW&_^J1KU9PSW[A)K= MNF$!02(NB"R!)_3N@TIC/<-!O%(?*]1:F@#.&5`L>#=0 MC2+U2D=BJXW@@];#+>ZP;-0E7$_]I8;/NE_2N1Y,2;8WKB1/X4)A+ARP!-.M MZY]/MG4)49Z(N2)[@&4<=?2',G`AF&RV=-:1QVE[#1`B-3/*PM:2(W%.D?5= MUS\?7_QT34D0M25!T:1KX`KD[)PA>+5.B'UCO%*;U5VL'Z1PUE5UULGC3EFI M<4991('GZIBNNO!;IK2.V,4SO7HDL&0:SGSR=TXBCQ=`JYE/@B'Y!S2X5L-FR/-5Y<)8+VR`*0\H&P\HS M=5*^@'K<09>,%^1LMJR?-]&K5`(R4V"ASQ*OI&WLH*3;*$A0!54WJTG%VHFF M6IAK5;VT2M'U[J_L4BXWFC_/=,$L)4E9)3[2W4!XJK)^W>@P!K`"1_Y60)7! M/A,8F`3#D"<6;]*NT,JQUL\H>U5;8)%V(E986JLW?#%PUD4^F,V:R_[%?.UG MOT]CM#F2+=T520]&M%AJ>NU&UE;I#E*@.#D_XK!:QZZ,C.R0D%]R'(:DV=+, M\L>Z?;P9_=DVI*HNH46JY+E;;TRME4AEBXO[+5M2^+$.U<.J#7(!]J^L[IB' M],/)C\?T&)N-M<[2:L5K[KG16SB.U:>6)$E2K;F\O'P%+X:N8+TF(EU8GZM?W-V68_63L23L#7'6+T&13J!2D]5R* M.[,E/4J&,)#@R57#@Q8LXK5I>/EJ6LS-ZD\Y0/X6^3#-^H-^6]_?#D9M^W0X MW-?&)1]PYZM$9Z>5_CG1R]>]D4UP;8]RS1(> M1@`&1RZ\>^KHT,;W4J_SP,8(YFZ9'K!D1*FU&+LZQ1/LFJT.72-]@:BD/.2V MEJW_*W'9W-P*Q?C;VD:O>*/7!C-9K4.#XCH+.EW?T""*F!3,`VX35*W`UR5M M-`M26&BR6&5LO^5:/[@-[$>T,?1M6F%Y4;99H8W21S*N36\5QO.UG71OV31( ML;2^(E,0D5^>#B=HNW!7>F;+[+9=C\8/Z;'L.18^,T?61;_IYPSQ56R5$D+P M1Z&YR0OLE059;E[C<"H@^:F#1JZ6?XY/FQ( M2N<5.>I;+@L>MHT-K;DAEMLSB*UIV4"5Q_!^\>?4GY7WH][(!"%.>27^Z!L; M>FSD*>L1FQH_+`:X%5E+KR%K9"3>0E<4[),,3I)OI2O]-H*[5S%GN;+"-`,? M[5'JX-3F(#R%PUJU=::!$^>Q?K6AC]/)S]G;?Q-DN*+%G.U,TO%"(5$5-G(# MLTQ]#!?\)`R%"_IFDPM60Y,%ZQ7GO)`<OD\L8%:2T7L5GU= MI9EXR+%JK4RH"C252C)N7PQ5Z3GK9)?>%)G(4-1=,KWSMW\Y0SR.O)A3`OE> MWKV-`__1.C:,,TMBE'X(A$1]LTDB/R6[JQB2)!X29#!73EG;ZS(BU)%3N4IO MMJ:Z6*C7O*8G)E6\H3E4*-\T<]AJ>%''PB5Q%G!YAQ2A!BPGG=6.HH^?I-_M ME56][-)L?>I,=@8Y]XS6CSR6.BRL7@OK-[!&3VH!D7.2Z-8+;X2W]I:Y>Q9! M\!!>K-/S$ETQ!)LHU?7!2FH1S-T@DOWL[4.S])`=E5T#^'VK:?)VD+G([[2A M&YU!C_Q7*,9T>&":N"@3^1KQ:H]5K0+)':>/538W7J!&$73,W28VL@%J>41/ MY6L@8QBF^61/;M/YZ?7W;X\N?[!%E[_=-3TL^ZJ<>^7`VS(H=>_H^/3R&A;B M8-1,VXB.Z>ZB3,E/(1"J?IVZRH$4_VE9 M9I)8CW-3-S==JQF-^),)XR;!:?+O-H9=UA]S!ZZ[<+!RBA3EDFW:H/-S--S[JE" M?S14G)I M!2@Q,KD='-0A7'M;;E+O5M_9L^$EO*WGI+9JTL*ZU%F*F7N=FZF9H6C=E4_J%?])S?5*^P7%_6O M$;#=FB$:KN39H9!ZR][J2G]'JU)D,K M&(?6W@?SU`\G5S^:/B6_C4-$B'5WMUYKAHAARN](^2ZP6B,O+R]WI<=3M<_* M]M#V`5>A/F%1+F_A.Y!+)F^;N`JK/OWP[AWNZM1:MR5W>GNLN+;@VJ1<]Z@LZI`SNP0=L6[:%1@'[Y#;VFE>Z$Z; M[7/H=P>@_\R&$4D4UIY$K"G\FOT'$V$Q-S M:\".[<29Q1@GG-C&"SC)O$D>ADMC]QCH/G3CR\Z9__[615*K;^#,S#[[93// M`.ZN*I6D4JFJ5))\V]`/5M&J/+F%@@K'UP2-7*MB-A&\^XM-I/QSL\,7J]FL MR%*!S:'7=.WADA4/+084<`T@9;6F(*J[>Y5*!2TXOPQ3<2&4$&IUEIIMZ1$^ M751T0S#]6#M4*Y62A?_I7]6-]?>A`5"4+=T,%+1A@>=X%34`>RTX"Q5QT#[; M,5J(XS,J+S7;2;KR_Z/3Z[69/ MI=SP0*3%<3"__;B3/AR-,)E#3CED3XT>8]%PW@X\<7QO-J0%A;OADM(_S"0* MG#_C.1DZEDCZ0'L>1JX'!@1HL_3?EY;7T]2?[9`7*X,%[#2QJ2RNAZC!V4HR MLW)HS=Z4?;2&G?$-QL!E%"YBDBO)4)FWT`C4?#@!NN-@AI,=:C>>^7JM;KMQ M-GC?ZO?ZC?ZZ&&07E,92+KQ2'DUHA"MO(LQ\4K9!/QM)6X))K/-L+!Z[293V MZ#'`-:80AQYHAU_#>;=!!,R3#HJ.#-!()4TG5Y0D(A0H$9,5AW?N4O/2R>#% M\*@U:!8[IO>=P5$'.1)1AG2C2H[^WG@]QF!+:(N;`HVC#.9?5,?\4NMHRN6X M.+\LXLP#"*AO#GI8D?D#(6;ZWJWF1)M\M M%'"1+N&R1:\6PSNQO1IBJ@;^5CDR[):"WRX[G"QU7&58H`D*96,@")M_/%PN M'9AAC6BFV)_,\9F"!ZSR!"LEL.B!_,R3:U'GL),\Q9Y;6CZR* M7=PK4-01VH23>U8ADQQV]S%G&1?PB02=`$&LR]*//:C?R+N#TC^<'-=@IO?< MV7`)3>K.V#^-2O(I6!<@?KX-"+S4%P^!,7S2$P5_56R#*XN8Y+N&@!JF2T!+ M"=6UYRY4V``^%*TB1I.HNB#?)FYK"7_;V%&M:$VA%=$<5AXV4Z(.<2D[EP,: M5(^"LIW]F>-AMO="AQ'.;*0_HP+.T)RP4TLYOORD&.K9=[@[`!%Z&9T`2/NU M*KE^V*LI+%8K]7W]7G;.LQW=.[I?CE?`W8@*@Y]^D%:4(3G1HC@A$N4H+BV* M_%8'VFG;=:>IM5'$PJ(2+:L)]68>B(&/=.1),!C#HO:6L9YB,>R"T6HZ13T& M!>)R@:"-JA/^XW]2E:W\F'FAU`IEN5`JG2\=YG)$QT52MOFW5%@4;"?/<^IB MU(UME-D*3_+!C+^'\6R%;B9;@UD*J7,;39IT*`T1Z#BA`>>K3T37#.+6UQ4Y,W:RRCI/%(46(P4CM8L9A8+]E"W]5\F+J[` M"+5(/Z;X&PM#'*_5[4*W(10K\@C8WQLWZ+5:HG'6ZSR+;&R*V'HJ04+4DU$0 M(WD"JB)W_OF@6J)#T@XR,[>MC+ MI>G0;BF)!L,N[:G:Q<*.A=IM!MX@+B_=+]%F6_Q=OL.-.+YZW^/D(M^]#^XI MEVCI3E9CCB;*#*?6XAIF*9LV3)T%$XZ3NTMW=7T#FALE%[7#\0K<2V@^7-TP MEG7F&'4,*/M8^F2T>HCENS#!$`.E'NW>,I<2QT.@3JNS!;7R.'/!\@)-).0Z M#*U$#L$OQP@R!V<,A^S9CBO393#21L%2VHYERZ59ZFY='.[/+XG/-J>OR`)! MF+@QL#/E<$-"4^"CA/M56<0XFTB%%X?]3'NVX7.EMJD_=HSK>L'MT_*=V MOFZF6GS:SM?Q7]GY.G[2SM?]7=K0O5-^]6Q'O!+-IVY9EKF;VXM8MB+=WP]NP>]]% M@#\"=[<@U5UWCFO=;Y=.')3`.3KA3GF44>H$GJ0&UI)>'>Z(SXUNMW'1;[=Z M;(NCV<@IPW-OYJ`3`Y2``#ABJ&2H(8'0&H)ZF4\:#PRFY?5PX?@R M8N)ADC`O7?%Z!I'A.!?FY0>1:H(ZF+DXJ_HJ.88"WEC]6]L+C(BJQ"@0.4J4 MPM5URABF5$E?E^&@ER8U,E6D_&SGN=XN[@<3QRW=O(L]FSFCQ$/L^]C#%504 MA"'Z<#I>!+/8,U`&BT0QCWZ9)L:4YY@XY:<\1SLK[3&=F1E[L;"#LC.-/9P/ MQS<@R.4Q#P1Z"^\I0\\6YXTO*!L8P,/'N#/J;CH;7A>$S5\^?\WY:\Q?4_YR M\.L-)0(M,=QW^[6^__T-4Y'C;8#U>I/+E5^)2M''`&1!6&!MK@JBBE_4.82/ M1N8`4W&_6GM(!/=E8IA8T-M7KA<,EUB8?(IE8#AM,2%82I+@A=5ML/9_?[:3 M(\-YNOUL9ZO'*D#MK&E&5,85JXQON"MI*Z$3]HOP<9"E$QCI"HL]Y-_?`A4; M^%KDC?#?Q5>99_S5V"->*I6^?YU&^ M50A%!\%,P.0^;O81-,8\CI&R'U0#^W'@Y"Y*#6O'83FA/[F)3F-,XQ@9^_,T MPCA$&,_LX3()LPCS>8U6I5B5;M'1<#6A2$0*EI8K0EAC]2,..5V&8&8R=`3NN3,%-L5@,',6JX?! M@##Q,*3);.R$+8(T&I,)B,T]K4\Q+B8G3PD##/6P,$PGWES(V9["Y56I,`Y?R8-W/"Y2>'KIL?,E10$"NF9 MI#$IY7?,4\$4%4SVD-W,?G)ZK0/_"%1V**4&(UHG43J$A)(P1GY#`IS3%'ZO M%*Q"5?-K1P4YFI)`F+D\G8CX`!QN5_#W'SC_K1:HM2EQ$6-CX$P-PG7C;9Y" M?3DQ\E\VDB'H._Q%APR\H5/=3$J8N8%9L'![=MBR-XGZ>3RV@'@'[SBEZ]++Z4A'*J$&(N ME\-R[1V+_T`W$;0,U2#W1XQ$X273W]FQF6=Z2>3X!7'L''&MA/,6/G9V''Z' M%?SWD;#.Q-NWW!R1)[(5/+(D.?G,U3L5*7RC?6$THW-DJE%E)(F]^7)?B?+$6@`E6L;(&5"EX_!HW-MWG-"-<&!;+7 M[C3?MT]/SQKOP8':'@\G$S!1\^(G0,J+=T>:7[!7.[C5`%N5M4^JI.A;G0&CA<\?OG"C>)9T/8_ M:2D@4SOG52,/#[[K0>D<55"\K3WXW-F1]9+"A<82?(RD/+\BTEO>OY9^L+J[ M?WC\[^%H/+&WOCI$#MYC*2\K+_5X)0(&LS\!L3SU=W*$$C>_(3>_$3>_:6XD MX:V*5:W5=_=>[Q]0N=.MK[]QP3D/7E-S&F55N1^(#T^\TWV6,SO;*X@^=':O MU3\![M1(R!LBF4N3R@LWWCUZXWTHG#DM$IY^8`IL3FJE))@I.Q+H#RE&25Z: M,''`/(>[[4-ATEP8!4H3R:2N;!Y20:PH.`O4G!9BDX:<'LB0'K/;-5I-Q5>K M4C'U#?0(/#;GC%#B+)2X6C74J-@CH`C>O1,.C#)AJ;8G];2T48EN.]"'\`)> M,^2V4[3RJH_)CWD(&.ZMJ%EY`VZ'X4)I`(H184#4O.HR4R91]'9V!$TYLC,$ MG;VIA`JJF(\"%EZ:13FH+:Q*#*;R4NP(1Y3AS1LIX)$7+]0+['%JRHK1E]RL M?VA_EB1B(/.#MLDKFI"C`DUB3P8W]A`D1?8:S2#DL3&7QE!`)!P+Y^]15__$ M4.9(\.1"P=:UW%(O_4`"C"ADI?.X;4T>W MW_L6-.GC1`FQQGD![F7&_XNM0A@<*+`2HZ6NG[A6@[.6$#^+K)6 M&@RPL1FFMQD&*K$1IOD4F),HS_F4CM=+);+K3?.-!N9>'<=EBCG!YH)R17FF M2,I$F)QPV>WT.Z@F)0I/A7CWP0Z=F@NSQGCNX?CB]Z""I3D:&-;IY84: MHVB3\<`IP/.M?!I"HYV.`,_3$60]K M+Y]:#VMO33'(6UHQDK?RJP0:K\4GN>/G@(46?#I>J]M-Q8/G$H^P5!>'[FMH M$;#3JV3B:G&[<.\76RE*;KH"QC_5F)+Z1)>,DUNY"+U#\QL*0S%5ZRW(L%N`YMRNE';! M1@)CLU*J@'L:EEK6[*E.76#1`+BV]-*+8FW"Q9=>5.!G02S26/!6`0W0"/K+ M\DL\'%V\S.MVH']0--E]]"\OB/W%SB[^+M-CX!R_U-0FF%V-`]*@<>`WX3!* M!@9*N,+`WXA!",R7W!^[O>"FH*W1B'>(S&HM7SHX.(#F%V'%-2!!8@$``AZ: M$#HN$X(@C`)!F#00@-$@`*-!_HAU626O+IH,YZ!)Z07U3AD!^/L%_,S'FN1M MV(9K<1$Y"Q>035R-&<(G_AGP$?#X^)-3PE/M#`ENVA@J@#,?/CC&\%MG%'SC MM-$R)79B@F69DB8QZ%FF!$=,52Q3/B'F")8Q=4^(CCLM8VZ<3#^35L$Z$Z<5 MLW&BPRAB3L2-,XZ)I"2TXJZF6`XJ:413G57(%ABOELM%4%H-??4GD`@-&0EK M%<0>CHT083*/P3,OQ_&\4R`;9@^J7-'UO(R\NPV\A+!3WT[E`_M'I5\N=?YI MF*N*Z:?Y#7R,:>O,$QE9ID`S*[$TU@+O8HFG=:YGQ=[4.R'H+`'+;&3EKF+2 M:&JBZ7J._!]@:93!4B>27:K8&:>FDV[B!W-:G\S0V$]A2(\T(3WCI#T**-(( M-08UK=B'L4T^`S5^(*F*=^I"8##SC)FL$>'J$0E_J?ID#4E&D",RA%]'78VQ M-=0UK!IC3Z.LQ\%32"]3H-<1MS>VB0:=)6#7$?9_@/+HARAKP7P*:268*:1) M,HM%T4?`<%H)1:Y:+^(IMN(&),Y=/BJ)PQD/C1Q-510-T0>CYX`-)))E`GXG MZOLU#7R'T8T MPS!.%/JE>4AF92P4A6U9_<))HYK'Z4@&X*!4,-H@N?ZI_8 M0AJ5[`*S$03HPQ\(]%+G*MI2-680:)Z^!W0`#C'#]EZ+>=RXPI4XA`YQP_Y9 MBWO6Z5P"+D*'N&&'K<7%]!C`1>@0-^S@M;B8-`.X"!WBF@*Q!K=]\:EY]A&P M&=YH:1-Y34L3<@0S)EY9F/WV>:MWUNGW`%^CA%0B,IE=?N_J&#-#T>=CA)"" M*<9K:O"A_;[11@(,'^(;(V=="UQ^Z%S\@L**X"&V,8[785_U6JAO?B)PH_7U MP%_?^MUF'9L?H`UI#0?L6FEM?6JAR!%XB!T;VUG8'UNMR\99^U,+*&@40^I# MA;!6ZEO'5SA2"=QH>:TVUW328:I12O7X0@U*!)[/!?OJ)%6HTCB(/ MC*'P#K_6M8IJ54!_I35GE,2+TCXVC'ZKPDE1*,QT#$/3,8&(40PS':G)P]-A M?Q9;+B\;NM.I&;C1*CS2!:2KPQYX.7PIC*;C$R^!2B[6OB]'2;CC-+AQ$JZ9 M!C=)PIU$X=1)F@FXE0QZ:RM&5CB<>60-U<-\S-I_,<.^I3=$0AM1(8A*]-U2 M:S[Y6-A0'8N%XBG,`*N)W6TU6S#F MTY&7X[NG(`^:W4ZOU_G4ZA[&"#R$%!+-?9B,>"8YH+&!U8Z-,#7&]%0<'UF8 ML$KRB[]21)CFA!PC(!-Z$Q=VD,1IOU*N(*HA+F_N:2IT8MZ!*Q0PA0L M6C(%7QFS3K:T;BXH+F3J292#RI\O:Q$6AA-.6%!!U*-E)1&&(?0.V(R6D1:3 MP0PY48!GN/0IC(S^)-W1!KKC/TEWO('NY$_2G43H6M;Q7SOZW0@DB60+MZLJ24SLP\4@4T>K]<--^$ M8:`T#LX[)^@%T+$[G)R\IC$5N[S1*.0TJS5HD]'3>,5=.VO&ELGF&C#%(.]N MVLS@[EF*]G46@Y[G93%8?@7J'P^EIDWD>/P!K:>9:<6^WO?/(7`V M(-1&`9W%FE75I]9U?65Q3U>TLFE#R!CDH5=BZDC0\Y'JA\[*4:S-W$6(1]D> M$G%-QZ0[Q&M[9KK\WY"K\KV>$ MS#J3C]TH'V3L;>C%WL, MF;'&]0Q)I\9DZ77,2&%79P-3KSU]K M1AO[9!O8VMO,5C1DN9XI=NC6,,5NWE]G*AH)W6#]HI.X1MC)=?SKPFZ&5]=J M"8F]U> MBY8>.M='B&B["1Q:'`C=Z`P%9RP/2'LQ MB\>[VFZTO%IZ>=;?5!XM`CRIAM4_4^(FOU0?$I#IG2:6WZ_M8(#'IFS8&#R5 M:[S3B=X,R7M#>:M*&2J!>V##C;<`F++=(8$B/=G87H?L'-!NZWT;4]=;&$E! MOM=N=U%7`*CS6+.*DULDIQ2743L9531M.K'PHUK@S=@I&RE4+`O!CHJT_]"J M8KQJ.GE;B>Q\C>XLBK3&`\6WG5=R,C(:FH`KBME8>98LL,;E64\O,)`%5E6! MUM-*K$9+K#Z]1"]>Q6IVB;1I4PD1%+2-_!E_5.F/S)W=%V[BYDL'[^'!;$D] M..)R$(JNL0O[SXGBDV4Q97Q&Q3'"F)7)F97%VC:RM@-&U]_/7K+AJIG\5=?S M5ZO^#_!75?Q%=B([=&J3O:"@^8#8HR3YU=Q,/%+G)?$@-W5@BH;40L]8B9$V MX[1]*,'0+VHESSRERMA!@;10GE/)!]O0Z#:X"5=9I4!Q M\>GC/VWNRQK]%XUSC,N$60AZ2X)N+F.#HN3U3PB!2"=G='Q\*TP62I")4LU" M\=)0S'Z56\)H9.C!-4?W>GO=(I3>>9.8#J29SMO3,[Z8O^?G.SER>09>+;?!G.%_#^6OA;`UGKX6;IL'M[$S7(HTUTG@M MW)V&NUL+YV@X)P-.+>T_XS""ZA&IHR-[LZASBT?A67KXY$[L')FGZX5B\#:< M8@SKE6@;4J2M>G-H2=<"!OHB/M*EH$0.#<2\6%R8C(Q.0_QSOVM$);*XHJE^ MOY4G&R()]4PN]DQYWOMJ4GYE[6FP\OYW/*H"#_S1I.'!ZS`HKU6J,8_I0I1S M@=K+V'614TG"O%XL#8SP<;C;/WQE^CI$*H(A=YO%1K#V/13F/(FICI38A&HG M4<-=;IN0QR9R9.MV6,'0LOV>X>VG"7Q* MX.U!N:Z5[WC$S=$1Z].4$92YL!L\B82UCH3W)!)532+#!?B\=(VKL7%*RS3\ M]8!&_5(L*@VTLQ-S>K.&&E;B3H^S%#-">XU?J[M[?*Q0IF7QJ=7MM3L7O7ZW M?8$K*'B>A+'RJE-!/O'QLH=J%Y8\=T+71?O1A@)($_"LH1\3^X14YT*58!(W M1J;U`X3F"4*F@O@12G:"4E1?_`BML4$K57T\B8HT7J1Y:"3L(#NA!9)7$IW1 M4]&R(D7]L>;D;9`\NSP?+O#_.GV4Z`CL\^&M/46=0R=C;X**G<*]"9R.T_[G M:H8[Q:W:877OL%[AX[3U6=Q/(J%.Y-['X[RKE?!$;JOP&D_DIO.XQ7/Q'_*8 M^\.GT2[<":MD5:NE:JE&-,N5UV5@M7(@675'2P7/\XL\E?OCX_-NS8F[LPX_Q`WX\TJ,=^8C_$KG)]0A^V3/\6."' MAQ^(,+7AXUI2$CD'_W1<^)@-1QX^G>&3V0)_SH?!>(+?](G@>,BLB[R`$0N? M"^^!7E!3O::V>EW8H\8Z/VM??.SM0&T0O%0JX[?YF%C`Y_C#>$$5@>?X_:P8 M/GZ0CQ^BT(_R\6/D,=W MP9(^!L,5'@H^SO&IL'AE%CP5WMB)`[I^.A1\E+WQ>#2"U^%[>H+7,DU&>,D+ M`CG3P=B+`(T]?C/V)I/;DAM]0X3'CP/XBB(]AN4"25".4:+#9>3]9!QY.UE[ M74"D6:FG4YJ;GJ_K/P+(?;8GHF=[HOH:]?5\>!\-5 M%"A(`T)YB$$9;`14COGVP>0D_C:-#3J0W1#H=*B'!!\/)A^/L8(>C9P1EN(R^'OM19OW8ZS7=@Z^#[":'UZ`A M([6915_#-&&^AJD[^GHQCKY?_,!`],8'^VE#!I^O'8@(\,,#D9"B`W'7.JQ: MQD#?GIG\W$VYWGXD+^ M)<_%-R_048MXSW8TD6:W<_'+%TGG>B!'Y`T:Z\]%HW\NMC\TNI?J$I;\,WPV M:':Z+489!G,`QBK6#E#![]0.ZM)`/O[8[PXN.H/SWN6@V^JU^HR!AA;2I]?U M6F5P^F6`V9DI;WOMWN!3NY%\763VV%C'>@ZDW0Z8YZU^J],=-,[..LW!9>-] MJY>+`*R7&Y(ZZEGD0_JNRN MY7*]OK6WMUMIF!>C7C6Z?;]$+?2L2.(0O3K$/Q2_CA]>%L2O]H0^9_3IX:=C MTZ>/GS/Z#4/MI92J!)F78T+Z06+`%O3=<'DH&DN07('9\^7=UQ5'W$QF8SZW MJ5JN'V>LT17Q/,\#":#B7THY;S<'ZXNFVV^ MFX_($%%U>P/1[/:JM2I\UNL'\+E;JY35E8Q4'+(XABJVC\]%"V])^LWFB\CX MRJ3F\A%7P6$:GCNBV=L_>*@41W1E>#C$@$!@_^/O)36?=(%%JL]DM5G M:BEXN`2J`9CKPY^YBRL/-2C(6?X+@QR..[?G\&B"![QIG+&?AO.LJ%X_)%Y7 MZY+D+DC,O\1K3)&'W&78W+'W?+-V>97)\$`+)";A6L6@&KE6J!8MUO9J& M@ZP9'&(ZB_.YK]&O<5>"M`DWW/K5P_?K!IK5TNJ%<*GE^ M0P+(3XH@?$4<#U+BMGV\/)+!O M%\3*PY/P:^:5;)KN0R5G,OXS-MC/V!L_1\JCD?'72PO6EZ;Z(#[O&=,E!DI1 M:\J6=6=!**GP_*GS1K?]L5BW4K0\OU@W=S#$$^[?2\-"KX#F#YQJ#JWZ86TO M]9IFCIWGV/[O6Q>M;KM)UZ78"]"N8WDZ?JP?*+AI7(%)14L:I^J*8;P3 M$?=N4L!/,9Y)"WRP>KQ#%2WG#LPSI MSDD.F)57_E(&RR;N6!>`1!RZN/(E75(O,Z&H7@`77O-'XDI3Q;WCXR6?]\-' MF*IL>9/O<]66XK.[G$W$9V=B@UH>X21'LUM&1?/4#Y+$;$CWR!HM7Y+U;"R$ M_7`S7/ETHYY*^5%#`%4Z]1F,+*@ZL&\_>+/A0E[Z1S=I4@%R(.`>)U\WE]KI MY/!=A26VDY(24Q)MON$3VI":;0$MM!H%=#V@RY>EKI8>ZCZHTL+&*]GI_O4I M7O/IX%6@O.UJZBRIE@(+4C6,Q:DCXT'*-<6FJ_6]4K6TKV/3U8JH5-'[K53% M'*\&NI&Q:=`1\G:]7$[*]]A;Y7)M^#UH7E[IO^OJ;_YS-_KGGOH3.G01Y'(P M-I'PPPHZUL_5JJ2+YL-;6WD--"$<%:]A3CA>.2`*<@C2+'X]&6U;>7ESD/\X M'[DS/Z+--_H=!Z_SJK-$'"_EY;^71'(%2\K#_6MA@(@SE!:D*!:]Y`0?T M>1L-.?B-5AW,.R95!-DCF,N[/;R[=KY:.&-U*:0\%\,W:)Z>]A#\V%[>VC/[ M49P.HPT^\]0E''LC$TG4#G2V&>\-(A_SCNX';ZYSV MKRY/H*I0VG.^)TP@%;Q0$B:'"0X(X7,;&'CGS-VY#5+_F,[6^8GD"L!.^'9A MSPV@"]'D-%@S4"Z8JK*+4\E>A+6]R*IM0>`K:9!U_IA61RVVU MOO2KI[TM@#K#=5)QVC-H-$\.]O8JU)6]CL#?Z8PRG.*U>5+L=LYC[!8$`Z6Q M>MGM-)G3RZ6+(YE40+*4SOEEHP].'Y81.BPDZZ@,ZZ6:^(I[!$7_0[L7[?MF MKSTX:9TU?CFR=F$PYYZ?T.UXVZ`8YGY>C/@V91#.$1I1"&Y@7S4[%[W.&0Z1 M!MZA+F@\HAZ"J7]$R@A4!P:/3:1>JPMXIVTTV$;88<4QF(].X"X-J$_MWE7C M;&``/[]S?+1F,E'`M6TT6]A:X,V")X5C/"FUO5]ZGWH?SA$,?Q;]X!$7&7%. M`OU-LAR#/N^]CT&K*UC_M;)7MA\GWDH0M^=@"$$[FJ"7X`?4!M8Q=J[K.P]" M/<`I?5;$K19TE>*"+FDU$`VC8"@P&O^'8B['P\/AFT+WI]\.\'S9/6I]QS M-0_#F,4'8%KC!4TXB<,`8U.S[PI4NC#U@:-S*75L@?J=;J3!V[SIJF[;GJ!@ MAZH0P+&11.]Q/K<#M)'.T>N28@YJENT6$Z5QV6X.VIT8VC8^SHMVN8,,=60D M:T;W9OMX<_8CE0ZLV,#II*#OHZ1KP>\7^4.SC`N89(ZJ5`1?^HCS)CSS(T#' M5[VC>@QHM/)].PJ&G!U9,;AV1^#S*"3,P-VC:CT&>=&G64F9XF`OAW_8D;]P M'8O=E9GK>8_LS/OA^^ED'#7C@8W!Z8E%OM8>>7)5$YJ`$8DIB0K=AJO>6K&W M%I?=Z#?(!H+ORW;H+2F\83!,\O!9\F#5(X!6"F!5^IT1P,@?&.2EUD9.\(]$ M.U!0?3Q10,!F\P0ULH)['@& M^-X+.3-SKY.Y$,%H732.SUH#(CPX.6_HZ1E^HS\0:VOLAF%P.\*^D<Z`#0#S$@@F'PG[EO!*:C^.!) M6X9H^O,D8-64Z[OK4#"X"CZ8S?Z-\,=@C"[*_"7\(5CPSW;D-5\2F2$EUB/> M*TP6-?D-\J@L.0')`!>>(@[J>#3#V0S55K,33E&*(]^HOZY21;KSL@/($\.& MO&Q^Z@].NZT6SK1H('KCNT#C*-L&`)T%QBU#W7"%YCX/K6Z)%>^ M87Y^4;Z,BS<3W@4A]R'N*1@#S:MNK],E[&"XE+>$C^A&7CPR&"?.Y\J5N(&F M!6)],--O+QLG>/,%&J?HCG`UZ9PC,D`M4FOV;CHM?JH M3I]3O$_)G\]S@KN`Z7&B]=:0]E%X+F9A_'EYV:<1F%AX'`>!>6;E MAV)ZQLOWE[`=$T54J2WT6DD'VNJ?&W)?MZ00?\X+$?= M.JK$`CH9QOWD;K@8PR3#I9WKTI@'>;?V-IAI>6+4T$@PN2?'&@`:8XDC8O4( M3E)!`@YKR)HA6P!9U9"*=0.CQO&Y*$9M'49=AN>X<8=+]--G@DTL/>0]8_PX M%"4TWL%$B0(1P<794X>>)T8'S+R`@)<4'C?(S!P/7_2;E^7VI7!Q0'B2HEF8 MDRQ*!]JUZQ$.1<]%^*X.@8^1+QSDDR'6F.K<;'/@&D/L%S"1&S(YL1']I-4L MHQ,X$R?-JO50?Q#;O_[:7P''+S$G-IQ('Z@*#$HDP65>HI$/9C]>H7$LMO>K MN[NO"P*_]DWU1'(F0+ M@-,+HPFC1_!*#.]1LX'B`2!$E>_2=?Q_Q-L$ MV##C'AZ7-J72D-NX%>!YV0%RP4J(@M;BY^S0=B8]X^!>\X[<79>=L,?.CG MW=.F53^H;*7AX'7&K7[:FWXKM9!^/Y79JW;:4QIYR<>?_IG:@,>7IT]91:`/ M#%#(`/8X&N-,O,Y844C`T;I"8W4M1$U4ZH>8HYN2TY"!FUR=?AVN+M3V*+L! MOSCKY)GX?0MFZ*V"/H-T"Z:&2MG:J]/G[FY%61LHT5N%7*X"_S?/>CAWG_?^ M*"`%VD<14MB\]BG7A;8*<6([O_..B@2Q[&59)A)G:3F.4.G"D'#GY7V#1HR3 MU'H]1EEY',^&$]`V/T1DH=O%!=O!)M MVE`26F"!W@8?R4)`FTHP1M/U'J$.-V"P-_-0SL'K(I:AT%J+:_`]R',69\&$ M\&`L!C?N\A!'PK4M/@UO5S-[<>L6Q-N[X>U_RG9?KM[I0OKHY&"PF^8O^*W7 MF\"F)[?GHB,^-[K=QD6_W>H5R"6Q[VQ>JG'F&$N;$"4@`/-JX(#4H5MQWNKB M!KM^X[A]UN[_@BLRI^W^1:O7$Z>=KFB(RT:WWVY>G36ZXO*J>]GIM<*J#\PVN#.\LO!6X-(_ZMK88*-[?:D*R=9,.BS>\ MFK#FQ6M14-?@@',=LEEP0Q8DZ!H>W)`'"6PP\0=M09-]W`O[#*4?,VU>5VKZ M3(181]O68.RN%G3X1;*+1]X=ESE*W$27QN34MQD\XY*Z*#3>TL/@QF5R*7#+ M$'##Y7-1O-50-M@J>:5?&OQ,=5SVE7)1!`7_!-"1@EUW/5SLFGN%XF?<-9!+A+4WQ<5N89TS2NJUB"R,J9=')@5,W@0?-KN\'`[=7=JS MG<8Q7;:EVH:9A%D>;Z/CM7N^SRA5`]&]1E(%\:5RD@"X9!YFN!%2RMC@N^[> M4$/)@JS=(M0[+&^"^S"R\*FT-T:Y8:NLQ=/4O];WO[\1@&]5!=U,!A.-XTY" M;&[WYQ-[BNUXSJZ.MJ$J5&>RF&Y@[G6AC>F(4<0,Y*L%ZPZ43/):UKHB#'W=;C8^Y&M<13QJ@/K'C8'ALW>E9 MYS,X_N9,-UI-IQC_A:$YQ377%*SNU45N-X(T=:8NH2Q7BSC&U<4)H^Q%)TC" M62TFJ4B]9E.WT&L>$'RD/$[N:QL+,775]N.H3ZRE(H)L'V306$8JK'L?Y,(T M0E;)OM=WC>*S&)E&NY=C(OL91-`2-#2^%\K>TF+U3SI8)K6#"7XVL%D M8BA!64]TYS&HX/VXN*:=6Y4;M,&_V'Z)&>1XRL)>WBBR$03#\4T9T]3&;.+K M:^QD!IDLLR2](P,`O(-K!SV?$?BWP4M?\%D\>'[`U_WOC(#)B_;#$-PB6^CS MWK,=%`9[5;K>(I4S#?LY#IN`I@DTE[,2+W`*S.6J M1C7>VT&9MOZ;#/]_]OZU.V[CV!>'7VO6.M\!\5[+6[1&$H`&!@/)G_WI2U5W5=\`#*5$+[Q.],"\K_#N[6>[]N8";TZO#OH.IW\S MA9!ZD10*KE]K<2EMI^&\IR?ZRJ-'I;K-A.>JAN92[P?6R4_)P#(R/DZ31;T& M@TVJF6L/+KJFMO%W0>/$5+17I8:#^0SSKA/=4@[LY/I,`P^M85$[X0@%;BH"`B^S^[Z?Z)C5FU%3%F9R6&CHL M&YB.S`S40]@,%ND9V+;?^6T3,U!C+%;G4F_KQ`?6!4A&D+]LI0>E[F.#ZM*# MLFV_\]LZ[.M<.B-KYUV9_9O)IYMCQ>GCE^G'N\;?^8T31,'8/"99Z4&IA]`A M]>DA8=/O_*;47M(SJ:7)]G^"0YR9(DP<[\QTHC]5YRTH&YN>GCU_F1F<,B/_ M[([OPCO20R+NZLC1P3',;&Q59FRD_7=A^Y0=/'W]!J"F*U5ZN)9^U_HG",!V MJHRXF./FV>@RQM"U_BYH'?&-8$3&!36OGU+HNH):7ZW.Q`B>-!O M8?;T-*:,8GC\G!O]JD$7HUK\Q>\7\%!E&*7^2??*SE4J:.\M]JX.9XHOG>0< MM>5MV%]YK/Q#-O8%'WO$;]'W%&RM%HD)NQ'9UY"D!V/?6E*P`674++_CN^". MR#A4M$_Y:NZ-).,JS=H_%W8.#((;:]#2,$6+^8@3NS97H4KO5W0>N8;B'QFCYM<@\#'T-&K=G&WP6-$PI7$48!IC+RDF&N+F0Z/%&R'.8I=`!K'5UY MXX5R=/&N]ZJ*/XH6OVQ5M>;ID\+RLM='O;4&8?;-OXN:.P"\F-3C_OCZ>7ZFN3(U,L. MBMO?:*1B5U7NI-@47HS`GQ/ZQ4]^DH;M]*AX=:I`/9>'M;WBR8"_EQ[9SC-U M-*`BL;H&89TY87!MCA!5[Y_W?]=`P0&\<5ZW@(/\S3,/$-@XL(C";;SE"_W: M(]KX^GRPN3G2U^\<"7@;AOO%&SSF]]VE)-P'\P[*MZ?G%Y>99X:];-%LU^\0 M,L!VL(7>D.+ZTI(5@^H?#A2H27,42$Y[Z+!R/+11Q;.'WZZO']XR6ZHM*6/=C.[;QN?W'];LOC-?.@VU\C!\?J2WZ/Z^_'PS&]WN;Y*MS-C^*M2RWZ'P>]> M1^']5_G[CX;N/SKV?X\0WE3NJ?#U0I\=MPUN9-L4;AK*_,)Y/KF>LC M4U5Y^?KBG3'YA61T^:/Y+.\G)\D&:B@'R%V2@.F&%^_&M#LYN[YZ8QL> M&*T47[!MDP\F0DJD!)+%G`0VUZK:'+T])E=,D*. MAE=J^F%,U:A=;W&^0R-!&0[R5)-$%^XYT*F$D`_DY2-\%R/<$=,0]'==WG*@ MRIF")I%Y^%K[]A?JY.%4W_I,V(34JI,+$JMX]49O=SE[C69;OW]%W7:V.B== MO)>RMQK1Q\7YU3K?D_$+0WHJ_V9>@&58V]719S=\(?]O!!2O&NT!W[XP7\=Q M]:'.R20H93(UB1]O*@_F0&:5HC)>GQK5F))$D0,G4SY_L&3 MQ_L'SQ__]NFV8HRJ*COYOV>ZX`-90,OZV\/7IT?@S`4QT>6!=/4.UE?&1&!U MD76PY0C4=,T^/"WSIH;K_)@WD!=,.4WA>H00RGODWXO$?\&XX34`L0)'-:.' MJ9O=?,U@WQQ?VA@#^M0!Q>DYK3*$8K9S:.BD2'G"MOWIFC8_5YEQN,%M?E87 MX[5IUV\?!G,V([JC;[JC'Z;/.)%M31=:]0,C_%D5,V7(AG@MC,7=KX[!B-UL M[E>_%N]5TE%M^M3'O_"U?#A5J\*IF&D]!PU&:%0\8',S?6KOOEX9;2K4Z7M5 M^:!:ABFSB_=W#5Y_=?WJ\N)ZK0^]<4#+KFZ\&&IJ38#/-/ERN7H_HQOH)JJ5YL0&] MX3,[H,^\'V``X67]W."R? M/-W]7P=/GN[-QWT3\_1];?*N+G,7_U:5]$O%[JOJD8.LVKDK3(X0XOCM8800 M:A%]LR><%^=S-74!X4YDYA[A3F3F'N%.9.L5+_ MD&&;]\I*.IMMVD_4AV#,DM?)9Y5C+0G7+[I2+0^YL M=:U)ARUM6P#$5,!K;I-?KF74:+Y\H MHP/O3ZG(NU34BXWTZYI,+?J'@\L/NO[I4=$ORI)MA[ETE5&:'GC'.KR#0#?> M309;EW==GY_^J-]W(V\TE=H/S>:&TQ_O:6#CGE8)#P!G[XK;BJ4/UIKQMQP#Z)!?C1S>AZ-:RJ\88Q^Q5,!WAZ?F=([M[5T- M]BA-C(80>Y)A.'O8'(-S8`[X"5[`+'NZC4/2D;ZNR[=@@GYB56KZ/FW0W:DS4O@U-=J3?!G9Z_TB/2;ZW55[]47E:IWPBG MOFI>)._-`T#HZNIZ!:=[Z0=!Y]*]>V6F.-?SRH_VDPWR%U;J?V5K.T[?.62/ M,L.E;G.;T!]6)$%VI(4>\< M7O?UH^KU-H[[S^=_*?Y/\9_%?VZI5S)66\7/!?OMJZ^*3KVP$=YLK7I^I?I] M]64G_W?GD4I9R/_C>QCUPJB7NJEAP_L)W?M%;\FINA<+:A.F'O!*/T#1H?CY M42'=C/I@__E>I%'M-7KRU#0RZD-=,U28JV;P4L,K]2I#0Z6]74(D)=ZG/ MR[(\V-_^?;)-N?60SU0NZ]VOI',.L[US1UZ(-3$HCGK)MQS2YX4W33 MXBH-[9L4R=7Q@>F*BX%J^,51B1\JHO*DA)N7R:/,'9HCP\RYL6H,ID.F":PT M_AA?*/DL^8-\$'(.ONI6W:'I>/#'Q[LZM"$O&`:0KBK+!]!#]=!["30T:4R3 M*M.D=;WD&S;5X..6U?B^KD9T=C6RMV9X9,W8D9758%^NR6!?P[,D;89Z:X8Z MZTJ1[@O?[RA-G[ZCX>7IX?GL)='\ZUY#6K(DR_WMGV>Q,NUI+/LLRZ+ MY[_[&^"$]/=JV8A:-ZF6]^1'URPQ.,-:+JZ/3L[/#M=35)Y?FY)R?BN.+ MU95&H=0;]M[0H8.UJ*6_]*7:?O30*'0TL[>Y2-XYW8()[N[\$28H#2^9N+W. M;3$,#O;**F_X]>KXU]P2C]%P:FO5%`UGM)"Y`QYNT8N*:"=]/O3I"9RJK.V7 M`>C>G$IZ@<]S:DKQU>;FG\Q!I2H7F=.D2L>GM6G4'SA>22VK3ME':P\:55VR M*I);?+U0^O?/S6\'3[^6EAP^';S8^:WQC_"GSS^7-RG\><)-^H+';HY]%-M\ M61D_[12\@?1XS8!OJP;_1T]U*S\&=8L>;J*)SVGJ.Y`+Z/@+=0/A>&&S=?R2 MQ2"AJ;?7J\3UFE^?PLSUAX]AK>L/:=;Z9&99KZ"5^OI[8H0ESX"RK6O":H.- M&Y^];F55[^:Z2PZ`:B_+772$GTR-L?3%Q-5GRYYRSDXO_VH^'+\]I/&H=-F. MU);&^I'Z)-3_Y4.E$7EH7T/_*X2C3&^`V6W1=2E=:W7HV5=%J7Q:>Z-YN,;- M4K?)806WR6MS`,U2MPVI5'R#O%P=9REPNRUP,TS2XPNT:"]>;O_N\=,7]E7T MZMP$\QQ8)U-K@2^BD3^H=1/45X-KU;_$_\6:_!+85\?GU#P M2"%T[HPVHCMVJ=JC24GBAV!9K#`V.W]V`$J#_@ MOE+K:SF_[2>UVM>O6[]978+[[HA=);JM'EL^15,6:Y5_N#FRA8W!>WR=G172 M:,SD+DR6^>I,'O-9Y0U#%3QIX+MKYZKW^]R,CQ\:%*ZVS;N%5^<.C M1P19-6I%TUY]5\B5QEX##\@$`5=`UQ%Y-9#&VK&G<_79Q>O#L]< M'4W,#04%+'_ZZI'TS+:?'3Q_^D)QL;SR)5YY_#V34=):5&%[=4W>$?BOP&I49ZC>A_9]?F1>>V&"=7EY:_*HKA;',K+ M>B>$/?A`[QDYN;QX"T<$FS)6XWS0_.;'MU3:XNPHE M\5OJW2FZ^?KR]*X^9&D+T`0]0]Y:Y^$/S!MO#G#PJL)(=A!UW=7\E7G7*DGE M!EY9UYTH!=6M\M%_E,3$@C'B[:.!9`':J[M?V1B-WJ-!_QABZN(ON:I;Q:\+ M97*PE^)!H:P"?@4<0NMBE;Y7F?7R4'.:)@&,0_U$0N3RPV'0\F?;]+#4F8=E M$%:`.B*:'X?!'87B9ZP)^;/\]R\0_.N[MA_O>K!]F/3:?K:[_3MVTW-[D_RH M4\[TY_WMEWZG\,/7W]H?JM33GKYXNK_].SED]67GQ?[WM(>G.[8#^?%@__OG MW^[_:)UZ3W];440 MHF"G"Y8HJ-91C79^_79>!&N8@"A>GUP>Z1>M_#@W8=-<%70FS MB#F`2G<@?_H5!:_)->EAZ<&8=BHXJ,S%`3&BL7VF@[Y M<0'$H#IQVG?R\&X!3UT\= MOZF.WE7[:N9I5KG,(:K2IQRHHBUX,80)X"*:!Z>[D?Z9HR4Q"L;MY$LX]4M9(57[JU\ZLON_W*1> M'5V6IF?UZ57QR/?GH+3USV8Z?R$>GIGP7^SCMW41TI/]W3^7]^Z)OYA:3OEM MJ;:-_X4]LK*/K%XY\W'_B[O!?\5S4ZUL5B7\_2Z-_2;D4N3Z'KW[J5`ND3G\ M4&FE7Q>?O?U,NA>??68V!+I$LM%/-B5=%+`(GWWV\%81S6VK:@?73'[[[&$1 M;]FPEDVF926;IDLA:)_)EJH4@HRSR8R3 MM5QF6JJ2"$K/*MTG:[G,M-2E$;3/]-Q9RV6FI2J0H.-LDD]7=1*NI?S&6OX" M['RX)NRL&H,=0C:62I*S\2RLA2B\6@@EKTJE_+G\RSUYOZIA,**K+U;D(FU< MQQJ+1.,FUKA--%[$&G=>XUM&EH4H]7_/I$37)7S61CV@UF>'1N*],A5>!%)$ MBT#^?>EC:2+IHV>8H<\KGSZ_I#7V'D&>TPK;=_VF*O!PD-IODRK\OM'A]V'( M1(O7MA@BK\1"IY11]1M/?\M9DA*[_?X1<:;V?4?RW.%_^$@F\2>.:9/+"O]:#=5<\L)!VN`R?:<)[KYU:#]S/ M`UVY=K_@_(X>P1T/BZ,OX>.=%VH#L08.$2*208\V:8_TI@%]P4211\5=7#O\ M`33#OHS&7NP,&-V185(0TOCF2ST:UJM1Z[4TZ\48[O0O]^S0_O#BZ1\/]`E\ M$?^)6%#/5YIT?SO^_H\]=&5[LX_^HVCI@RO"XS=Z\'*3!W^D&5]]_"FKH_!' M3/G3/_FC,TCS"1A$CQEO3$;#G_:Q'YU0TC$;$.*FZ3^-+&WVZ(\TZP&>WFS: MH^3I'_/LC\\HS2<<-=Z:Q%DV>+28]NB/0;"/'GY'HN28:^![S9Z%IQYR:@Z) M+MHI72#U=;%YM2!$'$/%Q`C0UJ='@+H1G]_KQ]'`..?D'C7GIY&[C0?P\2@PQ/F?G@2? M;`3_&.D#G^'3C=_>G8;R-AM`-74`'XV`#L?1J>SSTQ\-?'2NCVTQ'P_A,ZE8 M'L`YJ#,!&`;U)_;-:]$>F#*6.W?L0P(\U0S]@??=3"5R5=(GN"HUUP/[%#7! M$(JE#/K`OZKN#UNJ)T&?9N`TRA4\WKZ](E$G\ M"Q5&1,HBY-P??MQZAPT+'#I>X-".*7`(B@X^D]/Y+%*G%>*P][%EL"S_#;M^ M9-C58>DVL>`ALK?A]B\EOZE],2:.^C5349("/G#[WVKV7T+-VHW>>2VKJCAO MI&1IY=J_OJZ-:MOZ^X^A;#>H*-/ZT(Z'#DC5;II9W#LYA`/X\%'F,**R_O[@ MF\=[^W&]/5R85OYSM>R_K=X,TE5VA3C]B;E?)_5M3&L*2R/ M_E;%?TMJ:*+(:V167?L>UH1'!M9\QI>LCCS=_B@2/YKGWX$!1$O`$@3_[$B7 MQT`>?%B'[J[(]@-U@#!J@7EQ?:4V5JGM<5(<]2G&X>M\B5KE#V*Z-:X?\\YA M4D4X`=1:X?-'Q7]QM7`+[V5:)*U&R&Z:5Z/J<:?(6-R*!W4<1JQ,D$F.2?RX M5MST?O++[](\[NT9)/S$O+#1'6!L%P?:5XXG7@T1V5^M3%+:JJ1DTFTA_9XT,ZC3ZW_*@/1/+I_NR^:;TG MW.RK^A4_WQ-NGQ?N&$_#HHH=S78L<]^HP9$'Q9\#FX5B#]N*'F*%_HC\7Y%P MA]<7YF64Y@CE>_@>;M5^Y]R*![K)^H6/ MKMID=%YG?'05CBXC64G^)0:]T*M_2[VIW+'ZNMJ(XBG9M`@FE[CV8 M[M,[CYHM7U`0:Y/^/!7MDQ"$(DT_Q*NGD4]2S2=?^HB#V)XV[SB0P:/!C05, MG2GA-GL?L0WY5#\HV M@7IE.IQ^\N[R]$*]KK"X.GJS>KOR]!JEG];75YPF[VSN_UBGW18\CZJQ5VIC.T; M+CR.W$W?J%[#K%^Q?#A]JP_)WF(=[W]+.Z[* M`9:R)]&P=[4C4UV_4V\2`JZ-<)5VXLXNCGZ8PVB=TL.0.]1]WW__O0_[R5B< MHGZE=7NA"Q;_'/Q!B;)Q@>%)VCO^E?/KC5?OW0_AD+S]P/G0?*@8$AFC:\PT MQ#./'M&H0\.EW@_2^=\:>/)3F@`C%LZUAW7C'<0KO9C:/3\A/0 MZ=540J'-];J)57H;X=*O6K^^O%R=6Z^'O5K+'?%Q1)="045@,69W*-\J@DK& M-4>S,;G"WNW;:ZOS([UC?>?%]LLG!R]V_S?XM>Z($M>_.J5D]WNEN7[6G_?) M9\,[Q/W>?BG=(*)6U=MW('J\)Q]<>6WK3-O::RLR;877=I%IN_#:=IFV'6V[ MM_T[-CEL)VT6GYAJ6"<:UGY#D6@H_(9-HF'#&^X^B[:[//.:_2[>[`UM]NS% M]_N19F?G'Q#*926'Y@4J#S9A)/\8G`0?O9G`1V\F\-&;&!_M?O/87V_=[O+D MD`]`-:P3#6N_H4@T#![=)!JR]=[^=F\WTN[HW=5E8G>C5C1*%=U5+\Q])[U> MI0$1[*2J[R4;`I(**-409TJV;-,M6^?07!G7WZHY[2\83_'*H0\6XK+6"4R' M55_'[Z0;ZJZMU;6SL[?NS!+3\6T'UFO2&!A,G=5I_)3/C:.R1>`OT__1F3IL M2K=R4*E-'WC-MI_]_F#G>X/!@I_VR!UQ"NNI3G6*4TCU1&BY^S53[FZ$C(+T MW4A3B/@K2K'5AW7U`6AFD35]44W>;TB)Y*YB^B!-]/4(HJ\C1(\^RXXDLB3K M:4NRGUZ2-5^2_=22;.Q+TP`P'J!]%._$'M9$O1`,]?3)84<(4+&CRMP0GCW] MHWEOU,7Y6AUWY#)69D\S'1A3'NI&/C3PRG2-P9?%HO@9QRN_U>ZI1XC?S(O= M_3V3B-W_?EOV>E]>+-[)09#'/-_[H[0I^WM^_$1_EK?QD2BY>/0(I>+715D\ M*&1+:8^V7_YAGQ/`JJK'A7DQ?/'NS4]7IT=QM_MKO+4WRPTO5R5=?58LM'*R]^5GN9GMO8I!?CQGDU^,&^2HZR*]'#?)5 M9)!498TCYOXX8JZCQ-P?1I$X`Q1>?$6UECF4^E9[!^?V+DY.(!CM0HV#J"TI# M2!6>2^$8DZ*_>].X.)QYW*@ZG?Y#$17(5"L4,X5?J`5OS80\C]L M!\%PV'`0#8X,7R#S`EQ)[.0WD+ M0=&,M:[:@.1(<^]>IRU@5:LZ2?7R<)4=N;PX5R\Y5%-0=T@ATB?:GE\08<,L M&7U3GHJ=J@>%_K=^4)@/IO@:J(*\1G/@_(U[%"W[)TB(/YT>IJ,.[S`?JDWF MLXS-YU5D0HX-DH(3;3TN>_)GK49<&:>Y^!")O^UL@Y7EU'GEN?PY6<9N8R!BNOO MW?F5Z5:JCIPVVUR=8")&']RHB&?;JC-MM3J1U("5B&13D\KB^.+\/]=&,Q!Z M'OYX>'JF$B0N]S&DD?S74-Y(C[#.J#(Q*Z3*+\_?FQ,LCQCP*LGQU5?FU9$? M3PM$1K,<-1I\:T8P)/:JP_^";F0KJA'P1919&9!<-2X%LW$(,1+#B"`^5`"`MR^_SVW?7:X3$$*PM> M@VW@*UU(]N9O^,+=0WP1Z=D/\.GX%`\(9Z]DU[>O#U_!.]F7\T*H][?7\D.K MWN1>E\W2O:'=%!&H7O6+B/%>=>$OJIQ`?0`I-:](5Z69A\47?E-DI#=_4^?^ M'GU1MPL,-]1`5<%CK?S0OQ5WBB/UCE_]57ZZ"XKH[6 MI/2UP+<37%V\715O5X?GI^>O3Z[/D)Y&8+\P$)QV3F`(==MZRZ+=H6<[3Q+^ MD#I9/+91P3I#J!5>T0)3<^:5U9,1UY'6PCJC;77BVR9F'Y<(/UL>3`UW_84QL?GC]^-K]EWMAS M^59J`%4D`34\Z].WJH9:M3;,CG)OGL3*2_%!^83$WV^9]W5=7#80/G7FX=\\ M_>:EU#R7*RF#9\?JM9;Z;7>O5FN7-"WGYO\%^T_>;$R0>2.5U![K"RF=TB56 MVL3<69F'A"V>V*[#3OW&RL'04 M*`3?/GOFD4$_#4$[\V(5K8_"0:[I(,G-Z^LHT^/;Q[G,IXO*?.;R2R__Y8.>/.R_TCRMU MD#K]V>/R>GA-#Z_7%V^U(;6L)4D>-#?E8Z2UX^M1G>^2YJ"XI-"]O9#.@5WZ M(0E=O7ZV.CY7O_O;XRJ,J-/G^Y8O[W[_\YIO$KX]?_"E*+@'M]_9??OOU M0:5)7$F/Z^*=JN6-\AIT>?5N=71Z>&9?\;O2;SZ".[YY]O*[[>V#;Q_O[>DN MWQU>78&F69M;;.W>FXNKM:>9U%N;4`_@XZ+34A)RKNBB!G./#B4ZV04RU,[N MKBZ^TV-[O3I?*7=#]G:TTJRNM`ZPF"[#0Y)_O?O[H=NT75;J]/B4D(-)@!;3 M,W7GBV>*"-N[ZL;3<^DVYIMOZ\R8O"G77)+F2)G0H%>/%MWX9TFS/S@V.A6O M?7#7N\N+HQ7E!TEDX(GH*C][H5Y,;;10;!17Z\O3=\52,VQDSNK5/OX?E_C3 MM31WFWFA*E;T_]](3_S\PYJ[$W:GR9IO.O$UIOIA2&'6H:#7ID#U[LFEJF15 M[]2\\G7'7]RWF@A84.DC\(".]8TQ;916EY$AE[)3`ZX<'NG:9/U61=/\Z9-G M.P??/'O\6SV$T^,S59"LEYD3%4R.'#/JT>V];P]>OM@Q8U?7WT&"_4)71E^< MKV28JR:]A8I<;?MZ_-@2Y?'C-]*,ZVP!;&(:HKDWC:@@W7("I(N3[H*;_.W+ M9W\Z^&,##H%ZOEX01>!W%V<_G5^\528#)$N&!B?%W>OB[JOB[F5Q]]OBZO+H M[L7EZ>O[5S]=W3\5R\5].:3[1_K]TO>/KM3&\Y/W]]ZH=@--9NH0MY'=W=I_ M_^8T*1_^'CD>?O"PD5Q8[3Y[N%\\?O_C#XV?/_O0K M\Y.N7=>OVGHO%P[-S''QZJ?B[0\G[XOK]>F9-$VFL7V#X,FI7+K_:T9U[_AP M_9_Z]_OR_R:XGN2)OE-[\;-M^N;V]I2D&[Q(O=LY?2[=Z M=:FBNF?KXWN?\8'2C7:N[_6/JR.#A?P/);/%HBT7BWFQ6-3=\I>Y5-.+A:BD MHE]T;;TP%[IV(97Q8MEUC;FP7*K]3%U9UK6\8/J1W]JEO%C57:E;=94H9<== MW5:F8_FIE1UWHEN8CCNQ+&7'75M6C>NG+5O5^:)>U*;5HNY5QUU;0<==VZB. MEUT+'2^[7G:\E*19V'[DMT9VOJSJUHQ:?NIEQ\NZ+4W'\I.0'2^%?*2Y(+JE M[%@R8;]T_;2E4)TOZL:,6GY:JHZ[IH>.NU:HCN45Z%A22G7<]WUI^^DEM63G MO60H,VKYJ9,=]W6S-!WW=5O+CGO1"=.Q_-3)CONF7SHZ]Y):LO-^40LS:OE) M+6#?-;"`O:24ZGC9P0+*3VH!Y7`Z2^=*$DLN8E56M5[$OZM/<@&KLF[,`LI/ MDC7D!=&9!52?Y`)69=,O%JZ?5DY,7ES4>A'_KCZUJN.N64#'DE*JXV570<>2 M4JKCOF^7KA\Y/-EY5=5Z$?^N/LD%5/\W"Z@^R06L*M&9!52?Y`)65=.WEL[J MFUS$JEI4O1EU)2FE.NZ:!CKNFJ7J>+GHH>-E)U3'<@"UZT=22W9>RP]FU+6D ME.RXKANS@.J37$"YG@NS@/)3)Q=0#5,X.LMOE$MS:@E7U>JXZX1T+&D MANIXN>B@8TDIU7'?UX[.\IM<1*F0*B.%1C7-S3^FU2],_GDF@^FA0Z<`JK:= M5ZV8]]V\5\M8S_O%7*A/I?XK%"UK]K=9SIM>_;^MU1_52^MNT'\K=5>G;X9+ MIJWYHW^6UU0OO6HD.MV+_,=>DFU5L$GI$"YBJ&03TJ<8OQP#WR.NMZ40.EE.AU@WTB*H% M=&"F:PD&O>E?@4YVSGA)L(GIZ=2,&H;>M9L?H4=("T(A30&AQR0\BI"5[G4C M.8Q63K7#8:EN^@5]AOVC9K"$R25Z$S40O++CB;!:W^&@+;O1>;5FX2I-,-6- M8A3A\5IMIXCDLM2UI//81[%N[1KC>N/<6KI`JF]&<-/`]*,_RJ[T$E9(!60C M(BTPJB5.!D:NY[3$!RZ1$C`AG]GZI,2!C(+L"1&G14O6"!C+\+=8F,4Q8AJ3 M.A#G;C%?V%%2/J;<*I<,QI/JB?-KP%T==`V#B?*7OH"BBQ<8:RW4'^C%L0OG M+J$9P6DDRUQZ3%H'6<9",6>K$E+"-C%,IKY:2@B@C.#,9<0)Q,[)N7M89;FJ MA$F#,(#.JHR04*;SA*W'63!*4)6#O!-.L*UQ"$9(0U&#T2@ID+=WG?E;U7-* M+_9DU4THN&Y6FA@5TC?D,?6H2N!,DT;"*=F$&B."&V4SL^B$U7I0R+8M,*C3 M7U7MF,'(5M^%E*X)RW$=IE>AY@QE>0S8QPQ>=*A.C'9'*\,DRUA&X&=*GY`2 M;9TF!)H@7!7@+Z1/:W4YI45$X.253G)*I9EG&2R8Q[;@J!B%F;(/@J\[U8MM M;2D4LP]D,I3%P%=QMG>T*J-N"-!XC"L"4XWY(3`6[HN@4'(EM'!W,R<$U(59 M1JMLS:6+[SW#$@0LXZA#K=S8Y[(,@S<;]!/4S=A[R1-!.:,L..R*"A M`*5#U$V4T3SEZ'&9I7%,/1IZ^I3QG!`B4(9_/$<$]!B5;(%J,'!"T'>K,IX( M=*BI8F0VXH6`DSS>$VFM8T>]D(ABK]C(#"68.R*Z0.BH%E6CDU9&N2/5`H*: M*.\"Q7S6\3F4Q@%*B*S8RC&UM;6TE,.05U93\1IX@3'1EP1YC?K.-7Q<-H1<8P6L-?29V+/_HI%7H^9 M);"7G$8?[XG4U%2V7/NE/!$:.Z':LORE38EP=JIV;JAA,V"]$1Z)$TSFFWFL M,TZSD^ACT"&1?VH%#I4U6&[B$_B&BG@D3-]Y+@Y%-5QHGX9&`H]$DYW0JR9: M=`@>29MB;CA'>"6:`SJZ;$!+I+5%""A(HAF$R"%,.N*7"-,8.1D,D0^04.\W M[IC`\)ESPN8A..\XE*@+81'K\'-.DX->$FQD$!?)^CB#QH*X(T#C,2Z)SY=Z MI=!<.-YAO$95"E@(ZI&$J(AGR7V'!!&.I>>0>,Z(M5:>0X*+*I@_(JB&IK-U M5&;N5:C=4W;"*'#T)%/`2,03L::VGW<"G1"@<9O@U3XKM,8$,`J#U742G?!# M+!>)P"6(86Y)3R3.5L0_&>6))+P0"B?ZT$C,%3$3!2^D=FM@0WO-(*TUG)X; M8NR=I[M\MW_0"VEQ41H"/)J[#`6`QE$/I+$.R)#S@=!FEV31J/X+?0^G`T?9 M`_C'!&?4^P!U-@8/\4$\L:"F=@`,H?JT[RCG\Z8#WH?U MVXDL>4HL[WGHU1-^ZH`1V'H>,+N8XX%!!0FPH)FPYG[0Z_!<96/;,(-3@6HW M*M;S.43,Y0A`(=2E29=C$3)88T'MX7R,D4=%F2@4$H'P-H)"`D\%W/K:Z<6\ M?6@=EAQW/?(*S?!T$^4RAX\-9F`PXCA*#B7=?WSMUM:"\XU5`6+5S_07F(%T00K"+T.=W MY,`FD8J0UF;>:0?6!F.HL[#&,/`].EPXABXV4T"/@!3Q\AC":Q`D&IE+,1JI M;JATC=@2!FQU)7TVN*JAZ\'M`T4P$SH1W-S`\TACY*[=L.?AXO-HZ4*3@#S< MLAC%SPIU/.>#T&'(\4`:"RJU&.4;@PY=1_P.K;J^OL]4Q`7,(QYN>5'U4&IBD4[&\3`20+6] M4WR`=F`4PER/`+\QDA7W.UPE@3%X@C2,,5C6]4!9F*C0_4*0N%\KF:*=#JKG>/D'"_X\&B"-!>3#RG(AY`*-) ML#+>7[1LR0<^F@U`#^?_N>#T$X$>SO>(^AVP(@MJ\`8Q#\=*!DGO;3T6ZF*S M;,0I'0"RP>4`0D823I/ACE#[R7'&'8]AI\/O*,:KEOHP><(ND.TX`SX,&V5XE;DZ`_6GHYU;,:7& M@;L=SA%TK@FN[KY0JBJCY[O MG6!.4<466#4W"N+H@SJP(L:=R,$9`,@EY MT86<,\8385Z(5_TQZ(F0;'P$`&E#9-PJ@(PW$GHB-FW@>R,C01"8.,-LG7^3 M4NEM''`DQL&)A,=AUA.A^:B(YP]NSL@T3,('\>P#*KC0/&!U":R3A879O`R$ M[%+YAXMB/3!FTDZ8($*S@-L4)`04H+73&"E, MA4(`>X,:$)A@=%(#X8XMS``2&P6%J&Z6U>@R MU*0'$DF<4OXB8(BA1](%80!3R@U)1?].?P&5@<2VY!S5II^&<6S-"$`J+7(> MR)#W`7+E>R"X;F"M.!;R<7;D9JKYVAI,3"RJI+J\5(DZ-4&.A:3,PQ@LA!ID MA_@3/Z0LK=8(6(U'9Y;1N`W.%]*C@(90",D.MI8Z"4=$>!X9\4%@,,X/0?40 M."+.88HZ(0C[6SBDYSA0P&ZA;G<^?^Y`"Z45M@P`V< M7HK*_SIL4A"SD?9%TGZ(RZXT69#7[;P/`1$AN(U`!JY]IDEMR25^2!",("UB M>9F<&^(\W.E;RE#=VBYP7XJ"F"?6H$2\$>7!J6L;W0EAZV-L*@XK"R\HX;,1" M(=S'8+;!JQM/>2&-BY%\3T34CA@;P2"#^V!2+HB7X8OR5^M2,C0]%?=RY53T MZ6L#*9F8"Y(()`C(Z"M$)X,"M;9S,<:P6M8'L0Q(]HX-EJ-&'!!$01).R"@@ MA*`I22>$UX5420^$Y6DFXB'$;H4`QFA(1*U.#2X(=I/FW3$NB,M$))B->Z1) M%X32..F&#"HT*U6Q?;@P0P\.,44,#EFN,2*)^B#-/_%LL@$79-C]2.,@P&!U M/P(+<:!])GZ@1([['Q;-V\2WM?Z'LWDA6PGFF.9Q$.98$*/=LT-1AER/``/Q MS4-B(XSS/'JK*`:]C_$8"&RDB^GR\2!(.^1^?"P0!!`;RS41UV,4"#(BV*=\#JP&:WHJ. MMP7-^*@#G@=:O1*W)HWTP+C/0>;$V52[HER9YQP.%GLB$-PLIIS]X0=7TXP# M"$OC`O.-<0]F'X9QCV&'@Q2UE(D<3`[W8)I]J!XU<#IBFSW%S7"/=N#L#Y:( MBN,>+?H5ACY"I+'0V$?7`P,-.KN8.2L+] M8!."I?=.0C@@4QOW;8`9'#6.2=#V8=-L<^+-A5W@S[P&DE MC6Z_<&-(^1Z-PP(''9`!Y\,J"]('D%U@(?@_!_F@QYV5J6K4.NIY>,3YB-!' MWC:`T+5\-XQ3.H-&-^]X(`_V7=KY<"8W$HT2K8.B-1WX$+9V?UP%"'H>?/O+ MP+;W(<0C*FJ;U(`T(O0]+/@Q#?%P*CQC)9K>VL#1)Z'Z#N[$^@]VP)UES'2L M#PN8\C_`,*#3`(^"(YR(^"C]\I`?%>_;J8<`)*$ M4021VYS_D?&4Q^(>3!]2S1QW0L8X('X9B"`>T@CL@[FX:0=DL/[#:J`8>CL> M^R"T2$&+H[`/XGH@&VZ$?5@^=:8B@GTPUV-`:A,J;#SZ89@1-'/4`QF#?A`9 M33D@L1H0N^48.-(,W@YF4_B#2?H-X`\BZ6D?!,V>;+$4J@B54BGE+IMGT8H. ML7"#HG^\:KBF)]:85I6*!*?8V($RFG/`6,%N'7E^H,(LZ9/QN?>'%"'Q>B0[ M-;![&1(T]L!V`JC:3G%7GJ^\!JA@"!%2@/EQ'A4:6QD+`L"9*JQ$JC0DMHR/ MB931D6!/D*_V8%>B6T/B=NQOZVJG##BP3,\JY##*T[6U#EZ),[L_X#Y1HTMB M:$I58+R;WA82PC]&M$5$8N/=8&F-#7O-Q,@*13OH'90<-$W0)?;7CT!S;:D. ME$V7>`)(DC:;_?%[(4L$_)7A)X[C,>HQ)V+L7U=!XKQ'0?)M515PB!M.L^3> M"35$`VHOH'ME@=O6(6$.IQO[5W@@TV9_"/.A.J-B3-LMU6[UKKX(P<181W[$YVCH(JX$A1CF2IM:I8UDS,^I(8ENSUL/5'AFP2R,(B+R M,$(DR+-ONEK.4D&DT]KR%6I,PEQ$Z*/TSL2POWBSQY8968UWA+]2JQ:S"?`G M-%9$9S%&'&,/(;I"NUQQTRJZM%E`$E16UBT\.I(@PKJ=3E-9H:B#P0PJ+Z+$ M+)W+P%T8[2K@K!:\EV@F2]TN'9G.M-5:"-*"ZG=[2AZ-%OL0\.\3PH8CNW$9 M"9+T'U!'0A%.1N6R]$(4:VWB61W*@SV)`2N.IK@R$HB+@`@1.$5?[>(JZI-4 MD01@"G"*]B#9RQ"#.,WU,P)X2Y];P%(1'8DHH[&:YL/8+E)"G5P,'X2R5< M6<5H'Z-.S*_I5V\87AE,L0PC:20!?X-75H$V8?`V40@5J?&(L4NS9)P"^B*O M5%(*Q7$*\S"&4-JD3F%KM81%HK4%;%-*6JD`;;PMHDT_CZ.T$5A5ZQ0S''B: MX966*P7&)R!:$;T2HJZ6,!-LC^_%.7`WSBL)Q<+0P.&*@JA.Z:VOPZB6+2CP M3`\9S/0]%*$^(W19C$M0CUD$X]` MU5"$283-P?H4&&F!!_0(:)L4A[3((=H-3OLGS,D960H=M3<,)AU7"ITJE1CE MPO8^R4/_1-"\Z[`;>[.7`Z!IZ:/*A&B<31*#5IDX^\NXPK<.`]J$\3$.0[\C M43NTSDEIZ!$-S.Q@0L7MIDUSS,*?LX=(8!"R( M3Y6Q6=>-<`M)%UI%&C),6Q.]$J`H58WNR1B&B1A@$EM0GQ8&@HA7%2]8<,.I M++\L)K[Q+)E5F5+U"$^*`]*M>Y]@E$00I6>K'H,"TT'[@S4)PK+!*!=E5,UC M2[P9YSM4EJ-"Q6(5UY!RH;,+)0:E/!,HIVR0_-H)PR+@\FLV`54=W38Q0I^` M9A?,QGLWC=`F#J^/1,H"@DF+;( MM;$,@`>,-#ZL2F<`2.GC+V-HZ4IEF$0C*89+^K@B2>3_)WLJ5.7$E3QBP\5\U$/YUU9!$!ZBICP)RK9$I<55"60W+FQ@=/8')(!,.VCEIH<`34(4;A$Y2".DZ'(?2$].^K$W!-!@$4 MU0WPB=&2R;>B1=1)))RYB6_2CBR[Q:ON'U^A^&E83:AZG@-HHSJ%H#""U[W5 M-_)0&O?^7N[*9A4*2'FVSBQC>/PDQC3G1.A=H"TJ!I2'I36JU#\A#O^PX4'5 M+B*,XE"G4?X)Y]@PXLE:'=&1%X9FU(KS4#,ZA<5$IJY_G(_"0&&[2\2X;(Q- MNAB;F.CS1OX):`[?[A`P.\LG+?*)-3MQXMS4._&#(J)._OL%B\#.-EL952?" M=T^8S#@NB>&V0%[0W-BZ6E1>"+8Y M'X5N"!_4)EY=M818I+L!Z/2XHE MTS""0C#I`3T21U"6]O7QXQ3):.]D0)%86YYEE"9^E(8C'6VK21?1AP&I;#HGVWI.^(M1'""A319EVH1T;I$!<`3W-AZ01`G(P2 M$99!VGIN8;:4H8'0S7-&'7M0MIUB9KP2@E3^+_!&1E%G>LDC,G%,D=@M.R.T MR-CJDZ:W@F7Y`^')\&6N*$X9.^-#T4*42`2NV"`B1GD8 MX[FFO5;A+]54X,2^>LJYDH%/0K9(!>D=GC-WF.U8?$VGAW!+2#R]$V$6X;L$ M2)K*(\1H],2A2)M[)BTRC)FD<4U06WIA=)QC*!;/@'OD!>?V>V'Q1AA*X+F5 M(1X['.7<*+_C6`48N;<>QQC_)&)Y"$#0;/Z^1HO1UP-$F.Z<:'=3VYZ/[YPL M7""9<4[L$:EQV"1S2"CP$(,3?4E"W[W>_*5:2?#$3YLS%\7G$:,I(GQ2 M!WQBX7NF3T#`8M4G&_@HI/BDNHF38JT,O@G'O'0-*!7;EL$9!"86>"BC(N$1 ME;&#)4H->7&U3YHI#DJPC=@FR3>M.B&;@$RML+%J%4E298.:K=\1+VYRDEX*]($R90$Y"9K$> M1EMSO&R"-QO)FKODSB0/Q=4>"GI&Z31N^33(24,J0`?+3WI;?A*^PS$&G`1L M0F5Q=.F)4];<@<]IDY`VBWG*Y$34"0B2P[('2G-"^_N1G1-4%6,8I25TCM05 MN+`>IA;!!FCD$[^Y=4/)8N81P MHHYP"SHHGFA,R`;BRL<=%/"NW.[B9&K'Z)W!`-E&T4$IQ30?A3GJHYS99AD3 M&@9`6YUB:&[Q6%=LF-0IR'9Z)C5A8[1JTD@^-AXA"UDE,I@1^942N; M)7>F>BJ6SM9\Q?4*-3W4X0(P!80BJ5::/JE>A9C;`A0S+0B.0_J,]5)H<@<5 M5V8K#U9;!9$QHW(]=\%B/+U#'17*K"ZRVLA+:7H?AYGNI#`>`?+D^&2$-O&- M\+"/XF^F-33`8*89$?BTP"L1XS,,H(PS/M;SG^C,(1H'PP9IQ ML$Z3$13`W9PERG"*?H9-`S;^OJ^1[FR;D19;!I/@E.8CO>;1EJ!D%0KK960) M"M]81UV4"=PBPJ)[)E(#.6/PZ:->RG!"$*>8\U*H)&28!:\GPV24A0G!3P)T M2Z*SB$QQS3+%L=6,@3Q3NK>F1%U;!DYM[-I2GFEZ3L/Q[HKC&<0E=RA*GDUB M+,(6W2LR\,[,RE@@T,111FERV]*'W-I6<+7@NRH1"^33=QRC-'#N9-RE;>QN MP$&?EJE1:[\W32$#C5LO?3L-GE6/!QY!"S[N/9"C'-HAC!:OQ70)<4LFA#]6 M35ABH$.1TB<#Q4H`B;)8<9)+Z_*_C:MM''!I/_X9!E%EDG!GW6K3(30],HIV M]*DV\7*W$UU:L3#5"R1FR"J4E#)Q@]_`H_63',2E'1/[C/=H\[%/WSF=,L*C M=5ILM-49\FB%W5V04R?,-_ *M1%,W_.8'=6Q^GT(942 M@`HQ=0)*W;,\@489U":HM@]\[GI,H(V*U0>[XQG`;($%L7UXWQ3WA)7*;NR?IF#B%MP4Z\(;N M28OEJP.Z)`N>(*LLAM_]]FG2@AM;'2NF-SDRQXK%S;"3AIRN%909I`_UBZF3 M(->T`7:2TZD^FS!H(.01F%;=SJ$<9?HK`MFBLVA'6(L\TN9@+OB&-H=A'U@% MXJF4,>H$O2;]G1`NPREXK+!7OP+U-$"X,9;'TR967^1(D<5/X'P,>_;3`"2; MAE`,JT!N9S-V8:Q"`>TQ+DI*HY!"@JD>"I4D0+2G>RB<"/^XI"#?>PN+RE7* M]*1@7*6X#,:`6FEZY),V5"DWR`D*X(HI7@IJD:A2H6.9S"I",!:>D#XVFM'S M9%$08HS2"G\"8D'89)2#XK-)WO18<T<B,H.#G,V>/,'#:8KJ38GW)!43C1&06UI[\$_$3_7B_QF#( M['@(2H552R+)*!MA*".1>Y(P_00@BJMW&>6E+*B4]^"?M&*DEY+`4*:A;1ZG MC$YB#%@>/XDQ&4,!-D$(Y(8."LGQP))G'10](92RP+G_,Z&42(`\!4=Q"<&0 M2\8"*5DWA22I)Q8Q'8*8MQKW=DOMGQ%,1R3&XYAXE;06YA<[2'3B"\$]D@@1B M&J`(L($5O0[2`7UGB\_%6((`3>@$O0Q^FAY8`F?IPFKJ,:N*$9+``U)J6A?I MRWAG$2;RTBI!ME1.?0F5:RC<[<\K:BKCHZ'9/Y2NU`E; MX1`^UF()[_QZ>YZ>Q6.Y,2+W]36>Q1)A*A8:Q>Q1WP4_Q'@@5@02O4>/WEPS MGM$@^X5N!OKIWO$4@_0EX[&VW[?$K?!S!Y&E@(9XKUAD*)7U4!9.0"KG#"&^ M3GI**D!0O+1M0M]X.:^H.?=?VQ;N?Y$3>K(O;VUMR?'US5ST([BEVSE_+;E:7I^>OBV?K8WU?\?AZ M_>;B\D&QM[I\O2K^>/C#]=GJ_(>+>?'ECX<__,;,Y-[E]5?V(?MO3J^*JXN3 M]?O#RU4A/Q^?7JTO3U]=KU?'Q?O3]9OBQ[NX]?[#_=V9L7YQ?K0D[E MO%B_D>W?OCL[71WKGF0'EX?GZU.8V?.=W>W?R9L>?_WTV=/]/Q7RTC=/]U_L M[.T5W[S<+1X7WS[>W7^Z_8=GCW>+;_^P^^W+O1TW=3.-J^*UZK$X//^IN)"/ MNRS>K2ZO+LZO5&<7EZ\/S^7RK$_5!?G#V].K*_FY6%\4UU:']XQU]T=GIT5QY+@/\J' M_K@JWE]<_G!EGR')4/PHAZ>&HR=R?W;G/TY/CEKU==[3PX.Y+6B M*$[/C\ZNCU?%ESZ/O3T\>G.\>G?OS5<##8_6Q\<_Y)I)9KU!EHX?_@YN__@G/VK^,\_>LXM^#1=B[JE]6YY)/9'?E)+)\\<' MSQ_O_?Y6^>&XN77_"W6A>'MX]4,AQROE4'*\9B.O^<'VLYW'N_*FTMYT=+8Z MO#2W!G>\?+*C'K"P#[B00TL_0#973]G?V2W*#TWK\ZO3U^=2"H[>'%Y^L?6Y:G*UEJ)R5+"?BM/+O^J!_ODOQ:/B[])X?+V] M6QX\W?U?!T^>[LW'?1/S]'UM\JXNMO.^7ATE"'+\] MC!!"+8+K9\RW])TM^;P@GSM_8%=2W:Z+=_)_Z\-7,*!;A?E/,H!L=7Y\>'E< MO#J\6NEFQ=5JK?E`LI:T2G/)*W5M_FG,/POSS]+\PD*M6R`4IRD+= MR^Z4ZT#NE&T6^D[3TK8]E9;HQ\.ST^/BMKE-?KE>S:&/+\ZD.&W-[JAE?/_F M]&Q5W,9+MVZ=GA2W=>OBT2/3\LX=_<.MR]7Z^O*\J.2#\',I/_^BGJM-U-'Z MX-7A];$<6=TNI/5_*&^2"R)%[_#Z;%WHWRX/UT8F.7O)6^6_YP=:9!\5SP]^ M]^39]D-Z-Q%FF.2/%W)^\L;3\U-S=W%;C>!"KOV!G.2KN2;#^?7;+4T:]47^ M?GSQ_OSLXE!21K'&@6&D>7$D3>':X_DO3DXOWX))O:5G^.IT?85MCRX/C@]E M!U>JDR_6EJ+>Q"[E>EY=U@^QBU/IELREAOIP+N=Y6W58W"FZK>*KKPJA&NFE MFQ>O])CEMU?%[:_W=H4>[9::R2WEL=P^?73^J'Q8G'^I>GI8W+ESOJ7%\M:/ MJMO;./(_G_^E^#_%?Q;_N55\^651;14_>S_*Q\J'?RY_4EV;OE^IGE]]VKPQ_T[;?D=.7SRX>V[8_J":_T`TQC MU>+G1X44[^I@__E>I&4=:_GDJ6DI'5)%$7G-4&2N*&S&?DN263X<2583DI'[ M2KQ/*YC][=\G&Y1;#_F4Y1K?_4H:1AC?G3OR0JR)Y$\I99]_+H5/CNCS0@WF MX-G.[NX6W`G2("5(_\7+>CY:K,`GWWZS.OJAD`]1?I[ROS63*Q?PW>7J M:J7 M7^,KOSD]>J,TQ_69?.2Y]!NU4WWY4W&^^K"6?1V"/[\O!_#9WU:7%Y^IF_&. MR]7;P]-S]>179RMT-D$6WUU>O%H9B?7$43602M)\D#HO*EM7EU)S7LC_H]R< M@M#(U?@5ZC_3'U@+LP!$>4'KV_)9Q5=RQ?6J_0IN-0/0JGHK>:<<7'BGO#@' M51V]4PV:L"J5;MVI_OUS\]O!TZ^EU,*G@Q<[O]W:*G[U""_(Q\J;E.F;<).^ M0$8%C`B*10K_Z9,^#;JL'_T8NQE1P#?OO?.[LO]7C4[7KH MB2%3LX/"`J2#55=B#4F/R47`\(V_H-B)3B#"EH M)]?G1THN#L\,L\O+7Y5%<;\J"5]M@=SK&?+6 MVHD[>+62:[TZP,&KL%QV$)5.-?^8797702C5-]4ML+:FMW*TE`]4'FIBZZ<" M_ZB?]$5L>1BT_-DV/2RUX5HZ@;.2JOF2K.ZKNU]1S?Z[)[M_>"$9"CSX/\M_ M_P(Y!N>N4OFSSWF^S_?(%-*HRC5[L^QT%#]O>@W[T MIYT7C[]^MB-'JK\]?;&_2^]\NB,-F9N:^GJP^[VTG#L'Y@F_%"KL+)`T7WJD M\>X?,ZK2R?5=0^T.K3]?LD6IW0G52`E]QVTMLL"B!BM7F/@X;*"[T;V0&257 MEXDO\)V67^8/@E&).X3&'B2-S1R8>OW3.^DS:Z_MXNJ(<#O8&:EXGLIGG4J= M_[>5M;"7UT=R:"M0/W+Z:?#%3DH>4'^'[XKNC]2@X+O MRLH\4F.#[W(\\KO\OQW);T$!FF&HA\$(U#K:44@3<+#_^`];4N_*D1Z]^TG_ M=G[X5D[T,^E9?*:):SG*O^]@I]I*W'E_IQJ^>3MS]]'P[4\RMQ\/W?[;KI2V M*7'_;^_)7\?TL+V5ZX',0?EYB::__O6O/]NR"[@2DATS20ER]75!1?^8:6/-/J2(7LNMW?_RYC_$8:D6Y9_#*7 M0;R\<:[^5_SR2ZZ#VO2@.VBEXASJ@,]U+:,&.X*B:MMYU=JMWXMF7HN%(M.M M3-5&/(>S%//T4U<5/'3@J;JJ#`\DP90@2;NE?JM%F7WZ@2/:AD_OR5N&&OJ^ MLL%'BS&/3G:_^7.;&SUW>SF(VSO5WJXCM/IVL+OSQ]@3 MI;?D[H_^ONW`)Q=#1,BXJBC5ZZWBYY\!\N9ZZ-S'FQ45Z M49(SX:%&MTR]8?(3!B>F>`@\*^97S9T+-#=^CX:?3/2B`I>\WQ7X?.AY38+9 M3\$_0B!?_J+4@_0W]2UW=,QTB[AIYD<(@=2-&`3IAO*;F=XCC83?NGI_NCYZ M8WUR(_E'"N?4M'D@*7MD(ZW]@[V=W:>/GSTL+#+MFDK^>.!?V`ZN/'E0\!XE M5VD_)M:C6I@'X:7M!ZP'O7RTAU]0T^F9&U\:VO],)D'3EY>KU[>_G[_8*F3` M_A__\?U__(?\_POW\]5J;7Z6_7PO'VI4Q1SOVB(M+S_8EKO?WPL;_\=_[++V M:]=^/]Y^7[.L0<)ER(0PA!K3\R>ECML+\Z4R7^!;[7[:WG]FX0?U???[/??C M/GXQWYYOD_N>/V'W[>V3Y^WMT^?M[=?T)\'N^V9OW_WX=*A/]<>Y M[^D.&M_>8WK?$TZ7_=VOW8^[N]N4+KO;Y=R2;'>[FI/[MF&<^KOD@">/ M=Z$?\^7KN>E'?MNC/^W!3WC?]I/'[L<=_**_??W-,_>3#%WY\_;H\Y[ODON^ MV=XG/SWU[O/Z42C;'!MK7(Y\VR-?=K[=M>->T_FNV7S7=+YK;[YK.M\UF^_: MF^*:3G'-IKBF4UQ[4UQ[4US3*:[9%-=TBFLV1;#B7.HJ*G45DSK\24M=Y4D= M_KB/7YS4V?N4U%6>U.&/6NKL?5KJW$^"W:>E!W_4TF/OT]+C?JH_SGU*ZNQ@ M'M/[M-39^YYPNFBIPQ^UU#FZ**FS)%-25WE25WE25U&IJYC4X4][\!.3.OQQ M![\XJ<.?-$M6GM39YSW?)?=IEK0_/?7N\_K1+(F-#4NZ;WODBV+)RI.ZBDI= MQ:0.?V+S7=/YKME\U]X4UW2*:S;%-9WBVIOBVIOBFDYQS::XIE-J=$ZNM?M\^<%]7KO/TEIR9VQ78V2A.R;#E>LKE9>F2` MKUF?S#I>SA=S;IJTV.A4V1#NZN$L2)S*1F_D\^ZM/UPI,[[][/<'SYZ^V`%K M+J.VG0_KU>7YX5EQ='9Q](.IRU"UK#*84\E?5^8!P1SVJAO^2M5V/-[[TXMM M$[.H(9F2D=)+9MA?G"LA'_Z"]"_]3I/8B@\&"T=T,/`G=5>9+@V3W`\2@\7U+\Z.2UIO@WOSWXVO3N"BOD MU+]1)9WK-Y<7UZ_?W+L'\[%]/@#WT1;0F##H%EM.NYIFN35,?/'VW35D'_5, M-+D\:BGW%*+C*^.WJRZO*A<&AU,``LD;/G_T7_:6TD\%T?Y*G.K>#Z?OBO7I MV]75V<6ZJ!9JI;[_]L46FA,_NF+/\IU MP'DE(/X/V@SQB M?E:_O#D^.V(_OV8_:_"$_@QL1TL*?0XSA8JH'7Q+NA4AO6*[ZW=:3>Y4I,JD MN+!56??E#YHNID+DF\O#MS)P_NG\J%"`XN'9U0/8*G%^;\^?%+=_]W3^^_F3+>D` MZ%_-/S=ZZ-=/;[DGRO[D'VF,U2X,M?EB]78EK;79@'%Q=NP/PXT![I-MXDB4 MM.[7[PZ.UF>7D]T>!*#,92...]7V7E78"@,ID>I*Z:ZH&SDJ?*G+.N7_%2RH M/Z_UYR/]^>STZ)+=HYVM#T>O+F6[TTO/Z5*]*#A%:8'=/:D$GJL&:Y.EW=?% MCWM/]W1]B/[\$GZNT9P=D:)+]6B7W/54^J^,2G]"?+ES594G[:KD_@N].PJ[Z$ M!'R\\W5B6F].7Q^>GNL1Z467=SQ[NKU[\+NGOWW\],5#:*T3%RI-X+A9U^<1 MYM_;/=C_MM)I`BG!Q^]V\>+*GIF4$ M109+FN,N5TGJX''K>O M'[=VCPONBS]O6S_OR#WOZ.*ME*6!IVWKIZG_'\AP<_N/A@7D6O]A_^7N8_SV M[.4WCW6WD7Z3HQ&Z7R&UA-(C6P\C]XKHO6H9C>*"F>BJ0AU=G1P>.;K'[GWZ M?-=@E?I&K]0P3@)YBR2!*HO>V]F.WYA887A4899I=;5.+>EN[3=,]/CX&U6$ MUK_REUYZ6:_/BQ-MQ:,WOC!W'I_X=YY?G-\=O/OI$P7X?3@)[CX]EAI9P^ZG MNA#;['D([M_319/!J(VKH31YQ2IW*EW4NW"Q3ORF^MX]&6Y!9$*>R'=,;16W M]1!D5S@'R.G*_REGJ53J7>T=T>X1!')FKR6FFTIH6@TWK:!IG6XJ7:^KZU=X MP^UWAU=7&*%LZ;M-%SN',BK'5M=7JRNSW MO][5:8Y]]>&>_H44VT6#*!LVH[&FE6;1Z-G=$<30OH6S)GU,[&Q["L-E_Z'\ MQU]L&'#OJ@X'%?^IXLS!_-_B\0-]]=8'3=`'CXJ]4W-A_ZG\KB[\%UR)W?WU MX-UE\M[M![=NW=Y3*7C#6.66ZZO4?97N0N7Z4GV7,#)U]W_MU?9Z!=?KY%.? MZ*>>JJ?^?^.>NE'YX^8/1FQ@0WTLHW=V(*E/= M?J[4V&H+*A?]F^Y4B=N^^JI8)F^JTS=)<4K=)=)WUGEA_OK#TYY MQ>>MM-5<[;/P.]8,DIF[NC$Z>7UCG*KDP M#/>D4(JKHR.VM!9"GQIJ@RWGQHW1?_01NQBR[_M[U)MWYR^?L,;?TW' M>WQZI:$DEYU[O3I?R0^PL)&EQ:!Y94`HN<+155WR9NL/?G][EM3(BZ`Z'+TY M$65K)0![^P<[W^\_?;%O,08E.BM,;T(GTVZ]#W>MWY\>F;6#Q*_L(:EE8LJ$ M:Y%5%0?IB4^M^F6=1NE>K2KEU7W^2`&A MTJ][MJ-+24D-'CA^6S:MJ6,6[52:>W_&>W__T*^9TP%1K.GOGOH%>]JIC#5] M0GN%1.\#79X7-'U*>_TE@$7/?M"QZF]5+FIW^X];T3Y49D;]ZKO*_.9GOW^Y ME;[YV>]M7>JM6[AK)-%:,E;XJ&K4.*OX.*M1XZSTK^7(<58PSAENY=2_.*!Q M;F_SX0'#^H%Q=6$T-Y\$AP][8=F8JT@7)D_@"E%!)UL<8J!YQ9M7J'V4"Z[W M^;L*]MN_W?W#BZU[GAA9DJE?'XXC5D)1Z#UF"6_$_#;LD)Q]6">R)J^5#?L@ M?YP7S[X_`,>M<.K-5*>)8#=67&A#BNCC_&P>]*=!NN) M8=%(OL[J*B`,F(+01-^+CH`BI2:(RKA:.YW1[Y'EX>NBM\]$E;QDC-=OC]4V MA-\^?W)0E\V2R+45&7D5& M3DP>(Z5R<$A1CUJ3!S[1]$)Y!JTJZR9HJ"[Z#=NJ?A`L@[SX\!9O5[>+L)V\ MZ+>KZF783E[TVRV:!T70;M$\9"4)`5FJ8;)48\E2C25+-9(L590L,<)4(PE3 MI0ACE;O\L>2J7=&3G'H@&U1!`X5\J1\.7JCTL_M<;5$YTM4DOU5E)^"7I3!G M.]X:QEN[+05N&'4PC#H`F7R[C+;,V2)H?G! MV86,.VEKK-2D>>%I7?\2CKF:..:H.Y`<`;\^>Q+[-6&JF(&"B-UF!_X$_K80$,7-G4\97"N MZ:@.2?B\$.J0*W[\8`S6RAT4\XH?-F%N?:8V;*D[<7I$"/"2/@0(SPWX%=EJ MIWZ(7'_BCN\)?H73!FP#;XLCC#&SRY$=G&/F`/4>X7$#`^>H$'[RVL`Y!3YX MYY\[0([M\N^MN+IYI:+GT[?2!V-'%M2N3E1]8^.I@SYK+U;PM[Q%0@[Y^/^M MRI??'ZJ$J#I%AZ;,S+.^V]Y]%IQ$8G]ZGO[I=W&6,K0BB6]W.*M&Q#"<9X-X M^OR/NXDG/=W?IC^IKP?;?Y(B<+#W],5O]2$S^MH?=[;WU>&96X&@*1_:CH>K MF:<[D6-8[$]5^J?@_)D9._?BW:%*DBN$=XZN..!E>``H&\:W;(KZ/$_@BW>J M>(&HAAW:4'Z%DW8"ZT:4BSJ0EQP>&NJ:ET]VXKK&G40:E;:\\B+]!2ORZJ?U MZJZ.HW28H9+3-I[(G/!BCCM1:B!JZ'>-A7<@S>ET2 M6S2N=?/T%@V]N_Z#*@R\U/]?OSW22*Y<-#4,K^KP@U+OZG_';VV.578J7`6;?6WA5U38WV'I:)/RF-&#V&^`M^5OF'5_#[WO[+;[\^J-R/1^NK M@TOY]_CHV)4]JI\J%=[INRJ%51U4BX?V%X64K]3QF_K;)7XS37=>'"Q=4ZF< M[/"J@V\?[QZ\>`D/,7(E":;WV6E%=(A./OVQ_W<[\$#S:9;D_R1LJ#H;'(_9:7_PW"%NO:Q&1-*;33Q?\P\9KC]1=YQ M:4]V':0^8UQRU$3ZQI]#AO_%[49Z2X=G=\]?OI"553N:)N,%UY\`U_WI7+QY>L7:XS-/GB]=5#V2?P( ML^&=_F#,IHHCU.#NGIX?K]ZMSM7IJ7;O!2*DN%GD^-W9V0$JI/K@R;?/GFFM MM&3/T;MRD1W@5OY`5?!A*M,N66F:#GSH9]Y6&5\J2[*+3MNWBY*10 M`\%S9MEN)O'6FKO+CUSE3?U!;X*I'BQ52=\[7=!(-R(J^VNVNQV8Q-=MHNZN#,2K MJ?!%L9P7GQN+_+DTR5N@2G4UE;HLHW5!POK$IL)@7-7BDPSL[EUUQ1]C!'88 M]9#\S'&EE%V1@K>&2Y?F*[9PHJ,VC&,_1-+VE,-S%7J[^]]OO_S#?F'.)]4. MQVM%K/WO]TP@)_WS0^U;K=]?4.Z_*B[.72VGJIVN7E?#<2\KIV>&8U MN]'7-GO:R]M";.^VHO7GFNU5N*`/\O6VY7H#T0N#XY@Z$'(L"?R4\YH/S+X0 M2)`8M%Y=\?WF^*$S\51(TEOV4E'&&R41%2AQM1E<_@_?,8!!'U?H@XWT\0;R M?W+!#UP54_3GQU^_W$W]K*(D=[^9!*;)7*3MS0+/$.'7JLBU.KB&AXK@PXX0 MD)D7TNK2;.?!\?I2KUP)]5'ZHK3^[J*YS*,8N[1DU2P;D$4S!P/I(X]A\?ZH M3\>^.#_[">/8;[>?WMVI[G&K1;CN5S[7F<`,A,^QFSJ)3&J`7SV"N=#LG^%' M7U!6E0R"E*30K3!_>G&P\V(/-L.8+W93\HL+M+WWW?:0RR.RCQ?=/.(&I`>E'KT`WX!7^&PTC?)N>(O>+TVU^N#EW_< M?:&11?E9/_'@F]WG._S*MSL[Z.DSB0@&==L;U<]V5+M/_N11A`S6;X<4"4:O M&]IV("TS6LUQ^M9&%^9\/[=^U,CH$T`*?6[XHC&1E7H7P]&A*E&[4/LN?OC= MWT!.S3GA<)\^5$3^#AFJ=ZO+TPO]*@<9B+V]6AU%[WGASFUB@U!GDN1/$=?, M[2V[/4$<5MV=*,X(@JY3!@X.](9:4!\8CC6J>*-`YG2CVC=VI;H<,X&2'4F. MYWNYM@\>568+JW(5<#>/5$`G4EN].;R2H=NE\D2D0=O=W=;PFF^#]0D_"I;] M-89C\LO!I=2S#_#"N],+=8$@RIJ'4"T2-HHSD3Y^1OZ/.!`#4JR>(1WBL]5= MF(N'D7O]JQ-UPFIS>2LM4N?,ID_K<;?H-P9M*[N]`F$^!$AKLCYC)7GPFRERDIZ+/#`JFHLQ)V'8[VE;U'YNW.FYI8-X& M?=AY^5S#$?;"UR^_D1<,2.*N;LNK%@NYE?9F70:#6WGK;4I!=FTB%IL"!O_F M1CMMBROV"\DO@D93%;E2HYV3S-OIN0'&%*AR>6A*NJZX6^J?7Y2P8-H.[?MF M=9^956*7]HE552/7ERN-ZA[\XO+HY+;''7%BVC5F7/16ZO@ULJW5T0IY$W6 M_B:><29K/VVR]C^NR4K/)&.R]B>8K/UQ)HM/3@%MOFGZXOY4 MZX2Y>V:3E-/[:O7Z]/Q7KM0JBI7X2?A(65,.?3)O\2!LJ:N?`F5@BZ!H%52Z ME7?8#VZG>+*_BSN:%%[A`U?%OL+13Q7&ED(?07[9BB6T^&N(HG<%V:S8Y+_>W7G\>Z@IDHZ&SKZ_N;PXO[B^ M,NIC)`E>7?XPR$P11V7&8#/@N%'S^GKW]V,)`>2#.R@5\)1_,_^+$Z4XD!=@ M_X*'!D/=X6LE/U?Q,YZP/@,/Y@\=Q4(?[D8X?$]Q]9[A,Z$2C==S4_Y&V#M_YJW>'?/OM?14"GAQ`T MK]ZM#LW;'%7"Q43-L)E,JO9WEQ?'UT>KXK"HRKO7"J8X7IT=_A1Y.U!=NC-& M_EH//CIYJQB\E1Y.*2?YU5>/"MGV8.]W3[_95Y0.K@A^!8CSN;FD4BOZ2AU< M$?X5]61YYY>/U%,^_US]7WV6A@D('Z[H7^N_V#NAM;Y3Z,]5[D[A[H36^DYX M?N[.ZB_>:.DSLW<&SZ3SS([6S%,5#[FIT@%+(DF78V#,6?VQ_7AW5X8`HW7( MT?&P"I%\M+>O7UTI_SEXLOU$ZW-]8,7@<)QI&QZ*;\2&Q[(-MB4V%FTRGNT\ M2=B,LU7\#7C68`R\52']8@/T^I7KXN\Q@%T)9DL.V;+P7^S7H?T'MV[=X-T- MWO"\?7C^`.UNU__BOY-]>HEM>I&3.I'VD.([4"%98NONQZQN9\_VTOP:CWGS M-WS)F4[Q*S;XPA0>FH]OCX@3H6L-OE0GKYK]4>;4S,HAW[K]9T[ND?Y66W;@7-6I>=T>GYM MSNV$WN2-M>1Y?C/2Y6FW9X^WTRU;=Z19!&W-(G.QH*^CQ*M)\ M;V]W"^38?T6Z&00<)J'NF'L[+Z3%AE4T#&3:J*L/G9*!(P&?/-XW#?3Y*&)5 M;OE\A,=U9)_G7S+S3`T!12I\N*%00M?"RGDG@N"AM^\O3]>KN\ISN:L_%E=' M;U9O[9&W,2I>#4XK\-[4H711MTZ.6TT-^KM\7R@]$T[P(=D>1HA2F"N7[^?F M"7#ZGA)<=^9&>)?A(KV4E^^5J=`O0E6W2C,#1YZG[G5/U"37#[P^]QX)S&(F M%Y>G92M*LR%X`V&J<4SJ0`@9$/RL3S9ALD2;Z--&4(82BUI/D@TE>#7*G?YR ML+>]K8Y66;U6FJ7Q&1;;JM\_+ZHV+E.F5524!L?[V5 M6(9(P,"WO)T?NPFI(S(/S_V-V6;1COR0>\P:9:>5FPA=G*"3R#)]IQ6>72$?>K7*P/Y867;^MAN^]E>!' M\+C+@[TG3XG#:@;WXU9XR6PIENVWG_W>P_:@1>DK+DN>47S"7^^F-T%[:TNM MH-X#G<$3AW9$3^J&\Z/K\P'I$ZK@^'+KPS"^VWVZO^-U6B:::T:(M/PXD]:+ MXRM;9.I0UXY:$6RE58A".D*L_&',[5%!@'%;:,VLNOU@6\%LYE/IH5;_=HN_ MN_/X271%D[),98K?%XB@.Z5;41\].9!P26(IXY4Z@/4T$.?(@'[Y>.1-^W_' MA^\4*`A;'4!ALE="K,,W1"@\4_9:SDT>S9Y)Q4^M@A.:_VX:Z M]H8WZ"OX\[4,0,]T']J.GJ@2\^.+<]CW]HMZD#XB%2:T4]VWAR24T,?W5Q?0GGB67OK0;N_:_R#^8X7[R9 MG)#@#D"N[MT3U=`-5?P&7.'S"^],9M=:GY3SD+#4$?G0'R^NJ4`J&^>?#]7+4ZNY=H>7TL/X8/V_Z[/3X\.[8';EBE6;]]) M[GNL-\H8>IK7TMC^[+M?YGAL'S]#2+.*8V@]L&^>?O-2RODE;M>I%,#?S`L! M#[W\H('XG]0^`#,"_4D/&3+-NG90:?73^Q?I3JO%^$[9DCR!EV?IHIA@&>Q; M6=;!.UIRRX`[YH"9MG>W=?[N_SR[!=7'7$ M%@WKZP^OUQ=OM2>WO;]W_\GV$[MNL-5436]N=\6Y?:UZT:)SJ&P7U<'C)T_4 M?M#MW_U>I]:/+_3[,H[>K"271$Z5-$J#;EF$-)NJ\S'U%#R?J$<65WQJ>P!( MFN%0E5.\CP^U9Z;*1C!@W#`RYZ]3(!KB0;'[_38>-:LL8.0^5_C.;MP/;XQR MDU5648[2+_*Q'&5?ZP,<5<%TX9@NO;Y,XTA6DG(G"82K;[3E_L[>OMK@,7@#K&L+/A! MG4_E1J_`6SF65Z=GRNSIMNK()&BN732M@=3%XH=7I^O[6#0L27Y\>G)2W+TN M[KXJ[EX6=[\MKBZ/[DH#^OK^U4]7]T_%7%^4\?[A^M#Z]7UV]4NX$FL[OJO7KCNKNU_^:Z^)_2'DEQ*<6#LI1_BJKORMF=.W=&/.O6<[D4 M+X_6A=3<5?^@Z1_47:'>(C_[S6^*N^6\+.Y4\[I_:G7YDTR9O3J^)(;R0]O,)S2:4?^^JGXNT/)^^+Z[4FMFYK MD8X3!5;_7S.F>Y+L_PG,JD%T<_G@Y/V!V3HN:M$OS7GD<,J-/@C'-?M1"J/B MKT?%9]6]ZK.'J7;'YF5RGU7EO7)YKRS3+8\NWOTD5^*-DH_/MNV7V]M;FE+% MMB9JL:,VT*U6^MT^S];']SZC@Z1'\;B>U?O'309:*<%*E*UHYI6H^W;YR[R0 M%QI)>GEAL1"EN=`MN^6\:DI1UOI"4[6MU#R-Z+M&7M#=-&U=U_):MV@6IM%R MV+&KMI^[Z27EW M6?6-['?9R'F:"^VBDOTNEZ588C?+OE[*KONJJ\R0>T4E>:$52]-OKZ@D+_1E MJ_N5:R.I))FW[NH%=%.7BE":H?NE::2H-*^KLNQTOW6EJ"0OB*ZIS05%)7FA M:RHD<5TI0LUK>=M2#UD27%))7F@ZLW1UK:@D+\A9F7YK1:5Y+>0]2&)YCR24 MO-9VG1FR4%22%_K&+%W=*"K-ZT949NGJ1E%)7EAT/9*X;A2AYG5;-@LSY%91 M25YH*K-T=:NH)"]T2[-T=:NH-*\EG3LD<;U0A)+7VJHU0UXH*LD+RZ59.KEN MDDISV:PQ2U=WBDKRPJ):6!)WBE#R6K\49LA+1:5YO12M63I)$TDE>:&KS-+5 M2T6E>=V7R]:2N%>$DM:%M&R2Q M*!6AY#79G1ZRJ!25YJ*2#UV8"XI*\L*B-4LG*D6EN9",(Y#$9*^1C! M,VIH;O[1C7XAXNZC!D3G'%IYEY(K)4[,^V[>UO-E)1E>7JC$7'3JFN1(_5=( MKJ]D$WF]UI^DA:K*:MXOE)/3]/):K:[)3_J+,!=ZN*9ZDC>)3E]6?_N%_J?'1:3S MF=,T4K0AU*!3"@55T/N%HYI>;"U.AAW,(NC)B$!2U3!J9?K*FG&Y[L0\P6@` M^:DUMX/:,.P6D+:&;ITL,=>J]9LF8\)KCD`]OH7CIH:U:$<@R3U(`R=@4, M<74C5#8MJB,FUYZHA[*4^@D%US$LR"3.VW(3"F2=G+KE):2262O0XZ`BZ5B0 M\2DU*-\99FZ1]2NV1ES7Z;41/H_3/T;4%\#AT`LW/,`M_OJ@5%@.5^H<5ZRB M@P$&LXQ/A=W:(AP0DW7H!*;1=U3EV8;F)FJ*J)2#ON-K@HI60-->C]`R&)F_ MZM9:`22!I9>5<;@I+>.&16+JSK/(675G=3X0ANC[A64LN]*"44%SBO++._W7 MR!&G)Y%P4#Q@0SP]29G<8 M+Y8H<2WIBX@]\+99("&0=%YG=GTL5W1.05A5"D3I0EW:+PC?/W"BG,L>!$=3M]Z MD=2/09E:1#0__5A9ZD64I9,EPRI>1!6S[<8H<0)3O5+5GFE'K=P*:]YJH`]A M.MZ+J/TE\7P M\G)28NXBFJRN2_$D:C9P=,F,O>EK!:#Z0J/!]"88=C4C-&+@D_2+:'<],S]6 MRW1N,%36(?K.^DRADV/HJV]?$%[Q(0Q04MR,6.JC`:"L&]CU"$7\OQ/\#BIS M&!36'F&8[(Q4@$QC`ED8CN$I!$_F&(Z!'M#"K;;WIW5Z*PUD6)>.1#'B1,G4+?4\4'UCPQL'5,0#O`81#,+`$;`1+'4G6[O` MEICAL1"&"XX\+G=:8AC`T)W8)8VY.X,0AO$;HO@04';A^@9FBT,8&:@B]4=[ MQH&59.)%<8Q`[T7F[B,>422#299\`F$VC^\,/_61,?$D0QBY+,P!IK9?I21;VMPZAP- MC"ZQ^",#CE!L\>(0CA&H.S^OD'#X/!C#LVQ$+9(KGL`&.`9#R!3665DH@]*( M!(WP472H.FU@DJ&H[UD*ZVT1&,,WU88/.*=;.R-J0E7JTSN,`-(S">49H!AU M"JZH`E,Z]F_,^0#J_WFHJA++Y^GA_P(>,P!C$UPST@&<4`5R*`!D0^M7N"O.XAF`,-.U6 M"!B.,>C8"WM1,'"6N419"(,A1;WOAR-GIR$,T$RV3TJ`B!>^"8)!6"\$'=3D MI*8`""-TE<"B@1?28V8HB6`(P:0U0#!`_RZ04&D5FD,P',XUWH&/`1@.7*42 M,A7!X!K865+0$=1S3J,88/B3[F(*Q?`(@)0)@COZ$?F9Z[&(VA/62D3'-(1E M>*G=F'T'!ST#9=!\21!6V;AG",IP:&1/B`XL7"&J/M&=WP#(Z/WL`E4,DW`, MX^-1J3!QL5Q3#T$,0=$)!F@*\^T4[DH50!-;UY=*/6@,#B=R7R#NXU"; MGZC$&(-A@%%JZP0E6+@7QBU4"@QJC848QBDB+#\*PR"S"F,E\#,MGR4Q#,?# M&&5;T0]`#%SG&(J!]0"C4(R>I+K<6C:(DHYW-H"_B2)##9$HQ(@!&,'$?00# M`8,$A&$2`]264!4)@PGK,#PUI]=XF2R$0ZUG5M!YFR/1"X$&+E&'P0QSPNF" MX+4BB,I&X(7E10K,4,/.%HFL`3I@O`R#5Z+T`1%&EF&0"@6!TXC2P+KB\2J, M)*Q(0KG!*@P`FQI:AQ'Q%NLH>F'[(E,BF71BX;PZ#`^_\&8TJ#HA/(VX\^`N MMK6GY_(`1N=;+:(]-P0PO"E1[\(&`);1DO#%>)TG2-DG<8D]$L`Z4?-A7;)^ MH`8#3(WIQ6HEC^'S!1@=)X+SZ]EB)E`+B!@8!,3=FB'D(IZ5`-R"JCT2R_CK MR9=!."I;QQZ<\8ZYW`R[,#9VH/XB)?4#(D_#F:D%&"ZN"8);'\/IYIT@!1@. M1^FL2V%!+JN"X^A%2-$*F8TJ4<,;,038.`I$I:*#Z\-`Q&OW79KQV(4>)`D& MK?Q,K;Y@7L1&V`6;_"PHY#.XK(4SG57SZR]J^UQB4@AU1@`7Q)$3BT#-^!R. M6MAZF`$Z5UOK+^;>0J'[8M?3&'`"79`!F5+6**M[T(73J'P4J(ZY:S\%OFBY M9X]ZS(C1`'QA6P4E@=5H``.\,BK^7JP]"-ARBV1;`;0S6(JA>5"IR24LNQM+ MC4ZN"2OY5I)87TS^P$LD4;KIQJC_.(`!M"06GY@.T]P$!Y:>,5>>AH>>`FUL M^9L5Z4G@1<1]&/QKZWG!!VNYL!D-TT3VDM`>K$3X>E#@CIPFM9N$BURD`J,2 MZ&*#N8ZB%UK3=%X)AF?;4"S#U%F#,1K8'VKM&@IAD/6P!ML-PH`$,7YG&`;/ MM!(>742\O0#!"%,3W"0Y4!=5$:QL%+^PO#>SY:RZ#?5#6+)L*$DSQN$<4'LQ M?]-K/(A@8*I=T0;*,'Q0'*W.8!4&3"L.#DW91V+<7\KCSN6AA$W58+A]0O`C<^ES)R8#'P(L5=R1@P_"<3]/`+AJ([9#RQ(FVJ^"(& M439+M%,)]*+O3&PR"%&V=8(&))O0+^8!!9P\>L'W%/@"&49#%W53A::#2#>! M*EGA%)4DE\5VZGPD>I'4F\YL^/YBQ*$'OS>G-@/T@L7)5LXW2((D7!`;-(,= M83Y/%K@P@DY!KYX(&.+LT:(+*R5$S&93]XX8Z@EDL2!S1NV9P413V$5$V)VQ M];&+A/+R)/X?`%\,QMIQ]");>P%$P!5>!D*/F1VUE4;$!7\,@@'*8?H6$N&# MBHGZBUHA&+`L7C(RW$4"H\'BE3$@!JW!L(%%H@:C7_`A+$BQ!E&D%MB)N/`V M5+=D\8C?1S:1\%*EFVPB:5@=GV.J,2B&G^'?;!\)+:N..9,C<0P;0N(#N3+R MS1OT"HL1XO,(Q0@Z5!_&Z",5&'P\*<3.:LZ:>%71C6!Z'/"[=. M>'2(R-)8/X/Y,>`<$$L+),EA&*W%-P.C@M"0*<#H M_=,P(@@&>#+1&@PPG)ZU:R((ALLN>9&6/ZD(A(%`Q9)[54TT5;,!@A&+LDMR M<`&J8F."0@0#K#A,Q-:KD"B/.)^?!,%P2';OTP$!F;(G0[-D4OC$8?BUZ`@S/R$`P1K'4*O0`>X]+Q[X)>#&V%]ZPL*BM8 MHGP!AH`Z@\#K].S:QZ_!$+4_EB$4P[`+L&4&Q6A<1!`!,8#I4MF)9NDNQ5$, M)]%2=*,-Q.FUG\K"N'K(#KZ2,9GJ_QT,8Z0V-&$=AL2K='A.20IUB"9/PC;JK8NL'3\'@$5($ MP$`^2YZ#$4@\1J:N\-$IT,J-ABG0GA6H,J>Y]``,88^.\"6>@F0C_Y#J"6J[ M_RE`AA#6([>ZGYH8['&P&H.FLPO#=1G2PJ,JON>[E MNT@\9\>9^9CB&UV)X98F@6(XXY1R==K:2>R,5_\.0QC9XS":[#:23"PS&L'0 MDJ7:+W$%`P0#$0'#F0.5&)31>V?Q7%`Z!&%$/284"W!?\PB&P#I?CZHV?J7J M8>-*C"DHQM!1&&;T60R#LHFWXX368%#!X=HOLKO&&1TT^VD,PU`[$/DI$$:K M]0%=EP$$PSL%`Y8K!M@Y!$,$*0=NX@0VNA>D@JI@$QOK6,`85"VHQ"& MGSKC",90#8;%'=&M9M?-Y$LRL>HX!,8(B#(MB#-1@S$C) M>DT,GZT1'U."`8&ZX2;F\/A%&(ZSPEA^-OHDC%:XSXZRU(Y,^L.#9?1\1^XB MR<$8D+>`,',C&,.Y'L,HAMTN$=._UJH-81A>$4))T7OJS#L,`W,N="296',V M\A2,EAXCAVQHVO=8M#;&L'OXA<#T=D\.P?!4-8DJQVPAF;%JLX%"%#`YH$@R M<"WC20^ZL-N2,-7>(8\U=.^'@JTM?.$I,R[RMFAS$P`#^"Q:AT&#??\,H4@9 MAA#H&`GB.-FHF-3N;@!AV/S?C2`,#U0W[.)T$#,I200#]6Z\DIA8UC M%LYXW@2R(*6=CADL#N/%<90X4S`+\X0-S[Z@&J^*G'WQ,4LO"*O&L,H,:(%\ M.P6UL&8_0"V`%CY:1IP;1P:,MZ:47HC`PW-U%T,*+X-;@`<^C%NH"PNA#L#H M/<5C^<4:]2'(@AB`/EEU88]?2E1=!*K3AJ`8PD#B\R.574Q'+28@%N8AMZ"P-7%AC$G@Z8>U%6N:M MTWO#V@N0IJ0-:$8?X:FZJ87RLBQT&['T$X`+W_VPF,EHZ")?<$KI*Q;ST'O" M9$68,4WA%Q0C=02VI)CTAYM4K)I(X!>>B&5`<%>(L3E\P0.W$<=@6%7/UL(# M=0B$$7EFJ@[#$>9F&`8Z,B&&X<\G*+%DH;Y%RC?#,=S./2?O45\G0#*@I15Y MI_-8<(>+5E%7OEG./7<4?K=AF[^PK<,8?"L`3H8KPK#L$F[O7#;T-,]^P?NW M$F^8A2$9/HPA6#HRL9UDAJ4ZL?`FX/@(D`&JE!CLM-\3AS(\!1/"&;BJ$[", MC!?2UHXN`U!&-(+$_#Z1HB$P`Y6O$QFG].'"&#"#VDGB"4TLQZ"]]"S'`(N# M10"Y>HP9UMYG]E*,`#4HH&BULML(Y1G[D",%/1YV$86V"!),&&]&0_< M@/]'D`U1.\5&W!V'@S"2BOB9=@&.:WW.!+0Q"=?()%#\@L5T,091>\/H3@K; MP/QL'-Y(8AN@_(&\&8TG$$&Q@98='@$X$4OL8H\S9$BA&H;W':IA(:8(L($. M2*+^E!9DS'#_5$+\8UY^#-M(VR;(/V;!C:8/^"[I]SA5&44W/*Y+^:1CT`T, M)^D:NI.#QF`;R#-J]$MPNJAWR9/=N9(,$MJ&^TI"'1J'-V;VA%\N`#3&R=5C MH+J@\"8E9S,%V^"PV:9_W5`B11DCH`T2\R?+,ABX08H3B6RU6-AEB>*\S=X0 MTHO2G`:M`<#F)C(";R2Q#H M(C8:;\#`MW6`&S%:5I&[SV%^D0;IAES.28/"A,&0`NP(6DSAWH67OZ(;X[SXXFB.1D%W7B M?20DD3(.N1#A3D.N'T8GO6-N#;4HM"XC!"^H$^M<=B?<-T(N/&&*N!:IBHR^ MHV4[UOW-1,4A;H&FQ.8'K2PY@RB\`K@(<+$@#TOJ/+M9-6'B7;`)9<0E2Y@Q M1O<3:PA>&/JTF#XU=">H&?47<8<]EWCKI?&=)'WDW.XF470*8'V-@3/ESEE0 M=1F\$-0Y=C'@HJTI80"X\(P151`A<$%EWN*2FP$7#FF*Q704NK!(43WW>51] MZ519!OC0;%^?3>"-W$O"MT9.1RY:`HK'W9T!Z"+CT$\%+OJL.(W]Z\PEA&]3 MD0OC`M`#S@9Q"Q_N=8B^)=*,UOLZY")9EA&OF`G,&T3ML/Y-\X+I$Q#P"E-;280E0$SE M9?W-2'P3TWF-=7,'"C):BJ[X(@!6K:[58$;78PBL&8X0ECFXP@;#G@(U_I<7 M*HU&+HRD.!?1TZ(IDF9K,`CN<),:##N:=`V&K^B:H.;6Y7O'(!>>=U/:0!K' M`M8QDJ)EMFZ!0^2EQ![_@WJ)1NW"I=.BMNW&Q1<@!'GP@IB32!@C2(HU9@'VWO.ZD3S\!(P8>"&[ MZA8&P*AL@!>:\P"]$$'QQR"I-RPE&-<_C&%7(01+2[I!.0BXWZT MXRLO'&HQ0NE9W`+Q:W0GR#X2ZOSFD`M[3W0CR0Q?9CELTQ+HA>T$#,Q&\(6P MAX$EX`ODBP1Z`0+G985\19S%+MS^$:"NN<'N\Q%."T<#[3+`+CP-,0Z[B$(X MU!MJ\$RJ)'@1;B9I<9_$F*J+>IG!+K#F82QV88<3["8Q+C0LQ@*M+I/WUM\@ MY8R'B_:'@(M&WMH1#D0TW@NM@OGSYJ[>`E4Y M:`(G`\BPB?,O+#-'=A4%0&#-[&IF(PE:70Q..(N/W4B"T@BLYB>ZK/WT6)WP M*?/BN5_5+!V]>`)RU%:2&3OK9V2UA2?L#7G_*9&^D9@%>H.\3H:B-V-Q"VZ5 MHKA%@]44@:.C7*I:P1;"GLF[4<$%STM80'PZ;D&DG?AES`'Q95A,B% M)^^!]IT.7/A&B6[PSA9=M!:&\F7`I&CJ6HUBTD82YRGZ+"YHJ0>7=ZI(G;Q3 M.'(:IWY)NDL3@`O8LIS.G@1<4,V`B^8;$^NN@C/P`BH M,J;JHJ%A/_J:7P->0(S"PQE0&S''!LQ#16P!8ZJ`KP*F*KV](C,\WXGV,1*YL']F MI)J)RGNP6V3A81<>P"]]')G)D-TJE-"^9@?A7 M.``C!EJ@2((C0Z*L"9@%J-26>/13(`NPKIP&LZDO'LF>VCE%S3$E#X0A<`7B M"4S76\V^@/,O6FYRLZ=V"A'K+*A;X7O"1H(6=&<[<6]LD<&$4@O*4@V"*7R` MG_K4SN0&$12CX3>/<'JPILYYSE9:6!2A"<^_`*\AA5;@GH#!9`2FRV)U%@.` MA;<2,]RS[)R;19+;G>/9'^G<3AM9 M1V5^C&\WH/(0(`UBO"AF0>;&^+K"MS=,K+8`$T>ZHZCDR*TBF,#BYK$)2@_& M8A9$F\[29]\/8A9V_F'F(_^'&C#G*ECYN,[-:D/&+!'-;-$0ND(D4E-T`LB.:\`6)!YC2,6(`( M355YHQ$+QVR8B9F"6$"LXDP:+P69B%BPX&]CQ,)QNY>)&4`L>D;;30[O="M$ M,`M:&S"(61#!;T.Y1ZPV*_IY+Z^YP9M3O5*+67P_5SVOFV'(PN$5,WIZIR\B MH:\D%DY!T&H+%Z+XSI+Q\.S[5(**"T=/H+'GOJ/0CP4N[&I309D*7#3$X60V M.T`N_A$O';&Q#HWI",L1Y,+'"#R9FK$C!/[=\8O6UC`'"I@A&!!J1PV^KX"M MPB8&)] ML;+!GA5;N$A]"+H(19VX.B'H.QF](,[BYN@%[63@+XWKPDTB,]SGED,OTJXD M%EO,\/W7*0`#`(6Z*7\0VY2&$$:NZV!#!R,C\1T`P M8+&9%QD"&+PP)()?P&)CU07'=9BEGX!@-W?,;)(2K@+(F^"8B0AQ3R*(7QQ MU$"&*[J(N(M#(`85(X^F(VLNR'PBT?#%TTZ,<'7X=\4 MOP`3XRJKD@`&2F3TK(NQ`(9ANW;CF@N!8$&?KKGP!3X%7[C`>KS_'D,O/F[9 M1<.#NDG@!68L;@1>`)P3QG3TXS!Z@24@=0RL'`M>,#=^8_""]'(#\`*2SC%/ MQP0#YF/1H,5`(:.,8; M)(,/MY')@6$;1P/0S<'\,^SKRZCE!CHW,W_N(59+H8[JI*/!GUJ$BW@"1!". M&9(4VSQ%*8;K^\N"T(+Z/ M+ZS4:36.4\-?3F+/)DY3A2B0F=V/;F_@SBVABKQMT([K!&+["")APK)L;YR0GU@&3+P*2$'7`]$"HP\E#>KJZEG'P90-! MT?W@7T]&,I;`4YP`]KD-O*G4U$3$T5!U'!^/JND-8W%4*YX>"L:,' MCL7X"^YN05TZIB'@H;KR2*JT\A4G/R.%DPH%ZXDOBR9,HWH\=@]Q&] MU`;0?8;"IQ3ST)K#$#?1\Q(QW"M6-5A/4=1SC:Q*H0E2"< M6/9IY\PNQBRH1;6,,DH;EO@ZS#9T6!PD''=C2'IN6.M-^9L.5,#!HE5%NAI] M&6L9,=OYZ4*T@2"%#B%DXEJEPTQ'QO#"X'>=&,8*ADG(NFN41?"!5*[!"_HAL MO#US!73F`0C#YZO4_/4#&^>XM*:RDMAP$QAUY+J2EB:,85%OTY?)@@? M@A;`#4$U4)`+*D7%236DT(P$T%R'#ZICSH3Y([BJ'60(?-,TY4V?)+E`,B!A MCB2201,+E`NR^8>"G)"2J/*GQ3.A:C'`9L4?7O&`E5R[N9!;9(;`":9>HN5! MF00+>IPXFF@:$8;H`!7OH$G+*S1V],X14?S3V3=EZ#&%X?5@_0#EHUCQ@(GT M;:X".HMN@<`,=JI"D>,#@;EZT%%8.T+J8F@^CBM<* MN9RPP"VD?HH`[2-UQ*RK*`1F+02/6+R%1HDAA+5:SRY>I';`6:+2G8F4RZPF M#INT^-(B1PJ65@V5GULERF(HGJZ&P#%#R)$@CZKBJ*SQY0@BH*V7J(T4H[G4 M7YBEA7'U8XS*S)Z-G22MJRF(D1;RM#,\JB(@K)CR\N@9/6+-KD*?,RG>_*'P M8M*N.K>;DDS?*G!"A>FE*1AL#=:CZ4596(O"B>E"M@GVA.XZC=L3D38G8>[; MQ1H6QH:,2B MI*O1L"1FD?*BZ&C&;:AK;-C"G$AA]8QO3PS)>)4,4Z`0^%$E:A4YC-ZKG&+F M)%V402$F7@]<625@'@RN9E3B4742&D2JT0;D?8:[$42<#B-57@@#1C?3A?(I M;P$C@G*]`$]AFATADL"K[GMJH\%`.^\D#$UL,J-*E*4,FI&F)Y\:7I@R:$1` M-3D/VIH0*]L3K8AG0NQHDE8$4>"S2-F0T("X0H,& M3Q@9$9/X`#PR^]3O[BOS%R%(5-B'VZ4'HE12KHO>\B6H#LP"\JZ)QD3QW8#QB1S#'Z+ M\"'AN]"6`(7S_G/#P^.1QD2V!&/B=-B,;U*>8DR<+O4%J?)X:]06&0)'LO+> MX:`DYD1/@;JH0FSQF`]+WP&DRZJYF&S-R,L`,F')P!Z9V9B*>;\HR,+"8$YF MY#4JH070Q2-+4SQ28=%)S*`X'#P9E/`RR)A)<4!BPJ*(<(N7;U(LE)A$N2)4 M)65._B:`C>*2"=;$("^1+"8UM!0?C>-<'E4\FV*C$IHF&]B3%EB4RDI,M(8# M7C=49J$N9E%FMG;(610>F;A4220V:1TR288169D1)H7D&?+1203L\A>[HIP; M[)5)@EW.H&#RL,L[DP."/TN?\C,F0(%%]+@7S-A(NR+49IFV`K>AK1EE)UH5 M&Q%PE3HE?6*T(9G1!B&*\WH]CV4X1/%RZY"O(QNL\Q8EM1UCAIL2ABV*B.!< M8>ID$YP+KL_<7MX4SE5Y1B5VG@(*@-76.:"+.Z$VLT>W)$R%NJA)L:8:]5`T M3`%I=A8NA+MXK-+:T\8FF)6)<%<\4&$.S,W1+JPBW,BL@%'K;+,@@R(LY#Z8 M0$GC7:"Y\AD4%SK&$2]Z(GO:HH3Y$Q%4Q`]'*9'\"7<98-@#)H7E3ZAIW7C' MM=@<\8+\R;CCHT(Q;;4Q49T@O_$#.!*(EV;AP)Y`VB.UE1]NZK&`)9<[B3$X MDO>CI$YR48H(@$0;IPR:%&<=\.)FN1,R_8;M^YN2.F%E^-!@4NZDKBSN!4OA M5BF$OG)A2@3W\O:WY>T)TSKO96S*#&MA6UK)@WM\1MH4X!>E M-TI[AE2DUH'^Z;M<-M[0COKXK-)AA#DIR\1+$$<9%"M&49(.QBC"'KJX<.O< MX"[%P1"%HA"L0J$GZF$@C>(5,3DC&^&L5H1$B+,5!?]&6!3E;#B#XJ$$!+7> MS)Q$8NJL10$5Q/6GS2\T/:C0M$4!_S.T*&"IPTQ*';4<<8,R-0E/9D7Q1.L? M4CN;-RI^)2B-AJWWDC4K8)\=J1I:6^DSW"XJI-`?R:',PFT#J;).:TB@6%H$$AV*Z=3H!-)(:$D6`-B$_?'H9%)= M%S#UF`1*(C0A[#E@@,98F"GAZ53#0HN5R\K8I)69"0 M)@-QR2!)4EGX,&'"."HZ"CJ6UE5LC(U(:KZ4SFZ@S<^&(RXB"1`N2UP[`*,1 M//)5UTQ(@J,JL<3,;LD@ M&V^<]%!UXQ6Y6+LS(7.257ZC4REI[XDQ%<(J1BT@BJ?@FMM^B\9(F@MF)(!7OP[HL*$E& M)#-R>2`\IQ MX\JN?&C"=O/!%\Q>6Q@P$9WT063FU0K[GG34G,`T0G/2V#K+FR7BAXN[M"C0 MG`F-=#Q\"[#L_&X3,D%7_4+.-;>`531E(N@)5S6)3!ABV/,]SN,C$^81N#/' M-[(C(^R),%D>JW>\R(2&)3/W-I0.VF.Q2U48,"+4; MM*JEP13:U#./:600"TT"$Q)'M-"/2?`X+&0.U0*1SB5*TH$)&&L;'3L%:$JT M>ZQ?3U=R536;_\SNR)EF07KF-#(@NRR'E5T4A9KARYQ';30Q]L.&Q%C*@%3A M(%)3%0ID5E-SDLH1H6."\9E&"&NDH9$6M!//1W MO-KCO.5SS0@KXOC+Z@Z;<[-D4.F'+,@5(EPSW''JVR-77D6=%W_+B>!*NLZ>%1@ MPQAA31I25MLL2.@"FQ$&?P:B7VF<:X8Q"N&*[+,`9 M&HMP)=4HA74ZSE[UPF.>4:@WBA$+NS$G44ZD6."MB35@) MVSAS4I:A??$#LV%K4L?IL+#/8.%L$$@L^883#A^(6-9]1MZ0GN%5B$I2^]_# M$AD1'O9@13(2EQA#$@"EX^.2QJ9+?$LPW99D[$DN8Q*F2_Q2A8`FMKV)(+%P M"DD3LR7]PG/>4MA6U)@(2U=0G#&CYL-;++./*IWD<\;!6R-CD\">6$WI[`EB MV)U_:/3XO8O^^@3P5CX\:2E_SF`KPZ;`](;;)A_>A\00T1I`*:@A\QNPR MZ>=M9;V+F)W.A">>L]53B\+34V%XXE8S$%B*G'IJ=Y1%";QIJW4MW`)::!`W MM%Z//0*D&0Q#8P&KO2;[R!L8F$*&'2!+D=*#4^&4\[@34;MBH\ M_TTMBQEM8HM%VJHXJ^8YU!&CPH(4CSUGD>V+KEK[YBBY(P:=S)GV'8532FMBECR@^$,C>LG>*M3Q52&1K;-*D2@-> M/#X9D349.%]%;'*\2LU,"2B>6?QXE4D!"KH/-S(F(PS*V`@EFCE)@5T6!["6 M9"!WPL1G,$+Q,M\@#]3;&`%W;9XY(7SN?/"!^,3QIJ=$>\0L*"CA&Q(PEO'8 MI*0XS(9%76)!$O`I4Z+_EE5N(X!%I[*FI%F.`&:H+1F9/M';2]28[#BC&2G[ MI\^;$C')E'@^#EAHQE:YR"1E1X8B$]U1#$C-F!&!`&+>C,`W&WEY)2UT\]8- MDR8659H4DL!UP[X-@2PH#10?:_M1-Q7X5*QK'^2RR"HQ$3Z/\ECOACF32$3B M]$XT_Y[96AS+F2"!N>_\B3`NZBI[%B2*<1E='$I$(H,`%_7M M8MO>O5#$5/,$"%=C,R:QZO]T*!*A;>@XIL.1T(B,R+\'29,X;[J<5B)GDD[" MER[;:I>H6HQO%#:P=L2?^>`!@&)8(W'T7 M,24=^.5634$28:,ZKH@M@:(J.W4D([..-48&A.N\J,0C*S=G%1#/,R=^5,(E MB*B)CU#+%<#9Z;@$YIKR4YJ>7I@2EZB9NKP)TRXP*N@Z_$/F8Y%_S3_/.B$F.+'9E&9.!GI)[+]&`%MHE% M)#VBF#%KPNR`D_]$1,)0+6&3[PE3(JPET1JH!CYT+E/-'*J()1'Y<`0FU%MD M-!&.B#2R12,R!P%.!;8P*49I0'6>U79VCDEMY\4BB-WES(C\NE3(EN6$,`YA MJC,9BR!-(Z44L**!#$)M2#&"4EE2S(A"8.U7"XH MC$DJK&N)QB3$>B#>NV$=%^47C[6\Q0D,2$5KZ4G`A>-`"Z*S)+&@1`@JK`@< MH%S[(0FQ*>F0Q%J%0/=6GD>4#4FL`<$0.2GAST0AVF,HA*TG5/A3EP<+3I-411>QU6.S)4W$'Y_1ZF": M+(D0UEZ*V!2GPV,X5SXL$?9$#\\!8:+FO2/:#`PSMJ1K M-KHZ.!Z:B!%5;E3N%C::R]1S"8$9N\FUP=8N!?*>L"@M/Q';E7$E,@3`H,E, M28N^IYU3#..BH8G'DZ!D>IMO)P5S7F1"&6XH-`E5'BBLE"%Q^XH:?G;*+*A? M]0QJ%-P27HJ$YBMBFTR6IH(K'9=8R\0R!)X!B6@PPN/6?AC]D`2W0#$D_4>0 M!;O6*1-"(SW&5X+F2698!NL9D=96I"2-2$L2);Q$P9!PT(8XM0$\Q21;=`X) M'Q.7$`HXA-1QJ2]:*"4=FQJ=O^RE9.7`-(()$R7Q5+M-GPP9#^#[**)%WF?: M(*8U(B`)5"2-4/*60W0!&X<(]$W^-N0E#Q'#`:Y?+"H!^1"1,DG/<"`@D:K8 M\O2V3?6"J;7(?B(D<<>4!?ZB9SXP0>#;C\:/#>QBS;P:/&<_6$`"ZB.!:UD- MG,Z24+/7A*$('A60"4?`S>`6Q#UA$@O>RU`DD@U##![.!K,`]"!BYQP[PU&)8JT, MB,'U,X%($L2O+G#D!_Q`X,%0 MQ*$-+&Z;'HQX#X3#1"-W3YB?'V]3KKV;V725BK!GQ[8;- M"G%L*V-(H'>JZ`5V0PT)I%ZS\%:$KV98`A$)>SF1L)AZQ(ZX MU$C.CO0(:WF(#M@16LB';@VU)29<_@>$)G8_=AK<\N6>9X0V"$RL/0&?G\JM MC4QPTWV/^1W+5YZ,*MIH;&N!*\U8GJ?9^^'HQ+$!I75E:S=%/2(\\=.I>80K M%9^T9*^19U,&HI/>[0AVIM>S*]8X1.U*@\X\,2TL.D'")`T+"?QGX=;,&(/Y M^JJUU=*$N@SF0L\4K(%5ET1>U6)Y\8GW#)19H-UF`8HMJ,E;%<-`@]$)&!7! M-_`C%[9TNV>(7F\0GMP@-&EKU%LN#O4Y+6M5VDAU%VT^`NQJ_=/)&+@Z(CP! MT2*ZR$9)=BA-"DZLL#1QH&MFRXV#R`26@"H*-)E"PJI/='B5:,] M,0YKR(A@D>#0%`Q&;X!T34R5W"@XB0!=+C@)@"[4KJ-?6&))[,4GJ)P3EH13 M`,*!:>D2O[3(TW>382ZX,L.*P''9DF7JB'D7FXS$N+R@K=PD-@D=\7ALD@:Y M&%LU0>BW.BS4M"UF-F2RV2`0IW[6-:$(F^; M)DUZDBJ.&9-Q$8J!N2B!683B(5V.<3VDR\XIO1:IU'M8[>&\JC)9O35"Z)VG M&!16CD&Z&CQOZR99$T47R+19%9!/F[2)XBTLPM.'+-%20%/]-FQ(8+EPUVG> MCF1>5X+1B,6?QP8D?@E#BY4D([,E.AY!5NAYOGTV9B]B=MN#`X]S1B3GFM!2 MR?PKWHD9(>J&U6V!>J#[22)&I!JHVP)3F\6W4D:$;C]QVW2B1F3,;A*B&R9; MD8D6!8JG?"M"38@77$0`!6H6J;[RCML"-"$,1&B*PI$F%H18=4`MJ`J1H8F32)UDK.I06@"<3H+YIA=\;TTD&G' M=_"K!W6-@+@0>F(DP+!B8?,\9`=NN*]PF3IN?J/PA!9>VD++T<$)4,9%X=:N M>:&)@1@#HU*6W@!8=;^U]S>R*1.CDTAD(@BT+Q9FS9-(E\7T'M1,.7KK8Z9-N&F,IM\KD34I9*''!26Q@NB9 M/4R3R;A!==_S*"0'#RNR(Z]A9$ M%IX,ITZ:X;*N";&)_I%N5TH$)XNX:1'AP0BYS$DT`1\YI^.?G3H1S&E/EW5% MX99,?#(+RKI:FN/PW;A8A-*2+"\_-]9W&.J(7N#*5^!FD_$1"KA7(_,FK2WS M:0C"G0Y0/&S*'C8V`B#P@4^&:"0X&0,&N&)==2<#&@\X1^F8`5S M).*EA$=EX$F%P<8!BMN.3A\Y#>D2*`@;!BB@\FNZW(RMA,C1U.A>&[6W&Z1. M2+:99M]M0QO$E)7ICRKY`W&8A,!M,F1KK'9$V`3NSF(?/!;8>7 M-&G(UA#B+3GSX< M=?[NIDF3Z47!E"=[#Z(2C!(C$L4M`6-H/#+&?+1@/FSX@AE5CZA4]/.Y$G@. M1Q)'!R,^=WOY@7&A"#*![SN;/S:9]Y2@D((\,C-":O,35(WEX*W,ANXL<44R.)>UTQF<*]2= M]OH_X;U7@,EB^"T2;WFWWD>S]*U))AZ)&Y1X13!3Y3&4JQ6Y^;3UW&Y6JKJH M77$ZHO4\Q,E1B?A$4!?D1^*!B4&OP4_.1"9\03Y:YF2"61G`8H:!+H%OP8@" M7<+M;TX:%JW;U:ALMLV0S]^=[$4GT1)AF))8Q)'4*>$)B$!2MP[&)\8>S,C> M(&NPP52,+'!H!I,G'D53AF7&=S`*X1@]'IY00(+$)S[6E3,KR-A.?R)Z,?(5)(A4/ MQF=:*M[R9X^\QXR^J^]:..ZD)L5?ZDGI$Q_I&FU31!U5>]2<.#X/0I6<08'T MEJ%&U**`0TY&XPNIFC]8DQK)&,W%.#6`WDL0JS@,A3_(F1-0`@V^V"N9.1%, M7CW`Q[V^)&%/+%@039K4A#+14`50(,XQ[92S53P!=WD3*F&#JN]CY$U&[SK! M;][A*O(7;5467KC"Y7K\V2J"S%+0,^JI24D!#,E8)9XYBGHM%&*O!TO]_ M?.8D@GM1>P)&-&U0*&8?L2<]5ERE[8F_P2E(G508B:2*NZ*KXSOS"&94@>5J M;-&P%0,B`\)N1;7Q;,RH&$?-J2[!A-X9%$I'-25(*#F;H)G@IG@P>$Y^Q(W[FFD0C9&1*!M3]MS(XT M-"2)FA$'6GBVZA-O-?$B$NM@TY!B?!U715C*&A+#!:AF\Q&)B-F6V<1SNE)' M)H\W)42&/.D:F817Z9,R$H^0SE-9>)$LYF*H:T=8QK,D)D\P-BB)PUS1;Q&,2T/.)_,D(Q-C*BH!MN;B3`5$N)UH\4/HC:,; MO%>F^;1[3AC0E2ELC1A*AP1B3HO(F)8E+&+`\W:2D=\53W9F)3'+VI,>PN+5D MG1J:-+CMY*;V9()-:6^XZR2%+-EL?.LVTJ`MF9HTP1MFF7TG:*O2P8F-3&;) M;2>@D$:5>$W.Q2-3=#Z!W>.C>QC1/\V5>%D*"Y^R1A,/6Y2F)Q4@FPIVJX0XS*&@AHVU&NI78Q-]'!2EG&IB2417FG79I:$>YP;6Y*1 M%D58QPR^F35P(L<+N^+9$DJ15)TP>IS1LBZZ!5+$MR]2S->+2LSC_9F%5B1? M*2PBCI-O16S.$GYTZDZ$,I@.2KR(A.!#5(]-.EZEM\';)D`7>J\64]RTIJM% MUR&:-)JD\BC.RHU(5:>,B/0\M0TQ"RD(QWEQSA0S$M0)3XM*_*WLGB*=$):0 M3AP]A\JY6HS:-S`DSA)2C\TVLS!*WHQD"H[`D@PSE;#[DP,C`HP^PP))#N*Y M((+8$?]UQRB@+KN5LR.9B,3J3&#>S2(2E_YU5G9S0P)<)EY(TN,15&0+P*0=BSUF0W@P0GUY1_E4%5>^*':D&1')1,D,7T`;59Z1 M2"0>ALS(N52Y`BZ^B)75\"4]H7"T";%V$+MLEM17'&E"DJF2&=D>D3CC@Q';TAD0"E41'LCL-`'=QVV("_6=OJ,H/]D)86OO0Y[R=-5`*,(P M+:KS23E)98YZ'`A&@D@$H^N2G^IF[13?M]0E$^XQ!1RLJV](;`1(K(B;TF1# MPI"4&QB2(8-BB^:8*6DPB*/JF+MG<:IXI@1$W\N44#P`LRKB8A,R>!/M\`;.[%P7'M8@I(=IRHN^( MR5XDQWC-1XT)QOG.._?+=)$7ZUZ;$]%%:H%9--\YXZ'PM%##JIWRQH1H>5M30FR)H/Y*IFZ+YSXL/9T&&6=( M>&"`^G9XTR+3.HRB:+$WL".^-=C,CD1LRH2`)%XRP_&4B!GI!S>5A!G),1$) M\^F=?$^V(J$)F;F-RN.M2*;B?805B:='8$KM9"L2P%HV?9PQR9FXQ-H2$I8PIN*2--F4$%TU)3!! MZ"DH,E_T&P0F'K1E08,LN`6A>0K:PF09A[*9+5D0NGH\!6SQKVA.S)R=R:.< M9CP2JHZI(K$,2PO'!B84-7`VQ2F&$:%)A9N+@TP)"5$VSXY:?;E9;`(&A12EH(,7 MV-:ZG>/;3!(FQ8''FP8GPFX?_,<$)R;H"X@JQL4FU!LW)J4='9N($2;%_)*& MNB;;%!?/>EJ?"EW"HMC9T8!"49A8%"C='V-2+'[MVVGAE4MW\UR$,F/55-:$ MY!/O?GCRKPUS;12>4(C*(T@N[^Z;$X1B2M+%Y.!D9E\DS1?+C6,3+^`;BDWB.%>@?(=P+E2,%.B:L2+`32,3.I3-(Q-O0H)5 M+XK$V5R&]%%3DM+A`_D2TLNHW'ME/0GOSPS+A6YF3!RSW,"8$-,XT9CD$_#" MR8>3]"&D*Y:`!\V0-"<(J3A%XJ7?-PU,*(2S<6#"DB;(O(%=E3>!+6EC8`'#4HT.N'Y]V%[DLN_ZV7_-\^_ M@['TK?TDI*OU5BA(GTP,4$S0=V-SXMF2SHP=7-W+[,A.P`I8;Z M!A;%@:HWLB@^=KAA=&(,I*6J@6/R5&TMJHHO@D*E&6.M!@\9;=%O8^:$(OR\ M8F-3L>C)X0GF=#$EVL\!*@9BV_Y^F[3 MH(1:@9NE2[@&;P59[M"&1."M4)HV3[[W[B3A?,(D#G`)FR%(E0&,1KC,N@0! MY#2$*Z$Y)P4E5M'!E*@!8?-*VW(4*MSFT2]&61"+$X+R"&$+H,8&J1*K\C(F MA`?'7DSB+`B-B6.;2[0/7QLU$#M%P%+W)E&)X&4-&T`"E4HCM-"$E3%]&T>_[ZY=W*RI5-VX\,1 M;ZLG`1(W"DB\:&1VTVW)8ZT)K?'PC(D3#E91X-/!V!+%U/_/E'(EPA$:BP`\ M'=1RA>%($\V[!VQE)@5M4I:$!B31:`0!KPTL"9EN)MY/XUN,K1:M[F1B77`( M;3D?)/9&+($E2Q$[0E@H]'Q'VQ&BF`)E-<&.$",2P:DVM"F;V1%N1+BUG1*7 M,#;C11>CHA(10[4HZCLE*`E6:K.@Q%.=FP4ES(;,Z`O^1@8EYD>2=L?T228L M:47?&0Q,XX#CX+BVL9Z@T8$C`F-S4DC3U`X2:& M)`;K8$SB%QQYA@2:TG@K;TGB,4G4DMR@*/BC6A(AHG'9"$,BIP]9$FU+;E`2 M;$WU!@&)QT(SMH%A$T,2@"B;&1+BF-WD;X/'2-[,D)#13#8D=G-(9$K"O58B M$Y.(16XHFQL3FS^YB3&9L5=)9T*2GD;GGBV9X4L+4R%)TI30<&30DJ0C$B+O MG\Z4`":7VO0^RI:H[25H2TI-\M!&_UL:DW%1B9T:]1-[[_MSGY?\2<>'S&XK8Q@4DZ+_K_8F"RN3'!6H>4,='T'HQ+ M+#)_$V,B2#'5QG%)1`)D@^52O;$7^CAMQ",(81_!1*RFE`R9X9'#HM,:0:')=X5'#B0BK30R+X M3.A-*J1`Z"+Z1'#JSYG)@`1V,+19X]Z"QZ;E=J/)1LM&VQ%E1")T\9B4$!6\ M!MY?@KH>:XDN2=1P0C&BAO(79ZM9]'0WGWN65L@3?S\>S.6Q6HADYXEBZ>(1 M!;RI432!D;#$.S%XWF(*_WP?BK%'QT)-ES4F@V/1XRY+,(1$\AT3YN4^BH"' MHI]4/GC:J&/KD0MB.<@V2W+=-.5G;7U>\D.Q=T1@YW&/I(%@10'4)_.(H$RN M4/8$0X^P.S;"SM>8_H&`GBKU;900R%``"HVB:6?_:JLMW&*Y1+P7XP1_*WP% MUX!4\T-M$B2VU+#_=S;6>-R9*6F]$9KN'MT@V!J04'36VW;NW8*0E3`>O!LH M1Q7"L7YK\.B`P$Z.X;:%LSA^I^@E=>YL,6K9+(?&Q9"T\6RR*W2(.#X^)6O+ M$Z6G60V%4P]W]&U%0&EA&>C36).\4$>DJRR)KAI!%M)AD">?V;.>\^2A7!;: MFEE0FRZ"??L1V?#D889O8!S6MJP8#G!=!^BDE6W?,<6B4\]DX"[P)E!!A!8! M8N1--.]I>M/GC&KT0,I'9(SIOIM83\2BEPCC^9A.32@(MLK0(3H]PS&1=H@\ M($?27*L)7VR+A!``^?%OO-N0:3S^<`X('-A?C9-5G M0@4$KHR`^FOV='2+$H8GRKU^-C$2J"\X`2-C(5Q*:WN0]A$J!9UTP=^()'EL M,$3<@&>IFS>EGV%#/J(;A((J1%*BLY_9-[3&:$]N600D(0[H#/9HB*3[;O4Y M?8)E'*/V,.4Q@8%]QRREI?P!=8@8N^VAO@X=*4IM;>^(6!5C:3,C078F;CPE MF\,1AX:P<*3,\$O*7#,ME7'0J\@[DVL,E$22;6,@"\:15F8'=#6Y->REZ4F1 M4=J!CA#?!%D,!1QD.,NSW&!AR+5(ZM6&6JB(`SV\UG0<+3F:VV,HBSV+V.YG MW+!;U5F&F2`%]&^$@M8/K_FLEV4R5O)ZLE%.0M6ER-W@RPHLC5P:I^D'5SLM M[($8+-@+3N.KCAE=ZW[QH"#CEOI2Q'&@&=^>G-$T1%58,P6*W(862<70S:EW MFD<,4FH/G0B18LW.+W:+C2DZ6V)N1=H4N*2CL_EZ,-&L\D09,/%5+-44CL6I M?=\,F5Q(1!_&(>P$^Z3@!&\DI/0Y4C6,S)81:I@VG<3X/[X?'\HQ:#HBZWVM MS(TF<$(6.]^(P6JT%@T*9=5SXPFJ9JEBF(1R6J@\Z5@\I\FZ8:2P-A'DD,%T M"*Y4#'_#/9-<)K.CL1`4B85] MZ!7F*#/LPUOPSC+JLF*5!?XXO77)1P8C/7F*J'@D![*D(D9T,=C>3)^WA!U, M"L_)LRR/F\;XSQ/%VJNVL-I:,$&+]@(\!WNHP]`AQD0)&2"A0EL'SIM]*#,+ MNK%@,V*Y MBL0BT7(6?,WRY$7RJ`)ZQ,+O@L[5Z,(^YO#-<%_]L/QBA^,T9B;P;;DET948 M\GMO8UE%&34/3#G)R?%W>OB[JOB[F5Q]]OBZO+H[L7E MZ>O[5S]=W3\5R\7]TZO#^T>7%^<_?;A_M#Z\/GE_[XUJE6TPNWOW[KBN;NV_ MN2[^Y^%Y451%*1Z4I?Q35'U7SN[/*R>/%RO]AY\G2_>/[XQ1\> M/WOVIU_I7_;?G%X51Q?'J^+]X57Q>G6^NCQ5]K8J_J\:T+WCP_5_JA_OS^Z<79R_+M3%@Y/W!V>K\^)1 M48FJ%LW#V9W9G:.+\ZMUV5]K^]2[8XNWOTD2?]FK1IOVR^WM[KU:7IW*TS];' M]SZCP[M43SM87\F_=BKK'U='?_Z+[/3ODKW^7BS:62\F*15>6=2TOZ&[DEW8IKU5U5^I&725*V6]7 MMY7I5WYJ9;^=Z!:FWTXL2]EOUY958[MIRU9UO:@7M6FTJ'O5;]=6T&_7-JK? M9=="O\NNE_TN)TDHV76_J(49LORD MEJ[O&EBZ7E))];OL8.GD)[5TK]77UJ]8NC&K-T\I/D M"7E!=&;IU*=6E=@V_6)ANVE+77*[J/7J_5U]:E6_7;.`?B655+_+KH)^)954 MOWW?+FTWK]77UJM,YNS-*I3[U2HZ(S2Z<^">5_-WV+)%9?EKJR MM^K-D"M))=5OUS30;]#N-=6+QIW-00=P`N8T?>/Q@K7:Q$1'M9G/3O;U&T!6+`XQB\P5@4< M6PU(/7C"VRE;#BHZ2_J%NH05%/#[4#FR3LJFI[!="!)=#L% M(IOLJ`'2@Q=W>I5@_H8*6^K&Q^`^-;%C#$-*LAB)E?X;16#9KT_NIX!JYZ&] M>0Z<"7FIPMH]Z"^BIH$(S>!AR[/X*:'C]N:IA5:G%W;VO=J+@&&YD`K7"]=V M6+5$MVRX)>3J3B\;KR1`LQ34<%N"PHHEB>H)*-FSHDT1N:VT]C.=3@,$(?0JK]F)N!2.-V5%#S%W-R.M"^;A5=5L6G%.P(#Z% MP%-AL\0E>D^X0Y$8&8R:B7D5F5U@UJ6P:FL6;(A([J[+<1:7IA1S49>"3#AT MJO3"J)N7\UBU9.A58#*C&?VR>_,OUXC.M_`3UM'--HZT">_".54I!\-Y%Y"^ MC8DL&EM&V,QVFRA?<=L6]3!&N!>SV!N,4^("/$3@8O7_BG2-GQLN@ MY+3JHL4=FP2/S#D9K(*IQ'VL5JT90S#@95C*!$:`.*Z]+0O-^1D#3L:,G'P0 M^AEU9?V,K/*S!B7O9GARVJ(I1A?#I?*S7H;35M"4NQC$N@6;XDAP3.M/(V(Z M2QP7ZHMI51-#'#@9GB7P598CV`U-`?>XX-I`@"UJGQ88/_;SG)?!I*E6P$U9 M4S+'&1;Z=UV%^`6D27C8'@(8IFJ^P3T:OK,A4%V&RBOE9Q#J@@#'`F[G;'!W MUBL)X/N#<=&!Y!WZ,J5]_4G4'HC`O:1^R;#^R@(8>3_6X33<3/*6/?&4F6=@ MM3*[V0(`S7GN!?\N"ROP%?UM<1OS3D8X$!9$L2="W2L MTL%1WWEBY5JU1./=#+]P*QW!+X3R+EKW&@\GK1,AC(]R*`3;A?Y)3H5P,9'G MMD:):IT,T:&]),\+[`!XW<0,3#IDB`M2%LB8[+-!0 M$L+P_S9PX(B@I(VZ%A;$P&7U>A*X'P*WO)*PVC9B->]I9*#UG^FO$C.SR&RJ!DS+-P[A1W+O1\E3HW MR]H30-Q3@:VUK\/.Q8!G,3(<8-JOHN?86"M`O8N6OP,@A"^XN%+-$*7G)/P" MXMD%AKHI!\.$.%4RT#2D<:2**.\F_1()F"U+3V4]C`1Z40-ZT>)>S2A_]@MB M*D/?PIVX,<:]H/8<)U-&W=71T$7H5M"46]RSR$BG=2LLW^6Q"_AF=8MW6`(* M4T;_C_$IAMW5`>#"L*UEF4A^Q,(65,*\4P=@J!!"VI#2]6."1(9:^SX%T?8S M/&X_XE?$G8K:5D+:HV/>00P_:BWS4)A2:X(R-I13RP=0!KAS+@K$8$I,/DA0HZ:Y$Y$(-()#@58 M*.JW6J&R>`%P4.A]:./=W\K6>%0M*QJ5$2 ME'I+H_K+#\UI8WD"#-%')D+L=H2H5R&\\P_J>+P#((5QT%R$R(,G3SC3#H5- M[(]QS@*'PMEK"NY1)24ZHF+R[L0LV"2:CR#CZ0_J5@UZJ1E_@CM6O7$I6HYJ\OL?I]D+Z M_H3/,-_O6G7Y6==B>BL$'8 M6<*A$%BU$OB^Q%>>D`!AF3OJ_>?S'[[W;B7;N18FM!\@*0 M1L35P("T]B/.$+U(%'6"X21\?";EJ!ZEH(56HA\/QT(K\\DER`J\$$TDI+`KIPN(6%988= MC8R7X"!=)W@B](,"!SU?4 MOX@2U!=0R`ZEL`N/"%0_-20;XI+A@^JI-[4N\>E3#"._LR&7#;'H3G:_R+)Q M=9SV6`/7EV?AB&MA66?`KW`84=2WH(X%6CU>R9_`,`*RHN*Z.8@Q+BL2=5Q] M=>6(E8$Q&(4#?37*L_#]UK:.%'%.AC&4`!L88V1:Q/2<1C&`YST.!ID:!V/` MFD?W2T0="VX/^@7(04!=05YF$HJN\UXKZ]S:)1_M6,SHJW[I`G$08\"UF-F7 MFN/MWFL)!M,B%="WPIE44M+^+C#,NA@.`R9,1@HR;%0QBR^;VX( MRO#+HV98S"]LCDATF,8:C6,0\F:\C"$78QJ:;<0C8A&HYSHMX69=#"$L\Y(U MCA9<]#7X&`+6CW'I+*B,&BRZ""LNS%!&^AJ9"![3K#E?H\%S!2VS@9#B]=G` M.^Q'ON,K]%M#S'7,IM0(Y$HW=24*\'U'(X)A,+/(^$DLD#5[(F0-2;XI3V-P MQTC@9:"O2W-,AHK4D;'X!4"-21?#N9Q+HGZ8DX&H6-S#6)+BDH"?3+3K)S%# M_\*@T\2>.!7)X9M$'I?4#&`M_WCE'W4M:-IW"F[A$6!F-_&!=V&^>`66Q#.H MU?E(WOD6L[`TBMA4D2J[:)9>6F#FUW$B8^5P"^-74)WEI:I&(!>@Z:C+$19R M3B&Q]2\\/#OA8H`E\>R`U6W6%#2#!UUD*CEGV1>5F;_#>U)Q0FZ,W(>5S^\4 M?A%1[/31,SS--&5<>T0D`PI_2@B#BBWU+YAS,1+!:!E#";?Z`M@^4LKI(Q@] M(>_XG:A>>$V4\868!A)*!>C@,PWOOM+K6LS/C-"HE&K&ORC99?^["@IAQ$,LPP. MT>/>FL,PT-!N7HAAERBU7P0&+^RK-E)>!N47IO\I%$/=K)B/X28TPLU@/@8R MQR+AL]9S?318:>OM,VYP;[//32X]$CBO40C#YF(2;H:73HKM=*9SMP-.1<#FU!GN!=@R+E(ZKZQ ME1>I(+O"Y$@&MQ!380NNG1IREEC?172_-4H)S")+@-'>:L,V+?J(A7,J+!6L M)P5^1>O\BC@Q/9^"U'5:53?@5A!MGT0L1A5:/AJPQ(C$*^$E&AK!UW$B_"F0!?.I^#V0:S'D5Q"( M:]SY%G&_PB&T2==BW*X1DRRPS-:FJRYX>`VX9.WHFW,M`AWEY8,JY%UK>`"&G0OE)6"4JK3-W M$*2E;C46ML"2%!OQ>4V!&N,,P2S<0K,!;&'V:&E*26>"K6A0G?$N!+??R%?RZE*_PI?B4PE.!2#/'K/1\O/: MJ'%T[2I[!J;S')RY%,&@R#I!:ZJT+!+C:=!C%@B%A[_%):"!HI.&L@9?RTNZ\8$3 M/,8X1]BJ=H$)RA!E*Y&F:P_Y8?)>.2\=55GQ9(X*9_#`6'@BT"]RA/7F#EK5 M&8*6[$$-'LUWZL-WXX2)3'K-]S4X.1WY@"WM:ZFC"56H39C3%?=D?F`LL1<1>FOO@V5Q59YXUZ9'H:'16!T>X0$J2[+;99M] MR7>HC1UY*IM\3ZD!1U2OB&^<'QGJV&(PL@, MA?KV78Q*=I+1D2`&;9R/B/ZPQF!@+$;#C1&SS&A$H"*FOT0TLNY9BTY#YQ`X,C\ ML)XOHI3AFK^R&DH?,$AH]++!F-;X6YMJ:7HHR$$(C7 M!9,=,EE"&34'Z:)TUCO3V@5VAZ@F2S2%G@OBP2&B0\4!=H7F6XS,3H=#+)X" M>S.Y/7'!A3!B&MTO5EJ`R`5U'AP"O:<"C,;N"Z)*9&(11]-SLY*J:$S7\EF& MC=I$W4H8,3QK(!7M*=C7I4'$?\-7Y7G&=S_?E5>#-W) MHF5M'-:P(=.-:GR(*)6)^F'@"Z-KC.K`.C%.KQFO@LTS!WN20\$`/G/(-'%1 M//Y`%K`7&'.`5Y_B#T"VR1"\$W@&*[S&R M4"I0F(;'TSF$LP=5FE9S:,H#@^@?JP'C,AM[F'3CW,=`>U"\*IO-9\0)]`>% M#7(J)&M>?%>QHJ_^B*7SX^:%(7E@WV]8U;5!-M_::O0N@O!F/.9NLA9UH[W8 MY307Q+$(&'S*)3"2*3Z(A[\)`@WY2B2G06:XFS+$!%F$* M9#:\I6+`Q@"4G30SXVT,S:&,9(X6.4/[ML3W2*;^'&4JYI]Z^B-.%Q'0*.V# M1,N,'7W&>R$T(SK%2>5N"`YEPBOUR%I;(^/9HW$L$M&FL]%G^P@L-K!?+>?, MW"Z_H:R=V@B+FQ+0$:EQC1)>*H3SRY29L:Z&_WH\]_,PFQC'U@G`!#4BN)$Q M9$%09X0.$7B`3&ABG.(=TB$N-+"RX[FJPS$,6]]@EQL[T&13+Q4F%&$..3ED MC@5_5=;'K2:$.`R89G9G@^V/I.W`_L>6GNPZ9%UF?D5YJ#U&J(Z9OZ=HE(?J M:P[/J$7=#V9D^M@QD<0+,C'YPB.$&<^0\G!(3"?FL'':<`@2PRTZU\-,;T1\ MCX;6FR1]#[;BGN]!E(]O=+-ZPRQV&^SH]RR+C/.!D:E MZ9$Q6J8QJMJ!M51C;&A2?*:8)0O4>\3QQFB,4!1&A;2>RHCD/H9L2D1G4`R0 M4'>*22&2D#0IDR+:5%GB&)UA5@F8P]`,WI]5!K!'SA>-Q;.Q:'^B31E98F@G M3FT*9EF\D\+&Z@V8$375ODT9"%<$G1-0H9O[$=NP[FB"V)I1HBQS+`*B0-^; M9AN!4AJ*5X3>'-GB-.%\[ACDD3,L=D2.!6;X7KIAPX*F@O;2^F?PCF80X(YH MP23C#Z9!(F$<@\0P'!5C?`[+]5VH/$A0N^%6A)8?]#+5LECE80Q!1G^TR!O6 ML%C-8,W*)#`]:58? M9RT+2(%E$W6EF]NT7,_4B*=#>O0N(ME\P58W0,$2(?#CD?`HW9"SK;$=$C&LGA1VWC'E+&%!22'6,,SKZ!`#`-XYG58AQ`1 MT4?/:ADQ7.&`_4VB68PXJ)T0`+F7U0C'(\X?3'M0CVRTYQ$HCUGZL-$F M]NI$U!:.K]"%C^N/\>['+-B^.(!YL(H*;&$,`&C:O`:I@$LT_19S\J*^&:D< M#=7'>!<$@<2D^ACSHCZ7\*["5_]Z_@>5&\89Z+H,9>*(GQ93'88P@H7;SG=,49QH!Q%&",0XJ3>2&3Q M<:?CQEY'2\":S9P.T3G-M'$2G_I?:=X`,G/.P.&8`T&;9902PRK#);<\!L%J M4[,_AT_.HX-]W:MP#*+5Q++S(*0).JWT6DA*VI"1(W51$_4^:D; M0NA-S_R@B1`Z#)%4-%-S0MA#"+9YR&>/"&^,S,O"HPEC,]X8EY<=4!L(HG?9 MT@XVM%!I;("A`S&,QR!,%0;PRR(@0HV5'>AIA*.DJG>(-80]3)6K#.>Q08HB MR1OC,%([E#AOF-4D^WBC+_";C3TZ(:\[B),9J(_8._RBFF.6J![,![*>YH@A M'@/O\.O19<(=>=2HP20T&":NB(-DL*$T>.+4;6)OQACWA=!(K#N:I4 M^41K&0*C8CECAB7M;4W7-<8::;V!3I`9_3+*&J)%L4;UA M#YKNQH,1R:"];L&X+GQ-3!]-(!P]+:0`U[5UE&V<`4? M'F>DHI3>K@)24Y!CUJNQ#D?,.V<1;"YCWV+19U1KS$:\_HXY/ND(=K`.C'!W MQ!D=SMN3_2P;.1VPP6E$)(L+'<4W>EO3\=^O\QOA;T0EQ,_;1W0'\;L87R`1 M2A\W%_\2K_.#JHZ8^ABE.SSHO"=CLMIW4'.,A,Z'5,<,#WCQW+`)T+G=&36) M/3AO"*^*:WHD2P[PYH$;I\:X-S%Y67O/(4U:%V$UAT7Q;=1"]X%:)K$W9M0' MQ!(1#=)W<]S4,N1\8'Y/N$OC6,3\:6/GG([U/#`];_7NU"KTB/9POGN*/7P^ MC08KL]$UZ##9P,:*B6"'J^H`UA!6STU1(51_P-HU_D$U(UU3>`K##$=K$`#] MQ,*O^2'`>3W`'TA6=TZR8PX:TP\['XEHUM4Q#"D0JHH]`'V6W2N)0V[SC@?1 M<"%WM,`=UK3@VOI\X>SS!FX'41J?%NL`]R+TQK`."!`*,J7)0`=GC$A`GW`\ M4WW1N.B*?IJ:[X6*8D8(K6 MSG>LKHB8DC'XAL<15.E:7SSG9=AV(4ZAG@U&%<`C07`^_ZRUJ2 M&T2PU#_<,!7;XO&D)!B+;&3*Z@KJ?H_S,D)=T?(M49GZC5!1^`P(&$,;,M07#B9+QR9I?0$=6\#CH^YE#1S M9/P+%YF,.^,GH3,,??M%/'X''V,@-"$4C@(;P!R*%6N`1'T?N>?Z=S!PC84G MCC-L=&(&+D3`&WR]$CJ#8J(^;Y#2',_]_(?MD+5GU(R.3]K8%MDVX6AE-(=U MK$;@Y56=T!J&NH8U5`^:-0!_RX0E>4`TSQ=IC4'3J-$,[#AU,8M7]8R(2'!: M?>R0]%&.IV5L0N!-L5"F,693JD2MG^TQ10SI"CP-6'JT)>AE-#8^6>1JJB;D7KKG\<4LSO^ M#M"QR@)F%JT254WJ?@[G<(Q_%R3"UQN8$<85X)!/![DH5]`REKB3`8S19KQ/ M+@33K(AC"U>K(9AJCJL,X!N?,9Q?M?&V%%(CZ@E(A#M$2G76D*@-\Z,1:DBGA2<-/(`W#$Z.!\E4]PPF4#4S+R/0)9Q#K37FFK>F1.UHQW;`D MDB>3#I%G,0I?H>O.1SFY?$&F]>@YICIK:#MF(,XP#Q!-Y[> M<%H&J#$U@4+5S(BL:QG4MS4F&.6\3DPTSTNFB5%+1YS#*L-),R&L:Q`@'^$PY$R M*@*-"B2>_Q]X@V1+7IF>9(ZF9U-*FY39AE6`7&EX^F5R(`M79M.J``/=:3EF M%',HH`,\#O65O0KL)GL>_\G1[(WW/`Y$*^/"6:@U36D.9V(W\SG&Q+/C0A5T M&Q8>E/`WCV<(? M/\-+_\#)AE34V#,6$)VD?O6F;RP9+G=+2H=GO-BF\0KCW'>C<44T_18N-FD! M#XZ\2S#R3BEG;$6L7>1=@K;YTI['H<:2420H_YGW3*&M%4D1(`8O?,E4B>>" M5#DAB(^+>)!5[5,E]0>$J3)&+4ZKD2-I:WM'?)F3JLER2_CV+6]-!X8"-LF2 M,M',)43S?S*B[KW2"JD.RD9D[1'38S2N@$?Z+!HNF?('VE+]63\5\ MIXBJ<:>&4NXQD9L00Q;-XY4P/+%DRJP2\70B6P6(;Y8A26O?PI=ZRJ`D112@ M(XAG\Q>J#AF.\D@PBC$V3)V"E,_HR<5>.6)4*[BWU[D3/3%E5SOUGB"RK_`( M5&46B*F+:H#MS)FWPGC!].!76Z#ORWZ@((P1"G0GV$9J/7-4$1US9(3`N3H; MVY)<<"B#/EVX[IS9,OPMG%,F"=,!@_3-O"Z-WOKE MX>SX].2DN'M=W'U5W+TL[GY;7%T>W;VX/'U]_^JGJ_NG8KFX?WIU>/_H\N+\ MIP_WC]:'UZ^[D_?WWJAV`TUF=^_>'=O=K?TWU\7_/#POBJHHQ8.RE'^*JN_* MV9T[=T8\Z];SB_/BY=&Z*&IYVX.F?U!W15V6Y>PWORGNEO.RN"-CQ;+MB]_\ M9G;G_A>S.\47Q9.7Q8N7^\7.DZ?[Q?/'+_[P^-FS/_U*_[+_YO2J.+HX7A7O M#Z^*UZOSU>7A>G5/O#R?OB>GUZ=KK^2;<]N;QX6ZS?K(J3T[-5\7_- MF$IQ[_AP_9^JP?W9G;.+\]<%_G!P\O[@;'5>/"I$+?IE_7!V9W;GZ.+\:ET< MO3F\++Z@#7]<75Z=7JC&GU7WJL\>IEO*QZUTL^6]LK[7=[FV1Q?O?I)K\F:M M;MBV7VYO;TGB]5VQKB?K8_O?4:'>JF>>+"^DG_9U-8_ MKH[^_!?9\=\E<_Z]$F4K9(@NZKY=_C(OY(5&M:RF'3+9J%:;1<2D:NVDI4IM^V;A>RW[;I>]-ONZB% M[+==+A8U=M/VO7IAC?Q%-+K10K1+V>]B49:FWT57M[+?1;_H3+]=V:NPH!.B M+;&;KFE[]6[IKJS-D+MEW-G*>YT"XJV>]R68HE=K/L MZZ7LNJ^ZR@RY5U22%UJQ-/WVBDKR0E^VNE_)T9)*DI'KKEY`-W6I"*5D6G*3 M::2H-*^EA'>ZW[I25)(71-?4YH*BDKS0-162N*X4H>:UO&VIARP)+JDD+S2= M6;JZ5E12[T=NS-+5M:+2O!;R'B2QO$<22EYKN\X,62@JR0M]8Y:N;A25YG4C M*K-T=:.H)"\LNAY)7#>*4/.Z+9N%&7*KJ"0O-)59NKI55)(7NJ59NKI55)K7 MDLX=DKA>*$+):VW5FB$O%)7DA>72+)U<-TFEN6S6F*6K.T4E>6%1+2R).T4H M>:U?"C/DI:+2O%Z*UBR=I(FDDKS056;IZJ6BTKSNRV5K2=PK0LEKDIO-D'M% M)7E!LHOIMU=4FHNR6IJE$Z6BDKS0M@V26)2*4/*:[$X/652*2G-1R8RRI6&N^6N=,9+Y0+BQ1^^;>BY0V&`W1R!`T;%M MQ-I#:);H/6`J?^&>BAX&PZ0$5HNC(U9!81\I2*0>!@:MV$6SQ+O`]6G@78_6 M'>&EFH`]>D/#0+;",X$`PFMZ"J98+],6$]!=9ZWS5ZQO`JB9?6T6<3.!A.XH M!]@'Y0W"PG/.);,N;VOIY-P;*F?>QM1#29+RQ<0S'!P-TLJWE`![_:)P;T$1GA@NGCB*8& M"A?!\IT7F"B`7QG`TAY)O2390Y",!A$`![PS2+Z%\5BQ;VRIO.`'VC6]QQL0 MWI)=#FQ25CO`8^&39I(`!\3M+2QK)00.!=>47(6V`D,R@:=LXAEN9N%,;&1D MH%]@C`J1VTA8WJI`PRY08M!W1`]Z$37)ZE88`\'3*;M8R:%#Z&,7B^6;":M'ET/_@*)AV=S5A,_N< M!@X@*IA&[ULDNQ:9'-HLMND$=MO9M%*_`%PC$/5FB5`D(8&EEQ5TN"DMZ`LL M78I28%(>,5:C8UFU(BLMF.K7*Z)<]$[ZD*C"N:B;A4+HS)B[%MF'5TU6@+[; MK#5X`\(>*0C]PMJASN"YMJ@Y`282UOP+FX1L/=H"S&%T$#$GE&8U=NA<%D+: M?N%XAIG(#E4#K(O`TT,]',WPOC6GS!O"3/7"+GA"Y]54PGHKG%0AUA> ML>J.V)*@L'6!>8H.R6?AF@[%DL$H%2JGYK]?E^XK7V)KS'.;_[]Y7?K">NJM M%64C#<"IJO.:&"R!54?`G2@9Z&RVF`,C[@Q3H];3<"BMDW0B_"[^L6+!?7C\ M2U:)K2G"I0+U/ZPJ^-FU7,K-LYN<:E'E;D%8H=[8;T,K.1>%XBXMT22RV#K)K#[>J!*PTD M'*RT!>>85W)+0<5..=DQF6V8.&29V416;Q$GP+27IK/1SO*EV0I]\0<8M*6L MV0&E6VAI:M35@/M"'TID;&0G&2VEA?9C@SB8WD"2AF'OA28GVWM!Z4+6CKH\ M)#5J#3D-4"QD6`60Y1+I.EJLG%9*9YP\!TW\49L20?1:!]8HTTPA(H(@T\17 M`W0WJ57^*<=]48G?AS!'T79>J-VP71?:;=$P`J_8=4&[X6CQ2!$U:UKULKZ+ M&@;/#RTZU^:;/^_!PZX%=9[3 MHM"682F1+M-7^Z2DNT.QUEE2Q_J@A<7V&]Q9:)A#@YC_(0JN?)^%]J!E&3M) M6L\D!DI."_4W6M.NR\)X1XM<%B9EQ-<74ZR=I`F:V^U,L?%8G>,N%B!BXR]P^SY*\R! MM/4YW2Z4)F\[+-B=O(I;3"L6U;IFHEQ6J`*:]02.T?&4N,WLTZA*G)8F%J%]C-R7K*RMNW"'@N'4BV7!5/,M++% MR-N@--/"E7YU])K9+=:UAA6\65D)%092S0SG9:GLC!I+W+PU1L"!P;WO MK?!\M'1"6)].HC(*\0-W_4$?;5EG!5:M(TL0HZ!+@5:#BDYM36 M*0%0'](JN0=Q:WE"5(;16\M=@4?3.&*>YJ[0NT_NU3J9^"TSA0;I-QC3J5F[ MB31%6AF2`C&4!@4R@QZ+#"L],AE`V8&.NT*S.B]QV8A0"IMLX*[(R,>%FG+& M%$VCQL2=%=F!.X_,/01/ZMH#-@=,T";X568!P+Q@@?8@_EY+KE MJ[`=%97`)S2SHD^4E7(>N03F-"F=Q;P9E`P%?AK5UO-[UA'C#. MV?$TW@HK5DMZ(GK*\)@C\\U-MF`\F4?)\MT5>C]-$H%%XUI_L)1%8GQ,EI"K MPO)3F,-($2%4"&K$'P]T4)]1BH58+2NJ5F8N"7)REY"^'&!X=:S/7:2[!`_F7I^\K6;S$?19-8>,J10,*[V!=Y-\!X5B8TZ@E9P3 M+/P=V#FHL=$,;O+:5&U1C-@Z-:J1!0#?3(M91X_6>-S!MHLZL^/#UF13E MLCZ8=4RM4$)(:]E66H4=M"[EJ=!X;34-7R.?)#$[OC03$53BIL/2X*I9)S/&[VYD51->NDZ+BIE*AHSR86>&D51AA[EOH6B+%W11!:<[9 M79:;6&'4%E:(F;+:*GCG),=1T?(\-8Z70IV$`D<%)AB$CKH6CV4<%>$;N,Q) MP369@)^B[K@I^#'G[C.MXQ5G5MCTS?-"R6\6=5/HP?7_I`R1J9.AA[],7H51 MY,/^"19"-+)<,P,?#S'OA*\HHC['E?\#;A;3QL>9GL:H4@Z,6[H@JZ)B98]B MW,<$J2PW10M9;V;I$)SI&6F3LKLGCC\NGE!1B;['5"__O'#JU07D.HW-/GWW MA&M+$KLS"BF+OO@BW1?KE5`]!G4H#JPE6@Z**GLEH?&?4(XAYJ,PAJU%``[7 MEZ1WL'N0:1>%15,AVNJ1B^_=TI5=B/FO.HS@2D)6ISDN"I\I1%=,<97 MH7EOU%_1XKPX)&]P^[^40+` M]JD[6IJ?5<"D@_&Y4+2WK,N":SB6[]3W36KSV=;"4*0SMT6Q0F^[:S.D/MMM M$7--HJK"R2/7<9&QNA!URO_AC("WRP^ZDD8?,FGJ6!$QSW.A15L*O.*0CBWY M<`[)*VCY+3++;8$2*245OQ[W6YB4BZCC0JLU.7Z+C'GU_N%^B[SK(682(0T: MG_M!SP7)I+#G`K/:7==%4\\YUW7A")06*F;D:\=8N9:LE@VH%1KEQ?+4UXI7 M2\=F-V8..IH92JLPG@MVRDT0G?.M$'&[K@L60V7;$.=W1AC1`R,QL>Z(IK2& M5,[<%NC?]]P6+49H!VQ-0;]%*Q*#V=!O8?3X$#D&&+_1"VW/5=#29^D5Z$EH M8:)[9GQER`PP?!AT7!COI#(<3*.&$>VH!#5L9JT0QR]OM[CGPC`8$V.TX_F8 MC9Q:#CXFSLH[+O3-;U//;6._195NK>E/2.08OT7+3Z_@UCFQZY0P@!$N.\4B MZ+@P"7#F(+J."U*#T:E.N]D@JLLLZK5J!_T]7!>E^*ZCQIO4XICKPO9;&,YG MR:$&Z[WPN5Y3_->5-BK"':(P58V\8@?U+3W MPEJ=XA#D793SBJ98J+'KF#A$K@MT2`9=%ZGM.,AQ752P4'XYUX4M%E!P8GG- M4FX+0A-5G"WON%`GTTP!0Q=6?D6%2N\&7!;,@Y09]/D9%KZCEFB*LRNM,J?A MZR`D(2W='P&\_7%==XC!2-.(FD6;3(7=MP9>2F>1;.,=>V7]&5$)=\C>U?YS?( M+:Y?+M5"JDH7=8K8LSSZ%IUG3BI,*S`I(#&?A>9>QEZP!!?>W](B ME\C+2)$6OQCBH!530!1A\3@DLO?R#HL6$JKDZ: M.#DMF$BW9#9OS]4HE\2UUZ)!OMA*Z0K[BI7\QRL3W&_3M`2V MF4*33,DJRPE@EARV\12;"KOKOYG3PB)(4NEMQ9/:ME`,,0KT>#[YF0Y4"=%J M:CBG/ES&*Y'1^7;]%49_,*S3]5AHQ4]Y#.C.$G=75.S$>TUH,7\%X^.XEOJA M<>(%]COBKW#5BJQF2@:HY2C'#^HH32W8B<#**(K4.-==P?;1:(05$J?NREX8W<%;ZO0M%NP%V1V=@,Z9J.K5[6 M7U%O\3WBO@K-\+B[PN5W]4/S42-X'\0<:L]AD9]JD67&)Q5^C!SQDEIB.Z3C MI:B=&+K+9WN6S\)U6#@*IT9%%0JLR3^L+]MIP3BB'6W;--^BBH4L*G0G.."U M0)V.46JF60$:[R8XBS:[[;;P2"QCG`%=:PU,NK##KFJ'&T2[(<>%8F,-IM^0 M+,$I-)G*$_!;&$.&$.%>9=2XH!@]JC^%%T+0NUG;M02SFV]!^EUMUSAB^%X9 MK2IS5,#0\P:HSKKRG0*B'DNLETNZ,'Z=)SHN2($OGW+AFI8'1L#\_5_`T&CV MA9$.83''><5+JLTQ9QBWX6C(Z+(2&LN9LS@'%5"*DLX5,PNXZP+Y7)[K0J.4 M@DAAWT6+PI\D`U$,U@PXQK$U_@(9%_66BTXC]PQ1H5KB."Z(4@B?&3EIW$(> MSIT0Q&WY7(N6?RU$ZPQN`-\P&R8.4<^*^BVX:D':KYE`41&+BE.@4+LN&1OF M8IVIG_Q22"60)ARX%Y+CLE!DZWM[;=<;#\@X:1;F-.?*]VJ1TT++^;C+V/-: M:+QDCG.R0BG_>I_-06V6/>.^VNVX+.K1JR$V03[=8R%%%S0^)!>,;:)&/!9& M%N!W#3*$=;2/U`2'^9!Q5@^E6:":7:&,449A6;RN>(_1RL8IQ.94U4R_T M7*#;H4*I97Z];:8;'*"T+@SZ&:7[*;X+AG1_5$G4X&WA6/;&>FW#! MJ9U+@+KGNB"F&:UD@?H[<]7[K@OTY\3$>J'SPC`(SYYA,Z##SIP0GN^"&VR< M>QNUVT^W0,6/_>\E.EA*14"_"_HN+#]MKEW'SC6Q02W@L2^7A,M)<`M[$XW2+#@(?E M0=2>C$('!B;U9;ZH=61;D?^B3JD&GG0S*+#\%]Q]7O7]%\QA;.GP!X;U!OT7 M#<:',G8U3H&TD#<&Q;N?:Y&QO'_5.&3'VUW-1V>#6:^B8:_&1P^\:Y,RT MN3ZJ>RGY+;3JC"+$O:G84&Z+9IW+-]]U@6I58<(%[0IBQTZXT+UG34X9CN^B MD3E8-TIC@ZJ?%N1<.`BN.SD7%;RPK14#VW5!K@X%R1+/V,,=F$Z.YY@$/S<+ MX"<%7:.1VAO`O. M85JLB*!%\4V4/1'?!0\NT'[6P^4L9F3.N557@-2=NXU__; M'DA+P\%_4.(WHJ<^3\5AJG>I?`M.B]D!IAPRMH\VOE8,,G-,?`DD<;B;'EB$ MC8AA/HMZ2]O<2!2.R\+8AHJ@&BSGWTAA#`:FR)[KQGOOL4\Z.@&?A;&7:?>] M3386,DO61.6FJ*!%/>RY(!,RZKDP^#`K=_T6)-;T:>5N"^XM9'N$,ZXRQX5) MV0@E7'AA/]NJ)@14XK=$#G`UA*)H5*W1.C62XG@ M!%.!(MX+U)LW+FW!CRYW7!/Y;YYR0:[BS,E[#J56.G*!A^E M[XD8/NIZ+IC1W,J])Z(=[PV,`:*]9OLN4A;[H-F%Q,<[,2@AED4C#=ZU8 M9$RAYSI]6L/.+!E@[8NCZ+`SZV=?5+!V9.S?.>#%0&\EQDT]+=[R7U0H ME\LG]*C_PH@HL@0<_P5S5G#6Y[L[&;-PREI9DI2+Q0(7!DE8?NJSS$S!>4&D M'G1?V$X"FT`;G$'FNB]T/$NOO&X2ZO2!Y[-D#@Q'?)O80#0)(YR!X7@P4)3D M6/$!#X;#@0W3]5RW1MKG!RDH`9;X&&VKILI&C9WS/"5'BS7+Z6.I.6Y$FLD< M@X$*9:99>&!%^.P'K@U8F;#'!F:8/*\&)9D M8V[(8!9&CAM#N_"K]NTO[LO0(Z%*Y7HR-*T3MS+A#LN9TEQ/PR^V+X, MYLAP\M#10#;7S8DV&GQM0Q?D\>JP-"L*$=UY7A*M495LC`+SU_ M1E"X$)K8%+DM0"P@EH^AVS2=J>F];AVP^7M.#>*^L;RC!DMYRO5K<)T01V(> M#7(X!T2]+^XCV1CD/@RP`$_QJ?N72,J%;N3694%4(!M@%X#S_;G4H&'L4J[< M>5ERF.$HG1H$# MC@UB5*X%[3@W,LSY##DV.+?3'*)*'L!`7D;0M5&)Y?)&\C+"S@W#[)A[(SM@ MB^-9&6'/AK:0.#_-3\MP_1H99N52-\2%>/V'*E4_)L8?\FDP,4!\&[0[#2-"U4>&/GY=Q9`;/ MNV$.!69.9OE&&/W2=:!\YX9<'OPYU*:!7EC=V6E;LSLA,QAWCA'J;RODSE!?3 M.+D4&@-UD#'4@#19(*:SG MORU"G$1_0,$D0IOQ9+2,]*8#JDT*5.!XH7VN6AAQP)!J!?^Y-#'>"VH:3,8P MW,WB=OJ8*E:,S#GH0D&6#G$A^ZRL9UMJ1U@,J;X\I`EX/MS=C4E6&L MWHVAU4SW:DV=2N34\Q\804,&C5FC4ULN#,PHB[HP-.;4<20G!AVB9@D/AD$. MZHX!GP6SIQBKCO0FLQ-F;U M/E"88J-@A>>](.OGY,+BK`>_:VP<_0RZ8Y\`@MNOK.RU,0M,>NKPZ5\:\ M=_=I$P>&C@'9U,O/?F'H)O/*%YP`+\&T<0=1SJCNEH-)J./H6U!,Q:7T65&?M_$Z+N6MQ)#M'82 M3R-XL<1X/#A:Z^&L#&T;$W8Y?:-!_;1+)6:37%>&Y@J-&DN*R/-CU*TGY:MV M50QV7R_LQC".VZ;9)/)FX-"9GE\Y3X82`O',#$P-HX/6(.)G3(?'Z;(#/.TA M$YY$ZH%KEQIMM5121IX;@[&9W&LE.5X,4EASY+IF!(85:^E''!IS:*-U/#./ M$T?=&"&FAP3!-4YC0%@.'5Q(T)O#3#C'KB'TV$4\'6^.3,D071TTK'*.#'.\G9P,Y&-!3X9)R&`)_PZ&&YG1:;BM1)Z,#&_9&4<&8^9U M3)@*X"/@R&"1",/,E0N*BP/+C=$T;HP#;6_9.C0I7KRT4?1:2<2-4<&BX,01 MR8M1Q]H?Y-T,.C&,/[,5#8A-B> M)M#B6*3#Q#*J6XVIL8X3PS[QU:@7PU8Y"[P8,46/V(,B.1\+:"X<&.;/W1@Z MD&!G7/AN#-&X=HA>#/)/\[_*W1@F[:C04BSP M8QC&::THZL:@;;>\&(X;).K%T/^$W!@9BX>BVFQ?0`NYZ"VS70_M^63*WC`A M!E\C!8NCEH2H0_0HO"*.#!.R0/;H)"*42L.HF(PW.OJM#;(PY!1:1FRSC2WI MPT"Z:T7S43;T8Z!DBMPS0>O$T7;@S-3`C6&N51BWI1'3Y0M[*CY7P4)W&BG< M857LQS!7*1F-;>#)X,8-#_#J72OAQW#RT%"/5KN3D=AIQ9\BT91HL4$F41I% M?@RN6OT=BWO2A^HL.=:-MCF:S!=?]YSTM*K(%1-7R',W!AUVJ[:G7R"#6VV! M.(TYX1B(*5,<@]B9X\@(,;VF&W,I=&1D=D:*(P"\VR7QHXYS>;(?PZB<6:0^ MDN7'()[N.3(P7)#MUFHPBYJ1;+EN#":NB/T2APHX,EI(::V\BR45JCH=<6-0 M5D*@.@9;CK8<+.:ZN2/#Y/$B(VQAL0A4=/-=&7@8+<%*\H213THLB(OS.N:# ML\05\F,89THK+DY('3'Q_/(73$SBE\-Y+1HW^V)VPO9C^-D8AE:^R8UA:_/% MU3$835=M?3XK=[/$S<5PLN;B/HR<5`RS3:T#OJ*06/<.>MVY8(#1AJ!RX^N< MS*!S7!@-K`#ON3`:<1<&!F>9XE-0UY-O*O+DD`.C0KE8FBC-00WX+%WOA4G, M9:YNF\QS\C!<[X7A47I^];CWHG[H>"^R@!AQ9;IA>`4I&*Y$T]I+L?,BY!-' M)Z9Q)W`'AAZ\7J*LI]RHIWLP*M_ZEBJ+@8>C-+B"4AX,SO&DR8DW24HK\:CU M;EK5L^GP$()"ZT9EBS*?1B:@Z>8M9Z%\""C(RU\2E7[ MWFGT=0+AB-+=]=U M#@H=%BU,[69./PJ04*;I4_(NM'YN>UB-GD.HQS,<\%<@H[0\-Q6J@LF@"<5=!E49Q[@;!AH5XB]:*$TR(W]\+7 M-+E&8](OHDJ\V6R?ZQF15*S%UP\M+9G<'K]17<_,LRI=/^^3O!:6[SILX07] M%FQMKM*K7..8@.$Z+NHF^S)8UI.(%"^2$`LU;@L>6#-N"W2M66RJ1/H%N2VX ML4R^H%!1#&;@$:XP,,.]%I7GA34]M:.B3@GB/FU5(NGZG#O4"RZ1E/=8%&1> M5'AE"M=EP8PA-_."`<6S"3?S61@__#?Y+!S&4,IGX:DWQ!%>1,Q/MW`R#=34&ER&U`MNC7QC ML@5'K\78/$97X*]PV7=I?T4XV<*B+]=981`03[>HF\S<)V=;&.1\6[(%P\W& MOHJ6M;(*7L\P&Y.OPS%*VA=:%6V8!09\%HJ>$SX(L,M]I8:?2QKP6+;OH MA>6T8&?W?X#/P@_*H-+.O!88%H]X+5P&K"7+`4=%/>:UH(Q$HZ([3ZC__;P6 MAGV:M3/R+5/,$P277\A3$TR!P\+^#BGL@,V)U#.&LE:Y#`M;5=S,9X$JCJTM M(-&4<%H8JC*LT%CY7B%/5YY:I]UF?EJF5_"^$]>:;;D>=UBP\2OL^J'KL-`G MV'!#SV.A5U^QN[L1 MXK^::CR7188>P,U<%I'C;IMNWY)H89)E`LQ?L3DNHV*/J`(DIEHP\C49!G&? MA?ZF0NE/^.XHRO8\GX7MWZSSA`V.%HFJ%RS:%G351AP8 MJ$*3WLH/.Q/WI?T7;"[?Y+_07(]EDNA,CS/Z#$J5/@\WWN1I\]CW,'V7M3+)UU0;BRC&5&0=&D.'G>S`\ M(UM0I#1##JV>>:P`T4)1$U+I#4H=T>AN-(OK5I6+`J]M8+%_]'VPZ7':S3)K M#Y@E;W(.LN`4V%10@R>UVUZB%I.UP`P4XEJHG;7H9A`I1D68D763-,GMQ*X?R![82CXN5MAJ46-2VZ MY`(E!P>:,=L\+Q9[\U%@?#+.VFC]/(A]F$'U3CX;HU@LLYX7G(BKSQYC=&:O"0LPJ-`??OS$:0HOZ1- M;'1,7JR\.S-136R)F1''U0RS# M4BR:#N@/YMF19RK%@+)+ARYRE-85:J\)_9=S.3.Q$%D:J&&_ZFP>P#N;#"8KO-W]$&;8ZCF_I-](Z\[!#2=@*VH0L[P"I[#A7DD\*!!_YDPV M,$?6I4V-"!W+"G$!GFUPZ%"\RL<;YB9`KN!GD.S'AKEA[W7#E>T;A@PA3.K#4,[7AFD*U1U2=Z%;$)X-4R6[VH@S@ M.Y`6&MX4FK1<;E4\W&IY,&9H%H0T([9#FF#6M'H.HK3&6U;L6Z-E$,+20^H8 MEB>6188$][]30,[=F,Q:(/$KVJ#,R:((KH>K5I@#I.FSYE-?0&AY9A'/Q6]% MU,L(M68\@D2Z%7+M)HT7)5:-%Z:^5G12GJ]&%N&%7"T-^UE&K)&2>>47.%)J M+F+JE$-AJY!%.`EHOT':-9%2YGD%MPNR0Z`DC$"H]7`*4F\F. M@&A'XJSANSQU0!^::`3-.E0-5!6M1*]&[GT'6Q^@ M5A5\]CBSTJ4"486<"(N)(T:2)Y`^N)9E].<4$PPQW];03--SC,G_U9_L@#/6 MC&(6D?2!2.X`I16Q$=UH6<';GVCG.+D#%*5%>J-0M:L#D*AU")?>9%3K:['$ M:ML)G7K9*801G3R`7('E#P3)C)5="Z4/,/(/9Q!@YI[19O2:[?P!6SB&4@B( M5EJXTU[R@-8[POD#E*!9=:?HI`]@6DGF*:-*+K::#MG7P^D#3+=CH@XE,,I= M)WU`894?>^,*/"!*,G+N@&\']1XZ]YA6PA/=*8F`8`H2"'@GH51)OH?QDI,4 MJ(VBP@JN^ARP@6E$EJK%9%[K@.B&(#S"/-@]T&RF1M7=/=PZX=I(2EH%[U(% MR"O#\&ZQ9''-@8!D024KGI)6<:_(.Z*E9*RV0@G>]9;9A5:>7''6GS8MEM@;\E,J]I5/+RO-9GQ-$BL&F4;==;+2%+GGBA4K2P59N#UQ])_$ MQ$H=2^O266P=F*06TN.%.9D5/Q2)CY@=@CX=2_MO-0/BHUK=M5FP15UD[#@*7C,J0,*F2,7*T[(9 M:UB$!.1'!6\Z6.J?8XWH;%"V45R$,)N)'_<24D3I1,8H,1C>0(P$W*>(X0WE MB"M$?+:78XTT,*3D'?@*NXZM,5Q&CKA"I%)<_E[+$<.^?/<62:?-[\8@LKE_ M9Y/+,0XO;9&'/]\0R;5"C(,_ZN/BC+7!*GIDCG^KXE['UJ?9MOF M_J3;,1H#MC;B9O^0/[C`"%';+;-$#N4?2BYQK\;4J2Q;R+5%L\&7$(V32L^# M9;WQ(\L,D(;18?V`1]HTDJ3`!B'B,TA>7-#*RWVK)`T"PQGD$,I1H;1/Y3 M([P662!HR>5)D:9[BAJ(+.6!,(IP:1EB416YLM#G5"P_L@/V/(8SNPJ[*58D M/ASSPT1#?/=M5'K8N?JVJD22)28_BDP0HQO%Y0&AW%W"XH.)A(LZ:'9 M6,E33A*AI,H8M$)XH$HM/&#G:H$5MT1<[U<&5V(:^$!U083$R(^*ETR785:L MS3QS(R0\L%/%*\&9(Q&*[!"V(C*'`KI)OAW"W%:<^32U_1`0'R$[!+&R@?BP MTT4P;+"Q]/")*F3=EO%BI20^4O&OTCD]6\2XYXN#(U5Z8,/@JHZ/[1FD:R9J MFR+(P"D47LX8<2T1ELW"U4ZT>^DH4'`$;0P>&S'E"ECL`?,;N$5RH/&#LE9)#46P%YPBTIMW*]1?=%`D4O MR//