From owner-freebsd-bugs Sun Dec 8 0:10: 6 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3538437B401 for ; Sun, 8 Dec 2002 00:10:04 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0F2043E4A for ; Sun, 8 Dec 2002 00:10:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB88A3x3098759 for ; Sun, 8 Dec 2002 00:10:03 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB88A3vF098758; Sun, 8 Dec 2002 00:10:03 -0800 (PST) Date: Sun, 8 Dec 2002 00:10:03 -0800 (PST) Message-Id: <200212080810.gB88A3vF098758@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Bruce Evans Subject: Re: kern/46036: inaccurate timeouts in select(),nanosleep() + fix 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/46036; it has been noted by GNATS. From: Bruce Evans To: Enache Adrian Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: kern/46036: inaccurate timeouts in select(),nanosleep() + fix Date: Sun, 8 Dec 2002 19:06:45 +1100 (EST) On Sun, 8 Dec 2002, Enache Adrian wrote: > On Sat, Dec 07, 2002 at 11:57:40PM +1100, Bruce Evans wrote: > > tvtohz() actually adds 1 to ensure that the sleep time is at least the > > specified time. This gives a minimum sleep time of 0.0 ticks longer > > than the specified sleep time (as required by standards) and a maximum > > sleep time of about 1.0 tick longer than the specified sleep time, > > with an average sleep time of about 0.5 ticks longer. Not adding 1 > > would give a {min,max,avg} sleep time of about {-1.0,0.0,-0.5} ticks > > longer than specified; i.e., it would be shorter than specified (broken) > > in most cases. > ... > > and we are mostly in sync with clock interrupts. In general the error > > from not adding 1 is up to 1 tick (see above). > The average sleep time seems to be with ~ 0.995 longer on an idle I think you mean 0.009950. > machine - much longer on a loaded one where ticks are lost. Hopefully ticks won't be really lost (in the kernel), although they can be and are lost due to bugs. Ticks man be lost as far as applications can see of course. > For the error to be down to -1 tick with an average of -0.5 ticks > (when not adding 1) the tick value must be very small - this doesn't > seem to happen with the standard 100hz. Under high load the error > tends to be positive. It does (would) happen for random timeouts. If you look at the clock in a loop then you normally see timeouts of ((1 tick) - epsilon) (when not adding 1) or ((2 ticks) - epsilon) (when adding 1) because the first one syncs with the clock. E.g., nanotime({1 nsec}) normally returns at a time epsilon after a clock tick occurs, so a subsequent nanotime({1 nsec}) will wait a full clock tick or two (less epsilon) (if nanotome() is implemented using clock ticks even for short intervals). > When the user has asked for something not multiple of tick the > value will be correctly rounded up by tvtohz() and the error will > be positive too. No. E.g., if the interval is 9999 usec then it will be rounded up to 1 tick (10000 usec). The next clock tick may occur after 1 usec, so if 1 tick is not added then the timeout will return after 1 usec (plus epsilon) instead of after the requested 9999 usec. > > I thought that Linux gets timeouts right -- at least sleep() used to > > work except in very early versions of Linux-0.x. Perhaps it uses > ... > Only nanosleep() works like in FreeBSD ( one tick longer by just > adding one - this is why many recommend to use select() instead > of usleep() ...) This is a bug in Linux :-). > Does it exist a standard specification for this case ? > A quick browsing through susv3 shows that only nanosleep() > is required to do so: > functions/select.html: > "If the timeout parameter is not a null pointer, > it specifies a maximum interval to wait for the > selection to complete." > functions/nanosleep.html > "But, except for the case of being interrupted by > a signal, the suspension time shall not be less than > the time specified by rqtp, as measured by the > system clock CLOCK_REALTIME" select() and its timeouts are now specified in POSIX, not quite as clearly as this. From draft7 of POSIX.1-200x: %%% 31187 limitations on the granularity of timeout intervals. If the requested timeout interval requires a 31188 finer granularity than the implementation supports, the actual timeout interval shall be rounded 31189 up to the next supported value. %%% Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 5:40:10 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7142B37B401 for ; Sun, 8 Dec 2002 05:40:06 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A503543EB2 for ; Sun, 8 Dec 2002 05:40:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8De5x3094869 for ; Sun, 8 Dec 2002 05:40:05 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8De5NJ094868; Sun, 8 Dec 2002 05:40:05 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D874337B401 for ; Sun, 8 Dec 2002 05:37:40 -0800 (PST) Received: from arthur.nitro.dk (port324.ds1-khk.adsl.cybercity.dk [212.242.113.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id A4CC843EB2 for ; Sun, 8 Dec 2002 05:37:39 -0800 (PST) (envelope-from simon@arthur.nitro.dk) Received: by arthur.nitro.dk (Postfix, from userid 1000) id D9B3C10BF90; Sun, 8 Dec 2002 14:37:38 +0100 (CET) Message-Id: <20021208133738.D9B3C10BF90@arthur.nitro.dk> Date: Sun, 8 Dec 2002 14:37:38 +0100 (CET) From: "Simon L.Nielsen" Reply-To: "Simon L.Nielsen" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/46096: [patch] Make atacontrol(8) give better errors 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: 46096 >Category: bin >Synopsis: [patch] Make atacontrol(8) give better errors >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 Dec 08 05:40:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Simon L. Nielsen >Release: FreeBSD 4.7-STABLE i386 >Organization: >Environment: System: FreeBSD arthur.nitro.dk 4.7-STABLE FreeBSD 4.7-STABLE #0: Sun Dec 8 01:52:44 CET 2002 root@arthur.nitro.dk:/usr/obj/usr/src/sys/ARTHUR i386 >Description: This is a patch to make atacontrol(8) tell the user more about what the problem was when running atacontrol with incorrect parameters. The patch also makes atacontrol use sysexists.h instead of hard-coded exist levels. Note: The patch is for current, I'm just running stable on my workstation. >How-To-Repeat: N/A >Fix: --- atacontrol_useage.patch3 begins here --- Index: atacontrol.c =================================================================== RCS file: /home/mirror/freebsd/ncvs/src/sbin/atacontrol/atacontrol.c,v retrieving revision 1.19 diff -u -d -r1.19 atacontrol.c --- atacontrol.c 16 Sep 2002 08:34:08 -0000 1.19 +++ atacontrol.c 8 Dec 2002 13:14:35 -0000 @@ -37,6 +37,7 @@ #include #include #include +#include char * mode2str(int mode) @@ -83,8 +84,17 @@ void usage() { - fprintf(stderr, "usage: atacontrol channel [args]\n"); - exit(1); + fprintf(stderr, "usage: atacontrol attach \n"); + fprintf(stderr, " atacontrol detach \n"); + fprintf(stderr, " atacontrol reinit \n"); + fprintf(stderr, " atacontrol create [interleave] disk0 ... diskN\n"); + fprintf(stderr, " atacontrol delete \n"); + fprintf(stderr, " atacontrol status [mastermode slavemode]\n"); + fprintf(stderr, " atacontrol info \n"); + fprintf(stderr, " atacontrol cap \n"); + fprintf(stderr, " atacontrol enclosure \n"); + fprintf(stderr, " atacontrol list\n"); + exit(EX_USAGE); } int @@ -266,13 +276,17 @@ !strcmp(argv[1], "status") || !strcmp(argv[1], "rebuild")) { if (!(sscanf(argv[2], "%d", &chan) == 1 || - sscanf(argv[2], "ar%d", &chan) == 1)) - usage(); + sscanf(argv[2], "ar%d", &chan) == 1)) { + fprintf(stderr, "atacontrol: Invalid RAID device\n"); + exit(EX_USAGE); + } } else { if (!(sscanf(argv[2], "%d", &chan) == 1 || - sscanf(argv[2], "ata%d", &chan) == 1)) - usage(); + sscanf(argv[2], "ata%d", &chan) == 1)) { + fprintf(stderr, "atacontrol: Invalid ATA channel\n"); + exit(EX_USAGE); + } } iocmd.channel = chan; } @@ -328,13 +342,20 @@ iocmd.u.raid_setup.type = 3; if (!strcmp(argv[2], "SPAN") || !strcmp(argv[2], "JBOD")) iocmd.u.raid_setup.type = 4; - if (!iocmd.u.raid_setup.type) - usage(); + if (!iocmd.u.raid_setup.type) { + fprintf(stderr, "atacontrol: Invalid RAID type\n"); + fprintf(stderr, "atacontrol: Valid RAID types : \n"); + fprintf(stderr, " RAID0 | stripe | RAID1 | mirror " + "| RAID0+1 | SPAN | JBOD\n"); + exit(EX_USAGE); + } if (iocmd.u.raid_setup.type & 1) { if (!sscanf(argv[3], "%d", - &iocmd.u.raid_setup.interleave) == 1) - usage(); + &iocmd.u.raid_setup.interleave) == 1) { + fprintf(stderr, "atacontrol: Invalid interleave\n"); + exit(EX_USAGE); + } offset = 4; } else @@ -342,10 +363,20 @@ for (disk = 0; disk < 16 && (offset + disk) < argc; disk++) { if (!(sscanf(argv[offset + disk], "%d", &dev) == 1 || - sscanf(argv[offset + disk], "ad%d", &dev) == 1)) - usage(); + sscanf(argv[offset + disk], "ad%d", &dev) == 1)) { + fprintf(stderr, "atacontrol: Invalid device %s\n", + argv[offset + disk]); + exit(EX_USAGE); + } iocmd.u.raid_setup.disks[disk] = dev; } + + if(disk < 2) { + fprintf(stderr, "atacontrol: At least 2 disks must be " + "specified to create RAID\n"); + exit(EX_USAGE); + } + iocmd.u.raid_setup.total_disks = disk; if (ioctl(fd, IOCATA, &iocmd) < 0) err(1, "ioctl(ATARAIDCREATE)"); @@ -427,5 +458,5 @@ } else usage(); - exit(0); + exit(EX_OK); } --- atacontrol_useage.patch3 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 Sun Dec 8 6:40: 5 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D53F37B401 for ; Sun, 8 Dec 2002 06:40:04 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C687543EC2 for ; Sun, 8 Dec 2002 06:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8Ee3x3021277 for ; Sun, 8 Dec 2002 06:40:03 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8Ee3j3021276; Sun, 8 Dec 2002 06:40:03 -0800 (PST) Date: Sun, 8 Dec 2002 06:40:03 -0800 (PST) Message-Id: <200212081440.gB8Ee3j3021276@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Simon L. Nielsen" Subject: Re: i386/39234: SMP 4.6-RC freezes during boot (Fujitsu-Siemens C200) Reply-To: "Simon L. Nielsen" 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/39234; it has been noted by GNATS. From: "Simon L. Nielsen" To: freebsd-gnats-submit@FreeBSD.org, hlh@ciger.be Cc: Subject: Re: i386/39234: SMP 4.6-RC freezes during boot (Fujitsu-Siemens C200) Date: Sun, 8 Dec 2002 15:34:37 +0100 Hello Just for the "record" this fix also makes the Fujitsu Siemens Primergy P200 work with FreeBSD and SMP - tested with FreeBSD 4.7 and the above patch. -- Simon L. Nielsen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 9: 2:44 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B2B7F37B401; Sun, 8 Dec 2002 09:02:43 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BD2443E4A; Sun, 8 Dec 2002 09:02:43 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8H2hx3017915; Sun, 8 Dec 2002 09:02:43 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8H2gTB017906; Sun, 8 Dec 2002 09:02:42 -0800 (PST) Date: Sun, 8 Dec 2002 09:02:42 -0800 (PST) From: Ian Dowse Message-Id: <200212081702.gB8H2gTB017906@freefall.freebsd.org> To: cappy@thestringcemetery.com, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/35104: Files end up being no bigger than 8192 bytes when putting files on newly added Western Digital IDE drive. 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: Files end up being no bigger than 8192 bytes when putting files on newly added Western Digital IDE drive. State-Changed-From-To: open->feedback State-Changed-By: iedowse State-Changed-When: Sun Dec 8 09:01:55 PST 2002 State-Changed-Why: Does this still occur with more recent releases? http://www.freebsd.org/cgi/query-pr.cgi?pr=35104 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 9: 4:49 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E4C6537B401; Sun, 8 Dec 2002 09:04:48 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 914F643E4A; Sun, 8 Dec 2002 09:04:48 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8H4mx3018003; Sun, 8 Dec 2002 09:04:48 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8H4mp8017999; Sun, 8 Dec 2002 09:04:48 -0800 (PST) Date: Sun, 8 Dec 2002 09:04:48 -0800 (PST) From: Ian Dowse Message-Id: <200212081704.gB8H4mp8017999@freefall.freebsd.org> To: IXJHAGUXI@earthlink.net, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/35124: No mouse with FreeBSD 4.5 with ECS K7S5a 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: No mouse with FreeBSD 4.5 with ECS K7S5a State-Changed-From-To: open->feedback State-Changed-By: iedowse State-Changed-When: Sun Dec 8 09:03:24 PST 2002 State-Changed-Why: Does this still occur on more recent releases? If so, please provide the full dmesg output of a verbose boot (`boot -v' from the loader). http://www.freebsd.org/cgi/query-pr.cgi?pr=35124 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 9: 7:49 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4752B37B401; Sun, 8 Dec 2002 09:07:48 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E873943EB2; Sun, 8 Dec 2002 09:07:47 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8H7lx3022900; Sun, 8 Dec 2002 09:07:47 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8H7ad4022896; Sun, 8 Dec 2002 09:07:36 -0800 (PST) Date: Sun, 8 Dec 2002 09:07:36 -0800 (PST) From: Ian Dowse Message-Id: <200212081707.gB8H7ad4022896@freefall.freebsd.org> To: marco@yahwood.com, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/35145: cannot open /etc/termcap and no terminal database found 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: cannot open /etc/termcap and no terminal database found State-Changed-From-To: open->closed State-Changed-By: iedowse State-Changed-When: Sun Dec 8 09:05:56 PST 2002 State-Changed-Why: Mostly content-free PR without even an indication of which FreeBSD release this occurred on. http://www.freebsd.org/cgi/query-pr.cgi?pr=35145 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 9: 8:50 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 05D9D37B401; Sun, 8 Dec 2002 09:08:50 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6A6443EA9; Sun, 8 Dec 2002 09:08:49 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8H8nx3022952; Sun, 8 Dec 2002 09:08:49 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8H8mvK022948; Sun, 8 Dec 2002 09:08:48 -0800 (PST) Date: Sun, 8 Dec 2002 09:08:48 -0800 (PST) From: Ian Dowse Message-Id: <200212081708.gB8H8mvK022948@freefall.freebsd.org> To: frank@freestyling.de, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/35148: ppp/nat-problems after cvs update 4.3 -> 4.5 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: ppp/nat-problems after cvs update 4.3 -> 4.5 State-Changed-From-To: open->feedback State-Changed-By: iedowse State-Changed-When: Sun Dec 8 09:08:23 PST 2002 State-Changed-Why: Does this problem still occur? http://www.freebsd.org/cgi/query-pr.cgi?pr=35148 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 9:15:11 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0CA7A37B401; Sun, 8 Dec 2002 09:15:11 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC5BE43E4A; Sun, 8 Dec 2002 09:15:10 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8HFAx3024954; Sun, 8 Dec 2002 09:15:10 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8HFAoN024950; Sun, 8 Dec 2002 09:15:10 -0800 (PST) Date: Sun, 8 Dec 2002 09:15:10 -0800 (PST) From: Ian Dowse Message-Id: <200212081715.gB8HFAoN024950@freefall.freebsd.org> To: anderson@centtech.com, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/35151: High NFSD load in FreeBSD 4.5R 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: High NFSD load in FreeBSD 4.5R State-Changed-From-To: open->closed State-Changed-By: iedowse State-Changed-When: Sun Dec 8 09:11:35 PST 2002 State-Changed-Why: Submitter says that this can be closed. I'm not sure what was causing nfsd to spin, but it's possible that this has been fixed in -CURRENT, as there were some bugs fixed there involving the -h option and TCP sockets. http://www.freebsd.org/cgi/query-pr.cgi?pr=35151 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 9:19:15 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3FF5337B404; Sun, 8 Dec 2002 09:19:14 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE48C43EA9; Sun, 8 Dec 2002 09:19:13 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8HJDx3025257; Sun, 8 Dec 2002 09:19:13 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8HJ7kf025253; Sun, 8 Dec 2002 09:19:07 -0800 (PST) Date: Sun, 8 Dec 2002 09:19:07 -0800 (PST) From: Ian Dowse Message-Id: <200212081719.gB8HJ7kf025253@freefall.freebsd.org> To: csfbsd@raggedclown.net, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/35171: Moused needs to be enabled to run a USB mouse 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: Moused needs to be enabled to run a USB mouse State-Changed-From-To: open->feedback State-Changed-By: iedowse State-Changed-When: Sun Dec 8 09:16:45 PST 2002 State-Changed-Why: Do you mean that the mouse pointer doesn't appear on the console? This can be enabled by adding `allscreens_flags="-m on"' to rc.conf or running `vidcontrol -m on'. Does this fix the problem? http://www.freebsd.org/cgi/query-pr.cgi?pr=35171 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 9:25:14 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 10A0F37B401; Sun, 8 Dec 2002 09:25:14 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B275743EC2; Sun, 8 Dec 2002 09:25:13 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8HPDx3027280; Sun, 8 Dec 2002 09:25:13 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8HPDfJ027276; Sun, 8 Dec 2002 09:25:13 -0800 (PST) Date: Sun, 8 Dec 2002 09:25:13 -0800 (PST) From: Ian Dowse Message-Id: <200212081725.gB8HPDfJ027276@freefall.freebsd.org> To: dot@dotat.at, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/35248: panic: ffs_valloc: dup alloc 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: panic: ffs_valloc: dup alloc State-Changed-From-To: open->feedback State-Changed-By: iedowse State-Changed-When: Sun Dec 8 09:23:28 PST 2002 State-Changed-Why: Was this just a once-off panic or was it repeatable? Usually it is some sort of data corruption that triggers these panics. http://www.freebsd.org/cgi/query-pr.cgi?pr=35248 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 9:27:18 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76A5337B401; Sun, 8 Dec 2002 09:27:17 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2052343EA9; Sun, 8 Dec 2002 09:27:17 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8HRHx3027355; Sun, 8 Dec 2002 09:27:17 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8HRGew027351; Sun, 8 Dec 2002 09:27:16 -0800 (PST) Date: Sun, 8 Dec 2002 09:27:16 -0800 (PST) From: Ian Dowse Message-Id: <200212081727.gB8HRGew027351@freefall.freebsd.org> To: johnoh99@yahoo.com, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/35267: after cvsup src-all for 4.5, /stand/sysinstall pkg_add refuses update by 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 Synopsis: after cvsup src-all for 4.5, /stand/sysinstall pkg_add refuses update by ftp State-Changed-From-To: open->feedback State-Changed-By: iedowse State-Changed-When: Sun Dec 8 09:26:57 PST 2002 State-Changed-Why: Does this problem still exist? http://www.freebsd.org/cgi/query-pr.cgi?pr=35267 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 9:30:34 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3191537B401; Sun, 8 Dec 2002 09:30:34 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D261A43EB2; Sun, 8 Dec 2002 09:30:33 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8HUXx3028364; Sun, 8 Dec 2002 09:30:33 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8HUWHH028322; Sun, 8 Dec 2002 09:30:32 -0800 (PST) Date: Sun, 8 Dec 2002 09:30:32 -0800 (PST) From: Ian Dowse Message-Id: <200212081730.gB8HUWHH028322@freefall.freebsd.org> To: oliver.blasnik@nextra.de, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/35425: System hang while boot on specific SMP motherboard 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: System hang while boot on specific SMP motherboard State-Changed-From-To: open->feedback State-Changed-By: iedowse State-Changed-When: Sun Dec 8 09:30:02 PST 2002 State-Changed-Why: Does this system still not boot with more recent releases? http://www.freebsd.org/cgi/query-pr.cgi?pr=35425 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 9:31:41 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 375EB37B401; Sun, 8 Dec 2002 09:31:41 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D56CD43EC5; Sun, 8 Dec 2002 09:31:40 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8HVex3029295; Sun, 8 Dec 2002 09:31:40 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8HVeDF029291; Sun, 8 Dec 2002 09:31:40 -0800 (PST) Date: Sun, 8 Dec 2002 09:31:40 -0800 (PST) From: Ian Dowse Message-Id: <200212081731.gB8HVeDF029291@freefall.freebsd.org> To: alexander.haderer@charite.de, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/35461: trap 12 when booting with Maxtor 160G disk at Promise PDC20265R 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: trap 12 when booting with Maxtor 160G disk at Promise PDC20265R State-Changed-From-To: open->feedback State-Changed-By: iedowse State-Changed-When: Sun Dec 8 09:31:19 PST 2002 State-Changed-Why: Does this still occur on more recent releases? http://www.freebsd.org/cgi/query-pr.cgi?pr=35461 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 9:35: 7 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 74F4337B401; Sun, 8 Dec 2002 09:35:06 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C53A43EBE; Sun, 8 Dec 2002 09:35:06 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8HZ6x3029452; Sun, 8 Dec 2002 09:35:06 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8HZ5DA029443; Sun, 8 Dec 2002 09:35:05 -0800 (PST) Date: Sun, 8 Dec 2002 09:35:05 -0800 (PST) From: Ian Dowse Message-Id: <200212081735.gB8HZ5DA029443@freefall.freebsd.org> To: philipp.mergenthaler@stud.uni-karlsruhe.de, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/35512: ATA/ATAPI CD driver: impossible to set cd speed to magic value for "maximum speed" 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: ATA/ATAPI CD driver: impossible to set cd speed to magic value for "maximum speed" State-Changed-From-To: open->closed State-Changed-By: iedowse State-Changed-When: Sun Dec 8 09:33:52 PST 2002 State-Changed-Why: This has now been fixed in both -CURRENT and -STABLE. http://www.freebsd.org/cgi/query-pr.cgi?pr=35512 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 9:36:55 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7B38B37B401; Sun, 8 Dec 2002 09:36:53 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 265B743ED1; Sun, 8 Dec 2002 09:36:53 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8Harx3029569; Sun, 8 Dec 2002 09:36:53 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8Haq8Y029565; Sun, 8 Dec 2002 09:36:52 -0800 (PST) Date: Sun, 8 Dec 2002 09:36:52 -0800 (PST) From: Ian Dowse Message-Id: <200212081736.gB8Haq8Y029565@freefall.freebsd.org> To: miguel.gonzalez@ieee.org, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/35526: No mouse recognized in Compaq Presario laptop 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: No mouse recognized in Compaq Presario laptop State-Changed-From-To: open->feedback State-Changed-By: iedowse State-Changed-When: Sun Dec 8 09:35:54 PST 2002 State-Changed-Why: Does this problem still exist in more recent releases? If so, please supply a full dmesg output from a verbose boot (`boot -v' from the loader). http://www.freebsd.org/cgi/query-pr.cgi?pr=35526 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 9:39: 9 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 760B137B401; Sun, 8 Dec 2002 09:39:08 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 241EE43EBE; Sun, 8 Dec 2002 09:39:08 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8Hd8x3029630; Sun, 8 Dec 2002 09:39:08 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8Hd74u029626; Sun, 8 Dec 2002 09:39:07 -0800 (PST) Date: Sun, 8 Dec 2002 09:39:07 -0800 (PST) From: Ian Dowse Message-Id: <200212081739.gB8Hd74u029626@freefall.freebsd.org> To: nobody@nobody.com, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/35700: a small code update 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: a small code update State-Changed-From-To: open->closed State-Changed-By: iedowse State-Changed-When: Sun Dec 8 09:38:07 PST 2002 State-Changed-Why: malloc(..., M_WAITOK) cannot return NULL, so the change is unnecessary. http://www.freebsd.org/cgi/query-pr.cgi?pr=35700 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 9:40:10 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 592E237B401 for ; Sun, 8 Dec 2002 09:40:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EEB3C43EBE for ; Sun, 8 Dec 2002 09:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8He1x3029670 for ; Sun, 8 Dec 2002 09:40:01 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8He1ax029669; Sun, 8 Dec 2002 09:40:01 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 17FE537B401 for ; Sun, 8 Dec 2002 09:37:08 -0800 (PST) Received: from lerlaptop.lerctr.org (lerlaptop.lerctr.org [207.158.72.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40A7543EB2 for ; Sun, 8 Dec 2002 09:37:07 -0800 (PST) (envelope-from ler@lerlaptop.lerctr.org) Received: from lerlaptop.lerctr.org (localhost [127.0.0.1]) by lerlaptop.lerctr.org (8.12.6/8.12.6) with ESMTP id gB8Hb2KC027759 for ; Sun, 8 Dec 2002 11:37:02 -0600 (CST) (envelope-from ler@lerlaptop.lerctr.org) Received: (from ler@localhost) by lerlaptop.lerctr.org (8.12.6/8.12.6/Submit) id gB8Hb2pU027758; Sun, 8 Dec 2002 11:37:02 -0600 (CST) Message-Id: <200212081737.gB8Hb2pU027758@lerlaptop.lerctr.org> Date: Sun, 8 Dec 2002 11:37:02 -0600 (CST) From: Larry Rosenman Reply-To: Larry Rosenman To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: i386/46100: Random panic. 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: 46100 >Category: i386 >Synopsis: Random panic. >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 Dec 08 09:40:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Larry Rosenman >Release: FreeBSD 4.7-STABLE i386 >Organization: LERCTR Consulting >Environment: System: FreeBSD lerlaptop.lerctr.org 4.7-STABLE FreeBSD 4.7-STABLE #25: Fri Dec 6 21:06:38 CST 2002 ler@lerlaptop.lerctr.org:/usr/obj/usr/src/sys/LERLAPTOP i386 Kernel config: # # # For more information on this file, please read the handbook section on # Kernel Configuration Files: # # http://www.FreeBSD.org/handbook/kernelconfig-config.html # # The handbook is also available locally in /usr/share/doc/handbook # if you've installed the doc distribution, otherwise always see the # FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the # latest information. # # An exhaustive list of options and more detailed explanations of the # device lines is also present in the ./LINT configuration file. If you are # in doubt as to the purpose or necessity of a line, check first in LINT. # machine i386 cpu I686_CPU ident LERLAPTOP maxusers 0 makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols options INET #InterNETworking options INET6 #IPv6 communications protocols options IPSEC #IP security options IPSEC_ESP #IP security (crypto; define w/ IPSEC) #options IPSEC_DEBUG #debug for IP security options FFS #Berkeley Fast Filesystem options FFS_ROOT #FFS usable as root device [keep this!] options SOFTUPDATES #Enable FFS soft updates support options UFS_DIRHASH #Improve performance on big directories options PROCFS #Process filesystem options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!] options SCSI_DELAY=5000 #Delay (in ms) before probing SCSI options VISUAL_USERCONFIG #visual boot -c editor options KTRACE #ktrace(1) support options SYSVSHM #SYSV-style shared memory options SYSVMSG #SYSV-style message queues options SYSVSEM #SYSV-style semaphores options P1003_1B #Posix P1003_1B real-time extensions options _KPOSIX_PRIORITY_SCHEDULING options ICMP_BANDLIM #Rate limit bad replies options KBD_INSTALL_CDEV # install a CDEV entry in /dev options PNPBIOS options PERFMON # CPU_ENABLE_SSE enables SSE/MMX2 instructions support. options CPU_ENABLE_SSE device isa device pci # Floppy drives device fdc0 at isa? port IO_FD1 irq 6 drq 2 device fd0 at fdc0 drive 0 # # ATA and ATAPI devices device ata0 at isa? port IO_WD1 irq 14 device ata1 at isa? port IO_WD2 irq 15 device ata device atadisk # ATA disk drives device atapicd # ATAPI CDROM drives device atapifd # ATAPI floppy drives device atapist # ATAPI tape drives device atapicam options ATA_STATIC_ID #Static device numbering # SCSI peripherals device scbus # SCSI bus (required) device da # Direct Access (disks) device sa # Sequential Access (tape etc) device cd # CD device pass # Passthrough device (direct SCSI access) # atkbdc0 controls both the keyboard and the PS/2 mouse device atkbdc0 at isa? port IO_KBD device atkbd0 at atkbdc? irq 1 flags 0x1 device psm0 at atkbdc? irq 12 options PSM_HOOKRESUME #hook the system resume event, useful #for some laptops options PSM_RESETAFTERSUSPEND #reset the device at the resume event device vga0 at isa? # splash screen/screen saver pseudo-device splash # syscons is the default console driver, resembling an SCO console device sc0 at isa? flags 0x100 # Floating point support - do not disable. device npx0 at nexus? port IO_NPX irq 13 # Power management support (see LINT for more options) ########################################vvvv was 0x20 device apm0 at nexus? flags 0x00 # Advanced Power Management # PCCARD (PCMCIA) support device card device pcic0 at isa? irq 0 port 0x3e0 iomem 0xd0000 device pcic1 at isa? irq 0 port 0x3e2 iomem 0xd4000 disable # Serial (COM) ports device sio0 at isa? port IO_COM1 flags 0x10 irq 4 # Parallel port device ppc0 at isa? irq 7 device ppbus # Parallel port bus (required) device lpt # Printer #device plip # TCP/IP over parallel #device ppi # Parallel port interface device #device vpo # Requires scbus and da # PCI Ethernet NICs. device miibus # MII bus support device rl # RealTek 8129/8139 # WaveLAN/IEEE 802.11 wireless NICs. Note: the WaveLAN/IEEE really # exists only as a PCMCIA device, so there is no ISA attachment needed # and resources will always be dynamically assigned by the pccard code. device wi # Pseudo devices - the number indicates how many units to allocate. pseudo-device loop # Network loopback pseudo-device ether # Ethernet support #pseudo-device sl 1 # Kernel SLIP #pseudo-device ppp 1 # Kernel PPP pseudo-device tun # Packet tunnel. pseudo-device pty # Pseudo-ttys (telnet etc) pseudo-device gif # IPv6 and IPv4 tunneling pseudo-device faith 1 # IPv6-to-IPv4 relaying (translation) # The `bpf' pseudo-device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! pseudo-device bpf #Berkeley packet filter # USB support device uhci # UHCI PCI->USB interface device ohci # UHCI PCI->USB interface device usb # USB Bus (required) device ugen # Generic device uhid # "Human Interface Devices" device ukbd # Keyboard device ulpt # Printer device ucom # Printer device uvisor # Printer #device umass # Disks/Mass storage - Requires scbus and da #device ums # Mouse #device uscanner # Scanners #device urio # Diamond Rio MP3 Player options USB_DEBUG # usb debugging sysctl's # USB com devices #device ucom #device uplcom #device uvscom #device uvisor # USB Ethernet, requires mii device aue # ADMtek USB ethernet device cue # CATC USB ethernet device kue # Kawasaki LSI USB ethernet #####LER device pcm # sound? device smbus device iicbus device iicbb device intpm device ichsmb device smb device iic device ic device pca device firewire device sbp device fwe pseudo-device speaker options MAXDSIZ="(1024*1024*1024)" options MAXSSIZ="(256*1024*1024)" options SC_PIXEL_MODE >Description: I have been experiencing random page not present panics for a while. Here is one backtrace (I have the vmcore available, and can put up for FTP). Script started on Sun Dec 8 11:31:43 2002 lerlaptop# gdb -k kernel.debug.6 vmcore.6 GNU gdb 4.18 (FreeBSD) Copyright 1998 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-unknown-freebsd"...Deprecated bfd_read called at /usr/src/gnu/usr.bin/binutils/gdb/../../../../contrib/gdb/gdb/dbxread.c line 2627 in elfstab_build_psymtabs Deprecated bfd_read called at /usr/src/gnu/usr.bin/binutils/gdb/../../../../contrib/gdb/gdb/dbxread.c line 933 in fill_symbuf IdlePTD at phsyical address 0x00427000 initial pcb at physical address 0x003576e0 panicstr: page fault panic messages: --- Fatal trap 12: page fault while in kernel mode fault virtual address = 0xffffff fault code = supervisor read, page not present instruction pointer = 0x8:0xc0182af7 stack pointer = 0x10:0xdee7fb50 frame pointer = 0x10:0xdee7fb5c 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 = 3192 (killall) interrupt mask = none trap number = 12 panic: page fault syncing disks... 36 8 3 done Uptime: 6h15m47s dumping to dev #ad/0x20001, offset 1065984 dump ata0: resetting devices .. done 503 502 501 500 499 498 497 496 495 494 493 492 491 490 489 488 487 486 485 484 483 482 481 480 479 478 477 476 475 474 473 472 471 470 469 468 467 466 465 464 463 462 461 460 459 458 457 456 455 454 453 452 451 450 449 448 447 446 445 444 443 442 441 440 439 438 437 436 435 434 433 432 431 430 429 428 427 426 425 424 423 422 421 420 419 418 417 416 415 414 413 412 411 410 409 408 407 406 405 404 403 402 401 400 399 398 397 396 395 394 393 392 391 390 389 388 387 386 385 384 383 382 381 380 379 378 377 376 375 374 373 372 371 370 369 368 367 366 365 364 363 362 361 360 359 358 357 356 355 354 353 352 351 350 349 348 347 346 345 344 343 342 341 340 339 338 337 336 335 334 333 332 331 330 329 328 327 326 325 324 323 322 321 320 319 318 317 316 315 314 313 312 311 310 309 308 307 306 305 304 303 302 301 300 299 298 297 296 295 294 293 292 291 290 289 288 287 286 285 284 283 282 281 280 279 278 277 276 275 274 273 272 271 270 269 268 267 266 265 264 263 262 261 260 259 258 2! 57 256 255 254 253 252 251 250 249 248 247 246 245 244 243 242 241 240 239 238 237 236 235 234 233 232 231 230 229 228 227 226 225 224 223 222 221 220 219 218 217 216 215 214 213 212 211 210 209 208 207 206 205 204 203 202 201 200 199 198 197 196 195 194 193 192 191 190 189 188 187 186 185 184 183 182 181 180 179 178 177 176 175 174 173 172 171 170 169 168 167 166 165 164 163 162 161 160 159 158 157 156 155 154 153 152 151 150 149 148 147 146 145 144 143 142 141 140 139 138 137 136 135 134 133 132 131 130 129 128 127 126 125 124 123 122 121 120 119 118 117 116 115 114 113 112 111 110 109 108 107 106 105 104 103 102 101 100 99 98 97 96 95 94 93 92 91 90 89 88 87 86 85 84 83 82 81 80 79 78 77 76 75 74 73 72 71 70 69 68 67 66 65 64 63 62 61 60 59 58 57 56 55 54 53 52 51 50 49 48 47 46 45 44 43 42 41 40 39 38 37 36 35 34 33 32 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 --- #0 dumpsys () at /usr/src/sys/kern/kern_shutdown.c:487 487 if (dumping++) { (kgdb) bt #0 dumpsys () at /usr/src/sys/kern/kern_shutdown.c:487 #1 0xc0185ce7 in boot (howto=256) at /usr/src/sys/kern/kern_shutdown.c:316 #2 0xc018610c in poweroff_wait (junk=0xc030ad2c, howto=-1070553009) at /usr/src/sys/kern/kern_shutdown.c:595 #3 0xc02aca5e in trap_fatal (frame=0xdee7fb10, eva=16777215) at /usr/src/sys/i386/i386/trap.c:974 #4 0xc02ac731 in trap_pfault (frame=0xdee7fb10, usermode=0, eva=16777215) at /usr/src/sys/i386/i386/trap.c:867 #5 0xc02ac31b in trap (frame={tf_fs = -555286512, tf_es = -1071448048, tf_ds = -554762224, tf_edi = -555222036, tf_esi = 16777215, tf_ebp = -555222180, tf_isp = -555222212, tf_ebx = -555222152, tf_edx = -731243840, tf_ecx = 11, tf_eax = -731243840, tf_trapno = 12, tf_err = 0, tf_eip = -1072157961, tf_cs = 8, tf_eflags = 66054, tf_esp = -555221392, tf_ss = 0}) at /usr/src/sys/i386/i386/trap.c:466 #6 0xc0182af7 in fill_eproc (p=0xd46a1ac0, ep=0xdee7fb78) at /usr/src/sys/kern/kern_proc.c:368 #7 0xc0182caa in sysctl_out_proc (p=0xd46a1ac0, req=0xdee7fe70, doingzomb=0) at /usr/src/sys/kern/kern_proc.c:425 #8 0xc0182eaa in sysctl_kern_proc (oidp=0xc031e040, arg1=0x0, arg2=0, req=0xdee7fe70) at /usr/src/sys/kern/kern_proc.c:526 #9 0xc018ab44 in sysctl_root (oidp=0x0, arg1=0xdee7fef8, arg2=3, req=0xdee7fe70) at /usr/src/sys/kern/kern_sysctl.c:1063 #10 0xc018ace9 in userland_sysctl (p=0xd469e380, name=0xdee7fef8, namelen=3, ---Type to continue, or q to quit--- old=0x0, oldlenp=0xbfbffbd4, inkernel=0, new=0x0, newlen=0, retval=0xdee7fef4) at /usr/src/sys/kern/kern_sysctl.c:1156 #11 0xc018aba8 in __sysctl (p=0xd469e380, uap=0xdee7ff80) at /usr/src/sys/kern/kern_sysctl.c:1092 #12 0xc02acd0d in syscall2 (frame={tf_fs = 47, tf_es = 47, tf_ds = 47, tf_edi = 3, tf_esi = -1077937188, tf_ebp = -1077937344, tf_isp = -555221036, tf_ebx = 1208926188, tf_edx = 0, tf_ecx = 0, tf_eax = 202, tf_trapno = 12, tf_err = 2, tf_eip = 1208607000, tf_cs = 31, tf_eflags = 659, tf_esp = -1077937404, tf_ss = 47}) at /usr/src/sys/i386/i386/trap.c:1175 #13 0xc02a0685 in Xint0x80_syscall () #14 0x80491e8 in ?? () #15 0x8048a92 in ?? () (kgdb) lerlaptop# Script done on Sun Dec 8 11:32:16 2002 >How-To-Repeat: It's random, unfortunately. >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 Dec 8 9:46: 3 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 71C1A37B401; Sun, 8 Dec 2002 09:46:02 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E61B43E4A; Sun, 8 Dec 2002 09:46:02 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8Hk1x3031667; Sun, 8 Dec 2002 09:46:02 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8HjuhW031659; Sun, 8 Dec 2002 09:45:56 -0800 (PST) Date: Sun, 8 Dec 2002 09:45:56 -0800 (PST) From: Ian Dowse Message-Id: <200212081745.gB8HjuhW031659@freefall.freebsd.org> To: dgilbert@velocet.ca, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/35873: recent -STABLE dhclient doesn't see wireless card 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: recent -STABLE dhclient doesn't see wireless card State-Changed-From-To: open->feedback State-Changed-By: iedowse State-Changed-When: Sun Dec 8 09:45:23 PST 2002 State-Changed-Why: Does this still occur on more recent releases? http://www.freebsd.org/cgi/query-pr.cgi?pr=35873 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 9:50: 8 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 699E937B401; Sun, 8 Dec 2002 09:50:07 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 174D043EBE; Sun, 8 Dec 2002 09:50:07 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8Ho6x3031961; Sun, 8 Dec 2002 09:50:06 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8Ho6RF031944; Sun, 8 Dec 2002 09:50:06 -0800 (PST) Date: Sun, 8 Dec 2002 09:50:06 -0800 (PST) From: Ian Dowse Message-Id: <200212081750.gB8Ho6RF031944@freefall.freebsd.org> To: jtm63@enteract.com, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/35989: 720KB floppies unusable 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: 720KB floppies unusable State-Changed-From-To: open->feedback State-Changed-By: iedowse State-Changed-When: Sun Dec 8 09:48:31 PST 2002 State-Changed-Why: Does this problem still occur in more recent releases? Does using the /dev/fd0.720 device for newfs help? http://www.freebsd.org/cgi/query-pr.cgi?pr=35989 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 9:51:25 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF7FD37B401; Sun, 8 Dec 2002 09:51:24 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C3A743E4A; Sun, 8 Dec 2002 09:51:24 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8HpOx3033734; Sun, 8 Dec 2002 09:51:24 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8HpNo2033730; Sun, 8 Dec 2002 09:51:23 -0800 (PST) Date: Sun, 8 Dec 2002 09:51:23 -0800 (PST) From: Ian Dowse Message-Id: <200212081751.gB8HpNo2033730@freefall.freebsd.org> To: le@univie.ac.at, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/36057: atacontrol, apm, kernel panic 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: atacontrol, apm, kernel panic State-Changed-From-To: open->feedback State-Changed-By: iedowse State-Changed-When: Sun Dec 8 09:51:03 PST 2002 State-Changed-Why: Does this still occur on more recent releases? http://www.freebsd.org/cgi/query-pr.cgi?pr=36057 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 9:52:41 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 993A337B401; Sun, 8 Dec 2002 09:52:40 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40C6243EB2; Sun, 8 Dec 2002 09:52:40 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8Hqex3033811; Sun, 8 Dec 2002 09:52:40 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8HqekH033807; Sun, 8 Dec 2002 09:52:40 -0800 (PST) Date: Sun, 8 Dec 2002 09:52:40 -0800 (PST) From: Ian Dowse Message-Id: <200212081752.gB8HqekH033807@freefall.freebsd.org> To: cappy@thestringcemetery.com, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/35104: Files end up being no bigger than 8192 bytes when putting files on newly added Western Digital IDE drive. 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: Files end up being no bigger than 8192 bytes when putting files on newly added Western Digital IDE drive. State-Changed-From-To: feedback->closed State-Changed-By: iedowse State-Changed-When: Sun Dec 8 09:52:24 PST 2002 State-Changed-Why: Mail to submitter bounces. http://www.freebsd.org/cgi/query-pr.cgi?pr=35104 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 9:53:44 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B33FC37B401; Sun, 8 Dec 2002 09:53:43 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E28043EB2; Sun, 8 Dec 2002 09:53:43 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8Hrhx3033864; Sun, 8 Dec 2002 09:53:43 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8HrgTs033860; Sun, 8 Dec 2002 09:53:42 -0800 (PST) Date: Sun, 8 Dec 2002 09:53:42 -0800 (PST) From: Ian Dowse Message-Id: <200212081753.gB8HrgTs033860@freefall.freebsd.org> To: csfbsd@raggedclown.net, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/35171: Moused needs to be enabled to run a USB mouse 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: Moused needs to be enabled to run a USB mouse State-Changed-From-To: feedback->closed State-Changed-By: iedowse State-Changed-When: Sun Dec 8 09:53:22 PST 2002 State-Changed-Why: Mail to submitter bounces. http://www.freebsd.org/cgi/query-pr.cgi?pr=35171 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 9:59:47 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EEFD337B4B0; Sun, 8 Dec 2002 09:59:45 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 99FBD43ED1; Sun, 8 Dec 2002 09:59:45 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8Hxjx3034008; Sun, 8 Dec 2002 09:59:45 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8HxhbB034000; Sun, 8 Dec 2002 09:59:43 -0800 (PST) Date: Sun, 8 Dec 2002 09:59:43 -0800 (PST) From: Ian Dowse Message-Id: <200212081759.gB8HxhbB034000@freefall.freebsd.org> To: kirill@tavrida.net, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/36149: kernel panic with option PPP_DEFLATE for 4.5-STABLE 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: kernel panic with option PPP_DEFLATE for 4.5-STABLE State-Changed-From-To: open->feedback State-Changed-By: iedowse State-Changed-When: Sun Dec 8 09:58:08 PST 2002 State-Changed-Why: This is almost certainly fixed. Can you confirm that the panic no longer happens on a more recent -STABLE or release? http://www.freebsd.org/cgi/query-pr.cgi?pr=36149 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 10: 6: 9 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C881037B401; Sun, 8 Dec 2002 10:06:08 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 71EAA43EBE; Sun, 8 Dec 2002 10:06:08 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8I68x3040907; Sun, 8 Dec 2002 10:06:08 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8I68bW040903; Sun, 8 Dec 2002 10:06:08 -0800 (PST) Date: Sun, 8 Dec 2002 10:06:08 -0800 (PST) From: Ian Dowse Message-Id: <200212081806.gB8I68bW040903@freefall.freebsd.org> To: iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-doc@FreeBSD.org Subject: Re: misc/36154: Getting USB mouse to work: usbd and moused conflict 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: Getting USB mouse to work: usbd and moused conflict Responsible-Changed-From-To: freebsd-bugs->freebsd-doc Responsible-Changed-By: iedowse Responsible-Changed-When: Sun Dec 8 10:02:40 PST 2002 Responsible-Changed-Why: Documentation bug: faq/hardware.html should not suggest setting any moused_* variables for a USB mouse since moused is started automatically by usbd. Instead, use `allscreens_flags="-m on"' to enable the mouse cursor. http://www.freebsd.org/cgi/query-pr.cgi?pr=36154 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 10: 7:25 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E252F37B401; Sun, 8 Dec 2002 10:07:24 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8BB6743EA9; Sun, 8 Dec 2002 10:07:24 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8I7Ox3040973; Sun, 8 Dec 2002 10:07:24 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8I7Nmh040969; Sun, 8 Dec 2002 10:07:23 -0800 (PST) Date: Sun, 8 Dec 2002 10:07:23 -0800 (PST) From: Ian Dowse Message-Id: <200212081807.gB8I7Nmh040969@freefall.freebsd.org> To: danfe@regency.nsu.ru, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/36160: Kernel halts while trying to detect CD-C68E (6-CD changers) upon bootup 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: Kernel halts while trying to detect CD-C68E (6-CD changers) upon bootup State-Changed-From-To: open->feedback State-Changed-By: iedowse State-Changed-When: Sun Dec 8 10:06:48 PST 2002 State-Changed-Why: Does this still occur with a more recent -STABLE? http://www.freebsd.org/cgi/query-pr.cgi?pr=36160 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 10: 9: 3 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 45B6B37B401; Sun, 8 Dec 2002 10:09:02 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E6D6243EC2; Sun, 8 Dec 2002 10:09:01 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8I91x3041062; Sun, 8 Dec 2002 10:09:01 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8I91oj041058; Sun, 8 Dec 2002 10:09:01 -0800 (PST) Date: Sun, 8 Dec 2002 10:09:01 -0800 (PST) From: Ian Dowse Message-Id: <200212081809.gB8I91oj041058@freefall.freebsd.org> To: zhecka@klondike.ru, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/36204: cannot install -STABLE from CD-ROM Drive 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: cannot install -STABLE from CD-ROM Drive State-Changed-From-To: open->feedback State-Changed-By: iedowse State-Changed-When: Sun Dec 8 10:08:11 PST 2002 State-Changed-Why: Can you still reproduce this on a more recent -STABLE? http://www.freebsd.org/cgi/query-pr.cgi?pr=36204 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 10:11:47 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 168AE37B401; Sun, 8 Dec 2002 10:11:47 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B5F0843EC2; Sun, 8 Dec 2002 10:11:46 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8IBkx3042981; Sun, 8 Dec 2002 10:11:46 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8IBk2C042977; Sun, 8 Dec 2002 10:11:46 -0800 (PST) Date: Sun, 8 Dec 2002 10:11:46 -0800 (PST) From: Ian Dowse Message-Id: <200212081811.gB8IBk2C042977@freefall.freebsd.org> To: thayton@torrentnet.com, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/36209: read() system call never returns in some cases 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: read() system call never returns in some cases State-Changed-From-To: open->closed State-Changed-By: iedowse State-Changed-When: Sun Dec 8 10:09:52 PST 2002 State-Changed-Why: FreeBSD 2.2.2 is no longer supported. Please try 4.7-RELEASE, and open a new PR if you can reproduce the problem there. http://www.freebsd.org/cgi/query-pr.cgi?pr=36209 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 10:20: 4 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0BE6837B401 for ; Sun, 8 Dec 2002 10:20:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 37A1143EBE for ; Sun, 8 Dec 2002 10:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8IK2x3043365 for ; Sun, 8 Dec 2002 10:20:02 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8IK2bH043364; Sun, 8 Dec 2002 10:20:02 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C23D037B401 for ; Sun, 8 Dec 2002 10:11:28 -0800 (PST) Received: from bifrost.lyngbol.dk (bifrost.lyngbol.dk [193.162.32.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id E894643EA9 for ; Sun, 8 Dec 2002 10:11:27 -0800 (PST) (envelope-from lyngbol@bifrost.lyngbol.dk) Received: from bifrost.lyngbol.dk (localhost [127.0.0.1]) by bifrost.lyngbol.dk (8.12.6/8.12.6) with ESMTP id gB8IBQ1x009347 for ; Sun, 8 Dec 2002 19:11:26 +0100 (CET) (envelope-from lyngbol@bifrost.lyngbol.dk) Received: (from lyngbol@localhost) by bifrost.lyngbol.dk (8.12.6/8.12.6/Submit) id gB8IBPOd009346; Sun, 8 Dec 2002 19:11:25 +0100 (CET) Message-Id: <200212081811.gB8IBPOd009346@bifrost.lyngbol.dk> Date: Sun, 8 Dec 2002 19:11:25 +0100 (CET) From: Michael LyngbЬl Reply-To: Michael LyngbЬl To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: conf/46103: /etc/rc.d/ipfilter; ipfilter_start() need to enable ipfilter 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: 46103 >Category: conf >Synopsis: /etc/rc.d/ipfilter; ipfilter_start() need to enable ipfilter >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 Dec 08 10:20:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Michael LyngbЬl >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD bifrost 5.0-CURRENT FreeBSD 5.0-CURRENT #4: Fri Dec 6 23:56:04 CET 2002 lyngbol@bifrost:/usr/src/sys/i386/compile/BIFROST i386 >Description: /etc/rc.d/ipfilter need to enable ipfilter in ipfilter_start(). Elseway a `/etc/rc.d/ipfilter restart' will disable ipfilter but not enable it again. /etc/rc.d/ipfilter does work on boot as a kernel compiled with 'options IPFILTER' enables ipfilter. >How-To-Repeat: Run `/etc/rc.d/ipfilter restart' or do `/etc/rc.d/ipfilter stop' and `/etc/rc.d/ipfilter start' >Fix: --- /tmp/ipfilter Sat Dec 7 00:13:53 2002 +++ /etc/rc.d/ipfilter Sat Dec 7 00:14:33 2002 @@ -79,7 +79,7 @@ echo "Enabling ipfilter." case ${OSTYPE} in FreeBSD) - ${ipfilter_program:-/sbin/ipf} -Fa + ${ipfilter_program:-/sbin/ipf} -E -Fa if [ -r "${ipfilter_rules}" ]; then ${ipfilter_program:-/sbin/ipf} \ -f "${ipfilter_rules}" ${ipfilter_flags} >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 Dec 8 10:38:36 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B5D237B401; Sun, 8 Dec 2002 10:38:35 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 465CF43ED8; Sun, 8 Dec 2002 10:38:35 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8IcZx3047576; Sun, 8 Dec 2002 10:38:35 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8IcYsW047572; Sun, 8 Dec 2002 10:38:34 -0800 (PST) Date: Sun, 8 Dec 2002 10:38:34 -0800 (PST) From: Ian Dowse Message-Id: <200212081838.gB8IcYsW047572@freefall.freebsd.org> To: nkoch@demig.de, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/36300: acd0c: 'device not configured ' after stable build from cvs rep. 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: acd0c: 'device not configured ' after stable build from cvs rep. State-Changed-From-To: open->feedback State-Changed-By: iedowse State-Changed-When: Sun Dec 8 10:37:54 PST 2002 State-Changed-Why: Can you confirm that this was fixed by re-running the new MAKEDEV? http://www.freebsd.org/cgi/query-pr.cgi?pr=36300 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 10:40:21 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5429937B401; Sun, 8 Dec 2002 10:40:20 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F403443EBE; Sun, 8 Dec 2002 10:40:19 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8IeJx3048019; Sun, 8 Dec 2002 10:40:19 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8IeJGY047988; Sun, 8 Dec 2002 10:40:19 -0800 (PST) Date: Sun, 8 Dec 2002 10:40:19 -0800 (PST) From: Ian Dowse Message-Id: <200212081840.gB8IeJGY047988@freefall.freebsd.org> To: bjoern.engels@mail.isis.de, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/36313: ATA disk not bootable anymore after cvsuping to 4.5-STABLE 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: ATA disk not bootable anymore after cvsuping to 4.5-STABLE State-Changed-From-To: open->feedback State-Changed-By: iedowse State-Changed-When: Sun Dec 8 10:39:16 PST 2002 State-Changed-Why: Was this resolved with more recent -STABLE sources? http://www.freebsd.org/cgi/query-pr.cgi?pr=36313 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 10:41:35 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 06B2C37B401; Sun, 8 Dec 2002 10:41:35 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A3BC343EA9; Sun, 8 Dec 2002 10:41:34 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8IfYx3049580; Sun, 8 Dec 2002 10:41:34 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8IfXJm049576; Sun, 8 Dec 2002 10:41:33 -0800 (PST) Date: Sun, 8 Dec 2002 10:41:33 -0800 (PST) From: Ian Dowse Message-Id: <200212081841.gB8IfXJm049576@freefall.freebsd.org> To: jneumann@ix.urz.uni-heidelberg.de, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/36315: panic: vm_fault on nofault entry while running portupgrade (4.5-STABLE) 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: panic: vm_fault on nofault entry while running portupgrade (4.5-STABLE) State-Changed-From-To: open->feedback State-Changed-By: iedowse State-Changed-When: Sun Dec 8 10:40:53 PST 2002 State-Changed-Why: Do these panics still occur with more recent -STABLE sources? http://www.freebsd.org/cgi/query-pr.cgi?pr=36315 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 11:10: 6 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5753037B401 for ; Sun, 8 Dec 2002 11:10:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CB5743EC2 for ; Sun, 8 Dec 2002 11:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8JA2x3059525 for ; Sun, 8 Dec 2002 11:10:02 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8JA2ov059524; Sun, 8 Dec 2002 11:10:02 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 244F537B401 for ; Sun, 8 Dec 2002 11:01:40 -0800 (PST) Received: from starwhack.net (056.a.008.mel.iprimus.net.au [210.50.86.56]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB7A043EB2 for ; Sun, 8 Dec 2002 11:01:37 -0800 (PST) (envelope-from stacey_@starwhack.net) Received: from starwhack.net (localhost [127.0.0.1]) by starwhack.net (8.12.6/8.12.6) with ESMTP id gB8J1OEL021595 for ; Mon, 9 Dec 2002 06:01:26 +1100 (EST) (envelope-from stacey_@starwhack.net) Received: (from stacey_@localhost) by starwhack.net (8.12.6/8.12.6/Submit) id gB8J1MIn021594; Mon, 9 Dec 2002 06:01:23 +1100 (EST) (envelope-from stacey_) Message-Id: <200212081901.gB8J1MIn021594@starwhack.net> Date: Mon, 9 Dec 2002 06:01:23 +1100 (EST) From: stacey Reply-To: stacey To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/46107: killall(1) can prematurely kill itself 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: 46107 >Category: bin >Synopsis: killall(1) can prematurely kill itself >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 Dec 08 11:10:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: stacey >Release: FreeBSD 4.7-STABLE i386 >Organization: >Environment: System: FreeBSD starwhack.net 4.7-STABLE FreeBSD 4.7-STABLE #5: Sun Dec 1 18:37:27 EST 2002 root@starwhack.net:/usr/obj/usr/src/sys/STARWHACK i386 >Description: killall(1) suicides, which makes it die before killing other matching procs. >How-To-Repeat: $ ps | grep killall 21470 p1 T 0:00.07 killall ducks 21473 p1 T 0:00.05 killall go 21475 p1 T 0:00.04 killall wak wak 21483 p1 R+ 0:00.06 grep killall $ killall -KILL -v killall kill -KILL 21551 Killed >Fix: Index: killall.c =================================================================== RCS file: /home/stacey_/src/freebsd/src/usr.bin/killall/killall.c,v retrieving revision 1.19 diff -u -r1.19 killall.c --- killall.c 30 Jun 2002 05:25:01 -0000 1.19 +++ killall.c 8 Dec 2002 18:03:18 -0000 @@ -117,6 +117,7 @@ int zflag = 0; uid_t uid = 0; dev_t tdev = 0; + pid_t mypid; char thiscmd[MAXCOMLEN + 1]; pid_t thispid; uid_t thisuid; @@ -289,6 +290,7 @@ nprocs = size / sizeof(struct kinfo_proc); if (dflag) printf("nprocs %d\n", nprocs); + mypid = getpid(); for (i = 0; i < nprocs; i++) { if ((procs[i].ki_stat & SZOMB) == SZOMB && !zflag) @@ -365,7 +367,7 @@ thispid); killed++; - if (!dflag && !sflag) { + if (!dflag && !sflag && thispid != mypid) { if (kill(thispid, sig) < 0 /* && errno != ESRCH */ ) { warn("warning: kill -%s %d", upper(sys_signame[sig]), thispid); >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 Dec 8 11:32:44 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4DF4E37B401; Sun, 8 Dec 2002 11:32:43 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E50BD43EC5; Sun, 8 Dec 2002 11:32:42 -0800 (PST) (envelope-from roam@FreeBSD.org) Received: from freefall.freebsd.org (roam@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8JWgx3065522; Sun, 8 Dec 2002 11:32:42 -0800 (PST) (envelope-from roam@freefall.freebsd.org) Received: (from roam@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8JWgqx065518; Sun, 8 Dec 2002 11:32:42 -0800 (PST) Date: Sun, 8 Dec 2002 11:32:42 -0800 (PST) From: Peter Pentchev Message-Id: <200212081932.gB8JWgqx065518@freefall.freebsd.org> To: roam@FreeBSD.org, freebsd-bugs@FreeBSD.org, sos@FreeBSD.org Subject: Re: bin/46096: [patch] Make atacontrol(8) give better errors 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] Make atacontrol(8) give better errors Responsible-Changed-From-To: freebsd-bugs->sos Responsible-Changed-By: roam Responsible-Changed-When: Sun Dec 8 11:32:26 PST 2002 Responsible-Changed-Why: Over to the ATA/ATAPI code maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=46096 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 12:30: 4 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3BE3D37B401 for ; Sun, 8 Dec 2002 12:30:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E53FE43EC5 for ; Sun, 8 Dec 2002 12:30:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8KU2x3080621 for ; Sun, 8 Dec 2002 12:30:02 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8KU2bZ080620; Sun, 8 Dec 2002 12:30:02 -0800 (PST) Date: Sun, 8 Dec 2002 12:30:02 -0800 (PST) Message-Id: <200212082030.gB8KU2bZ080620@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ian Dowse Subject: Re: kern/36313: ATA disk not bootable anymore after cvsuping to 4.5-STABLE Reply-To: Ian Dowse 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/36313; it has been noted by GNATS. From: Ian Dowse To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: kern/36313: ATA disk not bootable anymore after cvsuping to 4.5-STABLE Date: Sun, 08 Dec 2002 20:26:45 +0000 Adding to the audit trail: In message <200212082123.46647.bjoern.engels@mail.isis.de>, Bjoern Engels write s: >> Was this resolved with more recent -STABLE sources? > >Hi Ian, > >thanks for the fedback. >No, this problem hasn't resolved yet. I tried several times to upgrade th= >e box=20 >(4.6-RELEASE, 4.7-RELEASE, {any}-STABLE), but that helped just a little: >after trying to boot the box with the new kernel, I saw the same errors=20 >("array broken" and so on), but I was able to reboot the machine with the= > old=20 >4.5-RELEASE kernel normally. >If you need any more information, please tell me, I'll attach a serial co= >nsole=20 >to get exact boot messages. > > >Thank you for any help > >Bjoern > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 12:32:52 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3AF4E37B401; Sun, 8 Dec 2002 12:32:51 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D841343EC2; Sun, 8 Dec 2002 12:32:50 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8KWox3082510; Sun, 8 Dec 2002 12:32:50 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8KWoeO082506; Sun, 8 Dec 2002 12:32:50 -0800 (PST) Date: Sun, 8 Dec 2002 12:32:50 -0800 (PST) From: Ian Dowse Message-Id: <200212082032.gB8KWoeO082506@freefall.freebsd.org> To: bjoern.engels@mail.isis.de, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org, sos@FreeBSD.org Subject: Re: kern/36313: ATA disk not bootable anymore after cvsuping to 4.5-STABLE 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: ATA disk not bootable anymore after cvsuping to 4.5-STABLE State-Changed-From-To: feedback->open State-Changed-By: iedowse State-Changed-When: Sun Dec 8 12:31:19 PST 2002 State-Changed-Why: Problem is still present in recent -STABLE. Responsible-Changed-From-To: freebsd-bugs->sos Responsible-Changed-By: iedowse Responsible-Changed-When: Sun Dec 8 12:31:19 PST 2002 Responsible-Changed-Why: ATA-related PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=36313 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 12:40: 6 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 842C537B401 for ; Sun, 8 Dec 2002 12:40:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D6C343E4A for ; Sun, 8 Dec 2002 12:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8Ke2x3082888 for ; Sun, 8 Dec 2002 12:40:02 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8Ke2QJ082887; Sun, 8 Dec 2002 12:40:02 -0800 (PST) Date: Sun, 8 Dec 2002 12:40:02 -0800 (PST) Message-Id: <200212082040.gB8Ke2QJ082887@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Enache Adrian Subject: Re: kern/46036: inaccurate timeouts in select(),nanosleep() + fix Reply-To: Enache Adrian 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/46036; it has been noted by GNATS. From: Enache Adrian To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: Re: kern/46036: inaccurate timeouts in select(),nanosleep() + fix Date: Sun, 8 Dec 2002 22:33:41 +0200 On Sat, Dec 07, 2002 at 11:57:40PM +1100, Bruce Evans wrote: > tvtohz() actually adds 1 to ensure that the sleep time is at least the > specified time. This gives a minimum sleep time of 0.0 ticks longer > than the specified sleep time (as required by standards) and a maximum > sleep time of about 1.0 tick longer than the specified sleep time, > with an average sleep time of about 0.5 ticks longer. Not adding 1 > would give a {min,max,avg} sleep time of about {-1.0,0.0,-0.5} ticks > longer than specified; i.e., it would be shorter than specified (broken) > in most cases. ... > and we are mostly in sync with clock interrupts. In general the error > from not adding 1 is up to 1 tick (see above). The average sleep time seems to be with ~ 0.995 longer on an idle machine - much longer on a loaded one where ticks are lost. For the error to be down to -1 tick with an average of -0.5 ticks (when not adding 1) the tick value must be very small - this doesn't seem to happen with the standard 100hz. Under high load the error tends to be positive. When the user has asked for something not multiple of tick the value will be correctly rounded up by tvtohz() and the error will be positive too. > I thought that Linux gets timeouts right -- at least sleep() used to > work except in very early versions of Linux-0.x. Perhaps it uses > clock interrupts to get to get close to the timeout and then > udelay() to get closer if the residual timeout is small. In general, > the residual could be up to `tick' usec, but in cases that are in sync > with the clock like your test program, the residual would be small > (about 44 usec) and udelay() could reasonably handle it. Oh no. Linux doesn't seem to call udelay() to handle the residual timeout. Only nanosleep() works like in FreeBSD ( one tick longer by just adding one - this is why many recommend to use select() instead of usleep() ...) from kernel/timer.c expire = timespec_to_jiffies(&t) + (t.tv_sec || t.tv_nsec); The silly test program, when run - with some minor modifications ----------------------- +#include - struct clockinfo clock; - mib[0] = CTL_KERN; mib[1] = KERN_CLOCKRATE; - k = sizeof clock; - if (sysctl(mib,2,&clock,&k,NULL,0)) err(1,"sysctl"); - savtv.tv_usec -= savtv.tv_usec % clock.tick; + savtv.tv_usec -= savtv.tv_usec % (1000000 / HZ); _______________________ on linux 2.4.18 says: - 0 s 171 us - 0 s 181 us - 0 s 184 us --input - 0 s 169 us - 0 s 180 us According to you it is broken to sleep less than specified. Does it exist a standard specification for this case ? A quick browsing through susv3 shows that only nanosleep() is required to do so: functions/select.html: "If the timeout parameter is not a null pointer, it specifies a maximum interval to wait for the selection to complete." functions/nanosleep.html "But, except for the case of being interrupted by a signal, the suspension time shall not be less than the time specified by rqtp, as measured by the system clock CLOCK_REALTIME" but I'll keep reading on ... thank you & best regards Adi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 12:45:36 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CEABC37B401; Sun, 8 Dec 2002 12:45:35 -0800 (PST) Received: from alpha.de.tiscali.com (alpha.de.tiscali.com [62.27.91.200]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5DF543EA9; Sun, 8 Dec 2002 12:45:34 -0800 (PST) (envelope-from Oliver.Blasnik@de.tiscali.com) Received: from de-ex-01.de.tiscali.com (de-ex-01.de.tiscali.com [10.49.8.74]) by alpha.de.tiscali.com (Postfix) with ESMTP id CC8B764C66; Sun, 8 Dec 2002 21:45:18 +0100 (CET) Received: from de-ex-02.de.tiscali.com ([10.49.8.76]) by de-ex-01.de.tiscali.com with Microsoft SMTPSVC(5.0.2195.5329); Sun, 8 Dec 2002 21:45:18 +0100 Received: from xpath1000 ([10.49.244.74]) by de-ex-02.de.tiscali.com with Microsoft SMTPSVC(5.0.2195.5329); Sun, 8 Dec 2002 21:45:17 +0100 Message-ID: <00e801c29efa$cb436740$2100a8c0@xpath1000> From: "Oliver Blasnik" To: "Ian Dowse" , References: <200212081730.gB8HUWHH028322@freefall.freebsd.org> Subject: Re: kern/35425: System hang while boot on specific SMP motherboard Date: Sun, 8 Dec 2002 21:45:43 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 X-OriginalArrivalTime: 08 Dec 2002 20:45:17.0942 (UTC) FILETIME=[B79E6960:01C29EFA] 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 Hi Ian, > Does this system still not boot with more recent releases? I have no access to this system anymore. |> I've got a 1U System for testing, and I tried to.... I returned this machine two months after this PR, thats 7 months ago... Oliver To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 12:50: 4 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7636437B408 for ; Sun, 8 Dec 2002 12:50:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 334BF43EBE for ; Sun, 8 Dec 2002 12:50:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8Ko3x3084916 for ; Sun, 8 Dec 2002 12:50:03 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8Ko2p3084915; Sun, 8 Dec 2002 12:50:02 -0800 (PST) Date: Sun, 8 Dec 2002 12:50:02 -0800 (PST) Message-Id: <200212082050.gB8Ko2p3084915@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Larry Rosenman Subject: i386/46100 Reply-To: Larry Rosenman 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/46100; it has been noted by GNATS. From: Larry Rosenman To: bug-followup@freebsd.org Cc: Subject: i386/46100 Date: Sun, 8 Dec 2002 14:41:21 -0600 I've placed the following at: ftp://ftp.lerctr.org/pub/freebsd/p46100.tar.gz $ ls -l total 646536 -rw-r--r-- 1 ler isis 331016466 Dec 8 14:38 p46100.tar.gz $ gzcat p* |tar tvf - -rw-r--r-- 0/0 2944253 Dec 7 22:28 2002 kernel.6 -rwxr-xr-x 0/0 10629216 Dec 8 11:29 2002 kernel.debug.6 -rw-r--r-- 0/0 527958016 Dec 7 22:28 2002 vmcore.6 -rw-r--r-- 0/0 5900 Dec 8 11:32 2002 typescript $ --=20 Larry Rosenman http://www.lerctr.org/~ler Phone: +1 972-414-9812 E-Mail: ler@lerctr.org US Mail: 1905 Steamboat Springs Drive, Garland, TX 75044-6749 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 13: 0:17 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BD4F837B40A for ; Sun, 8 Dec 2002 13:00:16 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23CC843EA9 for ; Sun, 8 Dec 2002 13:00:16 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8L0Fx3087034 for ; Sun, 8 Dec 2002 13:00:15 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8L0FE4087033; Sun, 8 Dec 2002 13:00:15 -0800 (PST) Date: Sun, 8 Dec 2002 13:00:15 -0800 (PST) Message-Id: <200212082100.gB8L0FE4087033@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Jan-Oliver Neumann Subject: Re: kern/36315: panic: vm_fault on nofault entry while running portupgrade (4.5-STABLE) Reply-To: Jan-Oliver Neumann 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/36315; it has been noted by GNATS. From: Jan-Oliver Neumann To: freebsd-gnats-submit@FreeBSD.org, jneumann@ix.urz.uni-heidelberg.de Cc: Subject: Re: kern/36315: panic: vm_fault on nofault entry while running portupgrade (4.5-STABLE) Date: Sun, 08 Dec 2002 21:57:22 +0100 I am running a recent 4.7-STABLE on the same machine now and haven't seen this behavior for a long time (aprox. 2-3 months). Seems like this PR can be closed... Jan-Oliver Neumann To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 13: 2:23 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8EC8837B401; Sun, 8 Dec 2002 13:02:22 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 375D043EC2; Sun, 8 Dec 2002 13:02:22 -0800 (PST) (envelope-from ceri@FreeBSD.org) Received: from freefall.freebsd.org (ceri@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8L2Mx3088961; Sun, 8 Dec 2002 13:02:22 -0800 (PST) (envelope-from ceri@freefall.freebsd.org) Received: (from ceri@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8L2MBM088957; Sun, 8 Dec 2002 13:02:22 -0800 (PST) Date: Sun, 8 Dec 2002 13:02:22 -0800 (PST) From: Ceri Davies Message-Id: <200212082102.gB8L2MBM088957@freefall.freebsd.org> To: jneumann@ix.urz.uni-heidelberg.de, ceri@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/36315: panic: vm_fault on nofault entry while running portupgrade (4.5-STABLE) 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: panic: vm_fault on nofault entry while running portupgrade (4.5-STABLE) State-Changed-From-To: feedback->closed State-Changed-By: ceri State-Changed-When: Sun Dec 8 13:01:56 PST 2002 State-Changed-Why: Originator reports problem no longer exists in recent -STABLE. http://www.freebsd.org/cgi/query-pr.cgi?pr=36315 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 13:13:45 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A195E37B404; Sun, 8 Dec 2002 13:13:44 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D33243EA9; Sun, 8 Dec 2002 13:13:44 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8LDix3095922; Sun, 8 Dec 2002 13:13:44 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8LDiiA095918; Sun, 8 Dec 2002 13:13:44 -0800 (PST) Date: Sun, 8 Dec 2002 13:13:44 -0800 (PST) From: Ian Dowse Message-Id: <200212082113.gB8LDiiA095918@freefall.freebsd.org> To: swear@blarg.net, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/36564: fdisk(8) program has misplaced NOT_NOW block in write_s0. 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: fdisk(8) program has misplaced NOT_NOW block in write_s0. State-Changed-From-To: open->closed State-Changed-By: iedowse State-Changed-When: Sun Dec 8 13:08:30 PST 2002 State-Changed-Why: This has been fixed in -CURRENT, and since it relates to a block of code that is #if'd out and clearly not meant to be compiled, there isn't much point in merging the change into -STABLE. http://www.freebsd.org/cgi/query-pr.cgi?pr=36564 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 13:18:16 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C945237B401; Sun, 8 Dec 2002 13:18:15 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40C5143EC2; Sun, 8 Dec 2002 13:18:15 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8LIFx3096165; Sun, 8 Dec 2002 13:18:15 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8LIEDF096161; Sun, 8 Dec 2002 13:18:14 -0800 (PST) Date: Sun, 8 Dec 2002 13:18:14 -0800 (PST) From: Ian Dowse Message-Id: <200212082118.gB8LIEDF096161@freefall.freebsd.org> To: oliver.blasnik@nextra.de, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/35425: System hang while boot on specific SMP motherboard 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: System hang while boot on specific SMP motherboard State-Changed-From-To: feedback->closed State-Changed-By: iedowse State-Changed-When: Sun Dec 8 13:15:20 PST 2002 State-Changed-Why: Submitter no longer has the hardware on which the problem occurred, so there is little use in keeping this open. Thanks for the quick reply! http://www.freebsd.org/cgi/query-pr.cgi?pr=35425 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 13:25:17 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 50C7637B401; Sun, 8 Dec 2002 13:25:16 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F407543EB2; Sun, 8 Dec 2002 13:25:15 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8LPFx3098120; Sun, 8 Dec 2002 13:25:15 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8LPF8m098116; Sun, 8 Dec 2002 13:25:15 -0800 (PST) Date: Sun, 8 Dec 2002 13:25:15 -0800 (PST) From: Ian Dowse Message-Id: <200212082125.gB8LPF8m098116@freefall.freebsd.org> To: mdh@jcn.net, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/36603: X crashes 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: X crashes State-Changed-From-To: open->feedback State-Changed-By: iedowse State-Changed-When: Sun Dec 8 13:24:54 PST 2002 State-Changed-Why: Does this still happen on more recent releases? http://www.freebsd.org/cgi/query-pr.cgi?pr=36603 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 13:27: 8 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7AC0737B401; Sun, 8 Dec 2002 13:27:07 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2729F43EBE; Sun, 8 Dec 2002 13:27:07 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8LR7x3098223; Sun, 8 Dec 2002 13:27:07 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8LR621098219; Sun, 8 Dec 2002 13:27:06 -0800 (PST) Date: Sun, 8 Dec 2002 13:27:06 -0800 (PST) From: Ian Dowse Message-Id: <200212082127.gB8LR621098219@freefall.freebsd.org> To: pblok@inter.NL.net, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/36610: acd0: MODE_SENSE_BIG command timeout - resetting 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: acd0: MODE_SENSE_BIG command timeout - resetting State-Changed-From-To: open->feedback State-Changed-By: iedowse State-Changed-When: Sun Dec 8 13:25:48 PST 2002 State-Changed-Why: Does this still occur with more recent -STABLE sources? If so, please supply the exact messages that appear in the output of dmesg. http://www.freebsd.org/cgi/query-pr.cgi?pr=36610 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 13:36:35 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1B90A37B401; Sun, 8 Dec 2002 13:36:34 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B790743EC2; Sun, 8 Dec 2002 13:36:33 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8LaXx3000484; Sun, 8 Dec 2002 13:36:33 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8LaSUU000478; Sun, 8 Dec 2002 13:36:28 -0800 (PST) Date: Sun, 8 Dec 2002 13:36:28 -0800 (PST) From: Ian Dowse Message-Id: <200212082136.gB8LaSUU000478@freefall.freebsd.org> To: yuri@tsoft.com, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org, joe@FreeBSD.org Subject: Re: kern/36682: USB isochroneous transfer doesn't report back lengths of short transfers 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: USB isochroneous transfer doesn't report back lengths of short transfers State-Changed-From-To: open->patched State-Changed-By: iedowse State-Changed-When: Sun Dec 8 13:33:06 PST 2002 State-Changed-Why: This was fixed in -CURRENT by revision 1.93 of uhci.c, but it has not yet been merged into -STABLE. Responsible-Changed-From-To: freebsd-bugs->joe Responsible-Changed-By: iedowse Responsible-Changed-When: Sun Dec 8 13:33:06 PST 2002 Responsible-Changed-Why: Over to Joe, who fixed this in -CURRENT. http://www.freebsd.org/cgi/query-pr.cgi?pr=36682 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 13:43: 4 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 332A237B401; Sun, 8 Dec 2002 13:43:04 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D433943ED4; Sun, 8 Dec 2002 13:43:03 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8Lh3x3003226; Sun, 8 Dec 2002 13:43:03 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8Lh2s6003222; Sun, 8 Dec 2002 13:43:02 -0800 (PST) Date: Sun, 8 Dec 2002 13:43:02 -0800 (PST) From: Ian Dowse Message-Id: <200212082143.gB8Lh2s6003222@freefall.freebsd.org> To: boulouis@efrei.fr, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/36708: panic: ufs_dirbad: bad dir during pkg_info 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: panic: ufs_dirbad: bad dir during pkg_info State-Changed-From-To: open->feedback State-Changed-By: iedowse State-Changed-When: Sun Dec 8 13:39:34 PST 2002 State-Changed-Why: Has this happened again since? Normally this type of panic occurs as the result of some kind of data corruption, but if you can't reproduce it, there isn't a lot of information to go on. http://www.freebsd.org/cgi/query-pr.cgi?pr=36708 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 13:45:32 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B806E37B401; Sun, 8 Dec 2002 13:45:31 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6263F43E4A; Sun, 8 Dec 2002 13:45:31 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8LjVx3003301; Sun, 8 Dec 2002 13:45:31 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8LjVXS003297; Sun, 8 Dec 2002 13:45:31 -0800 (PST) Date: Sun, 8 Dec 2002 13:45:31 -0800 (PST) From: Ian Dowse Message-Id: <200212082145.gB8LjVXS003297@freefall.freebsd.org> To: jcoutts6@comcast.net, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/36718: install boot before sysinstall halts ata1: resetting 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: install boot before sysinstall halts ata1: resetting devices.. State-Changed-From-To: open->feedback State-Changed-By: iedowse State-Changed-When: Sun Dec 8 13:44:54 PST 2002 State-Changed-Why: Have you seen this error with more recent releases? http://www.freebsd.org/cgi/query-pr.cgi?pr=36718 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 13:51:28 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE09337B401; Sun, 8 Dec 2002 13:51:27 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7AE7D43EC2; Sun, 8 Dec 2002 13:51:27 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8LpRx3005229; Sun, 8 Dec 2002 13:51:27 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8LpRsQ005225; Sun, 8 Dec 2002 13:51:27 -0800 (PST) Date: Sun, 8 Dec 2002 13:51:27 -0800 (PST) From: Ian Dowse Message-Id: <200212082151.gB8LpRsQ005225@freefall.freebsd.org> To: rsc@merit.edu, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/36790: kernel panic in biodone() on 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 Synopsis: kernel panic in biodone() on boot State-Changed-From-To: open->feedback State-Changed-By: iedowse State-Changed-When: Sun Dec 8 13:50:53 PST 2002 State-Changed-Why: Does this still happen with a recent -STABLE? http://www.freebsd.org/cgi/query-pr.cgi?pr=36790 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 14:11:23 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C10E937B401; Sun, 8 Dec 2002 14:11:22 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 68FC743EBE; Sun, 8 Dec 2002 14:11:22 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8MBMx3014141; Sun, 8 Dec 2002 14:11:22 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8MBL9C014137; Sun, 8 Dec 2002 14:11:21 -0800 (PST) Date: Sun, 8 Dec 2002 14:11:21 -0800 (PST) From: Ian Dowse Message-Id: <200212082211.gB8MBL9C014137@freefall.freebsd.org> To: kalts@estpak.ee, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/37311: latent bug: kernel crash in -stable, same as closed kern/35138 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: latent bug: kernel crash in -stable, same as closed kern/35138 State-Changed-From-To: open->closed State-Changed-By: iedowse State-Changed-When: Sun Dec 8 14:10:38 PST 2002 State-Changed-Why: Submitter says that this can be closed. http://www.freebsd.org/cgi/query-pr.cgi?pr=37311 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 14:18:11 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2392D37B401; Sun, 8 Dec 2002 14:18:11 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C2CCB43EC2; Sun, 8 Dec 2002 14:18:10 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8MIAx3014478; Sun, 8 Dec 2002 14:18:10 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8MIAxN014474; Sun, 8 Dec 2002 14:18:10 -0800 (PST) Date: Sun, 8 Dec 2002 14:18:10 -0800 (PST) From: Ian Dowse Message-Id: <200212082218.gB8MIAxN014474@freefall.freebsd.org> To: thornadox@hotmail.com, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: conf/37404: delayed mouse response to draw box or highlight text on X 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: delayed mouse response to draw box or highlight text on X State-Changed-From-To: open->feedback State-Changed-By: iedowse State-Changed-When: Sun Dec 8 14:15:39 PST 2002 State-Changed-Why: Does this still occur on more recent releases? If so, could you provide the mouse probe messages from "dmesg", the "moused_flags" setting from /etc/rc.conf, and the mouse settings in your XF86Config file? http://www.freebsd.org/cgi/query-pr.cgi?pr=37404 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 14:19:37 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 156C537B401; Sun, 8 Dec 2002 14:19:37 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B28D443EA9; Sun, 8 Dec 2002 14:19:36 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB8MJax3014628; Sun, 8 Dec 2002 14:19:36 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB8MJVrC014624; Sun, 8 Dec 2002 14:19:31 -0800 (PST) Date: Sun, 8 Dec 2002 14:19:31 -0800 (PST) From: Ian Dowse Message-Id: <200212082219.gB8MJVrC014624@freefall.freebsd.org> To: jago@telefragged.com, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/37420: Copying large files from an IDE CD-ROM to a harddrive causes a system lock-up. 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: Copying large files from an IDE CD-ROM to a harddrive causes a system lock-up. State-Changed-From-To: open->feedback State-Changed-By: iedowse State-Changed-When: Sun Dec 8 14:19:07 PST 2002 State-Changed-Why: Can you still reproduce this on a more recent -STABLE? http://www.freebsd.org/cgi/query-pr.cgi?pr=37420 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 14:36:18 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C1B2B37B401 for ; Sun, 8 Dec 2002 14:36:16 -0800 (PST) Received: from genius.tao.org.uk (genius.tao.org.uk [212.135.162.51]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC35243EBE for ; Sun, 8 Dec 2002 14:36:15 -0800 (PST) (envelope-from joe@genius.tao.org.uk) Received: by genius.tao.org.uk (Postfix, from userid 100) id 54B3C443D; Sun, 8 Dec 2002 22:35:25 +0000 (GMT) Date: Sun, 8 Dec 2002 22:35:25 +0000 From: Josef Karthauser To: Ian Dowse Cc: freebsd-bugs@FreeBSD.org Subject: Re: kern/35061: After printing to HP Deskjet 656c USB printer, computer hangs Message-ID: <20021208223525.GB31050@genius.tao.org.uk> References: <200212070510.gB75A3nO058507@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Fba/0zbH8Xs+Fj9o" Content-Disposition: inline In-Reply-To: <200212070510.gB75A3nO058507@freefall.freebsd.org> User-Agent: Mutt/1.5.1i 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 --Fba/0zbH8Xs+Fj9o Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable > >I haven't been able to get the printer to do anything at all using > >just -STABLE without the usb patches that Josef submitted. Sending > >a text file directly to /dev/ulpt0 or /dev/unlpt0 just hangs until > >I press CTRL-C. Which patches were these? I thought that I'd committed all the ulpt patches to -stable. Have I missed something? Joe --=20 Josef Karthauser (joe@tao.org.uk) http://www.josef-k.net/ FreeBSD (cvs meister, admin and hacker) http://www.uk.FreeBSD.org/ Physics Particle Theory (student) http://www.pact.cpes.sussex.ac.uk/ =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D An eclectic mix of fact an= d theory. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --Fba/0zbH8Xs+Fj9o Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iEYEARECAAYFAj3zySwACgkQXVIcjOaxUBatswCeNmckkw60SUPm0KGtCgzH6EDT wIEAoLz0RXaKo/DKF3MI7hlzuhWeuOys =1Vko -----END PGP SIGNATURE----- --Fba/0zbH8Xs+Fj9o-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 16:22: 6 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A0C1D37B401 for ; Sun, 8 Dec 2002 16:22:05 -0800 (PST) Received: from ns.itga.com.au (ns.itga.com.au [202.53.40.210]) by mx1.FreeBSD.org (Postfix) with ESMTP id F09A343EA9 for ; Sun, 8 Dec 2002 16:22:03 -0800 (PST) (envelope-from gnb@itga.com.au) Received: from lightning.itga.com.au (lightning.itga.com.au [192.168.71.20]) by ns.itga.com.au (8.9.3/8.9.3) with ESMTP id LAA82458; Mon, 9 Dec 2002 11:21:52 +1100 (EST) (envelope-from gnb@itga.com.au) Received: from lightning.itga.com.au (localhost [127.0.0.1]) by lightning.itga.com.au (8.9.3/8.9.3) with ESMTP id LAA10584; Mon, 9 Dec 2002 11:21:51 +1100 (EST) Message-Id: <200212090021.LAA10584@lightning.itga.com.au> X-Mailer: exmh version 2.4 05/15/2001 with nmh-1.0.4 From: Gregory Bond To: Noah Garrett Wallach Cc: bugs@FreeBSD.ORG Subject: Re: make buildworld failing In-reply-to: Your message of Fri, 06 Dec 2002 10:05:59 -0800. Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 09 Dec 2002 11:21:51 +1100 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 >===> usr.bin/pathchk >make: don't know how to make pathchk.1. Stop If you have a local(ish) CVS repository, make sure you either use "make update" or "cvs update -d" to tell CVS it's OK to create new directories. pathchk is new and we got bit by this when a user just did "cvs update" in /usr/src. If you are using cvsup, then check the config to make sure it has permissions to create new directories. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 16:50: 5 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CDF3E37B404 for ; Sun, 8 Dec 2002 16:50:02 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A4DBF43EA9 for ; Sun, 8 Dec 2002 16:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB90o1x3055610 for ; Sun, 8 Dec 2002 16:50:01 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB90o1hc055609; Sun, 8 Dec 2002 16:50:01 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0381337B401 for ; Sun, 8 Dec 2002 16:45:04 -0800 (PST) Received: from InterJet.dellroad.org (adsl-63-194-81-26.dsl.snfc21.pacbell.net [63.194.81.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CF6B43EA9 for ; Sun, 8 Dec 2002 16:45:03 -0800 (PST) (envelope-from archie@dellroad.org) Received: from arch20m.dellroad.org (arch20m.dellroad.org [10.1.1.20]) by InterJet.dellroad.org (8.9.1a/8.9.1) with ESMTP id QAA16599 for ; Sun, 8 Dec 2002 16:37:09 -0800 (PST) Received: from arch20m.dellroad.org (localhost [127.0.0.1]) by arch20m.dellroad.org (8.12.6/8.12.6) with ESMTP id gB90aWFF076083 for ; Sun, 8 Dec 2002 16:36:32 -0800 (PST) (envelope-from archie@arch20m.dellroad.org) Received: (from archie@localhost) by arch20m.dellroad.org (8.12.6/8.12.6/Submit) id gB90aWrV076082; Sun, 8 Dec 2002 16:36:32 -0800 (PST) Message-Id: <200212090036.gB90aWrV076082@arch20m.dellroad.org> Date: Sun, 8 Dec 2002 16:36:32 -0800 (PST) From: Archie Cobbs Reply-To: Archie Cobbs To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/46110: why does fsck work with / mounted r/o but not growfs? 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: 46110 >Category: bin >Synopsis: why does fsck work with / mounted r/o but not growfs? >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Dec 08 16:50:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Archie Cobbs >Release: FreeBSD 4.7-STABLE i386 >Organization: Packet Design >Environment: System: FreeBSD arch20m.dellroad.org 4.7-STABLE FreeBSD 4.7-STABLE #0: Sat Nov 23 14:42:21 PST 2002 archie@arch20m.dellroad.org:/usr/obj/usr/src/sys/THINKPAD i386 >Description: Tried to use growfs on the / partition when booted in single-user mode, while / was still mounted read-only. growfs seemed to work. Then I typed "reboot". After the reboot, 'df' showed the partition to be the same size and things were screwy. Suggestion #1: document more clearly in the growfs man page that you can't use it on a file system even if that file system is mounted read-only. Suggestion #2: when growfs runs, check that the file system is not already mounted, and return an error if so. Suggestion #3: if fsck can work with / mounted read-only, why can't growfs? Snippet from the freebsd-current thread "backgroud fsck is still locking up system" Date: Sun, 8 Dec 2002 08:54:03 +1100 (EST) From: Bruce Evans In-Reply-To: <200212072033.gB7KXddC072338@arch20m.dellroad.org> Message-ID: <20021208083912.G14505-100000@gamplex.bde.org> To: Archie Cobbs On Sat, 7 Dec 2002, Archie Cobbs wrote: > Bruce Evans wrote: > > Er, it should be obvious that growfs can't reasonably work on the mounted > > partitions. growfs.1 doesn't exist, but growfs.8 already has the warning > > in a general form: > > > > .... Currently growfs can only enlarge unmounted file systems. Do not > > try enlarging a mounted file system, your system may panic and you will > > not be able to use the file system any longer... > > Well, I suspected that it might not work... but I would disagree that it > was *obvious* that it would not work. This was before "mount" had been > run, so / was supposedly mounted (?) read-only. Perhaps the unobvious point is that fsck could work. If the mount is r/w, then neither growfs nor fsck can even open the partition r/w. fsck somehow works in the case of a r/o root, but growfs apparently doesn't. I think fsck depends on no other processes making (significant) vfs syscalls for on the same partition while it is running (even r/o ones might be harmful if they caused reads of metadata which might be inconsistent). Then when fsck has finished it calls mount(... MNT_RELOAD...) to sync the metadata. growfs doesn't do this, and even if it did it is not clear that it does all the necessary syncing (growfs may change more or different metadata). However, I think it does most of the necessary things. Bruce >How-To-Repeat: See above. >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 Dec 8 19:25:45 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C34D37B401 for ; Sun, 8 Dec 2002 19:25:43 -0800 (PST) Received: from abc.com (219.224.27.24.cfl.rr.com [24.27.224.219]) by mx1.FreeBSD.org (Postfix) with SMTP id BDF9543EC5 for ; Sun, 8 Dec 2002 19:25:41 -0800 (PST) (envelope-from free-call@personal.ro) Date: Mon, 09 Dec 2002 03:25:52 GMT To: freebsd-bugs@freebsd.org From: free-call@personal.ro Subject: Бесплатные Звонки по мобильнику [1470294] Importance: Normal Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 8bit X-Mailer: The Bat! (v1.53d) X-Priority: 3 (Normal) Message-Id: <20021209032541.BDF9543EC5@mx1.FreeBSD.org> 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 Здравствуйте Сколько вы платите за мобильный телефон ?? Мы можем сделать все исходящие звонки с вашего телефона БЕСПЛАТНЫМИ !! Подробности на сайте http://www.angelfire.com/droid/fgsmf/ ИЗВИНИТЕ, ЕСЛИ ЭТА ИНФОРМАЦИЯ ВАМ НЕ ПРИГОДИЛАСЬ. Данное письмо отослано в соответствии с п. 4 ст. 29 Конституции РФ. Ваш электронный адрес получен из открытых источников. Повторно это письмо к вам гарантированно не придет To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 23:20:11 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 11F0B37B401 for ; Sun, 8 Dec 2002 23:20:04 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3199143EC5 for ; Sun, 8 Dec 2002 23:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB97K2x3069581 for ; Sun, 8 Dec 2002 23:20:02 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB97K2Qt069580; Sun, 8 Dec 2002 23:20:02 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA8B137B401 for ; Sun, 8 Dec 2002 23:12:55 -0800 (PST) Received: from fep03-svc.swip.net (fep03.swip.net [130.244.199.131]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E9AD43E4A for ; Sun, 8 Dec 2002 23:12:54 -0800 (PST) (envelope-from hselasky@c2i.net) Received: from mta-int.swip.net ([192.168.145.27]) by fep03-svc.swip.net with SMTP id <20021209071253.NGNL5799.fep03-svc.swip.net@mta-int.swip.net> for ; Mon, 9 Dec 2002 08:12:53 +0100 Message-Id: <20021209071253.NGNL5799.fep03-svc.swip.net@mta-int.swip.net> Date: Mon, 9 Dec 2002 8:12:53 +0100 From: To: FreeBSD-gnats-submit@FreeBSD.org Subject: i386/46113: busspace bug 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: 46113 >Category: i386 >Synopsis: busspace bug >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 Dec 08 23:20:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: - >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD curly.tele2.no 5.0-CURRENT FreeBSD 5.0-CURRENT #458: Sat Dec 7 18:40:33 CET 2002 root@curly.tele2.no:/usr/obj/usr/src/sys/custom i386 >Description: Some busspace functions lack check for (count == 0). Some busspace functions interpret (count == 0) as (unsigned)(-1) + 1. >How-To-Repeat: >Fix: --- bus_at386.h.diff begins here --- *** /mnt3/src/sys/i386/include/bus_at386.h Mon Jul 29 12:21:22 2002 --- bus_at386.h Mon Nov 18 17:42:32 2002 *************** *** 277,282 **** --- 277,284 ---- #endif { #ifdef __GNUC__ + if(count != 0) + { __asm __volatile(" \n\ cld \n\ 1: movb (%2),%%al \n\ *************** *** 285,290 **** --- 287,293 ---- "=D" (addr), "=c" (count) : "r" (bsh + offset), "0" (addr), "1" (count) : "%eax", "memory"); + } #endif } #endif *************** *** 306,311 **** --- 309,316 ---- #endif { #ifdef __GNUC__ + if(count != 0) + { __asm __volatile(" \n\ cld \n\ 1: movw (%2),%%ax \n\ *************** *** 314,319 **** --- 319,325 ---- "=D" (addr), "=c" (count) : "r" (bsh + offset), "0" (addr), "1" (count) : "%eax", "memory"); + } #endif } #endif *************** *** 335,340 **** --- 341,348 ---- #endif { #ifdef __GNUC__ + if(count != 0) + { __asm __volatile(" \n\ cld \n\ 1: movl (%2),%%eax \n\ *************** *** 343,348 **** --- 351,357 ---- "=D" (addr), "=c" (count) : "r" (bsh + offset), "0" (addr), "1" (count) : "%eax", "memory"); + } #endif } #endif *************** *** 384,389 **** --- 393,400 ---- { int _port_ = bsh + offset; #ifdef __GNUC__ + if(count != 0) + { __asm __volatile(" \n\ cld \n\ 1: inb %w2,%%al \n\ *************** *** 393,398 **** --- 404,410 ---- "=D" (addr), "=c" (count), "=d" (_port_) : "0" (addr), "1" (count), "2" (_port_) : "%eax", "memory", "cc"); + } #endif } #endif *************** *** 426,431 **** --- 438,445 ---- { int _port_ = bsh + offset; #ifdef __GNUC__ + if(count != 0) + { __asm __volatile(" \n\ cld \n\ 1: inw %w2,%%ax \n\ *************** *** 435,440 **** --- 449,455 ---- "=D" (addr), "=c" (count), "=d" (_port_) : "0" (addr), "1" (count), "2" (_port_) : "%eax", "memory", "cc"); + } #endif } #endif *************** *** 468,473 **** --- 483,490 ---- { int _port_ = bsh + offset; #ifdef __GNUC__ + if(count != 0) + { __asm __volatile(" \n\ cld \n\ 1: inl %w2,%%eax \n\ *************** *** 477,482 **** --- 494,500 ---- "=D" (addr), "=c" (count), "=d" (_port_) : "0" (addr), "1" (count), "2" (_port_) : "%eax", "memory", "cc"); + } #endif } #endif *************** *** 616,621 **** --- 634,641 ---- #endif { #ifdef __GNUC__ + if(count != 0) + { __asm __volatile(" \n\ cld \n\ 1: lodsb \n\ *************** *** 624,629 **** --- 644,650 ---- "=S" (addr), "=c" (count) : "r" (bsh + offset), "0" (addr), "1" (count) : "%eax", "memory", "cc"); + } #endif } #endif *************** *** 645,650 **** --- 666,673 ---- #endif { #ifdef __GNUC__ + if(count != 0) + { __asm __volatile(" \n\ cld \n\ 1: lodsw \n\ *************** *** 653,658 **** --- 676,682 ---- "=S" (addr), "=c" (count) : "r" (bsh + offset), "0" (addr), "1" (count) : "%eax", "memory", "cc"); + } #endif } #endif *************** *** 674,679 **** --- 698,705 ---- #endif { #ifdef __GNUC__ + if(count != 0) + { __asm __volatile(" \n\ cld \n\ 1: lodsl \n\ *************** *** 682,687 **** --- 708,714 ---- "=S" (addr), "=c" (count) : "r" (bsh + offset), "0" (addr), "1" (count) : "%eax", "memory", "cc"); + } #endif } #endif *************** *** 724,729 **** --- 751,758 ---- { int _port_ = bsh + offset; #ifdef __GNUC__ + if(count != 0) + { __asm __volatile(" \n\ cld \n\ 1: lodsb \n\ *************** *** 733,738 **** --- 762,768 ---- "=d" (_port_), "=S" (addr), "=c" (count) : "0" (_port_), "1" (addr), "2" (count) : "%eax", "memory", "cc"); + } #endif } #endif *************** *** 766,771 **** --- 796,803 ---- { int _port_ = bsh + offset; #ifdef __GNUC__ + if(count != 0) + { __asm __volatile(" \n\ cld \n\ 1: lodsw \n\ *************** *** 775,780 **** --- 807,813 ---- "=d" (_port_), "=S" (addr), "=c" (count) : "0" (_port_), "1" (addr), "2" (count) : "%eax", "memory", "cc"); + } #endif } #endif *************** *** 808,813 **** --- 841,848 ---- { int _port_ = bsh + offset; #ifdef __GNUC__ + if(count != 0) + { __asm __volatile(" \n\ cld \n\ 1: lodsl \n\ *************** *** 817,822 **** --- 852,858 ---- "=d" (_port_), "=S" (addr), "=c" (count) : "0" (_port_), "1" (addr), "2" (count) : "%eax", "memory", "cc"); + } #endif } #endif --- bus_at386.h.diff ends here --- ------------------------------------------------- WebMail fra Tele2 http://www.tele2.no ------------------------------------------------- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 8 23:49:11 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3AA2837B404; Sun, 8 Dec 2002 23:49:10 -0800 (PST) Received: from freebsd.klondike.ru (freebsd.klondike.ru [195.170.237.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7AA0C43EDE; Sun, 8 Dec 2002 23:49:08 -0800 (PST) (envelope-from zhecka@freebsd.klondike.ru) Received: from freebsd.klondike.ru (localhost [127.0.0.1]) by freebsd.klondike.ru (8.12.6/8.12.3) with ESMTP id gB97nh30007159; Mon, 9 Dec 2002 10:49:43 +0300 (MSK) (envelope-from zhecka@freebsd.klondike.ru) Received: (from zhecka@localhost) by freebsd.klondike.ru (8.12.6/8.12.3/Submit) id gB97nfp5007158; Mon, 9 Dec 2002 10:49:41 +0300 (MSK) (envelope-from zhecka) Date: Mon, 9 Dec 2002 10:49:41 +0300 From: Kaltashkin Eugene To: Ian Dowse Cc: zhecka@klondike.ru, freebsd-bugs@FreeBSD.org Subject: Re: kern/36204: cannot install -STABLE from CD-ROM Drive Message-ID: <20021209104941.A7112@freebsd.klondike.ru> References: <200212081809.gB8I91oj041058@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200212081809.gB8I91oj041058@freefall.freebsd.org>; from iedowse@FreeBSD.org on Sun, Dec 08, 2002 at 10:09:01AM -0800 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 Sun, Dec 08, 2002 at 10:09:01AM -0800, Ian Dowse wrote: > Synopsis: cannot install -STABLE from CD-ROM Drive > > State-Changed-From-To: open->feedback > State-Changed-By: iedowse > State-Changed-When: Sun Dec 8 10:08:11 PST 2002 > State-Changed-Why: > > Can you still reproduce this on a more recent -STABLE? No, now it's OK. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=36204 > > > > -- Best Regards Kaltashkin Eugene ZHECKA-RIPN To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 9 0:40: 6 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A967837B401 for ; Mon, 9 Dec 2002 00:40:04 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6190943EA9 for ; Mon, 9 Dec 2002 00:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB98e3x3091372 for ; Mon, 9 Dec 2002 00:40:03 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB98e242091371; Mon, 9 Dec 2002 00:40:02 -0800 (PST) Date: Mon, 9 Dec 2002 00:40:02 -0800 (PST) Message-Id: <200212090840.gB98e242091371@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: stacey Subject: Re: bin/46107: killall(1) can prematurely kill itself Reply-To: stacey 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/46107; it has been noted by GNATS. From: stacey To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: bin/46107: killall(1) can prematurely kill itself Date: Mon, 9 Dec 2002 19:29:42 +1100 previous diff has inconsistencies with verbosity options and is just poor in general. :\ Index: killall.c =================================================================== RCS file: /home/stacey_/src/freebsd/src/usr.bin/killall/killall.c,v retrieving revision 1.19 diff -u -r1.19 killall.c --- killall.c 30 Jun 2002 05:25:01 -0000 1.19 +++ killall.c 9 Dec 2002 08:18:47 -0000 @@ -117,6 +117,7 @@ int zflag = 0; uid_t uid = 0; dev_t tdev = 0; + pid_t mypid; char thiscmd[MAXCOMLEN + 1]; pid_t thispid; uid_t thisuid; @@ -289,6 +290,7 @@ nprocs = size / sizeof(struct kinfo_proc); if (dflag) printf("nprocs %d\n", nprocs); + mypid = getpid(); for (i = 0; i < nprocs; i++) { if ((procs[i].ki_stat & SZOMB) == SZOMB && !zflag) @@ -299,6 +301,8 @@ thistdev = procs[i].ki_tdev; thisuid = procs[i].ki_ruid; /* real uid */ + if (thispid == mypid) + continue; matched = 1; if (user) { if (thisuid != uid) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 9 0:40:17 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E19D837B401 for ; Mon, 9 Dec 2002 00:40:10 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 17A1543EBE for ; Mon, 9 Dec 2002 00:40:10 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB98e4x3091386 for ; Mon, 9 Dec 2002 00:40:04 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB98e4sQ091385; Mon, 9 Dec 2002 00:40:04 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B810C37B401 for ; Mon, 9 Dec 2002 00:38:06 -0800 (PST) Received: from istlab.dmst.aueb.gr (istlab.dmst.aueb.gr [195.251.253.207]) by mx1.FreeBSD.org (Postfix) with ESMTP id B2BDC43EB2 for ; Mon, 9 Dec 2002 00:38:05 -0800 (PST) (envelope-from dds@istlab.dmst.aueb.gr) Received: from istlab.dmst.aueb.gr (localhost [127.0.0.1]) by istlab.dmst.aueb.gr (8.12.6/8.12.6) with ESMTP id gB98bR4c049776; Mon, 9 Dec 2002 10:37:27 +0200 (EET) (envelope-from dds@istlab.dmst.aueb.gr) Received: (from dds@localhost) by istlab.dmst.aueb.gr (8.12.6/8.12.6/Submit) id gB98bIH6049775; Mon, 9 Dec 2002 10:37:18 +0200 (EET) Message-Id: <200212090837.gB98bIH6049775@istlab.dmst.aueb.gr> Date: Mon, 9 Dec 2002 10:37:18 +0200 (EET) From: Diomidis Spinellis Reply-To: Diomidis Spinellis To: FreeBSD-gnats-submit@FreeBSD.org Cc: Isidor Kouvelas , Orion Hodson , Archie Cobbs , Stephen Casner X-Send-Pr-Version: 3.113 Subject: kern/46116: EHOSTDOWN when ARP replies get drowned by data following ARP pre-requests 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: 46116 >Category: kern >Synopsis: EHOSTDOWN when ARP replies get drowned by data following ARP pre-requests >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 Dec 09 00:40:03 PST 2002 >Closed-Date: >Last-Modified: >Originator: Diomidis Spinellis >Release: FreeBSD 4.7-RELEASE-p2 i386 >Organization: Athens University of Economics and Business >Environment: System: FreeBSD spiti 4.7-RELEASE-p2 FreeBSD 4.7-RELEASE-p2 #7: Thu Dec 5 02:59:36 EET 2002 dds@spiti:/vol/obj/vol/src/sys/SPITI i386 >Description: The change introduced by PR-25517 http://www.freebsd.org/cgi/query-pr.cgi?pr=25517 has arp_rtrequest (netinet/if_ether.c) start making ARP queries arpt_maxtries * arpt_down seconds before the ARP entry expiry time in an effort to avoid the ARP entry's expiry. In such a case the ARP reply can get drowned by the actual data the host will send following the ARP request. The original change has the la_asked counter get incremented after each pre-request. As a result, when no reply is received after all pre-requests are made, the host (unfairly) gets marked as down. As an example, a client playing MP3 music from an NFS server will pause its playback for 20 seconds (host_down_time) every 20 minutes (max_age). >How-To-Repeat: To avoid waiting for 20 minutes and make the packets more observable set: sysctl net.link.ether.inet.max_age=60 sysctl net.link.ether.inet.host_down_time=5 On a 10Mb/s ethernet have a 150MHz Pentium client running FreeBSD play 192Mb/s MP3 data from an NFS-mounted server file using mpg123. Monitor the packet exchange from a third host and install a kernel breakpoint in in_arpinput to verify that the client does send ARP replies. The problem will appear as follows: 16:05:02.953682 client.1622700147 > server.nfs: 112 read [|nfs] 16:05:02.955113 arp who-has client (88:2:8:1:3:f6) tell server // Server drowns the client's reply with data it immediately sends 16:05:02.956720 server.nfs > client.1622700147: reply ok 1472 read (frag 54854:1480@0+) 16:05:02.957972 server > client: (frag 54854:1480@1480+) // [...] no ARP reply 16:05:08.141564 arp who-has client (88:2:8:1:3:f6) tell server // [...] no ARP reply 16:05:12.891851 arp who-has client (88:2:8:1:3:f6) tell server // [...] no ARP reply 16:05:18.006188 arp who-has client (88:2:8:1:3:f6) tell server // [...] no ARP reply 16:05:23.121545 arp who-has client (88:2:8:1:3:f6) tell server // [...] no ARP reply // ARP entry expires and arpt_maxtries is reached // server logs /kernel: nfsd send error 64 // client stops getting replies from the server: 16:05:26.964593 client.1622700218 > server.nfs: 96 access [|nfs] 16:05:27.014233 client.1622700218 > server.nfs: 96 access [|nfs] 16:05:27.104235 client.1622700218 > server.nfs: 96 access [|nfs] 16:05:27.213220 client.1622700219 > server.nfs: 112 read [|nfs] 16:05:27.274168 client.1622700218 > server.nfs: 96 access [|nfs] 16:05:27.304173 client.1622700219 > server.nfs: 112 read [|nfs] 16:05:27.494200 client.1622700219 > server.nfs: 112 read [|nfs] 16:05:27.604169 client.1622700218 > server.nfs: 96 access [|nfs] 16:05:27.864192 client.1622700219 > server.nfs: 112 read [|nfs] 16:05:28.254128 client.1622700218 > server.nfs: 96 access [|nfs] 16:05:28.594132 client.1622700219 > server.nfs: 112 read [|nfs] 16:05:29.544090 client.1622700218 > server.nfs: 96 access [|nfs] 16:05:30.044069 client.1622700219 > server.nfs: 112 read [|nfs] 16:05:32.113932 client.1622700218 > server.nfs: 96 access [|nfs] 16:05:32.933903 client.1622700219 > server.nfs: 112 read [|nfs] // After host_down seconds the ARP request-reply succeeds, // the serves sends the - now mbuf-held - packet, and communication resumes: 16:05:32.935318 arp who-has client (88:2:8:1:3:f6) tell server 16:05:32.935651 arp reply client is-at 0:0:e8:32:81:e8 16:05:32.936735 server > client: (frag 54997:928@7400) 16:05:37.243660 client.1622700218 > server.nfs: 96 access [|nfs] 16:05:37.244381 server.nfs > client.1622700218: reply ok 120 access c 60b870bc 16:05:37.245177 client.1622700220 > server.nfs: 96 access [|nfs] 16:05:37.245883 server.nfs > client.1622700220: reply ok 120 access c e523ff20 16:05:38.703607 client.1622700219 > server.nfs: 112 read [|nfs] 16:05:38.707055 server.nfs > client.1622700219: reply ok 1472 read (frag 55020:1480@0+) 16:05:38.708308 server > client: (frag 55020:1480@1480+) 16:05:38.709566 server > client: (frag 55020:1480@2960+) 16:05:38.710804 server > client: (frag 55020:1480@4440+) Repeating the above procedure with a breakpoint in in_arpinput will prove that the client does indeed send a reply, bu will not result in a problem, since the network is clear by the time you type continue in the kernel debugger. >Fix: The problem can be fixed in three different ways: 1. Remove the ARP pre-request code 2. Hold the packet in an mbuf when performing a pre-request 3. Do not mark a host that does not reply to ARP pre-requests as down Solutions 1 and 2 can affect performance, so the third solution was adopted. An additional counter la_preask now counts queries before the ARP entry expiry time. This counter is not used for marking a host down; the original counter la_asked is now only used to count retries for expired ARP entries and mark a host down if needed. The fix also corrects the data type and comment used for la_asked. *** if_ether.c 2002/12/08 14:31:40 1.1 --- if_ether.c 2002/12/08 16:11:26 *************** *** 95,101 **** LIST_ENTRY(llinfo_arp) la_le; struct rtentry *la_rt; struct mbuf *la_hold; /* last packet until resolved/timeout */ ! long la_asked; /* last time we QUERIED for this addr */ #define la_timer la_rt->rt_rmx.rmx_expire /* deletion time in seconds */ }; --- 95,102 ---- LIST_ENTRY(llinfo_arp) la_le; struct rtentry *la_rt; struct mbuf *la_hold; /* last packet until resolved/timeout */ ! int la_preask; /* #times we preQUERIED for this addr */ ! int la_asked; /* #times we QUERIED for this addr */ #define la_timer la_rt->rt_rmx.rmx_expire /* deletion time in seconds */ }; *************** *** 438,450 **** * arpt_down interval. */ if ((rt->rt_expire != 0) && ! (time_second + (arp_maxtries - la->la_asked) * arpt_down > rt->rt_expire)) { arprequest(ifp, &SIN(rt->rt_ifa->ifa_addr)->sin_addr, &SIN(dst)->sin_addr, IF_LLADDR(ifp)); ! la->la_asked++; } bcopy(LLADDR(sdl), desten, sdl->sdl_alen); --- 439,451 ---- * arpt_down interval. */ if ((rt->rt_expire != 0) && ! (time_second + (arp_maxtries - la->la_preask) * arpt_down > rt->rt_expire)) { arprequest(ifp, &SIN(rt->rt_ifa->ifa_addr)->sin_addr, &SIN(dst)->sin_addr, IF_LLADDR(ifp)); ! la->la_preask++; } bcopy(LLADDR(sdl), desten, sdl->sdl_alen); *************** *** 480,486 **** else { rt->rt_flags |= RTF_REJECT; rt->rt_expire += arpt_down; ! la->la_asked = 0; } } --- 481,487 ---- else { rt->rt_flags |= RTF_REJECT; rt->rt_expire += arpt_down; ! la->la_preask = la->la_asked = 0; } } *************** *** 734,740 **** if (rt->rt_expire) rt->rt_expire = time_second + arpt_keep; rt->rt_flags &= ~RTF_REJECT; ! la->la_asked = 0; if (la->la_hold) { (*ifp->if_output)(ifp, la->la_hold, rt_key(rt), rt); --- 735,741 ---- if (rt->rt_expire) rt->rt_expire = time_second + arpt_keep; rt->rt_flags &= ~RTF_REJECT; ! la->la_preask = la->la_asked = 0; if (la->la_hold) { (*ifp->if_output)(ifp, la->la_hold, rt_key(rt), rt); *************** *** 858,864 **** if (rt->rt_refcnt > 0 && (sdl = SDL(rt->rt_gateway)) && sdl->sdl_family == AF_LINK) { sdl->sdl_alen = 0; ! la->la_asked = 0; rt->rt_flags &= ~RTF_REJECT; return; } --- 859,865 ---- if (rt->rt_refcnt > 0 && (sdl = SDL(rt->rt_gateway)) && sdl->sdl_family == AF_LINK) { sdl->sdl_alen = 0; ! la->la_preask = la->la_asked = 0; rt->rt_flags &= ~RTF_REJECT; return; } The following packets demonstrate the fixed behavior: 19:05:20.022221 arp who-has client (88:2:8:1:3:f6) tell server 19:05:20.023796 server.nfs > client.1622712534: reply ok 1472 read (frag 10734:1480@0+) 19:05:20.025042 server > client: (frag 10734:1480@1480+) // [...] no ARP reply 19:05:24.844843 arp who-has client (88:2:8:1:3:f6) tell server // [...] no ARP reply 19:05:29.959532 arp who-has client (88:2:8:1:3:f6) tell server // [...] no ARP reply 19:05:35.072951 arp who-has client (88:2:8:1:3:f6) tell server // [...] no ARP reply 19:05:39.824958 arp who-has client (88:2:8:1:3:f6) tell server // [...] no ARP reply // ARP entry has expired; server now holds the packet and WAITS for a reply 19:05:43.988615 arp who-has client (88:2:8:1:3:f6) tell server 19:05:43.988966 arp reply client is-at 0:0:e8:32:81:e8 // Reply-received, communication resumes without interruption: 19:05:43.990042 server > client: (frag 10827:928@7400) 19:05:44.095164 client.1622712606 > server.nfs: 112 read [|nfs] 19:05:44.097995 server.nfs > client.1622712606: reply ok 1472 read (frag 10828:1480@0+) 19:05:44.099237 server > client: (frag 10828:1480@1480+) >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 Dec 9 0:43:59 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33C8437B401; Mon, 9 Dec 2002 00:43:59 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D383243EA9; Mon, 9 Dec 2002 00:43:58 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB98hwx3093270; Mon, 9 Dec 2002 00:43:58 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB98hvfg093266; Mon, 9 Dec 2002 00:43:57 -0800 (PST) Date: Mon, 9 Dec 2002 00:43:57 -0800 (PST) From: Ian Dowse Message-Id: <200212090843.gB98hvfg093266@freefall.freebsd.org> To: nkoch@demig.de, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/36300: acd0c: 'device not configured ' after stable build from cvs rep. 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: acd0c: 'device not configured ' after stable build from cvs rep. State-Changed-From-To: feedback->closed State-Changed-By: iedowse State-Changed-When: Mon Dec 9 00:42:17 PST 2002 State-Changed-Why: Submitter confirms that running the new MAKEDEV fixed this. http://www.freebsd.org/cgi/query-pr.cgi?pr=36300 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 9 0:45:46 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1FC5537B404; Mon, 9 Dec 2002 00:45:46 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9266A43EA9; Mon, 9 Dec 2002 00:45:45 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB98jjx3093349; Mon, 9 Dec 2002 00:45:45 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB98jii8093345; Mon, 9 Dec 2002 00:45:44 -0800 (PST) Date: Mon, 9 Dec 2002 00:45:44 -0800 (PST) From: Ian Dowse Message-Id: <200212090845.gB98jii8093345@freefall.freebsd.org> To: zhecka@klondike.ru, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/36204: cannot install -STABLE from CD-ROM Drive 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: cannot install -STABLE from CD-ROM Drive State-Changed-From-To: feedback->closed State-Changed-By: iedowse State-Changed-When: Mon Dec 9 00:44:51 PST 2002 State-Changed-Why: Submitter confirms that this has been fixed. http://www.freebsd.org/cgi/query-pr.cgi?pr=36204 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 9 3:40: 7 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C264737B401 for ; Mon, 9 Dec 2002 03:40:05 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1641043EC5 for ; Mon, 9 Dec 2002 03:40:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB9Be4x3042877 for ; Mon, 9 Dec 2002 03:40:04 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB9Be4Zq042876; Mon, 9 Dec 2002 03:40:04 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 38A0D37B401 for ; Mon, 9 Dec 2002 03:39:09 -0800 (PST) Received: from vbook.express.ru (asplinux.ru [195.133.213.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id AED4E43ED1 for ; Mon, 9 Dec 2002 03:39:07 -0800 (PST) (envelope-from vova@sw.ru) Received: from vova by vbook.express.ru with local (Exim 4.10) id 18LMFe-0001eC-00 for FreeBSD-gnats-submit@freebsd.org; Mon, 09 Dec 2002 14:39:06 +0300 Message-Id: Date: Mon, 09 Dec 2002 14:39:06 +0300 From: "Vladimir B.Grebenschikov" Reply-To: "Vladimir B.Grebenschikov" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/46122: msgget() can return negative value after extensive use 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: 46122 >Category: kern >Synopsis: msgget() can return negative value after extensive use >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 Dec 09 03:40:04 PST 2002 >Closed-Date: >Last-Modified: >Originator: Vladimir B. Grebenschikov >Release: FreeBSD 5.0-RC i386 >Organization: SWsoft >Environment: System: FreeBSD vbook.express.ru 5.0-RC FreeBSD 5.0-RC #23: Sun Dec 8 14:54:44 MSK 2002 root@vbook.express.ru:/usr/local/src/sys/i386/compile/VBOOK i386 This bug also appears in 4-STABLE branch >Description: msgget() function according to manpage should return positive identifier, but after some hours of extencive use kernel counter overflowed and negative number is returned. >How-To-Repeat: I have use perl test suite. perl lib/IPC/SysV.t >Fix: Below kernel patch to fix problem Index: kern/sysv_msg.c =================================================================== RCS file: /ext/vcvs/src/sys/kern/sysv_msg.c,v retrieving revision 1.23.2.3.10000.7 diff -u -r1.23.2.3.10000.7 sysv_msg.c --- kern/sysv_msg.c 2 Dec 2002 16:44:36 -0000 1.23.2.3.10000.7 +++ kern/sysv_msg.c 9 Dec 2002 10:24:45 -0000 @@ -440,7 +440,7 @@ msqptr->msg_perm.gid = cred->cr_gid; msqptr->msg_perm.mode = (msgflg & 0777); /* Make sure that the returned msqid is unique */ - msqptr->msg_perm.seq++; + msqptr->msg_perm.seq = (msqptr->msg_perm.seq+1) & 0x7fff; msqptr->msg_first = NULL; msqptr->msg_last = NULL; msqptr->msg_cbytes = 0; >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 9 4:30: 4 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC22137B401 for ; Mon, 9 Dec 2002 04:30:02 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB52043EB2 for ; Mon, 9 Dec 2002 04:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB9CU1x3061955 for ; Mon, 9 Dec 2002 04:30:01 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB9CU1Rv061954; Mon, 9 Dec 2002 04:30:01 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7059937B401 for ; Mon, 9 Dec 2002 04:26:54 -0800 (PST) Received: from goliath.siemens.de (goliath.siemens.de [192.35.17.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 967E743EBE for ; Mon, 9 Dec 2002 04:26:52 -0800 (PST) (envelope-from andre.albsmeier@mchp.siemens.de) Received: from mail3.siemens.de (mail3.siemens.de [139.25.208.14]) by goliath.siemens.de (8.11.6/8.11.6) with ESMTP id gB9CQkq08421 for ; Mon, 9 Dec 2002 13:26:46 +0100 (MET) Received: from curry.mchp.siemens.de (curry.mchp.siemens.de [139.25.42.7]) by mail3.siemens.de (8.11.6/8.11.6) with ESMTP id gB9CQjr28751 for ; Mon, 9 Dec 2002 13:26:45 +0100 (MET) Received: (from localhost) by curry.mchp.siemens.de (8.12.6/8.12.6) id gB9CQjUY022599 for FreeBSD-gnats-submit@freebsd.org; Mon, 9 Dec 2002 13:26:45 +0100 (CET) Message-Id: <200212091226.gB9CQjJc046365@curry.mchp.siemens.de> Date: Mon, 9 Dec 2002 13:26:45 +0100 (CET) From: Andre Albsmeier To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/46123: PATCH: tcpdump needs -a flag if netmask is set to 0xffffffff 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: 46123 >Category: bin >Synopsis: PATCH: tcpdump needs -a flag if netmask is set to 0xffffffff >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Dec 09 04:30:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Andre Albsmeier >Release: FreeBSD 4.7-STABLE i386 >Organization: >Environment: System: 4.7-STABLE FreeBSD #0: Fri Nov 29 09:27:20 CET 2002 >Description: If the -a flag was not specified tcpdump doesn't convert network and broadcast addresses to names. However, it treats everything as a broadcast address if the interface has a netmask of 0xffffffff (recent versions of ppp set the netmask to 0xffffffff for the tun0 interface). This means that even non-broadcast/network destined traffic won't get their addresses converted. >How-To-Repeat: If you use a recent version of ppp the netmask should be 0xffffffff: andre@gate:~>ifconfig tun0 tun0: flags=8051 mtu 1492 inet 217.88.xxx.yyy --> 217.5.98.95 netmask 0xffffffff Opened by PID 15634 If you run a tcpdump on tun0 (without -a) you see your traffic but it won't be converted to names. >Fix: The patch disables the check for broadcast/network addresses if the netmask is set to 0xffffffff: --- contrib/tcpdump/addrtoname.c.ORI Thu Sep 12 09:56:44 2002 +++ contrib/tcpdump/addrtoname.c Sat Sep 14 12:35:10 2002 @@ -200,6 +200,7 @@ if (!nflag && (addr & f_netmask) == f_localnet && (aflag || + netmask == 0xffffffff || !((addr & ~netmask) == 0 || (addr | netmask) == 0xffffffff))) { if (!setjmp(getname_env)) { (void)setsignal(SIGALRM, nohostname); >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 Dec 9 8:35:58 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F9CB37B401; Mon, 9 Dec 2002 08:35:58 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDE2F43EA9; Mon, 9 Dec 2002 08:35:57 -0800 (PST) (envelope-from orion@FreeBSD.org) Received: from freefall.freebsd.org (orion@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB9GZvx3085278; Mon, 9 Dec 2002 08:35:57 -0800 (PST) (envelope-from orion@freefall.freebsd.org) Received: (from orion@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB9GZvqg085274; Mon, 9 Dec 2002 08:35:57 -0800 (PST) Date: Mon, 9 Dec 2002 08:35:57 -0800 (PST) From: Orion Hodson Message-Id: <200212091635.gB9GZvqg085274@freefall.freebsd.org> To: orion@FreeBSD.org, freebsd-bugs@FreeBSD.org, orion@FreeBSD.org Subject: Re: kern/46116: EHOSTDOWN when ARP replies get drowned by data following ARP pre-requests 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: EHOSTDOWN when ARP replies get drowned by data following ARP pre-requests Responsible-Changed-From-To: freebsd-bugs->orion Responsible-Changed-By: orion Responsible-Changed-When: Mon Dec 9 08:34:42 PST 2002 Responsible-Changed-Why: Assignment to responsible party. http://www.freebsd.org/cgi/query-pr.cgi?pr=46116 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 9 10:30: 5 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 466D237B401 for ; Mon, 9 Dec 2002 10:30:04 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E19BF43ED8 for ; Mon, 9 Dec 2002 10:30:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB9IU3x3077463 for ; Mon, 9 Dec 2002 10:30:03 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB9IU3Zu077462; Mon, 9 Dec 2002 10:30:03 -0800 (PST) Date: Mon, 9 Dec 2002 10:30:03 -0800 (PST) Message-Id: <200212091830.gB9IU3Zu077462@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Diederik Subject: Re: i386/35124: No mouse with FreeBSD 4.5 with ECS K7S5a Reply-To: Diederik 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/35124; it has been noted by GNATS. From: Diederik To: freebsd-gnats-submit@FreeBSD.org, IXJHAGUXI@earthlink.net Cc: Subject: Re: i386/35124: No mouse with FreeBSD 4.5 with ECS K7S5a Date: Mon, 9 Dec 2002 19:27:12 +0100 Hi, I accidently found this posting, when trying to find a solution for an identical/similar problem with ECS K7S5a. I'm using gentoo linux with devfs. When I first power up my box my mouse works (in windows and linux). If I reboot from linux, my mouse doesn't work in neither linux or windows. If I power it down completely, then my mouse works again. I used to have slack-8.1 and then this didn't happen (it doesn't happen with windows either). I can't tell you much more than that. My guess is it has something to do with either acpi or devfs (on my slack install I had neither of them enabled). It must somehow be a combination of a hardware related issue and kernel support for a certain feature (devfs/acpi). I'm sorry I know I'm very vague. And I know this is a freebsd list, but maybe this helps... Cya, Diederik PS: please send me a copy if you reply (I'm not on the mailing list) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 9 11: 0:16 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E515737B404 for ; Mon, 9 Dec 2002 11:00:15 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86DA543E4A for ; Mon, 9 Dec 2002 11:00:15 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB9J0Fx3083828 for ; Mon, 9 Dec 2002 11:00:15 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB9J0FKw083822 for freebsd-bugs@freebsd.org; Mon, 9 Dec 2002 11:00:15 -0800 (PST) Date: Mon, 9 Dec 2002 11:00:15 -0800 (PST) Message-Id: <200212091900.gB9J0FKw083822@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/12/09] pending/46118gnats-adminRe: fix man page of mount_udf o [2002/12/09] pending/46124gnats-admin o [2002/12/09] pending/46125gnats-adminRe:%20i386/45383:%20Failed%20installation 3 problems 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 Dec 9 11: 2:34 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4CACF37B401 for ; Mon, 9 Dec 2002 11:00:53 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9263143E4A for ; Mon, 9 Dec 2002 11:00:22 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB9J0Mx3083924 for ; Mon, 9 Dec 2002 11:00:22 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB9J0FRW083834 for freebsd-bugs@freebsd.org; Mon, 9 Dec 2002 11:00:15 -0800 (PST) Date: Mon, 9 Dec 2002 11:00:15 -0800 (PST) Message-Id: <200212091900.gB9J0FRW083834@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 problem is understood and a solution is being sought. f - feedback Further work requires additional information from the originator or the community - possibly confirmation of the effectiveness of a proposed solution. p - patched A patch has been committed, but some issues (MFC and / or confirmation from originator) are still open. s - suspended The problem is not being worked on, due to lack of information or resources. 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 -- or when fixing the problem is abandoned. 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 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 p [1999/07/13] alpha/12623 alpha Certain valid numeric strings cause a SIG f [2000/01/17] misc/16157 green "fire" screensave kills network performan o [2000/02/18] i386/16802 An user math program have the system on K o [2000/03/27] kern/17620 jhay Digi/570i sync driver (if_ar.c) causes sy o [2000/05/09] misc/18466 dillon install via nfs or ftp media silently tru o [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 uthread_sigaction.c does not do anything 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/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 f [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 f [2000/11/01] kern/22494 wpaul Fatal trap 12: page fault while in kernel 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 fenner 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 a [2000/12/14] kern/23547 msmith only one logical device on Mylex AcceleRA s [2001/01/30] kern/24740 cy filesystem corruption CFP1080 CAM SCSI ca 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 o [2001/04/13] kern/26549 IPsec policies for more than one pair of f [2001/04/25] kern/26840 dillon process doing mmap() over nfs hangs in vm 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 f [2001/05/11] kern/27275 kernel bug ? f [2001/06/08] kern/27985 Recent -STABLE crashes when accessing dc 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/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/14] kern/28966 pirzyk math libraries in linux emulation do not o [2001/07/15] ports/28995 max deMime produces blank line in header part o [2001/07/24] misc/29200 dcs Syntax errors in /boot/device.hints cause o [2001/08/14] conf/29699 Setting NO_MAILWRAPPER results in a syst f [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 standards[PATCH] setpgrp does not behave as manual o [2001/08/18] kern/29847 n_hibma USB usbd_probe_and_attach() is broken and o [2001/09/04] ports/30331 portmgr Conflict between bsd.port.mk MAKEFILE var f [2001/09/09] i386/30458 Workstation sometimes hangs when connecte f [2001/09/21] i386/30705 msmith Installation fails on system with Mylex A f [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/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/14] misc/31266 cjc 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 f [2001/10/25] kern/31493 BTX halted with big disk and 4.4R a [2001/10/31] i386/31671 ceri 4.4 installer hangs at " Mounting root fr f [2001/11/02] kern/31710 kernel reboots; looks like an unintended o [2001/11/16] bin/32040 brian 4.4-Release "set mtu" in ppp is broken wi f [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/11] kern/32713 usb mouse detaches from hub and doesnt re f [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 a [2001/12/22] i386/33089 murray GENERIC bloat causes 'make world' to brea p [2001/12/27] gnu/33262 mp gdb does not handle pending signals corre o [2002/01/07] bin/33670 dwmalone default inetd install allows for unlimite o [2002/01/16] kern/33951 pthread_cancel is ignored f [2002/01/16] kern/33970 random freeze on IDE Raid 0 (Highpoint HP f [2002/01/17] misc/33997 Reboot Fails on Server f [2002/01/17] i386/34018 response to request from ipv6 client does o [2002/01/18] bin/34028 brian userland ppp 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 f [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/30] kern/34470 bde Modem gets sio1 interrupt-level buffer o f [2002/02/07] kern/34711 frequent system stall under moderate scsi f [2002/02/18] kern/35082 scsi IBM Intellistation will not reboot with S o [2002/02/18] i386/35096 Network card dies copying files > 200MB w f [2002/02/26] kern/35354 4.4/4.5 FreeBSD causes hard lock after 20 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/09] i386/35726 Won't let me use ifconfig on the interfac 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 f [2002/03/20] kern/36149 kernel panic with option PPP_DEFLATE for o [2002/03/25] kern/36313 sos ATA disk not bootable anymore after cvsup o [2002/03/26] i386/36342 rl/dc(smc) + ppppoe = major bug ! o [2002/03/27] ports/36404 security-officerAcrobat Reader seems to link against zlib o [2002/03/29] kern/36504 dillon crash/panic vm_object_allocate under file a [2002/03/30] kern/36532 sos ar_buf because it is too short, it makes o [2002/03/30] kern/36549 sym driver fails on Tekram DC-390U in 486 o [2002/04/07] i386/36850 Page Fault using ppp with USB Modem 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/14] kern/37056 usb mouse with bios legacy support on han f [2002/04/14] kern/37060 sos 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/16] kern/37144 panic: biodone: Zero vnode ref count ... f [2002/04/18] ports/37241 edwin character ranges in regular expressions i o [2002/04/19] kern/37257 SMP 4.5 freezes a [2002/04/28] ports/37524 glewis java_vm left in memory after exiting mozi o [2002/04/29] kern/37581 Onboard AC97 - channel dead o [2002/04/30] kern/37606 ru genmask, rt_fixchange causes kernel panic o [2002/05/01] kern/37624 joe USB devices: 82801CA/CAM give error with o [2002/05/07] kern/37831 sound Half of buffer gets filled with silence w o [2002/05/12] i386/38016 i386_get_ldt range checking bug o [2002/05/12] i386/38021 i386_set_ldt can be cheated o [2002/05/13] kern/38029 Kernel panic in lockmgr o [2002/05/13] bin/38058 brian ppp alters IP header length field 40 -> 4 o [2002/05/14] kern/38070 4.6-PRERELEASE panics on resume on Fujits s [2002/05/15] kern/38107 Panic on nullfs o [2002/05/18] i386/38223 fix vm86 bios call crash bug (updated) o [2002/05/23] i386/38459 Intel SB82558B NIC won't initialize prope o [2002/05/23] i386/38484 probe freeze o [2002/05/24] conf/38518 combination of pr-27087 and pr-36911 (2) a [2002/05/26] gnu/38594 Fortan program don't link post gcc-3.1 o [2002/05/28] misc/38672 ifconfig+alias o [2002/05/28] bin/38676 change request for pw command o [2002/05/29] i386/38698 Kernel panics when filesystem with snapsh o [2002/05/30] misc/38748 FreeBSD 4.5 Keyboard problem cannot insta o [2002/05/31] i386/38775 Kernel panic with ATA raid o [2002/06/02] kern/38840 when i pass data over my dialup connectio o [2002/06/03] kern/38848 kernel panic when removing memory stick f o [2002/06/03] misc/38867 Boot "Read error" with offboard Promise u o [2002/06/03] kern/38872 nfs code ignores possibility of MGET(M_WA o [2002/06/04] kern/38909 kernel panic in lockmgr...with invalid pi o [2002/06/06] i386/38944 problems with ed-driver and dlink dfe-650 o [2002/06/07] ports/39008 dwhite py-kqueue wrapper broken with python 2.2 o [2002/06/08] kern/39043 Corrupted files on a FAT32 partition f [2002/06/10] conf/39139 4.4 multi boot loader causes serious dam o [2002/06/11] ports/39152 dima acroread4 dumps core with linux7 o [2002/06/13] i386/39234 SMP 4.6-RC freezes during boot (Fujitsu-S o [2002/06/14] kern/39297 Have random panic somewhere near console o [2002/06/15] misc/39341 ppp + USB modem problem o [2002/06/19] kern/39524 smbfs with nge NIC causes kernel panic o [2002/06/19] kern/39553 FreeBSD-4.6 halt on SMP machine o [2002/06/19] alpha/39560 alpha unaligned access in wihap_input_data ( wi o [2002/06/20] i386/39586 "BTX halted" hile attempting 4.6 install o [2002/06/25] i386/39844 PANIC using mount -> atacontrol detach -> o [2002/06/29] kern/40003 Panic on boot w/4.6 and 4.6-stable from 6 f [2002/07/01] i386/40099 Jul 1 19:39:17 server /kernel: pid 77933 o [2002/07/05] bin/40215 wpaul NIS host search not terminate o [2002/07/07] kern/40320 Raid crashed o [2002/07/08] kern/40330 ATA no longer supports Asus A7V266-E Prom o [2002/07/12] kern/40481 Kernel fault on detecting Mylex eXtreme R f [2002/07/13] misc/40542 FreeBSD 4.6 Fatal Traps o [2002/07/14] i386/40564 SMP kernel panic on Intel SE7500CW2 o [2002/07/14] misc/40575 Kern.flp boot floppy error o [2002/07/18] kern/40723 Disabling multicast on vlan interface cau f [2002/07/22] kern/40893 www.vivirasturias.com/dmesg f [2002/07/24] i386/40965 Random root access to non-root users from o [2002/07/27] i386/41052 Fresh install on a Compaq ARMADA E500 say o [2002/07/29] java/41147 java linux-sun-jdk1.4 was crashed o [2002/07/31] i386/41212 Corrupted CRC received at random times wh o [2002/08/03] misc/41285 anholt xauth:(argv):1: bad display name ":0" in o [2002/08/05] bin/41350 vnconfig: apparent off-by-one bug o [2002/08/07] kern/41402 kernal panics f [2002/08/07] kern/41417 luigi 3Com xl0 drivers generate a kernel panic o [2002/08/07] misc/41425 adding new cpu types to bsd.cpu.mk o [2002/08/08] i386/41437 sysinstall 4.6 RELEASE - hang f [2002/08/09] kern/41494 static routes set with interface address o [2002/08/10] ports/41513 tobez lang/perl5.8 - "make test" destroys perl o [2002/08/13] i386/41636 Kernel panic on Intel SE7500CW2 - SMP ker o [2002/08/13] bin/41647 ifconfig doesn't accept lladdr along with o [2002/08/14] i386/41663 support of promise fasttrack 100 tx2 unde o [2002/08/16] misc/41717 Memory Leak in FreeBSD o [2002/08/16] i386/41723 Copying files to filesystem causes "integ a [2002/08/18] kern/41765 rwatson UDP socket remains connected after error o [2002/08/19] misc/41792 lseek after ftruncate fails o [2002/08/21] i386/41860 sysinstall rel. 4.5 and 4.6 hangs o [2002/08/22] java/41913 java JniHandler and ChannelUn Errors o [2002/08/24] i386/41988 autoconfig of SiS 900 10/100 ethernet fai o [2002/08/26] kern/42030 panic when zebra works on detaching tun i o [2002/08/26] i386/42046 System crashes with f [2002/08/28] i386/42124 dual xeon problem on SE7500CW2 o [2002/08/29] i386/42173 Sony VAIO FXA 53 (or FXA 679 in Mexico) w o [2002/08/30] kern/42198 Kernel panics or system hangs up with big o [2002/08/30] misc/42221 Signal 11 core dumped when fetchin index o [2002/08/30] kern/42235 system panics with "worklist_remove: item o [2002/08/31] kern/42277 Several kernel panics per day with panics o [2002/09/04] i386/42406 Compatibility of USB equipments o [2002/09/04] kern/42433 silby vr0 watchdog timeout and hang on VT6102 o [2002/09/04] kern/42434 another softupdates based kernel panic: h f [2002/09/07] i386/42538 4.7 BROKEN (SED FUNCTION) o [2002/09/08] bin/42563 ATA Tagged Queuing wedges -STABLE p [2002/09/09] kern/42580 kernel crash when starting ISC 3.2 X11 bi o [2002/09/09] kern/42597 kernel panic, xl and bpf related f [2002/09/11] ports/42667 ports Update cccc port to 3.pre63 p [2002/09/14] bin/42772 usr.bin/make: patch to stop a fork bomb o [2002/09/14] bin/42789 cp -p may report wrong exit status o [2002/09/15] kern/42796 NCR/SYM 53C825 driver detects scsi cdrom f [2002/09/15] i386/42813 /kernel: ad0: UDMA ICRC READ ERROR o [2002/09/16] ports/42863 ports Xaw3d port does not include all necessary o [2002/09/18] ports/42921 nakai o [2002/09/18] kern/42937 panic when ARP cache uses up all mbufs o [2002/09/21] ports/43216 ports Port x11-toolkits/ocaml-lablgtk broken o [2002/09/24] i386/43351 X-Server crashes on i810 o [2002/09/26] kern/43396 silby repeatable kernel panic in if_xl.c:xl_new o [2002/09/26] i386/43412 Why my freebsd 4.6.2 auto reboot every on o [2002/09/27] ports/43417 ports compliation of ncbi-toolkit fails o [2002/09/27] bin/43434 New option to 'dmesg' which allow to disp o [2002/09/28] i386/43461 Durring Install of 4.6 on ASR-2005S/48MB o [2002/09/29] kern/43480 panic: CPU class not configured, Athlon M o [2002/09/29] i386/43491 microuptime () went backwards o [2002/10/01] ports/43568 greid Unbreak mail/spambnc (fetch errors) o [2002/10/02] misc/43576 Problem with wi driver and Lucent Orinoco o [2002/10/02] ports/43581 skv net/p5-Net-BGP4 is actually Net-BGP o [2002/10/02] kern/43614 Installation Hangs at "md1: Malloc disk" o [2002/10/03] kern/43625 Wi(4) driver hangs after long data transf o [2002/10/05] kern/43713 during install, mounting root from ufs:/d o [2002/10/06] kern/43738 Memory corruption in -stable with agp mod o [2002/10/06] misc/43751 FreeBSD4.6R panic during installation o [2002/10/09] ports/43883 phantom BugZilla contains multiple security holes o [2002/10/11] ports/43920 phantom bugzilla should be locked or updated imme o [2002/10/11] ports/43932 nbm Security fix for Achievo o [2002/10/11] misc/43954 nfs-blocked process can't return or be in o [2002/10/12] i386/43978 Kernel Panics in 4.7-STABLE with 486 CPUs o [2002/10/13] kern/44006 Filesystem corruption with ata(4) softwar o [2002/10/14] kern/44054 kernel panic o [2002/10/15] ports/44097 ports posgresql-723 fails to compile (4.7 RC0) o [2002/10/17] ports/44180 anholt XFree86-clients won't portupgrade o [2002/10/17] kern/44197 sos ATA CDROM's o [2002/10/17] kern/44198 Toshiba PDR-M25 camera/umass o [2002/10/21] kern/44336 NFSv3 client broken - security problem wi o [2002/10/21] misc/44361 possible raw socket bug o [2002/10/24] ports/44449 ports audio/id3lib port fails to build o [2002/10/25] misc/44471 4.6 install writes MBR even when specifie o [2002/10/26] ports/44498 mharo Proftpd 1.2.6 exits on signal 11 o [2002/10/26] ports/44499 ports graphics/fxtv doesn't compile on 5.0-curr o [2002/10/28] kern/44569 Kernel crash o [2002/10/28] i386/44572 silby EPIA onboard VIA VT6103 network if hangs, o [2002/10/30] kern/44741 Repetable mbufs related crash o [2002/10/30] kern/44744 VN devices can hang system FreeBSD v4.5 o [2002/11/01] bin/44808 opiepasswd makes bad seed for existing us o [2002/11/04] ports/44868 ports sysutils/cfengine2: cfservd dies fails if o [2002/11/04] kern/44884 pcic is broken in current o [2002/11/05] kern/44950 SMP kernel crash in vm_page_free: freeing o [2002/11/07] kern/45032 Panic right after boot with FreeBSD-STABL o [2002/11/09] kern/45170 kernel panics when trying to write to ufs o [2002/11/10] kern/45198 start of booting, fatal trap 12 o [2002/11/17] i386/45383 Failed installation FreeBSD 4.7-RELEASE a o [2002/11/20] kern/45535 nfs client panic o [2002/11/20] ports/45549 portmgr imake-4 port fails to install due to miss o [2002/11/21] kern/45568 ahc(A19160) pci parity error o [2002/11/22] kern/45588 netscape 4.79 crashes system o [2002/11/24] kern/45698 Freebsd 5.0 DP2 can not find Integrated H o [2002/11/25] standards/45738tjr sh "unset" built-in violates IEEE Std 100 o [2002/11/26] ports/45743 ports security/sfs fails tu build o [2002/11/26] ports/45759 ports sablot dynamic linking fails o [2002/11/26] gnu/45763 sablot dynamic linking fails o [2002/11/27] ports/45813 ports xmcd won't compile with open-motif o [2002/11/28] bin/45824 phk malloc() overflow bug o [2002/11/30] kern/45871 Kernel trap 12 in sound/pcm code o [2002/11/30] ports/45877 ports postgres7 can't create initial database. o [2002/12/02] kern/45910 unable to use amr device o [2002/12/03] kern/45957 multiple bugs in sis driver o [2002/12/04] ports/45997 dirk failure building lang/php4 with sablot o [2002/12/05] ports/46011 ports webmin.sh-dist references the wrong share o [2002/12/06] ports/46031 ports All emacs20 related ports dumps core on 5 o [2002/12/08] i386/46113 busspace bug o [2002/12/09] ports/46148 ports update SFS port to 0.7.1, current port br 277 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 [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 a [1998/04/07] kern/6238 cg Sound-driver patch for MAD16 (OPTi 928,92 a [1998/05/06] bin/6536 peter pppd doesn't restore drainwait for tty 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 o [1998/07/12] i386/7266 yokota PSM detection failure with Linksys consol 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/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 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 o [1999/03/02] bin/10353 jon 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 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 # 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 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 doc 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 murray 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/07] bin/17843 yar 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/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 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 f [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 p [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 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 o [2000/09/11] kern/21209 groudier scsi ncr driver installs instead of scsi 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] kern/21304 wpaul dc0 watchdog timeouts on NetGear FA310TX 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 p [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 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 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 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 cjc securelevel does not affect mount f [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/11/05] bin/22614 billf pam_ssh dumps core f [2000/11/05] kern/22624 Interrupt conflict btw. vga and Ethernet f [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/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/23] gnu/23058 ncurses: tgoto_internal() ugliness o [2000/11/25] bin/23098 ambrisko If installing on a serial console, enable f [2000/11/30] conf/23192 FTP REALLY slow on internal NIC aswel (12 o [2000/12/04] bin/23269 green OpenSSH TIS Authentication support has br o [2000/12/07] bin/23352 [SECURITY] buffer overflow in opieftpd o [2000/12/08] kern/23400 rwatson IPsec transport mode precludes filtering 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/18] ports/23638 kuriyama Add turbine-pool.jar to Cocoon CLASSPATH 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] docs/24125 wes connect(2) can yield EWOULDBLOCK/EAGAIN 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 s [2001/01/23] misc/24590 standardstimezone 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 pthread_rwlock_rdlock can deadlock o [2001/01/28] bin/24691 map-mbone segfaults at getsockname a [2001/01/29] ports/24711 portmgr ${MAKEFILE} causing trouble with ports o [2001/02/09] kern/24982 iedowse 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/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 f [2001/02/14] kern/25093 4.2-STABLE does not recognize PCNet-ISA+ 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 o [2001/03/03] kern/25511 ioctl(fd, FIONREAD, &c) on a FIFO (not PI o [2001/03/05] bin/25542 standards/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/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 o [2001/03/19] bin/25929 Can't use MAKEDEV in fixit mount 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/26] bin/26093 markm pam_unix rejects authenticating accounts o [2001/03/27] kern/26142 Unlink fails on NFS mounted filesystem 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 alfred mountd breaks IRIX automounter a [2001/04/05] gnu/26362 "cvs server" doesn't honour the global -- o [2001/04/08] kern/26430 cg -CURRENT panics on cat /dev/dsp or cat /d o [2001/04/10] misc/26486 setnetgrent hangs when netgroup contains o [2001/04/12] kern/26506 phk 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 f [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/25] bin/26842 dd dump with h flag takes a very long time 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/30] bin/26996 green sshd fails when / mounted read-only o [2001/05/04] bin/27086 green OpenSSH does not set X11 forwarding o [2001/05/09] bin/27230 nectar Users after NIS lines in /etc/passwd f [2001/05/09] kern/27242 SIGHUP propagation failure to processes o f [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 o [2001/05/17] ports/27419 ports 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/04] ports/27875 ports invoked on boot, SIGHUP is delivered and a [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/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] 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 a [2001/06/15] misc/28188 Cron is being started to early in /etc/rc 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/20] bin/28311 markm ftpd and sshd do not honor expired pw ent 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 f [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 o [2001/06/29] misc/28508 problems with backup to Tandberg SLR40 st f [2001/06/30] i386/28536 trhodes writing to corrupted msdosfs causes kerne o [2001/07/04] kern/28692 cg ICH sound driver hangs kernel 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/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 s [2001/09/21] ports/30728 portmgr pkg_add causes install of multiple versio o [2001/09/23] kern/30755 It is impossible to mount CD-ROM in some o [2001/09/23] ports/30767 anholt 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/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 silby kernel panics with 3C905[BC] cards / xl d o [2001/10/01] kern/30958 QUOTA with 0 bytes in quota.user hangs up 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 f [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/31045 routed dumps core o [2001/10/04] kern/31047 Linux programs do not dump core in linux f [2001/10/06] kern/31085 kernel panic on tftp only pxeboot f [2001/10/07] kern/31102 lge + Pentium III data transmission probl o [2001/10/10] ports/31191 ports netsaint - plugins sometimes not found o [2001/10/11] ports/31216 znerd New port: devel/plist-builder o [2001/10/14] conf/31280 gshapiro /etc/rc.network NFS server startup broken o [2001/10/17] bin/31339 make's .if processing buggy o [2001/10/18] misc/31363 qa 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] i386/31481 FreeBSD does Not find disk drives with Co f [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/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 pthread_kill signal handler doesn't get s f [2001/10/31] bin/31678 A bug in handling an error reading a CD-R 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 o [2001/11/03] kern/31746 failed connect(2) seems to cause problems f [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() f [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 a [2001/11/07] bin/31837 jhb 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 f [2001/11/07] i386/31845 Toshiba Satellite 2105CDS won't boot Free 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] kern/31940 nge gigabit adapter link reset and slow t o [2001/11/14] kern/31979 Setup and boot locks Compaq Armada E500 l f [2001/11/17] java/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 anholt xf86cfg 4.1.0 writes bad "Chipset" value o [2001/11/20] kern/32124 Cannot set 128 bit wep key on prism2 (wi0 f [2001/11/21] bin/32175 green ssh-keygen -p core dumps o [2001/11/22] bin/32205 brian PPP login fails in LCP negotiation on opt o [2001/11/23] kern/32226 time of day clock runs fast (approx twice o [2001/11/23] ports/32234 tobez Perl ports not $LOCALBASE clean f [2001/11/24] kern/32256 trhodes System crash/reboot when deleting file on f [2001/11/24] bin/32261 dump creates a dump file much larger than o [2001/11/26] bin/32295 pthread dont dequeue signals 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/06] kern/32556 sound system crashes when unloading sound modul o [2001/12/08] bin/32619 des libfetch does not use RFC 1738's definito 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 p [2001/12/12] bin/32759 jmallett [PATCH] make(1) System V include behaviou s [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 p [2001/12/14] kern/32827 maxim small SO_RCVTIMEO values are taken to be o [2001/12/14] ports/32844 kde exiting konq term emulator causes crash f [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] bin/33155 green [PATCH] sshd can leave hanging processes o [2001/12/26] kern/33201 net/net_osdep.c:if_name is broken f [2001/12/26] misc/33213 ume rarpd fails to init IPv6 enabled interfac 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] misc/33370 Post configuration issue s [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/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/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 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/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/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 a [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 sound Can not record anything with emu10k1 on 4 o [2002/01/17] i386/33986 sound SMP and audio causes hard lockups (random 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 f [2002/01/19] misc/34073 3com 3c980c runs "bursty" / freezes-unfre f [2002/01/20] i386/34092 reboot hangs the system (IBM PC Server 31 o [2002/01/21] gnu/34128 sdiff "e" doesn't work with some editors 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 f [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] 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/29] ports/34409 kuriyama prc-tools from ports fails to compile on o [2002/01/31] ports/34480 anholt system hangs after killing xinit o [2002/02/01] i386/34536 accept() blocks other threads o [2002/02/01] kern/34544 Kernel crash on fclose() of /dev/kbd1 whe 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] i386/34588 sos read-prefetch on VIA 686B IDE causes hang o [2002/02/04] kern/34619 TCP - FINs with different sequence number p [2002/02/06] bin/34682 fenner scanf/sscanf doesn't understand %lld f [2002/02/07] bin/34725 sos burncd cannot write audio file as the 1st o [2002/02/08] ports/34730 lioux new port qmail-scanner - a virus-scanning o [2002/02/09] kern/34765 darrenr Unloading the ipl.ko module will panic th o [2002/02/10] kern/34801 darrenr TCP window size bug (afflicting IP Filter o [2002/02/10] bin/34811 sh: "jobs" is not pipeable f [2002/02/11] misc/34842 VmWare port + NIS causes "broadcast storm o [2002/02/12] ports/34893 deischen RUS-CERT Advisory 2002-02:01: Temporary f f [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/17] kern/35061 After printing to HP Deskjet 656c USB pri o [2002/02/18] kern/35081 zebra routing problem - kernel bug??? o [2002/02/19] misc/35116 keyinfo reports root's keyinfo o [2002/02/20] kern/35136 luigi VLAN & bridging & MTU o [2002/02/21] ports/35179 kris elm-2.5.5_1: bounce command doesn't work o [2002/02/22] bin/35214 obrien dump program hangs while exiting o [2002/02/23] ports/35237 ports empty manpage installed by trafcount port f [2002/02/23] kern/35248 panic: ffs_valloc: dup alloc f [2002/02/23] misc/35267 after cvsup src-all for 4.5, /stand/sysin o [2002/02/25] bin/35307 standard include files are not standard c 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] java/35320 java linux-jdk-1.4 JVM fails when running Tomc 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] 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/35429 select(2)/poll(2)/kevent(2) can't/don't n 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 f [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/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] 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] kern/35691 Realtek NIC driver does not work with Rea o [2002/03/09] kern/35703 /proc/curproc/file returns unknown 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/12] bin/35842 rm -f nonexistent file successful but rm o [2002/03/13] bin/35843 maxim [PATCH] MD5 auth implemented in routed is f [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 p [2002/03/15] bin/35921 jon Wrong path reduction of dot-dot paths in o [2002/03/15] bin/35925 fixit floppy cannot be mounted on USB dri a [2002/03/16] kern/35985 re swap double mount o [2002/03/16] kern/35986 Wrong bpf-header preceading packet when u f [2002/03/16] kern/35989 720KB floppies unusable o [2002/03/17] i386/36003 Cyclades Cyclom YeP causes panics on Free o [2002/03/17] kern/36038 bp sendfile(2) on smbfs fails, exposes kerne f [2002/03/18] kern/36056 atapicd driver won't boot with cdr-cdroms f [2002/03/18] kern/36057 atacontrol, apm, kernel panic o [2002/03/19] misc/36086 trhodes Kerberos Problem/Handbook wrong/Followup o [2002/03/20] kern/36147 bogus irq 7 message being issued f [2002/03/21] kern/36160 Kernel halts while trying to detect CD-C6 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/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/26] kern/36329 reference of unexistent object f [2002/03/26] ports/36363 ports apache13-ssl - default'httpsd.conf' lack o [2002/03/27] java/36411 glewis java/jdk13 not owner/group safe o [2002/03/28] kern/36415 roger the bktr driver incorrectly handles the s a [2002/03/28] i386/36451 roger (sys/dev/bktr) Japan IF frequency is inco o [2002/03/29] kern/36482 Multiport starfire card (sf/ukphy) doesn' o [2002/03/29] conf/36508 installation floppy bug (See description) 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/31] kern/36566 System reboot with dead smb mount and umo f [2002/03/31] kern/36603 X crashes f [2002/04/01] kern/36610 acd0: MODE_SENSE_BIG command timeout - re o [2002/04/01] i386/36647 There is no suitable driver for SURECOM E f [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 f [2002/04/03] i386/36718 install boot before sysinstall halts ata1 o [2002/04/04] i386/36761 Symbol problems dependant on boot method, o [2002/04/05] kern/36784 Can't fcntl(fd, F_SETFL, ...) on a pseudo f [2002/04/05] kern/36790 kernel panic in biodone() on boot p [2002/04/05] ports/36804 ports portupgrade of apache13+modssl causes cer s [2002/04/06] ports/36826 anholt x11-servers/XFree86-4-Server: xf86cfg -te o [2002/04/07] ports/36838 scrappy MICO update to 2.3.7 o [2002/04/07] ports/36843 ports auth_ldap port fix o [2002/04/07] ports/36846 ports fxtv 1.03 freezes the system when $LANG=d o [2002/04/07] kern/36858 The USB flash drive "Apacer HandyDrive" c o [2002/04/07] bin/36867 games/fortune: add FORTUNE_PATH env var, f [2002/04/08] kern/36876 sos Weird read-errors while accessing data fr o [2002/04/08] ports/36879 ports emulators/vmware2 freezes and reboots sys o [2002/04/08] conf/36911 installation floppies miss autoload file o [2002/04/09] bin/36926 send-pr destroys PR if emacs interrupt ch o [2002/04/09] i386/36943 reboot hangs on Tyan Thunder K7 with SMP o [2002/04/09] kern/36953 des linux emulation does not work well on SMP f [2002/04/09] ports/36954 seanc PostgreSQL daylight savings fix... 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/37006 dirk cdrecord does not work with Teac USB CDRW o [2002/04/12] docs/37029 doc The translation in Italian language of th o [2002/04/13] kern/37035 trhodes [PATCH] msdosfs_readdir() freezes after f o [2002/04/14] kern/37057 Problem with rlimits on filesystem mounte o [2002/04/15] kern/37109 Kernel refuses to assign unused IP to tun f [2002/04/16] ports/37142 dirk [Patch] devel/pth (use libtool and load s o [2002/04/16] bin/37159 ru more then one natd use running use the sa o [2002/04/16] kern/37171 smbfs non-functional in -STABLE o [2002/04/17] ports/37180 dirk [New Port] php-dev (apache 1.3 / 2.0 modu o [2002/04/18] ports/37236 ports bash1 port broken? o [2002/04/18] i386/37240 EtherExpress16 not probed at boot o [2002/04/19] i386/37243 dvd rom - ata0-slave: identify retries ex o [2002/04/19] kern/37261 luigi kernel is not linking without "device eth o [2002/04/19] ports/37262 ports gphoto2 fails to find supported USB digit o [2002/04/19] kern/37270 jeff nullfs broken by locking changes in -curr o [2002/04/21] kern/37326 roger smbus/bktr crash when omitting "device ii o [2002/04/22] bin/37343 portmap TCP binds strangeness o [2002/04/22] ports/37358 ports xawtv generates sigalrm with bktr o [2002/04/22] ports/37361 ports installing gcc30 port breaks devel/gettex o [2002/04/23] alpha/37382 alpha de0 (tulip) DEC-21140A card stays in OACT o [2002/04/23] alpha/37385 alpha xl0 network card (509B) fails on heavy tr o [2002/04/23] misc/37399 rsh does not work from Win 2k to freeBSD f [2002/04/24] i386/37420 Copying large files from an IDE CD-ROM to o [2002/04/24] kern/37436 accept dead loop when out of file descrip o [2002/04/24] kern/37441 ISA PNP parse problem o [2002/04/24] kern/37443 incorrect move pointer in environment str o [2002/04/25] bin/37468 ports mpeg_play compiled on current/DP1 does no o [2002/04/26] i386/37482 Weird behaviour under relatively slow loa o [2002/04/27] kern/37502 NFS client ignores mtime.tv_usec for open o [2002/04/28] i386/37523 lock for bios16 call and vm86call o [2002/04/28] ports/37537 ports trafcount causes reboot at 3AM every nigh o [2002/04/29] kern/37573 luigi kernel crashes when changing dummynet pip o [2002/04/29] misc/37585 System hangs on install at probing device o [2002/04/30] misc/37586 newfs failing in 5.0-DP1 initial install o [2002/04/30] kern/37589 Kernel panics upon resume from zzz on my o [2002/05/01] kern/37635 USB ufm driver using major 200, although a [2002/05/01] kern/37656 robert Linux emulator 'Invalid Argument' error i o [2002/05/03] ports/37708 ache mod_proxy broken in apache 1.3.24 o [2002/05/03] misc/37710 murray LAN interface in wrong state after attemp f [2002/05/03] kern/37720 sos MFC'd ATA system does not seem to like su o [2002/05/03] ports/37730 ports editors/nvi-perl build failuer o [2002/05/04] i386/37734 sys/i386/boot/dosboot needs to be replace f [2002/05/05] misc/37775 netsmb/smb_subr.c needs opt_global.h in S o [2002/05/08] misc/37863 Configuration of X corrupts screen, and i o [2002/05/09] kern/37889 kernel panic when writing to a FAT32 part o [2002/05/12] ports/37992 emulationemulators/rtc: cannot start automatically o [2002/05/12] ports/37995 trevor lilypond port will not build due to bison o [2002/05/12] kern/37998 panic: vinvalbuf: dirty bufs o [2002/05/12] kern/38011 Fatal Trap 12 using Xircom CE2 in IBM 760 a [2002/05/12] ports/38018 znerd ports/www/jakarta-tomcat4: make passing o a [2002/05/12] ports/38020 znerd ports/www/jakarta-tomcat4: stop tomcat vi o [2002/05/13] kern/38024 kernel panic with devices 'sio' removed f f [2002/05/14] kern/38091 <4.6-prerelease "loses" PM drive> o [2002/05/14] kern/38095 bp vlan not supported with fxp o [2002/05/16] i386/38151 Installation of 5.0DP1 panics very early f [2002/05/16] kern/38166 gad ipv6_gateway_enable="YES" breaks lpd o [2002/05/17] kern/38210 SIOCGIFCONF truncates interface list. o [2002/05/17] ports/38212 knu XFree86-4 and portupgrade get dependencie o [2002/05/18] misc/38241 mount_cd9660 doesn't mount/read multisess o [2002/05/20] kern/38333 sos ATA drives only UDMA33 after APM standby f [2002/05/21] misc/38373 ipfw-graph reboots compaq 5500r o [2002/05/21] ports/38375 dirk The port lang./php4 can't be used as CGI o [2002/05/22] kern/38438 System crashes when starting XFree4 o [2002/05/23] misc/38460 ports core dumps with ghostscript o [2002/05/24] kern/38495 soreceive fails to maintain invariant on s [2002/05/24] kern/38527 /dev/random does not obey O_NONBLOCK flag o [2002/05/25] kern/38549 the procces compiled whith pthread stoppe o [2002/05/25] kern/38554 changing interface ipaddress doesn't seem o [2002/05/25] ports/38560 cpiazza PATCH: audio/gmixer uses uninitialized po o [2002/05/25] kern/38562 bridge_cfg=*dc0* ; kldload if_dc => panic o [2002/05/26] misc/38582 qa sysinstall sets newfs flag after changing o [2002/05/26] ports/38587 kuriyama bug in snmpd v5.0.1 in freebsd systems o [2002/05/27] ports/38602 gpalmer x11-wm/tvtwm is confused about PREFIX o [2002/05/27] bin/38609 qa Sysinstall should know the size of the va o [2002/05/27] kern/38632 Loss of connection with wi cards o [2002/05/29] ports/38681 nectar pam_krb5-1.0.3 configure fails to determi o [2002/05/30] i386/38731 Freebsd doesn't support ( pdc20276 / Raid o [2002/05/30] kern/38736 kernel panic during memory stick removal o [2002/05/30] ports/38744 ports net/openldap2 doesn't work if db3 and db4 o [2002/05/30] kern/38752 rn_walktree_from not halting at the right o [2002/05/31] kern/38763 GENERIC kernel doesn't boot o [2002/05/31] bin/38765 peter CVS Daemon Vulnerability in 1.11.1p1 o [2002/05/31] bin/38778 dhclient infinite loop on ro /etc/resolv. o [2002/06/01] kern/38794 sound ESS Solo driver truncates output o [2002/06/01] kern/38795 kldunload of snd_ess, snd_sb16, snd_sb8 p o [2002/06/01] ports/38801 ports sasl_apop_patch.gz breaks LOGIN mech (SMT f [2002/06/02] misc/38835 qa sysinstall always installs crypto o [2002/06/03] ports/38859 portmgr lang/gnat-doc-info: fix install o [2002/06/04] kern/38883 'kldload bktr' stuck in state swwrt, exer o [2002/06/04] kern/38894 Dell PowerEdge 4600 PCI Bus scan problems o [2002/06/04] kern/38906 calcru: negative time of o [2002/06/05] bin/38918 edquota breaks silently when quota-marked o [2002/06/07] kern/38983 Kernel fails to access disk o [2002/06/10] ports/39091 perky mv *-config to libdir to coexist with apr f [2002/06/10] misc/39104 The disc in your drive looks more like an o [2002/06/10] ports/39107 portmgr _REENTRANT not defined in PTHREAD_CFLAGS o [2002/06/11] ports/39148 cy screen consumes 100% when run o [2002/06/11] ports/39149 ume ports/mail/cyrus-imapd: cyradm causes per o [2002/06/11] ports/39151 dima acroread4 install fails o [2002/06/11] kern/39185 core dump binary in single user mode o [2002/06/12] kern/39199 CASIO QV-4000 not recognized by /sys/dev/ o [2002/06/13] kern/39233 NonConforming IPsec implementation from F o [2002/06/13] kern/39235 not writing correct data to TI1420 PCCARD o [2002/06/13] kern/39252 Syscons doesn't support 8-bit control cha o [2002/06/13] kern/39260 pcm0 locks on boot, Compaq Presario 1920 o [2002/06/14] bin/39296 sos burncd fails in dao mode o [2002/06/15] kern/39322 sos Strange detection of IDE CDROM o [2002/06/15] kern/39329 '..' at mountpoint is subject to the perm o [2002/06/15] kern/39331 dwmalone namei cache unreliable for __getcwd() o [2002/06/15] ports/39332 ports coldsync build broken on current o [2002/06/16] kern/39388 groudier ncr/sym drivers fail with 53c810 and more p [2002/06/16] kern/39396 cjc firewall security loophole o [2002/06/17] kern/39447 4.5R &4.6R Kernels fail to boot w/ AHA294 o [2002/06/18] ports/39479 cy Binary version of screen-3.9.11_1 in port a [2002/06/19] kern/39502 tjr can't write on smbfs with scp o [2002/06/19] i386/39507 FreeBSD can't boot: BTX halted problem o [2002/06/19] i386/39536 FreeBSD default bootloader does not load o [2002/06/20] i386/39604 Install failure on HP Pavilion 310n - Una o [2002/06/21] ports/39623 ports [New Ports] Development versions of PHP, o [2002/06/21] i386/39633 Errors reported in schistory.c in syscons o [2002/06/22] ports/39660 portmgr add ${PKGNAMEPREFIX} to (DOCS|EXAMPLES)DI o [2002/06/22] ports/39662 portmgr add default MAN3PREFIX for perl ports o [2002/06/23] ports/39760 jedgar ports/math/rcalc is too old and contains o [2002/06/24] conf/39763 Can't get a correct MAC address for MELCO o [2002/06/24] ports/39775 ports p5-GD has erroneous dependency on X11 and o [2002/06/24] ports/39788 mharo building proftpd in ports ignores WITH_MY o [2002/06/24] i386/39802 iBCS2 emulation fork process core dumps o [2002/06/24] kern/39805 4.6R install panics with umass0 device co o [2002/06/24] kern/39813 program hangs in atprq state permanently o [2002/06/25] bin/39849 /sbin/restore fails to overwrite files wi o [2002/06/25] ports/39859 nbm ports/www/publicfile confused file name i o [2002/06/26] kern/39878 mysqld process suddenly runs at 99% CPU w f [2002/06/26] conf/39887 matusita /stand/sysinstall doesn't set sendmail_en o [2002/06/26] bin/39896 netmask 0xffffff00 no longer works in /et o [2002/06/26] bin/39906 cleaning sbin/newfs code from warnings o [2002/06/27] bin/39918 Userland PPP - CHAP and PAP are swaped o [2002/06/27] bin/39922 [PATCH?] Threaded applications executed w o [2002/06/27] kern/39928 wi0 timeouts and hangs the system while s o [2002/06/27] kern/39937 ipstealth issue o [2002/06/27] bin/39940 /usr/sbin/periodic sends thousands of ema f [2002/06/29] bin/39995 users not in @wheel cannot change their p o [2002/06/29] misc/40001 grog vinum showing -2 drives after removing se o [2002/06/30] kern/40044 SMP kernel fails to boot on DELL 610 o [2002/07/01] i386/40073 Xircom Realport Ether doesn't work in Tos o [2002/07/01] ports/40088 ports Update: www/webcheck (patches deleted) o [2002/07/02] ports/40112 obrien mail/mutt: fix path for ${PREFIX}/share/d o [2002/07/02] kern/40122 Device pcm stopps booting Kernel 4.6 o [2002/07/02] misc/40126 dougb bind8 port puts nslookup in the wrong pla o [2002/07/02] i386/40132 Enabling the joystick interface on es137x o [2002/07/03] kern/40139 darrenr ipfilter issue o [2002/07/03] ports/40167 bp mars_nwe does not report disk full errors o [2002/07/04] kern/40176 panic: lockmgr: locking against myself -- o [2002/07/04] kern/40193 PCI devices can not be used with an nVidi o [2002/07/04] misc/40206 Can not assign alias to any POINTOPOINT i f [2002/07/04] bin/40209 __dtoa broken with -O2 or -O3 optimisatio o [2002/07/05] ports/40216 anholt [xmh] xmh is unstable o [2002/07/05] ports/40218 anholt [xmh] mail list does not refresh automati o [2002/07/05] bin/40219 [apm] apm breaks removable media o [2002/07/05] ports/40223 anholt [xmh] Deleted mail does not appears in sc o [2002/07/05] kern/40225 sos ata driver incorrectly downgrades UDMA4 d o [2002/07/05] bin/40227 CVS client doesn't upload new files creat o [2002/07/05] ports/40232 ports xxgdb left button does not function prope o [2002/07/05] conf/40255 problem with installing and configuring X o [2002/07/06] misc/40260 sysinstall hangs up detecting devices (No o [2002/07/06] bin/40261 sshd allows PasswordAuthentication even t f [2002/07/06] i386/40274 "fxp: device timeout" errors during heavy o [2002/07/06] bin/40278 mktime returns -1 for certain dates/timez o [2002/07/07] bin/40282 /bin/kill has bad error checking for comm o [2002/07/07] bin/40314 mail is unable to parse From line w/o ema f [2002/07/09] bin/40382 compiling source root CVS o [2002/07/09] kern/40394 if_tap driver hard coded permission check o [2002/07/09] standards/40402standards/usr/include/stddef.h and /usr/include/st o [2002/07/10] ports/40428 kde KDE3 trashes Xresources data o [2002/07/10] ports/40441 ports sysutils/lcdproc + HD44780 + 'winamp' wir o [2002/07/11] bin/40466 pax may not handle correctly some tar arc o [2002/07/11] bin/40471 des chpass(1) -a option broken in CURRENT o [2002/07/14] kern/40558 UDP6 sockets do not receive responses of o [2002/07/14] kern/40561 TTCP does not work with IPv6 o [2002/07/14] kern/40574 NeoMagic soundcard detection on Gateway S o [2002/07/15] ports/40610 jmz Latex build "cannot find Hyphenation patt a [2002/07/16] bin/40654 jhb patch: sysinstall: infinite loop a [2002/07/16] bin/40655 jhb patch: sysinstall assigns partition a to o [2002/07/16] bin/40656 qa patch: sysinstall: scripted deletion of s o [2002/07/16] ports/40672 sobomax wsoundserver defaults to using esound and o [2002/07/16] java/40677 java J2SDK 1.4.0.01 fails to do anything when o [2002/07/19] kern/40766 NEWCARD freeses system while card inserti o [2002/07/19] kern/40787 page fault while in kernel mode o [2002/07/19] kern/40792 signals lead to data loss on device ugen o [2002/07/20] misc/40802 adduser ignores password format a [2002/07/21] misc/40837 SMC EN5251BE ethernet chipset gets incorr o [2002/07/22] ports/40886 ache pkpkg_delete apache-1.3.26_3 does not w o [2002/07/22] kern/40895 wierd kernel / device driver bug o [2002/07/22] kern/40903 Busy_count is < 0 message keeps counting o [2002/07/23] misc/40941 robert syslogd "!prog" fails for progs with non- o [2002/07/23] i386/40945 FreeBSD can not support IBM ServeRAID4Lx o [2002/07/25] i386/40972 Stallion Multiport Serial Driver . o [2002/07/25] ports/40973 emulationInvalid behavior of emulators/rtc on -CUR o [2002/07/26] kern/41007 overfull traffic on third and fourth adap o [2002/07/26] i386/41020 Installation was successful only after I f [2002/07/27] conf/41054 Sendmail assumptions in startup scripts m o [2002/07/29] kern/41125 adrian squid-2.4.STABLE7 loop on poll() - SMP ke o [2002/07/29] ports/41128 greid recv_addr init wrong and 512 byte udp pac o [2002/07/29] i386/41138 silby vr0 locks up on one hub, OK on another o [2002/07/29] bin/41145 newfs core dump (args : -b 262144 -f 3276 f [2002/07/30] kern/41183 Booting with degraded RAID1 as system dis o [2002/07/31] kern/41216 dillon Get "NFS append race" error o [2002/08/01] misc/41242 periodic scripts make unwarrented assumpt o [2002/08/01] ports/41247 ports New port: net/nrpe o [2002/08/02] conf/41273 USR Wi-Fi Card type 2410 is not detected p [2002/08/03] misc/41289 inet_ntop(3) buffer overflow o [2002/08/03] bin/41297 mp {t,}csh backquote/braces expansion bug f [2002/08/04] bin/41327 jon skey decrementing but not authorizing wit o [2002/08/04] misc/41331 Pthread library open sets O_NONBLOCK flag o [2002/08/05] ports/41342 des gnatsd reveals passwords to syslog o [2002/08/06] kern/41373 sos Infinite loop in boot process while probi f [2002/08/06] kern/41374 panic: Removing other than first element o [2002/08/07] bin/41410 /bin/sh bug on expanding $? in here-docum o [2002/08/07] bin/41435 murray dhclient writes lease file that it can't f [2002/08/10] kern/41525 SiS 630 Modem and Soundcard on FreeBSD 4. o [2002/08/11] misc/41557 periodic daily -> 500.ipfwdenied -> syste o [2002/08/11] i386/41569 silo overflow o [2002/08/13] kern/41632 luigi bridging when one interface has no carrie o [2002/08/13] misc/41635 trhodes dhclient kernel panics when dhcp server i o [2002/08/13] kern/41651 sos READ_BIG errors from acd driver o [2002/08/14] bin/41671 gcc produces bad debug info o [2002/08/16] kern/41720 if_nge_load=YES make system not bootable o [2002/08/16] kern/41740 grog vinum issues: page fault while rebuilding f [2002/08/16] i386/41741 Cron calling periodic spawns hundreds of o [2002/08/18] i386/41757 qa sysinstall 4.6.x unstable o [2002/08/18] ports/41767 obrien make clean causes infinite loop o [2002/08/19] i386/41776 mrouted doesn't route multicast packets o [2002/08/19] bin/41777 /etc/periodic/daily/100.clean-disks remov o [2002/08/20] docs/41824 doc LANG is not documented in setlocale(3) o [2002/08/20] kern/41835 memrange.h uses u_int64_t but does not in o [2002/08/21] ports/41847 trevor lang/gcc295 does not build on -CURRENT/al o [2002/08/21] kern/41850 sysinstall fails to create root filesyste o [2002/08/21] docs/41865 doc [PATCH] XFree86 section should document - o [2002/08/22] kern/41881 julian ng_device was not MFCed for 2 months o [2002/08/22] docs/41892 doc Patch to fix slowdowns of documentation b o [2002/08/22] bin/41908 make: $? not always set o [2002/08/22] i386/41915 patch for fxp/LAN detection of toshiba sa o [2002/08/23] i386/41930 declaration clash for ffs() and ${CXX} o [2002/08/23] conf/41935 PPPoE problem with 3com device - 3c12 o [2002/08/23] ports/41945 portmgr bsd.port.mk: does not run ACLOCAL o [2002/08/24] ports/41966 ports audio/play: sblive, can cause "Device bu o [2002/08/24] ports/41970 ports trafcount causes fatal trap 12 o [2002/08/24] i386/41979 top(1) reports zero CPU utilization o [2002/08/25] bin/42004 quota and rpc.statd are still IPv4 only, o [2002/08/25] bin/42005 dhclient running + non-existent interface o [2002/08/26] misc/42029 add rdist flags to /etc/periodic/daily/32 o [2002/08/27] misc/42062 2 computers with the same network interfa o [2002/08/27] kern/42089 ntp_gettime returns time in wrong scale o [2002/08/27] bin/42093 ypbind hangs on NIC with the lowest scope o [2002/08/28] misc/42115 luigi PicoBSD: fix build script for 4.6-STABLE o [2002/08/28] ports/42118 ports mail/isoqlog fails to compile due to auto o [2002/08/28] kern/42120 arp(8) fails due to ioctl SIOCGIFNETMASK o [2002/08/28] misc/42135 mdodd Truss dumps core printing socket address o [2002/08/29] ports/42161 ports isakmpd build without policy and keynote o [2002/08/29] misc/42172 ftp and fetch client needs an active comm o [2002/08/29] ports/42176 ports New port: ekg - polish GaduGadu IM system o [2002/08/30] ports/42186 demon devel/autoconf and devel/p5-File-Tools ar o [2002/08/30] kern/42216 simultaneous multiple server network fail o [2002/08/30] misc/42225 Installation hangs after plip0 on ppbus0 f [2002/08/30] kern/42228 sos BIOS drive 0x80 (on atapci0) is misnumber s [2002/08/30] ports/42233 portmgr pkg_add -r fails to install newer version f [2002/08/31] ports/42268 ports math/PDL port is broken o [2002/09/01] docs/42292 doc PPP documentation should use quote marks o [2002/09/02] ports/42318 NATD redirect limitations o [2002/09/02] docs/42339 doc Release process doesn't document required o [2002/09/02] kern/42352 Impossible to set RCV timeout on a socket p [2002/09/02] bin/42356 uudecode -o doesn't work if piped o [2002/09/03] bin/42397 dlclose for a module loaded with RTLD_GLO o [2002/09/04] bin/42407 ppp(8) IPV6CP fails o [2002/09/04] ports/42425 ports update biology/babel to properly output m o [2002/09/05] kern/42457 Hack to allow Linux Matlab to exit o [2002/09/05] misc/42459 pipe reconfiguration freezes the system o [2002/09/05] i386/42463 4.6 and 4.6.2 fail to boot on Sony CD-ROM o [2002/09/06] bin/42484 ps: uprocp documented but not implemented o [2002/09/06] i386/42495 Drive Timeout - New Dell GX260 s [2002/09/07] ports/42501 dinoex gtk+licq make failed o [2002/09/07] ports/42516 openofficeOpenOffice.org generate wrong WM_LOCALE_N o [2002/09/07] i386/42539 Fatal Trap 12 resulting from Conner Perip o [2002/09/08] ports/42556 nakai archivers/rpm linked statically o [2002/09/08] kern/42564 record bug with emu10k1 driver o [2002/09/08] kern/42578 Using PCI serial cards (puc) in SMP machi o [2002/09/09] ports/42612 ports gphoto2 2.1 core dumps on DC290 o [2002/09/09] kern/42617 rename(2) IEEE Std 1003.1-2001 Violation o [2002/09/09] kern/42621 Dell Inspiron 5000e hangs when using Orin o [2002/09/10] misc/42623 luigi net.inet.ip.fw.autoinc_step not present a o [2002/09/10] kern/42629 panic in nfs_get o [2002/09/10] kern/42638 CS4326/4327 (MSS) buggy output playing 11 o [2002/09/10] ports/42643 fanf new mainstream version from sysutils/cfen o [2002/09/10] ports/42647 ports port pybliographger does not configure o [2002/09/10] ports/42650 ports compile error in xisp port o [2002/09/11] kern/42652 error deleting r/o (by windows) files on o [2002/09/11] bin/42658 recompile /usr/src/libexec/telnetd and lo o [2002/09/12] ports/42713 wjv biology/emboss : problems building EMBASS o [2002/09/12] kern/42714 dc ethernet driver is broken o [2002/09/13] gnu/42726 cvs -R pserver & val-tags: story continue o [2002/09/13] kern/42727 [PATCH] Wrong MTU in need-frag ICMP using o [2002/09/13] ports/42729 obrien bash manpage has /bin/bash as location fo o [2002/09/13] ports/42747 adrian Squid install changes directory owners. o [2002/09/13] misc/42748 USB on hardware list does not work o [2002/09/13] i386/42750 Fdisk makes no difference between FAT32, o [2002/09/13] docs/42762 doc ppp.8 has no description of $env and ~use o [2002/09/14] misc/42767 User PPP fails if processor usage is cons o [2002/09/14] ports/42777 openofficeOpenOffice install fails o [2002/09/14] ports/42783 steve open-motif port doesn't compile o [2002/09/14] i386/42784 pcmcia 16bit network card removal locks a o [2002/09/14] i386/42794 Asks for "ew Password" then unexpectably o [2002/09/15] misc/42801 FreeBSD freezes when opening cuaa0 with a o [2002/09/15] kern/42805 System lockup o [2002/09/15] i386/42806 VLANs do not work with fxp + catalyst as o [2002/09/16] kern/42847 panic: backgroundwritedone: lost buffer o [2002/09/16] misc/42849 MBR is scribbled on by by freebsd p [2002/09/16] bin/42852 ru make tags is broken (+FIX) o [2002/09/17] bin/42868 passwd on NIS master server can't work fo o [2002/09/19] ports/42964 billf /usr/ports/net/mtr: I don't want mtr-gtk o [2002/09/19] ports/42975 ports audio/dagrab generates corrupt mono .WAV o [2002/09/19] ports/42978 mbr Insufficient installation instructions fo o [2002/09/20] kern/42983 wi0 sporadically freezes the system for 1 o [2002/09/20] ports/43036 tg python-doc packages aren't found by pydoc o [2002/09/20] kern/43133 luigi dummynet hang in mysterious circumstances o [2002/09/20] kern/43151 Panic 20 seconds after resume o [2002/09/21] ports/43170 cpiazza Patch for gnapster to work around napigat o [2002/09/21] kern/43175 uvisor.c table error f [2002/09/21] bin/43209 download of bin.cp is only 239717 and not o [2002/09/21] i386/43222 setrootbyname panic in 4.6 o [2002/09/21] bin/43223 pirzyk getnetby{name|addr} broken for DNS lookup f [2002/09/22] i386/43271 Screen 3.9.11_1 dies with a error from ld o [2002/09/23] bin/43299 march=pentium4 miscompiles msun/src/e_pow o [2002/09/23] ports/43301 steve mwm confused by mouse events following up o [2002/09/23] bin/43307 murray dhclient sends DHCPDECLINE if /etc/resolv o [2002/09/23] kern/43314 kernel panic "clist reservation botch" o [2002/09/24] ports/43331 ports New Port mail/messagewall o [2002/09/24] bin/43337 fetch: -s fails if -4 or possibly other o o [2002/09/24] kern/43345 sos Support for the SiS 651 ATA controller o [2002/09/25] kern/43352 luigi ipfw aborts processing file/pipe when del o [2002/09/25] ports/43356 ports New Port mail/twhttpd o [2002/09/25] i386/43366 Cannot format media in USB floppy devices o [2002/09/26] misc/43392 mail.local -B + quota deletes messages if o [2002/09/26] ports/43408 ports graphics/mpeg2play does not install docum o [2002/09/26] ports/43409 vanilla New port f [2002/09/27] bin/43413 sh parameter expansion bug o [2002/09/28] ports/43454 www Packages hard to find, often missing o [2002/09/28] kern/43462 copying files from olympus C-4040 digital o [2002/09/29] kern/43475 grog Starting Vinum again while active corrupt o [2002/09/29] bin/43501 getpwnam, getpwuid fail when linking agai o [2002/09/30] bin/43505 ssh session "crash" if you are typing sec o [2002/09/30] docs/43528 trhodes ACPI is not documented in the Handbook. o [2002/09/30] ports/43532 ports ColdSync port doesn't enable USB support o [2002/10/01] ports/43564 petef net/iperf fixes for GCC 3.2 p [2002/10/01] alpha/43567 alpha strtod() core dumps o [2002/10/02] bin/43592 mktime rejects dates at the start of dayl o [2002/10/02] kern/43599 Balloc did not check mallocated pointer i a [2002/10/02] kern/43605 luigi enabling polling in the kernel causes pag o [2002/10/03] bin/43635 filesystem damage not detected by fsck o [2002/10/04] alpha/43653 alpha rl(8) driver causes unaligned access trap o [2002/10/04] misc/43674 Able to bypass expired password o [2002/10/05] ports/43714 dirk problem with installing php4-4.2.3 o [2002/10/05] java/43724 java linux_base-7.1 + linux-sun-jdk-1.3.1.04 d o [2002/10/07] i386/43762 cd9660 process hangs on mounting ATA CDRO o [2002/10/07] docs/43776 doc /etc/sshd_config settings overridden by P o [2002/10/07] ports/43796 ports x11-toolkits/xview does not build on 5.0 o [2002/10/07] kern/43808 usb kernel panics o [2002/10/08] i386/43814 release 4.6 & 4.6.2 does not see the hard o [2002/10/08] standards/43837wollman PKST (pakistan daylight time) changed fro o [2002/10/08] ports/43843 dirk php4 4.2.3 does not make all install suce o [2002/10/08] ports/43847 ports new ports: babytrans,gsfv,mmail,tetradraw o [2002/10/08] ports/43849 dirk mod_php4 problem o [2002/10/09] conf/43851 Colorado backup unit o [2002/10/09] i386/43852 4.7-RC "device timeout" problem o [2002/10/09] ports/43853 ports nagios-plugins fails to compile/install o [2002/10/09] docs/43854 doc undocumented possibiliny of non-zero errn o [2002/10/09] ports/43882 ports New port: 4 new ports (babytrans, gsfv, m o [2002/10/09] kern/43885 pirzyk USB CDROM does not work with vmware 2.x o [2002/10/10] kern/43887 abnormal CPU useage when use pthread_mute o [2002/10/11] java/43924 glewis writing from JAVA to a pipe sometimes han o [2002/10/11] ports/43926 obrien ports/mail/mutt can't handle FQDN > 31 ch o [2002/10/11] bin/43930 ldconfig calls bcopy with wrong size o [2002/10/11] kern/43953 Backport of BMC5703 drivers o [2002/10/12] bin/43975 gshapiro share/sendmail/Makefile uses ${INSTALL} - o [2002/10/12] misc/43976 Binary upgrade to 4.7R fails if package ' o [2002/10/12] kern/43984 rp driver does not support multiple PCI c o [2002/10/12] bin/43993 /usr/sbin/usbd does not handle an usb eve o [2002/10/13] kern/44010 [PATCH] SIGCONT isn't reported for traced o [2002/10/13] kern/44011 [PATCH] PT_CONTINUE, PT_KILL and PT_DETAC o [2002/10/13] kern/44030 VNode/Swap troubles o [2002/10/14] kern/44045 luigi kernel panic (page fault) with dummynet o [2002/10/14] kern/44063 sos ATA Tags (TQ) problems on 4.7-STABLE o [2002/10/14] kern/44064 Linux IPC emulation fails for recent prog o [2002/10/15] ports/44084 portmgr cannot use ports if the directory contain o [2002/10/15] kern/44087 fatal kernel trap when ifconfig a inet6 i o [2002/10/15] ports/44101 trevor Netscape 7 port fetches unspecified compo o [2002/10/15] kern/44126 lnc network hungup at large traffics on V o [2002/10/15] kern/44128 Machines hangs during boot, if ACPI is en o [2002/10/16] kern/44130 Enabled apm hangs up FreeBSD kernel on i8 o [2002/10/16] ports/44135 anholt XFree86-libraries won't portupgrade o [2002/10/16] alpha/44147 alpha kdebase 3.0.4 will not build s [2002/10/16] misc/44148 installworld in 4.7-STABLE does not insta o [2002/10/17] ports/44169 ports linux_base-7.1_1 port has bogus protectio o [2002/10/17] misc/44176 coda can not be compiled, ports's error o o [2002/10/17] i386/44178 kldload of snd_emu10k1 locks system o [2002/10/17] misc/44185 Problem adding route with -interface opti o [2002/10/17] ports/44192 ports joe o [2002/10/17] www/44200 keramida ftp site keeps sockets open. o [2002/10/18] kern/44202 -stable rp driver does not work with mult o [2002/10/18] i386/44203 cannot start X-windows with FreeBSD 4.6 d o [2002/10/18] ports/44239 ports Update port: openldap2 to use databases/d o [2002/10/18] ports/44240 ports openldap2 breaks with multiple versions o o [2002/10/18] bin/44256 /etc/mail/Makefile doesn't build submit.c o [2002/10/19] conf/44263 Intel AnyPoint II Wireless Card Unrecogni p [2002/10/19] misc/44268 ache [PATCH] FreeBSD is missing lt_LT.ISO8859- o [2002/10/19] ports/44274 dirk www/mod_php4 and lang/php4 doesn't build o [2002/10/19] ports/44295 ports New port: MLton, an optimizing Standard M o [2002/10/20] bin/44320 jail(1) change for set{uid|gid} o [2002/10/21] kern/44355 After deletion of an IPv6 alias, the rout o [2002/10/21] standards/44356standardsstrerror_r() has impermissible failure mo f [2002/10/22] ports/44398 glewis Incorrect file name in jdk13 port o [2002/10/23] kern/44417 luigi ipfw layer2 rules are not checked for eth o [2002/10/24] ports/44440 sobomax www/viewml won't compile if qt3 installed o [2002/10/25] ports/44457 ports [NEW PORT] devel/mingw32-binutils: new ve o [2002/10/25] ports/44458 ports [NEW PORT] devel/mingw32-bin-msvcrt: new o [2002/10/25] ports/44459 ports [NEW PORT] devel/mingw32-gcc: new version o [2002/10/25] ports/44481 obrien lang/gcc32 failed to build o [2002/10/26] i386/44497 NIC Lags? o [2002/10/26] bin/44504 tcsh-6.12.00's "source" command ignore co o [2002/10/26] kern/44512 pcm driver generates static half the time o [2002/10/26] kern/44514 X11 mouse pointer disappears upon suspend o [2002/10/27] bin/44518 ftpd does not show OPIE OTP challenge o [2002/10/27] bin/44519 ftpd.conf(5) contains references to ftpd( o [2002/10/27] kern/44540 could sleep with "drm memory" locked o [2002/10/27] kern/44542 Locking issues with pcm o [2002/10/27] kern/44543 Duplicate lock of type 'inp' when startin o [2002/10/27] kern/44544 Can't kldunload snd_emu10k1.ko o [2002/10/27] ports/44545 ume cyrus-imapd ports install using wrong ver o [2002/10/28] gnu/44564 peter [PATCH] Aborted cvs session causes an end o [2002/10/28] bin/44567 ipfstat does not show IPv6 accounting inf o [2002/10/28] bin/44570 ftp behind VPN server fails host name loo o [2002/10/28] ports/44573 ports Is port net/arla still being maintained? o [2002/10/28] misc/44578 getnetgrent fails to read NIS netgroup ma o [2002/10/28] i386/44581 ar RAID driver crashes using older DISKS o [2002/10/29] kern/44585 bug in lockmgr o [2002/10/29] ports/44719 dburr devel/p5-File-Spec: p5-File-Spec should o o [2002/10/29] ports/44722 tobez mail/p5-Mail-Box: p5-File-Spec should onl o [2002/10/29] ports/44723 ports net/p5-RPC-XML: p5-File-Spec should only o [2002/10/29] ports/44726 skv textproc/p5-RDF-Notation3: p5-File-Spec s o [2002/10/29] ports/44727 ports textproc/p5-XML-Directory: p5-File-Spec s o [2002/10/29] ports/44728 skv textproc/p5-podlators: p5-File-Spec shoul o [2002/10/29] ports/44730 tobez www/p5-CGI.pm: p5-File-Spec should only b o [2002/10/29] ports/44731 ports www/p5-HTML-Mason: p5-File-Spec should on o [2002/10/29] ports/44732 kuriyama www/p5-HTML-Template: p5-File-Spec should o [2002/10/29] ports/44733 tobez www/p5-Template-Toolkit: p5-File-Spec sho o [2002/10/29] ports/44735 ports www/p5-Bundle-Slash: p5-File-Spec should o [2002/10/30] i386/44745 Program written in C++ can hang system (s o [2002/10/30] bin/44750 usr.bin/make: parens in compound conditio o [2002/10/30] ports/44759 ports ghostscript-gnu-7.05_3 produces incorrect o [2002/10/31] ports/44794 skv Sablot linking error (?) f [2002/10/31] ports/44799 dirk mysql323-server (3.23.53) fails to build o [2002/10/31] pending/44802will (no subject) o [2002/10/31] bin/44803 sos burncd hangs after 'blank' o [2002/11/02] ports/44835 knu portupgrade vs. docproj dependencies o [2002/11/03] kern/44853 Panic on resume o [2002/11/03] kern/44867 Frequent hard hangs on ASUS P4T-E/P4S-533 o [2002/11/04] kern/44887 ng_ksocket: NGM_KSOCKET_CONNECT doesn't w o [2002/11/04] ports/44918 ports Postfix port + IPv6 patch ignores $mynetw f [2002/11/04] i386/44921 NFS umount when server busy o [2002/11/05] pending/44924skv Apache initializing fails during sablot d o [2002/11/05] kern/44936 ng_pppoe: relay session identifier does n f [2002/11/05] ports/44954 ports new port: sysutils/userinfo o [2002/11/06] bin/44995 /usr/bin/limits thinks sbsize is number, o [2002/11/06] kern/45013 locking warnings in CURRENT o [2002/11/06] kern/45014 VLAN tag on frames received via em(4) are o [2002/11/06] kern/45023 flexlm does not run with linux-base-7, st o [2002/11/07] ports/45031 vanilla x11-toolkits/p5-Gtk fails to build o [2002/11/09] ports/45165 ports Update of java/cos to 05Nov2002 o [2002/11/09] gnu/45168 Buffer overflow in /usr/bin/dialog a [2002/11/10] ports/45192 portmgr f [2002/11/11] ports/45219 ports update of audio/id3lib to 3.8.1 f [2002/11/11] ports/45220 ports update for audio/id3v2 to 0.1.7 o [2002/11/12] ports/45233 ports ocaml port hangs in configure stage (tst o [2002/11/12] ports/45234 ports timidity++ portupgrade problem, removes s o [2002/11/12] ports/45249 ports new port: ices-devel o [2002/11/12] ports/45250 ports new port: libshout-devel o [2002/11/12] ports/45251 ports new port: icecast-devel (supersedes ports o [2002/11/12] www/45257 www runaway errorlog creation on bento for CP o [2002/11/13] ports/45267 openoffice[PATCH] editors/openoffice: fix numerous o [2002/11/13] bin/45272 dump/restore problem o [2002/11/13] bin/45282 calendar not or mis-reporting dates o [2002/11/14] docs/45303 doc Bug in PDF DocBook rendering o [2002/11/15] ports/45311 ports make fetch-recursive in ports eats resour o [2002/11/15] kern/45322 Panic on resume (zone: entry not free) o [2002/11/15] kern/45324 Re: 4.7 kernel does not find aha1 o [2002/11/16] kern/45353 silby Trivial local DoS via file table exhausti o [2002/11/17] kern/45373 softupdate / fs damaged after loss of pow o [2002/11/17] docs/45375 blackend Old kernel config lines in handbook o [2002/11/18] i386/45391 /usr/bin/cmp coredumps while reading a fa o [2002/11/18] bin/45397 Telnet dumps core when MAKE_KERBEROS5=yes o [2002/11/18] kern/45403 imp Cannot install -CURRENT via pccard networ o [2002/11/18] kern/45413 sos tagged/non-tagged IDE drives as MASTER/SL o [2002/11/18] ports/45417 jim everybuddy installs modules in wrong plac o [2002/11/18] bin/45461 rpc.lockd silently dies when rpc.statd is o [2002/11/19] bin/45478 tjr /bin/sh coredump o [2002/11/19] kern/45483 Invalid MAC reported by new Linksys LNE-1 o [2002/11/19] bin/45484 pkg_update(1) does not correctly re-regis o [2002/11/19] bin/45488 sys/ipc.h refers to ushort, which may not o [2002/11/19] ports/45490 ports tightvnc leaks connections o [2002/11/19] ports/45495 portmgr Fix port bsd.port.mk to build when there o [2002/11/20] i386/45525 Dell Inspiron 7000 does not recognize PC- o [2002/11/20] bin/45529 hexdump core-dumps with certain args [PAT o [2002/11/20] ports/45531 ports Upgrade port hyperlatex-2.5 to 2.6 o [2002/11/20] ports/45542 jedgar [Update Port] databases/p5-Mysql o [2002/11/20] ports/45543 ports [New Port] MySQL 4.0.5 o [2002/11/21] ports/45556 ports New port: xdf, show the free space of mou o [2002/11/21] i386/45558 mdconfig and msdosfs make fs writes hang o [2002/11/21] i386/45565 qa sysinstall: write error, filesystem full f [2002/11/21] kern/45574 No console (term) if smbus is enable in t o [2002/11/21] kern/45579 Panic from USB stack after device detach o [2002/11/23] kern/45637 wi0 device_probe_and_attach returns 6 o [2002/11/24] bin/45669 des pam_ssh fails in presence of SIGCHLD hand o [2002/11/24] kern/45673 PC98 internal CS4231A is mis-detected to o [2002/11/24] kern/45679 Cannot record except 8bit-mono with CS423 o [2002/11/24] kern/45682 Sometime failed to record/play with CS423 o [2002/11/24] ports/45690 ports [bento-fix](non maintainer) : devel/genge o [2002/11/25] kern/45713 If you use the amr driver, it is impossib o [2002/11/25] ports/45720 ports New port: psybnc: psyBNC is an extremely o [2002/11/25] bin/45721 darrenr ipfilter's flags and icmp-type processing o [2002/11/25] bin/45723 ls(1)'s wrong behaviour with not searchab o [2002/11/25] ports/45725 roam [Maintainer Update] Port: www/boa o [2002/11/25] kern/45733 file descriptor flags and socket flags ou o [2002/11/25] ports/45734 ports [Maintainer Update] Port: www/mod_gzip o [2002/11/25] ports/45735 ports [Maintainer Update] Port: irc/ircservices o [2002/11/25] ports/45736 ports [Maintainer Update] Port: www/php-templat o [2002/11/26] gnu/45744 /usr/bin/makeinfo sometimes segfaults o [2002/11/26] bin/45754 vnconfig(8) fails to return correct exit o [2002/11/26] ports/45757 trevor mail/xc-mail: update to current (2.2) & c o [2002/11/26] bin/45760 pppd(8) incoreectly handles timeouts afte o [2002/11/26] conf/45766 rcNG broke non-system sshd startup o [2002/11/26] misc/45772 Kernel does not compile with IPFILTER opt o [2002/11/26] i386/45773 Softboot causes autoconf failure on Broad o [2002/11/26] kern/45777 crashdump issue with too-small dumpdev o [2002/11/26] ports/45789 gnome Mozilla 1.2 is out o [2002/11/27] conf/45792 Compaq WL200 entry in etc/defaults/pccard o [2002/11/27] ports/45802 ports MAINTAINER UPDATE postfix o [2002/11/27] ports/45805 ports security/sfs does not build on Alpha o [2002/11/27] ports/45811 ports fix XFCE Makefile for xscreensaver call o [2002/11/28] i386/45818 Cannot repartition drives: operation not o [2002/11/29] docs/45833 bp nsmb.conf man page a [2002/11/29] ports/45840 dinoex New feature for port net/licq-qt-gui o [2002/11/30] ports/45867 ports aspell port does not build under -CURRENT o [2002/11/30] ports/45868 ports Maintainer update: Port devel/libstrfunc: o [2002/11/30] ports/45869 ports Maintainer update: Port net/ipcad: new so o [2002/11/30] ports/45879 ports Update PostgreSQL to 7.3 o [2002/11/30] ports/45880 ports PostgreSQL documentation port o [2002/11/30] ports/45881 ports update postgresql-jdbc to 7.3 o [2002/11/30] ports/45882 ports Update of postgresql-odbc to version 7.2. o [2002/11/30] ports/45883 ports Info update in p5-postgresql-plperl o [2002/11/30] ports/45885 ports Update postgresql-tcltk to 7.3 o [2002/11/30] ports/45892 ports New pgaccess port o [2002/11/30] ports/45894 ports wxgtk-2.2.9 conflicts with /usr/ports/dev o [2002/12/01] kern/45907 vlan support broken in 'em' driver (inclu o [2002/12/02] kern/45913 WaveLan driver problems with latest -CURR o [2002/12/02] ports/45917 ports New port: windowmaker applet for easy shu o [2002/12/02] ports/45943 ports New port databases/postgresql-libpq++ o [2002/12/02] ports/45944 ports New port databaes/postgresql-libpqxx o [2002/12/02] ports/45945 ports update databases/postgresql-plruby o [2002/12/02] ports/45946 ports update databases/p5-Pg for postgresql 7.3 o [2002/12/02] ports/45948 ports Porter's Handbook doesn't address securit o [2002/12/02] ports/45951 ports Bison errors in coldsync port o [2002/12/03] ports/45960 ports Add WITHOUT_X11 knob to `games/angband' p o [2002/12/03] kern/45966 TCPDEBUG kernel option broken by changes o [2002/12/03] ports/45972 tobez Perl system() calls will hang if the proc o [2002/12/03] ports/45976 ports librdiff is old version with serious memo o [2002/12/04] ports/45986 des Update port: Update www/opera to 6.11, fi o [2002/12/04] bin/45990 top dumps core if specific errors in pass o [2002/12/04] bin/45995 Telnet fails to properly handle SIGPIPE o o [2002/12/04] ports/46003 ports security/xmlsec update o [2002/12/05] ports/46006 ports [NON-MAINTAINER] update www/oops from 1.5 o [2002/12/05] ports/46007 ports Ports conflict: devel/cscope & devel/biso o [2002/12/05] ports/46008 ports [PATCH] Update mail/mew2 to Mew 2.3 o [2002/12/05] ports/46013 dbaker misc/dnetc: fix install error o [2002/12/05] i386/46017 smb mounts break /etc/periodic/weekly/310 o [2002/12/06] ports/46023 ports maintainer update port: news/leafnode -> o [2002/12/06] bin/46025 [PATCH] OPIE and S/Key PAM prompt echoing o [2002/12/06] ports/46026 mharo [PATCH] fix security/sudo PAM echo handli o [2002/12/06] ports/46027 ports net/net-snmp4 fails to build o [2002/12/06] ports/46029 ijliao centericq 4.7.8_5 fails to build o [2002/12/06] ports/46030 ports ProFTPD 1.2.6 fails to build o [2002/12/06] kern/46036 inaccurate timeouts in select(),nanosleep o [2002/12/06] ports/46039 ports adzapper install fails out of the box o [2002/12/07] ports/46057 ports databases/unixODBC fails to build 2.2.3 o [2002/12/07] ports/46076 lioux maintainer update: graphics/xvid (superse o [2002/12/07] ports/46079 ports [PATCH] Unbreak mail/p5-Mail-Tools, updat o [2002/12/07] ports/46081 ports [patch] unbreak devel/orbitcpp o [2002/12/07] ports/46083 ports editors/AbiWord style dialog aborts o [2002/12/07] bin/46088 inetd(8) segfault o [2002/12/08] ports/46094 ports sysutils/xmbmon doesn't build on 5.0-RC o [2002/12/08] i386/46100 Random panic. o [2002/12/08] ports/46102 ports maintainer update port: mail/bogofilter o [2002/12/08] conf/46103 /etc/rc.d/ipfilter; ipfilter_start() need o [2002/12/08] ports/46106 ports net/vnc v3.3.5 - vncviewer core dumps w/ o [2002/12/09] ports/46115 ports make WITH_CDROM WITH_ADABAS fails for /us o [2002/12/09] kern/46116 orion EHOSTDOWN when ARP replies get drowned by 1197 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- f [1995/01/11] i386/105 standardsDistributed 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 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 kan [PATCH] Ada specs not being compiled into s [1996/12/27] kern/2298 Support for DSR/DCD swapping on serial po 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) o [1997/04/14] bin/3284 mikeh [PATCH] symorder(1): -t option doesn╢t wo 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 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/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 jmallett find -exedir doesn't chdir for first entr o [1997/09/03] bin/4459 bde No prototype for moncontrol(3) and monsta o [1997/09/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 f [1997/10/15] gnu/4771 diff to correct misleading total bytes in 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 o [1998/01/11] bin/5483 Login(1) clears utmp entry 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 f [1998/03/06] i386/5932 perfmon kernel code should check for non- f [1998/03/28] bin/6161 assar 2.2.6 kerberos servers are awfully visibl p [1998/03/31] kern/6184 No error if resulting file pos in lseek i o [1998/04/18] conf/6346 joe Kernel version strings need to relate to p [1998/05/12] bin/6612 ru make(1) doesn't understand targets with e 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 o [1998/06/22] ports/7023 portmgr bsd.port.(%|subdir.).mk patches for size a [1998/07/01] bin/7136 markm kerberized telnetd doesn't use gettytab % 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 s [1998/08/22] kern/7722 Changes to acct format 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/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 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 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 a [1999/01/28] bin/9770 audit 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 o [1999/03/02] bin/10358 yar ftp(1) has problems with long pathnames 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 peter 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/11] bin/11085 Per-host configuration for syslog.conf p [1999/04/11] bin/11092 johan readlink(1) from OpenBSD f [1999/04/13] bin/11114 tjr make(1) does not work as documented with o [1999/04/16] i386/11165 IBCS2 don't work correctly with PID_MAX 9 a [1999/04/16] bin/11168 davidn pw(8) usermod does not recognize -w flag o [1999/04/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/19] kern/11789 obrien ELF machine definition missing for ARM f [1999/05/29] bin/11929 symorder doesn't work on elf format objec 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 johan realpath() fails when there is no permiss 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 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 o [1999/07/25] bin/12801 nvi infinite recursion with options "left o [1999/08/04] ports/12952 portmgr make _PORT_USE touch cookies by variable, 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/11] bin/13068 billf Don't stamp out score files! o [1999/08/12] bin/13108 authunix_create_default includes egid twi a [1999/08/13] bin/13128 cy 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 o [2000/06/06] ports/19051 asami New target for bsd.port.mk : fetchdepends 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 s [2000/06/13] misc/19246 portmgr Poor error message when fetching files wi f [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] misc/19406 setenv() allocates memory which is not fr o [2000/06/23] misc/19467 green OpenSSH (as an rsync tunnel) blocks forev 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/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/07] kern/19756 Inability to use linux extended partition f [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] 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/20] bin/20054 yar 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/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] 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 des 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/07] misc/20457 davidn pw command doesn't generate random passwo 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 standardssysconf(3) manpage doesn't mention posix. o [2000/08/10] kern/20529 wpaul gigabit cards fail to link o [2000/08/11] i386/20537 msmith HP NetRAID controller error when rebootin 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 yar 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/21008 gad Fix for lpr's handling of lots of jobs in o [2000/09/04] docs/21024 bde pow() ERANGE bug o [2000/09/05] conf/21059 marcel `make -jN buildkernel' can't keep source o [2000/09/05] misc/21070 marcel default setting of ${SUP} in Makefile.inc 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] 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 o [2000/09/16] bin/21315 Shells often behave oddly when executing o [2000/09/24] bin/21519 standardssys/dir.h should be deprecated some more f [2000/09/26] bin/21570 dougb [PATCH] Add -r option to /usr/bin/mail, q f [2000/09/28] kern/21623 wpaul Chipset SiS630E / NIC SiS 900 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 dougb 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] kern/21768 rwatson shouldn't trailing '/' on regular file sy a [2000/10/06] kern/21807 fs [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/10] ports/21903 portmgr bsd.ports.mk - automake/aclocal adds o [2000/10/14] conf/21994 qa Config of Anonftp (at install) always cre o [2000/10/16] bin/22033 iedowse [PATCH] to pw(8) to allow encrypted passw o [2000/10/16] bin/22034 nfsstat lacks useful features found in So f [2000/10/18] misc/22073 xonsole: couldn't open console f [2000/10/18] conf/22102 Local scripts get run before securelevel o [2000/10/21] bin/22182 vi options noprint/print/octal broken f [2000/10/21] misc/22190 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/26] conf/22308 mounting NFS during boot blocks if host m s [2000/10/27] bin/22351 green sed(1) fails with backslash on buffer bou 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) o [2000/11/02] ports/22550 cy Patch for conserver for log file rotation o [2000/11/04] bin/22612 schweikh crontab -e failures 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 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 f [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 standardsPOSIX clock_gettime, clock_getres return o [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] gnu/23367 some src/gnu Makefiles are missing $FreeB a [2000/12/09] conf/23402 qa sysinstall upgrade ought to check partiti p [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/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/18] bin/23635 mike [PATCH] whois enhancement - smarter whois f [2000/12/24] kern/23814 .au sound files < 528 bytes actual data d o [2000/12/24] ports/23822 trevor 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 yar 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 p [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' f [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/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/18] bin/24435 qa Changing slice type causes Auto-partition o [2001/01/20] bin/24485 [PATCH] to make cron(8) handle clock jump 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 dougb 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] 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] 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 yar 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 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/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 a [2001/02/09] ports/24983 portmgr Emacs ports have misleading names 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 p [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/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] kern/25386 cg Incorrect mixer registers (line & synth) o [2001/02/27] kern/25445 kernel statistics are displayed in wrong 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) p [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/05] ports/25564 ports Port ups-debug doesn't build on the alpha o [2001/03/06] bin/25572 sshd core dump o [2001/03/06] ports/25576 anholt XFree86-4 port installs manual pages with 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/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 f [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/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/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 jeff Changing zone(9) man page p [2001/03/22] kern/26016 iedowse 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 chris *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 a [2001/04/04] kern/26348 hm [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 f [2001/04/06] kern/26385 VMWare reboots entire system after starti 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 dougb 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 ambrisko "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 sound ioctl(SNDCTL_DSP_SPEED) returns -1 when f o [2001/04/14] kern/26584 kernel boot messages aren't logged correc o [2001/04/16] kern/26618 unmount(2) can't unmount a filesystem who p [2001/04/17] misc/26646 srand() provides only 8-bit table f [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] 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/20] kern/26740 rwatson [PATCH] jail improvement o [2001/04/22] kern/26787 dd sysctl change request f [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 darrenr 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/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 f [2001/05/02] misc/27041 modify src/release/Makefile to make anoth o [2001/05/04] java/27075 sobomax Port java/javavmwrapper installs no man p o [2001/05/04] java/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 f [2001/05/07] bin/27188 jon fix of rsh non-interactive mode behaviour 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/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/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] bin/27483 qa make sysinstall ask for the keymap at ins 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/27] bin/27687 fsck wrapper is not properly passing opti o [2001/05/27] bin/27697 assar trouble compiling libroken f [2001/05/31] gnu/27803 Enhancement to sort(1) o [2001/06/01] misc/27829 pax's uid/gid cache is read-only a [2001/06/02] docs/27833 cjc No man page for locate.rc f [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 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/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] 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 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 netchild New port: 3D modelling and animation syst o [2001/06/13] ports/28138 tg python os.statvfs module is not functiona f [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 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 standardsUIO_MAXIOV needs to be made public o [2001/06/20] bin/28294 joerg 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] bin/28435 [patch] allow newsyslog to signal process o [2001/06/27] bin/28449 cracauer sh(1) aborts on certain input p [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 trhodes [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] kern/28681 sos 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/07] bin/28789 /usr/bin/last does not filter for uucp co o [2001/07/07] ports/28803 cy ports/comms/conserver does not support ## o [2001/07/08] ports/28810 lioux qpopper 4.0.3 + PAM modification; HAVE_SH 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/18] bin/29062 markm krb4 and krb5 multiply defined version sy f [2001/07/18] bin/29071 relay patch for rwhod o [2001/07/19] misc/29077 imp At loading notebook pccardd not correctly f [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] ports/29154 nik TeX resource settings from MAKE_ENV in pr o [2001/07/23] bin/29164 maxim [PATCH] lack of 'Do not fragment' flag in 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/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 ceri top(1) manpage doesn't understand SMP 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/29298 cpiazza Installation of documentation for vcdgear o [2001/07/29] alpha/29299 alpha FreeBSD 4.3 Alpha + Tekram SCSI adapter p f [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/31] kern/29355 mux [patch] lchflags support f [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 f [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] bin/29516 markm telnet from an non FreeBSD host still use 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 f [2001/08/08] misc/29550 duplicate pings jinside of vmware 2.0 o [2001/08/09] docs/29571 doc [PATCH] No man page for pgrp kernel funct o [2001/08/09] bin/29581 sobomax proposed gethostbyXXXX_r() implementation o [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 a [2001/08/12] i386/29639 murray entry for zip 250 drives in /etc/disktab 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 f [2001/08/15] ports/29732 glewis 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 f [2001/08/19] conf/29870 rc.diskless2 uses /usr/sbin/mtree before a [2001/08/19] kern/29875 joerg CURRENT driver for Tekram DC395X and DC31 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 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 a [2001/08/23] docs/30008 doc This document should be translated, comme o [2001/08/24] kern/30052 dc(4) driver queues outgoing pkts indefin o [2001/08/27] ports/30148 portmgr devel/libtool: shared libs with compaq-cc f [2001/08/28] kern/30160 Kernel panic when flash disk is removed a f [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 f [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/09/01] docs/30253 bp [PATCH] mount_unionfs(8) and mount_nullfs f [2001/09/01] kern/30257 apm enabled kernel panics (4.4-RC) 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] 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 f [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 pthread mutex attributes -- pshared f [2001/09/09] bin/30471 brian periodic script output to a file always a o [2001/09/10] ports/30499 portmgr libtool-1.4.1 port diffs o [2001/09/11] misc/30517 using sysinstall with install.cfg has no f [2001/09/12] misc/30526 inserting a Sony Ninja-ATA pcmcia style c o [2001/09/12] bin/30542 [PATCH] add -q option to shut up killall 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 p [2001/09/17] kern/30634 kbyanc 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 f [2001/09/18] bin/30661 alfred 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] i386/30700 sound Applications cannot synchronize sound usi o [2001/09/20] ports/30701 ports setiathome port misuses the 'nobody' user 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 f [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/25] bin/30812 giant termcap database update 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 f [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/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/02] ports/30983 portmgr [PATCH] Some staroffice cdrom fixes o [2001/10/04] bin/31034 dwmalone regularly add original address logging fo o [2001/10/04] kern/31048 linprocfs:/proc/meminfo cannot handle mul p [2001/10/04] bin/31052 fenner Traceroute needs update f [2001/10/07] misc/31097 main thread will accept() failure when so o [2001/10/07] docs/31109 doc replace gif images w/ png ones due to pat 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] bin/31201 [patch] add free_space(chunk) to libdisk o [2001/10/10] docs/31210 peter cvs info page missing -R o [2001/10/14] docs/31264 jdp cvsup(1) "base" option and keyword descri f [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] 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] kern/31490 Panic in sysctl_sysctl_next_ls on empy no o [2001/10/26] kern/31521 cg pcm0 plays too fast on Intel 82801BA (ICH f [2001/10/27] i386/31535 Can't reboot system: Tyan Thunder K7+ Dua o [2001/10/29] bin/31588 change request to allow mount(1) to set t 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] docs/31640 charnier Avoiding uppercase program names in manpa o [2001/10/30] kern/31647 socket calls can return undocumented EINV o [2001/10/31] ports/31669 ports New port: graphics/xawtv_applet 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 f [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/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] 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 f [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] docs/32020 doc loader.8 manpage missing tunables o [2001/11/16] ports/32039 greid UPDATE devel/asmutils 0.14 -> 0.15 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] 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 o [2001/11/19] ports/32122 anholt xf86cfg graphics-mode fails on Samsung Sy o [2001/11/20] standards/32126standardsgetopt(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/21] ports/32174 portmgr Autoconf patch for bsd.port.mk o [2001/11/22] ports/32202 kbyanc ports/devel/py-htmlkit distribution does f [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/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/26] conf/32288 After install: /etc/rc complains if crypt o [2001/11/26] i386/32301 dfr Fix for agpgart for the AMD-751 and relat f [2001/11/26] ports/32317 petef Request for linux-qt port s [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/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] 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/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/07] ports/32582 greid Update port: audio/tempest_for_eliza o [2001/12/07] bin/32588 joerg operator should backup vinum vols 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] 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] 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 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/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 p [2001/12/16] kern/32912 mp options misssing TCBHASHSIZE 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 f [2001/12/18] ports/32999 arved 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] misc/33013 cg mixer does not have treble/bass for Sound o [2001/12/19] conf/33018 Patch for RC (add multiple SSHD configura o [2001/12/21] bin/33066 rwatson sysinstall does not write to new disks as o [2001/12/22] i386/33097 sound Crystal 4237b mixer problems o [2001/12/23] kern/33117 empty struct md_coredump in pcb.h and use o [2001/12/23] kern/33124 jhb kthread_create doesnt mark kthreads as kt s [2001/12/23] bin/33133 keyinit outputs wrong next login password o [2001/12/25] gnu/33182 mp gdb seg faults when given handle SIGALRM 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 f [2001/12/26] ports/33224 me Build breaks on CURRENT due to 0 o [2002/02/01] docs/34529 doc [patch] Grammar nits in usbd.conf(5) and o [2002/02/01] gnu/34538 mp_set_memory_functions not extern "C"'d 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/03] docs/34577 doc Some man pages still advise using "confli o [2002/02/03] kern/34591 ICMP bandwidth limiting does not indicate o [2002/02/03] ports/34597 eivind [PATCH] Update ports/mail/isync to 0.8 s [2002/02/04] misc/34621 billf i have a patch for (lol) /usr/games/fish o [2002/02/04] bin/34628 jkh pkg-routines ignore the recorded md5 chec o [2002/02/05] ports/34635 ports games/flightgear 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". f [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 f [2002/02/07] kern/34712 njl [patch] SCSI quirk for USB Memorybird o [2002/02/07] ports/34714 ache unzip(1) breaks filenames in non-ASCII ch f [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] kern/34747 joe Please add USB floppy entry o [2002/02/09] misc/34759 Phantasia does not accept [enter] key o [2002/02/09] conf/34776 rc.diskless1 creates insufficiently sized 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/34796 jmz wrong path in /etc/XF86Config (purely cos o [2002/02/10] ports/34815 pat new port: freenet, the anonymous internet o [2002/02/11] kern/34820 FreeBSD should be able to beep after shut 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 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] bin/34874 Netstat output to small 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/34924 kde kscd crash on startup signal 11 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 f [2002/02/16] ports/34997 anholt xf86cfg core dumps a [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] bin/35018 brian enhancing daily/460.status-mail-rejects o [2002/02/17] ports/35060 ports New port: deskmenu (GTK root menu applica o [2002/02/17] kern/35064 ACPI not work with Epox 8KHA+ motherboard o [2002/02/17] bin/35070 tjr math(3) references section "3m", etc. o [2002/02/18] i386/35078 Uninitialized pointer dereference in func 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/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 f [2002/02/19] i386/35124 No mouse with FreeBSD 4.5 with ECS K7S5a f [2002/02/20] bin/35148 ppp/nat-problems after cvs update 4.3 -> f [2002/02/20] ports/35165 ports New port: textproc/smart an information r 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] i386/35182 APMD does not set close on exec for /dev/ o [2002/02/22] ports/35204 dirk www/mod_php4 with xslt is not LOCALBASE c o [2002/02/22] docs/35222 doc mailing list archive URL regexp suboptima 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 f [2002/02/23] misc/35245 brian unwanted stealth behaviour (inbound icmp o [2002/02/23] conf/35262 Generation of boot block for headless ope o [2002/02/23] kern/35269 possible panics with 4:1 filesystem ratio o [2002/02/24] docs/35280 mheinen [PATCH] null-modem cable pinout in 'Seria o [2002/02/24] kern/35289 Brooktree device doesnt properly signal a o [2002/02/25] kern/35324 Plug and Play probe fails to configure Di s [2002/02/25] bin/35333 send-pr(1) vim syntax highlighting suppor o [2002/02/26] docs/35343 doc Old broken Unix docco Makefiles o [2002/02/27] ports/35372 ports pgp6 ports fails to compile on alpha plat o [2002/02/27] kern/35377 process gets unkillable (-9) in "ttywai" o [2002/02/27] misc/35381 incorrect floating-point display of large o [2002/02/27] kern/35392 atapi tape driver does not maintain devic o [2002/02/28] misc/35400 sysinstall could improve manipulation of o [2002/03/01] bin/35451 PATCH: pkg_add -r able to save local copy o [2002/03/01] ports/35456 portmgr [PATCH] Add a distfiles-list target f [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 f [2002/03/02] ports/35481 edwin New port: console text editor looks like o [2002/03/03] ports/35514 portmgr Use the value of hw.machine_arch instead o [2002/03/03] ports/35520 ports New port devel/whups: a web-based bug tra o [2002/03/03] ports/35522 kuriyama xhtml port uses SGMLDECL in catalog chain o [2002/03/03] docs/35523 doc manpage fixes for df(1) and ls(1) f [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/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 lkoeller mail/faces: make NAS default since xfaces o [2002/03/05] ports/35580 ports Startup script in /usr/local/etc/rc.d is 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/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] ports/35617 lkoeller mail/faces: add USE_SOX, WITHOUT_AUDIO kn o [2002/03/07] kern/35635 sheldonh [patch] missing dep in libiconv prevents o [2002/03/07] ports/35638 markm tn3270 dumps core unconditionally o [2002/03/07] ports/35639 max executable name conflicts: ploticus and s o [2002/03/07] docs/35642 doc lo(4) page maybe should document optional 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/08] ports/35667 ports net/pppload patch so it doesn't show wron o [2002/03/08] bin/35671 wrong comments in rc.diskless1 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/35696 bp mount_smbfs(8) references a nonexistent n o [2002/03/08] kern/35699 trhodes [PATCH] msdosfs: differrent masks for dir o [2002/03/09] ports/35710 portmgr Request repocopy: devel/automake -> devel o [2002/03/09] docs/35711 keramida 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] 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/35753 ports New Port: biology/act o [2002/03/10] ports/35762 ports Speak Freely hangs while reading from aud o [2002/03/11] misc/35764 nakai Icewm does not display APM status properl 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] docs/35800 obrien [PATCH] removal of -kthread in gcc man pa o [2002/03/12] docs/35823 doc [PATCH] Little Restructuring of the Devel o [2002/03/12] ports/35833 keith 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/13] kern/35846 timeout in wi_cmd 11, machine hangs for a o [2002/03/13] ports/35859 ports New port: Network traffic accounting daem 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/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 o [2002/03/14] ports/35919 ports CompuPic 5.1.1016 o [2002/03/15] ports/35927 portmgr Permission sought to commit this automake 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 o [2002/03/15] docs/35948 trhodes disklabel(8) manual uses archaic "pack" a 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/16] kern/35978 improve kobj method dispatch 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 f [2002/03/17] bin/36000 contrib/amd uses mktemp o [2002/03/17] ports/36020 jmz Update port: print/musixtex T.98 -> T.104 o [2002/03/17] java/36024 sobomax port update: OpenJIT 1.1.16 for JDK 1.3.1 o [2002/03/17] ports/36034 ports new port databases/pg-crypto o [2002/03/18] docs/36055 doc [PATCH] adding some help-yourself-info to o [2002/03/18] ports/36061 perky New port: net/jmsn s [2002/03/18] standards/36076standardsImplementation of POSIX fuser command o [2002/03/18] ports/36079 portmgr [PATCH] Support USE_LESSTIF=yes o [2002/03/18] ports/36083 portmgr [PATCH] Installs existing packages for de o [2002/03/19] ports/36089 ports new port: net/isba - a Perl/Tk GUI for ip 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] conf/36118 re 4.5 Upgrade says it won't touch /usr/src, p [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] misc/36143 Dynamic (non linear) mouse acceleration a o [2002/03/20] misc/36154 doc Getting USB mouse to work: usbd and mouse 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 f [2002/03/22] ports/36202 wosch update to sysutils/socket: NetBSD IPv6 pa o [2002/03/23] ports/36238 sf [patch] ftp/wget doesn't respect FTP_PASS 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] bin/36262 [PATCH] Fixed rusers idle-time reporting o [2002/03/24] kern/36274 75GXP drive ATA tagging failure makes df o [2002/03/26] alpha/36327 alpha trap within cvt() while attempting to pri 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] 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] misc/36368 sshd error: session_close_by_channel: ki o [2002/03/27] bin/36374 Patch (against core dumps) and improvemet o [2002/03/27] kern/36381 ata + hw.ata.wc=1: high CPU load for larg 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 o [2002/03/27] misc/36392 cron starts before vi recover, and vi rec o [2002/03/27] kern/36410 Bad mac address return from FNW-9803-T (A 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 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/29] bin/36477 gshapiro mailwrapper doesn't handle rmail calls 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] docs/36524 doc bad links on handbook index page o [2002/03/30] misc/36536 Apparent mother board incompatability o [2002/03/30] ports/36545 jmz mwrite is an absolute symbolic link to /u 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 perky Fix port: security/py-amkCrypto (to refle o [2002/03/30] ports/36560 rse bug fix for the eperl package o [2002/03/30] ports/36561 nakai slib package bug fix 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] ports/36587 des news/inn{-stable} do not install when --e 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] misc/36646 dwmalone [PATCH] Top does not work correctly in a p [2002/04/02] kern/36682 joe USB isochroneous transfer doesn't report o [2002/04/03] kern/36692 Patch for E-Tech ISA PnP modem support o [2002/04/03] docs/36723 chern IPSec section is unintelligible o [2002/04/03] docs/36724 doc ipnat(5) manpage grammar is incomplete an f [2002/04/03] docs/36726 trhodes Handbook lacks information about hardware o [2002/04/03] docs/36727 trhodes Mail chapter of Handbook is incomplete o [2002/04/04] bin/36740 make ps obey locale (particularly for tim o [2002/04/04] bin/36757 EnhancementRequest binary which ought to o [2002/04/04] ports/36766 portmgr Incompatibility between autoconf, automak 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/36795 kuriyama DocBook DSSSL stylesheets should install o [2002/04/05] ports/36802 trevor Update port: misc/compat4x o [2002/04/06] ports/36832 ports apache13-* coredumps when using XML::Pars o [2002/04/06] docs/36837 jim Handbook lacks information about setting o [2002/04/07] ports/36841 ports use of .MAKEFLAGS target in Makefile.loca o [2002/04/07] ports/36849 cy FVWM-Themes fails to switch themes o [2002/04/08] bin/36884 add support id_rsa (OpenSSH/RSA2) authent o [2002/04/08] java/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/36913 seanc New port: devel/ruby-rbprof o [2002/04/08] misc/36916 DOS active partition flag lost in libdisk f [2002/04/09] misc/36923 fdesc file system (partially) crashes Fre o [2002/04/09] ports/36933 portmgr [PATHCES] New feature for pkg_create and o [2002/04/09] java/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/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] kern/36983 CD9660 unicode to utf-8 [hack] o [2002/04/11] conf/36990 pccard I/O DATA PCET10-CL worked 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/12] ports/37019 ports New port: poink 1.5 (Nosuid, secure ping o [2002/04/13] misc/37034 Fixed maximum character length in EUC o [2002/04/13] docs/37037 keramida Cleaned and revised the Hubs article o [2002/04/13] ports/37044 dinoex lesstif needs an update o [2002/04/13] misc/37047 brian daily_status_mailq_shorten doesn't produc o [2002/04/14] ports/37062 ports New port: textproc/pocketreader 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] bin/37083 small improvement to talk(1): add clocks o [2002/04/15] bin/37096 Fixes to fsdb command-line handling [patc o [2002/04/15] ports/37098 nakai Update patches for slib port s [2002/04/15] ports/37128 portmgr New port: www/sarg, formerly known as www o [2002/04/16] i386/37137 FreeBSD install doesn't recognize version o [2002/04/16] misc/37160 qa /stand/sysinstall coredumps when trying t o [2002/04/16] misc/37161 ext2 linux file system, error handling la o [2002/04/17] docs/37176 ru similar nits in assorted man pages o [2002/04/17] ports/37185 ports New Port: nrpep (netsaint remote plugin e o [2002/04/17] ports/37186 ports Dbview contains an error, because of whic o [2002/04/17] ports/37187 mita ports/japanese/vfghostscript font-2.6.2 f o [2002/04/18] misc/37219 [it_IT locale] LC_TIME, weekday names o [2002/04/18] docs/37221 doc obsolete reference to seqpacket in mount_ o [2002/04/18] ports/37226 mita ports/japanese/vfghostscript5 doesn't fin o [2002/04/18] kern/37227 VMWare do not work with raw disks due to o [2002/04/19] misc/37244 ports c2lib port includes vector.h which appare o [2002/04/20] ports/37290 ports New port: tool for setting the title of x o [2002/04/20] misc/37301 4.5 rc.firewall type simple does not pass o [2002/04/22] bin/37334 phk fix jail.8 instructions for creating jail o [2002/04/22] ports/37342 ambrisko ports/misc/airoflash fetches source every o [2002/04/22] ports/37362 ports The Ted port is incompatible with FreeBSD o [2002/04/22] ports/37364 ports New Port: GeekLog o [2002/04/23] ports/37366 kde kdeutils-3.0: kdepasswd truncates passwor f [2002/04/23] kern/37374 joe [PATCH] closing ums0 blocks with wmesg uh o [2002/04/23] i386/37379 /dev/MAKEDEV entry for RocketPort is brok o [2002/04/23] misc/37380 jhb boot0 partition list is outdated (patch i o [2002/04/23] misc/37387 bsdmainutils/calendar Hungarian addon fil o [2002/04/23] conf/37395 peter even with NO_SENDMAIL=true, /usr/sbin/sen f [2002/04/23] conf/37404 delayed mouse response to draw box or hig o [2002/04/23] kern/37405 Support for Mitsumi USB Mouse with Memory o [2002/04/24] kern/37417 Treat CT5880 revision4 ( PCM chip ) o [2002/04/24] bin/37424 nfsstat reports negative values o [2002/04/24] misc/37425 df gives wrong ouput > 1TB o [2002/04/24] misc/37434 dhclient generates pointless log messages o [2002/04/24] bin/37437 Add HTTP-style support to {vis,unvis}(1). o [2002/04/24] bin/37442 [PATCH] sleep.c to support time multiplie p [2002/04/25] bin/37448 obrien [PATCH] ldd/rtld support for more informa o [2002/04/25] ports/37452 ports New port: devel/publib: Modular library o o [2002/04/25] docs/37457 doc acpi(4) man page references non-existant o [2002/04/25] ports/37462 jmz dvips is no more available separately fro o [2002/04/25] ports/37469 ports new port: otc o [2002/04/25] docs/37470 doc jail field not documented in procfs(5) a [2002/04/25] ports/37476 ports Updating the port of biology/molden o [2002/04/26] kern/37486 Bug in network stack in sending broadcast o [2002/04/27] docs/37504 blackend The word PC Card should be used instead o o [2002/04/27] ports/37518 grog gmat port CATALOG needs updating o [2002/04/28] kern/37526 Addtron card not being recognized by driv o [2002/04/28] ports/37536 ports New port: games/doomlegacy o [2002/04/29] kern/37554 [PATCH] Make ELF shared libraries immutab o [2002/04/29] kern/37555 vnode flags appear to be changed in non-s o [2002/04/29] docs/37557 doc there is no ciss(4) RAID controller man p o [2002/04/29] docs/37558 doc there is no iir(4) RAID controller man pa o [2002/04/29] docs/37559 doc there is no ida(4) RAID man page o [2002/04/29] misc/37562 jdp Incorrect information in /usr/share/examp o [2002/04/29] ports/37567 ports New port devel/qextmdi o [2002/04/29] misc/37569 [PATCH] Extend fstab(5) format to allow f o [2002/04/29] bin/37572 des libfetch(3)/fetch(1): requested feature: o [2002/04/29] ports/37574 taoka ports/print/pips-sc20 file not found on m o [2002/04/30] ports/37596 ports EMACS_PORT_NAME=xemacs21 forks make infin o [2002/04/30] ports/37597 ports aureal-kmod-1.5_3 fails to build o [2002/04/30] kern/37600 [Partial PATCH] t4dwave drive doesn't rec o [2002/04/30] conf/37611 phk proposed /etc/rc.jails for jail(8) manage o [2002/05/01] ports/37630 kde KDE does not work with IPv6 f [2002/05/01] misc/37634 FTP site problem - packages link points t o [2002/05/01] ports/37638 ports gd doesn't build with TrueType support o [2002/05/01] ports/37649 dirk devel/pear: unbreaking, upgrading to 4.2, o [2002/05/01] bin/37650 Add skipPCCARD variable to sysinstall a [2002/05/01] ports/37654 arved Update textproc/xml4j to 4.0.1 o [2002/05/01] kern/37657 /dev/dsp and /dev/audio skip the first 32 o [2002/05/02] bin/37672 pw(8) prints warnings after successful NI o [2002/05/02] kern/37675 grog Page fault when newfs'ing a vinum volume o [2002/05/02] bin/37676 libc_r: msgsnd(), msgrcv(), pread(), pwri f [2002/05/02] kern/37677 off by 1 in $FreeBSD: src/sys/kern/subr_d o [2002/05/02] docs/37693 doc Minor correxion to FreeBSD Porter's Handb o [2002/05/03] ports/37707 ports ports/russian/gd has a checksum error o [2002/05/03] ports/37711 znerd New port: Beacon-agent 0.6.3 (Multicast B o [2002/05/03] ports/37712 znerd New port: Beacon server v0.8.9 (Beacon mu o [2002/05/03] ports/37713 seanc AIM Transport doesn't work correctly with o [2002/05/03] bin/37715 "pkg_info -g package_name_version" fail o [2002/05/03] docs/37719 doc Detail VOP_ naming in a relevant man-page o [2002/05/03] misc/37732 usbd start in wrong place in /etc/rc in 4 o [2002/05/04] bin/37733 su(1) does not behave the way it is descr o [2002/05/04] ports/37737 ports Jabber MSN-Transport module o [2002/05/04] kern/37761 process exits but socket is still ESTABLI s [2002/05/05] ports/37771 znerd New Port: audio/jmax o [2002/05/06] i386/37800 tools\fbsdboot.exe no longer works with c o [2002/05/06] ports/37803 ports New port: mod_v2h mass vhosting module fo o [2002/05/06] ports/37809 portmgr make index target fails on read-only /usr o [2002/05/06] ports/37814 vanilla www/mod_perl & lang/perl5 don't agree on o [2002/05/07] docs/37843 doc manual for pthread_setschedparam is wrong o [2002/05/07] bin/37844 ru [PATCH] make knob to not install progs wi o [2002/05/08] ports/37855 ports wrong font name in jre/lib/font.propertie o [2002/05/09] ports/37903 scrappy Unbreak devel/mico o [2002/05/09] ports/37904 znerd New Port: database/isql-viewer (a JDBC 2. o [2002/05/09] conf/37909 make distribution DESTDIR=/path -DNO_MAKE o [2002/05/09] gnu/37910 PATCH: make send-pr(1) respect &'s in /et o [2002/05/09] ports/37917 adrian [PATCH] squid24 does not support local_st o [2002/05/10] ports/37927 ports port to install linux Lahey Fortran 95 v6 o [2002/05/10] ports/37942 kde KDE 3.0 konsole terminal keyboard table u o [2002/05/11] docs/37952 doc Typos, missing/incorrect accents in Itali s [2002/05/11] ports/37962 ports ports/lang/gcl does not build o [2002/05/11] ports/37972 ports new port: graphics/gmt o [2002/05/11] conf/37980 anholt XftConfig installed in two places o [2002/05/12] i386/37999 qa In /stand/sysinstall, 's' selects Options o [2002/05/13] ports/38023 ports New Port: databases/fireprofile o [2002/05/13] alpha/38031 alpha osf1.ko not loaded during boot-time of li o [2002/05/13] ports/38032 ports MASTER_SITE_THEMES is gone o [2002/05/13] ports/38034 ports compaq-cc (under linux-emu) installes man o [2002/05/13] ports/38036 arved New Port audio/ladspatoy o [2002/05/13] i386/38055 qa In Install, Groups (creation) item should o [2002/05/13] i386/38056 qa In Install, User (creation)'s "Member gro o [2002/05/13] misc/38057 "install" document doesn't display correc o [2002/05/13] docs/38061 ume Typos in man pages for faith & faithd o [2002/05/14] ports/38086 rse eperl does not build CFLAGS recursive err o [2002/05/14] ports/38090 jkoshy devel/m4 port PREFIX vs LOCALBASE o [2002/05/14] ports/38092 ports Update Port : www/cherokee fixed working o [2002/05/15] docs/38117 ceri New FAQ entry for memory states o [2002/05/15] docs/38118 ceri New FAQ entry for amount of free memory o [2002/05/15] ports/38125 ports ApacheCylical Link error/bug in Virtualse o [2002/05/16] docs/38148 trhodes In manpages "timezone" should be "time zo o [2002/05/16] ports/38155 ports new port: mod_roaming2 o [2002/05/16] kern/38156 quotacheck chokes on user -2 o [2002/05/16] ports/38165 ports [PATCH] the smalleiffel port is out of da o [2002/05/17] bin/38168 installing curses programs and terminfo d o [2002/05/17] ports/38173 ports New port: posix library for smalleiffel o [2002/05/17] ports/38174 ports New port: Tools and libraries for Eiffel o [2002/05/17] bin/38178 sos add CDROM env var support to burncd f [2002/05/17] kern/38208 Digital camera Minolta Dimage E203 refuse o [2002/05/18] docs/38225 ceri change "CDROM" to "CD-ROM" o [2002/05/18] ports/38238 dirk Adding cyrus imap support to php4/mod_php o [2002/05/18] ports/38243 www Ports search for 'IMP' vs look in Mail ca f [2002/05/18] ports/38251 arved Address is not zeroed in net/libsocket++ o [2002/05/18] bin/38256 linking pax to pax_{cpio|tar} o [2002/05/18] ports/38259 perky New port: www/zope-cmf-devel (repocopy re o [2002/05/18] ports/38260 perky New port: www/zope-plone o [2002/05/18] ports/38268 nbm Update port: www/squishdot o [2002/05/18] ports/38270 openofficeNew Port Open office for Linux(1.0.0) f [2002/05/18] ports/38271 ports Minor bug with Crossfire o [2002/05/19] i386/38299 Add VT8233A to pci/viapm.c SMBus driver. o [2002/05/19] ports/38301 kiri upgrade www/w3-4 to 4.0.47 o [2002/05/19] bin/38303 tftpd -c patch o [2002/05/19] ports/38321 ports lang/gpc unnecessarily marked broken o [2002/05/20] ports/38324 chuckr print/transfig should default to LaTeX 2e o [2002/05/20] ports/38331 ports New Port: TEI P3 DTD o [2002/05/20] ports/38332 ports New Port: TEI P4 DTD o [2002/05/20] ports/38334 ports New Port: TEI Lite DTD o [2002/05/20] ports/38335 ports New Port: TEI Lite XML DTD o [2002/05/20] ports/38336 ports New Port: TEI P3 Guidelines o [2002/05/20] ports/38337 ports New Port: TEI P4 Guidelines o [2002/05/20] ports/38338 ports New Port: Stylesheets for TEI->HTML conve o [2002/05/20] ports/38339 ports New Port: Stylesheets for TEI->FO convers o [2002/05/20] ports/38340 ports New Port: DTD parser and clean-up tool o [2002/05/20] ports/38341 ports New Port: Customize TEI DTDs o [2002/05/20] misc/38347 new library function abs2rel and rel2abs. o [2002/05/20] ports/38351 dirk mod_php4(WITH_APACHE2) +apache2(WITH_THRE o [2002/05/21] kern/38372 patch for puc(4) to support parallel port o [2002/05/21] bin/38388 request to add "openssl starttls" command o [2002/05/22] ports/38406 obrien incorrect .so in g++31.1 man page o [2002/05/22] ports/38408 wjv zope-zmysqlda does not run o [2002/05/22] kern/38419 add name "CanoScanN676U" in uscanner o [2002/05/22] docs/38426 doc extra manpage .Xr to locate relevant sysc o [2002/05/22] kern/38429 [PATCH] getgpid and getsid work for proce o [2002/05/22] kern/38445 Centralized ptrace() permission checking o [2002/05/23] misc/38452 Logitech USB iFeel: device_probe_and_atta f [2002/05/23] kern/38458 There is no a file iicbb_if.c on source t o [2002/05/23] bin/38467 less can dump core, FPU exception o [2002/05/23] misc/38468 Write drivers for Intel PRO/Wireless 2011 o [2002/05/23] i386/38477 qa In sysinstall's Choose Distributions scre o [2002/05/23] i386/38478 qa In sysinstall's Choose Distributions scre o [2002/05/23] i386/38479 sysinstall vs. adduser UID inconsistency o [2002/05/23] i386/38480 qa sysinstall should prompt for normal users o [2002/05/24] www/38500 www gnats web form is overenthusiastic about o [2002/05/24] ports/38516 ports ICQv7 transport for the Jabber Server o [2002/05/24] i386/38524 cons25 doesn't support F-keys beyond 12 o [2002/05/25] ports/38539 ports New port: devel/libcfg+ o [2002/05/25] docs/38540 rpratt sysinstall application name should be Sys o [2002/05/25] docs/38556 doc EPS file of beastie, as addition to exist f [2002/05/25] conf/38559 rc.network hangs for a long time attempti o [2002/05/26] docs/38574 doc CPUTYPE is not documented in make.conf o [2002/05/26] kern/38575 NoName USB Flash drive not working o [2002/05/26] misc/38583 qa sysinstall installs crypto sources when / o [2002/05/26] ports/38593 portmgr Third level ports o [2002/05/26] i386/38596 freebsd 4.6rc2 can't support ati videocar o [2002/05/27] bin/38610 qa Sysinstall should be able to mount ISO im o [2002/05/27] docs/38618 doc Malloc types can be used with multiple al o [2002/05/27] docs/38620 doc Committers Guide and CVS o [2002/05/27] ports/38621 mita Update port: print/ghostscript-gnu-commfo o [2002/05/27] kern/38626 luigi dummynet/traffic shaper: RED: max_th and o [2002/05/27] ports/38635 ports new port: comms/bforce-kst o [2002/05/27] ports/38638 ports New ports : gfaim 0.30 o [2002/05/27] docs/38647 doc cvsupit built-in instructions are slightl o [2002/05/28] ports/38655 ports Update New port : ports/38641 (DynDns Ser o [2002/05/28] kern/38657 fujitsu c4110 lifebook crashes on resume o [2002/05/28] www/38664 www Stale info about Java due to be released o [2002/05/28] ia64/38677 ia64 savecore fault when 1M buffer is allocate o [2002/05/29] ports/38689 kuriyama update of port palm/prc-tools o [2002/05/29] misc/38727 mptable should complain about garbage arg o [2002/05/29] kern/38730 Memorex scrollpro mouse is not fully func o [2002/05/30] kern/38749 Diskless booting fails with some DHCP ser o [2002/05/30] ports/38751 ports Port for discid o [2002/05/31] docs/38772 doc firewall_type feature not mentioned on Ha o [2002/06/01] ports/38800 ports update www/roxen to Roxen WebServer 2.2.2 o [2002/06/02] docs/38810 doc Minor change in section 2.13.5 of the Han o [2002/06/02] docs/38815 doc Many typo fixed, and a question left unan o [2002/06/02] docs/38817 doc /usr/share/man/man8/boot.8.gz documents / o [2002/06/02] ports/38824 sf wget cannot handle files >2GB o [2002/06/02] i386/38826 RFE: BootMgr should provide more identify o [2002/06/02] kern/38828 DPT PM2012B/90 doesn't work o [2002/06/02] conf/38829 bootblock recompile instructions in handb p [2002/06/03] docs/38850 keramida handbook/kernelopts/ should be in Develop o [2002/06/03] ports/38853 portmgr net/ethereal: configure fails o [2002/06/03] misc/38854 Resetting the sysinstall during setup cau o [2002/06/03] ports/38861 ports www/auth_ldap compiles-installs but fails o [2002/06/03] misc/38870 kernel-panic when coping data from a NFS- o [2002/06/03] ports/38876 tegge devel/linuxthreads: pkg-plist ignores NOP o [2002/06/05] ports/38915 ports New port: "MOVA" - Scripts for Work with o [2002/06/05] kern/38923 sos Incorrect device use count prevents door o [2002/06/05] docs/38924 gshapiro Mailwrapper(8) or mailer.conf(5) should m o [2002/06/05] bin/38931 Cleanup for WARNS=4 of src/games/fortune/ o [2002/06/05] misc/38937 delay between tracks in digital audio dum o [2002/06/05] bin/38940 Change: an option to *stat to allow supre o [2002/06/06] ports/38958 ports New port: MySQLMan - a web based MySQL da o [2002/06/06] misc/38965 kde [PATCH] kapptemplate fails on FreeBSD o [2002/06/06] kern/38967 4/22/02 pcm driver merge appears to break o [2002/06/07] docs/38982 doc developers-hanbook/Jail fix o [2002/06/07] kern/38986 trhodes a change to msdosfs permissions behaviour o [2002/06/07] ports/38989 assar Fix to BROKEN arla port (arla-0.35.6) f [2002/06/08] i386/39023 Keystrokes yield extended ASCII f [2002/06/08] kern/39031 bugreport: kernel o [2002/06/08] docs/39044 doc The man page for rot13(6) never mentions o [2002/06/08] kern/39047 IPSEC Compression (IPCOMP) broken in tunn o [2002/06/08] ports/39054 portmgr [PATCH] Support USE_OPENSSL=yes in bsd.po o [2002/06/09] ports/39059 ports New port: IMCom command-line Jabber clien o [2002/06/09] ports/39062 ports beep: beep for a pitch and duration o [2002/06/09] www/39068 www Hypertext man pages use strange hyphen at o [2002/06/09] java/39080 sobomax java/javavmwrapper: Functionality enhance o [2002/06/10] ports/39095 mharo ports/net/nttcp and ports/net/ttcp appear o [2002/06/10] ports/39102 trevor new category requested: finance o [2002/06/10] ports/39103 trevor new virtual category requested: accessib p [2002/06/10] bin/39116 tjr /usr/bin/printf o [2002/06/10] docs/39129 doc handbook; type WRT simulating postscript s [2002/06/11] ports/39140 portmgr New Port: Acrobat Reader 5 CJK font packs o [2002/06/11] docs/39164 doc Misprint in units(1).lib (aganist) o [2002/06/11] ports/39174 des Need port of SBCL (Steel Bank Common Lisp f [2002/06/11] ports/39178 ports new port: games/crack-attack (An OpenGL g o [2002/06/11] ports/39182 ports netsaint-plugins util.c functions don't q o [2002/06/12] docs/39190 blackend Missing quote tags in releng-packages art o [2002/06/12] conf/39192 [PATCH] Save pcm mixer settings during re a [2002/06/12] ports/39193 edwin [maintainer-update] net/papaya update to o [2002/06/12] bin/39198 sh aborts on variables with periods o [2002/06/12] misc/39201 ptrace(2) and rfork(RFLINUXTHPN) confuse o [2002/06/12] ports/39204 ports New port: deskutils/mnemo, a web-based no o [2002/06/12] bin/39206 core dump bug in sshd o [2002/06/12] docs/39213 doc No rc(4) man page o [2002/06/12] docs/39214 doc No my(4) man page f [2002/06/13] misc/39229 instruction pointer = 0x8:0xc00eaf13 o [2002/06/13] ports/39250 ports New port: lang/cmucl-extra o [2002/06/13] standards/39256standards[v]snprintf aren't POSIX-conformant for s o [2002/06/13] docs/39257 doc printf manpage doesn't document error ret o [2002/06/14] docs/39293 doc the dumpon man page incorrectly states th o [2002/06/14] conf/39306 The /etc/rc file should know if is runnin o [2002/06/14] ports/39307 ports New port: ASpath-tree a IPv6 route stabil o [2002/06/14] bin/39311 qa you can't enable inetd in sysinstall with o [2002/06/14] ports/39312 ports [PATCH] Addition of mysql-awareness to mo o [2002/06/15] misc/39326 execve() for ELF exe drops VTEXT when re- o [2002/06/15] ports/39342 sobomax Add automatic truetype support to Mozilla o [2002/06/15] misc/39347 use of /usr/bin/* utils in /etc/rc.diskle o [2002/06/15] docs/39348 doc kenv fetch of hostname requires dhcp/boot o [2002/06/15] misc/39353 /usr/share/examples/diskless clone root c o [2002/06/16] misc/39360 If linux emu is added as a dependency (an o [2002/06/16] ports/39364 ports new port: cad/gwave o [2002/06/16] ports/39371 ports new port: mail/qmail-scanner o [2002/06/16] ports/39375 ports astro/seti_applet depends on libgtop whic o [2002/06/16] ports/39390 gnome Make graphics/imlib not depend upon GTK+ o [2002/06/17] ports/39416 ports New port: t2ps o [2002/06/17] misc/39425 Auto mounted directory was not found at b o [2002/06/17] misc/39439 tcopy will not duplicate tapes with block o [2002/06/18] bin/39463 [PATCH] Add several options to fingerd o [2002/06/18] misc/39466 find -xdev hangs on dead NFS mounts (/etc f [2002/06/18] ports/39470 ports Update port: devel/sdts++ o [2002/06/18] ports/39476 ports profxp will run but when you fxp a file i o [2002/06/18] ports/39487 mharo portlint doesn't accept MASTER_SITE/DISTF o [2002/06/19] ports/39504 gnome textproc/libxml2 & invalid XML catalogs i o [2002/06/19] conf/39505 automate BUILDNAME variable for releases o [2002/06/19] kern/39527 dwmalone getcwd() and unreadable parent directory o [2002/06/19] docs/39530 doc access(2) man page has unnecessarily broa o [2002/06/19] docs/39532 doc 'find' man page should a [2002/06/19] ports/39544 ports mayavi port disfunctional o [2002/06/19] ports/39550 sobomax the port doesn't install all the files li o [2002/06/20] i386/39574 qa Error mounting /dev/acd0c on /dist: No su o [2002/06/20] bin/39576 [PATCH] tail -f for multiple files p [2002/06/20] bin/39578 add more russian holydays o [2002/06/20] conf/39580 insecure default settings o [2002/06/20] i386/39584 ln -f fails to unlink o [2002/06/20] ports/39597 ports New port: jdictionary-eng-hun 1.4 - Hunga o [2002/06/20] ports/39598 ports New port: jdictionary-eng-hun-expr 1.4 - o [2002/06/20] ports/39600 znerd New port: jdictionary-ger-hun 1.4 - Germa o [2002/06/20] ports/39601 ports New port: JDictionary plugin: French-Hung o [2002/06/20] ports/39602 ports New port: JDictionary plugin: Interlingua o [2002/06/20] ports/39603 znerd New port: jdictionary-eng-ger 1.4 - Engli o [2002/06/20] ports/39608 ports upgrade games/cgoban to 1.9.13 o [2002/06/21] ports/39619 ports flashplugin-mozilla crashes and doesnt pl o [2002/06/21] ports/39620 ports flashplugin-mozilla crashes when viewing o [2002/06/21] ports/39621 ports isc-dhcpd server can't get all network in o [2002/06/21] ports/39627 chein new camserv won't compile, use old for no o [2002/06/21] ports/39631 ports port eyeclock unaligned access on alpha o [2002/06/21] ports/39634 jim Port pclock unaligned access on alpha o [2002/06/22] kern/39650 Digital audio extraction on an atapi CD d o [2002/06/22] ports/39673 ports netsaint-plugins fails to install command o [2002/06/22] bin/39676 obrien lukemftpd manual pages fix + examples o [2002/06/22] kern/39681 hidden kernel boot tunables added to sysc o [2002/06/23] ports/39697 ports New port: arson - CD burning and ripping o [2002/06/23] ports/39723 ports New port: hu-phone - Hungarian phone code o [2002/06/23] ports/39728 ports New port: hu-zipcodes - Hungarian post co o [2002/06/24] misc/39772 imp pccardd is slow to install a PCCARD. o [2002/06/24] ports/39777 des New port: security/libsectok o [2002/06/24] ports/39778 des New port: security/sectok o [2002/06/24] misc/39787 T/TCP support o [2002/06/24] ports/39799 dirk mod_php4, among other ports, maintains no o [2002/06/24] ports/39801 ports New port: kpovmodeler - a KDE frontend fo o [2002/06/24] bin/39818 cleaning sbin/atm code from warnings o [2002/06/24] bin/39819 tjr cleaning bin/sh code from warnings o [2002/06/24] docs/39822 doc firewall.7: change "Mbits" to "Mbits/s" a o [2002/06/24] docs/39824 doc Various tweaks for doc/en_US.ISO8859-1/bo o [2002/06/25] ports/39847 ports New port: dump9660 o [2002/06/25] ports/39854 ports New port: kdirstat - A small KDE utility o [2002/06/25] misc/39864 robert hostname instead of IP in w -n output o [2002/06/25] bin/39865 cleaning sbin/fsck code from some warning o [2002/06/25] bin/39866 cleaning sbin/fsdb code from warnings o [2002/06/25] bin/39867 cleaning sbin/mount_cd9660 and sbin/mount o [2002/06/25] bin/39868 cleaning sbin/dump code from warnings o [2002/06/26] ports/39882 ports pptp client does not install from port in o [2002/06/26] ports/39888 ports New Port: ports/math/maxima o [2002/06/26] bin/39893 setusercontext library call differs umask o [2002/06/26] ports/39895 ports New Port: ports/lang/screamer o [2002/06/26] bin/39904 cleaning sbin/sysctl code from warnings o [2002/06/26] bin/39905 cleaning sbin/restore code from warnings o [2002/06/26] bin/39907 cleaning sbin/savecore code from warnings o [2002/06/26] misc/39911 New Netgear MA401 pccard does not work wi o [2002/06/26] ports/39912 ports new port of ITS RP06 filesystem image for o [2002/06/27] ports/39926 ports [NEW-PORT] EKG - client for Polish instat o [2002/06/28] ports/39946 ports Shift-Tab navigation doesn't work in tk-8 o [2002/06/28] misc/39951 Sendmail 8.12.3 and `msgs' alias o [2002/06/28] ports/39955 ports new port of KLH10 PDP-10 mainframe emulat o [2002/06/28] ports/39963 ports New port: Tool to convert Outlook .pst to a [2002/06/28] ports/39965 portmgr ports/Mk/bsd.port.mk add several tools o [2002/06/28] conf/39976 vi recovery halting boot process o [2002/06/28] kern/39977 luigi Device polling support for em(4) driver o [2002/06/28] ports/39978 ports ports/devel misc Makefile cleanup o [2002/06/29] ports/40000 ports New port: a java-like thread library for o [2002/06/29] ports/40002 wjv py-4suite: XSLT import error o [2002/06/29] ports/40004 trevor ports/audio/festlex-ogi has a checksum er o [2002/06/29] kern/40017 [patch] allows config(8) to specify confi o [2002/06/29] kern/40021 [patch] use ld(1) to build kernel with li o [2002/06/30] misc/40057 bugbusterssend-pr -a flag does not work with -f o [2002/06/30] kern/40058 lockup on 5.0 DP1 - Xircom X3201 (RealPor o [2002/07/01] ports/40069 dirk mod_php4 doesn't compile with apache2 (& o [2002/07/01] ports/40072 ports port upgrade/new port graphics/sinek: a l o [2002/07/01] misc/40081 noise in sound output with built-in CMedi o [2002/07/02] ports/40107 trevor ports/audio/festogi-spanish has a checksu o [2002/07/02] ports/40110 dirk add mnoGoSearch extensions to www/mod_php o [2002/07/02] conf/40120 gshapiro Existing rc.sendmail in -STABLE doesn't a o [2002/07/02] ports/40121 ache standard Apache port creates sbin link o [2002/07/02] ports/40124 kris Patch to wdm to allow long passwords o [2002/07/02] bin/40127 [PATCH] Add functions for PID-file handli o [2002/07/03] ports/40140 trevor ports/audio/festvox-abc has a checksum er o [2002/07/03] kern/40155 No sound on Presario 700 laptop's ac97 co o [2002/07/03] ports/40163 cy screen w/o suid and locale o [2002/07/03] misc/40169 problem in latest 4.6-stable o [2002/07/04] docs/40196 doc man find does not describe -follow s [2002/07/04] misc/40197 sos BurnCD doesn't "just work" at 4.6-p1 o [2002/07/04] misc/40211 No sound on Compaq Presario 700 o [2002/07/05] docs/40234 doc Typos and language cleanup in /usr/share/ o [2002/07/05] ports/40235 ports New port: graphics/kbarcode - barcode gen o [2002/07/05] ports/40238 ports New port: devel/antlr o [2002/07/05] ports/40241 trevor Update port: biology/xdrawchem to 1.4 (fi f [2002/07/06] misc/40273 dougb some more fortunes o [2002/07/06] ports/40276 ports slurp port overwrites/delete existing con o [2002/07/06] misc/40280 I add uscanner entory o [2002/07/07] ports/40284 mi ports/x11/djvuplugin tarball no longer ex o [2002/07/07] ports/40294 ports New port: emulators/gpsim o [2002/07/07] misc/40297 Seagate STT8000A (ast0) atapi tape drive o [2002/07/07] misc/40298 using swapfile as /tmp o [2002/07/07] docs/40313 doc Grammar, wording, and clarifications for o [2002/07/07] ports/40324 markm security/pgp5 aborts on Pentium4 systems o [2002/07/08] misc/40325 UID changes not reflected in viewed file/ o [2002/07/08] ports/40344 ports update of mail/ssmtp to 2.50.9 o [2002/07/08] ports/40366 ports New port: graphics/openrm OpenGL based li o [2002/07/08] ports/40368 ports New port: games/gturing - A simple Turing o [2002/07/08] kern/40369 rman_reserve_resource - when "count > (en o [2002/07/09] ports/40372 ports ports/www/chtml mastersite has changed o [2002/07/09] misc/40378 standardsstdlib.h gives needless warnings with -an o [2002/07/09] conf/40391 sysinstall with PCCARD<->ISA bridge gets f [2002/07/09] ports/40393 ijliao Update to databases/mdbtools o [2002/07/09] ports/40396 ports New port: Logging daemon for Linksys BEFS o [2002/07/09] ports/40398 obrien new port: gcc31bc o [2002/07/10] ports/40411 ports apache-jserv port points to wrong locatio o [2002/07/10] docs/40423 doc Keyboard(4)'s definition of parameters to o [2002/07/10] docs/40443 doc Update books/faq/book.sgml for USB .ko's o [2002/07/11] ports/40452 wollman ports/www/mod_auth_kerb mastersite doesn' o [2002/07/11] ports/40461 ports New port MP3c , a cd to mp3 converter wit o [2002/07/11] docs/40465 trhodes ata(4) samples moved to atacontrol(4). o [2002/07/12] ports/40475 jkoshy ports/www/p5-HTML-Webmake has a checksum o [2002/07/12] ports/40511 sumikawa update for net/zebra (no-ipv6 option) f [2002/07/12] i386/40512 release i386 4.5 packages gnome/gnomeprin o [2002/07/12] ports/40514 ports New port: graphics/linux-ac3d easy to use o [2002/07/12] kern/40516 ti driver has no buadrate set o [2002/07/13] ports/40521 ports New ports math/blacs and math/scalapack: o [2002/07/13] ports/40525 ports [new port] mail/mew2-xemacs-devel-mule f [2002/07/13] bin/40538 dougb mergemaster fixes and enhancements o [2002/07/13] bin/40540 gshapiro allow multiple alias file to be defined i o [2002/07/13] kern/40543 /usr/src/sys/sys/proc.h:117: field `ar_ar o [2002/07/13] ports/40544 ports New port: postnuke o [2002/07/14] conf/40548 list of /etc/defaults/make.conf undocumme o [2002/07/14] misc/40552 alternate syscons font for iso-07 encodin o [2002/07/14] ports/40555 steve x11-toolkits/open-motif requires mkhtmlin o [2002/07/14] kern/40563 gif driver can clobber route/arp table o [2002/07/14] bin/40570 dhclient freeze the whole thing o [2002/07/14] bin/40572 vipw prints silly message if $EDITOR fail o [2002/07/14] misc/40577 post-October 2001 Dell Inspiron 2500's (a o [2002/07/15] ports/40593 ports www/oops FreeBSD port does not obey BATCH o [2002/07/15] bin/40597 add /sbin/fdisk ability of showing extend o [2002/07/15] ports/40602 ports new port: security/clamav o [2002/07/15] ports/40607 ports New Port: rexima o [2002/07/15] ports/40608 kde Fix port: devel/kdesdk3 o [2002/07/15] kern/40611 [PATCH] linux JRE 1.4 under linux compati o [2002/07/15] bin/40617 brian /usr/sbin/ppp is not able to bind the nat f [2002/07/15] misc/40632 psm0 busy: o [2002/07/16] ports/40644 ports New port: lang/bigloo - A Scheme interpre o [2002/07/16] ports/40645 kde kdeinit coredumps on KDE logout (11 signa o [2002/07/16] misc/40657 Logitech iFeel usb mouse will not attach o [2002/07/16] ports/40659 dirk php3 and GD problem p [2002/07/16] standards/40669standardscommand command does not support `-p' opt o [2002/07/16] misc/40671 pthread_cancel doesn't remove thread from o [2002/07/16] ports/40676 ports Fatal error building /usr/ports/security/ o [2002/07/17] ports/40689 keith ports/chinese/dia file not found on maste f [2002/07/17] misc/40693 the system reboot alone with no reason o [2002/07/17] ports/40699 portmgr allow exclude patterns in `make search` o [2002/07/17] www/40704 www Incorrect CGI settings in http://www.fi.F o [2002/07/17] ports/40705 ports Upgrade of gnome-commander to 0.9.8 o [2002/07/17] kern/40711 CT5880-C sometimes fails to output sound o [2002/07/17] bin/40717 No ftpchroot.5 -> ftpusers.5 link o [2002/07/18] ports/40742 kuriyama DSSSL Modular stylesheets not added to sg o [2002/07/18] kern/40745 Inconsistency between net/if.c and struct o [2002/07/18] ports/40756 ports insecure default options o [2002/07/19] ports/40760 ports New port: mail/kavmilter o [2002/07/19] ports/40761 ports New port: graphics/ncarg o [2002/07/19] kern/40763 [UPDATED PATCH] Introduction of non-stric o [2002/07/19] ports/40768 ports New port: korean/netdic o [2002/07/19] conf/40777 disktab does not support 2.88MB floppies o [2002/07/19] ports/40782 ports New port: www/tidy-devel (latest version o [2002/07/19] ports/40789 ports New port: graphics/gocr OCR (Optical Char o [2002/07/21] ports/40834 ports New port: net/linux-jigdo o [2002/07/21] ports/40848 pat reflect WITHOUT-X11 in package name for x o [2002/07/21] docs/40851 doc [PATCH] "mergemaster -p" in UPDATING's "C o [2002/07/21] conf/40855 psuedo-device bpf need note in LINT and G o [2002/07/21] ports/40860 lioux new port: graphics/mplayer-devel f [2002/07/21] ports/40865 ports Port of net/dhid is old. This PR updates o [2002/07/21] ports/40866 ports sml-nj port CM autoloading compilation pr o [2002/07/21] ports/40870 ports New port: graphics/animabob Interactive 3 o [2002/07/22] ports/40881 lioux Update bsd.sites.mk o [2002/07/22] ports/40892 ports New Port: lang/g95 o [2002/07/22] bin/40894 OpenSSH weird delays o [2002/07/22] ports/40904 ports new port: www/tclcurl o [2002/07/22] docs/40910 doc [PATCH] Typos & grammer fixes for /usr/sh o [2002/07/22] docs/40911 doc [PATCH] Minor improvements for /usr/share o [2002/07/22] ports/40912 ports New port: Xtend X10 controller program o [2002/07/22] ports/40914 ports New port: games/linux-nwserver Neverwinte o [2002/07/22] ports/40915 billf Fix pkg-plist for net/ethereal o [2002/07/23] kern/40919 usage of ucred->cr_uid in sys/netinet/in_ o [2002/07/23] ports/40925 ports [new port] www/ljdeps - metaport for Live o [2002/07/23] kern/40926 After Upgrading or Clean Installing 4.6, o [2002/07/23] kern/40927 sound dies with pcm:play:0 play interrupt o [2002/07/23] kern/40933 make depend fails when building kernel fr o [2002/07/23] ports/40942 ports New port: graphics/xrml Extensible scene o [2002/07/24] i386/40946 Possible way to cause a system to hang us o [2002/07/24] kern/40948 USB HP CDW8200 does not work o [2002/07/24] docs/40951 doc Various fixes for the solid-state article o [2002/07/24] docs/40952 doc login.conf should mention that "idletime" f [2002/07/24] ports/40956 tobez New port: net/p5-Net-Whois-RIPE o [2002/07/24] i386/40957 rarpd on laptops doesn't find interfaces, o [2002/07/24] bin/40958 apm on Acer TravelMate 351 could not resu o [2002/07/24] ports/40966 ports Update: net/ddup (3.0.1) o [2002/07/25] ports/40975 ports Uncatched coredump of pkg_info while pkgd o [2002/07/25] bin/40980 du(1)'s -h and -k options interact confus o [2002/07/26] bin/41012 /etc/periodic/daily/440.status-mailq assu o [2002/07/26] docs/41034 doc [PATCH] Typos in /etc/named/named.conf co o [2002/07/27] ports/41036 adamw New port: x11-wm/wmDeskGuide, a dockbar p o [2002/07/27] ports/41042 trevor Change print/acroread5 ln's command to -s o [2002/07/27] bin/41060 ready to import gzip 1.3.3 o [2002/07/27] bin/41070 added .warning in make(1) + two fixes o [2002/07/27] bin/41071 make NO to NO_ transition patch o [2002/07/28] kern/41081 n_hibma Add USB device ID for USB Flash disk driv o [2002/07/28] ports/41082 ports New port: emulators/dosbox - emulator of o [2002/07/28] ports/41084 ports New Ports / archivers/untar o [2002/07/28] docs/41089 doc pax -B option does not mention interactio o [2002/07/28] ports/41105 ports New port: graphics/renderpark System for o [2002/07/29] misc/41107 file(1) command shows incorrect data (sig o [2002/07/29] docs/41110 doc "apropos linux" doesn't find brandelf o [2002/07/29] ports/41131 dirk adding some more configuration parameters p [2002/07/29] bin/41143 schweikh termcap entry incorrect for XFree86 xterm a [2002/07/29] misc/41149 obrien fix lukemftpd man page: /etc/nologin -> / o [2002/07/30] ports/41156 dirk Port Update: www/mod_php4: Patch to scrip o [2002/07/30] bin/41159 new sed -c option to allow ; as a separat o [2002/07/30] docs/41166 doc man page for smp(4) is short on details o [2002/07/30] docs/41167 doc adventure.6 man-page, add section AUTHORS o [2002/07/30] misc/41179 LD_LIBRARY_PATH security checks f [2002/07/30] docs/41181 doc Poor grammar in the dialog manpage o [2002/07/30] bin/41190 in sed, report the { linenum instead of E o [2002/07/30] ports/41195 adrian Update port: www/squid24 - add a master s o [2002/07/31] misc/41202 Upgrade to 4.6.1-RELEASE-p3 breaks remote o [2002/07/31] ports/41209 gnome www/mozilla browser serializes DNS lookup o [2002/07/31] ports/41211 ports New port textproc/spellutils: newsbody & o [2002/07/31] misc/41213 top(1) blocks if NIS-related entries in p o [2002/07/31] misc/41215 console revert back to kbd0 (AT) after KV o [2002/07/31] ports/41219 ports Mk/bsd.sites.mk - add Apache master sites o [2002/07/31] kern/41220 [PATCH] Minor sk driver enhancements o [2002/07/31] ports/41224 dburr update port: textproc/yodl o [2002/08/01] ports/41229 ports New port: devel/aegis-mode.el o [2002/08/01] misc/41238 problems with FreeBSD installation on a d o [2002/08/01] conf/41241 qa sysinstall build uses kbdcontrol keymaps o [2002/08/01] misc/41243 USB, getting full desc failed, HID device f [2002/08/02] ports/41258 ports converters/recode needs new port revision o [2002/08/02] ports/41259 ports Info directory change for various GNU Ema o [2002/08/02] docs/41263 doc [PATCH] Clarifications and minor grammer o [2002/08/02] docs/41270 doc confusing directions for kernelconfig cha o [2002/08/02] bin/41271 Non-suid-crontab. f [2002/08/03] kern/41281 USB scanning works only once a [2002/08/03] ports/41282 ports New_Ports japanese/stevie-* o [2002/08/03] docs/41290 mheinen [PATCH] wrong size for XEmpty-Deltas in m o [2002/08/04] bin/41307 libalias: logging of links lifecycle (add o [2002/08/04] ports/41308 ports New port: devel/p5-Log-Agent-Logger o [2002/08/04] misc/41309 brian security check scripts do not delete temp o [2002/08/04] bin/41310 Added ,,-d'' option to truss(1) for chang o [2002/08/04] www/41312 scop RCS IDs are off-by-one in the NetBSD cvsw o [2002/08/04] ports/41314 ports amavis-perl is outdated (no longer suppor o [2002/08/04] kern/41317 trhodes reflect kernel building user for sudo-ers o [2002/08/04] ports/41320 ports New port : security/libprelude (part of P o [2002/08/04] ports/41321 ports New port : security/prelude-manager (part o [2002/08/04] ports/41324 ports New port : security/prelude-lml (part of o [2002/08/04] ports/41325 ports New port : security/prelude-nids (part of o [2002/08/04] misc/41328 ssh logins in 4.6.1 no longer give incomi o [2002/08/04] ports/41333 scrappy updates the net/p5-perl-ldap port o [2002/08/04] i386/41337 Compaq 900T syncs too high or incorrectly f [2002/08/05] bin/41341 johan "-vv" (very verbose) flag for chown o [2002/08/05] i386/41364 imp pccard: NewMedia "Bus Toaster" SCSI card o [2002/08/06] ports/41377 ports New version of lang/clisp f [2002/08/06] misc/41379 Cannot browse directory tree on FreeBSD m o [2002/08/07] misc/41397 no copyright or license on lib/libc/gen/s f [2002/08/07] i386/41398 Illegal instruction Core Dumped o [2002/08/07] ports/41400 benno sgmltools-lite update to 3.0.3 o [2002/08/07] kern/41415 Some USB scanner cannot talk to uscanner o [2002/08/07] docs/41423 doc Update FAQ: attrib command for windows du o [2002/08/07] ports/41434 ports New port: www/light: another Mozilla-base f [2002/08/08] ports/41439 ports [MAINTAINER UPDATE] security/fwbuilder -> f [2002/08/08] ports/41440 ports [MAINTAINER UPDATE] security/libfwbuilder o [2002/08/08] ports/41444 portmgr ports system fails to check for non-base o [2002/08/08] docs/41449 ceri [PATCH] Missing word in DNS info in Handb s [2002/08/08] ports/41452 wjv games/newkind does not compile due to all o [2002/08/08] ports/41461 ports New port: graphics/irit Solid modelling s o [2002/08/09] ports/41464 ports New port Cybercalendar 1.8.2: web based c o [2002/08/09] kern/41466 dfr Add support for 82801 MCH UP only SKU to o [2002/08/09] ports/41468 kuriyama xhtml port needs to be updated for XHTML o [2002/08/09] ports/41480 ports New port: whatpix / a perl apps to find, o [2002/08/09] kern/41489 nge(4) works as a module, but fails when f [2002/08/09] misc/41490 C-Media 8738 sound card static o [2002/08/09] i386/41495 panic: timeout table full when installing o [2002/08/09] ports/41510 ports New port: graphics/i3d 3D modeling progra o [2002/08/10] misc/41515 jhb boot0cfg corrupts slice table o [2002/08/10] misc/41523 [PATCH] Remove perl from 440.status-mailq o [2002/08/10] bin/41526 symlinked mount points get mounted more t o [2002/08/10] docs/41532 doc [PATCH] Two small fixes to books/design-4 o [2002/08/11] kern/41543 emulationEasier wine/w23 support o [2002/08/11] kern/41555 Add support of VScom titan PCI-800L f [2002/08/11] bin/41556 obrien [PATCH] wtmp patch for lukemftpd f [2002/08/11] ports/41558 knu Portupgrade is not reinstalling correctly f [2002/08/11] ports/41562 mph New port: inform-glk o [2002/08/11] misc/41566 obrien file(1) out of date p [2002/08/12] standards/41576standardsPOSIX compliance of ln(1) o [2002/08/12] ports/41577 ports port security/acid won't see apache2+mod_ o [2002/08/12] docs/41578 doc Incorrect #include in the usb(4) manpage o [2002/08/12] ports/41579 ports New port: Small LDAP-to-KAB (KDE Address o [2002/08/12] docs/41580 doc usb(4) manpage: Structures' fields aren't a [2002/08/12] bin/41583 assorted mtree bugs (+fixes) o [2002/08/12] ports/41601 ports New port: graphics/gltt TrueType fonts re o [2002/08/13] ports/41606 anholt x11/XFree86-4 metaport: if make target is o [2002/08/13] kern/41609 luigi ipwf prints error without telling the sou o [2002/08/13] ports/41619 ports New port x11-toolkits/SoQt (1.0.1) o [2002/08/13] ports/41625 ports New port: misc/spamcalc o [2002/08/13] kern/41631 PATCH to add sysctl knob to disable clone o [2002/08/13] ports/41638 ports New Port: devel/libio o [2002/08/13] docs/41643 doc New FAQ entry explaining UDMA ICRC errors o [2002/08/14] ports/41673 ports New port: igal, image gallery generator o [2002/08/14] misc/41674 iostat column formatting overlaps o [2002/08/14] ports/41678 ports New port: xfwm4 is a gtk2 WM ideal for us o [2002/08/15] conf/41691 Combining WLAN-SSID & DHCP in rc.conf o [2002/08/15] ports/41701 keichii New port: devel/RT2 f [2002/08/16] docs/41703 doc tcpdump manual mistake, with a draft amen f [2002/08/16] misc/41711 setup uses a to small disk o [2002/08/16] ports/41718 ports New port: dwatch - A daemon watcher o [2002/08/16] ports/41719 ports databases/dbview field positions of outpu o [2002/08/16] ports/41739 ports postgresql-odbc support for unixodbc [PAT o [2002/08/17] i386/41743 No sound from SiS630s controller o [2002/08/17] misc/41744 qa Cannot stop comat22 from being extracted o [2002/08/17] kern/41747 quake won't play sound with newpcm driver o [2002/08/17] ports/41755 max Wrong letters in Canna iroha dictionary o o [2002/08/18] docs/41761 doc Update for /ru/internal/ part of site o [2002/08/18] ports/41763 ports [walkthrough] fixing security/acid port o [2002/08/18] ports/41768 ports Feature request: WITHOUT_SHELL for Nethac o [2002/08/18] misc/41771 '/etc/ttys' and X f [2002/08/18] misc/41772 can't disable keybell o [2002/08/19] ports/41773 ports new port: x11-servers/Mozdev-PrintServer o [2002/08/19] ports/41784 ports vmware2 causes panic on recent -current o [2002/08/19] docs/41787 doc man page for route (Section 8) missing de o [2002/08/19] docs/41791 doc Documentation formatting error o [2002/08/19] docs/41807 doc natd -punch_fw "bug" o [2002/08/20] kern/41812 patch to detect/function AMD768 SMBus o [2002/08/20] misc/41817 pw groupshow doesn't include the login gr o [2002/08/20] docs/41820 doc Device driver confusion in Handbook (2.3) p [2002/08/20] bin/41823 printf("%+f\n", -0.0) generates +0.000000 o [2002/08/20] ports/41829 ports New port: mail/squirrelmail-devel o [2002/08/20] ports/41836 ports new port - virus filtering tool for qmail o [2002/08/21] ports/41839 ports devel/libtool 1.3.4 port patch files inco o [2002/08/21] conf/41855 improvment of /etc/rc.diskless2 script o [2002/08/21] kern/41856 VESA splash screen problems on ThinkPad 2 o [2002/08/21] ports/41861 ports New port: SMB authentication module for P o [2002/08/21] docs/41879 doc cleanup to DOCROOT/share/sgml/freebsd.dsl o [2002/08/22] bin/41902 [PATCH] Add queue depth to systat -v disk o [2002/08/22] ports/41904 brian net/pppoa: Fix Makefile to fetch correct o [2002/08/22] ports/41906 ports New port: net/ldapbrowser: Java-based LDA o [2002/08/22] ports/41909 portmgr libtool substitution in bsd.port.mk break o [2002/08/22] bin/41912 dwmalone inetd incorrectly reports exit status/sig o [2002/08/22] ports/41916 ports New Port: mail/dsbl-testers o [2002/08/22] docs/41919 doc MINI kernel for bootfloppy (Handbook p.34 f [2002/08/22] ports/41923 ports Update port: benchmarks/dbench o [2002/08/23] misc/41947 hexdump(1) unprintable ASCII enhancement o [2002/08/23] misc/41949 qa sysinstall sorts /etc/rc.conf during netb o [2002/08/24] ports/41971 ports New Port: sysutils/ipfw-manager a [2002/08/24] docs/41972 keramida A statement in ftpusers.5 can't be output o [2002/08/24] ports/41976 ports sysutils/LPRng port is outdated my 3 mont o [2002/08/24] ports/41978 trevor Unbreak ports: print/lilypond a [2002/08/24] ports/41984 ports [MAINTAINER UPDATE] Update build of netre o [2002/08/25] ports/42006 jmz aspell and ispell do not build from the p f [2002/08/25] ports/42007 ports gnunet 0.4.5 port segfaults on the first o [2002/08/25] ports/42018 ports pkg_info with PKG_PATH searches through t o [2002/08/25] ports/42020 ports New port: net/bpft o [2002/08/25] i386/42022 qa sysinstall in non-interactive mode prompt o [2002/08/26] kern/42031 paste in syscons doesn't work properly a [2002/08/27] docs/42058 ceri Documentation: Installing Oracle 8i onto o [2002/08/27] kern/42065 kern.ps_showallprocs has no effect on /pr o [2002/08/27] ports/42072 ports New port: mail/wmymail: Report new mail i o [2002/08/27] ports/42073 ports New port: x11/wmxss o [2002/08/27] ports/42075 ports New port: devel/udesc_dump: Dump USB conf o [2002/08/27] misc/42084 luigi PicoBSD's 'netstat -i' reports negative I o [2002/08/27] ports/42110 ports New port: The ACE ORB 1.2.1 o [2002/08/28] ports/42113 ports New port: lgeneral-data, data files requi o [2002/08/28] bin/42122 obrien ftpchroot problem with lukemftpd o [2002/08/28] ports/42132 ports Update port x11-toolkit/qwt o [2002/08/28] ports/42134 ports linux-gtk PORTREVISION contaminates other o [2002/08/28] ports/42143 ports japanese/eb2, "make install" fails on -RE o [2002/08/28] gnu/42154 [patch] gnu: libobjc redefines MIN and MA o [2002/08/29] i386/42162 qa Installation (sysinstall) crashes, md0c f o [2002/08/29] misc/42167 du uses linear search for duplicate inode o [2002/08/29] ports/42169 ports New port: sysutils/cmdwatch - watches out f [2002/08/29] ports/42178 ports [PATCH] port net/tightvnc and net/vnc mis o [2002/08/29] ports/42181 ports New port: www/guile-www (guile modules fo o [2002/08/29] docs/42182 doc Making Dedicated Mode disks doc out of da o [2002/08/29] ports/42184 obrien mutt port does not build or install all d o [2002/08/30] ports/42197 obrien [patch] make ports/editors GNOMENG aware o [2002/08/30] docs/42210 gioria doc/en_US.ISO8859-1/articles/releng/branc f [2002/08/30] bin/42213 moused(8) seems to delay some mouse event o [2002/08/30] bin/42217 libdisk segfaults with 1024 bytes/sector o [2002/08/30] ports/42218 ports [PATCH] Cleanup mail/ezmlm-web and bump P o [2002/08/30] ports/42234 ports New port: xglurbules o [2002/08/31] ports/42243 kde Update port: graphics/qglviewer o [2002/08/31] ports/42263 pat sysutils/xmbmon pre-everything message o [2002/08/31] kern/42274 jlemon Convert defined variable into tuneable as a [2002/08/31] bin/42275 roam [patch] sftp coredump if file specified b o [2002/08/31] ports/42280 ports New port: florist (Ada-POSIX bindings) o [2002/09/01] ports/42281 ports lang/rexx-imc - addition of UPPER patch o [2002/09/01] docs/42293 doc copystr(9) man page incorrectly describes o [2002/09/01] ports/42295 perky New port: Webware for Python (Web applica o [2002/09/01] ports/42296 ports New port: mod_webkit (adapter between Web o [2002/09/01] ports/42298 ports new-port: games/dmjava - a really authent o [2002/09/01] docs/42312 doc make release broken without full ports o [2002/09/02] ports/42323 ports Update misc/mango to version 0.18 (SUPERC o [2002/09/02] ports/42325 ports [PATCH] Update mail/cmail to 4.0.1, clean o [2002/09/02] ports/42330 ports Update port: chinese/abiword chinese/arph o [2002/09/02] misc/42336 [PATCH] ISO-fication of /usr/src/contrib/ o [2002/09/02] bin/42338 pccard_ether should run ipf -y if ipfilte o [2002/09/02] ports/42347 trevor Patch to bring x11-wm/openbox port up to o [2002/09/03] ports/42360 ports NEW PORT: mail/aileron, WINGs mail client o [2002/09/03] ports/42370 ports New Port: mail/fumail o [2002/09/03] ports/42371 ports libncurses.so.4 missing from ports/emulat o [2002/09/03] ports/42372 ports New port: security/webjob - Download and o [2002/09/03] misc/42373 Update to rc scripts to make interface al o [2002/09/03] ports/42376 ports New Port : /usr/ports/french/SPIP-1.4 o [2002/09/03] ports/42378 ports New port: science/at Acoustic ToolBox o [2002/09/03] misc/42380 ports NEW PORT: Docbook 4.2 DTD o [2002/09/03] bin/42385 clean libatm code from warnings o [2002/09/03] bin/42386 cleaning code from warnings in libkvm o [2002/09/03] bin/42387 cleaning code of librpcsvc from warnings o [2002/09/03] bin/42388 cleaning code from warnings in libm o [2002/09/03] www/42389 www FreeBSD web site navigation bar not worki o [2002/09/03] ports/42399 ports Update port: audio/normalize to 0.7.5 o [2002/09/03] misc/42400 No option to CC on web problem report for o [2002/09/03] ports/42402 ports maintainer update: sysutils/fastresolve o [2002/09/04] kern/42404 TIOCSCTTY not implemented in linuxulator o [2002/09/04] ports/42408 ports [PATCH] Update devel/elfio to 1.0.0 o [2002/09/04] misc/42410 cvsup and cvsup-without-gui packages don' o [2002/09/04] misc/42414 Booting SMP with 2 Xeon CPUs on Intel SE7 o [2002/09/04] bin/42419 syslog enhancement for the nologin shell o [2002/09/04] ports/42420 dirk mnoGoSearch support added to www/mod_php4 o [2002/09/04] ports/42421 ports New Port : french/dacode o [2002/09/04] misc/42422 dbm_delete returns -1 instead of 1 when t o [2002/09/04] ports/42423 ports Soft links to packages point to *.tbz ins o [2002/09/04] ports/42427 ports New port apache13-modssl+ipv6 o [2002/09/04] misc/42429 hash_action called with HASH_DELETE does o [2002/09/04] bin/42430 Add -m option to du(1) for compatibility o [2002/09/05] i386/42439 i386/apm: battery time reported incorrect o [2002/09/05] ports/42440 ports new port: audio/mp3gain (A tool to normal o [2002/09/05] kern/42442 problem in idlequeue/debugging mode ? o [2002/09/05] ports/42443 anholt Strange demands of XFree86-Server-4.2.0_5 o [2002/09/05] ports/42460 ports New port: di-3.7 - disk information utili o [2002/09/05] misc/42461 if_wi_pci.c,if_wi_pccard.c lack device_re o [2002/09/05] bin/42464 [PATCH] killall(1) : Add support for jail o [2002/09/05] kern/42466 linux: 'ipc' typ=258 not implemented o [2002/09/05] misc/42467 netstat -s does not include fabricated pk o [2002/09/05] misc/42468 mount_smbfs incorrectly handled configura o [2002/09/06] misc/42469 After mounting by mount_smbfs directories f [2002/09/06] misc/42470 When install packages FreeBSD read very s o [2002/09/06] ports/42483 cy misc/screen problem with editors/vim-lite o [2002/09/06] conf/42497 rc.network lacks IKE daemon startup o [2002/09/07] ports/42503 kde kuser tries to create the wrong Mailbox o [2002/09/07] ports/42509 ports Update port: security/saint to 3.5.6 o [2002/09/07] ports/42540 ports Update port: emulators/quasi88 (0.4.4 => o [2002/09/08] misc/42558 www http://www.freebsd.org/search produces in o [2002/09/08] bin/42574 YAMAHA RTW65b router coudn't be connected p [2002/09/09] ports/42593 arved Maintainer update: openag version 1.1.1 ( o [2002/09/09] java/42595 glewis java/jdk13: Math.pow function from applet f [2002/09/09] ports/42601 arved New port: devel/openhbci o [2002/09/09] ports/42602 ports typo in postinstall message in www/mod_da o [2002/09/09] bin/42609 pkg_info -qg doesn't handle missing files o [2002/09/10] i386/42641 Pam SSH authentication don't work o [2002/09/10] ports/42642 fanf cfexecd needs symlink, cfexecd, cfservd a o [2002/09/10] ports/42649 marcel linux_kdump port for source dirs != /usr/ o [2002/09/11] docs/42651 doc [PATCH] mount([28]) do not document vfs.u o [2002/09/11] bin/42655 added new command 'checkpoint' to show an o [2002/09/11] ports/42661 dinoex Maintainer Update: lang/pike adding suppo o [2002/09/11] misc/42663 pw useradd assigns unique UID's to multip o [2002/09/11] ports/42668 grog port instant-workstation should be update o [2002/09/12] ports/42685 ports openldap2 on 5.0 current runs error. link o [2002/09/12] ports/42694 ports New port: devel/ifd-devkit: PC/SC Lite IF o [2002/09/12] ports/42695 ports New port: devel/ifd-test: PC/SC Lite IFD o [2002/09/12] ports/42696 ports New port: security/libsectok_pcsc: Smartc o [2002/09/12] ports/42697 ports New port: security/ifd-gpr400: PC/SC Lite o [2002/09/12] ports/42698 ports New port: security/opensc: OpenSC Smartca o [2002/09/12] ports/42701 ports New port: devel/p5-PCSC-Card: Perl bindin o [2002/09/12] ports/42702 ports New port: security/pcsc-tools: Tools for o [2002/09/12] ports/42708 wjv update biology/emboss to EMBOSS-2.5.1 f [2002/09/12] misc/42709 pkg_add tries to use tar/gzip to unpack f o [2002/09/13] bin/42725 Patch for calendar to support Hungarian n o [2002/09/13] kern/42728 many problems in src/usr.sbin/ppp/* afte o [2002/09/13] bin/42732 Seg fault in mount_nfs o [2002/09/13] ports/42743 nakai Update port: x11-wm/icewm to 1.2.2 o [2002/09/13] docs/42760 doc [PATCH] Correct the order of fxp devices o [2002/09/13] misc/42761 No 'pscr' key defined in pl_PL.ISO8859-2. o [2002/09/14] i386/42766 Proposal to perform reboot via jump to BI o [2002/09/14] kern/42769 Boot stalls if the system has a serial co o [2002/09/14] ports/42776 ports Update port: news/ija to 0.4.13 o [2002/09/14] ports/42790 ports New Port - www/suphp : A pretty PHP wrapp o [2002/09/15] bin/42803 tconv, tic, captoinfo binaries missing fr o [2002/09/15] conf/42807 /etc/netstart doesn't run /etc/defaults/p f [2002/09/15] i386/42809 syntax error in /usr/libexec/locate.mkloc o [2002/09/15] kern/42816 file: table is full message o [2002/09/16] ports/42835 jkoshy www/p5-HTML-Webmake checksum mismatch o [2002/09/16] ports/42839 roam New Port: Weedns o [2002/09/16] ports/42840 dirk lang/php4 and www/mod_php4 need a newer m o [2002/09/16] kern/42858 Support for Netgear FA-511 pccard. f [2002/09/17] i386/42865 signal 11 caught repeatable during instal p [2002/09/18] docs/42924 ru During 'make release' is impossible to bu o [2002/09/18] ports/42927 ports New Port: games/quakeforge2 o [2002/09/18] ports/42929 ports Fix www/mod_gzip make environment for LOC o [2002/09/18] misc/42934 installation procedure on install floppie o [2002/09/18] misc/42943 fd 0,1,2 should not be set to nonblock in o [2002/09/19] www/42951 blackend fix broken link in support page: web reso o [2002/09/19] misc/42956 dlclose gives "invalid shared object hand o [2002/09/19] kern/42967 Sony MemoryStick problems with umass driv o [2002/09/19] bin/42974 [patch] ISO 8601 date format option o [2002/09/19] kern/42977 FreeBSD installer doesn't probe past EISA o [2002/09/20] ports/42984 pat Update port: sysutils/xmbmon o [2002/09/20] ports/42985 tobez Perl5 port doesn't build automatically on o [2002/09/20] ports/42986 ports New Port: libwhisker HTTP testing library o [2002/09/20] bin/43139 /sbin/route -host option doesn't always s o [2002/09/20] ports/43142 ports New port: AlsaPlayer is an audio player w o [2002/09/20] ports/43147 ports upgrade math/grace to 5.1.10 o [2002/09/21] kern/43154 tunwrite() does not allocate clusters for o [2002/09/21] conf/43167 Ability to have vnode based file systems o [2002/09/21] misc/43169 caps-lock led doesn't work o [2002/09/21] ports/43171 ports Port misc/upclient setgid kmem o [2002/09/21] misc/43177 markm Updates and additions to src/games/quiz/d o [2002/09/21] kern/43217 sos ata: strange fallback to PIO mode o [2002/09/21] ports/43220 ports [PATCH] update ports/devel/p5-String-Appr o [2002/09/21] ports/43224 ports Ports: Update to net/mudix o [2002/09/21] ports/43225 nbm phpPgAdmin port doesn't work with Apache2 o [2002/09/22] ports/43232 anholt X doesn't receive button #7 from moused's f [2002/09/22] ports/43247 ports Invalid checksum in biology/molden o [2002/09/22] misc/43262 command 'shutdown -r' (also reboot) cause o [2002/09/22] ports/43268 ports New port: audio/streamtuner-local to 0.1. o [2002/09/22] ports/43269 ports New port: audio/streamtuner-live365 to 0. o [2002/09/22] ports/43273 portmgr [patch] make bsd.port.mk checksum check a f [2002/09/23] ports/43282 dirk SONY CD-RW CRX10U don't work with FreeBSD o [2002/09/23] ports/43313 ports New Port: nikto web and CGI vulnerability o [2002/09/24] ports/43322 ports p5-Date-Calc not updated o [2002/09/24] ports/43324 kde kdebase: kdm config file overwritten when o [2002/09/24] ports/43330 edwin [FIX BENTO]: emulators/xpinmame p [2002/09/24] bin/43343 yar loader.help and default loader.conf list o [2002/09/24] kern/43348 PATCH: make tcp.log_in_vain distinguish S o [2002/09/25] kern/43355 idad driver will work if logical drives d o [2002/09/25] docs/43357 doc PATCH: fix error in reallocf(3) manpage o [2002/09/25] ports/43358 ports New port japanese/mplusfonts a [2002/09/25] ports/43362 portmgr XFree86-4 port fails to require perl. o [2002/09/25] bin/43367 incorrect report from 'who' after 'shutdo o [2002/09/25] misc/43368 pkg_create fails if target directory does o [2002/09/25] bin/43372 Broken struct ufs_args in ufsmount.h o [2002/09/26] ports/43387 ports x11-toolkits/p5-Prima port upgrade o [2002/09/26] ports/43394 ports New port yptransitd, an nss_ldap replacem o [2002/09/26] java/43400 java linux ibm jdk doesn't work for normal use o [2002/09/26] docs/43410 doc hardware-i386.html doesn't even mention p o [2002/09/27] docs/43416 doc pw(8) -u uidmin,uidmax feature is out of o [2002/09/27] ports/43425 ports New port: security/ftimes - A system base o [2002/09/27] kern/43426 mlockall and munlockall system calls are o [2002/09/27] ports/43427 arved Update Port devel/c_c++_reference .> 2.0. o [2002/09/28] ports/43453 ports Unbreak misc/gman o [2002/09/29] ports/43466 ports editors/gnuserv: gnuserv.el should be mod o [2002/09/29] misc/43470 Solid State / x109 article out of date. o [2002/09/29] bin/43471 `ls -l` shows wrong size for big files (> o [2002/09/29] misc/43474 dhcp.* values not set in kenv by bootp cl o [2002/09/29] misc/43476 rc.* uses kenv - which is in /usr/bin o [2002/09/29] ports/43477 ports New port: tads2 (Tools for writing and pl o [2002/09/29] ports/43481 ports Update port net/amcl to gnome-mud 0.9.1 o [2002/09/29] misc/43483 installation: missing '\n' (newline) in d o [2002/09/29] ports/43484 assar Update port net/arla to 0.35.9 o [2002/09/29] ports/43486 ports Update port net/arping -> 1.04 o [2002/09/29] misc/43492 fsck hard to 'switch' off in diskless or o [2002/09/29] misc/43494 wish: resolv.conf created (again) later i o [2002/09/29] misc/43495 awk - rc/diskless references by full path o [2002/09/29] misc/43496 touch - rc/diskless references by full pa o [2002/09/29] misc/43497 mount -t nfs -> crunchgen incompatible o [2002/09/29] conf/43500 rc.syscons "allscreens" improvements o [2002/09/30] ports/43526 ports tcpflow incorrectly handles incorrect dgm f [2002/09/30] i386/43527 ports ld-elf.so.1 -> libintl.so.1 not found com o [2002/09/30] www/43530 www [PATCH] Add also HTTP_X_FORWARDED_FOR hea o [2002/09/30] ports/43537 mharo portlint 2.3.3 does not handle URLs that o [2002/09/30] misc/43539 Cannot mout floppy on Compaq Proliant ML3 o [2002/09/30] ports/43540 ports Update Port net/cnet 1.7.7 -> 2.0.3 o [2002/09/30] misc/43543 cdboot does not handle 'relaxed' ISO9660 f [2002/09/30] misc/43547 ppp will not connect to att worldnet over o [2002/10/01] ports/43551 nakai update: graphics/gqview o [2002/10/01] ports/43553 tom Update notification: neon has new version o [2002/10/01] ports/43556 ports update devel/p5-Term-Screen to 1.02 o [2002/10/01] alpha/43561 jhb kern_shutdown.c uses time_t as 'long int' o [2002/10/01] ports/43565 znerd jakarta-tomcat41 port breaks upgrades o [2002/10/01] docs/43569 doc src/share/examples/worm/README out-of-dat o [2002/10/01] ports/43571 ports New port: databases/py-PySQLite o [2002/10/01] bin/43574 sos burncd prints incorrect output when using o [2002/10/02] kern/43577 [PATCH] New kernel option SHUTDOWN_BEEP o [2002/10/02] bin/43582 passwd(1) fails on nonexistent users o [2002/10/02] bin/43596 pkg_add does not propogate 'remote' to de o [2002/10/02] java/43602 glewis jdk13 does not honor WRKDIRPREFIX o [2002/10/02] kern/43610 static-ize some symbols in digi driver o [2002/10/02] kern/43611 static-ize some symbols in sys/crypto o [2002/10/02] kern/43613 static-ize symbol in smbfs code o [2002/10/02] kern/43616 static-ize some functions in sys/net/zlib o [2002/10/03] docs/43622 doc Undocumented modules (missing man pages) o [2002/10/03] kern/43623 grog vinum: 'readpol prefer' option broken [pa o [2002/10/03] ports/43633 ports Port change request: databases/adodb o [2002/10/03] ports/43641 znerd Port www/orion should log to /var/log o [2002/10/04] docs/43651 doc stab(5) incorrectly states to include jus o [2002/10/04] ports/43656 tom New version of subversion r3200 (0.34.2) o [2002/10/04] ports/43657 ports Updating dircproxy to newer version o [2002/10/04] ports/43664 ports xdm dumps core on alpha 4.7-rc0 - xdmauth o [2002/10/04] ports/43665 ports New port: audio/streamtuner 0.8.5 o [2002/10/04] ports/43667 ume RC_NG script for mail/cyrus_imapd o [2002/10/04] ports/43668 ume RC_NG script for mail/cyrus_imapd2 o [2002/10/04] ports/43669 dirk RC_NG script for databases/mysql323-{serv o [2002/10/04] ports/43670 ports RC_NG script for net/openldap o [2002/10/04] ports/43671 ports RC_NG script for net/openldap2 o [2002/10/04] ports/43672 ume RC_NG script for security/cyrus_sasl + Up o [2002/10/04] ports/43673 ume RC_NG script for security/cyrus_sasl2 o [2002/10/04] bin/43675 tjr uniq prints last, not first of the identi o [2002/10/04] docs/43678 doc [PATCH] Updates for the pciconf(8) manual f [2002/10/04] ports/43679 znerd Error starting jakarta-tomcat41 a [2002/10/05] ports/43681 ports www/apache13-fp: Update to 1.3.27 and con o [2002/10/05] ports/43689 ports New port: devel/aegis o [2002/10/05] ports/43695 ports Update port: databases/unixODBC o [2002/10/05] ports/43706 nbm Make databases/phpmyadmin operate with ap o [2002/10/05] ports/43711 ports New port: php-gtk o [2002/10/05] ports/43715 ports Update to tkrat2 port o [2002/10/05] kern/43716 puc driver does not recognize Lava Dual-6 o [2002/10/05] ports/43718 ports New port: x11-wm/icebgset (set IceWM back s [2002/10/05] ports/43721 portmgr inefficient port downloads o [2002/10/05] ports/43728 ports math/PDL break info o [2002/10/05] ports/43731 ports ports/net/coda5_server doesn't build on - o [2002/10/06] docs/43750 doc incorrect "SEE ALSO" references in wi(4) o [2002/10/06] bin/43752 [PATCH] find -not is not o [2002/10/06] docs/43755 doc Additional examples for vnconfig man page o [2002/10/06] docs/43756 doc chpass(1) manual unclear about alternate o [2002/10/07] ports/43764 ports New port: audio/wavemagic - An audio play o [2002/10/07] ports/43771 ports LaTeX ports mixed between print and textp o [2002/10/07] ports/43773 ports xmaddressbook complains when run, does no o [2002/10/07] ports/43774 ports Allow users to build security/cyrus_sasl o [2002/10/07] ports/43779 phantom update request for bugzilla o [2002/10/07] standards/43780standardsPATCH: long long functions in stdlib.h sh o [2002/10/07] ports/43787 adrian squid 2.4 using obsolute configure parame o [2002/10/07] ports/43792 ports New Port: security/libbf (The Blowfish bl o [2002/10/07] ports/43793 ports New Port: security/libidea (IDEA block ci o [2002/10/07] ports/43794 ports New Port: security/p5-Crypt-Blowfish_PP ( o [2002/10/07] ports/43795 ports New Port: security/oinkmaster (Perl scrip o [2002/10/07] ports/43799 ports New Port: security/p5-SHA (Perl5 interfac o [2002/10/07] conf/43800 Belkin 10/100 Base-TX PCMCIA card not rec o [2002/10/07] ports/43804 ports new port: sysutils/getopt (Frodo Looijaar o [2002/10/07] conf/43805 Asante' FriendlyNet AeroLAN AL1011 802.11 o [2002/10/07] ports/43809 adamw patch for audio/gdcd o [2002/10/08] bin/43819 changed truss output for utrace calls o [2002/10/08] bin/43823 [PATCH] update to environ(7) manpage o [2002/10/08] misc/43825 qa please remove object files in source (src o [2002/10/08] bin/43826 murray dhclient on 'no carrier' interfaces takes o [2002/10/08] ports/43832 ports new port games/tileworld o [2002/10/08] ports/43848 ports [patch] audio/mpmf20: Update MASTER_SITES o [2002/10/09] ports/43856 ports fix build of x11/wscan o [2002/10/09] bin/43857 hm conflicting types in /usr/src/usr.sbin/i4 o [2002/10/09] docs/43861 doc non-trivial typo in wicontrol man page o [2002/10/09] ports/43862 ports New Port: mail/dcc-dccd: Distributed Chec o [2002/10/09] docs/43864 doc Minor documentation to add o [2002/10/09] ports/43876 ports NEW PORT: mail/mailfmt o [2002/10/09] i386/43879 roger [PATCH] bktr: add IO-DATA GV-BCTV3/PCI ca o [2002/10/09] ports/43880 ports Names of Emacs ports are misleading o [2002/10/10] misc/43886 markm local exploitable overflow in rogue o [2002/10/10] ports/43890 ports [UPDATE] deskutils/xwrits o [2002/10/10] ports/43892 ports Enable use of keynote with security/isakm o [2002/10/10] ports/43895 arved New Port: security/libksba An X.509 Libra o [2002/10/10] i386/43896 Missing "syscall fstat64" in linux emulat o [2002/10/10] ports/43897 ports [NEW PORT] mail/maildirsync, online syncr o [2002/10/10] docs/43899 doc incorrect info in man page for fetch (8) o [2002/10/10] misc/43905 kqueues: EV_SET(kevp++, ...) is non-int o [2002/10/10] ports/43909 kde kscd should no longer default to rmatcd0c a [2002/10/10] ports/43910 marcus Update port: lang/guile to 1.6.0 (maybe i o [2002/10/10] ports/43911 grog instant-workstation depend annoyance o [2002/10/11] kern/43916 Olicom OC-2220 (PC-card) hangs on ifconfi o [2002/10/11] misc/43918 ru Please MFC bsd.man.mk V1.50 o [2002/10/11] java/43925 java New port: net/beepcore-java (supersedes p o [2002/10/11] java/43929 java linux-ibm-jdk core dumps without System.e o [2002/10/11] conf/43931 imp New pccard entry for Netgear CF Wireless o [2002/10/11] ports/43933 ports security/isakmpd uses hardcoded paths o [2002/10/11] bin/43938 ntpd binds to local aliases o [2002/10/11] docs/43941 doc Rationale for Upgrade Sequence o [2002/10/11] ports/43942 ports New port submission: security/hydra o [2002/10/11] java/43947 znerd Checkstyle port should install checkstyle o [2002/10/11] ports/43956 ports New port: x11-wm/ion-devel o [2002/10/12] misc/43979 After a binary upgrade, kernel with ipf f o [2002/10/12] docs/43980 darrenr ipf(5) missing "gre" keyword o [2002/10/12] misc/43989 missing tabs in calendarfiles o [2002/10/12] bin/43994 sshd gives fatal while logging off o [2002/10/13] ports/43997 ports New port: www/apache13-modsnmp: apache-1. o [2002/10/13] ports/44019 ache Fixes for ftp/wu-ftpd-2.6.2 o [2002/10/13] ports/44028 ports courier "make install" fails o [2002/10/13] docs/44034 trhodes Multiple sysctl variables are not documen a [2002/10/14] java/44039 znerd Request for port: CruiseControl a [2002/10/14] java/44041 znerd Generate bsd.java.mk from an XML file o [2002/10/14] misc/44044 4.7-R Freezes half the times snd.ko is lo o [2002/10/14] conf/44050 CVSUPIT package when installed from /stan o [2002/10/14] misc/44058 /dev/ch* is created without group write p o [2002/10/14] ports/44071 ports oops-1.5.22.20020519 port does not compil o [2002/10/14] docs/44074 doc ln(1) manual clarifications [patch] o [2002/10/14] ports/44077 ports New Port: FetchYahoo retrieves mail from o [2002/10/15] ports/44079 ports New port: textproc/gauche-sxml - SXML for o [2002/10/15] ports/44081 anholt Random XFree86-4 crashes with Enlightenme o [2002/10/15] conf/44090 pppoa authentication failure? on FreeBSD o [2002/10/15] kern/44092 dc(4) assigns incorrect link address with p [2002/10/15] ports/44095 mjacob Fix Installation of Manpages, portlint sy o [2002/10/15] kern/44098 RealTec-based NIC initialization problem o [2002/10/15] ports/44099 mharo portlint-2.3.3 give false errors on URLs p [2002/10/15] kern/44121 [PATCH] bogus cast removal in hea driver o [2002/10/15] misc/44122 tun0 gets a second ip adress after a disc o [2002/10/15] i386/44127 About usb flash boot disk! o [2002/10/16] ports/44133 ports Upgrade of www/linux-pheonix to version 0 o [2002/10/16] kern/44134 sos When doing umount ATA drive, "flushing ca o [2002/10/16] bin/44137 "make most" fails on rmail (RELENG_4) o [2002/10/16] misc/44150 Diskless kernel may crash, depends on the o [2002/10/16] ports/44151 portmgr Update libtool to 1.4.3 o [2002/10/16] ports/44153 kris [patch] Update net/xprobe to 0.0.2 o [2002/10/17] docs/44164 doc [PATCH] Update example CVSup refuse files o [2002/10/17] ports/44168 ports net/trafd install from package broken o [2002/10/17] conf/44170 Add ability to run multiple pppoed(8) on o [2002/10/17] www/44181 www www "Release Information" organization o [2002/10/17] ports/44182 vanilla New port: Cube, a 3D OpenGL first person o [2002/10/17] bin/44188 cannot install FreeBSD 4.0-4.6 to Compaq o [2002/10/18] ports/44205 ports fix build of devel/commoncpp p [2002/10/18] docs/44206 doc handbook for 4.7-RELEASE mentions devfs o [2002/10/18] bin/44212 Unify 'recursive' options -r and -R o [2002/10/18] kern/44215 PUC driver support for Moxa C320 Intellio o [2002/10/18] docs/44217 doc Problematic PDF version of handbook for 4 o [2002/10/18] kern/44218 Init dies during boot after upgrade from o [2002/10/18] java/44219 java Update port: textproc/cocoon to 2.0.3 o [2002/10/18] ports/44222 ports Update port: databases/gdbm to 1.8.2 o [2002/10/18] ports/44225 green Update port: emulators/snes9x to 1.39 (fi o [2002/10/18] bin/44238 luigi [PATCH] syntax-check option for ipfw2 o [2002/10/18] ports/44241 fanf Update: sysutils/cfengine2 o [2002/10/18] java/44251 java Create stylebook port o [2002/10/18] ports/44252 anholt XFree86-Servers port removes/overwrites c o [2002/10/19] kern/44257 [PATCH] for Intel ICH4 udma controllers o [2002/10/19] ports/44258 obrien pkg_update ate my Muttrc o [2002/10/19] kern/44260 LINT does not list pseudo-device tap o [2002/10/19] ports/44261 will [patch] astro/xplanet - make it working u o [2002/10/19] i386/44262 Problems with nrp driver o [2002/10/19] misc/44265 pkg_update does not preserve +REQUIRED_BY o [2002/10/19] kern/44267 One more modem PNP id for /usr/src/sys/is o [2002/10/19] ports/44270 ports New port: net/bind9-sdb-ldap o [2002/10/19] ports/44273 dwcjr improved samba start script o [2002/10/19] java/44275 java New Port: netbeans-ide o [2002/10/19] bin/44277 devinfo is not C++ safe o [2002/10/19] conf/44282 /etc/rc.d/sysctl script works incorrectly o [2002/10/19] misc/44286 /etc/defaults/rc.conf uses the obsolete n o [2002/10/19] kern/44293 thomas Unable to access audio CD under Linux emu o [2002/10/19] docs/44296 doc Contributors page refers to History secti o [2002/10/20] ports/44305 ports New port: java/xdoclet (an extended Javad o [2002/10/20] misc/44307 UTF-8 locales support o [2002/10/20] bin/44310 make ppp(8) add clients MAC address to al o [2002/10/20] docs/44312 doc Typos in /usr/src/share/examples/ipfw/cha o [2002/10/20] ports/44314 ports new port chk4mail o [2002/10/20] ports/44319 ports update port of mail/minimalist to the lat o [2002/10/21] ports/44327 ports databases/posgtresql7 port doesn't automa o [2002/10/21] bin/44329 wish for systat o [2002/10/21] bin/44332 look and feel of nice & renice o [2002/10/21] kern/44333 [PATCH] make A4-tech RFSW-35 mouse's whee a [2002/10/21] java/44335 znerd devel/jakarta-ant does not install man pa o [2002/10/21] docs/44337 doc [PATCH] netstat(1) manual references none o [2002/10/21] bin/44343 [PATCH] sbin/fsdb.c o [2002/10/21] docs/44363 doc /etc/rc.firewall & /etc/rc.firewall6 don' o [2002/10/21] kern/44365 introduce ulong and unchar types o [2002/10/21] kern/44372 some kernel options prevent NTP clock syn o [2002/10/22] ports/44374 obrien lang/gcc32 can't find iconv on -STABLE o [2002/10/22] ports/44378 dirk Can't compile mod_php4 for apache2 o [2002/10/22] misc/44379 libutil: property.c, properties_read() ba o [2002/10/22] java/44380 java patch for java-commapi-freebsd o [2002/10/22] ports/44392 ports New port: graphics/gwenview - An image vi o [2002/10/22] ports/44393 green Bug in emulators/snes9x -- superfluous "& o [2002/10/22] standards/44394standardsrestrict qualifiers missing from sys/sock o [2002/10/23] docs/44400 doc ipfw(8) has contradictions in bridged and o [2002/10/23] ports/44403 dougb [patch] textproc/htdig doesn't build with o [2002/10/23] ports/44423 ports audio/id3lib compilation fails in FreeBSD o [2002/10/23] ports/44424 obrien install error in /usr/ports/mail/mutt (mu o [2002/10/23] standards/44425standardsgetcwd() succeeds even if current dir has o [2002/10/24] ports/44430 dougb New port: xalan-c v. 1.4 (XSLT engine and o [2002/10/24] java/44432 java Ant-based port installs should use Jikes o [2002/10/24] ports/44434 ports New port: Apache::Gallery - mod_perl hand o [2002/10/24] docs/44435 doc sysctl manpage: add example for tcsh o [2002/10/24] i386/44438 Realtek NIC hangs after resume from acpi o [2002/10/24] kern/44439 puc doesn't find all 4 ports on SIIG Cybe o [2002/10/24] ports/44441 ports NEW PORT net/p5-Net-Services f [2002/10/24] docs/44443 trhodes addition to handbook: Using User-level PP o [2002/10/24] ports/44444 ports Sentinel port update o [2002/10/24] kern/44450 USB support FAILURE for device that was s o [2002/10/25] ports/44464 ports Ports addition f [2002/10/25] misc/44470 mouse freezed! o [2002/10/26] ports/44496 portmgr Add YACC variable to bsd.port.mk o [2002/10/26] misc/44500 AC1001 Gigabit NIC Worked o [2002/10/26] ports/44506 ports update port databases/unixODBC o [2002/10/26] kern/44508 4.7R boot delay on ata o [2002/10/26] ports/44511 openofficeopenoffice-devel won't build o [2002/10/26] ports/44513 ports Update: x11-toolkits/bwidget o [2002/10/27] ports/44533 lioux avifiles does not resolve dependecy to qt o [2002/10/27] ports/44546 ports Remove www/comline, now part of libwww a [2002/10/28] ports/44560 ports Update net/gnugadu from 0.2.0 to 0.2.4 o [2002/10/28] ports/44565 ports NEW PORT: devel/libds (Useful data struct o [2002/10/28] conf/44576 IPFilter in FreeBSD-5 can't be dynamicall o [2002/10/28] ports/44577 ports mail/gtkgrepmail run-depends on gnome-hel o [2002/10/28] i386/44580 NFS updates file access time when file is o [2002/10/28] bin/44582 johan usr.bin/bin/Makefile issues o [2002/10/29] misc/44587 dev/dpt/dpt.h is missing defines required o [2002/10/29] ports/44589 trevor [patch] Unbreak audio/csound by updating o [2002/10/29] ports/44593 ports New port: mail/hotway, a POP3 gateway for o [2002/10/29] docs/44594 doc Handbook doesn't mention drivers.flp for o [2002/10/29] ports/44712 tg python port doesn't install symlink as 'p o [2002/10/29] ports/44715 ports novell ncp client does not install o [2002/10/29] conf/44717 update login.conf and unify login capabil o [2002/10/30] misc/44747 strange echoes in sound when using PLIP o o [2002/10/30] ports/44756 arved New port: TLS/SSL-aware FTP server (BSDft o [2002/10/30] ports/44757 ports New port: TLS/SSL-aware FTP client (BSDft o [2002/10/30] ports/44758 ports Port emulators/vmware2 has a hard-code pa o [2002/10/30] i386/44762 sound (ie, not system beeps) stop working o [2002/10/30] ports/44768 ports [Port Fix]: games/xblackjack-2.2 o [2002/10/30] ports/44774 ports new port, deskutils/logjam2 o [2002/10/31] ports/44781 ports New port: AbiWord french dictionary o [2002/10/31] ports/44782 vanilla New port: DirectFB library o [2002/10/31] ports/44786 ports New port: devel/picp o [2002/10/31] ports/44796 dirk www/mod_php4: Add support for Oracle7 o [2002/10/31] conf/44800 RC_NG for local rc scripts o [2002/11/01] ports/44810 ports [NEW PORT] security/ftpmap - fingerprints o [2002/11/01] ports/44812 ports [NEW PORT] databases/puredb, libraries to o [2002/11/01] ports/44814 lioux mlDonkey 2.00 port o [2002/11/01] ports/44816 ports new port ngircd o [2002/11/02] ports/44829 des New Port: Steel Bank Common Lisp o [2002/11/02] ports/44831 dirk PORTS Uprade: mod_php4-4.2.3_1 o [2002/11/02] ports/44836 ports New port: hunch - Scan httpd log files, f o [2002/11/02] ports/44841 portmgr missing documentation from bsd.port.mk p [2002/11/02] kern/44843 keramida ipfw -t l doesn't align columns quite rig o [2002/11/03] ports/44854 ports [PATCH] add xaw3d build option to games/x o [2002/11/03] ports/44858 dirk build of mod_php4 fails at iconv o [2002/11/03] ports/44861 markp several games ports are missing their sco o [2002/11/03] ports/44863 alane New port: Ksplash-ML, a themeable ksplash s [2002/11/03] ports/44865 ports use PORTCOMMENT for audio/abcde and audio o [2002/11/04] docs/44870 doc Most sysconf(3) variables are undocumente o [2002/11/04] kern/44872 dgb driver update o [2002/11/04] ports/44875 portmgr PYTHON_VERSION statement in make.conf add o [2002/11/04] ports/44877 portmgr shorter names for REINPLACE_CMD, USE_REIN o [2002/11/04] ports/44888 nbm New user config options for sqwebmail o [2002/11/04] misc/44894 as a local non-root user and remote it's o [2002/11/04] ports/44895 portmgr I need MANPREFIX defined in MAKE_ENV o [2002/11/04] ports/44909 ports New port: Krusader 1.11, a two window fil o [2002/11/04] ports/44910 ports Updated port: astro/roadmap, honor CFLAGS o [2002/11/04] misc/44915 'choose installation media' choose CD-ROM o [2002/11/04] www/44919 portmgr suggested updates for bento Package Build o [2002/11/04] ports/44920 ports /usr/ / new patch available o [2002/11/04] java/44922 java JVM crash f [2002/11/05] ports/44928 ports change of mantainer o [2002/11/05] docs/44930 fenner misspelling in traceroute manpage o [2002/11/05] ports/44932 ports New port: xtr o [2002/11/05] ports/44949 ports New port Squid Access Report Generator o [2002/11/05] ports/44953 ports make install of apsfilter-7.2.3 fails wit o [2002/11/05] ports/44957 ports Update Port: biology/spdbv o [2002/11/05] ports/44958 ports Update port: databases/dbconnect to 0.2.4 o [2002/11/05] ports/44959 ports Update port: databases/dbh o [2002/11/05] ports/44982 ports Update port: www/chimera o [2002/11/05] gnu/44984 Send-pr can use environmental variable $F o [2002/11/05] ports/44985 ports libparanoia: Fix for -current breaks -sta o [2002/11/05] ports/44986 ports I am trying to install Netscape Communica o [2002/11/05] ports/44988 ports New port: x11-toolkits/gtkglext - an Open o [2002/11/06] ports/44990 ports New port: lang/stklos - the successor of o [2002/11/06] ports/44992 edwin fix build of net/cryptcat o [2002/11/06] ports/44993 edwin fix build of net/easysoap a [2002/11/06] ports/44994 alane phoenix broken when built with system per f [2002/11/06] ports/44999 ports [MAINTAINER UPDATE] audio/nosefart o [2002/11/06] ports/45006 portmgr name of PORTSCOMMENT is too long o [2002/11/06] conf/45010 Update URL for Top Gun ssh in /etc/termca o [2002/11/06] docs/45011 trhodes style(9): '->' and '.' don't require spac o [2002/11/06] misc/45012 Sundry errata o [2002/11/07] misc/45026 Can't set next password change date on NI o [2002/11/07] ports/45120 ports sam editor port broken out of box o [2002/11/07] ports/45127 taoka correct fetch for x11/xco f [2002/11/07] ports/45131 ports make x11/gvid fetchable again o [2002/11/08] gnu/45137 peter [PATCH] CVS 1.11.2 cannot reuse log messa o [2002/11/08] ports/45148 jhb fix fetch and build for x11/eweather and o [2002/11/09] bin/45156 sshd won't display last login information o [2002/11/09] kern/45157 MFC sys/i386/i386/identcpu.c rev 1.96-1.9 o [2002/11/09] ports/45158 tobez perl5.8 port should have an option to com o [2002/11/09] ports/45166 ports New port: emulator/fceu o [2002/11/09] www/45169 www suggested update for ports index page on o [2002/11/09] ports/45180 ports New port (split out from old port): net/s o [2002/11/09] kern/45182 fm801.c does not recognize a FM801 based o [2002/11/09] www/45184 wosch hyperlinks in mail archives don't deal wi o [2002/11/09] ports/45186 ports fix unfetchable file for palm/palmpower o [2002/11/10] bin/45193 [PATCH] truss can't truss itself o [2002/11/10] ports/45200 portmgr Options to use local patches in ports tre o [2002/11/10] ports/45205 dirk [PATCH] www/mod_php4: Fix OpenSSL use for o [2002/11/11] ports/45207 sobomax games/solarwolf has wrong permissions o [2002/11/11] docs/45213 doc [PATCH] Fix sorting in Additional Contrib o [2002/11/11] docs/45214 doc [PATCH] Fix sorting in Additional Contrib o [2002/11/11] docs/45215 doc [PATCH] Fix sorting in Additional Contrib o [2002/11/11] ports/45216 joerg devel/bcc port is incomplete o [2002/11/11] misc/45222 daily rejected mail hosts report too long o [2002/11/11] ports/45224 ports ircII o [2002/11/11] conf/45226 Fix for rc.network, ppp-user annoyance o [2002/11/11] ports/45227 ports problems building/installing db3 and open o [2002/11/11] bin/45229 restore(8) -i: ls reports mising files as o [2002/11/12] alpha/45240 alpha pstat -f column headings misaligned on Al o [2002/11/12] www/45242 www bento errlog reports out-of-date o [2002/11/12] gnu/45246 tar --listed-incremental fails for Solari o [2002/11/12] ports/45247 ports New port: www/scoop collaborative media o [2002/11/12] ports/45252 des mpg123 dumps core when $TERM is not set o [2002/11/12] misc/45254 qa Sysinstall installs things it should not o [2002/11/12] ports/45255 ports New port: Perl Class::Hook trace method c o [2002/11/13] ports/45260 ports lang/gnat-doc-html: pkg-message fix o [2002/11/13] bin/45269 heap documentation o [2002/11/13] misc/45273 contrib/smbfs: error in examples/dot.nsmb o [2002/11/13] standards/45274standardsmsgsnd() improperly prototyped o [2002/11/13] ports/45275 ports New port for "Simplicity for Java" a Java o [2002/11/14] kern/45285 Support for yet another PCI multiport car o [2002/11/14] ports/45287 ports New port: GNU Trove: High performance col o [2002/11/14] ports/45289 mita ja-dvi2ps-3.2 does not handle \special co o [2002/11/14] kern/45291 kevent(2) ignores timeout if nevents == 0 o [2002/11/14] kern/45293 kevent denies to observe /dev/tty o [2002/11/14] docs/45294 doc LINT notes are murky re PQ_CACHESIZE sett o [2002/11/14] ports/45298 ports [PATCH] make ratpoison 1.1.1 usable o [2002/11/14] ports/45301 anders [UPDATE] Update security/fpm to use GNOME f [2002/11/14] ports/45305 ports new port: audio/kmusicdb, a music collect o [2002/11/14] ports/45309 kris dumpasn1 port won't build on -stable, nee o [2002/11/15] ports/45314 nbm Update achievo to 0.8.3 o [2002/11/15] ports/45316 ports new-port: game, train control simulation o [2002/11/15] ports/45320 ports New Port: OFM - The open filemanager o [2002/11/15] ports/45323 dirk No zip support option in www/mod_php4 o [2002/11/15] bin/45327 yar [patch] ftpd extention for arbitrary chro o [2002/11/15] ports/45329 ports New port: xnodecor (x11 utility on Overri o [2002/11/16] bin/45333 [PATCH] New option -r for chown and chgrp o [2002/11/16] bin/45337 Rewritten rmuser in C o [2002/11/16] ports/45343 torstenb Metamail 2.7 incorrectly patched [PATCH] o [2002/11/16] ports/45344 ports devel/allegro: updating to 4.1.4 (devel v o [2002/11/16] ports/45347 ports [NEW PORT] security/libtasn1: ASN.1 parse o [2002/11/16] ports/45348 ports [NEW PORT] security/gnutls: GNU Transport o [2002/11/16] bin/45349 /bin/sh and 8-bit characters o [2002/11/16] ports/45351 ports lang/sr fails to compile on -CURRENT o [2002/11/16] ports/45352 ports [patch] remove dead mastersite in palm/pi o [2002/11/16] ports/45355 ports devel/p5-Proc-ProcessTable upgrade 0.35 - o [2002/11/16] ports/45356 ports pnet upgrade 0.4.4 -> 0.4.6 o [2002/11/16] ports/45357 ports PATCH: textproc/ispell - added bulgarian o [2002/11/16] ports/45360 portmgr [patch] add SITE_PERL / ARCH_PERL variabl o [2002/11/17] docs/45371 doc man page for exports lacks information on o [2002/11/18] ports/45394 wjv update biology/emboss from 2.4.1 to 2.5.1 o [2002/11/18] ports/45396 ports add MASTER_SITE_PACKETSTORM as a mirror s o [2002/11/18] ports/45401 ports New ports: security/sslsniffer (SSLv3/TL o [2002/11/18] ports/45402 ports Update isakmpd to 20021118 o [2002/11/18] ports/45404 ports Update port: textproc/isearch o [2002/11/18] ports/45414 portmgr make update in /usr/ports missing default o [2002/11/18] ports/45416 nbm [patch] fix fetch for audio/py-ao, audio/ o [2002/11/18] docs/45418 trhodes NO_CPU_CFLAGS not documented in make.conf o [2002/11/18] ports/45419 ports [patch] update plist for audio/speex o [2002/11/18] ports/45420 trevor Update port: biology/xdrawchem to 1.6 (fi o [2002/11/18] ports/45453 trevor Update port: x11-wm/evilwm to 0.9.11 o [2002/11/18] ports/45456 ports Update port: x11-wm/larswm to 7.2.8 (fix o [2002/11/18] ports/45462 ports Latest version of XML::Twig. o [2002/11/18] ports/45467 ports New ports: mail/jamlib o [2002/11/18] ports/45468 ports New port: mail/crashecho o [2002/11/19] ports/45469 ports [patch] bsd.ports.mk: automatic USE_PERL5 p [2002/11/19] docs/45470 trhodes Document everything in make.conf(5) and m f [2002/11/19] ports/45479 ports MAINTAINER UPDATE: hungarian ispell versi o [2002/11/19] ports/45482 ports update port math/gri and change of mainta o [2002/11/19] bin/45486 Support for human readble (-h/-H) output o [2002/11/19] ports/45491 ports New Port: apache-soap (Apache SOAP Toolki o [2002/11/19] ports/45496 ports [New Port] www/mod_layout2 : mod_layout A o [2002/11/19] ports/45497 ports [PORT UPDATE] textproc/htmldoc 1.8.20 -> o [2002/11/19] ports/45501 ports new port: net/hinfo, look up host info fo o [2002/11/19] ports/45502 ports [New Port] www/mod_accounting : An Apache f [2002/11/19] ports/45506 naddy ports/audio/libvorbis does not build beca o [2002/11/19] ports/45507 ports x11-wm/fvwm-theme tried to remove essenti o [2002/11/19] ports/45509 ports security/saint no longer appears to be av o [2002/11/19] ports/45515 dougb xpdf 2.00 dumps core when exit o [2002/11/20] ports/45521 ports new port Sleepycat Berkeley DB4.1 o [2002/11/20] ports/45522 ports new port database/WWWdb-0.8.2 o [2002/11/20] ports/45526 ports New port: math/maxima -- symbolic compute o [2002/11/20] ports/45534 trevor x11-wm/openbox: Update to 2.2.1 (testing) o [2002/11/20] bin/45547 sos a patch to make burncd handle .wav files. o [2002/11/20] ports/45548 wjv Port upgate: textproc/py-csv to 1.0 o [2002/11/20] ports/45551 ports mail/smail port fails to build (fix inclu o [2002/11/21] ports/45554 ports [PATCH] databases/sqlrelay: Add Interbase o [2002/11/21] www/45560 www russian FAQ trouble on www.FreeBSD.org o [2002/11/21] ports/45561 ports xnview 1.46 is available o [2002/11/21] ports/45575 ports Update to R-letter port o [2002/11/21] ports/45576 ports port lcms fails test after build on curre o [2002/11/21] ports/45577 ports Update distfile location for audio/xmms-m a [2002/11/22] bin/45584 tjr read builtin function of sh does not read o [2002/11/22] ports/45585 anders [NON-MAINTAINER UPDATE] : www/pound : upd o [2002/11/22] docs/45590 obrien Bad pathname in ftpusers(5) FILES section o [2002/11/22] bin/45593 MAILTO environment variable in root cront o [2002/11/22] ports/45596 dwcjr net/samba v2.2.7 fetch error - maybe a fi f [2002/11/22] ports/45598 alane /usr/ports/devel/autoconf213 fails to bui o [2002/11/22] ports/45599 kuriyama palm/prc-tools-binutils fails to build o [2002/11/22] docs/45604 doc Minor language fixes to syslog.conf.5 o [2002/11/22] ports/45605 ports New port: rbl-milter, a sendmail milter o [2002/11/22] ports/45606 dougb textproc/htdig depends on apache in a rou o [2002/11/22] ports/45607 ports New port: french/grisbi, a french finance o [2002/11/22] conf/45608 qa Install should config all ether devices, o [2002/11/22] ports/45611 ports Subject: 'wv' port does not specify lynx o [2002/11/22] ports/45612 marcel port devel/linux_kdump does not compile o [2002/11/22] ports/45613 ports make update doesn't o [2002/11/23] ports/45655 ports update Xbae port to 4.50.0 o [2002/11/23] bin/45659 portmap can not be bound to only loopback o [2002/11/24] docs/45671 doc missing cross-reference in usb(4) o [2002/11/24] conf/45672 Makefile support for sendmail CIDR pre-pa o [2002/11/24] ports/45675 adamw [FIX BENTO] lang/dice f [2002/11/24] ports/45681 sada Update port: chinese/chitex o [2002/11/24] kern/45684 systat -vmstat reports "alternate system o [2002/11/24] ports/45686 ports New port: security/clamav Clam AntiVirus, o [2002/11/24] ports/45687 ports textproc/htdig port puts scripts in the w o [2002/11/24] ports/45691 dwcjr Add option to disable samba optimization. o [2002/11/24] i386/45692 ACPI error on Acer motherboard o [2002/11/24] ports/45693 ports New port: net/gkrellmmultiping2 o [2002/11/24] ports/45695 ports pnet upgrade 0.4.4 -> 0.4.8 o [2002/11/24] ports/45696 ports new port, lang/pnetlib o [2002/11/24] ports/45700 ports gcombust upgrade patches [MAINTAINER] o [2002/11/24] bin/45701 markm spelling error in rogue o [2002/11/25] docs/45702 doc Error in manual page ssh_config(5) o [2002/11/25] misc/45704 [PATCH] request to change cp866b to cp866 o [2002/11/25] ports/45705 ports MAINTAINER UPDATE: hungarian ispell versi o [2002/11/25] ports/45709 ports Update port: chinese/cce o [2002/11/25] ports/45711 ports mail/gbuffy update to 0.2.4 o [2002/11/25] ports/45712 sobomax [UPDATE] games/teg to 0.11.0 o [2002/11/25] ports/45714 ports New Port: KMyIRC o [2002/11/25] ports/45715 alane Building KDE3 failed on cups o [2002/11/25] ports/45722 ports [MAINTAINER] Update mail/anubis to 3.6.1 o [2002/11/25] ports/45726 ports [MAINTAINER UPDATE] security/p5-File-Scan o [2002/11/25] ports/45728 ports Update port: mail/grepmail to 4.80 o [2002/11/25] bin/45729 make rbootd transfere the default file if o [2002/11/26] ports/45745 ports Maintainer update: net/adasockets o [2002/11/26] ports/45748 ports Port x11-wm/windowmaker , add knob to dis o [2002/11/26] bin/45749 [PATCH] rm -f in MS-DOS directory o [2002/11/26] ports/45750 ports Update port: [Maintainer Update]: irc/pis o [2002/11/26] ports/45752 ports Update security/isakmpd o [2002/11/26] kern/45753 linux-sun-jdk1.4.1 calls SIOCGIFCONF ioct o [2002/11/26] ports/45755 dd /usr/ports/net/dictd does not build, at l o [2002/11/26] ports/45762 nbm [PATCH] Update mail/courier-imap to 1.6.1 o [2002/11/26] ports/45764 ports Update port: irc/lostirc - A simple and m o [2002/11/26] ports/45769 ports PATCH: Add bounds-checking option to lang o [2002/11/26] ports/45771 ports OffiX printer doesn't find printer o [2002/11/26] ports/45775 ports Fix for games/euchre port for 5.0 o [2002/11/26] ports/45776 ports [patch] fix fetch for security/aafid2 o [2002/11/26] ports/45778 ports [patch] fix pkg-descr for security/find_d o [2002/11/26] ports/45779 ports [patch] remove stale mastersite for secur o [2002/11/26] ports/45780 ports [patch] fix fetch for emulators/fmsx o [2002/11/26] ports/45781 ports [patch] fix fetch and update version for o [2002/11/26] ports/45782 ports [patch] fix fetch and update version for o [2002/11/26] ports/45784 ports [patch] fix fetch for emulators/pcve o [2002/11/26] kern/45785 Linux WineX seems to require a few new li o [2002/11/26] ports/45786 ports [MAINTAINER UPDATE] o [2002/11/26] ports/45787 ports Update port: print/dvipdfm-cjk o [2002/11/27] kern/45793 Invalid media subtype aliases in if_media o [2002/11/27] ports/45795 ports /usr/ports/net/silc-client update o [2002/11/27] ports/45796 ports Update port: irc/pircbot o [2002/11/27] ports/45798 ports Update port: chinese/dictd-database o [2002/11/27] ports/45799 ports New port print/mup o [2002/11/27] ports/45800 ports New port submission: sysutils/dialog o [2002/11/27] ports/45801 billf ports/textproc7word2x is gone o [2002/11/27] ports/45803 ports security/john does not install lanman.chr o [2002/11/27] ports/45804 openofficeeditors/openoffice should use USE_JAVA o [2002/11/27] ports/45807 ports update-port: ftp/gftp o [2002/11/27] ports/45809 ports update-port: sysutils/xcdroast o [2002/11/27] ports/45810 ports sysutils/pear-Log: upgrade to 1.5.1. o [2002/11/27] ports/45812 ports New port for print/mup o [2002/11/27] ports/45814 anders Typo in /usr/ports/mail/cclient/pkg-comme o [2002/11/28] ports/45815 nobutaka graphics/xine 0.9.15 released a [2002/11/28] ports/45816 znerd java/jakarta-commons-lang 1.0.1 o [2002/11/28] bin/45817 [PATCH] Fortune files are needlessly rand o [2002/11/28] docs/45819 rwatson [PATCH] Fix a word in mac_biba.9 o [2002/11/28] docs/45820 doc [PATCH] to sh(1) manual page: trapsasync o [2002/11/28] ports/45821 ports Update port: chinese/big5con o [2002/11/28] ports/45827 ports [PATCH] Fix emulators/bochs WITH_BOCHS_PR o [2002/11/28] ports/45828 jedgar Update emulators/sim to 2.10 o [2002/11/28] ports/45829 lioux maintainer-update: graphics/transcode o [2002/11/28] misc/45830 KDC has problems when listening to IPv6 a o [2002/11/28] ports/45831 ports update-port: graphics/xawtv o [2002/11/28] ports/45832 ports [New port] multimedia/slideshow: slidesho o [2002/11/29] ports/45834 ports Port Update: audio/easytag o [2002/11/29] bin/45838 libusbhid needs small patch to report nam o [2002/11/29] misc/45839 [PATCH] Remove some duplicate fortunes o [2002/11/29] ports/45841 arved [patch] x11-wm/wmx compile and run-time e o [2002/11/29] ports/45843 dbaker sysutils/3dm - needs to detect and create o [2002/11/29] ports/45845 nakai Update port: lang/slib to 2d5 (supersedes o [2002/11/29] ports/45846 ports Update port: textproc/resume to 1.5.1 o [2002/11/29] ports/45847 ports Update port: devel/eboxy to 0.3.4 o [2002/11/29] ports/45848 ports Update port: comms/gsmlib to 1.10 o [2002/11/29] ports/45849 ports Update port: devel/fastdep to 0.14 o [2002/11/29] ports/45850 ports Update port: graphics/gtkam o [2002/11/29] ports/45851 ports Update port: devel/libmba to 0.4.6 o [2002/11/29] ports/45852 ports Update port: graphics/xpaint to 2.6.7 o [2002/11/29] ports/45853 ports Update port: mail/nail to 10.3 o [2002/11/29] ports/45854 ports Update port: japanese/ebview to 0.2.0 o [2002/11/29] ports/45855 ports Update port: lang/scm to 5d7 o [2002/11/29] ports/45856 ports Update port: japanese/plain2 to 2.54.1 o [2002/11/29] ports/45857 ports Update port: misc/gretl to 1.0.1 o [2002/11/29] ports/45858 ports Update port: print/catdvi to 0.14 o [2002/11/29] ports/45859 ports Update port: print/psmark to 2.1 o [2002/11/29] ports/45860 ports Update port: www/retawq to 0.1.3 o [2002/11/29] ports/45862 ports Update port: security/firewalk o [2002/11/29] ports/45865 ports Update port: print/gimp-print to 4.2.4 o [2002/11/29] ports/45866 ports Update port: archivers/star to 1.4.2 o [2002/11/30] ports/45870 ports Update port: japanese/cal.rb to 0.2.2002. o [2002/11/30] misc/45874 [PATCH] FreeBSD does not know about ca_ES o [2002/11/30] ports/45875 ports New port: audio/gnupod - Collection of pe o [2002/11/30] ports/45876 ports maintainer update: security/ssh2 -> 3.2.2 o [2002/11/30] ports/45884 ports Info update in postgresql-pltcltk o [2002/11/30] ports/45886 ports New ports: japanese/trr* o [2002/11/30] ports/45887 ports Update py-PyGreSQL to version 7.3 o [2002/11/30] ports/45888 ports maintainer-update: www/smarty to 2.3.1 o [2002/11/30] ports/45890 ports Maintainer update: devel/buildtool to ver o [2002/11/30] docs/45893 trhodes Language improvements to device.hints.5 o [2002/12/01] bin/45896 setnetgrent() should return error code o [2002/12/01] bin/45897 /usr/bin/du option -h -k conflicts. o [2002/12/01] ports/45899 ports Packaging list for vlc-0.4.4 is incomplet o [2002/12/01] ports/45900 ports security/sfs conflicts with bison 1.75 [p o [2002/12/01] ports/45902 gnome nautilus2 port should depend on gnome-con o [2002/12/01] conf/45903 /etc/mail/Makefile doesn't handle multipl o [2002/12/01] ports/45905 ports New port: devel/rt3 o [2002/12/01] ports/45909 ports New port: Python DBI Sybase module o [2002/12/02] ports/45911 ports GEOM-related problem sysutils/diskcheckd p [2002/12/02] bin/45914 roam problems with /usr/bin/finger on some hos o [2002/12/02] ports/45915 ports New port: devel/publib o [2002/12/02] ports/45918 ports [PATCH] imageindex port needs version upd o [2002/12/02] ports/45919 ports Update port: audio/libsidplay2 o [2002/12/02] ports/45920 ports Update port: audio/resid o [2002/12/02] ports/45921 ports Update port: databases/gigabase to 2.75 o [2002/12/02] ports/45922 ports Update port: audio/gnump3d to 1.0 o [2002/12/02] ports/45923 ports Update port: databases/fastdb to 2.54 o [2002/12/02] ports/45924 ports Update port: databases/libdbi to 0.6.7 o [2002/12/02] ports/45925 ports Update port: devel/ragel to 1.4.1 o [2002/12/02] ports/45926 ports Update port: devel/cdecl o [2002/12/02] ports/45927 ports Update port: devel/log4cpp to 0.3.4 o [2002/12/02] ports/45928 ports Update port: devel/lwp o [2002/12/02] ports/45929 ports Update port: devel/ucpp o [2002/12/02] ports/45930 ports Update port: emulators/atari800 to 1.2.5 o [2002/12/02] ports/45931 ports Update port: databases/grass to 5.0.0 o [2002/12/02] ports/45932 ports Update port: graphics/gtkam to 1.0.10 (fi o [2002/12/02] ports/45933 ports Update port: mail/wmbiff to 0.4.9 f [2002/12/02] ports/45934 arved Update port: deskutils/tuxcards to 1.0.b2 o [2002/12/02] ports/45935 ports Update port: lang/otcl to 1.0a8 o [2002/12/02] ports/45936 ports Update port: lang/onyx to 4.2.0 o [2002/12/02] ports/45937 ports Update port: mail/sentinal to 1.6.1b o [2002/12/02] ports/45938 ports Update port: graphics/gphoto2 to 2.1.1 o [2002/12/02] docs/45940 doc burncd missing info o [2002/12/02] ports/45942 marcus Update port: graphics/gthumb2 to 1.06 o [2002/12/02] alpha/45947 alpha init does not invoke getty o [2002/12/02] ports/45949 ports [patch] fix fetch for x11/xantfarm o [2002/12/02] ports/45950 ports [patch] fix fetch for x11/swish++ by vers o [2002/12/02] ports/45952 ports [patch] fix fetch and update version for o [2002/12/02] ports/45953 ports [patch] fix fetch for textproc/pybook by o [2002/12/02] ports/45954 ports [patch] fix fetch for textproc/tex2im by o [2002/12/02] ports/45955 ports [patch] fix fetch for lang/mmix (non-main o [2002/12/02] ports/45956 ports [patch] fix fetch for devel/understand_a o [2002/12/03] bin/45958 [PATCH] extend arp -f syntax o [2002/12/03] ports/45959 ports [patch] fix fetch for graphics/plasma-kmo o [2002/12/03] ports/45962 ports [maintainer] unbreak graphics/xmrm o [2002/12/03] ports/45963 ports the port looks for majordomo.cf in /etc o [2002/12/03] kern/45964 ipfw2 logs wrong port number when forward o [2002/12/03] ports/45965 ports new port: sysutils/fonteditfs o [2002/12/03] bin/45967 telnetd does not set SO_DEBUG for -debug o [2002/12/03] kern/45968 des linprocfs is missing maps o [2002/12/03] ports/45969 gnome Calendar for mozilla 1.2.1 o [2002/12/03] ports/45970 kbyanc [FIX BENTO] news/bgrab on -current o [2002/12/03] ports/45971 ports Fix port: java/jakarta-log4j o [2002/12/03] ports/45975 ports Update port: mail/mimedefang to 2.27 o [2002/12/03] ports/45977 dbaker New version of FreeBSD dnet client releas o [2002/12/03] ports/45978 kevlo Update port: devel/clo++ to 0.6.1 o [2002/12/03] ports/45979 ports Update of lang/pike72 to 7.2.440 o [2002/12/03] ports/45980 ports New port: lang/pexts : Pike extensions fo a [2002/12/03] docs/45981 ceri Printer setup documentation: Running dmes o [2002/12/03] ports/45984 ports the port 'p5-XML-Sablotron' does not work o [2002/12/04] ports/45985 ports [MAINTAINER UPDATE]: x11-wm/bbpager o [2002/12/04] ports/45987 ports update, devel/cvsplot 1.6.1 -> 1.6.2 o [2002/12/04] ports/45988 ports [NEW PORT]: x11/nvidia-driver o [2002/12/04] ports/45991 gnome gdm PreSession and PostSession scripts o [2002/12/04] ports/45992 ports Update port: net/vnc o [2002/12/04] ports/45993 des Update www/opera to 6.11 and add shared q o [2002/12/04] kern/45994 Pages marked read-only via mprotect() are o [2002/12/04] ports/45996 ports [MAINTAINER UPDATE] net/smokeping restart o [2002/12/04] ports/45998 ports [NEW PORT] devel/p5-Log-Log4perl, Log4j f o [2002/12/04] kern/46000 Fix reading of mixed-mode CD's in ATAPI C o [2002/12/04] kern/46004 trhodes Add support for Trek Thumbdrive 8MB USB d o [2002/12/05] ports/46005 ports New port: ginsu - a client for the gale s o [2002/12/05] ports/46009 ports New port: openldap-2.1 o [2002/12/05] ports/46012 ports maintainer update: security/ssh2 fixes o [2002/12/05] kern/46014 atapi-cam: cd0c errors o [2002/12/05] bin/46015 [Patch] Fix non standard C code o [2002/12/05] ports/46018 ports Update port: chinese/mplayer-fonts o [2002/12/06] ports/46020 ports update-port: ftp/gftp o [2002/12/06] ports/46021 ports [patch] fix fetch for ftp/xrmftp o [2002/12/06] ports/46022 ports [patch] fix fetch and plist for databases o [2002/12/06] ports/46024 ports palm/plucker-1.2 doesn't work with python o [2002/12/06] kern/46028 Incorrect vlan tag ID detection on em dri a [2002/12/06] ports/46032 gnome net/gabber doesn't work on -CURRENT o [2002/12/06] ports/46033 ports chinese/mozilla-tclp from 1.0.1 to 'unive o [2002/12/06] ports/46034 ports new ports: mantis o [2002/12/06] standards/46035tjr pathchk doesn't understand the new meanin o [2002/12/06] ports/46038 ports Update port: devel/xmake to 1.06 o [2002/12/06] ports/46040 ports request to repo copy www/dansguardian to o [2002/12/06] ports/46041 ports port update: www/dansguardian to version o [2002/12/06] ports/46042 ports port update: www/dansguardian-devel to v o [2002/12/06] ports/46043 ports maintainer-update of mail/mutt-devel o [2002/12/06] ports/46044 ports Port of SmartEiffel 1.0 o [2002/12/06] ports/46045 ports SmallEifel was renamed to SmartEiffel o [2002/12/06] ports/46046 ports /usr/ports/mail/mutt-devel update o [2002/12/06] ports/46047 ports [patch] fix fetch for devel/cons o [2002/12/06] ports/46048 ports chinese/mozilla-tclp from 'universal' rev o [2002/12/06] ports/46050 ports Update port: x11/xlockmore from version 5 o [2002/12/06] ports/46051 ports sfs-0.7.1 is now available o [2002/12/07] ports/46053 ports [patch] fix fetch for devel/cvsdelta o [2002/12/07] ports/46054 ports [patch] fix pkg-descr for devel/cvspadm o [2002/12/07] ports/46055 ports [patch] fix fetch for devel/doc++ o [2002/12/07] ports/46056 ports [patch] fix pkg-descr for devel/ffcall o [2002/12/07] ports/46058 ports phoenix crashes when viewing certain text o [2002/12/07] conf/46062 Remove skel from BSD.root.dist. o [2002/12/07] ports/46063 ports New port: USB FM Radio Control utility o [2002/12/07] ports/46065 ports [patch] fix fetch for devel/libvanessa_* o [2002/12/07] ports/46070 ports [patch] fix fetch and update version for o [2002/12/07] ports/46071 ports update port spin to 3.5.2 o [2002/12/07] ports/46073 ports [patch] fix fetch for devel/py-game by ve o [2002/12/07] ports/46077 ports [patch] fix fetch for devel/gsnes9x o [2002/12/07] ports/46078 ports [PATCH] Update mail/offlineimap to 3.99.5 o [2002/12/07] kern/46080 [PATCH] logamount in ipfw2 does not defau o [2002/12/07] ports/46082 ports delete obsolete port mbone/rat30 o [2002/12/07] docs/46084 doc Update to the contributing article o [2002/12/07] ports/46085 ports Maintainer update: net/ap-utils to 1.3 o [2002/12/07] ports/46086 ports [patch] remove obsolete distfile for mbon o [2002/12/07] ports/46087 ports [patch] fix fetch for mbone/speak-freely o [2002/12/07] ports/46089 ports multimedia/xmms Vorbis plugin built incor o [2002/12/07] ports/46090 ports New Port: security/fakeident o [2002/12/08] ports/46091 alane new port: deskutils/knowit: kde note take o [2002/12/08] ports/46092 tg ports/print/acroread on i386 needs Linux o [2002/12/08] bin/46096 sos [patch] Make atacontrol(8) give better er o [2002/12/08] ports/46097 ports update port: png2ico o [2002/12/08] ports/46098 ports maintainer-update: x11-wm/fluxbox o [2002/12/08] ports/46099 ports Port update for databases/py-pyPgSQL o [2002/12/08] ports/46101 ports maintainer-update: x11-wm/fluxconf (0.6.0 o [2002/12/08] docs/46104 doc "transferred" missing 'r' in iostat man p o [2002/12/08] bin/46107 killall(1) can prematurely kill itself o [2002/12/08] ports/46108 ports [NEW PORT] zodb3 o [2002/12/08] bin/46110 why does fsck work with / mounted r/o but o [2002/12/08] ports/46111 ports maintainer-update: security/gpgme (fix ur o [2002/12/09] docs/46117 doc fix man page of mount_udf o [2002/12/09] standards/46119standardsPriority problems for SCHED_OTHER using p o [2002/12/09] ports/46120 ports [PATCH] Update net/vnc port Makefile to a o [2002/12/09] ports/46121 ports Update port: [Maintainer Update]: net/slu o [2002/12/09] kern/46122 msgget() can return negative value after o [2002/12/09] bin/46123 PATCH: tcpdump needs -a flag if netmask i o [2002/12/09] ports/46127 ports Update port: devel/ftnchek to 3.2.0 o [2002/12/09] ports/46128 ports Update port: biology/xdrawchem to 1.6.1 ( o [2002/12/09] ports/46129 ports Update port: devel/styx to 1.5.1 o [2002/12/09] ports/46130 ports Update port: ftp/yafc to 1.0 o [2002/12/09] ports/46131 ports Update port: editors/ted to 2.12 o [2002/12/09] ports/46132 ports Update port: games/xqf to 0.9.10 o [2002/12/09] ports/46133 ports Update port: graphics/feh to 1.2.3 o [2002/12/09] ports/46134 ports Update port: games/gl-117 to 0.8 (fix por o [2002/12/09] ports/46135 ports Update port: math/tvmet to 0.7.0 o [2002/12/09] ports/46136 ports Update port: graphics/libgrass5 to 1.0.0 o [2002/12/09] ports/46137 ports Update port: games/bzflag to 1.7g.0 o [2002/12/09] ports/46138 ports Update port: graphics/pornview to 0.1.3 o [2002/12/09] ports/46139 ports Update port: audio/libsndfile to 1.0.3 (f o [2002/12/09] ports/46140 ports Update port: lang/smalltalk to 2.0.9 o [2002/12/09] ports/46141 ports Update port: cad/gerbv to 0.11 o [2002/12/09] ports/46142 ports Update port: net/maradns to 1.0.19 o [2002/12/09] ports/46143 ports Update port: net/tightvnc to 1.2.7 o [2002/12/09] ports/46144 ports Update port: x11/xnee to 1.0 o [2002/12/09] ports/46145 ports Update port: www/harvest to 1.9.1 (fix po o [2002/12/09] ports/46146 ports Update port: print/ghostscript-afpl to 8. o [2002/12/09] ports/46147 ports Update converters/xmedcon 2746 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 Dec 9 13: 0:17 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8769B37B401 for ; Mon, 9 Dec 2002 13:00:14 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C7E043ED1 for ; Mon, 9 Dec 2002 13:00:14 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB9L0Dx3020943 for ; Mon, 9 Dec 2002 13:00:13 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB9L0DHU020942; Mon, 9 Dec 2002 13:00:13 -0800 (PST) Date: Mon, 9 Dec 2002 13:00:13 -0800 (PST) Message-Id: <200212092100.gB9L0DHU020942@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Peter Edwards" Subject: Re: kern/45994: Pages marked read-only via mprotect are zeroed in core files Reply-To: "Peter Edwards" 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/45994; it has been noted by GNATS. From: "Peter Edwards" To: archie@packetdesign.com, freebsd-gnats-submit@freebsd.org Cc: Subject: Re: kern/45994: Pages marked read-only via mprotect are zeroed in core files Date: Mon, 9 Dec 2002 20:55:47 +0000 Hi, sys/kern/imgact_elf.c's each_writable_segment iterates over the processes vm map, and works out what pages need to go into the core file. It ignores any vm entries that are not read/write, as well as those marked with a "no coredump" flag. In order to get the elf image activator to dump read-only data in the core file, you need to allow this to output readonly segments. The patch below does that, by adding a debug sysctl, "debug.elf_bigcore". However, note that this will dump _any_ segment that is readonly, including text segments and read-only segments from executables. This will make the core files quite large, particularly for programs that load a lot of shared libraries. It might, however, allow you to debug a problem more easily than you were able to before, so I hope its useful. I imagine a more complete fix is to start using MAP_NOCORE properly, so that both the dynamic linker and the kernel itself use it on readonly sections of loaded executables. If anyone agrees, I'm willing to submit patches to elf_imgact and rtld_elf to do that: I just don't want to do the grunt-work if no one's interested. -- Peter Edwards. diff -u -r1.73.2.11 imgact_elf.c --- imgact_elf.c 9 Sep 2002 17:38:47 -0000 1.73.2.11 +++ imgact_elf.c 9 Dec 2002 20:22:59 -0000 @@ -79,7 +79,10 @@ static int exec_elf_imgact __P((struct image_params *imgp)); static int elf_trace = 0; +static int elf_bigcore = 0; + SYSCTL_INT(_debug, OID_AUTO, elf_trace, CTLFLAG_RW, &elf_trace, 0, ""); +SYSCTL_INT(_debug, OID_AUTO, elf_bigcore, CTLFLAG_RW, &elf_bigcore, 0, ""); static struct sysentvec elf_freebsd_sysvec = { SYS_MAXSYSCALL, @@ -493,6 +496,11 @@ * From this point on, we may have resources that need to be freed. */ + if ((error = exec_extract_strings(imgp)) != 0) + goto fail; + + exec_new_vmspace(imgp); + /* * Yeah, I'm paranoid. There is every reason in the world to get * VTEXT now since from here on out, there are places we can have @@ -503,11 +511,6 @@ imgp->vp->v_flag |= VTEXT; simple_unlock(&imgp->vp->v_interlock); - if ((error = exec_extract_strings(imgp)) != 0) - goto fail; - - exec_new_vmspace(imgp); - vmspace = imgp->proc->p_vmspace; for (i = 0; i < hdr->e_phnum; i++) { @@ -887,6 +890,7 @@ vm_object_t obj; if ((entry->eflags & MAP_ENTRY_IS_SUB_MAP) || + !elf_bigcore && (entry->protection & (VM_PROT_READ|VM_PROT_WRITE)) != (VM_PROT_READ|VM_PROT_WRITE)) continue; To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 9 13:11:50 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 74F2B37B401; Mon, 9 Dec 2002 13:11:49 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 16BC943ED4; Mon, 9 Dec 2002 13:11:49 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB9LBmx3029799; Mon, 9 Dec 2002 13:11:48 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB9LBlp9029795; Mon, 9 Dec 2002 13:11:47 -0800 (PST) Date: Mon, 9 Dec 2002 13:11:47 -0800 (PST) From: Ian Dowse Message-Id: <200212092111.gB9LBlp9029795@freefall.freebsd.org> To: kirill@tavrida.net, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/36149: kernel panic with option PPP_DEFLATE for 4.5-STABLE 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: kernel panic with option PPP_DEFLATE for 4.5-STABLE State-Changed-From-To: feedback->closed State-Changed-By: iedowse State-Changed-When: Mon Dec 9 13:08:13 PST 2002 State-Changed-Why: Submitter confirms that a May 01 2002 system works fine (the zlib bug was corrected on March 20th). http://www.freebsd.org/cgi/query-pr.cgi?pr=36149 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 9 13:13: 3 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0229D37B401; Mon, 9 Dec 2002 13:13:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7143043EE1; Mon, 9 Dec 2002 13:13:02 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from freefall.freebsd.org (iedowse@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB9LD2x3029890; Mon, 9 Dec 2002 13:13:02 -0800 (PST) (envelope-from iedowse@freefall.freebsd.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB9LCnlD029886; Mon, 9 Dec 2002 13:12:49 -0800 (PST) Date: Mon, 9 Dec 2002 13:12:49 -0800 (PST) From: Ian Dowse Message-Id: <200212092112.gB9LCnlD029886@freefall.freebsd.org> To: dgilbert@velocet.ca, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/35873: recent -STABLE dhclient doesn't see wireless card 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: recent -STABLE dhclient doesn't see wireless card State-Changed-From-To: feedback->closed State-Changed-By: iedowse State-Changed-When: Mon Dec 9 13:12:11 PST 2002 State-Changed-Why: Submitter says that the problem no longer happens. http://www.freebsd.org/cgi/query-pr.cgi?pr=35873 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 9 14: 3:58 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6389637B401 for ; Mon, 9 Dec 2002 14:03:57 -0800 (PST) Received: from skif.tavrida.net (skif.tavrida.net [193.220.126.253]) by mx1.FreeBSD.org (Postfix) with ESMTP id 836CC43EA9 for ; Mon, 9 Dec 2002 14:03:54 -0800 (PST) (envelope-from kirill@tavrida.net) Received: from test.tavrida.net (test.tavrida.net [193.220.126.137]) by skif.tavrida.net (8.12.5/8.12.5) with ESMTP id gB9CTxhj030558 for ; Mon, 9 Dec 2002 14:29:59 +0200 (EET) Date: Mon, 9 Dec 2002 14:29:58 +0200 (EET) From: Kir To: freebsd-bugs@FreeBSD.org Subject: Re: kern/36149: kernel panic with option PPP_DEFLATE for 4.5-STABLE Message-ID: <20021209142243.Q69694-100000@test.tavrida.net> 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 On Sun, 8 Dec 2002, Ian Dowse wrote: All is Ok now. I didn't find any bugs with PPP_DEFLATE after May 01 2002 But my last upgrade was "May 01 2002" > Synopsis: kernel panic with option PPP_DEFLATE for 4.5-STABLE > > State-Changed-From-To: open->feedback > State-Changed-By: iedowse > State-Changed-When: Sun Dec 8 09:58:08 PST 2002 > State-Changed-Why: > > This is almost certainly fixed. Can you confirm that the panic no > longer happens on a more recent -STABLE or release? > > http://www.freebsd.org/cgi/query-pr.cgi?pr=36149 > Best Regards Jezduke Kirill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 9 14:38:59 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 321EF37B401; Mon, 9 Dec 2002 14:38:58 -0800 (PST) Received: from mailbox.univie.ac.at (mailbox.univie.ac.at [131.130.1.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id D964143ED1; Mon, 9 Dec 2002 14:38:56 -0800 (PST) (envelope-from l.ertl@univie.ac.at) Received: from adslle.cc.univie.ac.at (adslle.cc.univie.ac.at [131.130.102.11]) by mailbox.univie.ac.at (8.12.2/8.12.2) with ESMTP id gB9McnaM356908; Mon, 9 Dec 2002 23:38:52 +0100 Date: Mon, 9 Dec 2002 23:38:49 +0100 (CET) From: Lukas Ertl X-X-Sender: le@leelou.in.tern To: Ian Dowse Cc: freebsd-bugs@FreeBSD.org, "" Subject: Re: kern/36057: atacontrol, apm, kernel panic In-Reply-To: <200212081751.gB8HpNo2033730@freefall.freebsd.org> Message-ID: <20021209233056.C16977-100000@leelou.in.tern> References: <200212081751.gB8HpNo2033730@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=ISO-8859-1 Content-Transfer-Encoding: QUOTED-PRINTABLE 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 Sun, 8 Dec 2002, Ian Dowse wrote: > Does this still occur on more recent releases? > > http://www.freebsd.org/cgi/query-pr.cgi?pr=3D36057 I'm not quite sure. I played around a bit with it and it seems to be working fine (with 4.7-STABLE from Nov 28). But I was able to get it to panic once again, but I can't reproduce it, so it must have been a very weird combination of detaching, swapping drives, suspend/resume and attaching again. I think this PR can be closed. regards, le --=20 Lukas Ertl eMail: l.ertl@univie.ac.at UNIX-Systemadministrator Tel.: (+43 1) 4277-14073 Zentraler Informatikdienst (ZID) Fax.: (+43 1) 4277-9140 der Universit=E4t Wien http://mailbox.univie.ac.at/~le/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 9 14:40: 6 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 81B5537B408 for ; Mon, 9 Dec 2002 14:40:04 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3BA4043EC2 for ; Mon, 9 Dec 2002 14:40:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB9Me3x3051860 for ; Mon, 9 Dec 2002 14:40:03 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB9Me3fL051859; Mon, 9 Dec 2002 14:40:03 -0800 (PST) Date: Mon, 9 Dec 2002 14:40:03 -0800 (PST) Message-Id: <200212092240.gB9Me3fL051859@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Lukas Ertl Subject: Re: kern/36057: atacontrol, apm, kernel panic Reply-To: Lukas Ertl 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/36057; it has been noted by GNATS. From: Lukas Ertl To: Ian Dowse Cc: freebsd-bugs@FreeBSD.org, "" Subject: Re: kern/36057: atacontrol, apm, kernel panic Date: Mon, 9 Dec 2002 23:38:49 +0100 (CET) On Sun, 8 Dec 2002, Ian Dowse wrote: > Does this still occur on more recent releases? > > http://www.freebsd.org/cgi/query-pr.cgi?pr=3D36057 I'm not quite sure. I played around a bit with it and it seems to be working fine (with 4.7-STABLE from Nov 28). But I was able to get it to panic once again, but I can't reproduce it, so it must have been a very weird combination of detaching, swapping drives, suspend/resume and attaching again. I think this PR can be closed. regards, le --=20 Lukas Ertl eMail: l.ertl@univie.ac.at UNIX-Systemadministrator Tel.: (+43 1) 4277-14073 Zentraler Informatikdienst (ZID) Fax.: (+43 1) 4277-9140 der Universit=E4t Wien http://mailbox.univie.ac.at/~le/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 9 15: 5:43 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC8B337B401 for ; Mon, 9 Dec 2002 15:05:42 -0800 (PST) Received: from bestvegas.com (modemcable050.185-130-66.que.mc.videotron.ca [66.130.185.50]) by mx1.FreeBSD.org (Postfix) with SMTP id CF7B343E4A for ; Mon, 9 Dec 2002 15:05:38 -0800 (PST) (envelope-from admin7256w38@bestvegas.com) Reply-To: Message-ID: <022c56d53e1d$4825d8b4$1cb32da2@qdutlf> From: To: admin@bestvegas.com Subject: Free $100 ... Bouns Limited Time 6822RQYb2-515iQn-15 Date: Mon, 09 Dec 2002 11:01:07 +1200 MiME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2616 Importance: Normal 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 Virtual Vegas Casino Free $100 playing bonus Get Paid Today!! All Players Welcome No need to spend the whole $100 it is our gift to you for tring our site!!!! http://210.19.205.122/casino/index.html 7704Pl5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 9 15:10: 4 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0247537B401 for ; Mon, 9 Dec 2002 15:10:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F83B43EA9 for ; Mon, 9 Dec 2002 15:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB9NA2x3062722 for ; Mon, 9 Dec 2002 15:10:02 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB9NA22X062721; Mon, 9 Dec 2002 15:10:02 -0800 (PST) Date: Mon, 9 Dec 2002 15:10:02 -0800 (PST) Message-Id: <200212092310.gB9NA22X062721@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Archie Cobbs Subject: Re: kern/45994: Pages marked read-only via mprotect are zeroed in core files Reply-To: Archie Cobbs 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/45994; it has been noted by GNATS. From: Archie Cobbs To: Peter Edwards Cc: freebsd-gnats-submit@freebsd.org Subject: Re: kern/45994: Pages marked read-only via mprotect are zeroed in core files Date: Mon, 09 Dec 2002 15:03:37 -0800 Peter Edwards wrote: > sys/kern/imgact_elf.c's each_writable_segment iterates over the processes > vm map, and works out what pages need to go into the core file. It ignores > any vm entries that are not read/write, as well as those marked with a > "no coredump" flag. > > In order to get the elf image activator to dump read-only data in the core > file, you need to allow this to output readonly segments. > > The patch below does that, by adding a debug sysctl, "debug.elf_bigcore". > However, note that this will dump _any_ segment that is readonly, including > text segments and read-only segments from executables. This will make the > core files quite large, particularly for programs that load a lot of shared > libraries. It might, however, allow you to debug a problem more easily than > you were able to before, so I hope its useful. Thanks! > I imagine a more complete fix is to start using MAP_NOCORE properly, so > that both the dynamic linker and the kernel itself use it on readonly > sections of loaded executables. > > If anyone agrees, I'm willing to submit patches to elf_imgact and rtld_elf > to do that: I just don't want to do the grunt-work if no one's interested. I think this is a necessary change, so I at least would be interested. There are lots of important uses for mapping pages read-only, e.g., when using malloc debugging libraries such as electric fence, etc. Moreover, the current behavior is broken, plain and simple. It sounds like the MAP_NOCORE change would not cost any performance, in which case I don't see why anyone would object to it. Thanks! -Archie __________________________________________________________________________ Archie Cobbs * Packet Design * http://www.packetdesign.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 9 15:10:44 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5912637B401 for ; Mon, 9 Dec 2002 15:10:43 -0800 (PST) Received: from postfix3-2.free.fr (postfix3-2.free.fr [213.228.0.169]) by mx1.FreeBSD.org (Postfix) with ESMTP id F238F43EA9 for ; Mon, 9 Dec 2002 15:10:40 -0800 (PST) (envelope-from hubert.tournier@online.fr) Received: from online.fr (nas-cbv-5-62-147-145-142.dial.proxad.net [62.147.145.142]) by postfix3-2.free.fr (Postfix) with ESMTP id D17C919C0C for ; Mon, 9 Dec 2002 22:50:58 +0100 (CET) Message-ID: <3DF512B8.9050808@online.fr> Date: Mon, 09 Dec 2002 23:01:28 +0100 From: Hubert Tournier Organization: Maison User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.1) Gecko/20020826 X-Accept-Language: fr,en MIME-Version: 1.0 To: freebsd-bugs Subject: CPU speed incorrectly reported Content-Type: text/plain; charset=us-ascii; format=flowed 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 >Submitter-Id: current-users >Originator: Hubert Tournier >Organization: Home >Confidential: no >Synopsis: CPU speed incorrectly reported >Severity: non-critical >Priority: low >Category: i386 >Class: sw-bug >Release: FreeBSD 5.0-DP2 i386 >Environment: System: FreeBSD 5.0-DP2 FreeBSD 5.0-DP2 #1: Sat Nov 16 13:38:33 GMT 2002 root@tomcat.bmah.org:/usr/obj/usr/src/sys/GENERIC i386 Machine : Toshiba Satellite 4080XCDT laptop >Description: CPU speed is incorrectly reported : 185 MHz instead of 200 MHz. Relevant parts of /var/log/messages follows : --- part1 begins here --- Nov 25 00:02:40 kernel: Timecounter "i8254" frequency 1193182 Hz Nov 25 00:02:40 kernel: Timecounter "TSC" frequency 184527957 Hz Nov 25 00:02:40 kernel: CPU: Pentium II/Pentium II Xeon/Celeron (184.53-MHz 686-class CPU) Nov 25 00:02:40 kernel: Origin = "GenuineIntel" Id = 0x66a Stepping = 10 Nov 25 00:02:40 kernel: Features=0x183f9ff Nov 25 00:02:40 kernel: acpi0: on motherboard Nov 25 00:02:40 kernel: Timecounter "ACPI-safe" frequency 3579545 Hz Nov 25 00:02:40 kernel: acpi_timer0: <24-bit timer at 3.579545MHz> port 0xfe08-0xfe0b on acpi0 Nov 25 00:02:41 kernel: pmtimer0 on isa0 Nov 25 00:02:41 kernel: Timecounters tick every 10.000 msec --- part1 ends here --- >How-To-Repeat: Reboot. >Fix: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 9 15:11:49 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD2D037B404 for ; Mon, 9 Dec 2002 15:11:46 -0800 (PST) Received: from postfix3-2.free.fr (postfix3-2.free.fr [213.228.0.169]) by mx1.FreeBSD.org (Postfix) with ESMTP id 03C2B43E4A for ; Mon, 9 Dec 2002 15:11:46 -0800 (PST) (envelope-from hubert.tournier@online.fr) Received: from online.fr (nas-cbv-5-62-147-145-142.dial.proxad.net [62.147.145.142]) by postfix3-2.free.fr (Postfix) with ESMTP id C0AE3189AB for ; Mon, 9 Dec 2002 22:49:27 +0100 (CET) Message-ID: <3DF5125D.2060605@online.fr> Date: Mon, 09 Dec 2002 22:59:57 +0100 From: Hubert Tournier Organization: Maison User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.1) Gecko/20020826 X-Accept-Language: fr,en MIME-Version: 1.0 To: freebsd-bugs Subject: PC-CARD presence makes kernel panic Content-Type: text/plain; charset=us-ascii; format=flowed 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 >Submitter-Id: current-users >Originator: Hubert Tournier >Organization: Home >Confidential: no >Synopsis: PC-CARD presence makes kernel panic >Severity: serious >Priority: medium >Category: i386 >Class: sw-bug >Release: FreeBSD 5.0-DP2 i386 >Environment: System: FreeBSD 5.0-DP2 FreeBSD 5.0-DP2 #1: Sat Nov 16 13:38:33 GMT 2002 root@tomcat.bmah.org:/usr/obj/usr/src/sys/GENERIC i386 Machine : Toshiba Satellite 4080XCDT laptop PC-CARD : Xircom CreditCard Ethernet 10/100+ Modem 56 (CEM56-100) >Description: I saw in the release notes that 16-bit PC Card support is not yet functional, but is it normal that presence of the previously mentioned card panics the kernel ? : kernel: Fatal trap 12: page fault while in kernel mode kernel: fault code = supervisor read, page not present kernel: panic: page fault Relevant parts of /var/log/messages follows : System started with PCMCIA card : --- part1 begins here --- [...] Nov 25 00:02:39 kernel: cbb0: at device 2.0 on pci0 Nov 25 00:02:39 kernel: cardbus0: on cbb0 Nov 25 00:02:39 kernel: pccard0: <16-bit PCCard bus> on cbb0 Nov 25 00:02:39 kernel: pcib0: slot 2 INTA is routed to irq 11 Nov 25 00:02:39 kernel: cbb1: at device 2.1 on pci0 Nov 25 00:02:39 kernel: cardbus1: on cbb1 Nov 25 00:02:39 kernel: pccard1: <16-bit PCCard bus> on cbb1 Nov 25 00:02:39 kernel: pcib0: slot 2 INTB is routed to irq 11 [...] Nov 25 00:02:40 kernel: acpi_cpu: CPU throttling enabled, 8 steps from 100% to 12.5% Nov 25 00:02:40 kernel: Nov 25 00:02:40 kernel: Nov 25 00:02:40 kernel: Fatal trap 12: page fault while in kernel mode Nov 25 00:02:40 kernel: fault virtual address = 0xcb360000 Nov 25 00:02:40 kernel: fault code = supervisor read, page not present Nov 25 00:02:40 kernel: instruction pointer = 0x8:0xc0236af5 Nov 25 00:02:40 kernel: stack pointer = 0x10:0xcaacf94c Nov 25 00:02:40 kernel: frame pointer = 0x10:0xcaacfb78 Nov 25 00:02:40 kernel: code segment = base 0x0, limit 0xfffff, type 0x1b Nov 25 00:02:40 kernel: = DPL 0, pres 1, def32 1, gran 1 Nov 25 00:02:40 kernel: processor eflags = interrupt enabled, resume, IOPL = 0 Nov 25 00:02:40 kernel: current process = 8 (cbb0) Nov 25 00:02:40 kernel: trap number = 12 Nov 25 00:02:40 kernel: panic: page fault Nov 25 00:02:40 kernel: Nov 25 00:02:40 kernel: syncing disks... Nov 25 00:02:40 kernel: done Nov 25 00:02:40 kernel: Uptime: 1s Nov 25 00:02:40 kernel: Terminate ACPI Nov 25 00:02:40 kernel: Automatic reboot in 15 seconds - press a key on the console to abort Nov 25 00:02:40 kernel: --> Press a key on the console to reboot, Nov 25 00:02:40 kernel: --> or switch off the system now. Nov 25 00:02:40 kernel: Rebooting... --- part1 ends here --- System started without PCMCIA card leads to console login prompt, then upon insertion of the PCMCIA : --- part2 begins here --- Nov 25 00:04:04 syslogd: kernel boot file is /boot/kernel/kernel Nov 25 00:04:04 kernel: Nov 25 00:04:04 kernel: Nov 25 00:04:04 kernel: Fatal trap 12: page fault while in kernel mode Nov 25 00:04:04 kernel: fault virtual address = 0xcb9fb000 Nov 25 00:04:04 kernel: fault code = supervisor read, page not present Nov 25 00:04:04 kernel: instruction pointer = 0x8:0xc0236af5 Nov 25 00:04:04 kernel: stack pointer = 0x10:0xcaacf94c Nov 25 00:04:04 kernel: frame pointer = 0x10:0xcaacfb78 Nov 25 00:04:04 kernel: code segment = base 0x0, limit 0xfffff, type 0x1b Nov 25 00:04:04 kernel: = DPL 0, pres 1, def32 1, gran 1 Nov 25 00:04:04 kernel: processor eflags = interrupt enabled, resume, IOPL = 0 Nov 25 00:04:04 kernel: current process = 8 (cbb0) Nov 25 00:04:04 kernel: trap number = 12 Nov 25 00:04:04 kernel: panic: page fault Nov 25 00:04:04 kernel: Nov 25 00:04:04 kernel: syncing disks... panic: bdwrite: buffer is not busy Nov 25 00:04:04 kernel: Uptime: 36s Nov 25 00:04:04 kernel: Terminate ACPI Nov 25 00:04:04 kernel: Automatic reboot in 15 seconds - press a key on the console to abort Nov 25 00:04:04 kernel: --> Press a key on the console to reboot, Nov 25 00:04:04 kernel: --> or switch off the system now. Nov 25 00:04:04 kernel: Rebooting... --- part2 ends here --- >How-To-Repeat: Insert the card or reboot with the card. >Fix: Don't leave this card inserted (or fallback to FreeBSD 4.x where it worked fine). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 9 15:12:45 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 80A9937B404 for ; Mon, 9 Dec 2002 15:12:37 -0800 (PST) Received: from postfix3-2.free.fr (postfix3-2.free.fr [213.228.0.169]) by mx1.FreeBSD.org (Postfix) with ESMTP id 84CD343EB2 for ; Mon, 9 Dec 2002 15:12:36 -0800 (PST) (envelope-from hubert.tournier@online.fr) Received: from online.fr (nas-cbv-5-62-147-145-142.dial.proxad.net [62.147.145.142]) by postfix3-2.free.fr (Postfix) with ESMTP id B8FEA1875C for ; Mon, 9 Dec 2002 22:48:24 +0100 (CET) Message-ID: <3DF5121D.4010500@online.fr> Date: Mon, 09 Dec 2002 22:58:53 +0100 From: Hubert Tournier Organization: Maison User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.1) Gecko/20020826 X-Accept-Language: fr,en MIME-Version: 1.0 To: freebsd-bugs@freebsd.org Subject: new port proposal for smtpscan-0.3.1 Content-Type: text/plain; charset=us-ascii; format=flowed 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 >Submitter-Id: current-users >Originator: Hubert Tournier >Organization: Maison >Confidential: no >Synopsis: new port proposal for smtpscan-0.3.1 >Severity: non-critical >Priority: low >Category: ports >Class: change-request >Release: FreeBSD 4.7-RELEASE i386 >Environment: System: FreeBSD lezard.maison 4.7-RELEASE FreeBSD 4.7-RELEASE #0: Tue Oct 8 14:11:51 GMT 2002 root@builder.freebsdmall.com:/usr/obj/usr/src/sys/GENERIC i386 >Description: A remote SMTP server version detector >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # smtpscan # smtpscan/Makefile # smtpscan/pkg-comment # smtpscan/pkg-descr # smtpscan/pkg-plist # smtpscan/distinfo # smtpscan/files # smtpscan/files/patch-aa # smtpscan/files/patch-ab # smtpscan/files/Makefile # echo c - smtpscan mkdir -p smtpscan > /dev/null 2>&1 echo x - smtpscan/Makefile sed 's/^X//' >smtpscan/Makefile << 'END-of-smtpscan/Makefile' X# New ports collection makefile for: smtpscan X# Date created: 1 decembre 2002 X# Whom: Hubert Tournier X# X# $FreeBSD$ X# X XPORTNAME= smtpscan XPORTVERSION= 0.3.1 XCATEGORIES= security mail net perl5 XMASTER_SITES= http://www.greyhats.org/outils/smtpscan/ X XWRKSRC= work/${PORTNAME} XUSE_PERL5= yes XMAN1= smtpscan.1 XRUN_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Getopt/Long.pm:${PORTSDIR}/devel/p5-Getopt-Long \ X ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/i386-freebsd/IO.pm:${PORTSDIR}/devel/p5-IO \ X ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Net/DNS.pm:${PORTSDIR}/net/p5-Net-DNS X XMAINTAINER= hubert@frbsd.org X Xpre-build: X cp files/Makefile ${WRKSRC}/Makefile X X.include END-of-smtpscan/Makefile echo x - smtpscan/pkg-comment sed 's/^X//' >smtpscan/pkg-comment << 'END-of-smtpscan/pkg-comment' XA remote SMTP server version detector END-of-smtpscan/pkg-comment echo x - smtpscan/pkg-descr sed 's/^X//' >smtpscan/pkg-descr << 'END-of-smtpscan/pkg-descr' Xsmtpscan is a remote SMTP server version detector. It can Xbe used to guess which mail software is used on a remote Xserver, that may hide its SMTP banner. X XWWW: http://www.greyhats.org/outils/smtpscan/ X X- Hubert Tournier Xhubert@frbsd.org END-of-smtpscan/pkg-descr echo x - smtpscan/pkg-plist sed 's/^X//' >smtpscan/pkg-plist << 'END-of-smtpscan/pkg-plist' Xbin/smtpscan Xshare/smtpscan/fingerprints Xshare/smtpscan/tests X@dirrm share/smtpscan END-of-smtpscan/pkg-plist echo x - smtpscan/distinfo sed 's/^X//' >smtpscan/distinfo << 'END-of-smtpscan/distinfo' XMD5 (smtpscan-0.3.1.tar.gz) = 86f5af132f674ba85ab1267b4d69d159 END-of-smtpscan/distinfo echo c - smtpscan/files mkdir -p smtpscan/files > /dev/null 2>&1 echo x - smtpscan/files/patch-aa sed 's/^X//' >smtpscan/files/patch-aa << 'END-of-smtpscan/files/patch-aa' X--- configure.orig Sun Dec 1 19:13:29 2002 X+++ configure Sun Dec 1 19:17:43 2002 X@@ -9,42 +9,51 @@ X BINDIR="$DESTDIR/bin" X MANDIR="$DESTDIR/man/man1" X X-echo "Installing smtpscan..." X-echo " Using directory $DESTDIR" X+#echo "Installing smtpscan..." X+#echo " Using directory $DESTDIR" X X-echo -n " Checking for Net::DNS ... " X-perl -MNet::DNS -e '' >/dev/null 2>&1 X-if [ $? != 0 ] X-then X- echo "" X- echo "" X- echo " !!! ERROR !!!" X- echo " Net::DNS not found" X- echo " You are strongly adviced to install it !" X- X- echo " Net::DNS is included in the smtpscan distribution" X- echo " To install it, just make :" X- echo " # tar zxvf Net-DNS-0.29.tar.gz" X- echo " # cd Net-DNS-0.29" X- echo " # perl Makefile.PL" X- echo " # make" X- echo " # make install" X- exit X-fi X+#echo -n " Checking for Net::DNS ... " X+#perl -MNet::DNS -e '' >/dev/null 2>&1 X+#if [ $? != 0 ] X+#then X+# echo "" X+# echo "" X+# echo " !!! ERROR !!!" X+# echo " Net::DNS not found" X+# echo " You are strongly adviced to install it !" X+# X+# echo " Net::DNS is included in the smtpscan distribution" X+# echo " To install it, just make :" X+# echo " # tar zxvf Net-DNS-0.29.tar.gz" X+# echo " # cd Net-DNS-0.29" X+# echo " # perl Makefile.PL" X+# echo " # make" X+# echo " # make install" X+# exit X+#fi X X-echo "Ok" X+#echo "Ok" X X+if [ "$1" = "install" ] X+then X install -m 755 -d "$SHAREDIR/smtpscan" X install -m 755 -d "$BINDIR" X install -m 755 -d "$MANDIR" X X install -m 444 ./src/fingerprints "$SHAREDIR/smtpscan/fingerprints" X install -m 444 ./src/tests "$SHAREDIR/smtpscan/tests" X+fi X X+if [ "$1" = "build" ] X+then X perl -i -pe "s{(\\\$LOCAL_SHARE\s+=\s+)'/usr/local/share';}{\$1'$SHAREDIR';};" ./src/smtpscan X perl -i -pe "s{\\@prefix\\@}{$DESTDIR};" ./docs/man/smtpscan.1 X+fi X X+if [ "$1" = "install" ] X+then X install -m 755 ./src/smtpscan "$BINDIR/smtpscan" X install -m 644 ./docs/man/smtpscan.1 "$DESTDIR/man/man1" X+fi X X-echo "Installation Ok" X+#echo "Installation Ok" END-of-smtpscan/files/patch-aa echo x - smtpscan/files/patch-ab sed 's/^X//' >smtpscan/files/patch-ab << 'END-of-smtpscan/files/patch-ab' X--- src/smtpscan.orig Fri Nov 22 10:23:22 2002 X+++ src/smtpscan Fri Nov 22 10:23:09 2002 X@@ -1,4 +1,4 @@ X-#!/usr/bin/perl -w X+#!/usr/bin/perl X # X # Author : Julien Bordet X # Copyright (C) 2002 Julien Bordet X@@ -9,7 +9,7 @@ X # X X use strict; X-use Getopt::Long qw /:config no_ignore_case/; X+use Getopt::Long; X use IO::Socket::INET; X use File::Basename; X use Net::DNS; X@@ -28,7 +28,7 @@ X # Global variables X # X X-$VERSION = '0.3'; X+$VERSION = '0.3.1'; X X $LOCAL_SHARE = '/usr/local/share'; X $INVALID_SOURCE = 'impossibleaddress@thisdomaindoesnotandmustnotexists.com'; X@@ -34,6 +34,8 @@ X $INVALID_SOURCE = 'impossibleaddress@thisdomaindoesnotandmustnotexists.com'; X $MY_DOMAIN = 'test.com'; X $VALID_SOURCE = 'test@yahoo.com'; X+ X+Getopt::Long::Configure("no_ignore_case"); X X $| = 1; X # END-of-smtpscan/files/patch-ab echo x - smtpscan/files/Makefile sed 's/^X//' >smtpscan/files/Makefile << 'END-of-smtpscan/files/Makefile' Xall: X ./configure build X Xinstall: X ./configure install X END-of-smtpscan/files/Makefile exit To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 9 15:30: 6 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D13E37B401 for ; Mon, 9 Dec 2002 15:30:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40C4F43EB2 for ; Mon, 9 Dec 2002 15:30:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB9NU2x3067125 for ; Mon, 9 Dec 2002 15:30:02 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB9NU2N3067124; Mon, 9 Dec 2002 15:30:02 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D59BA37B401 for ; Mon, 9 Dec 2002 15:29:40 -0800 (PST) Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by mx1.FreeBSD.org (Postfix) with ESMTP id 579C443EC2 for ; Mon, 9 Dec 2002 15:29:37 -0800 (PST) (envelope-from doconnor@cain.gsoft.com.au) Received: from cain.gsoft.com.au (localhost [127.0.0.1]) by cain.gsoft.com.au (8.12.4/8.12.6) with ESMTP id gB9NTGiX075769 for ; Tue, 10 Dec 2002 09:59:24 +1030 (CST) (envelope-from doconnor@cain.gsoft.com.au) Received: (from doconnor@localhost) by cain.gsoft.com.au (8.12.4/8.12.5/Submit) id gB9NTGXg075768; Tue, 10 Dec 2002 09:59:16 +1030 (CST) Message-Id: <200212092329.gB9NTGXg075768@cain.gsoft.com.au> Date: Tue, 10 Dec 2002 09:59:16 +1030 (CST) From: "Daniel O'Connor" Reply-To: "Daniel O'Connor" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/46152: Panic in adw dumping to tape 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: 46152 >Category: kern >Synopsis: Panic in adw dumping to tape >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 09 15:30:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Daniel O'Connor >Release: FreeBSD 4.7-STABLE i386 >Organization: Genesis Software >Environment: System: FreeBSD arecibo.gsoft.com.au 4.7-STABLE FreeBSD 4.7-STABLE #1: Wed Nov 27 15:07:23 GMT 2002 root@arecibo.gsoft.com.au:/usr/src/sys/compile/GENESIS i386 CPU: AMD Athlon(tm) XP 2000+ (1666.73-MHz 686-class CPU) Origin = "AuthenticAMD" Id = 0x662 Stepping = 2 Features=0x383f9ff AMD Features=0xc0400000 real memory = 268369920 (262080K bytes) avail memory = 255971328 (249972K bytes) ... adw0: port 0xcc00-0xccff mem 0xdd004000-0xdd0040ff irq 11 at device 11.0 on pci0 adw0: SCSI ID 7, High & Low SE Term Enabled, LVD Term Enabled, Queue Depth 253 ... ad0: 95396MB [193821/16/63] at ata0-master UDMA100 ad1: 76319MB [155061/16/63] at ata1-master UDMA100 Waiting 2 seconds for SCSI devices to settle sa0 at adw0 bus 0 target 5 lun 0 sa0: Removable Sequential Access SCSI-2 device sa0: 6.600MB/s transfers (16bit) >Description: Panic -> (kgdb) arecibo# gdb -k *.0 GNU gdb 4.18 (FreeBSD) Copyright 1998 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-unknown-freebsd"...(no debugging symbols found)... IdlePTD at phsyical address 0x0052c000 initial pcb at physical address 0x002f7d60 panicstr: page fault panic messages: --- panic: adw0: Idle Command Timed Out! syncing disks... Fatal trap 12: page fault while in kernel mode fault virtual address = 0x30 fault code = supervisor read, page not present instruction pointer = 0x8:0xc0218074 stack pointer = 0x10:0xc02be864 frame pointer = 0x10:0xc02be86c code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = Idle interrupt mask = bio cam trap number = 12 panic: page fault Uptime: 10h2m19s dumping to dev #ad/0x20001, et 524416 dump ata0: resetting devices .. done 255 254 253 252 251 250 249 248 247 246 245 244 243 242 241 240 239 238 237 236 235 234 233 232 231 230 229 228 227 226 225 224 223 222 221 220 219 218 217 216 215 214 213 212 211 210 209 208 207 206 205 204 203 202 201 200 199 198 197 196 195 194 193 192 191 190 189 188 187 186 185 184 183 182 181 180 179 178 177 176 175 174 173 172 171 170 169 168 167 166 165 164 163 162 161 160 159 158 157 156 155 154 153 152 151 150 149 148 147 146 145 144 143 142 141 140 139 138 137 136 135 134 133 132 131 130 129 128 127 126 125 124 123 122 121 120 119 118 117 116 115 114 113 112 111 110 109 108 107 106 105 104 103 102 101 100 99 98 97 96 95 94 93 92 91 90 89 88 87 86 85 84 83 82 81 80 79 78 77 76 75 74 73 72 71 70 69 68 67 66 65 64 63 62 61 60 59 58 57 56 55 54 53 52 51 50 49 48 47 46 45 44 43 42 41 40 39 38 37 36 35 34 33 32 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 --- #0 0xc018a4a6 in dumpsys () (kgdb) bt #0 0xc018a4a6 in dumpsys () #1 0xc018a277 in boot () #2 0xc018a6b5 in panic () #3 0xc0265f9f in trap_fatal () #4 0xc0265c4d in trap_pfault () #5 0xc02657f3 in trap () #6 0xc0218074 in acquire_lock () #7 0xc021c696 in softdep_fsync_mountdev () #8 0xc02209e6 in ffs_fsync () #9 0xc021f66f in ffs_sync () #10 0xc01ba4bf in sync () #11 0xc018a012 in boot () #12 0xc018a6b5 in panic () #13 0xc013ac6c in adw_idle_cmd_send () #14 0xc0139a1c in adwtimeout () #15 0xc01901b1 in softclock () #16 0xc025a943 in doreti_swi () >How-To-Repeat: I have a script which is writing files out to tape from ad1 using tar, ie foreach file tar -b 128 -zcvf /dev/nrsa0 file done Takes a few hours to trigger it but it's happened 3 times now (though I only got a panic on the last one as my /var was too small before now) This kernel has the atapicam option enabled if it matters. I am rebuilding with debugging to get a better stack trace. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 9 16:46: 7 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 43EF837B401 for ; Mon, 9 Dec 2002 16:46:06 -0800 (PST) Received: from smtp012.mail.yahoo.com (smtp012.mail.yahoo.com [216.136.173.32]) by mx1.FreeBSD.org (Postfix) with SMTP id ED96243EC2 for ; Mon, 9 Dec 2002 16:46:05 -0800 (PST) (envelope-from john_m_cooper@yahoo.com) Received: from pc016247.reshall.uidaho.edu (HELO ?129.101.136.30?) (john?m?cooper@129.101.136.30 with plain) by smtp.mail.vip.sc5.yahoo.com with SMTP; 10 Dec 2002 00:46:05 -0000 Subject: Re: CPU speed incorrectly reported From: John Merryweather Cooper To: Hubert Tournier Cc: freebsd-bugs In-Reply-To: <3DF512B8.9050808@online.fr> References: <3DF512B8.9050808@online.fr> Content-Type: text/plain Organization: University of Idaho Message-Id: <1039481277.377.2.camel@pc016247.reshall.uidaho.edu> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.0 Date: 09 Dec 2002 16:47:58 -0800 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 Is this boot for an AC-powered configuration? Laptops commonly throttle their CPU's down when battery powered. jmc On Mon, 2002-12-09 at 14:01, Hubert Tournier wrote: > >Submitter-Id: current-users > >Originator: Hubert Tournier > >Organization: Home > >Confidential: no > >Synopsis: CPU speed incorrectly reported > >Severity: non-critical > >Priority: low > >Category: i386 > >Class: sw-bug > >Release: FreeBSD 5.0-DP2 i386 > >Environment: > System: FreeBSD 5.0-DP2 FreeBSD 5.0-DP2 #1: Sat Nov 16 13:38:33 GMT 2002 root@tomcat.bmah.org:/usr/obj/usr/src/sys/GENERIC i386 > > Machine : Toshiba Satellite 4080XCDT laptop > > >Description: > > CPU speed is incorrectly reported : 185 MHz instead of 200 MHz. > > Relevant parts of /var/log/messages follows : > > --- part1 begins here --- > Nov 25 00:02:40 kernel: Timecounter "i8254" frequency 1193182 Hz > Nov 25 00:02:40 kernel: Timecounter "TSC" frequency 184527957 Hz > Nov 25 00:02:40 kernel: CPU: Pentium II/Pentium II Xeon/Celeron (184.53-MHz 686-class CPU) > Nov 25 00:02:40 kernel: Origin = "GenuineIntel" Id = 0x66a Stepping = 10 > Nov 25 00:02:40 kernel: Features=0x183f9ff > Nov 25 00:02:40 kernel: acpi0: on motherboard > Nov 25 00:02:40 kernel: Timecounter "ACPI-safe" frequency 3579545 Hz > Nov 25 00:02:40 kernel: acpi_timer0: <24-bit timer at 3.579545MHz> port 0xfe08-0xfe0b on acpi0 > Nov 25 00:02:41 kernel: pmtimer0 on isa0 > Nov 25 00:02:41 kernel: Timecounters tick every 10.000 msec > --- part1 ends here --- > > >How-To-Repeat: > > Reboot. > > >Fix: > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-bugs" in the body of the message -- John Merryweather Cooper University of Idaho To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 9 18:32: 2 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D054237B401 for ; Mon, 9 Dec 2002 18:32:00 -0800 (PST) Received: from noir.cs.umd.edu (noir.cs.umd.edu [128.8.128.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3CA1743E4A for ; Mon, 9 Dec 2002 18:32:00 -0800 (PST) (envelope-from daveho@cs.umd.edu) Received: from noir.cs.umd.edu (localhost [127.0.0.1]) by noir.cs.umd.edu (8.12.5/8.12.5) with ESMTP id gBA2VrSx001837 for ; Mon, 9 Dec 2002 21:31:53 -0500 Received: (from daveho@localhost) by noir.cs.umd.edu (8.12.5/8.12.5/Submit) id gBA2VrUp001835 for freebsd-bugs@freebsd.org; Mon, 9 Dec 2002 21:31:53 -0500 Date: Mon, 9 Dec 2002 21:31:53 -0500 From: David Hovemeyer To: freebsd-bugs@freebsd.org Subject: bug in /sbin/dhclient-script? Message-ID: <20021210023152.GB1741@cs.umd.edu> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="KsGdsel6WgEHnImy" Content-Disposition: inline User-Agent: Mutt/1.4i 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 --KsGdsel6WgEHnImy Content-Type: text/plain; charset=us-ascii Content-Disposition: inline The problem: /sbin/dhclient-script does not update /etc/resolv.conf unless it receives a domain name from the DHCP server. My DSL router doesn't send a domain name. Hence, no /etc/resolv.conf file is created, and DNS doesn't work. I'm running 5.0 RC1, but the same problem exists in 4.6.2-RELEASE. My recollection is that 4.5-RELEASE worked fine without getting a domain name from the DHCP server. I've attached a trivial fix for the problem to this email. Basically, it creates /etc/resolv.conf as long as name servers are sent by the DHCP server. -Dave --KsGdsel6WgEHnImy Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="dhclient-script.patch" --- dhclient-script.orig Mon Dec 9 20:07:21 2002 +++ dhclient-script Mon Dec 9 20:11:08 2002 @@ -9,8 +9,12 @@ fi make_resolv_conf() { - if [ "x$new_domain_name" != x ] && [ x"$new_domain_name_servers" != x ]; then - echo search $new_domain_name >/etc/resolv.conf + if [ x"$new_domain_name_servers" != x ]; then + if [ "x$new_domain_name" != x ]; then + echo search $new_domain_name >/etc/resolv.conf + else + cat /dev/null > /etc/resolv.conf + fi for nameserver in $new_domain_name_servers; do echo nameserver $nameserver >>/etc/resolv.conf done --KsGdsel6WgEHnImy-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 9 23:40:45 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC02E37B40A for ; Mon, 9 Dec 2002 23:40:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3CEB143EC2 for ; Mon, 9 Dec 2002 23:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gBA7e2x3022204 for ; Mon, 9 Dec 2002 23:40:02 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gBA7e2UF022203; Mon, 9 Dec 2002 23:40:02 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 37A5137B40A for ; Mon, 9 Dec 2002 23:36:14 -0800 (PST) Received: from mgate3.rrzn.uni-hannover.de (mgate3.rrzn.uni-hannover.de [130.75.2.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 53D0F43E4A for ; Mon, 9 Dec 2002 23:36:12 -0800 (PST) (envelope-from gerrit@pmp.uni-hannover.de) Received: from www.pmp.uni-hannover.de (www.pmp.uni-hannover.de [130.75.117.2]) by mgate3.rrzn.uni-hannover.de (8.12.6/8.12.6) with ESMTP id gBA7a8au001285 for ; Tue, 10 Dec 2002 08:36:09 +0100 (MET) Received: from theq.pmp.uni-hannover.de (theq.pmp.uni-hannover.de [130.75.117.4]) by www.pmp.uni-hannover.de (Postfix) with ESMTP id E382930B for ; Tue, 10 Dec 2002 08:36:03 +0100 (CET) Received: (from gerrit@localhost) by theq.pmp.uni-hannover.de (8.12.6/8.12.6/Submit) id gBA7a3CG046904; Tue, 10 Dec 2002 08:36:03 +0100 (CET) (envelope-from gerrit) Message-Id: <200212100736.gBA7a3CG046904@theq.pmp.uni-hannover.de> Date: Tue, 10 Dec 2002 08:36:03 +0100 (CET) From: Gerrit Kuehn Reply-To: Gerrit Kuehn To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/46156: USB attachment behaves strange on DP2/MSI-VIA board 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: 46156 >Category: kern >Synopsis: USB attachment behaves strange on DP2/MSI-VIA board >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 Dec 09 23:40:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Gerrit Kuehn >Release: FreeBSD 5.0-DP2 i386 >Organization: none >Environment: DP2 on a MSI 694D-Pro AIR mainboard, various USB-devices System: FreeBSD 5.0-DP2 #1: Mon Nov 25 22:41:52 CET 2002 root@stardust.terra.ger:/usr/obj/usr/src/sys/GENERIC2 >Description: See attached dmesg for my exakt hardware configuration. I have problems getting any kind of USB-devices to work (tested with Scanner, Printer, Camera). When turning on the device for the first time, everything works fine in most cases. Turning it off and on again results in uhub0: device problem, disabling port 2 uhub0: port error, restarting port 2 This won't go away by PowerCycling the device. But it does go away when letting the deive turned on and just pulling and replugging the USB-cable: uscanner0: EPSON Perfection1640, rev 1.10/1.04, addr 2 Something with the attaching/reattaching of USB-devices seems to be broken here... >How-To-Repeat: I guess you can repeat this with any USB device and DP2; if it's specific to the VIA-chip or to the SMP-board, you maybe need similair hardware. >Fix: Well, the workaround is to pull and replug the USB-cable as described above. A real fix is unknown. --- dmesg-v.txt begins here --- 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 5.0-DP2 #1: Mon Nov 25 22:41:52 CET 2002 root@stardust.terra.ger:/usr/obj/usr/src/sys/GENERIC2 Preloaded elf kernel "/boot/kernel/kernel" at 0xc0692000. Preloaded elf module "/boot/kernel/acpi.ko" at 0xc06920b4. Calibrating clock(s) ... TSC clock: 935445097 Hz, i8254 clock: 1193170 Hz CLK_USE_I8254_CALIBRATION not specified - using default frequency Timecounter "i8254" frequency 1193182 Hz CLK_USE_TSC_CALIBRATION not specified - using old calibration method CPU: Pentium III/Pentium III Xeon/Celeron (935.46-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x68a Stepping = 10 Features=0x387fbff real memory = 1610547200 (1535 MB) Physical memory chunk(s): 0x00001000 - 0x0009efff, 647168 bytes (158 pages) 0x006bc000 - 0x5ffe7fff, 1603452928 bytes (391468 pages) avail memory = 1559879680 (1487 MB) Programming 24 pins in IOAPIC #0 IOAPIC #0 intpin 2 -> irq 0 FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs cpu0 (BSP): apic id: 0, version: 0x00040011, at 0xfee00000 cpu1 (AP): apic id: 1, version: 0x00040011, at 0xfee00000 io0 (APIC): apic id: 2, version: 0x00178011, at 0xfec00000 bios32: Found BIOS32 Service Directory header at 0xc00fae20 bios32: Entry = 0xfb290 (c00fb290) Rev = 0 Len = 1 pcibios: PCI BIOS entry at 0xf0000+0xb2c0 pnpbios: Found PnP BIOS data at 0xc00fbcc0 pnpbios: Entry = f0000:bcf0 Rev = 1.0 Other BIOS signatures found: Initializing GEOMetry subsystem random: mem: Pentium Pro MTRR support enabled null: SMP: CPU0 bsp_apic_configure(): lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000010 SVR: 0x000001ff npx0: on motherboard npx0: INT 16 interface acpi0: on motherboard pci_open(1): mode 1 addr port (0x0cf8) is 0x80000060 pci_open(1a): mode1res=0x80000000 (0x80000000) pci_cfgcheck: device 0 [class=060000] [hdr=00] is there (id=06911106) Using $PIR table, 9 entries at 0xc00fdc40 PCI-Only Interrupts: 5 9 10 11 Location Bus Device Pin Link IRQs slot 1 0 18 A 0x02 3 4 5 7 9 10 11 12 14 15 slot 1 0 18 B 0x03 3 4 5 7 9 10 11 12 14 15 slot 1 0 18 C 0x05 3 4 5 7 9 10 11 12 14 15 slot 1 0 18 D 0x01 3 4 5 7 9 10 11 12 14 15 slot 2 0 14 A 0x01 3 4 5 7 9 10 11 12 14 15 slot 2 0 14 B 0x02 3 4 5 7 9 10 11 12 14 15 slot 2 0 14 C 0x03 3 4 5 7 9 10 11 12 14 15 slot 2 0 14 D 0x05 3 4 5 7 9 10 11 12 14 15 slot 3 0 15 A 0x02 3 4 5 7 9 10 11 12 14 15 slot 3 0 15 B 0x03 3 4 5 7 9 10 11 12 14 15 slot 3 0 15 C 0x05 3 4 5 7 9 10 11 12 14 15 slot 3 0 15 D 0x01 3 4 5 7 9 10 11 12 14 15 slot 4 0 16 A 0x03 3 4 5 7 9 10 11 12 14 15 slot 4 0 16 B 0x05 3 4 5 7 9 10 11 12 14 15 slot 4 0 16 C 0x01 3 4 5 7 9 10 11 12 14 15 slot 4 0 16 D 0x02 3 4 5 7 9 10 11 12 14 15 slot 5 0 17 A 0x05 3 4 5 7 9 10 11 12 14 15 slot 5 0 17 B 0x01 3 4 5 7 9 10 11 12 14 15 slot 5 0 17 C 0x02 3 4 5 7 9 10 11 12 14 15 slot 5 0 17 D 0x03 3 4 5 7 9 10 11 12 14 15 slot 6 0 12 A 0x03 3 4 5 7 9 10 11 12 14 15 slot 6 0 12 B 0x05 3 4 5 7 9 10 11 12 14 15 slot 6 0 12 C 0x01 3 4 5 7 9 10 11 12 14 15 slot 6 0 12 D 0x02 3 4 5 7 9 10 11 12 14 15 slot 7 0 13 A 0x05 3 4 5 7 9 10 11 12 14 15 slot 7 0 13 B 0x01 3 4 5 7 9 10 11 12 14 15 slot 7 0 13 C 0x02 3 4 5 7 9 10 11 12 14 15 slot 7 0 13 D 0x03 3 4 5 7 9 10 11 12 14 15 embedded 0 1 A 0x01 3 4 5 7 9 10 11 12 14 15 embedded 0 1 B 0x02 3 4 5 7 9 10 11 12 14 15 embedded 0 1 C 0x03 3 4 5 7 9 10 11 12 14 15 embedded 0 1 D 0x05 3 4 5 7 9 10 11 12 14 15 embedded 0 7 C 0x03 3 4 5 7 9 10 11 12 14 15 embedded 0 7 D 0x05 3 4 5 7 9 10 11 12 14 15 acpi0: power button is handled as a fixed feature programming model. ACPI timer looks BAD min = 1, max = 6, width = 6 ACPI timer looks BAD min = 1, max = 5, width = 5 ACPI timer looks BAD min = 1, max = 6, width = 6 ACPI timer looks BAD min = 1, max = 5, width = 5 ACPI timer looks BAD min = 1, max = 5, width = 5 ACPI timer looks BAD min = 1, max = 5, width = 5 ACPI timer looks BAD min = 1, max = 5, width = 5 ACPI timer looks GOOD min = 1, max = 2, width = 2 ACPI timer looks GOOD min = 1, max = 2, width = 2 ACPI timer looks GOOD min = 1, max = 2, width = 2 Timecounter "ACPI-safe" frequency 3579545 Hz acpi_timer0: <24-bit timer at 3.579545MHz> port 0x4008-0x400b on acpi0 acpi_cpu0: on acpi0 acpi_cpu1: on acpi0 acpi_button0: on acpi0 acpi_button1: on acpi0 pcib0: port 0x6000-0x607f,0x5000-0x500f,0x4080-0x40ff,0x4000-0x407f,0xcf8-0xcff on acpi0 ---- initial configuration ------------------------ \\_SB_.PCI0.LNKA irq 5: [ 1 3 4 5 6 7 10 11 12 14 15] low,level,sharable 0.7.0 \\_SB_.PCI0.LNKB irq 11: [ 1 3 4 5 6 7 10 11 12 14 15] low,level,sharable 0.7.1 \\_SB_.PCI0.LNKC irq 10: [ 1 3 4 5 6 7 10 11 12 14 15] low,level,sharable 0.7.2 \\_SB_.PCI0.LNKD irq 9: [ 1 3 4 5 6 7 10 11 12 14 15] low,level,sharable 0.7.3 ---- before setting priority for links ------------ ---- before fixup boot-disabled links ------------- ---- after fixup boot-disabled links -------------- ---- arbitrated configuration --------------------- \\_SB_.PCI0.LNKA irq 5: [ 1 3 4 5 6 7 10 11 12 14 15] low,level,sharable 0.7.0 \\_SB_.PCI0.LNKB irq 11: [ 1 3 4 5 6 7 10 11 12 14 15] low,level,sharable 0.7.1 \\_SB_.PCI0.LNKC irq 10: [ 1 3 4 5 6 7 10 11 12 14 15] low,level,sharable 0.7.2 \\_SB_.PCI0.LNKD irq 9: [ 1 3 4 5 6 7 10 11 12 14 15] low,level,sharable 0.7.3 pci0: on pcib0 pci0: physical bus=0 map[10]: type 3, range 32, base d0000000, size 26, enabled found-> vendor=0x1106, dev=0x0691, revid=0xc4 bus=0, slot=0, func=0 class=06-00-00, hdrtype=0x00, mfdev=0 cmdreg=0x0006, statreg=0x2210, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) powerspec 2 supports D0 D3 current D0 found-> vendor=0x1106, dev=0x8598, revid=0x00 bus=0, slot=1, func=0 class=06-04-00, hdrtype=0x01, mfdev=0 cmdreg=0x0007, statreg=0x2230, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x0c (3000 ns), maxlat=0x00 (0 ns) found-> vendor=0x1106, dev=0x0686, revid=0x40 bus=0, slot=7, func=0 class=06-01-00, hdrtype=0x00, mfdev=1 cmdreg=0x0087, statreg=0x0210, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) powerspec 2 supports D0 D3 current D0 map[20]: type 4, range 32, base 0000a000, size 4, enabled found-> vendor=0x1106, dev=0x0571, revid=0x06 bus=0, slot=7, func=1 class=01-01-8a, hdrtype=0x00, mfdev=0 cmdreg=0x0007, statreg=0x0290, cachelnsz=0 (dwords) lattimer=0x20 (960 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) powerspec 2 supports D0 D3 current D0 map[20]: type 4, range 32, base 0000a400, size 5, enabled found-> vendor=0x1106, dev=0x3038, revid=0x16 bus=0, slot=7, func=2 class=0c-03-00, hdrtype=0x00, mfdev=0 cmdreg=0x0007, statreg=0x0210, cachelnsz=8 (dwords) lattimer=0x20 (960 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=d, irq=9 powerspec 2 supports D0 D3 current D0 map[20]: type 4, range 32, base 0000a800, size 5, enabled found-> vendor=0x1106, dev=0x3038, revid=0x16 bus=0, slot=7, func=3 class=0c-03-00, hdrtype=0x00, mfdev=0 cmdreg=0x0007, statreg=0x0210, cachelnsz=8 (dwords) lattimer=0x20 (960 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=d, irq=9 powerspec 2 supports D0 D3 current D0 found-> vendor=0x1106, dev=0x3057, revid=0x40 bus=0, slot=7, func=4 class=06-00-00, hdrtype=0x00, mfdev=0 cmdreg=0x0000, statreg=0x0290, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) powerspec 2 supports D0 D3 current D0 map[10]: type 4, range 32, base 0000ac00, size 8, enabled map[14]: type 4, range 32, base 0000b000, size 2, enabled map[18]: type 4, range 32, base 0000b400, size 2, enabled found-> vendor=0x1106, dev=0x3058, revid=0x50 bus=0, slot=7, func=5 class=04-01-00, hdrtype=0x00, mfdev=0 cmdreg=0x0001, statreg=0x0210, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=c, irq=10 powerspec 2 supports D0 D3 current D0 map[10]: type 4, range 32, base 0000b800, size 3, enabled map[14]: type 4, range 32, base 0000bc00, size 2, enabled map[18]: type 4, range 32, base 0000c000, size 3, enabled map[1c]: type 4, range 32, base 0000c400, size 2, enabled map[20]: type 4, range 32, base 0000c800, size 6, enabled map[24]: type 1, range 32, base db000000, size 17, enabled found-> vendor=0x105a, dev=0x0d30, revid=0x02 bus=0, slot=12, func=0 class=01-04-00, hdrtype=0x00, mfdev=0 cmdreg=0x0007, statreg=0x0210, cachelnsz=0 (dwords) lattimer=0x20 (960 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=a, irq=10 powerspec 1 supports D0 D3 current D0 map[10]: type 1, range 32, base db024000, size 11, enabled map[14]: type 1, range 32, base db020000, size 14, enabled found-> vendor=0x104c, dev=0x8020, revid=0x00 bus=0, slot=13, func=0 class=0c-00-10, hdrtype=0x00, mfdev=0 cmdreg=0x0006, statreg=0x0210, cachelnsz=8 (dwords) lattimer=0x20 (960 ns), mingnt=0x03 (750 ns), maxlat=0x04 (1000 ns) intpin=a, irq=9 powerspec 1 supports D0 D2 D3 current D0 map[10]: type 4, range 32, base 0000cc00, size 8, enabled map[14]: type 1, range 32, base db025000, size 8, enabled found-> vendor=0x1106, dev=0x3065, revid=0x43 bus=0, slot=14, func=0 class=02-00-00, hdrtype=0x00, mfdev=0 cmdreg=0x0007, statreg=0x0210, cachelnsz=8 (dwords) lattimer=0x20 (960 ns), mingnt=0x03 (750 ns), maxlat=0x08 (2000 ns) intpin=a, irq=5 powerspec 2 supports D0 D3 current D0 map[10]: type 4, range 32, base 0000d000, size 3, enabled map[14]: type 4, range 32, base 0000d400, size 3, enabled map[18]: type 4, range 32, base 0000d800, size 3, enabled map[1c]: type 4, range 32, base 0000dc00, size 3, enabled map[20]: type 4, range 32, base 0000e000, size 3, enabled map[24]: type 4, range 32, base 0000e400, size 4, enabled found-> vendor=0x9710, dev=0x9815, revid=0x01 bus=0, slot=15, func=0 class=07-80-00, hdrtype=0x00, mfdev=0 cmdreg=0x0003, statreg=0x0280, cachelnsz=8 (dwords) lattimer=0x20 (960 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=a, irq=11 map[10]: type 4, range 32, base 0000e800, size 8, enabled map[14]: type 1, range 32, base db026000, size 8, enabled found-> vendor=0x10cd, dev=0x1300, revid=0x03 bus=0, slot=16, func=0 class=01-00-00, hdrtype=0x00, mfdev=0 cmdreg=0x0007, statreg=0x0280, cachelnsz=8 (dwords) lattimer=0x20 (960 ns), mingnt=0x04 (1000 ns), maxlat=0x04 (1000 ns) intpin=a, irq=10 map[10]: type 4, range 32, base 0000ec00, size 8, enabled map[14]: type 1, range 32, base db027000, size 8, enabled map[18]: type 1, range 32, base db028000, size 12, enabled found-> vendor=0x1000, dev=0x000f, revid=0x26 bus=0, slot=18, func=0 class=01-00-00, hdrtype=0x00, mfdev=0 cmdreg=0x0007, statreg=0x0210, cachelnsz=8 (dwords) lattimer=0x86 (4020 ns), mingnt=0x11 (4250 ns), maxlat=0x40 (16000 ns) intpin=a, irq=11 powerspec 1 supports D0 D3 current D0 agp0: mem 0xd0000000-0xd3ffffff at device 0.0 on pci0 agp0: allocating GATT for aperture of size 256M pcib1: at device 1.0 on pci0 pcib1: secondary bus 1 pcib1: subordinate bus 1 pcib1: I/O decode 0x9000-0x9fff pcib1: memory decode 0xd8000000-0xd9ffffff pcib1: prefetched decode 0xd4000000-0xd7ffffff pci1: on pcib1 pci1: physical bus=1 map[10]: type 3, range 32, base d4000000, size 26, enabled map[14]: type 4, range 32, base 00009000, size 8, enabled map[18]: type 1, range 32, base d9000000, size 14, enabled found-> vendor=0x1002, dev=0x524c, revid=0x00 bus=1, slot=0, func=0 class=03-00-00, hdrtype=0x00, mfdev=0 cmdreg=0x0087, statreg=0x02b0, cachelnsz=8 (dwords) lattimer=0x20 (960 ns), mingnt=0x08 (2000 ns), maxlat=0x00 (0 ns) intpin=a, irq=5 powerspec 1 supports D0 D1 D3 current D0 pci1: at device 0.0 (no driver attached) isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0xa000-0xa00f at device 7.1 on pci0 ata0: iobase=0x01f0 altiobase=0x03f6 bmaddr=0xa000 ata0: mask=03 ostat0=50 ostat2=00 ata0-master: ATAPI 00 00 ata0-slave: ATAPI 00 00 ata0: mask=03 stat0=50 stat1=00 ata0-master: ATA 01 a5 ata0: devices=01 ata0: at 0x1f0 irq 14 on atapci0 ata1: iobase=0x0170 altiobase=0x0376 bmaddr=0xa008 ata1: mask=03 ostat0=50 ostat2=00 ata1-master: ATAPI 00 00 ata1-slave: ATAPI 00 00 ata1: mask=03 stat0=50 stat1=00 ata1-master: ATA 01 a5 ata1: devices=01 ata1: at 0x170 irq 15 on atapci0 uhci0: port 0xa400-0xa41f irq 9 at device 7.2 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered uhci1: port 0xa800-0xa81f irq 9 at device 7.3 on pci0 usb1: on uhci1 usb1: USB revision 1.0 uhub1: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub1: 2 ports with 2 removable, self powered pci0: at device 7.5 (no driver attached) atapci1: port 0xc800-0xc83f,0xc400-0xc403,0xc000-0xc007,0xbc00-0xbc03,0xb800-0xb807 mem 0xdb000000-0xdb01ffff irq 10 at device 12.0 on pci0 ata2: iobase=0xb800 altiobase=0xbc02 bmaddr=0xc800 ata2: mask=03 ostat0=00 ostat2=00 ata2-master: ATAPI 00 00 ata2-slave: ATAPI 00 00 ata2: mask=03 stat0=00 stat1=00 ata2: devices=00 ata2: at 0xb800 on atapci1 ata3: iobase=0xc000 altiobase=0xc402 bmaddr=0xc808 ata3: mask=03 ostat0=00 ostat2=00 ata3-master: ATAPI 14 eb ata3-slave: ATAPI 10 10 ata3: mask=03 stat0=00 stat1=00 ata3: devices=04 ata3: at 0xc000 on atapci1 pci0: at device 13.0 (no driver attached) vr0: port 0xcc00-0xccff mem 0xdb025000-0xdb0250ff irq 5 at device 14.0 on pci0 vr0: Ethernet address: 00:50:ba:21:d7:c7 miibus0: on vr0 ukphy0: on miibus0 ukphy0: OUI 0x000580, model 0x0000, rev. 0 ukphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto vr0: bpf attached pci0: at device 15.0 (no driver attached) adv0: port 0xe800-0xe8ff mem 0xdb026000-0xdb0260ff irq 10 at device 16.0 on pci0 adv0: Warning EEPROM Checksum mismatch. Using default device parameters adv0: AdvanSys SCSI Host Adapter, SCSI ID 7, queue depth 16 sym0: <875> port 0xec00-0xecff mem 0xdb028000-0xdb028fff,0xdb027000-0xdb0270ff irq 11 at device 18.0 on pci0 sym0: No NVRAM, ID 7, Fast-20, SE, parity checking sym0: open drain IRQ line driver, using on-chip SRAM sym0: using LOAD/STORE-based firmware. fdc0: port 0x3f7,0x3f0-0x3f5 irq 6 drq 2 on acpi0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 sio0: irq maps: 0x1 0x11 0x1 0x1 sio0 port 0x3f8-0x3ff irq 4 on acpi0 sio0: type 16550A unknown: not probed (disabled) sio1: irq maps: 0x1 0x9 0x1 0x1 sio1 port 0x2f8-0x2ff irq 3 on acpi0 sio1: type 16550A unknown: not probed (disabled) ppc0: using extended I/O port range ppc0: ECP SPP ECP+EPP SPP ppc0 port 0x778-0x77b,0x378-0x37f irq 7 drq 3 on acpi0 ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/8 bytes threshold plip0: on ppbus0 lp0: bpf attached lpt0: on ppbus0 lpt0: Interrupt-driven port ppi0: on ppbus0 psmcpnp0 irq 12 on acpi0 atkbdc0: port 0x64,0x60 irq 1 on acpi0 atkbd0: flags 0x1 irq 1 on atkbdc0 atkbd: the current kbd controller command byte 0047 atkbd: keyboard ID 0x41ab (2) kbd0 at atkbd0 kbd0: atkbd0, AT 101/102 (2), config:0x1, flags:0x3d0000 psm0: current command byte:0047 psm0: irq 12 on atkbdc0 psm0: model Generic PS/2 mouse, device ID 0-00, 3 buttons psm0: config:00000000, flags:00000000, packet size:3 psm0: syncmask:c0, syncbits:00 unknown: not probed (disabled) unknown: not probed (disabled) adv: adv0 already exists; skipping it ata: ata0 already exists; skipping it ata: ata1 already exists; skipping it atkbdc: atkbdc0 already exists; skipping it fdc: fdc0 already exists; skipping it ppc: ppc0 already exists; skipping it sio: sio0 already exists; skipping it sio: sio1 already exists; skipping it Trying Read_Port at 203 Trying Read_Port at 243 Trying Read_Port at 283 Trying Read_Port at 2c3 Trying Read_Port at 303 Trying Read_Port at 343 Trying Read_Port at 383 Trying Read_Port at 3c3 ex_isa_identify() sc: sc0 already exists; skipping it vga: vga0 already exists; skipping it isa_probe_children: disabling PnP devices isa_probe_children: probing non-PnP devices orm0: