From owner-freebsd-bugs Sun Mar 4 2:40: 7 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2AFDE37B71A for ; Sun, 4 Mar 2001 02:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f24Ae3v81338; Sun, 4 Mar 2001 02:40:03 -0800 (PST) (envelope-from gnats) Date: Sun, 4 Mar 2001 02:40:03 -0800 (PST) Message-Id: <200103041040.f24Ae3v81338@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Michael C . Wu" Subject: Re: conf/25495: missing et_EE.ISO_8859-15 locale Reply-To: "Michael C . Wu" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR conf/25495; it has been noted by GNATS. From: "Michael C . Wu" To: Vallo Kallaste Cc: "Michael C . Wu" , FreeBSD-gnats-submit@freebsd.org Subject: Re: conf/25495: missing et_EE.ISO_8859-15 locale Date: Sun, 4 Mar 2001 04:38:10 -0600 On Sat, Mar 03, 2001 at 09:46:52PM +0200, Vallo Kallaste scribbled: | On Fri, Mar 02, 2001 at 01:02:34PM -0600, "Michael C . Wu" wrote: | | > | Following needs makefile glue etc. I'll leave it to more knowledgeable | > | people. | > | > Can you put it up for download via HTTP? I'll look into this. | | Yes, http://www.matti.ee/~vallo/et_EE.locale.tar.gz | What's up with uuencoded attachments? That's not the first time I | see such need for URL. There must be some background I still don't | understand. Actually, it has to do with me being lazy, and I think having a URL for GNATS patches stops it from being bloated. Or, if it is small enough, plain text works much better than uuencode. Of course I know what uudecode does... In fact, I was told a long time ago by another person to not uuencode my PR's :). -- +------------------------------------------------------------------+ | keichii@peorth.iteration.net | keichii@bsdconspiracy.net | | http://peorth.iteration.net/~keichii | Yes, BSD is a conspiracy. | +------------------------------------------------------------------+ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 4 2:50: 7 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DBA1537B71A for ; Sun, 4 Mar 2001 02:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f24Ao1C81682; Sun, 4 Mar 2001 02:50:01 -0800 (PST) (envelope-from gnats) Received: from uffdaonline.net (host34.uffdaonline.net [207.109.235.34]) by hub.freebsd.org (Postfix) with ESMTP id 8A71E37B718 for ; Sun, 4 Mar 2001 02:47:40 -0800 (PST) (envelope-from zach@uffdaonline.net) Received: by uffdaonline.net (Postfix, from userid 1000) id 3F65AA7B; Sun, 4 Mar 2001 04:47:42 -0600 (CST) Message-Id: <20010304104742.3F65AA7B@uffdaonline.net> Date: Sun, 4 Mar 2001 04:47:42 -0600 (CST) From: zach@uffdaonline.net Reply-To: zach@uffdaonline.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/25519: -STABLE crash from ordinary user (newpcm related) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25519 >Category: kern >Synopsis: -STABLE crash from ordinary user (newpcm related) >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 Mar 04 02:50:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Zach N. Heilig >Release: FreeBSD 4.2-STABLE i386 >Organization: none >Environment: >Description: simply: panic: page fault (that's the only message after the current time from /etc/rc and before 'synching disks...') >How-To-Repeat: compile and run this code (as any user that has read/write access to the sound driver): --- snip --- #include #include #include #include #include #include void fast_writer(void); void slow_reader(void); void wakeup(int s) { } int main(void) { sigset_t none; int child; child = fork(); if (child == 0) fast_writer(); /* let the writer set up the channel properly... */ signal(SIGUSR1, wakeup); sigemptyset(&none); sigsuspend(&none); /* and let it get a bit ahead... */ sleep(5); slow_reader(); return 0; } void fast_writer(void) { int parent; int fd; int format = AFMT_S16_LE; int speed = 44100; int bits = 16; int stereo = 1; char out[17640]; parent = getppid(); memset(out, 0, sizeof out); fprintf(stderr, "pid %d\n", getpid()); fd = open("/dev/dsp", O_WRONLY); if (fd == -1) { perror("fast_writer: unable to open /dev/dsp"); kill(parent, SIGUSR1); exit(1); } ioctl(fd, SNDCTL_DSP_SETFMT, &format); ioctl(fd, SNDCTL_DSP_SPEED, &speed); ioctl(fd, SNDCTL_DSP_SAMPLESIZE, &bits); ioctl(fd, SNDCTL_DSP_STEREO, &stereo); fprintf(stderr, "fast_writer: starting loop\n"); kill(parent, SIGUSR1); while (1) { write(fd, out, sizeof out); write(STDOUT_FILENO, ">", 1); } } void slow_reader(void) { int cnt; int fd; int in[1600]; fprintf(stderr, "pid %d\n", getpid()); open("/dev/dspW", O_WRONLY); fd = open("/dev/dspW", O_RDONLY); if (fd == -1) { perror("slow_reader: unable to open /dev/dsp"); exit(1); } fprintf(stderr, "slow_reader: starting loop\n"); for (cnt = 0; cnt < 10; ++cnt) { read(fd, in, sizeof in); write(STDOUT_FILENO, "<", 1); } exit(0); } --- snip --- >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 Mar 4 4:48:54 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from web1704.mail.yahoo.com (web1704.mail.yahoo.com [128.11.23.215]) by hub.freebsd.org (Postfix) with SMTP id B56CD37B71A for ; Sun, 4 Mar 2001 04:48:49 -0800 (PST) (envelope-from websoft@yahoo.com) Received: (qmail 10753 invoked by uid 60001); 4 Mar 2001 12:48:49 -0000 Message-ID: <20010304124849.10752.qmail@web1704.mail.yahoo.com> Received: from [210.74.232.43] by web1704.mail.yahoo.com; Sun, 04 Mar 2001 04:48:49 PST Date: Sun, 4 Mar 2001 04:48:49 -0800 (PST) From: Yifeng Xu Subject: **HEADS UP** bug fix for pr25439 (patch) To: freebsd-questions@freebsd.org Cc: ache@nagual.pp.ru, freebsd-bugs@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I am sorry it seems my SMTP server has problems, so I send it via Yahoo! you may received my several previous sents. I think I found the bug about annoying console mouse cursor flicker problem reported in http://www.freebsd.org/cgi/query-pr.cgi?pr=25439 by me sometimes ago, the bug is in file /sys/dev/syscons/syscons.c where function scrn_update will hide and redraw mouse cursor in a special area: .......................... .......................... .......................... .......................... .......................... .......................... ..XXXXXXXXXXXXXXXXXXXXXXXX XX@....................... .......................... the above image represents a full image of console screen, every line represents a line on screen, char @ represents TEXT CURSOR position, area marked with 'X' is an unsafe area, if mouse cursor is moved into this area, syscons will become weird, mouse cursor flickers in very fast speed, eats CPU time up to 20%. the following is a patch to fix this problem. I wish the bug is fixed before FreeBSD 4.3 rolls out. this is a long standing bug. hurray! =============== --- syscons.c.orig Sun Mar 4 16:18:59 2001 +++ syscons.c Sun Mar 4 16:22:33 2001 @@ -1719,12 +1719,9 @@ /* remove the previous mouse pointer image if necessary */ if (scp->status & MOUSE_VISIBLE) { s = scp->mouse_pos; - e = scp->mouse_pos + scp->xsize + 1; + e = scp->mouse_pos; if ((scp->status & (MOUSE_MOVED | MOUSE_HIDDEN)) - || and_region(&s, &e, scp->start, scp->end) - || ((scp->status & CURSOR_ENABLED) && - (and_region(&s, &e, scp->cursor_pos, scp->cursor_pos) - || and_region(&s, &e, scp->cursor_oldpos, scp->cursor_oldpos)))) { + || and_region(&s, &e, scp->start, scp->end)) { sc_remove_mouse_image(scp); if (scp->end >= scp->xsize*scp->ysize) scp->end = scp->xsize*scp->ysize - 1; =============== David Xu davidx@viasoft.com.cn __________________________________________________ Do You Yahoo!? Get email at your own domain with Yahoo! Mail. http://personal.mail.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 4 6:40:10 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 130A437B719 for ; Sun, 4 Mar 2001 06:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f24Ee2X49437; Sun, 4 Mar 2001 06:40:02 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C7FF737B719 for ; Sun, 4 Mar 2001 06:33:20 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f24EXKG20830; Sun, 4 Mar 2001 06:33:20 -0800 (PST) (envelope-from nobody) Message-Id: <200103041433.f24EXKG20830@freefall.freebsd.org> Date: Sun, 4 Mar 2001 06:33:20 -0800 (PST) From: stitzinger_r@fag.de To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/25521: Laptop with FreeBSD4.2 freezes in battery-use randomly for short time Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25521 >Category: kern >Synopsis: Laptop with FreeBSD4.2 freezes in battery-use randomly for short time >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Mar 04 06:40:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Rupert Stitzinger >Release: 4.2 >Organization: % >Environment: FreeBSD fbsd1.my.domain 4.2-RELEASE FreeBSD 4.2-RELEASE #14: Fri Mar 2 21:24:26 CET 2001 root@fbsd1.my.domain:/usr/src/sys/compile/MYKERNEL i386 >Description: Laptop with 82371AB powermanagement controller freezes in batteryuse for a short time while probing floppy and CD-ROM without doing explicit access. This behaviour wasn't there in FreeBSD 3.1 and 4.0. Also harddisk is pwoering down after a few seconds. Problem doesn't occure in non-battery use except the harddisk seems t be powered down sometimes. >How-To-Repeat: >Fix: compiling in and out of intpm, apm, smbus and pcm didn't help >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 Mar 4 9:39:53 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 677F737B718; Sun, 4 Mar 2001 09:39:50 -0800 (PST) (envelope-from roberto@FreeBSD.org) Received: (from roberto@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f24Hdor30948; Sun, 4 Mar 2001 09:39:50 -0800 (PST) (envelope-from roberto) Date: Sun, 4 Mar 2001 09:39:50 -0800 (PST) From: Message-Id: <200103041739.f24Hdor30948@freefall.freebsd.org> To: quinot@inf.enst.fr, roberto@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/24971: pkg_delete -n should call delete_package() Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: pkg_delete -n should call delete_package() State-Changed-From-To: open->closed State-Changed-By: roberto State-Changed-When: Sun Mar 4 09:38:51 PST 2001 State-Changed-Why: Patch applied, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=24971 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 4 10: 5:54 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EA7EB37B719; Sun, 4 Mar 2001 10:05:51 -0800 (PST) (envelope-from adrian@FreeBSD.org) Received: (from adrian@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f24I5pd34849; Sun, 4 Mar 2001 10:05:51 -0800 (PST) (envelope-from adrian) Date: Sun, 4 Mar 2001 10:05:51 -0800 (PST) From: Message-Id: <200103041805.f24I5pd34849@freefall.freebsd.org> To: clefevre@poboxes.com, adrian@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/25067: able to mount a pathname > 80 char. but unable to unmount it Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: able to mount a pathname > 80 char. but unable to unmount it State-Changed-From-To: closed->open State-Changed-By: adrian State-Changed-When: Sun Mar 4 10:03:43 PST 2001 State-Changed-Why: As someone (Cyrille) rightfully pointed out, I still have to MFC this out to RELENG_4. Responsible-Changed-From-To: freebsd-bugs-> Responsible-Changed-By: adrian Responsible-Changed-When: Sun Mar 4 10:03:43 PST 2001 Responsible-Changed-Why: Make sure I mfc my changes http://www.freebsd.org/cgi/query-pr.cgi?pr=25067 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 4 10:10: 9 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4C18A37B721 for ; Sun, 4 Mar 2001 10:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f24IA1g35713; Sun, 4 Mar 2001 10:10:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 30A5B37B718 for ; Sun, 4 Mar 2001 10:02:35 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f24I2Zv32516; Sun, 4 Mar 2001 10:02:35 -0800 (PST) (envelope-from nobody) Message-Id: <200103041802.f24I2Zv32516@freefall.freebsd.org> Date: Sun, 4 Mar 2001 10:02:35 -0800 (PST) From: sluggo@unknown.nu To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: bin/25526: Possible inclusion into the base system: mktime(1) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25526 >Category: bin >Synopsis: Possible inclusion into the base system: mktime(1) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: wish >Submitter-Id: current-users >Arrival-Date: Sun Mar 04 10:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Kim Scarborough >Release: >Organization: >Environment: >Description: I've never seen anything before that I thought should be included in the base system, but this is a pretty handy, small utility that I think fills a very common need: mktime(1). It performs simple arithmetic on the date similar to mktime(3), crucial for all kinds of scheduled tasks. It's public domain. It lives at . >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 4 11: 0: 4 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5334F37B718 for ; Sun, 4 Mar 2001 11:00:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f24J03W39555; Sun, 4 Mar 2001 11:00:03 -0800 (PST) (envelope-from gnats) Date: Sun, 4 Mar 2001 11:00:03 -0800 (PST) Message-Id: <200103041900.f24J03W39555@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: alex@big.endian.de (Alexander Langer) Subject: Re: bin/25526: Possible inclusion into the base system: mktime(1) Reply-To: alex@big.endian.de (Alexander Langer) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/25526; it has been noted by GNATS. From: alex@big.endian.de (Alexander Langer) To: sluggo@unknown.nu Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: bin/25526: Possible inclusion into the base system: mktime(1) Date: Sun, 4 Mar 2001 19:58:49 +0100 Thus spake sluggo@unknown.nu (sluggo@unknown.nu): > I've never seen anything before that I thought should be included in the base system, but this is a pretty handy, small utility that I think fills a very common need: mktime(1). It performs simple arithmetic on the date similar to mktime(3), crucial for all kinds of scheduled tasks. It's public domain. It lives at . this can be done with date(1)'s -v option, you know? Alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 4 11:40: 7 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8E58637B71A for ; Sun, 4 Mar 2001 11:40:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f24Je5D44810; Sun, 4 Mar 2001 11:40:05 -0800 (PST) (envelope-from gnats) Date: Sun, 4 Mar 2001 11:40:05 -0800 (PST) Message-Id: <200103041940.f24Je5D44810@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Kim Scarborough Subject: Re: bin/25526: Possible inclusion into the base system: mktime(1) Reply-To: Kim Scarborough Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/25526; it has been noted by GNATS. From: Kim Scarborough To: Alexander Langer Cc: Subject: Re: bin/25526: Possible inclusion into the base system: mktime(1) Date: Sun, 4 Mar 2001 13:31:08 -0600 (CST) > this can be done with date(1)'s -v option, you know? Oops. Never mind... ------------------------------------------------------------------------------- Kim Scarborough http://www.unknown.nu/kim/ ------------------------------------------------------------------------------- "Tragedy is when I cut my finger. Comedy is when YOU fall in an open manhole and die." - Mel Brooks ------------------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 4 12:10: 6 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A1A2937B71D for ; Sun, 4 Mar 2001 12:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f24KA2D49290; Sun, 4 Mar 2001 12:10:02 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0499B37B718 for ; Sun, 4 Mar 2001 12:03:30 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f24K3TW46376; Sun, 4 Mar 2001 12:03:29 -0800 (PST) (envelope-from nobody) Message-Id: <200103042003.f24K3TW46376@freefall.freebsd.org> Date: Sun, 4 Mar 2001 12:03:29 -0800 (PST) From: j.a.beysens@joostmhw.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/25528: OnStream ATAPI Streamer refuses to eject after usage Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25528 >Category: kern >Synopsis: OnStream ATAPI Streamer refuses to eject after usage >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 Mar 04 12:10:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: Jeroen Beysens >Release: 4.2 >Organization: Joost!MHW >Environment: FreeBSD server.flat.nl 4.2-RELEASE FreeBSD 4.2-RELEASE #0: Mon Nov 20 13:02:55 GMT 2000 jkh@bento.FreeBSD.org:/usr/src/sys/compile/GENERIC i386 >Description: Under Release 4.1 the OnStream DI30 worked fine, however since upgrading (fresh installation) to 4.2 it keeps tapes locked inside after one single tape command. Pressing the eject button does nothing and an offline command with mt tells one the device is busy. A reboot seems the only way to get a tape ejected. >How-To-Repeat: Reboot and put a tape inside issue tape command for example mt -f /dev/rast0 status tape is locked in >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 Mar 4 12:56:14 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1B25837B719; Sun, 4 Mar 2001 12:56:13 -0800 (PST) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f24KuDD53631; Sun, 4 Mar 2001 12:56:13 -0800 (PST) (envelope-from alex) Date: Sun, 4 Mar 2001 12:56:13 -0800 (PST) From: Message-Id: <200103042056.f24KuDD53631@freefall.freebsd.org> To: sluggo@unknown.nu, alex@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/25526: Possible inclusion into the base system: mktime(1) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Possible inclusion into the base system: mktime(1) State-Changed-From-To: open->closed State-Changed-By: alex State-Changed-When: Sun Mar 4 12:55:47 PST 2001 State-Changed-Why: Submitter agrees, that this is already possible with our date(1). (-v) http://www.freebsd.org/cgi/query-pr.cgi?pr=25526 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 4 13: 0: 7 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2EE7637B719 for ; Sun, 4 Mar 2001 13:00:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f24L02Z54010; Sun, 4 Mar 2001 13:00:02 -0800 (PST) (envelope-from gnats) Date: Sun, 4 Mar 2001 13:00:02 -0800 (PST) Message-Id: <200103042100.f24L02Z54010@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Soren Schmidt Subject: Re: kern/25528: OnStream ATAPI Streamer refuses to eject after usage Reply-To: Soren Schmidt Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/25528; it has been noted by GNATS. From: Soren Schmidt To: j.a.beysens@joostmhw.com Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: kern/25528: OnStream ATAPI Streamer refuses to eject after usage Date: Sun, 4 Mar 2001 21:54:16 +0100 (CET) It seems j.a.beysens@joostmhw.com wrote: > FreeBSD server.flat.nl 4.2-RELEASE FreeBSD 4.2-RELEASE #0: Mon Nov 20 13:02:55 GMT 2000 jkh@bento.FreeBSD.org:/usr/src/sys/compile/GENERIC i386 > >Description: > Under Release 4.1 the OnStream DI30 worked fine, however since upgrading (fresh installation) to 4.2 it keeps tapes locked inside after one single tape command. Pressing the eject button does nothing and an offline command with mt tells one the device is busy. A reboot seems the only way to get a tape ejected. The Onstream "wintape" is not really supported by the ata driver, but anyhow this problem shouldn't exist and I'll take a look at it... However if you value your data you shouldn't be using the ontream.... -Søren To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 4 18:33:33 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7FA8237B719; Sun, 4 Mar 2001 18:33:31 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f252XUC99058; Sun, 4 Mar 2001 18:33:30 -0800 (PST) (envelope-from peter) Date: Sun, 4 Mar 2001 18:33:30 -0800 (PST) From: Message-Id: <200103050233.f252XUC99058@freefall.freebsd.org> To: mistral@imasy.or.jp, peter@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/25225: A new version of LUA-TX USB ethernet adaptor for aue driver Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: A new version of LUA-TX USB ethernet adaptor for aue driver State-Changed-From-To: open->closed State-Changed-By: peter State-Changed-When: Sun Mar 4 18:32:01 PST 2001 State-Changed-Why: Suggested change committed; rev 1.38 and 1.19.2.9 of sys/dev/usb/if_aue.c http://www.freebsd.org/cgi/query-pr.cgi?pr=25225 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 4 18:42:44 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 38A2E37B719 for ; Sun, 4 Mar 2001 18:41:21 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f252fL199687; Sun, 4 Mar 2001 18:41:21 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8C23737B719 for ; Sun, 4 Mar 2001 18:36:27 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f252aRD99282; Sun, 4 Mar 2001 18:36:27 -0800 (PST) (envelope-from nobody) Message-Id: <200103050236.f252aRD99282@freefall.freebsd.org> Date: Sun, 4 Mar 2001 18:36:27 -0800 (PST) From: davidx@viasoft.com.cn To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/25536: fix annoying console mouse cursor flicker problem Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25536 >Category: kern >Synopsis: fix annoying console mouse cursor flicker problem >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 Mar 04 18:40:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: David Xu >Release: FreeBSD 4.2-stable >Organization: viasoft >Environment: FreeBSD davidbsd.viasoft.com.cn 4.2-STABLE FreeBSD 4.2-STABLE #10: Fri Mar 2 09 :24:41 CST 2001 root@davidbsd.viasoft.com.cn:/usr/src/sys/compile/xu i386 >Description: here is a patch for the problem reported in PR25439, I found the bug is in /sys/dev/syscons/syscons.c, where function srcn_update detects if text cursor is in a special area, if it is in the area, the function will repeatly hide and show text cursor in very fast speed, the condition remains true until mouse cursor is moved away from such area, cause 20% of CPU time is wasted. >How-To-Repeat: ......................... ......................... .....xxxxxxxxxxxxxxxxxxxx xxxxx@................... ......................... above image represents a screen image, every line represents a screen line, char @ is text cursor position, if mouse cursor is moved into area marked with char x, then mouse cursor flickers weirdly. >Fix: patch for /sys/dev/syscons.c: --- syscons.c.orig Mon Mar 5 08:36:49 2001 +++ syscons.c Mon Mar 5 08:37:11 2001 @@ -1723,6 +1723,7 @@ if ((scp->status & (MOUSE_MOVED | MOUSE_HIDDEN)) || and_region(&s, &e, scp->start, scp->end) || ((scp->status & CURSOR_ENABLED) && + (scp->cursor_pos != scp->cursor_oldpos) && (and_region(&s, &e, scp->cursor_pos, scp->cursor_pos) || and_region(&s, &e, scp->cursor_oldpos, scp->cursor_oldpos))) ) { sc_remove_mouse_image(scp); >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 Mar 4 22:10: 8 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8225737B71B for ; Sun, 4 Mar 2001 22:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f256A1V29324; Sun, 4 Mar 2001 22:10:01 -0800 (PST) (envelope-from gnats) Received: from bazooka.unixfreak.org (bazooka.unixfreak.org [63.198.170.138]) by hub.freebsd.org (Postfix) with ESMTP id 4C9C437B71A for ; Sun, 4 Mar 2001 22:06:27 -0800 (PST) (envelope-from dima@unixfreak.org) Received: from spike.unixfreak.org (spike [192.168.2.4]) by bazooka.unixfreak.org (Postfix) with ESMTP id CBE453E0D for ; Sun, 4 Mar 2001 22:06:24 -0800 (PST) Received: (from dima@localhost) by spike.unixfreak.org (8.11.2/8.11.1) id f2566Ov36612; Sun, 4 Mar 2001 22:06:24 -0800 (PST) (envelope-from dima) Message-Id: <200103050606.f2566Ov36612@spike.unixfreak.org> Date: Sun, 4 Mar 2001 22:06:24 -0800 (PST) From: dima@unixfreak.org Reply-To: dima@unixfreak.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/25537: [PATCH] Explain security profiles in sysinstall Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25537 >Category: bin >Synopsis: [PATCH] Explain security profiles in sysinstall >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Mar 04 22:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Dima Dorfman >Release: FreeBSD 5.0-20010225-CURRENT i386 >Organization: Private >Environment: System: FreeBSD spike.unixfreak.org 5.0-20010225-CURRENT FreeBSD 5.0-20010225-CURRENT #9: Sun Feb 25 22:49:27 PST 2001 dima@spike.unixfreak.org:/c/home/dima/w/f/src/sys/compile/SPIKE i386 >Description: Since security profiles were introduced in sysinstall, two things happened. First, a lot of people started having problems installing kernels, et cetera because the High and Extreme security profiles raised securelevel. Second, a lot of people wanted to know exactly what those security profiles do. The first problem has pretty much been dealt with by appropriate additions to the FAQ. The second problem remains. >How-To-Repeat: Read -questions. >Fix: I propose we add a help screen to the menu in sysinstall where one can select a security profile. Sysinstall already has a mechanism to do this; the help screen is displayed when a user pushes "F1" (at least on U.S. keyboards). The following patch implements the above suggestion. The feature table was written by Michael Lea and submitted via freebsd-security (see "Re: security settings documentation" on freebsd-security around Feb. 14 2001); consequently, if this is commited, he should be credited in the commit log. The patch adds a new file, help/secprofile.hlp (under src/usr.sbin/sysinstall). Index: menus.c =================================================================== RCS file: /st/src/FreeBSD/src/usr.sbin/sysinstall/menus.c,v retrieving revision 1.288 diff -u -r1.288 menus.c --- menus.c 2001/02/09 19:01:48 1.288 +++ menus.c 2001/03/05 05:44:39 @@ -1609,7 +1609,7 @@ "be \"appropriate\" values in that category for various\n" "security-related knobs in /etc/rc.conf.", "Select a canned security profile.", - NULL, + "secprofile", { { "X Exit", "Exit this menu (returning to previous)", NULL, configSecurityModerate }, { "Low", "Fairly wide-open (little) security.", NULL, configSecurityLiberal }, { "Medium", "Moderate security settings [DEFAULT].", NULL, configSecurityModerate }, --- /dev/null Sun Mar 4 21:34:46 2001 +++ help/secprofile.hlp Sun Mar 4 21:35:20 2001 @@ -0,0 +1,47 @@ +This menu allows you to configure your system's "security profile." A +security profile is a set of configuration options that attempts to +achieve the desired ratio of security to convenience by enabling and +disabling certain programs and other settings. The more severe the +security profile, the less programs will be enabled by default; this +is one of the basic principles of security: do not run anything except +what you must. + +Please note that the security profile is just a default setting. All +programs can be enabled and disabled later by editing or adding the +appropriate line(s) to /etc/rc.conf. For more information on the +latter, please see the rc.conf(5) manual page once you have installed +FreeBSD. + +Following is a table that describes what each security profile does. +The columns are the choices you have for a security profile, and the +rows are the program or feature that is enabled or disabled. + + Extreme High Moderate Low +inetd NO NO YES YES +sendmail NO YES YES YES +sshd NO YES YES YES +portmap NO NO [1] YES +NFS server NO NO YES YES +securelevel YES (2) [2] YES (1) [2] NO NO + +NOTES: + +[1] The portmapper is enabled if the machine has been configured as an + NFS client or server earlier in the installation. + +[2] For Extreme, the securelevel is set to 2; for High, it is set to + 1. If you choose either of these, you must be aware of the + implications of securelevel. Please read the init(8) manual page and + the FAQ, or you may have problems performing such tasks as + installing a new kernel, changing the system date, or upgrading to a + later version of FreeBSD. + +WARNING: The security profile is not a silver bullet! Setting it high +does not mean you do not have to keep up with security issues by +reading an appropriate mailing list (one where the security advisories +are sent), using good passwords and passphrases, and generally +adhering to good security practices. It simply sets up the desired +security to convenience ratio out of the box. + +You can always change any of these settings by editing or adding the +appropriate line(s) to /etc/rc.conf. >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 Mar 5 0:20: 7 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B107037B719 for ; Mon, 5 Mar 2001 00:20:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f258K3l54225; Mon, 5 Mar 2001 00:20:03 -0800 (PST) (envelope-from gnats) Date: Mon, 5 Mar 2001 00:20:03 -0800 (PST) Message-Id: <200103050820.f258K3l54225@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Andy Farkas Subject: Re: conf/25514: ntpdate_flags in /etc/defaults/rc.conf should be set to "-b" Reply-To: Andy Farkas Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR conf/25514; it has been noted by GNATS. From: Andy Farkas To: cjohnson-pr@palomine.net Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: conf/25514: ntpdate_flags in /etc/defaults/rc.conf should be set to "-b" Date: Mon, 5 Mar 2001 19:15:23 +1100 (EST) > >Description: > > According to the ntpdate man page, ntpdate should be run with -b when > run from a startup file at boot time. This causes the time to be stepped > rather than slewed. The man page also says, by default, if the clock is in error more than 0.5 second it will step, rather than slew, the time. What I see as a problem is in /etc/rc.network where it pipes the output of ntpdate to /dev/null. If ntpdate fails to step the clock, and the clock is way out of sync, then ntpd (if enabled) will also fail to work. /etc/rc.network should be smarter and check return codes when starting ntpdate and/or ntpd. Should it pipe the output to logger(1)?? -- :{ andyf@speednet.com.au Andy Farkas System Administrator Speednet Communications http://www.speednet.com.au/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 5 1:24:12 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from uffdaonline.net (host37.uffdaonline.net [207.109.235.37]) by hub.freebsd.org (Postfix) with ESMTP id 9179737B719; Mon, 5 Mar 2001 01:24:05 -0800 (PST) (envelope-from zach@uffdaonline.net) Received: by uffdaonline.net (Postfix, from userid 1000) id 92FEEA7E; Mon, 5 Mar 2001 03:23:09 -0600 (CST) Date: Mon, 5 Mar 2001 03:23:09 -0600 From: "Zach N. Heilig" To: gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/25519: -STABLE crash from ordinary user (newpcm related) Message-ID: <20010305032309.A22753@murkwood.znh.org> References: <20010304104742.3F65AA7B@uffdaonline.net> <200103041050.f24Ao1r81678@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200103041050.f24Ao1r81678@freefall.freebsd.org>; from gnats-admin@FreeBSD.org on Sun, Mar 04, 2001 at 02:50:01AM -0800 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hm.. it was late when I wrote the bit of code to trigger this crash. Here is a far far simpler version that crashes 100% of the time for me (on two separate machines, with any user): (kernel from sometime on Feb 24th -- but I've observed this periodically over the past few months -- I just haven't tracked it down until now) #include #include #include #include int main(void) { int fd; int format = AFMT_S16_LE; int speed = 44100; int bits = 16; int stereo = 1; char out[17640]; memset(out, 0, sizeof out); fd = open("/dev/dsp", O_WRONLY); if (fd == -1) { perror("unable to open /dev/dsp"); exit(1); } ioctl(fd, SNDCTL_DSP_SETFMT, &format); ioctl(fd, SNDCTL_DSP_SPEED, &speed); ioctl(fd, SNDCTL_DSP_SAMPLESIZE, &bits); ioctl(fd, SNDCTL_DSP_STEREO, &stereo); write(fd, out, sizeof out); close(open("/dev/dspW", O_RDONLY)); write(fd, out, sizeof out); return 0; } it can also be produced by simply typing: $ < /dev/dspW while playing audio (mp3, game with audio, whatever). It won't crash 1) if the read channel is kept open (the output audio will just be severly distorted) 2) if the write channel is closed first. Machine #1: Copyright (c) 1992-2001 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.2-STABLE #0: Sat Feb 24 05:31:05 CST 2001 zach@murkwood:/usr/obj/usr/src/sys/MURKWOOD Timecounter "i8254" frequency 1193202 Hz CPU: AMD-K6tm w/ multimedia extensions (300.69-MHz 586-class CPU) Origin = "AuthenticAMD" Id = 0x570 Stepping = 0 Features=0x8001bf AMD Features=0x400<> real memory = 134217728 (131072K bytes) avail memory = 126423040 (123460K bytes) ... pcm0: port 0xe000-0xe03f irq 11 at device 9.0 on pci0 ... Machine #2 Copyright (c) 1992-2001 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.2-STABLE #1: Sat Feb 24 16:32:27 CST 2001 zach@mp3:/usr/obj/usr/src/sys/MP3S4 Timecounter "i8254" frequency 1193182 Hz CPU: Cyrix MediaGX (486-class CPU) Origin = "CyrixInstead" DIR=0x2241 Stepping=2 Revision=2 real memory = 31326208 (30592K bytes) avail memory = 27226112 (26588K bytes) ... sbc0: at port 0x220-0x22f irq 5 drq 1 flags 0x15 on isa0 pcm1: on sbc0 ... -- Zach Heilig To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 5 3:30: 8 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 65CC937B719 for ; Mon, 5 Mar 2001 03:30:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f25BU4M87518; Mon, 5 Mar 2001 03:30:04 -0800 (PST) (envelope-from gnats) Received: from wint.itfs.nsk.su (wint.itfs.nsk.su [212.20.32.43]) by hub.freebsd.org (Postfix) with ESMTP id 24D2D37B719 for ; Mon, 5 Mar 2001 03:29:52 -0800 (PST) (envelope-from nnd@wint.itfs.nsk.su) Received: (from nnd@localhost) by wint.itfs.nsk.su (8.11.3/8.11.1) id f25BTnd00793; Mon, 5 Mar 2001 17:29:49 +0600 (NOVT) (envelope-from nnd) Message-Id: <200103051129.f25BTnd00793@wint.itfs.nsk.su> Date: Mon, 5 Mar 2001 17:29:49 +0600 (NOVT) From: nnd@mail.nsk.ru Reply-To: nnd@mail.nsk.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/25541: Bug in the -CURRENT 'wall' command Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25541 >Category: bin >Synopsis: Bug in the -CURRENT 'wall' command >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Mar 05 03:30:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Nickolay Dudorov >Release: FreeBSD 5.0-CURRENT i386 >Organization: STE Infoteka >Environment: System: FreeBSD wint.itfs.nsk.su 5.0-CURRENT FreeBSD 5.0-CURRENT #16: Mon Mar 5 13:44:50 NOVT 2001 nnd@wint.itfs.nsk.su:/usr/obj/usr/src/sys/WINTS i386 >Description: Version 1.7 of the 'src/usr.bin/wall/ttymsg.c' makes the device's names of the types : /dev/ttyp0, /dev/ttyp0ttyp1, /dev/ttyp0ttyp1ttyp2 and thus 'wall' (despite the name - Write to ALL) write the message only to the first one of them. >How-To-Repeat: Use the 'wall' command on the system with more than one line in use. >Fix: Apply the next patch (or other one with the same effect ;-) Index: src/usr.bin/wall/ttymsg.c =================================================================== RCS file: /scratch/CVS/src/usr.bin/wall/ttymsg.c,v retrieving revision 1.7 diff -b -u -r1.7 ttymsg.c --- src/usr.bin/wall/ttymsg.c 2001/03/01 05:43:12 1.7 +++ src/usr.bin/wall/ttymsg.c 2001/03/05 11:11:56 @@ -71,7 +71,7 @@ if (iovcnt > sizeof(localiov) / sizeof(localiov[0])) return ("too many iov's (change code in wall/ttymsg.c)"); - strlcat(device, line, sizeof(device)); + strlcpy(device + sizeof(_PATH_DEV) - 1, line, sizeof(device)); if (strchr(device + sizeof(_PATH_DEV) - 1, '/')) { /* A slash is an attempt to break security... */ (void) snprintf(errbuf, sizeof(errbuf), >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 Mar 5 4:58:25 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 44D6E37B719; Mon, 5 Mar 2001 04:58:24 -0800 (PST) (envelope-from des@FreeBSD.org) Received: (from des@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f25CwNK06262; Mon, 5 Mar 2001 04:58:23 -0800 (PST) (envelope-from des) Date: Mon, 5 Mar 2001 04:58:23 -0800 (PST) From: Message-Id: <200103051258.f25CwNK06262@freefall.freebsd.org> To: Heinz-Guenter.Siebert@t-online.de, des@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/13220: mkdep: compile failed - ../../pci/if_de.c #include expects "FILENAME" of Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: mkdep: compile failed - ../../pci/if_de.c #include expects "FILENAME" of State-Changed-From-To: open->closed State-Changed-By: des State-Changed-When: Mon Mar 5 04:57:59 PST 2001 State-Changed-Why: Stale PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=13220 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 5 5: 3:14 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D0A8137B71F; Mon, 5 Mar 2001 05:03:08 -0800 (PST) (envelope-from des@FreeBSD.org) Received: (from des@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f25D36c07024; Mon, 5 Mar 2001 05:03:06 -0800 (PST) (envelope-from des) Date: Mon, 5 Mar 2001 05:03:06 -0800 (PST) From: Message-Id: <200103051303.f25D36c07024@freefall.freebsd.org> To: jschoch@siscom.net, des@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: ports/22456: kde installs but incorrectly Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: kde installs but incorrectly State-Changed-From-To: open->closed State-Changed-By: des State-Changed-When: Mon Mar 5 05:02:02 PST 2001 State-Changed-Why: Not a bug. KDE is a dekstop environment that runs on top of X. The 'startkde' command only works when you have already started X (e.g. using 'startx'). http://www.freebsd.org/cgi/query-pr.cgi?pr=22456 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 5 5: 4:39 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B117137B718; Mon, 5 Mar 2001 05:04:36 -0800 (PST) (envelope-from des@FreeBSD.org) Received: (from des@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f25D4ah07434; Mon, 5 Mar 2001 05:04:36 -0800 (PST) (envelope-from des) Date: Mon, 5 Mar 2001 05:04:36 -0800 (PST) From: Message-Id: <200103051304.f25D4ah07434@freefall.freebsd.org> To: antonhs42@hotmail.com, des@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/24508: i have this error when i start X xf860OpenConsole :KDEANABIO (Operation not permitted) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: i have this error when i start X xf860OpenConsole :KDEANABIO (Operation not permitted) State-Changed-From-To: open->closed State-Changed-By: des State-Changed-When: Mon Mar 5 05:03:44 PST 2001 State-Changed-Why: Duplicate of misc/21728. X will not start when the machine is running at securelevel 1 or higher. http://www.freebsd.org/cgi/query-pr.cgi?pr=24508 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 5 5: 6:14 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A2CA537B71A; Mon, 5 Mar 2001 05:06:12 -0800 (PST) (envelope-from des@FreeBSD.org) Received: (from des@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f25D6Cc10095; Mon, 5 Mar 2001 05:06:12 -0800 (PST) (envelope-from des) Date: Mon, 5 Mar 2001 05:06:12 -0800 (PST) From: Message-Id: <200103051306.f25D6Cc10095@freefall.freebsd.org> To: support@thinserver.net, des@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/16009: Invoking /stand/sysinstall from kde terminal window as root locks system ver 3.4 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Invoking /stand/sysinstall from kde terminal window as root locks system ver 3.4 State-Changed-From-To: open->closed State-Changed-By: des State-Changed-When: Mon Mar 5 05:06:05 PST 2001 State-Changed-Why: Timed out. http://www.freebsd.org/cgi/query-pr.cgi?pr=16009 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 5 6:12: 8 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C3CB937B719; Mon, 5 Mar 2001 06:12:06 -0800 (PST) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f25EC4u22253; Mon, 5 Mar 2001 06:12:04 -0800 (PST) (envelope-from ache) Date: Mon, 5 Mar 2001 06:12:04 -0800 (PST) From: Message-Id: <200103051412.f25EC4u22253@freefall.freebsd.org> To: nnd@mail.nsk.ru, ache@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/25541: Bug in the -CURRENT 'wall' command Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Bug in the -CURRENT 'wall' command State-Changed-From-To: open->closed State-Changed-By: ache State-Changed-When: Mon Mar 5 06:11:35 PST 2001 State-Changed-Why: Commited. http://www.freebsd.org/cgi/query-pr.cgi?pr=25541 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 5 6:40: 7 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5859B37B71C for ; Mon, 5 Mar 2001 06:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f25Ee2q38557; Mon, 5 Mar 2001 06:40:02 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3EF8337B718 for ; Mon, 5 Mar 2001 06:31:11 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f25EVBS24379; Mon, 5 Mar 2001 06:31:11 -0800 (PST) (envelope-from nobody) Message-Id: <200103051431.f25EVBS24379@freefall.freebsd.org> Date: Mon, 5 Mar 2001 06:31:11 -0800 (PST) From: colle@krtkg1.rug.ac.be To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: bin/25543: pkg_info dumps core Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25543 >Category: bin >Synopsis: pkg_info dumps core >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 Mar 05 06:40:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Christophe Colle >Release: FreeBSD 5.0-20010302-CURR >Organization: >Environment: FreeBSD portie.pandora.be 5.0-20010302-CURRENT FreeBSD 5.0-20010302-CURRENT #0: Fri Mar 2 16:09:41 GMT 2001 root@usw2.freebsd.org:/usr/src/sys/compile/GENERIC i386 >Description: adding a package (with /stand/sysinstall or pkg_add) fails because the subprocess pkg_info dumps core. The stacktrace is: bash-2.04# gdb /usr/sbin/pkg_info.bad /var/tmp/instmp.9kfRWV/pkg_info.bad.core GNU gdb 4.18 Copyright 1998 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-unknown-freebsd"... (no debugging symbols found)... Core was generated by `pkg_info.bad'. Program terminated with signal 11, Segmentation fault. Reading symbols from /usr/lib/libfetch.so.2...(no debugging symbols found)... done. Reading symbols from /usr/lib/libmd.so.2...(no debugging symbols found)...done. Reading symbols from /usr/lib/libc.so.5...(no debugging symbols found)...done. Reading symbols from /usr/libexec/ld-elf.so.1...(no debugging symbols found)... done. #0 0x280f60fe in __vfprintf () from /usr/lib/libc.so.5 (gdb) $b Undefined command: "". Try "help". (gdb) ba #0 0x280f60fe in __vfprintf () from /usr/lib/libc.so.5 #1 0x280f04e7 in snprintf () from /usr/lib/libc.so.5 #2 0x8049a70 in free () #3 0x80499e6 in free () #4 0x8049699 in free () The command to generate the core is: bash-2.04# ktrace -i pkg_add -v ~colle/mod_php4-4.0.4pl1.tgz Requested space: 1480852 bytes, free space: 17775616 bytes in /var/tmp/instmp.9kfRWV Package `mod_php4-4.0.4pl1' depends on `mysql-client-3.23.33'. Segmentation fault - core dumped pkg_add: could not find package mysql-client-3.23.33 ! Package `mod_php4-4.0.4pl1' depends on `apache-1.3.17_1'. Segmentation fault - core dumped pkg_add: could not find package apache-1.3.17_1 ! >How-To-Repeat: pkg_add mod_php4-4.0.4pl1.tgz >Fix: temp fix: replace pkg_info with pkg_info from FBSD4. and fbsd 5 flies again >Release-Note: >Audit-Trail: >Unformatted: ENT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 5 7:10: 6 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 162C937B71A for ; Mon, 5 Mar 2001 07:10:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f25FA4e97577; Mon, 5 Mar 2001 07:10:04 -0800 (PST) (envelope-from gnats) Date: Mon, 5 Mar 2001 07:10:04 -0800 (PST) Message-Id: <200103051510.f25FA4e97577@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Dag-Erling Smorgrav Subject: Re: bin/25494: fetch uses environment variable FTP_PROXY, ftp/lynx use ftp_proxy Reply-To: Dag-Erling Smorgrav Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/25494; it has been noted by GNATS. From: Dag-Erling Smorgrav To: mike@pelley.com Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/25494: fetch uses environment variable FTP_PROXY, ftp/lynx use ftp_proxy Date: 05 Mar 2001 16:03:15 +0100 mike@pelley.com writes: > Change fetch to support lowercase ftp_proxy/http_proxy as well, > and change man page to only mention the lowercase versions. Is this really the correct fix? Does lynx really apply the exact same semantics to ftp_proxy / http_proxy as libfetch does do FTP_PROXY / HTTP_PROXY? (me, I'm tempted to say the correct fix is "don't use lynx, use w3m") DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 5 7:10:10 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0738D37B718 for ; Mon, 5 Mar 2001 07:10:06 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f25FA5q97594; Mon, 5 Mar 2001 07:10:05 -0800 (PST) (envelope-from gnats) Date: Mon, 5 Mar 2001 07:10:05 -0800 (PST) Message-Id: <200103051510.f25FA5q97594@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Christophe Colle Subject: Re: bin/25543: pkg_info dumps core Reply-To: Christophe Colle Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/25543; it has been noted by GNATS. From: Christophe Colle To: freebsd-gnats-submit@FreeBSD.org, colle@krtkg1.rug.ac.be Cc: Subject: Re: bin/25543: pkg_info dumps core Date: Mon, 5 Mar 2001 16:05:09 +0100 (MET) The core dump is due to accessing uninitialized memory: pkg_perform(char **pkgs) { char **matched; char *tmp; int err_cnt = 0; int i, errcode; signal(SIGINT, cleanup); /* Overriding action? */ if (CheckPkg) { char buf[FILENAME_MAX]; snprintf(buf, FILENAME_MAX, "%s/%s", tmp, CheckPkg); return abs(access(buf, R_OK)); /* Not reached */ } the variable tmp is never initialised: add the follwoing line: tmp = getenv(PKG_DBDIR)?getenv(PKG_DBDIR):DEF_LOG_DIR; so the code looks like: pkg_perform(char **pkgs) { char **matched; char *tmp; int err_cnt = 0; int i, errcode; signal(SIGINT, cleanup); /* Overriding action? */ if (CheckPkg) { char buf[FILENAME_MAX]; tmp = getenv(PKG_DBDIR)?getenv(PKG_DBDIR):DEF_LOG_DIR; snprintf(buf, FILENAME_MAX, "%s/%s", tmp, CheckPkg); return abs(access(buf, R_OK)); /* Not reached */ } Now it flies again.... Christophe Colle | \ ============================================================= | \ Colle Christophe Phone: +32-(0)3-886.39.83 | \ mail: colle@krtkg1.rug.ac.be http://krtkg1.rug.ac.be/~colle +----- | ----------+ When I'm in Ghent, then I'm probably at Anouk's place.. \________| ======= Radiotherapy Department, Ghent ============= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 5 8:40:11 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DA1D637B71A for ; Mon, 5 Mar 2001 08:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f25Ge1Z33519; Mon, 5 Mar 2001 08:40:01 -0800 (PST) (envelope-from gnats) Received: from mgate08.so-net.ne.jp (mgate08.so-net.ne.jp [210.139.254.155]) by hub.freebsd.org (Postfix) with ESMTP id 0EAF037B719 for ; Mon, 5 Mar 2001 08:36:49 -0800 (PST) (envelope-from ipfw@ya3.so-net.ne.jp) Received: from mail.ya3.so-net.ne.jp (mspool11.so-net.ne.jp [210.139.248.11]) by mgate08.so-net.ne.jp (8.8.8+3.0Wbeta9/3.6W01022711) with ESMTP id BAA08749 for ; Tue, 6 Mar 2001 01:36:47 +0900 (JST) Received: from localhost (pee7b3c.kngwnt01.ap.so-net.ne.jp [202.238.123.60]) by mail.ya3.so-net.ne.jp (8.9.3/3.7W01022316) with ESMTP id BAA17102 for ; Tue, 6 Mar 2001 01:36:46 +0900 (JST) Message-Id: <20010306014248K.ipfw@ya3.so-net.ne.jp> Date: Tue, 06 Mar 2001 01:42:48 +0900 From: Yoshihiro Koya To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/25545: Incorrect output of top(1) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25545 >Category: bin >Synopsis: Incorrect Mem value produced by top(1). >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 Mar 05 08:40:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Yoshihiro Koya >Release: FreeBSD 5.0-CURRENT i386 >Organization: Dpet. of Math. Sci, Yokohama City University >Environment: System: FreeBSD current.my.domain 5.0-CURRENT FreeBSD 5.0-CURRENT #2: Mon Mar 5 20:08:25 JST 2001 root@current.my.domain:/usr/obj/usr/src/sys/current i386 >Description: The value produced by top(1) is incorrect. For example, last pid: 734; load averages: 0.13, 0.04, 0.02 up 0+00:26:37 01:32:02 33 processes: 1 running, 32 sleeping CPU states: % user, % nice, % system, % interrupt, % idle Mem: 9044K Active, 8241K Inact, 5703K Wired, 15K Cache, 35M Buf, 40M Free Swap: 256M Total, 256M Free The output above was obtained on the machine with 256MB ram. The sum of value "Active", "Inact", "Wired", "Chache", "Buf" and "Free" seems to be too small. >How-To-Repeat: % top and investigate its output. >Fix: --- machine.c.orig Tue Mar 6 01:23:21 2001 +++ machine.c Tue Mar 6 01:31:37 2001 @@ -330,7 +330,12 @@ GETSYSCTL("vm.stats.vm.v_swappgsin", nspgsin); GETSYSCTL("vm.stats.vm.v_swappgsout", nspgsout); /* convert memory stats to Kbytes */ + memory_stats[0] = pagetok(memory_stats[0]); + memory_stats[1] = pagetok(memory_stats[1]); + memory_stats[2] = pagetok(memory_stats[2]); + memory_stats[3] = pagetok(memory_stats[3]); memory_stats[4] = bufspace / 1024; + memory_stats[5] = pagetok(memory_stats[5]); memory_stats[6] = -1; /* first interval */ >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 Mar 5 8:40:11 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6E8D837B719 for ; Mon, 5 Mar 2001 08:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f25Ge1q33510; Mon, 5 Mar 2001 08:40:01 -0800 (PST) (envelope-from gnats) Received: from david.siemens.de (david.siemens.de [192.35.17.14]) by hub.freebsd.org (Postfix) with ESMTP id D240C37B718 for ; Mon, 5 Mar 2001 08:35:50 -0800 (PST) (envelope-from andre.albsmeier@mchp.siemens.de) Received: from mail3.siemens.de (mail3.siemens.de [139.25.208.14]) by david.siemens.de (8.11.0/8.11.0) with ESMTP id f25GZmt12249 for ; Mon, 5 Mar 2001 17:35:49 +0100 (MET) Received: from curry.mchp.siemens.de (curry.mchp.siemens.de [139.25.42.7]) by mail3.siemens.de (8.11.1/8.11.1) with ESMTP id f25GZmr31942812 for ; Mon, 5 Mar 2001 17:35:48 +0100 (MET) Received: (from localhost) by curry.mchp.siemens.de (8.11.2/8.11.2) id f25GZmS85478 for FreeBSD-gnats-submit@freebsd.org; Mon, 5 Mar 2001 17:35:48 +0100 (CET) Message-Id: <200103051635.f25GZm864417@curry.mchp.siemens.de> Date: Mon, 5 Mar 2001 17:35:48 +0100 (CET) From: Andre Albsmeier To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/25544: [PATCH] lprm - fails for remote printers Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25544 >Category: bin >Synopsis: [PATCH] lprm - fails for remote printers >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 Mar 05 08:40:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Andre Albsmeier >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: FreeBSD 4.2-STABLE using remote printers >Description: When using "lprm -" to remove all jobs in a remote print queue, rmjob() is called from lprm. To indicate that all jobs should be deleted, the global variable users is set to -1. rmjob() then constructs an iovec struct array to talk to the remote lpd. Here iov[3].iov_base is set to the string "-all". The size of this array is calculated from the variable users (among others). This is done wrongly which turns out that the "-all" never makes it to the destination lpd and it complains. >How-To-Repeat: Issue a "lprm -" command for a remote printer. >Fix: Don't let a negative value users incorrectly shrink the number of iov's. Since users won't be uses anymore we can safely set it to 0. --- usr.sbin/lpr/common_source/rmjob.c.ORI Mon Mar 5 17:20:54 2001 +++ usr.sbin/lpr/common_source/rmjob.c Mon Mar 5 17:21:58 2001 @@ -338,6 +338,8 @@ * us to process requests of indeterminate length without * applying an arbitrary limit. Arbitrary Limits Are Bad (tm). */ + if(users < 0) + users = 0; niov = 4 + 2 * users + requests + 1; iov = malloc(niov * sizeof *iov); if (iov == 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 Mar 5 11: 0:12 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 269EF37B718 for ; Mon, 5 Mar 2001 11:00:10 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f25J07L55998 for freebsd-bugs@freebsd.org; Mon, 5 Mar 2001 11:00:07 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 5 Mar 2001 11:00:07 -0800 (PST) Message-Id: <200103051900.f25J07L55998@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 X-Loop: FreeBSD.org Current FreeBSD problem reports Critical problems Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2000/11/07] pending/22677gnats-admin(Was pr: misc/11525) similar behavior in o [2000/11/09] pending/22722gnats-adminRe: apache-jserv (fwd) o [2000/11/23] pending/23054gnats-adminRe: maintainer update: security/nessus su o [2000/11/27] pending/23147gnats-admined driver hanging system o [2000/12/06] pending/23319gnats-adminRe: gogo: invalid source download locatio o [2000/12/10] pending/23453gnats-adminRe: New port: audio/gdrdao o [2000/12/13] pending/23519gnats-adminRe: xlock port doesn't check password o [2000/12/13] pending/23527gnats-adminRe: xlock port doesn't check password o [2000/12/14] pending/23542gnats-adminRe: xlock port doesn't check password o [2000/12/26] pending/23876gnats-adminsmpeg-xmms port fail to compile o [2000/12/27] pending/23885gnats-admin=09New port: quelcom: A set of command-li o [2000/12/27] pending/23896gnats-adminRe: o [2000/12/27] pending/23898gnats-admin=09New port: quelcom: A set of command-li o [2000/12/31] pending/23979gnats-adminRe: patch: ports/audio/linux-realplayer o [2001/01/01] pending/24006gnats-admin=09New port: httrack: An easy to use offl o [2001/01/03] pending/24037gnats-admin o [2001/01/10] pending/24215gnats-adminRe: Updated port: mail/elm+ME - 2.4ME+87 o [2001/01/10] pending/24216gnats-adminnew port: kde-i18n-pl o [2001/01/10] pending/24217gnats-adminnew port: ssmtp o [2001/01/10] pending/24240gnats-adminRe: Updated port: mail/elm+ME - 2.4ME+87 o [2001/02/14] pending/25097gnats-adminms-dos version 3.0 o [2001/02/20] pending/25242gnats-adminRe: PR bin/6161: 2.2.6 kerberos servers a o [2001/02/23] pending/25298gnats-admindmesg -a o [2001/02/23] pending/25336gnats-admindmesg -a o [2001/02/24] pending/25346gnats-adminSome interrupts not delivered on Dell Wor o [2001/02/26] pending/25379gnats-adminports/databases/p5-BerkeleyDB broken, fix o [2001/02/27] pending/25418gnats-adminchecksum mismatches in xv port o [2001/02/28] pending/25452gnats-adminI need help. o [2001/03/01] pending/25486gnats-admin[PATCH] ports/editors/staroffice52 PR2544 o [2001/03/05] pending/25542gnats-admin/bin/sh: null char in quoted string 30 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2001/03/04] pending/25527gnats-admin`man ldconfig' does not reflect its behav 1 problem total. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 5 11: 2:36 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AEF2837B71D for ; Mon, 5 Mar 2001 11:00:29 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f25J0AC56003 for freebsd-bugs@freebsd.org; Mon, 5 Mar 2001 11:00:10 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 5 Mar 2001 11:00:10 -0800 (PST) Message-Id: <200103051900.f25J0AC56003@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list Subject: Current problem reports Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Current FreeBSD problem reports The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. Bugs can be in one of several states: o - open A problem report has been submitted, no sanity checking performed. a - analyzed The report has been examined by a team member and evaluated. f - feedback The problem has been solved, and the originator has been given a patch or a fix has been committed. The PR remains in this state pending a response from the originator. s - suspended The problem is not being worked on. This is a prime candidate for somebody who is looking for a project to do. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested. Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1997/03/08] kern/2923 panic: vm_fault: fault on nofault entry, o [1997/12/21] kern/5355 bp Fix for NULLFS problems o [1998/02/03] kern/5641 jasone running processes at the IDLE priority (i o [1998/02/10] kern/5703 CDROM Media Error triggers complete syste s [1998/05/13] kern/6630 julian [PATCH] Fix for Cyrix I8254 bug o [1998/07/12] kern/7264 gibbs Buslogic BT 950 scsi card not detected o [1998/08/15] kern/7622 Kernel panic with Fatal trap 18. o [1998/09/28] kern/8074 se CAM rescan operation fatal f [1998/10/06] i386/8179 Install failure with motherbord using SIS a [1998/11/08] ports/8609 nectar eklogin service (kerberos klogind) fails o [1998/11/24] bin/8829 bug in innetgr (was: Fix port: security/s o [1998/11/25] kern/8861 mdodd under heavy (multi interface) traffic ep0 f [1998/12/09] kern/9036 Boot 3.0-Release hangs with BT-445S after o [1999/02/19] kern/10166 panic during heavy sio i/o;no coproc; ves o [1999/02/20] kern/10172 [panics] Kernel (esp kern/sys_pipe.c) die s [1999/02/26] kern/10281 Crash of 3.1-STABLE system due to scsi er o [1999/03/07] misc/10473 Incorrect aout compat libraries in XF8633 o [1999/03/09] kern/10507 Process hangs in state VM pgd o [1999/03/09] misc/10509 Cvs can hang system when used with pserve o [1999/03/09] kern/10520 bp can't exec files under nullfs o [1999/03/11] kern/10542 page fault while in kernel mode, not kern o [1999/03/11] kern/10545 When a fork/exec stress test is run, the o [1999/03/20] i386/10690 Installation freezes after device selecti f [1999/03/20] kern/10701 ppbus printing problems o [1999/03/23] bin/10744 call to login() from aout/libutil.so.2.2 o [1999/03/27] kern/10828 3.1-STABLE freezes when writing to floppy o [1999/03/30] kern/10872 Panic in sorecieve() due to NULL mbuf poi f [1999/04/13] kern/11112 Amanda on FreeBSD can wipe the _next_ tap f [1999/04/17] kern/11196 kernel mode page fault o [1999/04/20] kern/11238 Synchronous PPP not functional in leased o [1999/04/20] kern/11241 Install fails after SCSI probe o [1999/04/27] kern/11351 system reboot for error with popper and d o [1999/05/12] kern/11680 server freezes, all processes stuck in "i o [1999/05/14] kern/11707 ncr isn't recognized in 3.1-19990512-STAB o [1999/05/24] kern/11869 wpaul Network hangging due to xl0: tx underrun o [1999/05/31] kern/11966 TCP copies send and receive socket buffer o [1999/06/02] kern/11988 recvmsg with a cmsghdr but no iovec is br f [1999/06/05] kern/12041 n_hibma Crashes on startup if Zip drive is switch o [1999/06/07] kern/12072 vm_fault happened in binary file transfer o [1999/06/09] kern/12106 error 6: panic: cannot mount root o [1999/06/10] kern/12127 persistent crash on idle SMP system o [1999/06/16] kern/12248 CRON in malloc(): warning: pointer to wr o [1999/06/18] i386/12286 Segmentation violation when invoking JNI s [1999/06/23] kern/12367 Writing files larger than floppy capacity o [1999/06/25] kern/12395 gibbs Buslogic SCSI cards (BT948) time out unde o [1999/06/30] kern/12466 Fast system hangs under high FS load o [1999/07/05] kern/12521 lmbench-1.1's context switching test hang o [1999/07/12] misc/12607 System crashes after boot, portmap endles o [1999/07/13] alpha/12623 alpha Certain valid numeric strings cause a SIG f [1999/07/20] misc/12720 gdbm (And possibly other libraries in /us o [1999/07/21] kern/12730 poll() causes indeterministic program han f [1999/07/21] misc/12743 Cannot boot the 3.2 floppies o [1999/08/02] misc/12923 Installation fails on HP Net Server o [1999/08/10] i386/13059 imp Install aborts with panic:aha0: Invalid C a [1999/08/20] kern/13270 dillon NFS hangs if written through self-mount o [1999/08/30] misc/13474 Maximum Number of IPs Permitted in the .. o [1999/09/12] kern/13709 panic: sched_sync: fsync failed o [1999/09/19] kern/13825 tx0 "holds" packets for long periods, eve o [1999/09/19] i386/13844 keyboard locks up when I page through a m o [1999/09/22] i386/13892 Kern.flp does not boot on Compaq Presario o [1999/09/24] i386/13933 nfs server panics in tulip_rx_intr() o [1999/09/24] kern/13940 Panic with dd on block/"cooked" devices u o [1999/09/24] kern/13944 ATAPI cd-rom not boot to install, nor de o [1999/09/27] misc/13995 Full duplex mode doesn't work right with o [1999/09/28] kern/14028 ATAPI cd-rom not boot to install and can' o [1999/09/28] i386/14030 imp aha0 probe fails 3.3.0-RELEASE install wi o [1999/10/05] kern/14141 3.3-RELEASE crashing often o [1999/10/06] kern/14162 sudden reboot problem ( maybe kernel pani o [1999/10/08] misc/14204 error 6: panic: cannot mout root(2) o [1999/10/10] i386/14256 System doesn't boot under FreeBSD 3.2 o [1999/10/14] kern/14322 mount respects permissions of underlying o [1999/10/15] kern/14347 kdump & truss won't compile because addit f [1999/10/24] i386/14492 FreeBSD won't install/work with an Asus S o [1999/10/25] kern/14510 kernel panic while pressing panic o [2000/02/09] i386/16620 mdodd 4.0-20000208-CURRENT fails to boot on ASU o [2000/02/14] kern/16708 wpaul 3Com 3c900-Combo Ehternet card make kerne o [2000/02/15] kern/16740 mckusick The kernel panics with "ffs_clusteralloc: o [2000/02/18] i386/16802 An user math program have the system on K o [2000/02/19] kern/16828 High Speed Pinging Over 8184 bytes Kills o [2000/02/21] kern/16890 Fatal trap 12: page fault while in kernel o [2000/02/26] kern/17011 Fatal trap 12 occur, dhclient with BOOTP o [2000/02/28] kern/17067 consistent "make -k buildworld" crash wit o [2000/03/03] kern/17152 alfred kernel panic:aio_write o [2000/03/07] kern/17248 FreeBSD 3.4 won't install on 486/100 IBM o [2000/03/10] kern/17305 advansys driver time-out around 30 minute o [2000/03/15] i386/17391 jhb FreeBSD boot loader does not recognize ke f [2000/03/15] i386/17398 imp Install failure of 4.0-Release via ftp an o [2000/03/18] i386/17485 Partition editor completely non-functiona o [2000/03/22] i386/17558 ncr1 controller is not working properly i o [2000/03/23] kern/17565 4.0-RELEASE install does not access IDE d o [2000/03/27] kern/17620 jhay Digi/570i sync driver (if_ar.c) causes sy o [2000/03/28] alpha/17642 alpha FreeBSD/alpha 4.0 RELEASE installation fa o [2000/04/03] kern/17776 RAID5 with crashed disk corrupts filesyst o [2000/04/04] bin/17791 Restore does not handle bad or missing ta o [2000/04/04] misc/17793 Keyboard not found o [2000/04/04] ports/17806 msmith make in ports/net/citrix_ica loops on scr o [2000/04/04] i386/17808 cannot swap /dev/.... o [2000/04/05] kern/17821 Wavelan driver not working in 4.0 o [2000/04/08] kern/17870 n_hibma 4.0-release consistently crashes a couple o [2000/04/09] kern/17881 4.0-RELEASE kern.flp boot crashes upon pr f [2000/04/13] kern/17971 cannot boot 4.0 floppies to install o [2000/04/18] kern/18074 Fatal trap 12: page fault while in kernel o [2000/04/20] i386/18123 4.0-RELEASE crashes during boot from CD-R o [2000/04/23] kern/18182 Remote serial gdb no longer works since m o [2000/04/24] bin/18198 owner of ccontrol file in spool dir is wr o [2000/04/24] misc/18201 Freeze at boot time when trying to upgrad o [2000/04/25] misc/18205 Install via CD-Romm hangs o [2000/04/25] i386/18207 3.2-RELEASE to 4.0-RELEASE FTP upgrade fa o [2000/04/27] kern/18265 Vendor specific word = FFFF o [2000/05/09] misc/18466 dillon install via nfs or ftp media silently tru o [2000/05/13] bin/18531 installation will not read files frm flop o [2000/05/17] kern/18623 out of swap s [2000/05/17] misc/18641 paul FreeBSD V4.0 crashes when using ifconfig o [2000/05/18] i386/18655 4.0-RELEASE Fails to install o [2000/05/18] kern/18665 Unpredictable crashes. Page fault while i o [2000/05/21] kern/18712 Kernel panic o [2000/05/22] kern/18754 grog Vinum: reviving RAID5 volume corrupts dat o [2000/05/23] misc/18786 SCSI hangs during FreeBSD 4.0 installatio s [2000/05/24] misc/18793 ken Hitachi DK319H needs quirk entry to work o [2000/05/25] alpha/18808 alpha Unalligned trap handler fails on quadword o [2000/05/29] kern/18874 32bit NFS servers export wrong negative v o [2000/05/29] bin/18887 Undefined symbol "_krb_err_txt" in telnet o [2000/06/04] kern/19000 Automatic Reebot, Fatal o [2000/06/05] kern/19022 pcm driver causes immediate panic on use o [2000/06/05] i386/19027 FTP install operation does not find XFree f [2000/06/09] kern/19162 asmodai 4.0-STABLE panics w/ softupdates and quot o [2000/06/10] misc/19175 mounting NFS can be done multiple times C o [2000/06/13] kern/19247 jasone uthread_sigaction.c does not do anything o [2000/06/14] misc/19257 Detection of connected ports on a Cyclom o [2000/06/15] kern/19297 Multi-processor kernel fails to boot on T o [2000/06/16] conf/19336 write failure when adding distribution fi o [2000/06/17] kern/19353 Cannot install 4.0 o [2000/06/23] kern/19480 System hang when use current (GENERIC) ke o [2000/06/28] kern/19572 alfred executing command cd ../cdrom after mount a [2000/06/30] ports/19613 nate java causing SIGSEGV 11* segmentation vi o [2000/07/01] conf/19629 imp /etc/rc.sysctl can't set all syctls f [2000/07/03] kern/19661 imp hang or reboot when pcmcia ethernet adapt o [2000/07/05] kern/19726 wpaul fatal trap 12 / page fault o [2000/07/09] kern/19794 FreeBSD 4.0-Stable crash o [2000/07/12] gnu/19882 obrien ld does not detect all undefined symbols! o [2000/07/20] ports/20077 jmz Latex 99.12 fails to make completely f [2000/07/25] kern/20175 Unknown Ethernet Card o [2000/07/26] misc/20205 FreeBSD 4 will not install on a Compaq Pr o [2000/07/27] kern/20227 jlemon 4.1-RC: UDP checksum problem f [2000/07/29] kern/20296 sheldonh matcd driver is a) not in GENERIC and b) o [2000/07/30] i386/20308 yokota vidcontrol VESA_800x600 causes a kernel p f [2000/07/31] kern/20310 groudier Symbios 53c875j drivers don't work o [2000/08/01] misc/20353 4.1 doesn't work on Compaq ML370 o [2000/08/03] kern/20375 APM doesn't work properly! Suspend/resum o [2000/08/05] kern/20429 yokota setting flags 0x1 in atkbd0 locks keyboar o [2000/08/08] kern/20484 jlemon FreeBSD 4.0 crashes repeatedly: trap 12: o [2000/08/08] bin/20489 davidn pw problems: -w random not working correc o [2000/08/08] i386/20495 yokota 4.1-STABLE and 4.1-RELEASE: keyboard does o [2000/08/15] ports/20624 emulationvmware vmmon module locks kernel o [2000/08/16] kern/20671 wpaul panicstr:page fault; panic messages:Fatal f [2000/08/22] kern/20776 rnordier Cannot boot the install floppy for versio o [2000/08/28] kern/20895 groudier sym driver doesn't work for SYM53C895A o [2000/09/02] i386/20994 /etc/fstab or kernel not correctly instal f [2000/09/02] kern/21009 /etc/security make the system hangup o [2000/09/04] misc/21025 msmith BTX loader 1.00 gets 1Gb of memory from B f [2000/09/04] i386/21042 mdodd Keyboard driver problems with PS/2 Model o [2000/09/06] kern/21079 ume IPSEC, kernel ARPs for tunnel endpoint in f [2000/09/08] i386/21117 When booting 4.0 install disk receive thi o [2000/09/12] kern/21220 msmith mlx0: I/O error - attempt to write beyond o [2000/09/13] bin/21253 dump/restore fail on any stream (tape/pip o [2000/09/14] misc/21269 Install does not see disk on Advansys car o [2000/09/14] kern/21272 wpaul USB interrupts seem to be turned off o [2000/09/14] kern/21278 gibbs ahc driver wedges on stressed SMP system o [2000/09/17] kern/21323 msmith Lock up at boot on Acer507DX with pci.c 1 o [2000/09/18] kern/21378 Accessing floppy under 4.1-STABLE (with D o [2000/09/19] kern/21397 Floppy drive doesn't work on Compaq ProLi o [2000/09/20] kern/21438 cg Sox recording in 16 bits creates a panic: o [2000/09/26] bin/21566 passwd does not work after updating from o [2000/09/27] kern/21592 insufficient PAP authentication in isp pr o [2000/10/01] i386/21677 Instalation crashed when shell started o [2000/10/02] i386/21717 DOS while opening /dev/audio o [2000/10/04] kern/21757 cp from nullfs-mounted filesystem aborts o [2000/10/04] i386/21758 X display font problem o [2000/10/05] i386/21772 No interrupts for 39160 PCI adapter in PR o [2000/10/06] misc/21782 4.1.1 and ADAPTEC 29160N SCSI controller o [2000/10/06] kern/21783 When msgrcv() blocks, it blocks ALL threa o [2000/10/06] kern/21790 marcel fstat64 does not exist in Linux emulation o [2000/10/06] i386/21802 after working fine for a few weeks, mach o [2000/10/08] kern/21845 phk crash, while tring to send udp via half-b o [2000/10/09] misc/21861 PostgreSQL on jailed enviroment fails o [2000/10/11] kern/21915 gorg Machine dies sig 12 in ahc driver (Freebs f [2000/10/12] kern/21929 lpd cause system crash f [2000/10/18] kern/22086 grog DMA errors during intensive disk activity o [2000/10/23] i386/22236 mouse cursor bug under text console mode o [2000/10/23] i386/22240 unstable UDMA on Iwill VD133PL v1.6 (Apol a [2000/10/23] kern/22245 Incorrect handling of end-of-media in ata o [2000/10/26] kern/22324 Kernel panic when second Compaq Smart Arr o [2000/10/28] kern/22376 Some problems in ar driver with FastTrak o [2000/10/31] ports/22444 ache The 'screen' port has reproducable segfau o [2000/11/01] kern/22494 wpaul Fatal trap 12: page fault while in kernel o [2000/11/02] kern/22557 fatal kernel trap 0x2(memory management) o [2000/11/02] kern/22561 xl networkhanging o [2000/11/03] bin/22595 telnetd tricked into using arbitrary peer o [2000/11/06] i386/22640 SCSI problem halts system after long peri o [2000/11/06] kern/22648 SCSI sup system freezes 4.2-BETA o [2000/11/10] i386/22760 adaptec bios cannot find disks after 4.1. o [2000/11/16] kern/22909 Vinum RAID5 degraded write not consistenc 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/21] bin/23013 Cannot buildworld in 4.2-RELEASE o [2000/11/23] kern/23061 cg kernel doesn't boot when compiled with pc o [2000/11/25] misc/23103 lacks many ISO C99 features (NAN o [2000/11/26] kern/23126 Can't boot kernel with ADAPTEC 1522 SCSI o [2000/11/27] i386/23145 pppoe-test-program panics the server o [2000/11/29] kern/23173 read hangs in linux emulation o [2000/12/03] ports/23257 ports Star office 5.2 has problem being install o [2000/12/04] kern/23258 panic: softdep_lock: locking against myse o [2000/12/04] kern/23281 Installation hangs on PowerEdge 2450 Per3 o [2000/12/08] kern/23379 panic: page fault o [2000/12/08] i386/23399 fbsd 4.2 locks up on my cardbus system if o [2000/12/09] kern/23411 SMP Kernel Freezes Machines on Dual Proce o [2000/12/11] kern/23480 panic: vm_pageout_flush page 0xc0a0a8fc i o [2000/12/12] bin/23501 pw destroy /etc/master.passwd when pw exe o [2000/12/12] kern/23505 processes die with SIGPROF, usually under o [2000/12/13] ports/23525 ports pgsql 7.0.3 port REMOVES data dir when tr a [2000/12/14] kern/23547 msmith only one logical device on Mylex AcceleRA o [2000/12/14] i386/23548 4.x causes Thinkpad 560X disk to spin up/ o [2000/12/17] misc/23595 rnordier boot problem after install o [2000/12/19] ports/23646 ports Staroffice 5.2 fails to install on FreeBS o [2000/12/19] i386/23681 keyboard is not working when the laptop i a [2000/12/21] kern/23740 kernel DoS tha could be executed by any u o [2000/12/22] kern/23752 panic with smp 4.2 kernel and dma lpt o [2000/12/26] kern/23859 panicked on sofree o [2000/12/27] kern/23887 panic: softdep_disk_write_complete: lock o [2000/12/30] misc/23958 Installation fails on an i486 DX2 machine o [2000/12/30] misc/23960 Installation fails on an i486 DX2 machine o [2001/01/01] kern/24018 4.2-STABLE, 4.0-RELEASE fatal trap 12: pa o [2001/01/02] kern/24019 Frequent panics in ep driver, 3c556 pcmci o [2001/01/09] kern/24197 4.2-R floppies fail: "timeout waiting for o [2001/01/12] ports/24276 asami XFree86-4 port doesn't put patch-1 in the o [2001/01/14] kern/24334 random kernel panic o [2001/01/16] kern/24378 ahc broken in STABLE o [2001/01/16] ports/24395 ports Date object is not deserialized correct o [2001/01/17] kern/24418 read/write in thread library (-lc_r) does o [2001/01/18] kern/24433 NFSv3 service hangs when writing large am o [2001/01/19] i386/24469 system hangs on scsi disk access error o [2001/01/23] ports/24568 ports Can't get back to X after switching to co o [2001/01/25] i386/24653 can't get working install of X under 4.2 o [2001/01/28] ports/24705 ports Bug concerning Xwrapper/XFree86-4.0.2 f [2001/01/30] kern/24740 filesystem corruption CFP1080 CAM SCSI ca o [2001/01/30] kern/24741 Reboot when using vlans on a xl card with o [2001/02/02] kern/24811 Networking in FreeBSD 4.2-RELEASE doesn't o [2001/02/03] kern/24829 ufs incompatibility (4.1.1-STABLE -> 4.2- o [2001/02/03] kern/24831 panic in net code in many places o [2001/02/05] i386/24871 Pagefaults occur at random on a 4.2-STABL o [2001/02/06] i386/24920 moused weird o [2001/02/11] kern/25006 cannot ignore arp (ifconfig -arp doesn't o [2001/02/13] kern/25062 uid0 processes get killed after getswapsp o [2001/02/14] kern/25104 file corruption with Adaptec 29160 SCSI a o [2001/02/15] i386/25123 Heavy NFS traffic over virtual interface o [2001/02/15] kern/25125 fsck kernel crash f [2001/02/15] kern/25130 dcs kernel crash with kldload/kldunload md.ko f [2001/02/16] ports/25159 dirk too much, too soon o [2001/02/18] kern/25198 kernel crash on fsck o [2001/02/19] kern/25215 RELENG_4 kernel crashes starting SCSI dis o [2001/02/19] ports/25224 ports pth-1.3.7 hides /usr/include/pthread.h f [2001/02/20] misc/25230 gibbs ... SCB Memory Parity Error at seqaddr = o [2001/02/20] kern/25235 OS Hungs up when using with a Battery of o [2001/02/21] misc/25249 cc compiler not work o [2001/02/23] i386/25328 4.x stable kernel crash: page fault o [2001/02/25] ports/25351 ports x11/colorsel fails to build o [2001/02/25] kern/25358 Server periodically crashes o [2001/02/27] misc/25407 Error while booting 4.2 : ahc0 Signaled A o [2001/02/27] kern/25439 annoying console mouse cursor flicker o [2001/02/28] i386/25455 Cannot boot with 3c575BT cardbus lan pcmc o [2001/03/04] kern/25519 -STABLE crash from ordinary user (newpcm o [2001/03/04] kern/25536 fix annoying console mouse cursor flicker 299 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1995/10/18] bin/786 wpaul Problem with NIS and large group maps f [1996/08/22] kern/1533 dillon Machine can be panicked by a userland pro o [1996/09/29] kern/1689 TCP extensions throttles distant connecti s [1996/10/26] bin/1892 n_hibma install(1) removes target file s [1996/11/08] gnu/1981 ypserv handles null key incorrectly a [1996/12/30] kern/2325 quota.user enlarged, no boot on 2.2-BETA f [1997/01/09] bin/2430 grog mountd stops on loading if subnet mask is o [1997/02/07] kern/2690 asami When Using ccd in a mirror mode, file cre o [1997/02/16] gnu/2749 peter cvs export using remote cvs fails - CVS/T o [1997/02/19] kern/2768 ktrace(1) -i dumps corrupted trace data o [1997/02/20] bin/2785 wpaul callbootd uses an unitialized variable o [1997/02/22] kern/2800 DDS large data writing probrem f [1997/03/01] kern/2840 mlock+minherit+fork+munlock causes panics o [1997/03/03] kern/2858 peter FreeBSD NFS client can't mount filesystem o [1997/04/01] bin/3170 vi freaks and dump core if user doesn't e o [1997/04/05] kern/3201 peter de0 not re-enabled after hub down o [1997/04/06] kern/3219 sppp or arnet gets looped after connectio o [1997/04/25] kern/3381 peter 2.2.x kernel panic on traversing and remo o [1997/04/25] kern/3384 telldir-seekdir can cause livelock o [1997/05/01] kern/3463 netstat -I packet count increase on sl0 w f [1997/05/04] i386/3502 mdodd Merge of if_ix* and if_ie* broke EE/16 su o [1997/05/06] bin/3524 imp rlogin doesn't read $HOSTALIASES for non- o [1997/05/12] kern/3579 peter de driver doesn't support newer SMC 9332 o [1997/05/12] kern/3581 intermittent trap 12 in lockstatus() s [1997/05/25] kern/3685 [PATCH] panic: fdesc attr o [1997/05/30] kern/3726 peter process hangs in 2.2-stable when working f [1997/06/03] kern/3771 dillon NFS hangs when writing to local FS re-mou o [1997/06/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 o [1997/07/17] kern/4115 peter SunOS NFS file has wrong owner if creator o [1997/07/26] bin/4176 restore gets confused when run over pipe o [1997/07/28] kern/4186 peter nfsiod, panic, page fault in kernel mode o [1997/07/30] kern/4194 peter kernel pci driver for Digital 21041 Ether o [1997/08/06] kern/4240 kernel fails to recognise 2nd serial port o [1997/08/10] kern/4265 Panic in dsinit when multiple FreeBSD sli o [1997/08/12] kern/4284 paul le0 goes OACTIVE after some time o [1997/08/13] kern/4295 SL/IP difficulties between 2.2.1 & 2.2.2 o [1997/08/16] kern/4312 arp table gets messed up, syslog "gateway o [1997/08/17] kern/4327 peter NFS over TCP reconnect problem s [1997/08/19] kern/4338 New device driver (Cyclades Cyclom-Z) o [1997/08/22] bin/4357 wosch bug in adduser script causes duplicate UI o [1997/09/02] kern/4454 X drops characters/locks up keyboard when o [1997/09/03] bin/4460 lpd hangs exiting (IE in ps table) o [1997/09/11] kern/4513 System lockup appears to be VM related. o [1997/09/14] i386/4533 Server with Cyclom-Y PCI card rebooted at o [1997/09/21] kern/4600 peter nfs lookups might give incorrect result o [1997/09/30] kern/4663 checkalias panic o [1997/10/01] kern/4666 dfr umount -f doesn't seem to work o [1997/10/01] bin/4672 rdist does not do hard links right when t o [1997/10/03] bin/4683 imp restore doesn't correctly handle "sparse" o [1997/10/16] kern/4774 trying to use IBCS2 shared libraries cras o [1997/10/16] kern/4782 dillon Under certain conditions, several krsh's o [1997/10/31] kern/4909 de ethernet driver is crazy on 100base o [1997/11/03] kern/4927 kernel does not check any quota and permi o [1997/11/05] bin/4949 rpc.rquotad stat()s fs with quota file in o [1997/11/15] conf/5062 login.access not evaluated correctly o [1997/11/18] kern/5085 System crash during mount command for CD o [1997/11/23] i386/5128 Adaptec 2940U Timeouts with QUANTUM disk o [1997/12/06] kern/5244 F00F workaround dosn't always work on SMP o [1997/12/14] bin/5297 will make incompatibility with System V style o [1997/12/19] kern/5347 peter DEC (de0) ethernet card has no buffers af o [1997/12/30] kern/5396 fdesc fs crashes system o [1997/12/31] i386/5401 peter de0 selects wrong media when reconnected f [1998/01/08] kern/5456 After writing more than 100MB to SCSI Exa o [1998/01/16] kern/5513 luigi new PnP code is BAD (soundcards) o [1998/01/27] kern/5587 session id gets dropped o [1998/01/29] kern/5598 Support for magneto-optic SCSI devices wi o [1998/01/31] kern/5611 bind does not check sockaddr->sin_family o [1998/02/01] kern/5618 kernel memory leak in routetbl. o [1998/02/04] kern/5643 NCR 810/815 do not handle rewind correctl o [1998/02/19] kern/5794 Kernel Panic o [1998/02/28] kern/5877 sb_cc counts control data as well as data f [1998/03/11] kern/5975 can't boot freebsd: fatal trap12: page fa o [1998/03/16] kern/6035 The system "sort-of" hangs when playing b o [1998/03/19] kern/6066 paul lnc driver does not work correctly with A o [1998/03/28] bin/6162 kinit does not default to the current use f [1998/04/03] kern/6203 kernel panics with "blkfree: freeing free f [1998/04/03] conf/6205 NFS/NIS freak out o [1998/04/04] kern/6212 dillon Two bugs with MFS filesystems fixed, one o [1998/04/07] kern/6238 luigi Sound-driver patch for MAD16 (OPTi 928,92 o [1998/04/14] kern/6300 System locks up in SMP mode when accessin o [1998/04/19] kern/6351 DPT RAID controller stops working under h o [1998/04/20] i386/6368 Stallion Easyio 8 port not detected using o [1998/05/03] kern/6506 system will not soft reboot a [1998/05/06] bin/6536 pppd doesn't restore drainwait for tty o [1998/05/12] kern/6603 ncr driver hangs under high load f [1998/05/17] kern/6670 PANIC on boot with FreeBSD 3.0 (same comp o [1998/05/25] kern/6751 audio cd play suddenly stops. o [1998/05/25] kern/6755 peter Tulip (if_de) driver buggy in -current o [1998/05/27] misc/6773 kris [PATCH] tempnam.c security problems s [1998/06/02] bin/6830 will make(1) exhibits confusing and non-standa o [1998/06/05] kern/6865 OS crashes when exiting shell with suspen o [1998/06/10] kern/6908 kernel crash from user land o [1998/06/19] bin/6994 The netstat(1) -s generates wrong output s [1998/06/23] bin/7033 Same process notified multiple times o [1998/06/24] kern/7038 Kernel panic caused by DPT driver (Got a s [1998/06/24] bin/7043 the fstat command doesn't know ISOFS, MSD o [1998/06/24] i386/7057 mdodd 3Com 3C509 locks up, or has >1000ms rtt u s [1998/07/05] kern/7169 cannot use accton on a append-only file s [1998/07/06] misc/7190 phk "Invalid partition table" after new insta s [1998/07/10] kern/7237 NCR SCSI driver ch0 troubles o [1998/07/11] kern/7245 processes die with signal 6, if machine o o [1998/07/12] i386/7266 yokota PSM detection failure with Linksys consol s [1998/07/14] kern/7281 [STABLE] Multicast kludge does not work c o [1998/07/26] kern/7405 dillon in pmap_changebit, pmap_pte_quick() retur s [1998/07/27] kern/7410 [PATCH] driver for arlan-655 s [1998/07/27] i386/7420 [PATCH] Maximum socket buffer size (SB_MA o [1998/07/28] kern/7424 dillon Machine crashes do not occur very often, s [1998/08/10] kern/7556 sl_compress_init() will fail if called an f [1998/08/10] kern/7557 dillon -current machine running Diablo, lockup, s [1998/08/10] kern/7561 CDROM (wcd) is prone to lock up system/pr o [1998/08/18] kern/7658 (1) rlogin from some host to the FreeBSD o [1998/08/18] kern/7664 scsiformat reports '0' for all parameters o [1998/08/27] bin/7756 disklabel misbehaving on seriously sick d o [1998/08/27] kern/7764 ps(1) hangs in pfslck/lockrd - All subseq o [1998/08/27] kern/7766 de driver still buggy - random ifc death o [1998/08/27] kern/7767 de driver still buggy - power cycle of de o [1998/09/09] bin/7872 dwmalone [PATCH] mountd(8) can apply flags to wron o [1998/09/09] bin/7876 gethostbyname flags temporary failure as o [1998/09/10] kern/7880 mount_cd9660 incorrect on multitrack CD-R o [1998/09/11] kern/7902 if_de doesn't properly recognize a "Magic o [1998/09/12] conf/7908 wrong perms on objformat after upgrade o [1998/09/16] gnu/7951 The gnu readline library core dumps when o [1998/09/17] bin/7968 If /usr/libexec/yppwupdate DNE, rpc.yppas o [1998/09/28] i386/8081 Problem with MULTIPORT driver and Boca BB o [1998/09/30] gnu/8099 obrien [patch] some bugs in cpio o [1998/10/03] kern/8137 [patch] quotaoff followed by quotaon can f [1998/10/05] kern/8158 sio driver breaks in 2.2.7R in kernels wi o [1998/10/06] kern/8180 open("..",O_RDONLY|O_NONBLOCK) fails o [1998/10/08] kern/8206 [patch] Unconected UDP socket declined, i o [1998/10/08] kern/8215 Creating 2 root partitions in sysinstall o [1998/10/13] kern/8312 Under heavy load, the system panics with o [1998/10/14] bin/8322 Mail doesn't respect REPLYTO in .mailrc o [1998/10/20] i386/8385 2.2.7 hangs while detecting type of COM1' o [1998/10/21] i386/8397 Code using popen compiled on BSDI BSD/OS o [1998/10/22] i386/8414 ibcs2 emulation sets serial baud-rate inc o [1998/10/22] kern/8415 SMP kernel freezes while downloading larg o [1998/10/31] bin/8518 freopen() in append mode followed by ftel o [1998/11/01] kern/8534 insufficient support routines for poll(2) o [1998/11/03] kern/8561 /kernel inode change time changes every r f [1998/11/05] kern/8580 dillon Hanging NFS pagein in nfs_bio.c (2.2.7, w o [1998/11/08] kern/8607 maxprocsperuid setting causes sybase/linu o [1998/11/08] ports/8622 markm exmh2 has problems with some date formats o [1998/11/10] bin/8646 peter Implement rlogind -a option o [1998/11/11] kern/8655 Umount trouble of SCSI removable device f [1998/11/11] kern/8657 dillon nfs client hung in nfs_bwrite/vfs_busy_pa o [1998/11/14] bin/8685 sending a SYST by ftp client closes conne o [1998/11/18] bin/8745 wosch adduser permit adding `root' and mail ali o [1998/11/20] kern/8773 Intel AN430TX motherboard ps/2 port not r f [1998/11/20] kern/8778 gibbs Buslogic BT948 in 2 boxes upgraded from S f [1998/11/25] bin/8865 dwmalone syslogd hangs with serial console o [1998/11/29] conf/8903 dillon /etc/rc can do NFS mounts before the netw o [1998/12/02] kern/8940 system clock runs extremely slowly (and s f [1998/12/06] kern/8981 this also fixes X crashes and sio silo ov o [1998/12/16] kern/9095 swap detect error o [1998/12/20] i386/9140 NIS "Magic cookie" in master.passwd slays o [1998/12/21] kern/9163 peter [patch] squid does not join a multicast g o [1998/12/31] bin/9252 [patch] login program "login" don't set K o [1999/01/06] kern/9355 can't select() for writes on a bpf o [1999/01/07] bin/9379 pppd does not go through all interfaces l o [1999/01/08] kern/9391 if_addmulti doesn't check for retifma == o [1999/01/09] kern/9407 "make kernel" yields buggy kernel in cera o [1999/01/09] kern/9408 parameter reversed to a pci_cfgwrite in p o [1999/01/09] kern/9411 System crash on swapping to hole-files o [1999/01/11] bin/9440 amd can't mount filesystems with type:=uf o [1999/01/13] kern/9478 support for running a script from kldload o [1999/01/14] bin/9495 su doesn't look at login.cnf all the time o [1999/01/15] bin/9516 ftpd doesn't honor invalid shelll in logi o [1999/01/17] kern/9548 UNION fs corrupts data and has undefined o [1999/01/21] kern/9599 SMP hang after reseting CPU 1 f [1999/01/25] kern/9673 ISO CD-ROM Problem f [1999/01/28] i386/9759 Tar process hangs on buggy tapes o [1999/02/01] kern/9862 system crashes writing to msdos jaz disk o [1999/02/02] kern/9883 MGET()(and variants) return NULL with M_W s [1999/02/06] kern/9927 gibbs the ahc driver doesn't correctly grok swi o [1999/02/06] i386/9933 No error reported writing to write-protec o [1999/02/06] kern/9935 vmstat reprots bad AVM values o [1999/02/08] kern/9961 When loading if_ppp_mod.o system crashes, o [1999/02/08] i386/9962 Install Panics in with integer divide fau o [1999/02/08] kern/9974 Large amounts of kernel clock drift with f [1999/02/09] bin/9982 ume inet_addr(3) should be return 32bit uint. o [1999/02/11] kern/10021 MOUNTING A EXT2FS A AFTER MOUNTING AN MSD o [1999/02/11] bin/10031 ypxfr does not work with Solaris master s o [1999/02/13] kern/10066 problem with a X-Window and syscons drive o [1999/02/15] kern/10107 dillon interlock situation with exec_map and a p f [1999/02/25] bin/10264 davidn passwd(1) tryis NIS even with `-l' switch o [1999/02/25] kern/10265 file locking does not work with kernel pt o [1999/02/26] kern/10280 Display Adapters (PCI) probed wrong way - o [1999/02/28] misc/10302 jkh installer o [1999/02/28] bin/10312 ken pciconf -l generates output incompatible o [1999/02/28] kern/10316 le0 goes OACTIVE after some time o [1999/03/02] bin/10353 ypserv gets segmentation violation o [1999/03/03] kern/10381 hlfsd/NFS failure -- directory cached bet o [1999/03/05] kern/10411 top, vmstat, iostat show 0% cpu idle & us o [1999/03/07] kern/10466 resume causes crashes if BIOS extmem != R o [1999/03/08] kern/10492 broadcast IP address can be set on interf o [1999/03/09] bin/10510 Remote cvs botches commits on occassion o [1999/03/11] bin/10553 syslogd suddenly stopped logging o [1999/03/14] kern/10581 Kernel panic while using find on an ext2 o [1999/03/14] kern/10594 EXT2FS mount problems o [1999/03/14] bin/10596 I can't find out where someone is logged o [1999/03/15] misc/10599 [PATCH included]malloc/free breaks in cer o [1999/03/15] kern/10603 dcs Random system panics o [1999/03/15] kern/10607 Fast forwarding breaks when arp cache exp f [1999/03/16] i386/10626 RTC BIOS diagnostic error on install o [1999/03/16] bin/10633 obrien [patch] tcpslice timezone problem and upd o [1999/03/17] i386/10646 Bridge code missing from ed0 driver in 3. o [1999/03/19] kern/10671 setlogin(2) return EINVAL for length of n o [1999/03/20] kern/10698 de driver doesn't work with some tulip bo o [1999/03/24] bin/10774 sio0 doesn't work well, i belive the prob o [1999/03/24] kern/10778 "ipforward_rt" is not cleared when routin o [1999/03/27] bin/10821 des getpwent() fails on NIS clients after dro o [1999/03/30] kern/10870 eivind Kernel panic when writing to write-protec o [1999/03/30] bin/10880 Profiler libraries missing o [1999/04/01] bin/10912 /bin/sh: Fix to prevent infinite loops on o [1999/04/03] i386/10935 PCI cards detected twice o [1999/04/05] i386/10969 kernel fails to compile with ccs0 f [1999/04/06] i386/10983 lnc NIC driver doesn't work o [1999/04/06] bin/10991 lpd hangs system if printer not ready on o [1999/04/07] kern/11004 Quota Issues on SMP o [1999/04/07] bin/11005 `umount -f' does not work if the NFS-serv o [1999/04/08] misc/11024 getpwnam(3) uses incorrect #define to lim o [1999/04/11] kern/11080 fatal trap 18 while trying to mount inval o [1999/04/11] kern/11084 3.1-R kernel trap 12 with interrupts o [1999/04/13] bin/11119 NFS quotas fail to report if alternate fi o [1999/04/18] kern/11208 Complete system hang/freeze. No PANIC me o [1999/04/21] kern/11255 Fore System ATM Card not working o [1999/04/21] kern/11266 frequent crashes with "Page fault, fatal o [1999/04/26] conf/11336 Broken data sent to printer through devic o [1999/04/28] kern/11366 Filesystem can cause hang/crash in certai o [1999/04/28] conf/11376 NFS mount may be happening too soon in /e o [1999/04/29] bin/11382 generated code using rpcgen with -b optio o [1999/04/29] kern/11385 PCNet/PCI Ethernet adapter works in 3.1-R o [1999/04/29] i386/11395 ghostscript5.50 does not print properly, o [1999/04/30] kern/11405 pwd_mkdb with no tmp space leads to kerne o [1999/05/02] i386/11454 mkdir() and chdir() doesn't check argumen o [1999/05/03] kern/11462 CS network interface driver (for CS89XX b o [1999/05/04] kern/11490 yokota VESA+VM86+Splash == unstable system o [1999/05/05] kern/11507 msmith CS89XX (i386/isa/if_cs.c) fails to proper o [1999/05/05] kern/11513 cannot mount CD-ROM: Device not configure o [1999/05/05] misc/11525 dwmalone [PATCH] Networking patches to increase # o [1999/05/07] gnu/11562 tar verification doesn't work o [1999/05/07] kern/11563 pci_unmap_int doesn't do anything o [1999/05/12] i386/11664 lnc1 NIC fail to work o [1999/05/12] bin/11666 ypserv fails to reply host name resolutio f [1999/05/12] kern/11679 httpd and perl5 processes stuck in "nocha o [1999/05/13] kern/11686 APM: Always "Resume failure" from suspend o [1999/05/13] kern/11692 3.1-stable deadlock o [1999/05/13] kern/11697 tegge Disk failure hangs system o [1999/05/18] i386/11773 yokota mouse works at setup time. Under X it go o [1999/05/19] misc/11778 mpz_get_str() in libgmp leads up to cored o [1999/05/20] i386/11801 Remounting CD on IDE CDROM after eject fa o [1999/05/21] kern/11821 /dev/fd0a hangs on large files, including o [1999/05/23] kern/11867 Sound driver loses interrupts, no sound o [1999/05/28] kern/11911 3.1-R : writing file larger than floppy s o [1999/05/28] kern/11915 access system call says file is readable o [1999/05/28] kern/11922 missing reentrant interfaces for getpwnam o [1999/05/29] kern/11928 kldload loads kernel modules even if ther o [1999/05/29] kern/11937 vm problems after havy memory usage o [1999/05/31] kern/11969 VM_fault with mmap'd CDROM data. f [1999/06/02] i386/11991 fdisk does not assign slices to unused pa o [1999/06/02] bin/11992 /usr/src/sbin/mountd/mountd.c has '#ifdef o [1999/06/04] kern/12022 phk System clock timewarps o [1999/06/06] bin/12054 explicit -ltermcap after -lncurses causes f [1999/06/06] kern/12062 sa tape driver with Cipher 60M SCSI QIC t o [1999/06/08] bin/12091 syslog packets from a remote machine are o [1999/06/09] kern/12104 Certain cdcontrol commands don't work pro o [1999/06/10] bin/12120 named crashes. o [1999/06/12] gnu/12175 obrien gdb crashes with pids > 32736 o [1999/06/13] bin/12191 wcol is trying to allocate a shared memor o [1999/06/16] bin/12242 segmentation fault running /usr/bin/fmt o [1999/06/16] kern/12247 userlevel program let kernel hang f [1999/06/17] kern/12262 pcm sound driver with SB16pnp does not ap o [1999/06/18] bin/12272 The ctype locales print an error message o [1999/06/18] kern/12274 cd mount problem o [1999/06/20] kern/12305 clock() ticks backwards o [1999/06/21] kern/12320 error 6: panic: cannot mount root (2) o [1999/06/22] bin/12349 des 3.2-R inetd doesn't re-read ALL configura s [1999/06/24] kern/12381 bde Bad scheduling in FreeBSD o [1999/06/25] conf/12387 CDROM boot failure on Thinpad 770X, 380ED o [1999/06/25] kern/12394 3.2-RELEASE, rl0 ethernet interface freez o [1999/06/30] kern/12464 bad reference in struct vm_zone o [1999/07/01] kern/12484 [PATCH] bpf_filter() broken f [1999/07/06] i386/12529 Linksys ether16 NE2000 compat. won't conf o [1999/07/06] bin/12538 getpwuid() NIS UID override fails o [1999/07/07] kern/12551 mks ASIC output is shifted following a short o [1999/07/13] kern/12632 Panic (trap 18) with Symbios SCSI control o [1999/07/14] misc/12640 Can use 2nd CD-ROM for fixit mode. o [1999/07/15] kern/12646 IGMP reports not sent if no multicast rou o [1999/07/18] kern/12703 tx0 truncates skip packets o [1999/07/20] bin/12727 billf Game patches from NetBSD o [1999/07/21] conf/12745 diffs to delay start of amd rwhod timed o o [1999/07/22] kern/12758 Adjusting the idle priority of a process o [1999/07/23] i386/12771 lpt hangs and never works again, even aft o [1999/07/24] kern/12800 buffer leak in cluster_wbuild o [1999/07/27] kern/12838 PC-Card ctlr(0) Vadem 365 support seems b o [1999/07/28] misc/12856 installworld over nfs broken (3.2S) o [1999/07/29] kern/12869 panic: softdep_flushfiles: looping o [1999/07/30] kern/12884 Hot to panic FreeBSD-3.2-Release o [1999/08/02] ports/12930 asami libtool create defuct makefiles if PREFIX o [1999/08/03] misc/12938 gethostbyaddr(209.201.116.19) - Bus error o [1999/08/04] kern/12979 Response time continually slows on idle m o [1999/08/05] kern/12991 system queue is cleared when a port or pi f [1999/08/06] kern/12996 ifconf in sys/net/if.c returns larger buf o [1999/08/07] conf/13013 Selecting CDROM as install media doesn't o [1999/08/08] misc/13027 sysinstall has no /dev entry for wfd0s4 ( f [1999/08/10] i386/13058 Installation hangs after commit o [1999/08/14] kern/13141 se Multiple LUN support in NCR driver is bro o [1999/08/15] kern/13150 panic: ufs_dirbad: bad dir o [1999/08/15] gnu/13172 Bug in workaround of russian locale & sor o [1999/08/16] kern/13180 panic: ffs_alloccg: map corrupted o [1999/08/17] kern/13198 panic: vm_fault: fault on nofault entry o [1999/08/17] gnu/13200 The assembler chokes on very long operand o [1999/08/18] kern/13234 .../netinet/ip_input.c should include opt o [1999/08/24] bin/13350 make clean in bsd.obj.mk no longer proper o [1999/08/25] misc/13378 Tecra 8000 hangs in UserConfig, cannot co o [1999/08/25] kern/13382 Only 1 parallel port supported if pps ena o [1999/08/26] kern/13405 syslogd get system hang o [1999/08/27] gnu/13427 obrien gdb reports wrong info o [1999/08/28] gnu/13438 objc forward core dump using system cc f [1999/08/29] i386/13452 changing to root device wd0s1a \n error 2 o [1999/08/29] bin/13463 /bin/sh does not handle interrupts correc o [1999/08/30] misc/13470 Old problem re-introduced: TCP sucket buf o [1999/09/01] kern/13517 hang system o [1999/09/05] kern/13587 Voxware MIXER_READ ioctl corrupts memory o [1999/09/06] kern/13593 Problems with FIFO and select o [1999/09/07] kern/13630 system halts after npx0 detected on 3.2 i o [1999/09/07] kern/13632 Floppy hangs system o [1999/09/08] kern/13646 Kernel Trap error when booting 3.3-RC ker f [1999/09/09] i386/13655 sysmouse, signal 10 and XF86_S3 o [1999/09/10] bin/13679 ncurses-based programs eat 100% CPU after o [1999/09/10] bin/13691 fenner tcpslice cannot extract over 2GB part of o [1999/09/11] bin/13703 MCNP compilation problem o [1999/09/12] bin/13711 root fs not properly unmounted after shut o [1999/09/13] gnu/13729 strip(1) exits with an error on script fi o [1999/09/13] kern/13740 wrong IP statistics o [1999/09/15] kern/13757 wpaul tl0: adapter check: 180005 mesages keep c f [1999/09/15] i386/13765 memory problem: compilation of emacs dies o [1999/09/15] bin/13768 sh MAKEDEV cdN creates all cd(N-1)-device o [1999/09/16] conf/13775 multi-user boot may hang in NIS environme o [1999/09/17] i386/13787 lnc driver isn't really the lnc driver o [1999/09/18] i386/13811 ide cdrom stops recognizing audio cdroms f [1999/09/20] i386/13857 Problem with switching between processes o [1999/09/23] misc/13920 pppd acts differently on 3.3-RELEASE ("mi o [1999/09/24] kern/13941 ncr0: SCSI phase error on GENERIC kernel o [1999/09/26] misc/13978 peter a write to last column bug appears since o [1999/09/26] bin/13980 Parameter expansion pattern removal bug i o [1999/09/27] kern/13997 phk RLIMIT_NPROC works unadequately for jails o [1999/09/28] kern/14026 Many network connections get left in the o [1999/09/28] kern/14033 Data acq process gets stuck in vmopar o [1999/09/30] kern/14060 3.3-STABLE on primary mail server panics o [1999/09/30] bin/14069 Buffer overflow in mail(1) o [1999/09/30] kern/14072 Rebooting in FreeBSD 3.3 wipes out known o [1999/10/02] kern/14096 parallel port -- ppi -- driver broken aft o [1999/10/03] bin/14102 make world -DWANT_AOUT fails in lib/compa o [1999/10/04] misc/14121 resurfaced bug in rmt preventing remote d o [1999/10/04] kern/14123 lnc driver is not working o [1999/10/04] i386/14135 lpt1 nolonger exists after 3.2-RELEASE o [1999/10/05] kern/14144 bad conversions in kern_fork() o [1999/10/10] misc/14254 [Fwd: clock(3) runs backwards! (fwd)] (fw o [1999/10/10] kern/14257 error 6: panic: cannot mount root (2) - d o [1999/10/12] i386/14282 Using FreeBSD 3.* ThinkPad 600E doesn't r o [1999/10/12] kern/14285 dillon NFS client appears to lose data f [1999/10/14] i386/14324 wst OR atapi drivers won't work o [1999/10/14] misc/14326 kerberos4 pam-related breakage in current o [1999/10/14] misc/14327 names used in netdb.h may conflict with n o [1999/10/14] i386/14334 imp AHA-1542A not supported by FreeBSD 3.x (" o [1999/10/15] kern/14354 grog vinum cannot compile for alpha o [1999/10/20] bin/14444 enigma command can't decrypt files encryp o [1999/10/21] i386/14446 Doesn't boot on Mobile Celeron o [1999/10/25] bin/14524 markm PERL 5.005_03 Config.PM on 3.2-STABLE say o [1999/10/25] kern/14536 kernel panic on 64KB block size ufs files o [1999/10/26] kern/14546 SB128PCI work incorrect play wav-files un o [1999/10/26] kern/14549 mdodd 3C509 broken in 3.3 o [1999/10/27] kern/14566 yokota Non-kernel programs have little/no contro o [1999/11/03] i386/14689 waitpid doesn't harvest child process whe o [1999/11/04] kern/14712 root has access to NFS mounted directorie o [1999/11/05] kern/14722 TCP connections hangs in FIN_WAIT_2 for > o [1999/11/05] bin/14729 murray when sysinstall is running as init it sho o [1999/11/07] bin/14782 ypbind can not bind to Solaris NIS master o [1999/11/10] kern/14812 de0 driver malfunctions in full-duplex o [1999/11/11] ports/14826 ports security/fwtk smapd calls sendmail with w o [1999/11/12] kern/14848 Frame Relay support, corrected a [1999/11/12] misc/14856 billf ftp stalls on FreeBSD 3.3 (CDROM) tested o [1999/11/14] kern/14890 ffs_valloc: dup alloc o [1999/11/15] misc/14895 portmap bug (when run with -v flag) o [1999/11/15] kern/14900 3.3-RELEASE panic in pmap_pte_quick() o [1999/11/16] kern/14917 grog DMA doesn't works with ALI ALADDIN M1543/ o [1999/11/16] bin/14920 install(1) hangs when intalling files sam o [1999/11/17] i386/14946 mjacob rmt - remote magtape protocol o [1999/11/17] kern/14962 PnP doesn't detect AWE64 when PnP modem i o [1999/11/17] misc/14964 Network Interface Configuration Problem a o [1999/11/19] i386/15003 mdodd 3C574 (ep0) reads bogus ethernet address o [1999/11/21] i386/15018 Printingproblem o [1999/11/23] bin/15070 vfprintf/cvt/__dtoa race condition in thr o [1999/11/24] i386/15074 Two different panics when running Linux b o [1999/11/24] kern/15075 Intel Etherexpress Pro timeouts when >1 c o [1999/11/24] kern/15086 Borked sscape drivers :) o [1999/11/25] kern/15087 3.3-STABLE panic while starting daemons ( o [1999/11/25] kern/15089 mmap of files from 2K-block device failed f [1999/11/26] ports/15107 green Patch for FreeBSD s/key support in OpenSS o [1999/11/26] misc/15109 problem printing graphic pages o [1999/11/27] ports/15123 rse www/apache13-modssl has PREFIX problems f o [1999/11/28] conf/15150 phantom Taking encoding scheme latin1 into accoun o [1999/11/30] misc/15190 crashing while in a multiplatform environ o [1999/12/01] kern/15204 systems panics when ktrace-ing o [1999/12/02] kern/15235 dillon Race conditions in pipe_write causes kern o [1999/12/05] misc/15269 error server timeout downloading small fi o [1999/12/06] i386/15327 Unable to use ISA sound card with AD1816A o [1999/12/08] i386/15364 Flash Player 4 for Linux has no sound wit o [1999/12/11] kern/15420 3.3-RELEASE Kernel freeze o [1999/12/12] bin/15450 The name of the tagfile is left in the pa o [1999/12/13] kern/15475 pppd(8) sets the Source Address field of o [1999/12/14] kern/15478 incorrect utmp/wtmp records update upon c o [1999/12/14] kern/15486 Attempt to write to a "write-prot" floppy o [1999/12/15] kern/15508 disk usage after "strip" is wrong o [1999/12/17] kern/15542 de suddenly stops working o [1999/12/17] ports/15543 hosokawa Samba + DHCP = UNKNOWN HOST NAME o [1999/12/17] i386/15548 Intel EtherExpress Pro/10+: Only 1024 byt o [1999/12/18] kern/15554 malloc fails in OMAGIC programs o [1999/12/20] bin/15581 ftp(1) file completion does not work if s o [1999/12/21] misc/15610 3.4-RELEASE installation hang on aic0 SCS o [1999/12/21] kern/15611 EIDE Large Disk Support, Newfs problem, F f [1999/12/22] i386/15631 3.4 won't install with IBM 37.5 gb disks o [1999/12/23] misc/15662 markm [PATCH] perl5 Sys::Hostname fails if no P o [1999/12/26] kern/15707 dillon bad trap in mprotect o [1999/12/29] conf/15766 My desktop display is too large, I canŽt o [2000/01/01] kern/15825 dillon Softupdates gets behind, runs the system o [2000/01/01] bin/15829 peter cvs -C not_a_number core dumps o [2000/01/02] i386/15845 Driver for RealTek 8029 o [2000/01/03] misc/15869 3.4-STABLE-20000103 install fails to disk o [2000/01/03] bin/15877 Perl 5.00503 interpreter crashes with a s o [2000/01/04] i386/15879 System hangs while watching the tv and ap o [2000/01/04] gnu/15892 NFS-exported ext2 file system makes Linux o [2000/01/04] i386/15897 Any fix for rpc.lockd on Free BSD 3.2 nfs o [2000/01/05] ports/15922 chuckr print/a2ps cannot find ogonkfied fonts [p o [2000/01/05] bin/15924 ndc restart don't preserve start options o [2000/01/07] i386/15961 System allows no keyboard input after flo o [2000/01/09] kern/16013 FreeBSD 3.3 sends ICMP reply to IP unicas o [2000/01/09] bin/16014 New cvs in -stable prints consistent erro o [2000/01/10] kern/16040 Read-only files under NFS are not seen as o [2000/01/11] misc/16068 FreeBSD 3.3 with IDE > 32GB causes Panic: o [2000/01/12] kern/16090 mdodd No buffer space available o [2000/01/13] misc/16102 root's home directory is too open o [2000/01/14] kern/16122 Incorrect SysV SHM segment accounting by o [2000/01/15] i386/16132 FreeBSD doesn't install on Notebook w/ Sy o [2000/01/17] misc/16154 modem ring kills freebsd o [2000/01/17] bin/16155 cp -p does not preserve modification time o [2000/01/17] i386/16164 "vga"/"sc" don't work when a video card i o [2000/01/18] kern/16171 mmap(2) of /dev/kmem cause kernel panic o [2000/01/18] misc/16197 Installation problems on IBM Thinkpad 365 o [2000/01/19] i386/16214 Driver for Intel EtherExpress 16 is unrel f [2000/01/20] misc/16238 e-bones has a Y2K bug o [2000/01/20] kern/16239 dillon NFS mount file system from multi-homed re o [2000/01/20] bin/16244 [PATCH] don't allow password re-use when o [2000/01/21] kern/16257 Kernel panic in sbdrop o [2000/01/21] i386/16269 smp dosen't work with >2 cpus on AMI Goli o [2000/01/21] bin/16271 vi has wrong len type in re_tag_conv() o [2000/01/22] kern/16299 nfs.ko can be unloaded when nfsd is runni o [2000/01/23] kern/16318 Fix for wrong interface when adding new r o [2000/01/23] alpha/16319 alpha No trailing newline in /usr/src/lib/libc/ o [2000/01/24] bin/16342 Problems with krb_realmofhost() and/or kr o [2000/01/24] ports/16343 reg bsd.port.mk cannot override make.conf. o [2000/01/25] i386/16349 Intel EtherExpress Pro/10+ card detection o [2000/01/25] bin/16353 rlogin encryption is broken on transmit s o [2000/01/27] ports/16396 reg libtool -export-symbols doesn't restrict f [2000/01/27] ports/16410 kris ssh and x forwarding problem o [2000/01/27] kern/16416 Hang on boot with SMP Dell 2400 o [2000/01/28] misc/16423 Installation problem of 3.4-RELEASE using o [2000/01/30] gnu/16481 Cpp crashes frequently o [2000/01/30] i386/16482 IDE disk fails on secondary IDE master de o [2000/02/06] kern/16515 Deadlock by ntpd o [2000/02/08] bin/16578 host-name field is hexadecimal instead of o [2000/02/08] conf/16586 net if down after fail during install o [2000/02/08] kern/16587 cg Can't record with newpcm & CS4236 (AW35/P o [2000/02/09] kern/16598 xmcd stopped by racd0c ioctl error while o [2000/02/09] kern/16605 samba 2.0.6 under 3.4-RELEASE can't open o [2000/02/10] kern/16644 Bad comparsion expression in bpf_filter.c o [2000/02/10] bin/16645 Inetd(8) internal ident won't work with m o [2000/02/18] bin/16812 level 0 dump runs forever -- generates a o [2000/02/18] kern/16816 vop_stdpoll() in /sys/kern/vfs_default.c o [2000/02/20] conf/16832 amd.map options won't play with Solaris N o [2000/02/20] kern/16849 Close on an ide tape drive hangs o [2000/02/20] misc/16860 suggetion on installation process. o [2000/02/21] conf/16879 tanimura Sound drivers seem to be using shared irq o [2000/02/22] bin/16920 cdcontrol fails under 4.0-20000214-CURREN o [2000/02/23] kern/16937 ie0 not probed in -current of 2000-02-18 o [2000/02/23] conf/16948 murray Sysinstall/disklabel: bad partition table o [2000/02/23] ports/16955 markm 'pgp5' built with ports/security/pgp5 doe o [2000/02/25] ports/16983 ache procmail port not prefix clean o [2000/02/25] misc/16991 jhb booting install disk and USB o [2000/02/27] kern/17033 Samsung SN-124 ATAPI CD-ROM not supported o [2000/02/28] bin/17056 rshd does improper home directory check o [2000/03/01] misc/17108 SecureRPC not supported in mount_nfs comm o [2000/03/01] conf/17117 Dial-up problems when using Kppp o [2000/03/02] bin/17134 problem with 3.0-RELEASE cron forgetting o [2000/03/03] kern/17142 4.0-CURRENT hangs in ex_isa_identify() wh o [2000/03/03] kern/17153 mjacob Qlogic Ultra3 cards seem to write very sl o [2000/03/05] kern/17208 3.4 Lock-up during file-completion o [2000/03/06] i386/17228 Installation floppies hang up on Compaq A o [2000/03/06] misc/17235 endless loop? harddrive corrupted? o [2000/03/06] ports/17237 hosokawa in samba suite smbclient -M worked incorr o [2000/03/10] misc/17310 wpaul NIS host name resolving may loop forever o [2000/03/11] ports/17313 ache wu-ftpd ports install invalid file owners o [2000/03/11] ports/17314 hosokawa in samba: testparm incorrectly generate w o [2000/03/12] bin/17338 netstat shows down counting UDP delivery o [2000/03/12] i386/17346 APIC cannot be enabled without turning on o [2000/03/13] bin/17360 green [PATCH] Cleanup bug in pam_ssh o [2000/03/14] i386/17374 Archive QIC02 tape-unit device randomly h o [2000/03/15] kern/17393 kldload syscall allows the same kernel mo o [2000/03/16] kern/17403 cg CS4232 wont play w/newpcm o [2000/03/16] conf/17406 nis in /etc/host.conf breaks network prog o [2000/03/16] kern/17422 bde 4.0-STABLE: top: nlist failed o [2000/03/16] i386/17423 System hangs then reboots o [2000/03/17] gnu/17433 libobjc locks mutex before deallocating i o [2000/03/18] bin/17482 ftpd(8) forget to close TCP port in passi o [2000/03/18] kern/17483 Cannot run disklabel on virgin disk o [2000/03/19] kern/17494 Two problems with the tun device o [2000/03/19] kern/17499 grog Can't revive VINUM RAID5 o [2000/03/20] kern/17504 ken Another Micropolis Synchronize Cache Prob f [2000/03/20] misc/17517 wpaul 100/10baseT card resets under load f [2000/03/21] i386/17526 PB of frequency heuristic in uipc_socket. o [2000/03/21] conf/17540 NIS host lookups cause NFS mounts to wedg o [2000/03/21] kern/17542 cg random static with GUS PnP o [2000/03/22] misc/17562 PAS16 sound cycles o [2000/03/23] misc/17567 make buildworld bombing at KerbIV o [2000/03/24] kern/17583 julian NETATALK code can corrupt mbuf free lists o [2000/03/24] misc/17584 groudier fatal SCSI error with a Symbios 53c875 co o [2000/03/26] kern/17613 impossible to build FS KLD without kernel o [2000/03/27] i386/17626 green sshd cores when I scp to it o [2000/03/28] kern/17634 cg Non-deterministic PnP sound device config o [2000/03/28] kern/17636 FreeBSD 4 uses network card driver dc whe s [2000/03/28] alpha/17637 billf misconfigured syscons bell causes panic o o [2000/03/28] ports/17652 ports netatalk port modification for des/md5 ch o [2000/03/29] i386/17662 gibbs cam_xpt.c incorrectly disables tagged que o [2000/03/29] kern/17680 Multiple crashes due to load in 4.0/5.0 e o [2000/03/30] kern/17695 cg Vibra16X sound card doesn't record audio o [2000/03/30] kern/17697 Boot floppy+local ftp upgrade from 3.4/in o [2000/03/31] i386/17713 gibbs MAKEDEV and /stand/sysinstall goofups wit o [2000/03/31] kern/17715 io memory requests from pnp devices lands o [2000/04/01] kern/17738 reboot after panic: softdep_lock: locking o [2000/04/02] i386/17755 FTP install of 4.0 allocates too few inod o [2000/04/02] i386/17761 disk label editor in 4.0 deleted 3.4 part f [2000/04/03] kern/17779 ADIC 1200d (DAT changer) and Symbios SCSI o [2000/04/04] i386/17800 bde [PATCH] problem with statclock initializa o [2000/04/06] kern/17829 The dc driver is seriously broken o [2000/04/07] bin/17841 ttyp0 (and only 0!) produces stdout input o [2000/04/07] kern/17842 Erratic user time reports for long runnin o [2000/04/07] bin/17843 ftpd fails to set cwd with mode 700 NFS m o [2000/04/07] kern/17844 Amd wedges every morning since I've upgra o [2000/04/08] kern/17863 Running DAP reboots computer o [2000/04/08] kern/17871 starting to accumulate undeletable direct o [2000/04/09] i386/17883 4.0-RELEASE panics during install. o [2000/04/10] kern/17895 stale unix domain connections o [2000/04/10] kern/17905 dillon 4.0-SNAP keep on crashing every 3 days o [2000/04/10] i386/17915 pcm0 direct DMA issues. o [2000/04/10] kern/17923 cg SB16 ISA-PnP sometimes produces loud stat o [2000/04/11] i386/17926 yokota psm device problems with apm resume o [2000/04/11] i386/17930 wpaul Patch to MFC WaveLAN WEP into 3.4-STABLE o [2000/04/11] kern/17936 panic: resource_list_alloc: resource entr o [2000/04/11] i386/17940 Cannot recongize the scsi card AIC-7899 o [2000/04/12] kern/17961 n_hibma Fatal Trap 12. Page fault while in kernel o [2000/04/12] kern/17965 wpaul vr (MII-bus version in 4.0 ONLY) driver l o [2000/04/14] kern/18012 adrian vnode_free_list corruption, "free vnode i o [2000/04/15] kern/18024 when printing through gs: panic: lockmgr: o [2000/04/15] kern/18031 alpha system panics cpu_fork during AIO c o [2000/04/17] misc/18065 FREEBSD 4.0 crashes on boot Compaq Prolia o [2000/04/18] misc/18071 I cannot install Oracle 8i in FreeBSD 4.0 o [2000/04/19] i386/18089 4.0R install hangs on newfs or fsck o [2000/04/19] kern/18096 random crashes probably caused by lockmgr o [2000/04/20] kern/18110 DC-390 SCSI BIOS setting no effect and IB f [2000/04/20] kern/18113 Kernel panic while untarring a large arch o [2000/04/21] i386/18132 BTX dumps trying to boot w/ dedicated SCS o [2000/04/22] bin/18160 pppd does not hang up sometimes while sta o [2000/04/23] ports/18180 jmz xdm authorization fails with XDM-AUTHORIZ o [2000/04/23] bin/18181 Getty can fail to observe :de: specificat 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/25] i386/18212 4.0-RELEASE does not see all disk. f [2000/04/26] kern/18234 phk 4.0-CURRENT crashes when "make test" in p o [2000/04/27] kern/18252 sysctl -a causes panic o [2000/04/28] i386/18268 RTC BIOS error10 (memorysize) a [2000/04/28] kern/18270 n_hibma [PATCH] kldunload "vn" doesn't clean up e o [2000/04/28] kern/18285 the system froze when use scon -s 50 f [2000/04/29] kern/18303 grog panic: vinvalbuf: dirty bufs o [2000/04/30] kern/18315 System hang when doing back-to-back captu o [2000/04/30] kern/18316 close-together bt848/878 captures to file o [2000/05/02] kern/18345 cg sbc / pcm not fully recognizing AWE64 o [2000/05/02] kern/18348 yokota kernel crash o [2000/05/18] kern/18650 panic when enabling linux with emu10k1 dr o [2000/05/19] gnu/18672 std::basic_string::c_str() o [2000/05/19] bin/18678 Bug in libz o [2000/05/19] kern/18687 mrouted and IPDIVERT cause a panic o [2000/05/20] kern/18704 GLOB_ERR not handled correctly by glob() o [2000/05/21] misc/18728 Audio and video desynch in Realplayer on s [2000/05/21] kern/18735 asmodai add support to Accton EN1217 network adap o [2000/05/22] bin/18742 times.allow field parsed incorrectly o [2000/05/22] kern/18751 if_dc doesn't autosense 100Mb mode o [2000/05/22] kern/18757 dg [PATCH] fxp driver doesn't enable flow co o [2000/05/22] kern/18763 kernel crashes when sysctl(3) is called o [2000/05/22] alpha/18768 wpaul Digital DE500-BA with "dc" driver doesn't f [2000/05/28] kern/18858 microuptime() errors even after disabling o [2000/05/28] misc/18860 Cannot write DATA record to /home/archive o [2000/05/29] kern/18869 4.0-Stable SMP kernel from 22. May unstab o [2000/05/29] kern/18875 arpintr() problem o [2000/05/30] kern/18899 if_vr.c can't bridging properly when bpf o [2000/05/30] bin/18903 pkg_add deleted its own database o [2000/05/31] kern/18924 sysctl hw.bt848 crashes machine (bktr dri o [2000/05/31] conf/18925 No X Desktop Environments in 4.0 o [2000/05/31] kern/18932 Total loss of ethernet needing reboot. P o [2000/06/01] i386/18940 Reading from stdin using linux-jdk-1.2.2 o [2000/06/02] kern/18980 ATAPI Drive boots Install CD but then say o [2000/06/03] i386/18981 3.4 CDROM fails to boot on Dell PowerEdge f [2000/06/04] kern/19009 Mounting bad CD-ROM causes crash o [2000/06/05] kern/19020 kernel reboots sometimes o [2000/06/05] misc/19025 Installer assumes /dev exists if target d f [2000/06/06] conf/19080 murray sysinstall's use of host.conf prevents ft o [2000/06/07] ports/19093 obrien problem with mail/muttzilla o [2000/06/08] kern/19121 IPv4 multicast does not work without rout o [2000/06/08] misc/19125 Undefined symbol `_poll' referenced from f [2000/06/12] kern/19219 le driver causes kernel panic during ifco o [2000/06/12] bin/19231 quota/mount commands inconsistency o [2000/06/13] ports/19238 will sgmltools1 o [2000/06/13] i386/19245 -fexpensive-optimizations buggy (even wit o [2000/06/14] kern/19256 in devicedriver cy.c make_dev (..) probl o [2000/06/14] ports/19281 billf Error in ucd-snmp port with tkmib o [2000/06/16] kern/19347 top, CPU and SMP-problem in new kernel o [2000/06/17] bin/19357 swap info incorrect after using sysinstal o [2000/06/18] kern/19363 Do allow processes know about their file o [2000/06/19] bin/19375 makekey accepts only 8-byte password o [2000/06/19] misc/19376 ncurses alters buffering of stdin/stdout o [2000/06/19] kern/19389 Panic caused by sendfile(2) o [2000/06/19] bin/19393 programs using strftime () dump core if R o [2000/06/20] kern/19402 Signals 127 and 128 cannot be detected in o [2000/06/20] bin/19405 telnetd sends DO AUTHENTICATION even if a o [2000/06/23] conf/19461 X authentication doesn't work off the CD o [2000/06/23] kern/19465 SYNC_CHACHE PROBREM: NEWTECH NDA20128A o [2000/06/23] kern/19479 processes stuck in 'ffsvgt' and 'FFS no' o [2000/06/23] kern/19482 Upgrade from 4.0-RELEASE to 4.0-STABLE ca o [2000/06/25] kern/19499 EtherExpress 16 is not probed o [2000/06/25] i386/19508 pci bus not probed for pci ethernet card f [2000/06/25] i386/19512 get problem in compile gcc-2.7.2.3 o [2000/06/27] conf/19542 Problem with Proxy o [2000/06/27] misc/19557 Denying more than 10 ports with an 'open' o [2000/06/28] conf/19569 stock IPFW rules have subtle udp hole o [2000/06/30] kern/19603 luigi 20 ethernet interfaces not compatible wit o [2000/06/30] docs/19604 steve Web query interface doesn't search or Ori o [2000/06/30] kern/19612 cg SBLive produces 75% static and 25% actual f [2000/06/30] kern/19614 johan missing blowfish in current kernel tree ( o [2000/07/02] misc/19646 Level 0 dump takes way longer than it sho o [2000/07/02] kern/19654 wpaul 20 dc ports in one machine (5x 4port card o [2000/07/03] i386/19662 kernel panic after too many socket freed o [2000/07/03] kern/19672 dillon contigmalloc1() oddity for large alignmen o [2000/07/03] misc/19673 dhclient-script will not always set the h o [2000/07/05] ports/19711 asami bsd.port.mk and autoconf are conflict o [2000/07/05] kern/19714 dillon swap_pager_getswapspace: failed o [2000/07/06] i386/19737 Cannot build a profiled kernel; load fail o [2000/07/07] bin/19773 [PATCH] telnet infinite loop depending on a [2000/07/08] bin/19789 sos [PATCH] msinfo reports incorrect data for o [2000/07/09] kern/19814 marcel Oracle8i installer triggers problem in th o [2000/07/10] i386/19820 Installation of Lotus Notes 5.0 for Linux o [2000/07/12] kern/19875 A new protocol family, PF_IPOPTION, to ha o [2000/07/12] kern/19880 Problem with configuring RS-232 multiport o [2000/07/13] misc/19909 dillon Problem with NFS client in 4.0-STABLE o [2000/07/15] bin/19946 possible bug in sh(1) with -p flag (privi o [2000/07/15] misc/19951 jmz moused has problems with XFree86 o [2000/07/17] misc/19994 sscanf() fails on 64-bit operations o [2000/07/18] kern/20016 jasone pthreads: Cannot set scheduling timer/Can o [2000/07/18] docs/20028 doc ASCII docs should reflect tags o [2000/07/19] kern/20040 msmith Toshiba 2775 hangs after pcib0 driver is o [2000/07/22] kern/20115 cg pcm0 doesnot work on Panasonic Let's note o [2000/07/25] misc/20172 byacc 1.9 fails to generate $default tran o [2000/07/26] bin/20194 amd doesn't provide directories automatic o [2000/07/27] misc/20210 4.1-RC crashes o [2000/07/27] kern/20213 NFS and Linuxulator issues in PR kern/194 o [2000/07/27] kern/20217 darrenr IPF default block and inclusion in rc.net o [2000/07/27] bin/20220 unable to Ctrl-C (quit) when using "more" o [2000/07/27] kern/20234 green panic(): lockmgr: pid 259, not exclusive o [2000/07/28] kern/20256 phk microuptime went backwards message keeps o [2000/07/28] bin/20259 des fetch(1) confused when redirected from ht o [2000/07/28] conf/20272 jkh Missing subdirs in the src/usr.sbin src p o [2000/07/29] conf/20282 murray sysinstall does not recover some /etc fil o [2000/07/30] kern/20299 cg Noise / Scratchiness in 4.1 SBLive driver f [2000/07/31] kern/20335 yokota S3Trio64V+ is detected as CGA by syscons o [2000/08/01] kern/20340 cg SNDCTL_DSP_GETODELAY on pcm device is inc o [2000/08/02] kern/20361 In in.c:in_addmulti, missing splx when if a [2000/08/02] bin/20373 obrien Setting breakpoints in shared objects bro o [2000/08/08] ports/20490 tg Termios timeout parameters, VMIN, VTIME, o [2000/08/09] ports/20503 sheldonh apache w/ mod_perl segfaults on 'use IO;' f [2000/08/09] i386/20507 yokota Mouse freezes in 4.0-release after some u o [2000/08/10] kern/20523 Support for PCI multiport cards for sio d o [2000/08/13] kern/20572 marcel cannot safely remove COMPAT_43 from the k f [2000/08/13] ports/20581 dirk current cdrecord port fails to install o [2000/08/14] bin/20591 src/usr.bin/file/MAINT & README & file.1 f [2000/08/14] gnu/20608 Problem by 'make world' from update 4.0-R o [2000/08/14] kern/20609 dillon panic: vm_fault: fault on nofault entry, o [2000/08/15] kern/20619 arpintr o [2000/08/15] kern/20631 kernel panics on ifconfig if_le f [2000/08/15] kern/20632 stacking mount_null causes an error: moun o [2000/08/15] bin/20633 jhb fdisk doesn't handle LBA correctly o [2000/08/16] bin/20646 dwmalone [PATCH] /bin/cp -p whines on set[ug]id im o [2000/08/17] ports/20679 ports Port of Tcpview-1.0 f [2000/08/17] i386/20685 fbsd 4.1-stable crashed when compiling st f [2000/08/17] misc/20687 murray FTP Install thru http proxy jumps to extr f [2000/08/17] kern/20689 groudier Newbusified version of ncr driver does no o [2000/08/18] ports/20705 trevor xwave port fails to build o [2000/08/18] kern/20708 imp Adaptec 1542 ISA SCSI Controller not dete o [2000/08/20] bin/20725 Raw floppy writes fail for partial bytes. o [2000/08/20] kern/20734 n_hibma USB mouse detaches and never reataches f [2000/08/22] bin/20779 assar junk pointer error causes kpasswd to fail o [2000/08/22] kern/20785 ru changing IP address on an interface may n o [2000/08/24] ports/20819 ports XFMail 1.4.0 dumps core w/signal 6 when c o [2000/08/24] ports/20831 torstenb Autoconf Port: Bug introduced by patch-ag f [2000/08/25] i386/20833 On first boot, filesystem failed, startup o [2000/08/25] gnu/20835 markm Errno.pm is lost in perl system o [2000/08/26] misc/20861 jasone libc_r does not honor socket timeouts o [2000/08/26] misc/20865 murray Installation auto default 50 MB root not o [2000/08/28] gnu/20912 obrien gdb does not recognise old executables. o [2000/08/29] i386/20925 doscmd(1) does not truncate a file int wr o [2000/08/29] kern/20933 sos ATAPI ZIP drive allows mounted disks to b o [2000/08/30] bin/20952 ftpd doesn't honor account expiration tim o [2000/08/31] kern/20958 mdodd ep0 lockup with ifconfig showing OACTIVE f [2000/08/31] i386/20973 Probing error-------cannot install o [2000/09/01] ports/20986 reg Mozilla M17 installs incorrectly a [2000/09/04] kern/21028 sheldonh Add Zoom V90 Internal modem support o [2000/09/06] i386/21087 tanimura ed driver incorrectly fails probe for ISA o [2000/09/07] misc/21089 vi silently corrupt open file on SIGINT w o [2000/09/08] kern/21118 luigi Multiple problems in ipfw's stateful code f [2000/09/08] ports/21126 ports httpd warnings regarding attempts to free o [2000/09/08] kern/21131 Floppy causing cold boot in -STABLE o [2000/09/08] kern/21132 setting kern.hostid to 2887705710 fails. o [2000/09/08] bin/21133 sail driver dies f [2000/09/08] kern/21139 ken IBM DNES drives need 'quirk table' entry. o [2000/09/09] kern/21143 `#define schedsofttty' et al. should not o [2000/09/09] ports/21146 green [patch] openssh with LOGIN_CAP don't setu o [2000/09/09] bin/21152 @monthly entry in crontab is run every da o [2000/09/09] kern/21155 Load average (either with uptime both top o [2000/09/10] kern/21162 panic in ffs_softdep.c: handle_workitem_f o [2000/09/10] kern/21173 cg pcm "panic: no feed" with Creative SB AWE o [2000/09/10] kern/21175 peter ISA DMA channels 4-7 operate on wrong mem o [2000/09/11] bin/21208 tar does not support 2.5 GB file o [2000/09/11] kern/21209 groudier scsi ncr driver installs instead of scsi o [2000/09/11] ports/21210 dima acroread port missing lib a [2000/09/13] bin/21248 kris openssl dumps core with blank passwords o [2000/09/13] bin/21251 NIS problem - ypbind does loop in CLNT_BR o [2000/09/13] misc/21252 dhclient opens too many files o [2000/09/14] gnu/21260 buffer overrun in uux o [2000/09/14] ports/21264 markm tn3270 port receives segmentation fault s [2000/09/14] bin/21268 [MFC] user set no nobody is not good o [2000/09/14] kern/21270 Kernel compilation errors and dies when c o [2000/09/14] gnu/21276 libI77 is unable to handle files >2Gbytes o [2000/09/15] bin/21292 ifconfig warn but does duplicate IP addre o [2000/09/15] i386/21297 kernel panic TRAP 18 during kern.flp inst o [2000/09/15] misc/21300 Install CD-ROMs don't give users enough r o [2000/09/15] kern/21304 wpaul dc0 watchdog timeouts on NetGear FA310TX o [2000/09/15] kern/21305 roger bktr driver dosn't send signals in contin o [2000/09/16] ports/21306 ports New ports: GB2JIS, a tool to convert GB t o [2000/09/16] ports/21319 ports ports submission - wmx10 o [2000/09/17] misc/21328 Should newer version of OS-BS be on CDROM o [2000/09/18] kern/21363 cg Panic in pcm/channel.c when running RealP a [2000/09/18] bin/21375 [PATCH] dhclient runs away on interface r o [2000/09/18] misc/21384 pcm driver has static in recorded audio o [2000/09/19] kern/21400 ata driver stealing IRQ15 on Compaq Proli o [2000/09/19] misc/21406 freebsd's bootinst or booteasy overwrites o [2000/09/20] kern/21424 Blocking issue while regenerating aliases o [2000/09/20] kern/21429 box reboots with panic: pipeinit: cannot o [2000/09/20] gnu/21433 obrien g++ optimiser produces bad code on right o [2000/09/21] misc/21451 murray [PATCH] Release/Sysinstall documentation: o [2000/09/21] kern/21461 ISA PnP resource allocator problem o [2000/09/21] kern/21463 marcel Linux compatability mode should not allow o [2000/09/21] ports/21464 marcel linux_base port installs insecure glibc r a [2000/09/25] conf/21540 bp installworld panics for diskless clients o [2000/09/25] ports/21548 ports libcoro.a (ports) should use MAP_STACK wh o [2000/09/26] i386/21559 rnordier BTX loader sometime show registers o [2000/09/26] misc/21583 CVS pserver - login succeeds but checkout o [2000/09/27] conf/21593 Whither cons25, or, cons25 causing intero f [2000/09/27] bin/21603 green Can't change user passwords on 4.1.1-STAB o [2000/09/28] i386/21624 trap in gusc_attach o [2000/09/28] kern/21625 yokota kernel hangs if SC_NO_FONT_LOADING define o [2000/09/28] kern/21631 4.1.1 Release and Stable don't detect my o [2000/09/28] bin/21637 [telnet] No address associated with hostn o [2000/09/28] kern/21642 Compaq Netelligent 10/100 card (TI Thunde o [2000/09/29] kern/21653 I need a AD1816 Driver o [2000/09/29] bin/21654 Re: nvi's -c flag does no do what it is d o [2000/09/30] bin/21660 crontab mishandles day range o [2000/10/01] kern/21674 Fujitsu MO drives M2513A don't like the s o [2000/10/01] kern/21676 CDROM drive not recognised during install o [2000/10/01] kern/21688 Kernel crash with Adaptec AAA-133 and ahc o [2000/10/02] kern/21693 cg hwptr went backwards 2112 -> 1312 o [2000/10/02] misc/21701 murray Keymap selection menu broken on initial i o [2000/10/02] ports/21714 sobomax audio problem with nil o [2000/10/02] misc/21716 The site search results *suck*. f [2000/10/03] kern/21736 Source-tree broken, can't compile Kernel o [2000/10/04] ports/21756 peter errors in Squid-2.3.4's configure prevent o [2000/10/04] ports/21761 peter Re: errors in Squid-2.3.4's configure pre o [2000/10/05] kern/21771 Fix for sppp and Cronyx drivers update o [2000/10/05] gnu/21779 patch(1)'s bug of new file creation o [2000/10/06] kern/21791 Hang on FIN_WAIT_2 a [2000/10/06] kern/21808 [patches] msdosfs incorrectly handles vno o [2000/10/07] i386/21824 bt driver no longer attaches due to chang o [2000/10/07] kern/21827 mount causes freebsd 4.1.1 to reboot o [2000/10/09] kern/21860 The fix to TCP_ISSINCR after the bugtraq o [2000/10/09] kern/21869 Compiling a a.out kernel on FreeBSD 4.0 o [2000/10/09] bin/21877 green [PATCH] DSA support for pam_ssh o [2000/10/10] kern/21898 If options NFS is not in the kernel, moun o [2000/10/11] bin/21918 Revision 1.5 provides incomplete fix for o [2000/10/12] misc/21940 Modem Power-Off kills system o [2000/10/12] kern/21946 vm_fault when (accidentally) attempted to o [2000/10/13] kern/21965 Running ldconfig (linux binary) from ld-1 s [2000/10/14] docs/21990 asmodai exec(3) manpage vs source inconsistency o [2000/10/15] misc/21998 green ident only for outgoing connections o [2000/10/15] i386/22006 quotacheck halt s [2000/10/16] gnu/22025 markm perl does chmod in installworld o [2000/10/16] kern/22029 mckusick use of softdependencies leads to major fi o [2000/10/16] ports/22036 ports StarOffice 5.2 CDROM install still fails o [2000/10/17] kern/22063 brian bpf when used with the select system call o [2000/10/18] kern/22078 Option ROM(s) must be excluded from ISA I o [2000/10/18] bin/22105 /usr/src/bin/sh - Permission denied when o [2000/10/19] misc/22111 Install 4.1.1 o [2000/10/19] kern/22142 securelevel does not affect mount o [2000/10/21] kern/22200 4.1.1-RELEASE can't mount CDROMS (negativ o [2000/10/22] bin/22212 skeyaccess(3) doesn't for primary group o [2000/10/22] kern/22225 Trying to build a CURRENT snapshot on 4.1 o [2000/10/22] misc/22229 X configuration o [2000/10/23] kern/22265 Suspend only possible once after reboot o [2000/10/24] misc/22283 when attempting to boot from CDROM to ins o [2000/10/24] misc/22284 Change (SunOS) NIS passwd error o [2000/10/25] bin/22286 marcel siglongjmp does not properly restore the o [2000/10/25] conf/22287 binary upgrade install to 4.1.1 does not o [2000/10/25] bin/22291 getcwd() fails on recently-modified NFS-m f [2000/10/26] misc/22305 o [2000/10/26] ports/22311 ports upgrade of www/cadaver to the latest 1.15 o [2000/10/26] i386/22315 Cannot reboot or power-off the machine o [2000/10/26] ports/22328 ports new port -- print/ttf2pt1 o [2000/10/27] ports/22368 ports new port x11-fonts/koi8u-monaco; new cate o [2000/10/28] kern/22372 cg |4.1.1-STABLE|[PATCH] resume from suspend f [2000/10/29] kern/22397 n_hibma ulpt0 usage leads to kernel panic o [2000/10/29] ports/22400 kevlo klaptopdaemon is useless o [2000/10/29] ports/22403 asami "make readmes" hangs if category director o [2000/10/30] kern/22411 sos CD-RW drive works mostly, but can't fixat o [2000/10/30] ports/22416 reg mozilla segfaults on current o [2000/10/30] kern/22417 gibbs advansys wide scsi driver does not suppor o [2000/10/30] ports/22421 ports New port: Enhydra 3.1 beta 1 o [2000/10/31] i386/22441 pmap_growkernel() is not effective at ker o [2000/10/31] kern/22460 PCMCIA card using ed driver temporarily f o [2000/11/01] bin/22482 The sysctl (8) command uses strtol on inp o [2000/11/01] kern/22484 System locks on reboot with a Severworks o [2000/11/01] bin/22489 mass IP aliasing via ifconfig broken o [2000/11/02] kern/22521 netgroup can't work on FreeBSD-4.1.1-STAB o [2000/11/02] kern/22532 [patch] /dev/dsp is sometimes busy when n o [2000/11/03] misc/22588 scp hangs when using Lucent 802.11b card f [2000/11/03] kern/22594 NFS can't handle asymmetric server routin o [2000/11/03] ports/22597 billf [PATCH] ports/net/ucd-snmp o [2000/11/04] i386/22606 Panic on boot: panic string "panic ahc0: o [2000/11/05] bin/22614 billf pam_ssh dumps core o [2000/11/05] kern/22624 Interrupt conflict btw. vga and Ethernet o [2000/11/05] kern/22634 4.2-Beta (11/06) Kernel does not detect S o [2000/11/06] gnu/22635 Why don't you use truncate(2) in libI77 o [2000/11/06] kern/22642 Load average stuck not changing o [2000/11/06] kern/22643 Cannot compile kernel with support for Gr o [2000/11/07] kern/22664 [PATCH] mounting an audio CD causes kerne f [2000/11/07] kern/22667 dwmalone kernel panic when attepmt to remove file o [2000/11/07] kern/22680 ATA driver think Ultra ATA-100 drive is A o [2000/11/08] bin/22685 Repairing a directory hard link. o [2000/11/08] ports/22695 ports MAKEDEV has no entry for cfs0, the device o [2000/11/08] i386/22708 fpe in healthd when it starts o [2000/11/08] i386/22712 sysinstall makes wacky keymap choices o [2000/11/09] bin/22727 disklabel crashes if the number of partit o [2000/11/09] kern/22733 RELENG_4 aic SCSI driver hangs up during o [2000/11/10] bin/22737 syslog gets spammed with /kernel: arp_rtr o [2000/11/11] kern/22768 fxp get slow often! o [2000/11/12] ports/22802 jseger convert in ImageMagic does not work in co o [2000/11/13] kern/22826 marcel Memory limits have no effect in linux com o [2000/11/14] bin/22846 Routed does not reflect preference of Int o [2000/11/14] kern/22852 Abit KT/7 Raid makes install hang o [2000/11/15] kern/22862 ncr probe fails with CACHE TEST FAILED: ? o [2000/11/15] kern/22866 Packets send on INET6 sockets compatible o [2000/11/15] kern/22874 cg newpcm CS461x sound problems o [2000/11/15] kern/22877 installation panic if ep0 presents o [2000/11/16] kern/22896 When kernel boots uhci fails o [2000/11/16] kern/22906 soundcard problems o [2000/11/17] kern/22926 kernel 4.1-RELEASE, 4.1.1-RELEASE (floppy o [2000/11/18] ports/22939 hoek 44bsd-more port does not compile under re o [2000/11/18] kern/22942 Problem with ext2fs support o [2000/11/18] kern/22943 marcel Problem with linux emulation o [2000/11/18] i386/22944 isa_dmainit fails on machines with 512MB s [2000/11/18] bin/22945 tftp (4.1.1-RELEASE) appears broken a [2000/11/18] kern/22947 jon IBM 10/100 EtherJet Cardbus (Xircom X3201 o [2000/11/18] kern/22951 failed drive causes panic with HPT370 RAI o [2000/11/19] i386/22961 rnordier New installation of 4.1.1 won't boot o [2000/11/19] i386/22969 4.1.1 stable kernel cannot find console o [2000/11/20] i386/22971 RealProducer doesn't work on linux emulat o [2000/11/20] ports/22977 ports kmp3 has a problem o [2000/11/20] conf/22998 darrenr ipf fails to load the rules if IPFILTER i o [2000/11/22] i386/23039 disklabel editor couldn't create partitio o [2000/11/23] ports/23041 jmz XFree86 4.0.1 crashes when switching to a o [2000/11/23] misc/23056 clearing of memory address 0xc0000 o [2000/11/23] gnu/23058 ncurses: tgoto_internal() ugliness o [2000/11/24] alpha/23064 jkh Alphas do not boot if `a' (/) partition i o [2000/11/24] misc/23069 jkh Compat22 does not work until you reboot o [2000/11/24] ports/23080 jmz fr keymap don't work correctly o [2000/11/24] bin/23083 pkg_add returns 0 even if the package is o [2000/11/25] misc/23091 unable to fixate a disk with burncd o [2000/11/25] misc/23094 The PR system has no way to let committer o [2000/11/25] bin/23098 If installing on a serial console, enable o [2000/11/26] i386/23108 Boot defaults to wd(4) devices rather tha o [2000/11/26] misc/23120 '|more' takes up to 100% system resources f [2000/11/26] ports/23122 sobomax programs requiring glib13 fail in configu o [2000/11/26] ports/23125 ports Successful emulation of StarOffice depend o [2000/11/27] ports/23140 pst GNU id-utils port is out-of-date o [2000/11/28] misc/23161 tcsh execs /bin/ls --color o [2000/12/19] gnu/23678 gdb won't exit if attached process disapp o [2000/12/20] kern/23697 panic at _pl_download_mhroute+0x247 o [2000/12/20] ports/23701 ports XpostitPlus fails when height or width is o [2000/12/22] kern/23771 bridge/firewall doesn't work as in bridge o [2000/12/25] misc/23827 Can't boot from the cd-rom drive o [2000/12/26] bin/23866 dwmalone patch for pointing out current date o [2000/12/26] i386/23870 Crashing on make buildworld o [2000/12/26] misc/23873 4.2 install hangs on probing hardware f [2000/12/26] ports/23878 ports New port: IO - various IO modules o [2000/12/27] ports/23888 ports New port: quelcom: A set of command-line f [2000/12/28] ports/23907 olgeni Cannot install x11/XFree86-aoutlibs from o [2000/12/28] docs/23910 doc Handbook Chapter 14. Sound -- some fixes o [2000/12/28] kern/23913 UDMA 66 Drive forced to PIO4 on DFI AK-74 o [2000/12/28] kern/23935 Repeatable panic: blockable mtx_enter() o o [2000/12/29] i386/23939 rnordier IBM (A,T,X Series) Thinkpad won't boot of o [2000/12/30] misc/23972 releng4.freebsd.org has strange ftp behav o [2001/01/01] kern/23990 access(2) system call reports an immutabl o [2001/01/01] ports/23992 ports infinite recursion in rtelnet, setupterm( o [2001/01/02] kern/24032 rndcontrol and pccardd use of interupt ha o [2001/01/03] ports/24042 ports New port: IO - various IO modules o [2001/01/03] kern/24059 USB support broken in SMP kernel o [2001/01/03] bin/24061 sysinstall fdisk's wizard mode is started o [2001/01/04] conf/24065 sysinstall uses different crypto scheme f o [2001/01/04] kern/24070 n_hibma uhci USB driver disables port on reatachi o [2001/01/04] kern/24073 oltr driver set work memory at wrong phas o [2001/01/04] kern/24074 Properties of token-ring protocol must be o [2001/01/04] misc/24079 make release fails in 4.2-STABLE o [2001/01/04] gnu/24082 Use of seekp() in C++ programs causes seg o [2001/01/05] docs/24083 doc change layout and content of kernel build o [2001/01/05] ports/24084 dbaker misc/proxyper port fails to install o [2001/01/05] kern/24085 syncing on shutdown leaves filesystem dir o [2001/01/05] ports/24098 demon port www/links bug o [2001/01/06] kern/24100 Having a 3c589 PCMCIA/PCCARD inserted pre o [2001/01/06] i386/24117 System fails to initialize built-in PNP t o [2001/01/06] docs/24125 wes connect(2) can yield EWOULDBLOCK/EAGAIN o [2001/01/07] bin/24136 sysinstall's install.cfg tryRTSOL and try o [2001/01/07] kern/24137 Aironet driver breaks after firmware upgr o [2001/01/08] ports/24143 ports graphics/sane won't build if GIMP already f [2001/01/08] ports/24165 ports windowmaker-0.63.1 fails to build in libw o [2001/01/09] ports/24190 ports [NEW PORT] kde-18n polish internationaliz o [2001/01/09] i386/24210 compaq dl360 hangs with smp kernel o [2001/01/10] kern/24219 <4.2R can't use Pentium3 SSE instructions o [2001/01/10] conf/24238 First physical interface always has IPv6 o [2001/01/11] ports/24258 ports netsaint port is missing run dependencies o [2001/01/12] bin/24270 fsck should notice some inconsistencies o [2001/01/12] bin/24271 dumpon should check its argument more o [2001/01/13] kern/24315 getcwd under Linux emulation fails after o [2001/01/14] kern/24320 DMA doesn't work with Alladain V and K6-2 o [2001/01/14] kern/24325 Athlon Thunderbird 700 on Asus K7M vs. Fr o [2001/01/14] kern/24335 Crash when returning from single user mod o [2001/01/14] ports/24336 taoka ja-FreeWnn-server port fail to compile on o [2001/01/15] ports/24344 vanilla New port: Apache::Reload - Reload changed o [2001/01/15] ports/24347 vanilla New port: Apache::NNTPGateway - A NNTP in o [2001/01/15] ports/24359 ports jgnat fails with a compiler error in jvm_ o [2001/01/15] docs/24363 doc lack of explanation o [2001/01/15] kern/24365 delete alias from ipv6 p-t-p iface will c o [2001/01/15] kern/24368 sos Not having ATA_ENABLE_ATAPI_DMA still has o [2001/01/16] bin/24377 make(1) does not correctly substitute in o [2001/01/16] ports/24381 ports graphics/dia does not support "libraries" o [2001/01/16] i386/24387 4.2 compile bombs at PERL build o [2001/01/16] misc/24391 cannot kill amd after interface disappear o [2001/01/16] kern/24392 panic() if kldload used to load module wh o [2001/01/16] bin/24399 green OpenSSH forced commands munge output o [2001/01/18] kern/24423 yokota [Fix] syscons VT switching code errors o [2001/01/18] misc/24424 linux-programms under BSD cannot display o [2001/01/18] bin/24438 sys.mk is lacking single suffix rules for o [2001/01/18] bin/24443 Fix for spurious "arith: syntax error: " o [2001/01/18] gnu/24445 darrenr ipnat does not parse its file properly o [2001/01/19] misc/24452 random panics with Fatal trap 19 and Open o [2001/01/19] ports/24455 andreas [PATCH] print/apsfilter does not work pro o [2001/01/19] ports/24459 ports New port: package for the solution of PDE o [2001/01/19] bin/24461 Being able to increase the YP timeout wit o [2001/01/19] ports/24466 lioux net/kicq UPGRADE to 2.0.0b1 o [2001/01/19] bin/24472 libc_r does not honor SO_SNDTIMEO/SO_RCVT o [2001/01/21] kern/24511 keyboard lockup on boot (about 1/3 of the o [2001/01/22] conf/24524 /etc/security uses dmesg instead dmesg -a o [2001/01/22] ports/24525 asami USE_NEWGCC specifies incorrect port o [2001/01/22] kern/24559 aio_suspend() had Bus error when using -l o [2001/01/23] misc/24590 timezone function not compatible witn Sin o [2001/01/23] bin/24591 jobs command differs in interactive vs. n o [2001/01/23] kern/24593 NFS hang between stable and current boxes o [2001/01/24] kern/24596 sysinstall crash: Page fault while in ker o [2001/01/24] ports/24599 ports New ports collection: youbin-3.4 o [2001/01/24] kern/24608 FreeBSD 4.2 Panics in Realtek rl driver o [2001/01/25] kern/24628 if netgraph seriously runs out of queue e 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] ports/24639 dirk two problems when compiling MySQL 3.23.32 o [2001/01/25] misc/24641 pthread_rwlock_rdlock can deadlock o [2001/01/25] kern/24645 sometimes delayed ACKs timeout o [2001/01/28] bin/24691 map-mbone segfaults at getsockname o [2001/01/28] i386/24701 tempnam() possibly used unsafely by libg2 o [2001/01/29] ports/24711 asami ${MAKEFILE} causing trouble with ports o [2001/01/29] misc/24712 Getting message /usr/libexec/ld-elf.so.1: o [2001/01/29] bin/24721 libgcc_r problem - library precedence wit o [2001/01/29] misc/24725 failing install: not loading proper adapt o [2001/01/30] i386/24737 Socks5 clients die with leaving zombie pr f [2001/01/30] kern/24739 darrenr "kldunload ipf" kernel module (V3.4.16) c o [2001/01/30] bin/24748 green OpenSSH creates broken pipes o [2001/01/31] ports/24753 ports Pipsecd may get a tun device with the IFH o [2001/01/31] bin/24760 installkernel fails trying to install *.m o [2001/01/31] ports/24763 green Licq 1.0.2 will not compile on my 4.2-sta o [2001/01/31] kern/24765 sos /dev mounted from devfs has excessively l o [2001/01/31] bin/24769 tcsh: broken handling of comment in first o [2001/01/31] bin/24773 the -v flag of the date command does not o [2001/02/01] ports/24776 ports New port: japanese address book software o [2001/02/01] ports/24778 asami "update" target not available in categori o [2001/02/01] conf/24779 sysinstall 4.2 regresssions todo with sta o [2001/02/02] ports/24800 ports When i trying to compile mysql323-server o [2001/02/02] bin/24810 kerberosIV and heimdal ftpd is vulnerable o [2001/02/04] ports/24852 ports courier-0.31.0 o [2001/02/04] kern/24854 NEWCARD support for Aironet driver an(4) o [2001/02/06] ports/24895 adrian New port: www/sqmgrlog o [2001/02/06] gnu/24903 Patch to remove 32bit limit from tar o [2001/02/06] ports/24912 ports mod_frontpage.c has a bogus sprintf() lin o [2001/02/06] i386/24916 SCSI timeout errors with adv0 driver (Adv o [2001/02/07] kern/24937 flaky connection through vlan interface o [2001/02/08] ports/24947 ports New port: gc - a garbage collecting stora o [2001/02/08] ports/24948 ports New port: Orchard - innovative, lightweig o [2001/02/08] i386/24949 mbuf memory leak in de0 driver o [2001/02/09] kern/24982 stack gap usage o [2001/02/09] ports/24984 ports fmio port o [2001/02/10] kern/24992 Writing to a write-protected floppy cause 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/11] ports/25027 ports samba nmbd core dumped on isolated machin o [2001/02/11] ports/25029 archie mpd-netgraph crashes when using netmeetin o [2001/02/12] kern/25037 top doesn't show CPU states (shows zeroes o [2001/02/12] kern/25038 dhcp client could not set hostname on boo o [2001/02/13] kern/25061 CS46xx sound broken in 4.2-STABLE (Thinkp o [2001/02/13] kern/25067 adrian able to mount a pathname > 80 char. but u o [2001/02/13] ports/25069 vanilla Enlightenment dumps in homedir() specific o [2001/02/14] kern/25093 4.2-STABLE does not recognize PCNet-ISA+ o [2001/02/14] ports/25102 ports depends on 'wrong' openldap o [2001/02/14] conf/25105 green S/Key support is broken in sshd o [2001/02/15] bin/25110 pthread signal handler fails after forkin o [2001/02/15] ports/25116 dirk mod_php4 fails to load with "Undefined sy o [2001/02/15] kern/25118 brian Unloading the if_tun module causes a rebo f [2001/02/15] ports/25122 ports lots of undefined references o [2001/02/15] ports/25129 ports Update port, problem with one last submit o [2001/02/16] bin/25132 sigprocmask problem with pthread o [2001/02/16] kern/25136 Fatal trap 12: page fault while in kernel o [2001/02/16] bin/25153 kdump does not finish displaying data o [2001/02/16] ports/25155 ports `ASSERTION FAILED' errors with security/p o [2001/02/17] ports/25176 ports ports/graphics/xpaint 2.6.1 allocates tem o [2001/02/19] kern/25201 pccard event and syscons beep duration de o [2001/02/19] ports/25205 ports mail/pop3lite port update o [2001/02/19] kern/25213 Bus abstraction interface doesn't allow p o [2001/02/19] i386/25214 Installing 4.2, and after the initial set o [2001/02/20] i386/25236 Intel 82559 is not working behind a DEC/I o [2001/02/20] bin/25243 ftp crashes in remotemodtime (). o [2001/02/20] bin/25244 termcap and printcap interference o [2001/02/21] kern/25245 mounting NFS to/from same host + activity o [2001/02/21] kern/25248 sys/user.h needs sys/param.h, but doesn't o [2001/02/21] bin/25250 segfault on tar Ixvf o [2001/02/21] kern/25255 keyboard response very slow with PCMCIA E o [2001/02/21] misc/25259 Problem with floppies f [2001/02/21] kern/25261 gibbs ahc0 no active SCB errors when booting of o [2001/02/21] kern/25264 Kernel trap 12 in camisr o [2001/02/21] ports/25265 ports DIA crashes when using delete on an objec o [2001/02/21] kern/25266 chris fdesc file system in -STABLE locks up dur o [2001/02/21] ports/25272 ports Using eperl as cgi/nph binary executor ca o [2001/02/22] misc/25290 IDECD-ROM doesn't DETECT o [2001/02/22] kern/25292 UDMA66 Disk controller resetting hangs on o [2001/02/23] bin/25329 The current default permission of /var/lo o [2001/02/23] bin/25337 rwatson dmesg -a should be restricted o [2001/02/23] kern/25338 HARD READ ERROR on IBM Hard Disks connect o [2001/02/24] kern/25344 ipfilter and ppp insecure in 4.2-Stable o [2001/02/24] pending/25346gnats-adminSome interrupts not delivered on Dell Wor o [2001/02/25] ports/25352 ports Libmcrypt crashes under certain circumsta o [2001/02/25] conf/25359 upgrading to 4.2-RELEASE clobbers mailer. o [2001/02/25] bin/25361 dump(8) command segfaults o [2001/02/25] ports/25368 ports New port: Server for DHIS dynamic DNS pro o [2001/02/25] ports/25374 ports A new port math/atlas highly optimized BL o [2001/02/26] pending/25379gnats-adminports/databases/p5-BerkeleyDB broken, fix o [2001/02/26] bin/25403 ipfilter: enable ipv6 and STATETOP in 4.2 o [2001/02/26] misc/25404 sys/cdefs.h does not contain definitions o [2001/02/27] ports/25411 ports suck dose not check history file o [2001/02/27] pending/25418gnats-adminchecksum mismatches in xv port o [2001/02/27] kern/25421 route structures are being leaked. o [2001/02/27] ports/25423 ports The "biology" category holds programs fro o [2001/02/27] ports/25438 ports NEW PORT: xmailwatcher - another xbiff ty o [2001/02/28] bin/25461 sysinstall's fdisk and disklabel don't wo o [2001/02/28] kern/25464 if_xl.so kld does not work with "options o [2001/03/01] kern/25476 [PATCH] The syscall oldgetkerninfo can re o [2001/03/01] i386/25478 kernel panic using vlans with fxp o [2001/03/02] ports/25492 ports patche of CLISP o [2001/03/02] bin/25494 fetch uses environment variable FTP_PROXY o [2001/03/02] ports/25506 ports changes to sysutils/cd9660_unicode breaks o [2001/03/03] ports/25508 ports tkrat2 port update to version 2.0.1 o [2001/03/03] kern/25511 ioctl(fd, FIONREAD, &c) on a FIFO (not PI o [2001/03/04] ports/25522 ports FORBIDDEN ports doesn't return error for o [2001/03/04] kern/25528 OnStream ATAPI Streamer refuses to eject o [2001/03/05] pending/25542gnats-admin/bin/sh: null char in quoted string o [2001/03/05] bin/25544 [PATCH] lprm - fails for remote printers o [2001/03/05] docs/25556 doc "Upgrading FreeBSD from source" tutorial 1182 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1995/01/11] i386/105 Distributed libm (msun) has non-standard s [1995/06/15] bin/517 Bad group change with 'install' s [1995/08/07] bin/658 ifconfig alias has to be separately given s [1995/09/26] kern/742 syslog errors accessing Mac hard disks [p o [1995/10/03] kern/765 asmodai umount -f can`t umount a NFS filesystem i s [1995/11/20] kern/831 one minor complaint about the kernel visu a [1995/11/30] bin/854 swapinfo shows incorrect information for a [1996/01/30] bin/981 fenner clnt_broadcast() is not aware of aliases s [1996/03/20] bin/1093 route's diagnostic is weird a [1996/07/07] bin/1375 eivind Extraneous warning from mv(1) [PATCH] s [1996/09/08] bin/1589 msmith [PATCH] ftp fails to flush output o [1996/09/14] gnu/1611 phk groff should use "system-wide" papersize s [1996/10/13] misc/1791 tegge syslimits.h does not allow overriding def o [1996/10/20] bin/1849 obrien gdb sets library breakpoints on the wrong s [1996/11/04] gnu/1961 [PATCH] uucp logging files are in /var/sp s [1996/11/22] bin/2090 clients may bind to FreeBSD ypserv refusi s [1996/12/02] bin/2137 vm statistics are bad s [1996/12/14] bin/2216 obrien [PATCH] Ada specs not being compiled into a [1996/12/21] bin/2265 guido su(1) does not call skeyaccess() o [1996/12/24] kern/2273 dufault support for POSIX.4 / POSIX.1a RT-schedul s [1996/12/27] kern/2298 Support for DSR/DCD swapping on serial po a [1996/12/27] misc/2302 brandon new crypt() including SHS and an extendab o [1997/01/10] bin/2442 davidn setusershell()/endusershell() missing o [1997/01/28] bin/2603 dufault Added POSIX.4/POSIX.1b constants in unist o [1997/02/02] gnu/2637 tar dumped core with -g option. a [1997/02/02] bin/2641 wpaul login_access.c doesn't work with NIS by d o [1997/02/15] misc/2745 fenner PR querry web form doesn't sort correctly o [1997/03/03] kern/2865 peter NFS client hangs on umount, ls, df when N o [1997/03/06] bin/2898 fenner arp -a -n buglet o [1997/03/10] bin/2934 cracauer sh(1) has problems with $ENV o [1997/03/10] bin/2938 hoek Add -b, -l, and -f options to du(1) o [1997/03/31] gnu/3157 obrien Patches to gas and gdb to support MMX ext o [1997/04/07] bin/3221 rpc.rusersd : can't communicate with SunO o [1997/04/07] misc/3225 [PATCH] uucpd.c should normalize host nam o [1997/04/09] bin/3242 incorrect prototype for initgroups o [1997/04/14] bin/3284 [PATCH] symorder(1): -t option doesnŽt wo o [1997/04/14] bin/3286 [PATCH] missing error checking in mount_m o [1997/04/29] bin/3416 ibcs emulation problems a [1997/05/08] gnu/3552 asmodai the -L option of tar does not work proper o [1997/05/16] bin/3608 Telnet in linemode will break apart long o [1997/06/02] bin/3762 dufault Bogus return values from rtprio(1) f [1997/06/07] bin/3805 single process tftpd o [1997/06/09] bin/3826 KerberosIV sometimes hangs rcp o [1997/06/10] bin/3837 dufault new feature for rtprio o [1997/06/15] kern/3879 peter Can't export mounted ext2fs via NFS o [1997/06/18] kern/3901 dg Multicast for Intel 10/100 Ethernet Card o [1997/06/19] misc/3912 ctags(1) cannot trace some macro correctl o [1997/06/24] kern/3944 paul if_le doesnt receive ether multicast pack o [1997/06/25] kern/3948 nonworking t/tcp server side o [1997/06/27] kern/3968 Hardware probes die on Peak SBCs. o [1997/07/07] kern/4051 pppd connect 'chat ...' broken o [1997/07/18] bin/4116 davidn Kerberized login as .root fails to s [1997/07/24] bin/4157 [PATCH] netstat atalk output should print o [1997/07/26] bin/4172 des suggest reconnection option added to fetc s [1997/07/28] kern/4184 [PATCH] minor nits in sys/netatalk s [1997/07/31] bin/4204 [PATCH] ac printed wrong report about tty o [1997/08/07] kern/4243 file locking doesn't work for pipe o [1997/08/08] misc/4249 wpaul ypchsh doesn't care about changing a user o [1997/08/12] misc/4285 SDL RISCom/N2 (ISA) o [1997/08/13] kern/4297 dufault SIGEV_NONE and SIGEV_SIGNAL go in signal. o [1997/08/13] i386/4300 msmith The initial timeout on open("/dev/lpt0".. o [1997/08/14] ports/4304 asami Recommendation re. Ports Collection o [1997/08/29] kern/4413 No way to unmount a floppy that goes bad o [1997/08/29] bin/4419 sheldonh man can display the same man page twice o [1997/08/29] bin/4420 roberto find -exedir doesn't chdir for first entr o [1997/09/03] bin/4459 bde No prototype for moncontrol(3) and monsta o [1997/09/13] kern/4528 processes hang if the mount_portal proces f [1997/09/16] misc/4556 will make can't build executable from single F o [1997/09/21] kern/4597 Patch to pass NPX status word in signal c f [1997/09/21] kern/4601 Contrib: userconfig patch to edit SCSI co o [1997/09/25] bin/4629 calendar doesn't print all dates sometime o [1997/09/28] misc/4646 Can't fixit with an NFS-mounted CD. o [1997/09/29] conf/4654 Need to do post-ifconfig commands o [1997/10/04] bin/4688 peter sys/utsname.h SYS_NMLN 32 too small o [1997/10/05] bin/4696 ping hangs on certain unresolvable hosts o [1997/10/15] gnu/4771 diff to correct misleading total bytes in o [1997/10/22] bin/4828 ypxfr makes false assumption about RPC ca o [1997/10/24] kern/4845 Boot complains about disk slices in FAT p o [1997/10/24] kern/4847 imp pccard stuff fails after running Win95 wi o [1997/11/01] bin/4915 peter NFS mounts to linux machine can hang syst o [1997/11/08] bin/4975 quotaon while server very busy causes loc o [1997/11/10] kern/4997 DDB_UNATTENDED doesn't always work o [1997/11/11] kern/5009 ibcs2 emulation o [1997/11/13] bin/5031 gad lpr does not remove original file if -s i o [1997/11/14] kern/5048 dillon Calling shutdown(fd,1) multiple times wil o [1997/11/15] kern/5059 peter mountd, nfsd, etc. fail when lp0 defined o [1997/11/20] kern/5108 dillon pmap_release panics with 'freeing held pa o [1997/11/20] kern/5110 dillon kernel crash & core in pmap_testbit durin o [1997/11/23] bin/5134 cdcontrol will eject a mounted CDROM s [1997/11/28] bin/5173 [PATCH] restore ought to deal with root s s [1997/11/30] i386/5182 bde [PATCH] A patch support high speed serial s [1997/12/11] kern/5275 dillon [PATCH] Added volume (barcode) support to s [1997/12/14] bin/5296 slattach fails creating pidfile with ioct o [1997/12/22] kern/5362 peter mount incorrectly reports / as an NFS exp f [1997/12/30] i386/5398 dillon silo overflows running o [1998/01/02] bin/5410 phantom pkg_info options s [1998/01/03] bin/5419 [PATCH] timed rejects valid networks with s [1998/01/08] bin/5444 [PATCH] ypserv uses wrong dns lookup orde o [1998/01/11] bin/5483 Login(1) clears utmp entry o [1998/01/15] kern/5502 nfsd process usage doesn't get accounted s [1998/01/20] misc/5531 [SUBMISSION] new library function abs2rel s [1998/01/20] kern/5532 [PATCH] Dropped packet counts are inaccur o [1998/01/24] i386/5559 PC-Card joystick ports were not supported o [1998/01/26] kern/5577 bde Unnecessary disk I/O and noatime ffs fixe a [1998/01/28] bin/5591 Trouble with LD_PRELOAD environment varia o [1998/01/31] bin/5609 lpd cannot send long files to HP's JetDir o [1998/02/06] kern/5672 dillon Crash from scsi aborted command 'Overlapp o [1998/02/09] kern/5689 phk sysctl vm.vmmeter - bogus and unsupported o [1998/02/10] bin/5712 /bin/chio code cleaup and option added o [1998/02/14] bin/5745 [PATCH] Add /usr/local/share/mk to defaul o [1998/02/14] bin/5746 bootparamd will not netboot sun 3 compute o [1998/02/14] bin/5747 ld.so error message o [1998/02/17] kern/5768 Shutdown aborts syncing, when sync isn't o [1998/02/18] i386/5784 ibcs2 emulation not handling ioctl(..FION o [1998/02/26] bin/5857 non-functional lpr/lpr o [1998/02/26] kern/5863 Kernel support for sorted SHUTDOWN & SHUT o [1998/03/02] bin/5901 new version of `fmt' o [1998/03/03] bin/5912 kinit exits if no user name specified o [1998/03/06] kern/5931 dma errors in syslog with GUS-max o [1998/03/06] i386/5932 perfmon kernel code should check for non- o [1998/03/11] gnu/5982 no error exit code from tar on child fail o [1998/03/13] bin/6000 kadmin ank uses bad default expiration of o [1998/03/15] bin/6015 indent(1) breaks source with backslash ne o [1998/03/16] kern/6032 poor TCP performance using FDDI over long o [1998/03/22] gnu/6107 obrien gdb should support PRINTF_HAS_LONG_LONG f [1998/03/28] bin/6161 assar 2.2.6 kerberos servers are awfully visibl o [1998/03/31] bin/6183 quota hangups o [1998/03/31] kern/6184 No error if resulting file pos in lseek i o [1998/04/01] bin/6187 peter mounting nfs directories with -b can caus o [1998/04/03] bin/6202 No way to detect removable media. o [1998/04/04] kern/6213 peter NFS-mounted swap (via vnconfig) easily cr o [1998/04/06] bin/6234 ypserv -d is broken o [1998/04/14] kern/6296 IP_HDRINCL sockets force header fields to a [1998/04/14] kern/6299 vmstat -i does not show PnP device interr s [1998/04/15] bin/6314 [PATCH] /usr/sbin/ac modification o [1998/04/16] kern/6318 pppd does not update wtmp on hangup o [1998/04/16] misc/6320 Sometimes nohup isn't good enough. o [1998/04/17] bin/6332 bde /usr/include/time.h doesn't compile with o [1998/04/17] gnu/6338 Gnu tar not working properly with the -G o [1998/04/18] conf/6346 Kernel version strings need to relate to f [1998/04/20] bin/6359 routed does sent router discovry solicita a [1998/04/27] kern/6432 IFF_NOARP does not affect ethernet interf s [1998/05/05] bin/6521 nbm [MAYBE PATCH] "rmdir -p x/y/z/" fails o [1998/05/07] kern/6544 luigi Only get one channel through sound card o [1998/05/11] i386/6595 Old IP address persistent after change o [1998/05/12] misc/6612 will bsd.man.mk can't handle man pages with ": o [1998/05/13] kern/6623 non-root user can crash system if disconn o [1998/05/13] conf/6624 davidn One class with nologin=/etc/nologin: reje o [1998/05/15] kern/6651 peter Possible NFS deadlock clue s [1998/05/17] kern/6668 [PATCH] new driver: Virtual Ethernet driv a [1998/05/26] misc/6759 phk buggy code in libdisk.a's disk.c o [1998/05/26] kern/6769 peter panic: nfs rcvunlock s [1998/05/29] kern/6781 [PATCH] exabyte changer doesn't grok LUNs s [1998/05/29] bin/6785 place for all the default dump flags o [1998/06/01] kern/6820 cd9660_mount NULL pointer deref for no CD o [1998/06/06] kern/6874 accounting prevents transition to multi u o [1998/06/13] misc/6936 phk sysinstall: install from MS-DOS MO divece o [1998/06/18] kern/6981 CD unmount w/o CD in drive can cause pani o [1998/06/22] bin/7022 asami changes to bsd.port.mk to accompany PR bi o [1998/06/22] bin/7023 asami bsd.port.(%|subdir.).mk patches for size f [1998/06/23] i386/7031 Our RocketPort port does not support DEVF s [1998/06/24] kern/7044 [PATCH] WaveLAN (2.4G, ISA, full-length b o [1998/06/25] docs/7065 wosch FreeBSD webpages -> applications, port br s [1998/06/28] i386/7100 integrate pcvt configuration into the /et s [1998/07/01] bin/7136 kerberized telnetd doesn't use gettytab % f [1998/07/02] kern/7146 imp The PCCARD doesnt recognize cards in top s [1998/07/08] kern/7210 [PATCH] od(4) bug fixes and enhancements, s [1998/07/10] misc/7232 murray Suggestion for FreeBSD installation dialo o [1998/07/10] kern/7234 yokota keyboard problems during login immediatel o [1998/07/12] bin/7265 A warning flag is added to ln(1). o [1998/07/13] ports/7268 asami MASTER_SITE_OVERRIDE works more better o [1998/07/14] kern/7282 some old and rarely used drivers have app o [1998/07/15] bin/7287 Incorrect domain name for MAP_UPDATE in m o [1998/07/16] bin/7298 Improvements to ln(1). a [1998/07/19] bin/7324 wosch Suggestions for minor modifications to ad f [1998/07/23] kern/7377 we have a new digiboard driver supporting a [1998/07/31] docs/7456 doc dialog(3) man page outdated f [1998/08/12] kern/7589 Tulip Driver parses SROM contents wrong f [1998/08/13] conf/7606 [PATCH] NIS Makefile.dist: NOPUSH replace s [1998/08/18] bin/7669 libalias does not IRC DCC packets under c o [1998/08/19] gnu/7687 description of default baud rate for cu c o [1998/08/20] kern/7693 Misleading warning in cblock_alloc_cblock o [1998/08/22] kern/7722 Changes to acct format o [1998/08/23] bin/7728 ftpd processes hang o [1998/08/28] misc/7771 Debugging putenv/getenv o [1998/09/03] bin/7828 Add a command line option to cp to make i o [1998/09/05] kern/7837 patches to add a p_auth extension pointer o [1998/09/08] bin/7860 Extra option to pr(1). s [1998/09/08] bin/7868 [almost patch]Morse Code Fixups o [1998/09/11] bin/7895 multiple identical NFS mounts accepted o [1998/09/16] misc/7946 asami ccdconfig gives confusing error when give o [1998/09/17] bin/7962 /usr/bin/ee prompts "save changes" when f o [1998/09/18] bin/7973 gad lpd: Bad control file owner in case of re o [1998/09/19] kern/7990 patch - teach kernel about RB_POWEROFF fl o [1998/09/20] bin/7998 jkh pkg_add seems to have unneeded umask s [1998/09/21] kern/8015 nbm [patch] Some sysctl descriptions for the o [1998/09/24] ports/8042 torstenb If pidentd dies, you must kill all telnet o [1998/09/26] bin/8060 install ignores the +X mode flag o [1998/09/27] conf/8061 profiling utilities seperate from profili o [1998/09/27] ports/8063 asami [PATCH] Add multiple CDROM support to bsd o [1998/09/29] bin/8084 NIT: non-working code in rshd o [1998/10/03] misc/8133 markm [patch] bug in telnetd (Kerberos IV) f [1998/10/08] bin/8211 Script to search kernel for an address o [1998/10/12] bin/8295 order of options in printcap causes some o [1998/10/13] conf/8303 3.0-981009-BETA can't make swap device on o [1998/10/13] kern/8311 kernel panic on de0 o [1998/10/16] misc/8346 Strftime can't generate ISO-8601 timezone o [1998/10/16] kern/8349 [PATCH] Changer definition for SureStore o [1998/10/19] kern/8376 CLOCK_VIRTUAL not implemented o [1998/10/22] kern/8420 __getcwd() from an (forcibly) unmounted f o [1998/10/24] misc/8434 boot.flp /bin/init crashes during probe w o [1998/10/24] i386/8436 boot.flp sysinstall crashes when probing o [1998/10/24] bin/8438 ex/vi: Error: tcsetattr: Interrupted syst o [1998/10/27] i386/8474 repquota does not pick up NIS information o [1998/10/28] bin/8479 Final \'s in /etc/exports did not work in o [1998/10/30] kern/8498 Race condition between unp_gc() and accep o [1998/11/03] bin/8553 /usr/libexec/mail.local doesn't handle "> o [1998/11/07] kern/8589 incorrect spelling for "dependency" and " o [1998/11/07] i386/8598 MAKEDEV fails if not run from current dir o [1998/11/08] kern/8604 ps u gets confused about process start ti o [1998/11/09] bin/8631 pci interrupts are shown on EISA only mac o [1998/11/09] kern/8633 TCP packet via SLIP/CSLIP containing this s [1998/11/12] kern/8661 ports sys/netatalk/at_control.c needs to correc o [1998/11/12] bin/8666 X blocks serial port with getty process o o [1998/11/19] misc/8764 pwd_mkdb is slow on many users o [1998/11/19] docs/8765 dwhite some suggested text for describing passwo o [1998/11/27] i386/8867 murray /stand/sysinstall core dumps (signal 11) o [1998/11/30] bin/8913 negative time values for csh 'time' built o [1998/12/01] kern/8925 options kern file needs AWE_DEFAULT_MEM_S o [1998/12/08] bin/9012 route add -host hostIP -interface localIP o [1998/12/15] kern/9092 DELF raid volumes cause panics under CAM f [1998/12/16] i386/9102 Voxware does not provide /dev/mixer for E o [1998/12/16] ports/9107 asami Addition to bsd.port.mk for searching mul o [1998/12/18] bin/9123 pax can't read tar archives that contain o [1998/12/20] kern/9144 luigi acd driver inconsistency (byte order in C o [1998/12/22] bin/9176 dillon placemark to split mount_ufs out of mount o [1998/12/24] bin/9188 telnet gets stuck in ttydrain() f [1998/12/28] misc/9220 ache nvi: catalog: mistake in Russian error me o [1998/12/29] bin/9233 gmp's mpq_add and mpq_sub are buggy o [1999/01/04] bin/9318 vgrind(1): no JAVA support o [1999/01/04] i386/9319 D-Link DE-528CT poor performance o [1999/01/05] bin/9333 timestamp dump's progress f [1999/01/07] bin/9374 roberto Improved functionality for find(1) o [1999/01/08] kern/9392 Alternate system clock OR kernel stats cl o [1999/01/13] kern/9474 "comcontrol rescan 0:8:0" hangs, causes o o [1999/01/14] bin/9494 new option to prevent mail from sending m o [1999/01/19] kern/9570 dfr ed(4) irq config enhancement o [1999/01/19] bin/9573 ksrvtgt not working o [1999/01/21] kern/9611 MFS calculates the size incorrectly when o [1999/01/22] kern/9619 Restarting mountd kills existing mounts o [1999/01/25] kern/9679 fix for uninterruptible open in portal fi o [1999/01/25] kern/9689 panic in sbdrop(kern/uipc_socket2.c) o [1999/01/26] bin/9711 Fails: cd /usr/bin; gzip file ; mv file. o [1999/01/28] kern/9748 error in queue handling of at_shutdown() a [1999/01/28] bin/9770 kris An openpty(3) auxiliary program o [1999/01/29] i386/9777 luigi Generic AD1816 sound suport in Luigi's pc o [1999/01/30] kern/9791 enhancement for netinet/ip_icmp.c to cont o [1999/01/31] ports/9840 asami patch allows ports to fetch their sources o [1999/02/01] bin/9868 Patch to add "date -a" o [1999/02/01] kern/9869 When using macros out of function, they s o [1999/02/01] conf/9874 idle-timeout facilities in /etc/login.con o [1999/02/03] bin/9902 error in german (and some other) locale s o [1999/02/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/19] bin/10158 Reference to ncheck in quot(8) o [1999/02/19] kern/10160 kldload of umap module panics the system f [1999/02/21] ports/10178 kris USE_SOCKS=YES option broken for security/ a [1999/02/23] misc/10231 inet_addr() doesn't check for illegal val o [1999/02/25] docs/10240 wosch We need a script which check if our web m f [1999/02/26] bin/10274 will make does not understand "lib(obj)" synta o [1999/02/26] bin/10283 Race condition in rc.network o [1999/03/01] docs/10349 phantom For long .Dt fields, rendering is broken- o [1999/03/02] misc/10351 /usr/share/examples/worm is out of date o [1999/03/02] bin/10358 ftp(1) has problems with long pathnames f [1999/03/05] ports/10396 asami SPIN is in the wrong category o [1999/03/06] bin/10444 avoiding lost mail when mail filesystem i a [1999/03/06] kern/10455 pcaudio breakage f [1999/03/07] i386/10465 mdodd Must disable ex0 to install. o [1999/03/12] kern/10563 QIC 40/80 tape drive ft present in versio o [1999/03/13] kern/10574 3.1-stable kernel reports k6 cpu as "\^E" o [1999/03/14] conf/10582 marcel Makefile.upgrade fails with make -j o [1999/03/14] misc/10589 Incorrect assumptions in /etc/security o [1999/03/15] bin/10601 wosch Ownership of symlinks copied by adduser a o [1999/03/15] i386/10608 add Opti Viper-M PCI ID o [1999/03/15] kern/10609 adjtime bug (tv_sec > 2147) and enhanceme o [1999/03/15] bin/10610 New options to date to slowly adjust time o [1999/03/15] bin/10611 timed enhancement o [1999/03/17] kern/10641 groudier Default sync rate in ncr SCSI driver is s o [1999/03/18] kern/10663 hpscan doesn't like 3.1's pt device o [1999/03/18] misc/10667 murray Sysinstall inserts multiple # -- sysinsta o [1999/03/19] gnu/10670 cvs doesn't allow digits in local keyword o [1999/03/19] kern/10673 wpaul Non-ASCII chars on serial console with Re o [1999/03/19] kern/10678 Printing problems using ppc bus o [1999/03/19] ports/10682 asami List mirror sites in MASTER_SITE_BACKUP - o [1999/03/23] kern/10755 de driver says `invalid EESPROM checksum' o [1999/03/25] bin/10793 cvs update modification time check granul o [1999/03/26] misc/10803 joe whois(1) client enchancements a [1999/03/26] misc/10804 joe whois(1) enhancement o [1999/03/29] bin/10856 vty's from ttyvc - ttvf (maybe more?) do o [1999/03/30] bin/10868 BUG in /usr/bin/calendar o [1999/03/30] misc/10871 wst0 fails with Sony SuperStation streami o [1999/03/31] kern/10894 wrong error message in svctcp_create() o [1999/04/02] bin/10924 Extensions to biff(1) o [1999/04/03] bin/10931 biff b o [1999/04/05] ports/10965 obrien lcc-3.6 unable to compile anything o [1999/04/06] bin/10980 With ctags -x no space is left between na o [1999/04/07] docs/10997 doc Problem with query-pr-summary.cgi o [1999/04/08] kern/11020 popen does not honor ISO 9899 syntax o [1999/04/08] bin/11036 markm Perl does not honor -DNOMAN o [1999/04/08] bin/11037 Gencat doesn't properly handle \ddd octal o [1999/04/09] ports/11048 ports variable not initialized in fwtk-lib lead o [1999/04/10] conf/11058 Recent change to rc script causes hang on o [1999/04/11] bin/11085 Per-host configuration for syslog.conf o [1999/04/11] bin/11092 readlink(1) from OpenBSD o [1999/04/13] misc/11111 Error opening terminal: su o [1999/04/13] bin/11114 will make(1) does not work as documented with o [1999/04/13] misc/11126 vt100 termcap entry appears broken o [1999/04/14] ports/11134 hoek existense of /usr/obj/usr/ports/shells/ba o [1999/04/16] i386/11165 IBCS2 don't work correctly with PID_MAX 9 a [1999/04/16] bin/11168 davidn pw(8) usermod does not recognize -w flag o [1999/04/18] bin/11205 Suggestion: move mt(1) to /bin o [1999/04/20] bin/11236 mountd fails to properly check for kernel o [1999/04/20] bin/11248 Shuffle o [1999/04/23] kern/11293 brian FreeBSD's PPP implementation of LQM appea o [1999/04/23] bin/11294 direct logging to other hosts (no local s o [1999/04/27] bin/11360 Allow specification of "search" in resolv o [1999/04/28] kern/11365 plip in Linux mode has trouble with some o [1999/04/29] bin/11387 mount_cd9660 doesn't show rockridge filen o [1999/04/29] bin/11399 Calendar doesn't always handle 'last' day o [1999/04/30] kern/11416 code typo in sequencer.c: "if (!processed o [1999/05/02] misc/11448 Better looking VGA font for iso2 o [1999/05/06] misc/11553 /usr/share/misc/latin1 (new file submissi o [1999/05/09] bin/11608 vnconfig not supporting swap-backed vn de o [1999/05/09] bin/11609 vnconfig -v reports page numbers, not byt s [1999/05/09] ports/11611 billf Update port: net/ntop o [1999/05/10] bin/11623 quot uses 32-bit integers for its calcula o [1999/05/12] bin/11669 gcc 2.7.2.1 gets bad magic error linking o [1999/05/12] bin/11671 "vidfont -r" fails, asking for font size o [1999/05/12] kern/11676 sos PCIless kernel will not compile with ATAP o [1999/05/13] i386/11683 olpt/nlpt name change not in man pages o [1999/05/13] misc/11689 Change "netstat" mode in daily "status-ne o [1999/05/17] bin/11746 Add support for Solaris mailboxes o [1999/05/18] kern/11765 performance bug: network devices fxp & de o [1999/05/18] misc/11767 sppp does not implement VJ compression o [1999/05/19] kern/11789 ELF machine definition missing for ARM o [1999/05/21] bin/11818 Added a feature to ping(8) o [1999/05/21] i386/11829 Boot Failure (Register Dump) with MFSroot o [1999/05/22] misc/11838 xwindows configuration problem o [1999/05/26] bin/11896 cap_mkdb dumps core when non-files passe o [1999/05/26] i386/11898 Connot wirte to floppy on HP OB800CT with o [1999/05/26] bin/11900 Sed(1) fails with MALLOC_OPTIONS set to ' o [1999/05/28] bin/11914 wosch makewhatis during installworld uses /usr/ o [1999/05/29] bin/11929 symorder doesn't work on elf format objec o [1999/05/29] kern/11941 FreeBSD box reboots itself when changing o [1999/05/30] kern/11945 tape problems on -stable, mt bl(ocksize), o [1999/05/31] kern/11968 kldload should call module entry point be o [1999/06/01] i386/11979 Vaio 505DX touchpad not detected as Glide o [1999/06/02] conf/11989 pppd(8) output misplaced 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 a [1999/06/06] bin/12052 sh type builtin appends first path compon o [1999/06/07] kern/12071 [PATCH] large scale IP aliasing o [1999/06/08] i386/12088 Enhancement to ed driver for Linksys 10/1 o [1999/06/09] kern/12095 [PATCH] Buggy ATAPI Zip Drive is not dete o [1999/06/09] bin/12107 Add switch to dump to support multiple du o [1999/06/10] i386/12113 cg ESS1688 support for VoxWare sound driver o [1999/06/10] bin/12115 pppd reports wrong connected duration wit o [1999/06/16] gnu/12238 bc 1.04 crashes with long formula typed i o [1999/06/16] bin/12244 realpath() fails when there is no permiss o [1999/06/17] bin/12263 hoek "more" problems with long filenames o [1999/06/18] bin/12280 LD_IGNORE_MISSING_OBJECTS not honored for o [1999/06/18] kern/12281 active-filter option in pppd doesn't stop o [1999/06/21] conf/12324 jkh Sysinstall's fdisk partition editor is mi o [1999/06/21] ports/12325 asami Adds refetch functionallity to bsd.port.m o [1999/06/21] i386/12326 wdc flag 0x1000 (LBA addressing) prevents o [1999/06/21] kern/12333 ProAudio Spectrum sound card broken model o [1999/06/21] kern/12334 Some ProAudio SPectrum cards do not do DM o [1999/06/21] kern/12335 if_pn.c lacks bridging support; patch enc o [1999/06/22] bin/12357 [PATCH] allow route to create "proxy only s [1999/06/23] bin/12358 ken Patch: "camcontrol help" should go to std o [1999/06/24] i386/12383 make release warns about /dev entries mak o [1999/06/26] bin/12398 fsck in free(): warning: pointer to wrong o [1999/06/27] bin/12421 sysinstall label fails o [1999/06/28] conf/12432 empty amd_flags causes start failure in r o [1999/07/02] docs/12486 mpp listing of (56) utilities in /bin:/sbin:/ o [1999/07/02] bin/12489 /sbin/route exits with 0 on some errors o [1999/07/05] bin/12528 [PATCH] tip's "tipout" child doesn't alwa o [1999/07/06] kern/12543 dg [PATCH] cumulative error counters for fxp o [1999/07/07] bin/12545 kldload(8) should be more sensitive to er o [1999/07/08] ports/12566 billf a guide to pyrotechnics o [1999/07/12] kern/12609 At boottime NFS mounts on a 3.2 client fr f [1999/07/12] misc/12612 ncurses ash shipped with 3.2-R missing sy o [1999/07/13] misc/12633 CMI8330 chip based integrated sound card o [1999/07/15] kern/12655 Kernel config file needs more commenting o [1999/07/16] kern/12668 The kernel clock goes slow with PLIP devi o [1999/07/18] kern/12697 Out of swap handling [PATCH] o [1999/07/20] bin/12712 release/Makefile: mounting /some/dir with o [1999/07/20] kern/12723 imp Unnecessary use of magic numbers in F_[SG o [1999/07/22] misc/12765 cable problem: link down for de0 NICs. f [1999/07/23] bin/12782 roberto xntpd doesn't handle interface aliases pr o [1999/07/24] bin/12789 Confusing error msg when dumping a filesy s [1999/07/25] bin/12801 sheldonh nvi infinite recursion with options "left o [1999/07/25] bin/12806 `sh -e' doesn't parse multi-command lines o [1999/07/28] kern/12855 panic:softdep_flushfiles:looping, caused o [1999/07/30] misc/12887 Problem with "top" command in SMP o [1999/07/30] misc/12888 strange kernel messages when copying file o [1999/07/31] bin/12898 Added a command-line switch to netstat to o [1999/08/03] bin/12939 add flag to quota to suppress NFS quota c o [1999/08/03] bin/12942 m4: len(`') returns `' o [1999/08/04] ports/12952 asami make _PORT_USE touch cookies by variable, o [1999/08/04] bin/12957 rpc.rusersd dumps core with signal 11 whe o [1999/08/04] kern/12966 receiver lockups in vr0 driver o [1999/08/05] bin/12982 last does not support -y option. o [1999/08/05] misc/12983 system hang accessing mounted msdos flopp f [1999/08/05] i386/12993 gibbs "ahc0: Data Parity Error Detected during o [1999/08/07] docs/13020 mpp Manpage capitalization o [1999/08/08] misc/13036 de doesn't work with DEC 21143 based PCI o [1999/08/09] bin/13042 will make doesn't handle wildcards in subdirec o [1999/08/09] bin/13043 minigzip -c option support. o [1999/08/09] i386/13051 after installation on system using COM1, o [1999/08/10] kern/13062 lnc ethernet xmit underflow problem o [1999/08/11] bin/13068 billf Don't stamp out score files! o [1999/08/11] bin/13072 billf Extensions to biff(1) o [1999/08/11] bin/13073 billf Extensions to mesg(1) o [1999/08/11] docs/13079 dwhite new man page describing timeradd() family o [1999/08/12] bin/13108 authunix_create_default includes egid twi o [1999/08/13] bin/13128 billf pkg_delete doesn't handle absolute pathna o [1999/08/15] kern/13161 alfred mounting on top of a mounted file system o [1999/08/15] kern/13164 jhb kthread_exit stops, but doesn't release p o [1999/08/16] misc/13185 "tengo problemas con el pop3" a [1999/08/18] docs/13218 phantom Many manpages still not conformed mdoc(7) o [1999/08/18] kern/13232 panic("rtfree"); when sending bootp reque s [1999/08/19] kern/13252 niced jobs don't behave really nice o [1999/08/19] bin/13254 yp_all error messages have wrong text o [1999/08/20] misc/13266 Removal of #defines and addition of const o [1999/08/20] bin/13278 rogue: killed by fire corrupts score file o [1999/08/21] bin/13309 Fixes to nos-tun o [1999/08/22] misc/13326 additional timeval interfaces for 512MB o [1999/09/23] conf/13918 Termcap entries for VESA modes missing a [1999/09/23] gnu/13921 sheldonh awk -v var=val coredump o [1999/09/23] kern/13924 sb/snd driver broken under 4.0-19990918-C o [1999/09/24] i386/13936 murray No clear indictaion of how much space to o [1999/09/25] docs/13950 doc webpage idea o [1999/09/25] docs/13967 doc FreeBSD Related Publications in Korea o [1999/09/26] kern/13979 [PATCH] add serial number to IDE HD probe o [1999/09/27] kern/14006 pas2_pcm.c pcm playback problem, with fix o [1999/09/29] bin/14040 amd has wrong uname data compile in it o [1999/09/30] i386/14048 ``doscmd -r'' doesn't work o [1999/10/01] ports/14077 dec Multicast not available on multicast enab o [1999/10/01] bin/14078 -stable 'make release' does not work on - o [1999/10/06] docs/14158 doc md5(1) manpage should not claim the md5 a o [1999/10/06] docs/14165 nbm FDP introduction article o [1999/10/06] kern/14166 roger AVER TVPhone o [1999/10/07] bin/14175 route for ip aliasing o [1999/10/07] ports/14182 asami Patch: bsd.port.mk: add plist target o [1999/10/08] kern/14217 bde [PATCH] EXT2FS as a KLD o [1999/10/09] ports/14225 markm Patches for security/pgp5 o [1999/10/09] kern/14240 compilation error: __cmpdi2 unresolved o [1999/10/09] bin/14246 kvm_open and kvm_openfiles not works corr o [1999/10/10] bin/14255 rup and rusers could not deal with many h o [1999/10/11] misc/14258 IP_TOS and IP_TTL sockopt doesn't work on a [1999/10/11] ports/14260 jkoshy new port: www/woda - A Web Oriented Datab o [1999/10/11] misc/14263 phantom There ara no ukrainian locale in stable/c o [1999/10/11] misc/14273 Somewhat bogus entry in termcap o [1999/10/13] ports/14316 markm exmh not recognizing mh and uses too many o [1999/10/13] bin/14318 jkh sysinstall upon install has some counter- o [1999/10/14] ports/14323 markm [PATCH] ports/security/pgp5: Invoked with o [1999/10/14] bin/14330 peter [PATCH] fix clash between /usr/src/contri o [1999/10/14] bin/14335 peter Manual page for ndc gives incorrect path o [1999/10/15] kern/14346 imp Both pccard/cardinfo.h and sys/memrange.h o [1999/10/15] kern/14350 Security enhancement to ICMP o [1999/10/15] kern/14355 perhaps a guard page needed for UP-mode k o [1999/10/15] kern/14356 grog vinum and ``some processes would not die; o [1999/10/16] bin/14361 locate bogusly converts to network byte o o [1999/10/17] kern/14380 [PATCH] if_de workaround for when BIOS do o [1999/10/18] i386/14396 Floppy install of 3.2-release, 3.3-releas o [1999/10/21] bin/14448 ftp-client may not recognize failure, rep o [1999/10/23] misc/14488 kget doesnŽt write the key word "enable" o [1999/10/25] misc/14511 chapss Y2K problem o [1999/10/25] bin/14533 imp pccardd improperly assigns irqs o [1999/10/26] bin/14545 quota reports in K, but header says 'bloc a [1999/10/27] kern/14561 ken ioctl (fd, CDIOCEJECT, (void*) 0) doesn't s [1999/10/27] kern/14562 ken ioctl() codes should be provided for ejec o [1999/10/27] docs/14565 doc ioctl() codes for device type `fd' (flopp o [1999/10/27] i386/14574 ISA based ESS1688 support(partially) for o [1999/10/28] kern/14584 Proposition for improved file permissions o [1999/10/29] misc/14599 pam_kerberosIV.so in the 'krb.??' package o [1999/10/29] kern/14602 struct utsname fields are allocated too s o [1999/10/31] kern/14639 convert proc.p_peers to a queue(3) LIST o [1999/11/01] kern/14646 kern.boottime affected by APM suspend/res o [1999/11/01] bin/14648 markm `make world' now requires -DNOCRYPT in my o [1999/11/02] gnu/14664 tar checks for volno-file even if it shou o [1999/11/02] docs/14677 chris listing of (48) utilities in /bin:/sbin:/ a [1999/11/03] docs/14682 marko lprm(1) unaware of lp(1) Environment Vari o [1999/11/03] bin/14697 grog Exploitable buffer overflow in Vinum (Fre o [1999/11/04] conf/14714 phantom Need support for imap4 and pop3 in /etc/p o [1999/11/06] misc/14746 xf86config shell script leaves arrow keys o [1999/11/08] ports/14783 jmz mgetty 1.1.12 always sets clocal o [1999/11/08] bin/14786 dwmalone [PATCH] tail breaks on large files o [1999/11/08] conf/14791 Optionally change the behaviour of fsck u o [1999/11/08] i386/14793 more fdisk partition types o [1999/11/09] i386/14800 FreeBSD BootMgr not configurable (or at l o [1999/11/10] conf/14810 [PATCH] initialising multiple interfaces a [1999/11/10] bin/14817 strptime(3) '%C' conversion incorrect o [1999/11/11] ports/14824 wosch no '\0' at the end of buffer o [1999/11/11] bin/14829 rc.shutdown is handled unconsistently by o [1999/11/12] kern/14839 RELENG_2_2 boot kernel is large size prob o [1999/11/12] kern/14840 Opti930 doesn't work. o [1999/11/12] kern/14841 adrian IEEE 802 encapsulation for arp on etherne o [1999/11/12] ports/14854 peter port comms/conserver partially ignores ${ o [1999/11/13] conf/14864 I can not get dual Boot to boot FreeBSD f o [1999/11/14] i386/14891 New smbus driver lmsmb a [1999/11/16] ports/14924 markm p5-Apache-Radius with mod_perl broken on o [1999/11/16] bin/14925 getsubopt isn't poisonous enough f [1999/11/16] ports/14933 imp Simple patch to log password attempts on o [1999/11/17] ports/14965 wosch stat port doesn't know fifo file type o [1999/11/18] conf/14973 Digi-multiport serial card? f [1999/11/18] conf/14974 jhb In RELENG_3, fdisk reports sizes incorrec o [1999/11/18] ports/14977 peter conserver doesn't support speed over than o [1999/11/19] misc/14999 phantom ISO8859-5 locale missing from RELENG_3 o [1999/11/19] misc/15000 ftp(1) needs to send HTTP/1.1 Host: heade o [1999/11/20] conf/15010 "client" firewall configuration kills inc o [1999/11/21] ports/15021 asami some port installs fail for non-root user o [1999/11/21] kern/15022 jkh Suggestion for enhancement: move isp firm o [1999/11/21] conf/15038 jkh In sysinstall, easy to not notice that se o [1999/11/25] kern/15095 TCP's advertised window is not scaled imm o [1999/11/27] i386/15119 pcm sound driver dma problems with isa-pn o [1999/11/28] ports/15142 jmz Added DIST_SUBDIR to print/tex port o [1999/11/29] misc/15168 Adding tracklist support to fdformat o [1999/11/29] kern/15175 tcp_input() fails to update m->m_pkthdr.l o [1999/11/30] bin/15182 "* Wed-1 event" in calendar produces "31 o [1999/11/30] misc/15196 shutdown -h no longer synching disks, thu o [1999/12/01] misc/15205 billf Addition to /usr/games/random o [1999/12/02] i386/15218 kernel says: raw partition size != slice o [1999/12/02] bin/15229 joe mtree - different from mtree in NetBSD 1. o [1999/12/05] kern/15280 kernel panic during FreeBSD install o [1999/12/06] bin/15301 Bug in /usr/sbin/syslogd: strips 8th bits o [1999/12/06] misc/15304 bmah proposed modifications to pkg_version o [1999/12/07] misc/15339 fdformat should exit non-zero when user c a [1999/12/09] ports/15387 billf ethereal's packet-smb.c calls str*() func o [1999/12/10] bin/15410 edquota -p copies current usage as well a o [1999/12/11] bin/15416 addr2line is unable to find line numbers o [1999/12/11] bin/15418 tput(1) doesn't work with new libncurses. o [1999/12/11] misc/15421 initgroups(3) spits out messages to stder o [1999/12/12] kern/15435 Attempts to execute programs from a noexe o [1999/12/12] kern/15436 syscons extension: "propellers" o [1999/12/13] bin/15456 Usage of ktrace(1) is invalid a [1999/12/13] bin/15458 sort(1) doesn't sort correctly in some ca o [1999/12/13] bin/15470 Proposed change to comments in /etc/named o [1999/12/14] ports/15477 ports wwwstat-2.01 port is not Y2K compliant: 1 o [1999/12/14] misc/15480 Change-request for /usr/src/usr.sbin/cdco o [1999/12/14] kern/15489 running fstat causes a bus error o [1999/12/15] kern/15492 Patch to fixup bridging support for 2.2-S o [1999/12/15] kern/15493 Patch to enable bridging support for if_c o [1999/12/15] ports/15495 asami Add "addsum" target to bsd.port.mk o [1999/12/15] bin/15496 killall(1) limited to 16 character proces o [1999/12/15] bin/15497 NIS does not deal well with comments o [1999/12/15] bin/15510 df(1) does not lineup with large filesyst o [1999/12/15] kern/15511 Cannot scroll up after panic? o [1999/12/17] i386/15528 doscmd exec function fail. o [1999/12/17] i386/15531 doscmd DOS function 0a fail when DL is 0 o [1999/12/17] kern/15532 Reboot just to kill a print job? o [1999/12/17] misc/15546 Need to enable LBA flag for large IDE dis o [1999/12/17] i386/15547 discmd function 51 ( get ps ) fail o [1999/12/18] misc/15555 some enhancements for uudecode o [1999/12/20] bin/15593 [SECURITY] ustrcpy() buffer overflow in d s [1999/12/20] ports/15594 will kscd-1.2.7 in -STABLE ports not playing A o [1999/12/20] bin/15596 netstat -rn does'n fit on a 80 chars wide o [1999/12/21] kern/15608 acd0 / cd0 give inconsistent errors on em o [1999/12/21] conf/15612 jkh Re-Scan devices in 3.4-Release options me o [1999/12/21] i386/15619 standard pppd doesn't authenticate users o [1999/12/22] kern/15636 dillon reminder to self for MAP_ VM defines o [1999/12/23] misc/15658 edquota misinterprets usernames as uid ra o [1999/12/24] bin/15663 yokota none o [1999/12/28] bin/15739 repquota report format fix for better par o [1999/12/28] conf/15748 jkh sysinstall - upgrade a [2000/01/01] docs/15821 asmodai Wrong device names in manpages for lpt(4) o [2000/01/01] kern/15827 Power-Off causes Trap 9 in kernel o [2000/01/01] bin/15830 imp PATCH: rdump over ssh o [2000/01/02] kern/15838 Conversion tables in msdosfs_conv.c are b s [2000/01/02] bin/15852 asmodai predefined \*(DT string has Y2K bug o [2000/01/02] bin/15853 tar --newer-mtime flag has Y2K bug o [2000/01/03] bin/15855 comsat(8) failes to open system mail box o [2000/01/03] kern/15860 patch to make default kern.maxfilesperpro o [2000/01/03] misc/15871 small CVS directories copied to PicoBSD filesys o [2000/01/03] misc/15874 small PicoBSD can only update files from within o [2000/01/03] misc/15876 small PicoBSD message of the day problems o [2000/01/05] misc/15908 patch to fix argument mismatch in getnano s [2000/01/06] docs/15959 phantom misplaced lines in psignal.9 man page o [2000/01/08] kern/15983 n_hibma C++ keywords in kernel header files o [2000/01/08] ports/15992 joe [PATCH] Add a default for $SUP in the /us o [2000/01/08] ports/15993 asami [PATCH]No line-feed in warnings from ``ma o [2000/01/09] misc/16003 sysinstall crashes if it gets more than o o [2000/01/09] bin/16005 alex add new option to date(1) o [2000/01/10] kern/16021 To support SMP on NEC PC98, call mp_probe o [2000/01/10] kern/16023 Add an idletime counter for sppp, just li s [2000/01/10] bin/16048 asmodai "file" command cannot recognize LaTeX2e f o [2000/01/10] kern/16049 Connor Drive fails cache sync o [2000/01/11] conf/16076 markm [PATCH] pam_ssh examples for /etc/pam.con o [2000/01/14] bin/16119 ctm_rmail does not honor umask o [2000/01/15] ports/16139 billf Ntop port fails to find lsof o [2000/01/18] kern/16169 The U.S. Robotics 56K Voice Int modem is o [2000/01/18] misc/16189 Advansys ASB-3940U2W SCSI Card does not w o [2000/01/18] kern/16195 16-bit uid/gid struct in sys/ipc.h o [2000/01/19] bin/16206 PATCH: vmstat column alignment, %ll not s o [2000/01/19] misc/16208 ps/2 mouse problem o [2000/01/19] misc/16212 in /stand/sysinstall -- cannot exit menu o [2000/01/20] ports/16220 obrien -frepo is broken in gcc-devel and egcs po o [2000/01/21] ports/16252 asami bsd.port.mk: Add bzip2 support for distri o [2000/01/21] bin/16275 steve approve send-pr(1) (attach files, use env o [2000/01/22] kern/16292 performance problem of divert socket o [2000/01/23] bin/16316 Enhancement: allow .fakeid to be a named o [2000/01/23] bin/16320 fstat -f confuses some partitions o [2000/01/24] kern/16339 vm/vm_page.h PQ_L2_SIZE options too limit o [2000/01/25] ports/16347 sobomax Inconsistencies between Java ports o [2000/01/25] kern/16360 kernel timestamping of ICMP echo requests o [2000/01/26] bin/16364 [PATCH] Add msdosfs and cd9660 support to f [2000/01/26] ports/16374 ache Ports fix: news/tin o [2000/01/27] i386/16411 DUMP freezes system if uucico or samba wr o [2000/01/28] bin/16422 newfs always make root's / directory o [2000/01/30] bin/16480 locked accounts and adduser o [2000/02/06] conf/16536 size of /var/spool/uucp/Log, a UUCP logfi o [2000/02/06] kern/16551 cosmetic cleanup in sys/dev/ppbus/pcfcloc o [2000/02/07] ports/16570 asami ports toplevel README.html has bad link t o [2000/02/08] conf/16584 jkh Hostname field too small during install ( o [2000/02/09] bin/16619 trimdomain does not handle peer domains o [2000/02/09] bin/16625 Incorrect information in routed(8) error o [2000/02/10] ports/16640 jfitz rwhois port install tries to copy wrong l o [2000/02/10] bin/16649 /bin/lastcomm: output contains extraneous o [2000/02/11] bin/16657 /bin/hostname: New feature to return subc o [2000/02/13] bin/16705 ftpd doesn't support -h option o [2000/02/14] kern/16709 PATCH: make poll work for -STABLE's Audio o [2000/02/14] kern/16713 grog Vinum: some processes would not die; ps a o [2000/02/14] misc/16719 /stand/sysinstall does not redraw the scr o [2000/02/14] i386/16722 squid (a 3.x binary) won't run under 4.0- o [2000/02/15] bin/16726 rpc.rstatd from inetd sig11's o [2000/02/16] kern/16745 Kernel Makefile doesn't sanitise PATH [PA o [2000/02/16] kern/16765 Add support for mark/space parity o [2000/02/18] kern/16815 dillon Cannot "rm -rf" for not-existed file on r o [2000/02/19] misc/16830 markm PAM-related error messages on -current o [2000/02/20] misc/16839 dan MFC Matthew D. Fuller's patch to deal wit o [2000/02/20] misc/16840 dan MFC: Matthew D. Fuller's teach pkg_info t o [2000/02/20] misc/16843 jkh Knob for release/Makefile to prevent dele o [2000/02/21] ports/16872 max Update port: japanese/pine o [2000/02/21] bin/16880 davidn [PATCH] pw(8) hardcodes directory creatio o [2000/02/22] bin/16924 tmpfile(3) ignores TMPDIR and always uses o [2000/02/22] bin/16926 kris [PATCH] banner doesn't allocate space fo o [2000/02/22] kern/16928 dynamic sysctl enhancement o [2000/02/23] misc/16938 FTP does not fully parse ftp:// URLs o [2000/02/24] misc/16969 yokota /kernel: psmintr: out of sync (0000 != 00 o [2000/02/24] bin/16971 Exiting from /usr/sbin/login does not res o [2000/02/26] kern/17003 dscheck() overzealously protects labels o o [2000/02/26] kern/17007 This is a code for implementing ethernet o [2000/02/27] conf/17022 rwatson newsyslog.conf not in sync with syslog.co o [2000/02/27] alpha/17032 alpha strtod(3) floating exception o [2000/02/28] misc/17045 Cannot install on Siemens Primergy 870 (d o [2000/02/28] kern/17058 mjacob SCSI tape driver can't drive devs that ca o [2000/02/29] bin/17077 yokota write() error o [2000/03/01] docs/17104 phantom gethostbyname(3) contains a reference to o [2000/03/01] kern/17109 darrenr fastroute crashes for lo0 udp o [2000/03/02] misc/17132 bugs in xdr functions o [2000/03/02] ports/17139 billf PLIST correction for Apache13-fp o [2000/03/04] misc/17185 main ncurses headerfile is installed as c f [2000/03/04] i386/17198 3.4 doesn't boot from CD on dell 3500 o [2000/03/04] gnu/17202 uucp grade patch and policy o [2000/03/05] conf/17207 disktab support for Fuji-MO o [2000/03/05] gnu/17214 obrien gdb doesn't honor auto-solib-add o [2000/03/06] kern/17222 Avance Logic ALS/100 sound card doesn't r o [2000/03/06] kern/17224 4.0-20000214-CURRENT: pcm/csa sound - sha o [2000/03/06] bin/17226 markm ftpd can't use PAM a [2000/03/06] ports/17241 mharo Update: japanese/tkdesk o [2000/03/07] ports/17255 pst Update the GNATS port to 3.113 o [2000/03/08] misc/17270 FreeBSD should support nsswitch.conf, or o [2000/03/08] misc/17272 deleting a file that a program has open c o [2000/03/08] misc/17275 asami make release fails when making readmes fo o [2000/03/09] bin/17289 [PATCH] wrong permissions on /var/run/pri o [2000/03/09] ports/17293 hosokawa samba port installs man-pages twice, fail o [2000/03/09] kern/17297 Panic when mounting a CDRom o [2000/03/13] kern/17358 PCI ids for Aureal 8810, 8820 and 8830 au o [2000/03/13] bin/17363 crontab(1) leaves files in /var/cron/tabs o [2000/03/13] bin/17368 billf Bad error messaging from mountd(8) o [2000/03/14] misc/17377 "Checking for rejected mail hosts:" gives o [2000/03/14] kern/17385 Support for IIT's "XC87SLC-33" numeric pr o [2000/03/15] bin/17389 /bin/cp failed on some synthetic vfs o [2000/03/15] bin/17395 This is a replacement for the perl versio o [2000/03/15] misc/17399 FTPing into machine slows it down o [2000/03/16] bin/17405 one more fstat patch o [2000/03/16] alpha/17411 alpha No link/activity lights Alpha ethernet ca o [2000/03/16] kern/17425 nsouch [PATCH] fix two small printing errors in o [2000/03/17] bin/17430 jkh Missing Czech keyboard in /stand/sysinsta o [2000/03/17] kern/17438 cg newpcm volume too low on Soundblaster Pro o [2000/03/18] ports/17471 rse presence of devel/pth-devel port breaks w o [2000/03/18] ports/17479 asami bsd.port.mk: PARALLEL_BUILD o [2000/03/18] bin/17480 m4 changecom doesn't work as documented o [2000/03/19] ports/17489 ports Zephyr port is broken with Kerberos enabl o [2000/03/19] ports/17490 markm ports fail for some gnu programs as the g o [2000/03/19] kern/17493 Updates to use FreeBSD as a firewall and o [2000/03/20] i386/17505 Problems with with SMP on Compaq proliant f [2000/03/20] docs/17521 doc Proposed FAQ on assembly programming o [2000/03/21] bin/17532 "host" only prints A records by default o [2000/03/22] bin/17546 murray Sysinstall does not let you configure NIS o [2000/03/24] kern/17581 devices failing probing do so silently o [2000/03/25] docs/17598 doc installworld over NFS documentation no lo o [2000/03/25] ports/17602 jmz Port fix x11/XFree86-4.0 (make deinstall o [2000/03/26] bin/17611 f77 man page needs updated o [2000/03/27] bin/17619 pax cannot read all tar files created by o [2000/03/27] bin/17623 date(1) -v doesn't handle time changes (D o [2000/03/27] i386/17628 mdodd 3c509b hangs on running ifconfig o [2000/03/28] bin/17640 lseek();read() -> pread() in dump and fsc o [2000/03/29] bin/17679 wpaul wicontrol should take multiple args on co o [2000/03/30] kern/17688 es_callback() in /sys/pci/es1370.c does n o [2000/03/30] bin/17694 wcstombs(), mbstowcs() not complying with o [2000/03/30] conf/17699 Support for dutch keyboards in the consol o [2000/03/31] bin/17720 presence of old /dev entries causes sysin o [2000/04/01] kern/17728 probe Macronix 98715/98715A 10/100BaseTX f [2000/04/01] misc/17737 dwhite Major repair of PicoBSD o [2000/04/01] bin/17739 Traceroute will not compile without IPSEC o [2000/04/02] kern/17751 wpaul rl driver loaded as module when it alread f [2000/04/02] kern/17758 green Make sl driver dynamicallly expandable. o [2000/04/03] bin/17772 TFTP can not handle big files (> 32MBytes o [2000/04/03] kern/17774 doc stray irq7 o [2000/04/03] kern/17775 4.0-STABLE: Adaptec-155-ATM at en0 causi o [2000/04/04] kern/17796 cg pcm drivers failes to load for Neomagic o o [2000/04/04] ports/17801 jake new port: devel/binutils11 o [2000/04/04] ports/17802 jake port update: devel/gcc11 o [2000/04/04] ports/17803 jake new port: devel/gdb11 o [2000/04/05] gnu/17812 gprof gives error: o [2000/04/05] kern/17819 adrian Build ports on nfs & union mount panics k f [2000/04/06] bin/17824 sheldonh [PATCH] /usr/bin/column has arithmetic ov o [2000/04/06] bin/17830 /usr/bin/login called from command line d o [2000/04/07] misc/17848 Patches to remove support for CSRG libm f [2000/04/07] docs/17855 alex PPP Primer is out-of-date o [2000/04/07] misc/17857 During a sysinstall kernel sources say th o [2000/04/08] bin/17864 PATCH: sys/resource.h needs sys/time.h fo o [2000/04/09] misc/17889 certain type of DNS queries seem to get d o [2000/04/10] ports/17897 chuckr transfig does not compile with XFree86-4. o [2000/04/10] i386/17906 le ethernet device doesn't work in 4.0 o [2000/04/10] kern/17907 cg Audio record levels are too low o [2000/04/10] docs/17916 alex [PATCH] rewrite of cutting-edge section o a [2000/04/11] bin/17939 sheldonh routed calls ntohs twice on the same fiel o [2000/04/12] ports/17952 torstenb [PATCH] tcp_wrappers port to give better o [2000/04/12] misc/17957 installer navigation is confusing o [2000/04/13] misc/17983 Minikernel build instructions do not work o [2000/04/13] conf/17993 improving on the default /etc/amd.map o [2000/04/13] bin/17997 nvi doesn't set variables on startup (via o [2000/04/14] kern/18001 PCM - Yamaha OPL-SAx doesn't have treble/ o [2000/04/14] misc/18014 Machine doesn't boot without keyboard att o [2000/04/17] ports/18057 jmz make install for XFree86-4 fails on alpha o [2000/04/18] bin/18080 davidn [PATCH] pw documentation updated to refle o [2000/04/18] ports/18083 rse Gratuitous Apache package inconsistencies o [2000/04/19] misc/18097 What is this: LIBRATION not specified - u o [2000/04/19] bin/18100 update to src/usr.bin/from/from.c for mul o [2000/04/20] misc/18109 if pw_shell is empty(/bin/sh is assumed), s [2000/04/20] bin/18114 ken msps from iostat is wrong o [2000/04/21] misc/18131 MAX_IFS in pppd/sys-bsd.c too small for m a [2000/04/22] conf/18152 /etc/exports should suggest how to get mo o [2000/04/22] i386/18154 [PATCH] Add cpu class and features flags o [2000/04/22] bin/18157 pnpinfo only prints first io-start for ev o [2000/04/22] conf/18164 roberto /var/log/ntpstats fill with stat files by o [2000/04/23] misc/18175 strtok(3) example doesn't work. o [2000/04/23] ports/18184 ache GNU Patch 2.5.4 Port o [2000/04/24] bin/18193 Bogus diagnostics by nslookup(1) o [2000/04/26] kern/18232 SMP + APM configerd 4.0 kernel did panic o [2000/04/26] docs/18243 alex wrong description of -p option in sh(1) m o [2000/04/27] misc/18255 makewhatis weekly job doesn't look at /us o [2000/04/27] ports/18256 sada www/netscape4* lacks Fortify on alpha o [2000/04/27] ports/18259 obrien ElectricFence installation breaks if the o [2000/04/28] kern/18271 simplelock: klds not portable across UP a o [2000/04/28] bin/18275 proposed TMPDIR setting and /usr/bin/mkin o [2000/04/28] kern/18289 CPU Time exceeded delivered multiple time o [2000/04/29] ports/18291 asami make makesum fetches new sources, make fe o [2000/04/29] kern/18293 lack of versapad mouse wheel emulation o [2000/04/29] kern/18295 Audio is gone after hibernation o [2000/04/30] bin/18319 "dump" fails with "cannot reopen disk: in o [2000/05/01] bin/18326 dwmalone no /usr/libdata/lint/llib-lc.ln o [2000/05/01] bin/18329 ben futimes() and lutimes() missing from ' cannot be used in "via" o [2000/05/29] ports/18896 jseger Tcl "info hostname" command returns chop- o [2000/05/30] kern/18909 dwmalone select(2) timeout limited to 100000000 se a [2000/05/30] ports/18911 sada New port - plptools o [2000/05/31] kern/18928 options ROOTDENAME=xxx on kernel config f o [2000/06/01] bin/18946 jhb Add support for enabling USB daemon from o [2000/06/01] ports/18960 asami Add USE_APACHE to bsd.port.mk for Apache o [2000/06/01] bin/18961 green sshd does not print before motd o [2000/06/02] bin/18967 ypserv not linked with tcp wrappers o [2000/06/02] misc/18969 sound card not recognized by probe o [2000/06/03] misc/18987 Problems with Comtrol RocketPort o [2000/06/03] bin/18992 log packets blocked by filter rules o [2000/06/03] misc/18997 markm Kerberos5 CFLAGS needed o [2000/06/04] conf/19001 Delayed fsck + mount of insignificant fil o [2000/06/05] docs/19010 doc Bad144 obsoletion by 4.0 is undocumented; o [2000/06/05] i386/19012 No volume run out for /var and lead my Fr o [2000/06/05] misc/19037 Keyboard not detected on new install o [2000/06/06] bin/19056 yacc in 3.4 and 4.0 reports "maximum tabl o [2000/06/06] bin/19057 offer of patch to uname that produces pre f [2000/06/06] ports/19061 kuriyama ports/textproc/lotusxsl the source zip pa f [2000/06/06] kern/19063 rnordier VGA keyboard sometimes fails to work in b o [2000/06/06] bin/19071 fmt not folding very long lines o [2000/06/07] misc/19088 STL from SGI for FreeBSD 3.4 o [2000/06/07] ports/19112 asami files with names something,v in patches d o [2000/06/08] bin/19118 vmstat€Ç avm€Èfre€ÎÃÍ€¬ÀÜ€¹€ë¡£ o [2000/06/08] ports/19119 jmz un-forbid x11/XFree86-4 and unbreak its x o [2000/06/08] misc/19124 ps(1) to support SysV-style options? o [2000/06/08] kern/19127 kernel panic on mount on burncd'd device o [2000/06/08] misc/19129 AMI Raid Express 200 card extremely slow o [2000/06/08] kern/19132 ATM HARP support apparently does not supp o [2000/06/09] kern/19156 jkh Enable the doFS.sh to run in arbitrary lo o [2000/06/09] kern/19158 U.S.Robotics 56K FAX INT not recognize co f [2000/06/10] conf/19178 ume add reject routes and comments in /etc/rc o [2000/06/10] bin/19183 more(1) doesn't handle redraw correctly o [2000/06/11] ports/19212 ports New port py-amk-crypto-0.13 o [2000/06/11] kern/19213 SC_DFLT_FONT compile option breaks kernel o [2000/06/12] ports/19227 ports Installation problem: apache13-ssl port f [2000/06/13] conf/19236 sanpei not-existing PCMCI cards in pccard.conf.s o [2000/06/13] bin/19239 login allows users to login remotely with o [2000/06/13] misc/19246 ports Poor error message when fetching files wi o [2000/06/13] ports/19253 dirk mod_php4 has pkg dependency when not usin o [2000/06/14] ports/19270 asami Ports build mechanism doesn't check wheth o [2000/06/15] ports/19325 tom ports/mail/ezmlm-idx: mysql & pgsql suppo o [2000/06/15] gnu/19327 obrien Fix to build 'a.out' binary. o [2000/06/16] bin/19337 obrien c89(1) not POSIX compliant (-l lib) and m o [2000/06/17] bin/19355 fstat gives signal 10 (SIGBUS) when outpu o [2000/06/18] misc/19367 markm /etc/defaults/make.conf lists wrong value o [2000/06/18] bin/19369 Inadequate error reporting in "mount" com o [2000/06/19] misc/19391 marcel Evilness with Linux Terminus, causes X to o [2000/06/20] ports/19403 ports portsifying of the glide3 source for dri o [2000/06/20] bin/19404 /usr/bin/error should be included in the o [2000/06/20] misc/19406 setenv() allocates memory which is not fr o [2000/06/20] i386/19410 spontaneous reboot when esd runs on a -ST o [2000/06/21] conf/19413 Too few MCAM SCSI devices in /dev o [2000/06/21] bin/19422 users can overflow argv to make ps segfau o [2000/06/22] kern/19436 when using vlanX interface arp ageing wor o [2000/06/22] conf/19442 can't install on diverse harddisks. o [2000/06/22] ports/19448 markm filename input broken o [2000/06/22] ports/19456 chuckr the sp port is hardwired to install it's o [2000/06/22] ports/19457 vanilla The gimp port has /usr/local/bin hardwire o [2000/06/23] misc/19462 using HARP atm driver on FreeBSD3.4 freez o [2000/06/23] misc/19467 green OpenSSH (as an rsync tunnel) blocks forev o [2000/06/23] docs/19481 doc Serial Communications chapter in Handbook o [2000/06/24] kern/19490 faith0 network device has high number of o [2000/06/25] kern/19497 Adaptec AHA-1530P PNP scsi card is not re o [2000/06/25] ports/19498 kris ssh (1) instal fails o [2000/06/26] bin/19514 patch to prevent tail'ing directories o [2000/06/26] ports/19523 billf Update port: graphics/gd o [2000/06/26] bin/19532 cdcontrol does not handle EOF on stdin pr o [2000/06/26] kern/19535 adrian procfs_rlimit tidyup o [2000/06/26] bin/19536 patch to prevent head'ing directories o [2000/06/27] kern/19541 Want to marge ds1 sound card driver from o [2000/06/27] kern/19546 No CD audio o [2000/06/27] kern/19553 "panic: zone: entry not free" in namei() o [2000/06/28] bin/19558 amd doesn't know whether NFS feature is a o [2000/06/28] misc/19564 PNP-Id for ESS1681 o [2000/06/28] ports/19571 tg python/TKinter busy waits f [2000/06/28] conf/19573 Dot Files for Optional Shells o [2000/06/29] ports/19585 obrien bounce port misconfiguration o [2000/06/29] ports/19591 issei ssh2 port ignores 'ignorenologin' from lo o [2000/06/29] bin/19592 imp pccard_ether does not honor dhcp_{program f [2000/06/30] ports/19594 trevor update port: qrash o [2000/06/30] bin/19598 traceroutes default of 30 Hops is too low o [2000/07/01] kern/19624 make {DFL,MAX}SSIZ kernel options o [2000/07/01] bin/19635 add -c for grand total to df(1), like du( o [2000/07/02] gnu/19642 kbyanc patch to merge OpenBSD changes to patch(1 o [2000/07/02] ports/19650 asami python package causes segmentation fault o [2000/07/03] misc/19670 jkh Incorrect duplicate in fortunes2 o [2000/07/03] bin/19683 green mount displays incorrect mount point on f o [2000/07/03] kern/19686 yokota splash screen fails o [2000/07/03] kern/19688 jlemon Some boundry checking KASSERTS in network o [2000/07/05] kern/19706 Framing error on PC/NET 32 also used in o o [2000/07/05] bin/19719 imp pccard_ether lacks the start_if hooks as o [2000/07/05] kern/19720 kbyanc more sysctl signed-ness patches o [2000/07/05] misc/19725 4.0-STABLE: sys/boot/ficl build fails if o [2000/07/06] gnu/19733 obrien GDB 4.18 is not GDB 4.18 o [2000/07/07] bin/19755 nologin not configurable o [2000/07/07] kern/19756 sheldonh Inability to use linux extended partition o [2000/07/07] 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/09] misc/19805 not installable on old-fashioned dx50 o [2000/07/09] ports/19806 ports error message w/xcdplayer: ioctl (cdromr f [2000/07/09] kern/19807 incorrect dates o [2000/07/10] ports/19823 abe gnucache build depends on unimplemented s o [2000/07/10] kern/19827 yokota psm flag bit9(NOIDPROBE) doesn't work cor o [2000/07/10] misc/19837 murray Run Fit it floppy from serial port o [2000/07/11] conf/19849 MAKEDEV still defaults to da0X instead of o [2000/07/11] kern/19863 markm Non-blocking IO not supported on /dev/ran o [2000/07/12] ports/19868 asami modify ports/Mk/bsd.port.mk to remove ALL o [2000/07/12] kern/19871 select on named pipes always returns 'ava o [2000/07/13] kern/19887 mjacob Boot hang while scanning SCSI bus o [2000/07/13] i386/19890 davidn Stallion serial driver support missing [p o [2000/07/14] kern/19913 des add SYN+FIN counter o [2000/07/15] kern/19966 new syscons screensaver o [2000/07/16] i386/19972 Add of pckg (several pkgs) aborted, error o [2000/07/17] ports/19977 rse mod_php3 and mod_php4 ports doesn't recog o [2000/07/17] docs/19981 doc Indonesian translations o [2000/07/18] gnu/20004 obrien FBSD4 gcc __attribute__(constructor) not o [2000/07/18] misc/20024 jake [PATCH] queue(3) concatenation macros o [2000/07/19] bin/20042 "rsh -t" doesn't timeout if rcmd(3) never o [2000/07/20] bin/20054 ftpd: rotating _PATH_FTPDSTATFILE losts x o [2000/07/23] docs/20121 jim Better user ppp documentation in man page o [2000/07/24] misc/20139 msmith Simple typo in src/share/examples/ppi/ppi o [2000/07/24] ports/20145 dburr improving the devel/SN port o [2000/07/24] misc/20159 strftime() can't produce ISO8601 format t o [2000/07/24] kern/20161 cg Integrate VIA VT82C686 AC'97 audio driver o [2000/07/24] bin/20165 markm PERL_THREADED=true fails; "yes" works; ma o [2000/07/24] misc/20166 billf Corrections & additions to games/quiz/dat o [2000/07/25] ports/20179 nbm Follow up on ports/20168 o [2000/07/25] bin/20188 brian tcpdump -d enables promisc mode on tun0 a f [2000/07/26] kern/20198 luigi log setup of dynamic rules for ipfw o [2000/07/26] bin/20204 ps more doesn't handle 8-bit characters prop o [2000/07/27] kern/20214 dec kernel routing bug for nexthop is routed o [2000/07/28] misc/20254 jhb BTX loader 1.00 can not recognize floppy o [2000/07/28] kern/20255 cg [PATCH] resume from suspend breaks pcm o [2000/07/28] ports/20270 reg libtool needlessly runs ldconfig after in o [2000/07/28] kern/20278 cg YMF724 initialization fails on my environ f [2000/07/29] bin/20295 fdisk -s give incorrect disk size o [2000/07/29] kern/20297 cg Joystick is not enabled with es1370 based o [2000/07/30] ports/20301 billf New port: irc/ircd-hybrid6 o [2000/07/31] bin/20311 markm src/release/Makefile: broken CHECKSUM.MD5 o [2000/07/31] misc/20326 marcel [PATCH] installkernel fails if DESTDIR is o [2000/07/31] misc/20333 sheldonh 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 o [2000/08/02] bin/20371 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/03] kern/20393 dillon processes get stuck in vmwait instead of o [2000/08/04] docs/20400 doc Building a kernel with debugging info sec o [2000/08/04] bin/20402 ache 4.1R's ls conflicts with Emacs' dired mod o [2000/08/04] misc/20408 Distribution CDs will not boot on IBM Thi o [2000/08/04] kern/20410 sio support for high speed NS16550A, ST16 o [2000/08/05] conf/20436 asmodai Can't make only cd0 under 4.1-STABLE o [2000/08/06] kern/20448 luigi expired dynamic rules shown in "ipfw get" o [2000/08/07] misc/20457 davidn pw command doesn't generate random passwo o [2000/08/07] kern/20473 itojun socket(AF_INET, SOCK_RAW, 4) no longer wo o [2000/08/07] misc/20474 jkh Spelling fixes to fortune data file o [2000/08/07] misc/20475 mjacob SES/SAF-TE giving bogus temps on JMR ELEC o [2000/08/08] conf/20479 updates for rc.conf.5 manpage o [2000/08/08] i386/20485 AdvanSys ISA probe problems in 4.1-R GENE o [2000/08/08] ports/20491 ports AbiWord-0.7.10 fails to compile on FreeBS o [2000/08/09] conf/20498 brian All FreeBSD systems trigger massive late- o [2000/08/09] ports/20499 obrien [PATCH] conserver port doesn't like MD5 c o [2000/08/09] bin/20501 extra flag to dump to offline autoloaders f [2000/08/09] misc/20504 assar [PATCH] ssh (openssh) cannot connect to s o [2000/08/10] ports/20520 will New port: lang/mercury o [2000/08/10] bin/20527 ume redundant binaries for similar IPv4 and I o [2000/08/10] docs/20528 doc sysconf(3) manpage doesn't mention posix. s [2000/08/10] kern/20529 billf gigabit cards fail to link o [2000/08/11] i386/20537 msmith HP NetRAID controller error when rebootin o [2000/08/12] bin/20569 sos libvgl tries to free global array o [2000/08/13] ports/20587 kiri Update port: upsd-2.0.1.6 o [2000/08/13] ports/20588 kiri New port: upsd100-2.0.1.6(sysutils/upsd10 o [2000/08/14] bin/20600 net getpeereid obtains credentials from conne o [2000/08/14] ports/20601 ports DESTDIR and /etc/shells o [2000/08/14] ports/20610 ports New port of cgoban2 o [2000/08/14] kern/20611 VLAN parent device does not count VLAN ou o [2000/08/15] bin/20613 des fetch -T n is not timeout correctly when o [2000/08/15] ports/20627 jseger tcl83 build is broken o [2000/08/16] ports/20644 ports Installation of port DAP requires compat3 o [2000/08/16] i386/20660 wpaul if_wi provides 802.11 src and dst, not et o [2000/08/16] ports/20662 ports New port of viewkit o [2000/08/16] kern/20670 imp No PC-CARD Slots; Device Not Configured o [2000/08/17] ports/20678 asami make SORTED_MASTER_SITES_CMD variable ove o [2000/08/17] bin/20681 des [PATCH] show service names in netstat and o [2000/08/18] bin/20696 Pkg_add does not make use of HTTP_PROXY / o [2000/08/18] conf/20698 cg pcm device o [2000/08/20] ports/20730 peter Update Squid 2.3-STABLE4 with latest vend o [2000/08/20] i386/20731 cg syslog reports pcm0: hwptr went backwards o [2000/08/20] docs/20738 doc correction and modification to clocks(7) o [2000/08/21] bin/20742 ps Weird problem with 'more' on 4-1-STABLE o [2000/08/22] conf/20774 sheldonh 'NFS access cache time=2' is not a daemon o [2000/08/22] kern/20781 ESS Solo is not listed in supported sound o [2000/08/22] ports/20793 ports (socket-server) of clisp does not create o [2000/08/23] docs/20794 doc Request 2 good documents under people.fre o [2000/08/23] ports/20795 msmith FBSD 4.x: Citrix client with drive mappin o [2000/08/23] bin/20799 davidn top's problem o [2000/08/23] i386/20803 mdodd ep0 driver finds additional "shadow" ep c o [2000/08/23] kern/20804 deadlocking when using vnode disk file an o [2000/08/23] misc/20808 ps netstat -m doesn't use -N or -M arguments o [2000/08/24] bin/20824 ftpd returns, "ad0s1a: not a plain file." o [2000/08/24] bin/20827 billf pkg_add -r only fetchs one-level deep dep o [2000/08/24] misc/20830 lile kernel link problems with Olicom token ri o [2000/08/25] i386/20845 Cyclades cy driver incompatible with Cycl o [2000/08/25] ports/20849 dec fix port: net/gated s [2000/08/26] bin/20858 sos libvgl does not handle fonts wider than 8 o [2000/08/26] kern/20878 wpaul Patch to add support for the 3c556B MiniP o [2000/08/26] 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/27] misc/20891 cg Suspend/Resume does not work for the YMF7 o [2000/08/28] bin/20908 murray /stand/sysinstall too limited in selectio o [2000/08/29] misc/20920 yokota window(1) interferes with screensaver o [2000/08/29] misc/20921 yokota `Splash' screen fails to display splash.b f [2000/08/29] kern/20927 ume dmesg output: looutput: mbuf allocation f o [2000/08/30] bin/20944 ru natd enhancements, default config file an o [2000/08/30] docs/20950 kris [PATCH] openssl.1 has bogus section title o [2000/08/31] ports/20964 ports New port: databases/hypersonicsql f [2000/09/01] kern/20992 kern/tty_subr.c, b_to_q to a clist with n f [2000/09/02] ports/20995 sheldonh freeciv-civ gtk make problem. o [2000/09/02] bin/20996 kris permissions on /usr/bin/opiepasswd a [2000/09/02] kern/21000 sheldonh 4.1-STABLE doesn't have card ID f [2000/09/02] ports/21003 ports New Port, modification of tcopy o [2000/09/02] bin/21008 gad Fix for lpr's handling of lots of jobs in a [2000/09/04] ports/21021 ports graphics/quickpics bogus colorspace error o [2000/09/04] bin/21024 pow() ERANGE bug o [2000/09/04] ports/21038 jseger CFengine doesn't install info files o [2000/09/04] kern/21051 Updating 4.1-RELEASE to -current fails be o [2000/09/05] conf/21059 marcel `make -jN buildkernel' can't keep source o [2000/09/05] conf/21066 Proposed change in rc scripts o [2000/09/05] misc/21070 marcel default setting of ${SUP} in Makefile.inc o [2000/09/06] bin/21074 davidn chkgrp vs group(5) inconsistency f [2000/09/06] bin/21075 sheldonh top: can't allocate sufficient memory o [2000/09/06] bin/21080 mjacob dump doesn't use eject tape device correc o [2000/09/06] bin/21086 joe Annoying little bug using ls -G with o [2000/09/08] ports/21120 grog Update port: x11-servers/x2x o [2000/09/08] gnu/21128 a proposed patch for uucp package o [2000/09/09] bin/21142 [PATCH] avoid errors from "make objlink" o [2000/09/09] bin/21144 des [PATCH] fetch(1): don't bonk if ftp SIZE o [2000/09/09] kern/21154 Change the name of *_saver.ko to saver_*. o [2000/09/09] kern/21156 yokota [PATCH] inconsistency in scmouse vs xterm s [2000/09/10] bin/21178 ken voltag selector, and unload support for c f [2000/09/10] ports/21179 ports New port: math/gul-vdog-qt o [2000/09/11] ports/21211 rse the startup file installed by apache-mods o [2000/09/12] kern/21222 wrong behavior of concurrent mmap()s on N o [2000/09/12] kern/21229 Proper value for vfs.nfs.access_cache_tim o [2000/09/12] misc/21230 jhb The URL for splash window is gone o [2000/09/12] bin/21231 roberto the ntp HTML docs don't have the images f [2000/09/12] kern/21240 mbufs allocated to data is huge number in o [2000/09/12] kern/21242 Koutech PCI dual port serial card patch f [2000/09/12] bin/21246 nvi's -c flag does no do what it is docum o [2000/09/13] misc/21255 phk /sbin/md5 suggestion o [2000/09/14] bin/21261 burncd blank fails o [2000/09/14] misc/21265 Not a bug, say: feature? o [2000/09/14] misc/21273 PLIP Configuration in sysinstall is broke o [2000/09/15] misc/21287 "make all" for a jail build fails at lib/ o [2000/09/15] ports/21291 ports New port: Free EcmaScript Interpreter (fe o [2000/09/15] misc/21298 tftpd problem "Socket operation on non-so o [2000/09/16] kern/21308 Sound Blaster 16 (using pcm) and new DEVF o [2000/09/16] misc/21310 Telnetd locks up when trying to connect v o [2000/09/16] bin/21312 more incorrectly redraws screen on xterm f [2000/09/16] ports/21313 ports vmwarIPv6 and vmware2 panic: Fatal trap 1 o [2000/09/16] bin/21315 Shells often behave oddly when executing f [2000/09/18] ports/21346 ports ports/biology/platon o [2000/09/18] ports/21351 jhb ports/emulators/bfe sourcetarball no long o [2000/09/18] misc/21354 FreeBSD4.1 + SMP + vinum = crashes o [2000/09/18] ports/21356 ports New port: mbone/rat30 (rat-3.0.35), the s s [2000/09/18] ports/21371 bp Update port: net/mars_nwe to 0.99.20 o [2000/09/18] misc/21385 yokota About daemon_saver o [2000/09/18] ports/21389 ports g2c libraries and compatibility for DJGPP o [2000/09/18] kern/21391 WARNING messages occur when bpf is used w o [2000/09/19] bin/21394 [PATCH] MAKEDEV creates rocketport specia o [2000/09/19] kern/21402 marcel Linuxulator: getpgid(0) fails o [2000/09/19] kern/21405 Default module patch mismatch between ker o [2000/09/19] kern/21409 The ID for the VIA KT133 chipset is not i o [2000/09/20] ports/21435 okazaki New port Jakarta Ant (A Java based build o [2000/09/20] bin/21436 pkg_install will not compile without erro o [2000/09/21] i386/21452 cg Add speaker volume adjusting support for o [2000/09/21] ports/21460 jseger Patch net/trafshow: Allow showing ipv6 p o [2000/09/22] bin/21476 ftp in 4.1-STABLE fails on http:// URLs o [2000/09/22] conf/21489 /etc/pccard_ether feature request o [2000/09/22] misc/21494 ftpd doesn't count o [2000/09/23] ports/21504 ports New port: korean/tin o [2000/09/23] ports/21507 lioux New port emulators/sope (Playstation(tm) o [2000/09/23] misc/21512 cdrdao fails to build with SCGLIB o [2000/09/24] ports/21515 ports pine4 complains about wrong permissions o o [2000/09/24] ports/21516 ports New FreeBSD port for Fuzz o [2000/09/24] bin/21519 sys/dir.h should be deprecated some more o [2000/09/24] kern/21524 Crashs while using talk with another loca o [2000/09/24] misc/21528 kris installworld fails in secure/usr.bin/open o [2000/09/24] bin/21531 csh/tcsh provide no way to see/adjust new o [2000/09/24] ports/21532 ports No formal mechanism in place for discussi o [2000/09/24] ports/21533 ports A homebrewer's recipe calculator o [2000/09/25] misc/21536 jkh [PATCH] Add Hungarian FTP mirror to sysin a [2000/09/25] docs/21542 asmodai sigaction(2) man page is misleading o [2000/09/25] bin/21546 netstat -rn output needs netmask info add o [2000/09/25] conf/21551 /etc/services needs a kpop entry f [2000/09/26] bin/21570 dougb [PATCH] Add -r option to /usr/bin/mail, q o [2000/09/26] ports/21584 ports mpd whines if kernel has option NETGRAPH o [2000/09/26] misc/21587 install problem in 4.1-Stable o [2000/09/27] ports/21598 ports port of wm x10 controller o [2000/09/28] ports/21621 reg Update port: devel/libtool to 1.3.5 o [2000/09/28] kern/21623 wpaul Chipset SiS630E / NIC SiS 900 s [2000/09/28] ports/21636 ade gnomelibs PLIST bug o [2000/09/29] misc/21644 /usr/include/sys/mman.h uses a type defin f [2000/09/29] conf/21649 [Patch] rc.conf knob for unaligned access o [2000/09/30] bin/21659 Berkeley db library is statically compile o [2000/09/30] ports/21664 ports port of gmail gnome email-client o [2000/10/01] i386/21672 AMD Duron Rev. A0 reports incorrect L2 ca o [2000/10/01] misc/21675 Better and more disktab entries for MO dr o [2000/10/02] conf/21695 ifconfig_XXX_aliasY in rc.conf; Y must be o [2000/10/02] docs/21700 bmah Description of SysKonnect Gigabit Etherne o [2000/10/02] docs/21712 dan core(5) manpage fails to mention kern.sug o [2000/10/02] misc/21715 The freebsd mail list digifier loses MIME o [2000/10/02] ports/21719 nbm New Port: Courier Mail Suite o [2000/10/03] conf/21722 The mixer settings are lost on sysetm reb o [2000/10/03] bin/21725 mtree follows symlinks! o [2000/10/03] misc/21728 KDE won't start with kernel_securelevel=" o [2000/10/03] kern/21737 sendto returns systematically EINVAL with o [2000/10/04] bin/21751 ken libcam's cam_real_open_device() may lose o [2000/10/04] kern/21752 Infortrend IFT-3102 doesn't like SCSI Cac o [2000/10/04] kern/21754 Sound stops working when NetGear USB Devi o [2000/10/04] ports/21759 ports New port: py-BisonGen-0.5.0 o [2000/10/05] ports/21765 asami I cat't make ports using pw_gid) != typeof(group->g o [2000/10/22] bin/22211 typoed tar -c clobbers archives o [2000/10/22] kern/22228 Undocumented LINT option 'PANIC_REBOOT_WA s [2000/10/23] kern/22244 wollman [MFC] Uninitialized field in radix_node s o [2000/10/23] ports/22259 bash: root directory change directory bug o [2000/10/24] bin/22270 [patch] /usr/bin/top wraps wrong w/SMP on o [2000/10/24] bin/22279 stock perl5 build does not support %Z spe o [2000/10/25] ports/22288 ports mod_perl dependancy missing from p5-HTML- o [2000/10/25] ports/22295 ports lua 4.0 beta port o [2000/10/25] ports/22296 ports New port: cannadic - Dictionary of Canna o [2000/10/25] ports/22303 ports New port: urlendec. Contains urlencode an o [2000/10/26] conf/22308 mounting NFS during boot blocks if host m o [2000/10/26] ports/22316 hosokawa [PATCH] samba port in a jail(2) environme o [2000/10/26] misc/22332 request to add vtys to /etc/ttys o [2000/10/26] docs/22333 doc share/doc/smm/07.lpd building moved in 3. o [2000/10/26] ports/22336 ports New port: scrot-0.1 o [2000/10/26] docs/22338 asmodai ugen(4) man page missing o [2000/10/27] bin/22347 dd copies incorrect data after 2^32 bytes o [2000/10/27] bin/22351 sed(1) fails with backslash on buffer bou f [2000/10/28] ports/22379 ports New port: libudbc f [2000/10/28] ports/22381 ports New port: misc/mango o [2000/10/29] ports/22393 ports New port: Ipe-5.0: Interactive Picture Ed o [2000/10/29] ports/22395 dburr update of ports/audio/napster o [2000/10/29] ports/22399 msmith PIB 1.2 still looks for MD5 info in files o [2000/10/30] ports/22412 taoka two extraneous ports and one name change o [2000/10/30] misc/22428 FTP: Mirror-TR down s [2000/10/30] docs/22430 darrenr ipresend man page typo o [2000/10/30] ports/22431 ports New Port: o [2000/10/30] misc/22434 problem with certain NIC's using rl on au o [2000/10/31] bin/22442 [PATCH] Increase speed of split(1) o [2000/10/31] kern/22466 yokota function prototype inconsist in kbdreg.h o [2000/11/01] docs/22470 doc man 3 msgrcv's BUGS section needs updatin o [2000/11/02] ports/22550 obrien Patch for conserver for log file rotation o [2000/11/03] misc/22577 486SLC2-50MHz won't boot 3.x or 4.x flopp o [2000/11/03] misc/22582 unused descr[] var in sysctl.c:RELENG_4 o [2000/11/03] ports/22590 jseger graphics/xpaint writes pixmaps to stdout o [2000/11/04] kern/22602 CDRoms checked during shutdown (umount) o [2000/11/04] ports/22605 ports xmcd port depends on mailx port o [2000/11/04] ports/22611 ports New port: audio/gdrdao o [2000/11/04] bin/22612 crontab -e failures o [2000/11/05] kern/22617 Incorrect PnP ID for ALS120 game/joystick o [2000/11/05] i386/22633 when kernel boots smp scsi fails o [2000/11/06] ports/22637 peter [PATCH] squid 2.3 fix o [2000/11/06] conf/22645 Cannot override "ignore" in /etc/mail.rc o [2000/11/07] misc/22660 termcap kterm entry tc=xterm is wrong o [2000/11/07] bin/22672 Add "next" and "prev" commands to cdcontr f [2000/11/07] ports/22683 ports New port net/dnip-update o [2000/11/08] misc/22696 picobsd build with router configuration c o [2000/11/08] ports/22698 nbm Ports' rc.d files should use rc.conf o [2000/11/08] docs/22701 doc lists missing from search options o [2000/11/08] ports/22704 ports cyrus and cyrus-sasl both install pwcheck f [2000/11/08] ports/22706 ports Update driver o [2000/11/08] kern/22709 yokota daemon_saver.c fails compile with -Wall - o [2000/11/08] kern/22710 yokota snake_saver and star_saver fail to compil o [2000/11/09] ports/22716 billf [PATCH] ports/net/ucd-snmp o [2000/11/09] conf/22718 sysinstall in FreeBSD 3.5.1 generates bad o [2000/11/09] ports/22721 paul libldap clash between openldap and ldapsd o [2000/11/09] ports/22729 billf net/ucd-snmp cannot be made on current o [2000/11/09] bin/22730 tcpslice doesn't handle long file offsets o [2000/11/10] ports/22735 ports KGhostView doesn't recognize spaces in fi o [2000/11/10] ports/22752 okazaki remove qclock port o [2000/11/10] kern/22754 mmap man page states that non-page aligne o [2000/11/10] alpha/22759 alpha zip cannot work with existing .zip archiv o [2000/11/11] ports/22773 ports Port of GNU Eiffel compiler SmallEiffel o [2000/11/11] docs/22778 doc Typo's in About.txt-Layout.txt o [2000/11/12] ports/22794 ports New port: ccdoc 0.7a (second try) o [2000/11/12] kern/22801 Modem 'OMRON ME5614ISA' is not recognized o [2000/11/13] ports/22819 nbm ports/www/zope-ptk missing file "pkg-mess o [2000/11/13] alpha/22824 alpha unaligned accesses from dhclient f [2000/11/13] bin/22828 darrenr patch to enable use of LOG_SECURITY in ip o [2000/11/14] conf/22859 darrenr rc.network should start ipf/ipnat AFTER p o [2000/11/14] bin/22860 [PATCH] adduser & friends with '$' in use o [2000/11/14] docs/22861 doc newsyslog man page is misleading and inco o [2000/11/15] ports/22865 ports New port: devel/omniORBpy o [2000/11/15] kern/22868 getsockname may return an incorrect addre o [2000/11/15] bin/22871 burncd fails o [2000/11/15] misc/22873 Perl's core'h conflicts with ncurses.h f [2000/11/15] ports/22878 ports piewm doesn't build a [2000/11/16] ports/22883 ade p5-Audio-CD port not functioning correctl o [2000/11/16] misc/22885 /usr/share/misc/units.lib contains typo o [2000/11/16] bin/22897 su doesnt't compile without LOGIN_CAP def o [2000/11/16] ports/22898 kbyanc cclient port should add SSL support o [2000/11/16] i386/22900 patch: Adds Brand ID support to src/sys/i o [2000/11/16] kern/22905 Netgear FA311 Not supported. 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] ports/22918 kevlo Kpresenter (part of Koffice2) crashes wit o [2000/11/17] bin/22933 green Typographical error in ssh.1 o [2000/11/18] i386/22940 Can't install 4.1.1 on ad0s2 if da0 exist o [2000/11/18] ports/22952 ports NEW PORT : eggdrop o [2000/11/19] kern/22967 stallion driver (stl) shipped with FBSD 4 f [2000/11/20] ports/22970 ports New Port : textproc/py2html o [2000/11/20] ports/22976 ports New port: mimelib, C++ class fro encoding f [2000/11/20] ports/22995 grog Update port: x11-servers/x2x (fix ports/2 o [2000/11/21] bin/23008 df -k reports incorrect amount of disk ta o [2000/11/21] kern/23011 UDMA 66 not working on 4.1.1-Release ? f [2000/11/22] conf/23040 ume ipv6_defaultrouter is not work fine o [2000/11/23] bin/23052 ghelmer [PATCH] rmuser fails to remove at jobs o [2000/11/23] ports/23053 ports New devel port, cppadvio; request for loc o [2000/11/23] ports/23060 steve lsof warning msg o [2000/11/23] conf/23063 [PATCH] for static ARP tables in rc.netwo o [2000/11/24] bin/23081 Touchpad on NEC Versa laptop is unusable o [2000/11/24] bin/23082 dwmalone ntpd has only one reference-clock parser o [2000/11/24] misc/23084 mount_nfs hangs self with some NFS server f [2000/11/25] i386/23089 Kernel panic in network code o [2000/11/25] bin/23097 Enhance WEP some more including ability t o [2000/11/25] kern/23099 jlemon tail -f from a fifo goes into a busy loop o [2000/11/26] misc/23118 static link-level route bug? o [2000/11/26] kern/23123 IP options reveal IPstealth mode. Just t o [2000/11/27] bin/23132 jkh Another dup in games/fortune/datfiles/for o [2000/11/27] i386/23141 ad1816 audio driver produces noise. o [2000/11/27] misc/23148 getopt(3) works non-intuitively? o [2000/11/27] bin/23150 sscanf is used on a buffer that is not NU f [2000/11/28] ports/23151 ports NEW PORT : sysutils/wake-on-lan o [2000/11/28] misc/23162 threaded perl incorrectly suggests -lc wh f [2000/11/28] ports/23172 jseger update cfengine port 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/11/30] kern/23191 alfred [PATCH] Fix for panics in lookup() after o [2000/12/01] bin/23204 length of salt in crypt() is not the same o [2000/12/01] kern/23216 [PATCH] PCIOCGETCONF ioctl requires write o [2000/12/01] bin/23217 [PATCH] 'pciconf -l' opens /dev/pci with o [2000/12/01] docs/23230 doc missing index.html links a [2000/12/02] ports/23232 ports gettext/xview port collision o [2000/12/02] bin/23233 kris Reincorporate /usr/bin/error in the FreeB o [2000/12/02] ports/23234 se port update request: xblast o [2000/12/03] docs/23251 doc exports(5) man page erroneous in 4.2-STAB o [2000/12/03] bin/23254 yacc accepts bad grammer o [2000/12/04] ports/23259 asami Please remove the following redundant por f [2000/12/04] ports/23261 kevlo kdelibs2 from ports in not compiling f [2000/12/04] ports/23267 sada New port submittion: devel/lxr (lxr-0.3) o [2000/12/04] ports/23287 asami allow system-local patches for ports o [2000/12/04] ports/23288 imp MD5 checksum of socks5 distfile has chang o [2000/12/04] docs/23292 doc /etc/dumpdates is not documented in secti o [2000/12/05] ports/23294 ports new port: deskutils/kdepim o [2000/12/05] misc/23296 /usr/src/etc/isdn/Makefile doesn't instal o [2000/12/05] ports/23298 ports New port: lame-devel 3.87 o [2000/12/05] ports/23301 ports ports/graphics/opendx does not compile du o [2000/12/05] kern/23304 POSIX clock_gettime, clock_getres return o [2000/12/05] ports/23306 jseger Upgrade TCL 8.3.1 to 8.3.2 o [2000/12/05] ports/23313 mi new port: ukrainian/ispell o [2000/12/05] kern/23314 aic driver fails to detect Adaptec 1520B o [2000/12/05] kern/23315 Some "valid" Joliet discs cannot be read o [2000/12/06] bin/23321 [PATCH] reduce redundant code in /bin/cat o [2000/12/06] misc/23322 Addition / Alteration to Handbook/FAQ o [2000/12/06] docs/23324 doc add information to FAQ on how to use whee o [2000/12/06] ports/23332 obrien urlview's url_handler.sh written in bash o [2000/12/06] misc/23339 roberto ntp version is 4.0.99b -- current version o [2000/12/06] ports/23341 billf ucd-snmp fails to build on -current o [2000/12/07] kern/23353 fcntl(F_GETLK) return l_pid equal to -1 f o [2000/12/07] misc/23354 reg Mozilla M18 segfaults on Release 4.2 o [2000/12/07] i386/23359 Installation diskettes don't boot o [2000/12/07] misc/23362 tcpdump wrong on sppp CISCO_HDLC encoded o [2000/12/07] misc/23366 mmap() non conforming o [2000/12/07] gnu/23367 some src/gnu Makefiles are missing $FreeB o [2000/12/09] conf/23402 sysinstall upgrade ought to check partiti o [2000/12/09] kern/23409 CD-RW driver fails unless CD in drive at o [2000/12/09] ports/23410 obrien [PATCH] FreeBSD throws away information o o [2000/12/10] kern/23414 fail to probe my pnp modem o [2000/12/10] conf/23416 Adding SSL services and rsync into /etc/s o [2000/12/10] ports/23417 jmz [PATCH] XFree4-port needs patches to buil o [2000/12/10] conf/23419 'make buildkernel' doesn't work in isolat o [2000/12/10] kern/23446 billf ipfw fragment logging misses first frag o [2000/12/11] misc/23463 when the FreeBSD installation menu shows o [2000/12/11] ports/23465 scrappy Port Update: net/xicq o [2000/12/11] bin/23472 obrien gdb weirdness on programs compiled with - o [2000/12/11] docs/23488 doc A manpage for section 7 regarding a Toron o [2000/12/11] kern/23493 race in 'make -jN buildkernel' pollutes / o [2000/12/12] ports/23499 ports [NEW PORT]: Two LaTeX macro package ports o [2000/12/12] ports/23504 jseger Small stylistic fix in ports/editors/emac o [2000/12/12] ports/23507 ports new port: linux-q3ademo o [2000/12/12] bin/23509 Augment dev_mkdb to allow different direc o [2000/12/13] kern/23520 sb0 old style audio support in 4.2-RELEAS a [2000/12/13] ports/23524 dougb New port: rdesktop - RDP client for Windo o [2000/12/13] bin/23526 Patch for bin/9529 (ftp completion cant h o [2000/12/13] misc/23531 PERL_THREADED should specify -lc_r in Con o [2000/12/13] misc/23539 marcel make installworld from nfs mounted /usr/s o [2000/12/14] ports/23543 imp Update net/socks5 to install sample confi o [2000/12/14] kern/23546 tanimura [PATCH] csa DMA-interrupt problem o [2000/12/14] docs/23559 doc missing manpage for hsearch libc function o [2000/12/14] ports/23560 asami linux-jdk/Makefile assumes default `patch o [2000/12/15] i386/23562 telnetd doesn't show message in file spec a [2000/12/15] ports/23578 ade GNUCash 1.4.9 fails to install on FreeBSD o [2000/12/15] ports/23581 asami Updates to bsd.port.mk to detect changing o [2000/12/17] gnu/23598 Merge libgcc_r with libgcc o [2000/12/17] kern/23600 agp.ko module cannot be loaded o [2000/12/17] ports/23602 asami Recursive distclean for bsd.port.mk w/pat f [2000/12/18] ports/23608 kbyanc cclient-maildir does not install headers o [2000/12/18] misc/23612 patch for PicoBSD building (with diff) o [2000/12/18] conf/23616 IC-CARD+ not properly recognized by pccar o [2000/12/18] ports/23632 ports QuakeForge --with-svga= not works o [2000/12/18] ports/23634 ports QuakeForge --with-svga= not works o [2000/12/18] bin/23635 [PATCH] whois enhancement - smarter whois o [2000/12/18] ports/23637 mharo Update ftp/proftpd update pkg-plist o [2000/12/19] i386/23643 dlopen() can't link to symbols in main pr o [2000/12/19] ports/23649 ports the port of mod_php4 does not install cor o [2000/12/19] ports/23658 ports NEW PORT: net/cryptcat - twofish armored o [2000/12/19] ports/23660 ache Update russian/elm.language update pkg-pl o [2000/12/19] ports/23663 obrien Update chineese/cxterm update pkg-plist a o [2000/12/19] ports/23665 obrien Update editors/vim5 update pkg-plist o [2000/12/19] ports/23666 obrien Update editors/vim6 update pkg-plist o [2000/12/19] ports/23668 sobomax Update graphics/utah-glx update pkg-plist o [2000/12/20] ports/23685 ports Fxtv always starts with apectlock true o [2000/12/20] kern/23692 GENERIC kernel config on 4.2 changes defa o [2000/12/20] kern/23700 AMD 756 Power Management Controller / SMB o [2000/12/21] kern/23708 VESA support broken in 4.1-RELEASE with A o [2000/12/21] misc/23709 Changing from DES to MD5 passwords does n o [2000/12/21] bin/23710 [PATCH] there is no termcap(3) manpage pe o [2000/12/21] ports/23711 ports new ports: mail/ftrack (FTN Messages trac o [2000/12/21] bin/23712 Unused variable CDB in /usr/src/usr.sbin/ o [2000/12/21] ports/23734 jhb [PATCH] emulators/bfe has unfetchable dis o [2000/12/21] ports/23735 obrien [PATCH] emulators/dlx has unfetchable dis f [2000/12/21] ports/23739 ports [PATCH] irc/tircproxy has unfetchable dis o [2000/12/22] ports/23748 ports New port: Matrix like console screensaver o [2000/12/22] ports/23751 ports [PATCH] audio/openal has unfetchable dist f [2000/12/22] ports/23753 ports [PATCH] audio/mxv has unfetchable distfil o [2000/12/22] ports/23762 jseger Update port: misc/git to 4.3.20 o [2000/12/22] misc/23766 /etc/periodic/daily/440.status-mailq does o [2000/12/22] docs/23767 doc ifconfig(8) manual page does not document o [2000/12/22] kern/23768 I can't install sound driver in kernel o [2000/12/22] ports/23770 ports There is not an IPv6 + SSL lynx o [2000/12/22] ports/23779 ports New port (audio/qtecasound): Graphical us o [2000/12/22] ports/23780 ports New port (audio/ecawave): Simple graphica o [2000/12/22] ports/23782 nik www/sitecopy port broken o [2000/12/23] bin/23811 gshapiro Patch to Sendmail Mail Filter (Milter) AP f [2000/12/24] ports/23813 ports tirc doesn't compile from ports o [2000/12/24] kern/23814 .au sound files < 528 bytes actual data d f [2000/12/24] bin/23817 gshapiro Sendmail 8.11 ignores host lookup order w o [2000/12/24] docs/23822 dgrimes mtree entries for German X11 man pages s [2000/12/25] docs/23823 alex gethostbyname2 man page is inaccurate o [2000/12/26] ports/23863 ports Update math/Scilab o [2000/12/26] kern/23864 2 New USB dev types o [2000/12/26] kern/23877 [PATCH] New device entry for IO DATA USB- o [2000/12/27] ports/23893 max Update port: textproc/nfbtrans to 7.58 o [2000/12/27] ports/23903 ports New Port: py-4Suite-0.10.0 o [2000/12/28] ports/23904 ports Extipl is a partition-selectable boot loa o [2000/12/28] bin/23908 repquota format fix o [2000/12/28] bin/23912 underflow of cnt in vs_paint() by O_NUMBE o [2000/12/28] ports/23917 mi replacing sane with sane-backends and san o [2000/12/28] ports/23923 kiri [PATCH] editors/muggy has unfetchable dis f [2000/12/28] ports/23937 nectar security/krb5 does not read /etc/login.co o [2000/12/29] bin/23944 Patch for ftpd to add a cd after the chro o [2000/12/30] ports/23953 torstenb update port/astro/sunclock and change mas f [2000/12/30] ports/23961 ports New port: textproc/p5-Text-FixedLength-Ex o [2000/12/31] ports/23982 obrien [PATCH] net/queso has unfetchable distfil o [2001/01/01] kern/23989 NEW CODE: AMD 756 Power Management / SMBu f [2001/01/02] ports/24021 ports New port: textproc/p5-Sort-PolySort (Gene o [2001/01/02] misc/24034 "CWD" discloses the full "real" path in a o [2001/01/02] docs/24035 doc ptrace(2) PT_STEP incorrect documentation o [2001/01/03] misc/24048 ru natd/libalias doesn't always properly mod o [2001/01/03] ports/24055 kiri [PATCH] mail/prom-wl has unfetchable dist o [2001/01/03] ports/24060 ports New port: Java Platform Debugger Architec o [2001/01/03] bin/24063 /bin/stty ek doesnt work despite man page o [2001/01/04] bin/24066 gdb can't detach from programs linked wit o [2001/01/04] ports/24071 ports security/digest - md5,md4,sha1,ripemd160 o [2001/01/04] ports/24076 okazaki Update port: devel/libgii 0.6 to 0.7 o [2001/01/04] ports/24077 okazaki Update port: graphics/libggi 2.0b2.1 to 2 o [2001/01/05] ports/24086 ports [NEW PORT] sysutils/mksunbootcd - make sp o [2001/01/06] ports/24099 ports New Port: x11-wm/kappdock o [2001/01/06] bin/24102 will Fix for make(1) null suffixes after clean o [2001/01/06] bin/24106 ftpd does not compile without virtual hos o [2001/01/06] ports/24107 ports New port: dnrd: A proxy DNS daemon o [2001/01/06] ports/24114 ports New port: libtar: A library for manipulat o [2001/01/06] ports/24120 asami "/usr/ports/Mk/bsd.port.mk", line 626: In o [2001/01/06] misc/24121 linprocfs setup/startup lost when port mo o [2001/01/07] misc/24132 gdb output is wrong (same as #13427 ?) o [2001/01/07] ports/24135 ports Update port: mail/imap-uw o [2001/01/07] kern/24141 emu10k1 has trouble playing non-44.1KHz s o [2001/01/08] bin/24146 obrien indent broken by commit from 09/12/2000 o [2001/01/08] i386/24150 network traffic appears bottlecaped. o [2001/01/08] ports/24161 ports new port: OpenVRML 0.9.0 o [2001/01/08] ports/24163 grog ports/benchmarks/rawio checksum error o [2001/01/08] misc/24166 Allow Date to generate an RFC-822 Complia o [2001/01/08] ports/24167 sobomax pango fails to build on -current o [2001/01/08] ports/24174 kris Update of cfengine port to 1.6.1 o [2001/01/09] ports/24178 ports NEW PORT: net/netsed, alters packets in r o [2001/01/09] ports/24185 obrien ports/devel/sfio: use MASTER_SITE_NETBSD o [2001/01/09] ports/24202 ports New port: mtrxmath: A small tool for matr o [2001/01/09] ports/24207 jseger port "tcl83" cannot load shared objects o [2001/01/10] ports/24214 asami [PATCH] verbose 'make index' o [2001/01/10] misc/24226 PicoBSD do not build on 5.0-current o [2001/01/10] bin/24230 getcwd(3) manual page has wrong STANDARDS o [2001/01/10] ports/24237 ports new port: kde-i18n-pl o [2001/01/10] conf/24239 rc.conf ipv6 missing options o [2001/01/11] ports/24251 ports Update ports: sysutils/extipl o [2001/01/11] misc/24254 Security hole in use of kbdcontrol o [2001/01/11] ports/24255 ports New port: dircproxy: A detachable irc pro o [2001/01/11] ports/24257 ports New port: sms_client: A simple UNIX SMS c o [2001/01/11] ports/24259 steve port of open-motif on make install compla o [2001/01/11] misc/24261 pthread_mutex_lock/pthread_mutex_unlock d o [2001/01/11] ports/24262 ports new port: slrn-pl, slrn with polish langu o [2001/01/11] misc/24265 Linksys LNE100TX V.4.1 MAC address not de o [2001/01/11] ports/24267 andreas ghostscript6 port compilation fails o [2001/01/12] ports/24268 ports new port : gmp3 o [2001/01/12] kern/24269 Failure to setup DMA on ATA HDs (Alladin o [2001/01/12] i386/24272 ATAPI CD "open" causes "ticks" as ATA dri o [2001/01/12] ports/24291 ports New port: ant build tool for Java o [2001/01/12] ports/24292 asami update-patches target in ports/Mk/bsd.por o [2001/01/12] ports/24299 ports Configure the synaptics touchpad. o [2001/01/13] docs/24305 doc man page syscons has reference to non exi o [2001/01/13] ports/24309 ports New port: wapsh: A system to allow remote o [2001/01/13] ports/24312 ports New Port: poppwd, a Eudora password chang o [2001/01/13] ports/24313 ports New port: firebird (InterBase spin-off) o [2001/01/13] misc/24318 burncd fails on fixate a [2001/01/14] misc/24324 Greek console support o [2001/01/14] ports/24333 ports New port: html2wml: A CGI that can do on- o [2001/01/14] ports/24338 sf [UPDATE] XFree86-4-* o [2001/01/14] ports/24339 ports New port submission o [2001/01/15] ports/24340 ports Update port: devel/cervisia A much more n o [2001/01/15] bin/24341 Another device for /usr/src/sys/devs/usb/ o [2001/01/15] misc/24345 pthread library libc_r causes memory leak o [2001/01/15] i386/24351 setkey(8) man page has multiple spelling o [2001/01/15] ports/24361 asami wrong filemodes o [2001/01/15] kern/24367 ATA driver finds non-existent drives o [2001/01/15] gnu/24372 [PATCH] (cosmetic) -current send-pr break o [2001/01/16] ports/24374 ports New port: a display-based tetris game o [2001/01/16] misc/24384 4.1 Cant add entry to neighbour discovery o [2001/01/16] bin/24390 Replacing old dir-symlinks when using /bi o [2001/01/16] kern/24393 Patch to msdosfs to handle a kind of inco o [2001/01/17] kern/24406 n_hibma USB Image scanner not worked o [2001/01/17] ports/24408 ports new port : java2html o [2001/01/17] kern/24412 kernel fail to probe EPSON GT-8700F (USB o [2001/01/17] ports/24413 jseger Building ImageMagick port with libmalloc o [2001/01/17] ports/24417 ports skin support not working without unzip o [2001/01/17] ports/24420 ports Update to New Port: pic2fig o [2001/01/17] ports/24422 ports New port: astro/ksetiwatch o [2001/01/18] misc/24426 CDROM not detected on a multi processosr o [2001/01/18] docs/24434 ben cipher(3) man pages needs to state that - o [2001/01/18] bin/24435 Changing slice type causes Auto-partition o [2001/01/18] kern/24437 yokota syscons - MOUSE_MOUSECHAR fix o [2001/01/18] bin/24439 suggested replament for adduser(8) o [2001/01/18] bin/24444 syslogd(8) does not update hostname o [2001/01/19] ports/24451 mharo Portlint doesn't catch some literal comma o [2001/01/19] ports/24454 ports New port: BugSeeker for Java 2 (Trial ver o [2001/01/19] bin/24458 named-xfer executed at 20 priority level o [2001/01/19] ports/24467 ports new ports graphics/libfpx o [2001/01/20] bin/24485 [PATCH] to make cron(8) handle clock jump o [2001/01/20] ports/24488 ports New port: ftp/kbear a ftp client for KDE2 o [2001/01/20] ports/24492 jhs [PATCH] misc/estic has unfetchable distfi o [2001/01/20] ports/24493 msmith Pib maker function unable to launch xterm o [2001/01/20] conf/24495 Default /etc/printcap refers to wrong han o [2001/01/20] ports/24496 ports New port, accessx o [2001/01/20] ports/24498 ports new port p5-PDF-Create o [2001/01/20] ports/24499 ports new port ascii2pdf o [2001/01/21] conf/24503 /stand/sysinstall fdisk/label can't acces a [2001/01/21] kern/24512 jesper Sent ICMP unreach when packet not for us o [2001/01/21] misc/24513 new options for pppd o [2001/01/21] conf/24515 Fix for find(1) warning in /etc/rc o [2001/01/21] kern/24516 Mouse Logitech M-S48 does not in FreeBSD o [2001/01/21] ports/24519 ports New port: asmutils: A set of UNIX utiliti o [2001/01/21] bin/24521 green ssh-agent exits when authenticating DSA v o [2001/01/21] ports/24522 asami new port audio/spiralloops--repo copy req o [2001/01/22] bin/24523 [PATCH] ps no longer supports the rsz for o [2001/01/22] kern/24528 Bad tracking of Modem status o [2001/01/22] bin/24540 add '-c' flag to src/bin/domainname to cl o [2001/01/22] ports/24558 torstenb Updated port: converters/recode - 3.5 a [2001/01/22] bin/24564 dougb local ident strings interfere with mergem o [2001/01/23] bin/24569 PATCH for PPPD o [2001/01/23] ports/24570 nakai misc/rpm - unusable librpm, getmntent unr o [2001/01/23] ports/24571 ports New port: quelcom: A set of command-line o [2001/01/23] ports/24572 ports [NEW PORT] p5-Net-SSH o [2001/01/23] ports/24574 ports addition of kdestudio port o [2001/01/23] ports/24575 ports addition of kdepim port o [2001/01/23] misc/24576 -lssh problem with libpam o [2001/01/23] ports/24580 ports cfengine giving errors when invoked o [2001/01/23] ports/24585 ports new port: www/p5-Apache-MP3 o [2001/01/23] bin/24592 dmesg.boot Gets Overwritten without Reboo o [2001/01/24] misc/24603 dsp will not play .wav files at all o [2001/01/24] ports/24605 ports New port: umix: An advanced tool for adju o [2001/01/24] ports/24607 ports new port o [2001/01/24] bin/24610 [PATCH] make inetd log hostnames when spe o [2001/01/24] ports/24614 ports New port: plasma: A plasma-effect screens o [2001/01/24] bin/24623 /bin/pr €Ç²þÊÇ¥³¡Œ¥É€¬¹ÍΞ€µ€ì€Æ€€€Ê€€ f [2001/01/25] ports/24638 sobomax Mesa-3.2.1_1 fails to build on 4.2-STABLE o [2001/01/25] kern/24640 Abocom usb ethernet adapter not supported o [2001/01/25] kern/24642 NEWCARD broken in RELENG-4 o [2001/01/25] kern/24647 Supported Gigabit Ethernet Interfaces for o [2001/01/25] ports/24649 ports New port: IBM's icu (International Compon o [2001/01/25] ports/24651 mharo portlint gives a bogus warning o [2001/01/25] bin/24654 /usr/bin/w doesn't close all files o [2001/01/26] ports/24658 jkh Enhancement to src/release/Makefile o [2001/01/26] ports/24660 ports New port: Xerces-C 1.3.0 o [2001/01/26] docs/24662 doc too many questions about source managemen 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/24685 ports Enable PP mode in SANE o [2001/01/27] misc/24687 ports QUAKE FORGE & SVGALIB o [2001/01/27] ports/24688 ports Full Screen Editor - MicroEmacs 4.0/PK-TO o [2001/01/28] ports/24692 ports setquota port is broken on 4.2 STABLE o [2001/01/28] kern/24696 compile error while defines DEB(x) o [2001/01/28] bin/24707 [patch] Whois IP Address Handling o [2001/01/29] ports/24713 ports New port: xmotd - message-of-the-day brow o [2001/01/30] bin/24730 tail -f barfs on files bigger than 2 Gig o [2001/01/30] bin/24732 cmp can not compare files lager 2GB but s o [2001/01/30] ports/24736 ports New port: SGI's open inventor (graphics/i o [2001/01/30] bin/24742 send adduser.message before dirs are crea o [2001/01/30] ports/24743 chuckr a2ps port installs files in / o [2001/01/30] misc/24744 sys/socket.h uses u_char without includin o [2001/01/30] misc/24746 green SSH terminal hangs on large paste of data o [2001/01/30] ports/24747 ports new port: MicroEmacs 4.0/PK-TOY o [2001/01/30] ports/24749 dirk mysql323-server pkg-install script doesn' o [2001/01/30] misc/24750 unable to make reinstall on a fresh insta o [2001/01/31] docs/24751 doc [PATCH] Digest list descriptions are out o [2001/01/31] ports/24756 billf net-snmp-4.2 does not compile with LPRng o [2001/01/31] bin/24757 ftpd not RFC compliant o [2001/01/31] ports/24758 ports New port: opeensched-0.1.0 o [2001/01/31] ports/24761 ports [NEW PORT] editors/chexedit - ncurses hex o [2001/01/31] bin/24762 pw doesn't allow false as a shell o [2001/01/31] misc/24764 Typo in src/libc_r/uthread/uthread_kevent o [2001/01/31] kern/24770 ATA_ENABLE_TAGS doesn't enable tags o [2001/01/31] ports/24771 ports New port: security/op - 1.11 o [2001/01/31] ports/24774 ports New port: BFBTester: Security tool for te o [2001/01/31] ports/24775 ports Gabber freezes upon login o [2001/02/01] conf/24781 MAKEDEV: rast* -> ast* o [2001/02/01] misc/24782 Duplicate fortune a [2001/02/01] misc/24784 Why isn't bind always running as -u bind o [2001/02/01] docs/24786 doc missing FILES descriptions in sa(4) o [2001/02/01] ports/24793 ports New port: japanese/kpcal (making postscri o [2001/02/02] docs/24797 phk when using MALLOC_DEFINE sys/param.h and o [2001/02/02] misc/24801 Copyright web page needs small correction o [2001/02/02] docs/24802 doc fcntl man page does not specify what happ o [2001/02/02] bin/24804 [PATCH] ps_showallprocs isn't documented. o [2001/02/02] ports/24805 ports New port: Fvwm-themes (for fvwm2-beta) o [2001/02/03] kern/24827 Erratic Intellimouse Explorer in 4.1 and o [2001/02/03] bin/24828 [PATCH] ntpd compilation and additional r o [2001/02/03] ports/24837 ports [NEW PORT] security/fwbuilder - GUI ipfil o [2001/02/03] docs/24839 doc fix ether.bridge o [2001/02/04] gnu/24843 gcc does not recognize -kthread o [2001/02/04] gnu/24844 gdb does not support kernel threads o [2001/02/04] ports/24845 tegge linuxthreads does not detect failed rfork o [2001/02/04] kern/24851 ISA PnP Modem Type is unregistered in sio o [2001/02/04] ports/24855 ports New port of FSF GMP library o [2001/02/04] bin/24857 File descriptor leak and frequent crashes o [2001/02/04] ports/24858 ports new port for ocamlweb 0.9 o [2001/02/04] ports/24862 nakai Port assumes a directory exists that does o [2001/02/05] conf/24865 WITH FIX: /etc/rc.isdn overwrites $isdn_t o [2001/02/05] docs/24869 doc Some text elf.5 is duplicated o [2001/02/05] kern/24882 ktrace not syncing .out file before panic f [2001/02/05] ports/24885 ports Update Port: audio/icecast o [2001/02/05] docs/24887 doc "make -j# installworld" can (will?) fail o [2001/02/05] docs/24888 doc [PATCH] New FAQ entry about inappropriate o [2001/02/06] ports/24893 ports mail/solidpop3d installation problems o [2001/02/06] kern/24900 Server logs:indfcntl(8, F_SETFL, 4): Inap o [2001/02/06] kern/24902 IPC Message Queue number to big o [2001/02/06] misc/24907 Options screen at MenuMedia menu problem o [2001/02/06] ports/24909 ports New port: Perl module for fetching and mo o [2001/02/06] bin/24914 /dev explicitly referenced in MAKEDEV o [2001/02/06] docs/24921 phk Typo /devs --> /dev o [2001/02/06] docs/24923 doc 4.2 Release Errata page has no informatio o [2001/02/07] ports/24931 mi Update port: graphics/sane to 1.0.4 (fix o [2001/02/07] ports/24939 ports [NEW PORT] graphics/xmms-avi - .avi and . o [2001/02/07] ports/24940 demon prolem with Tnm::icmp echo command due to o [2001/02/07] misc/24942 tftp client timeout failure o [2001/02/07] bin/24944 new execute-file can't running(not found o [2001/02/08] ports/24951 ports o [2001/02/08] bin/24953 green adduser ignores passwd_format in login.co o [2001/02/08] kern/24954 Old driver /src/sys/dev/sound/isa/sb.c sh o [2001/02/08] bin/24955 /usr/bin/tail -F in 4.1+ doesn't work if o [2001/02/08] kern/24959 proper TCP_NOPUSH/TCP_CORK compatibility o [2001/02/08] kern/24962 properly delay acks in half-closed TCP co o [2001/02/08] i386/24963 perfmon(4) doesn't work on SMP systems o [2001/02/09] ports/24969 ports x3270 port won't finish install o [2001/02/09] ports/24976 ports gemdropx port is missing a dependency on o [2001/02/09] ports/24983 asami Emacs ports have misleading names o [2001/02/10] ports/24987 ports Courier mail server. o [2001/02/10] ports/24991 ports New port: eudc-emacs20 o [2001/02/10] ports/24994 ports New port: gnuserv-3.12.1 o [2001/02/10] kern/24998 More verbose logging for Joliet CDs o [2001/02/11] docs/25000 doc matcd(4) SYNOPSIS is wrong o [2001/02/11] ports/25003 ports New port: www/mod_throttle o [2001/02/11] misc/25004 it is easy for a user to lock the entire o [2001/02/11] bin/25012 tar(1) as root does not preserve ownershi o [2001/02/11] bin/25013 mv(1) cannot move unresolvable symlinks a o [2001/02/11] misc/25014 junk files in ~ncvs/CVSROOT/commitlogs o [2001/02/11] bin/25015 cp: options -i and -f do not work as docu o [2001/02/11] docs/25016 doc 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/11] kern/25019 Problem trying to build new kernel a [2001/02/11] bin/25028 imp make installworld uses wrong time o [2001/02/12] misc/25030 LINT (NOTES) has incomplete list of uses o [2001/02/12] ports/25031 ache www/apache: dbmmanage fails verifying md5 o [2001/02/12] ports/25032 obrien mail/mutt: wrong permissions of ${PREFIX} o [2001/02/12] ports/25033 bmah pkg_version -c to support packages? o [2001/02/12] kern/25039 -stable LINT missing the twe device o [2001/02/12] ports/25042 peter cvsup missed a couple of deletes in /usr/ o [2001/02/12] misc/25043 Tools directory on ftp site should includ o [2001/02/12] ports/25046 cg ports/audio/mpg123: Fixes for newpcm form o [2001/02/12] misc/25049 named.restart does not use named_flags fr o [2001/02/12] misc/25050 dwmalone inetd UDP echo service echos only 8K o [2001/02/12] docs/25053 doc kld(4) manpage is obsolete for -current o [2001/02/12] misc/25055 Header in 'top' too long for SMP system a o [2001/02/13] bin/25059 dlopen(..,RTLD_GLOBAL) doesn't work for s o [2001/02/13] ports/25066 joe update port: net/jabber o [2001/02/13] bin/25070 newsyslog(8) should send signals only onc o [2001/02/13] ports/25071 peter Ports-Skeletons gone after update o [2001/02/13] ports/25080 ports New port: ecgi: A library for the creatio o [2001/02/13] bin/25085 mlxcontrol utility fails silently if devi o [2001/02/13] ports/25086 ports new port: net/aim-transport o [2001/02/13] ports/25087 ports new port: net/icq-transport o [2001/02/13] ports/25088 ports new port: net/irc-transport o [2001/02/13] ports/25089 ports new port: net/jud o [2001/02/13] ports/25090 ports new port: net/msn-transport o [2001/02/13] ports/25091 ports new port: net/yahoo-transport o [2001/02/13] ports/25092 ports new port: net/conference o [2001/02/14] ports/25101 ports New port: japanese/ical o [2001/02/14] ports/25106 bmah "pkg_version -c" should "make install cle o [2001/02/15] misc/25109 Fujitsu MO device MCC3064AP could't be c o [2001/02/15] kern/25114 vinum kernel module is compiled without d o [2001/02/15] kern/25117 ICMP Destination Port Unreachable Error M o [2001/02/15] ports/25119 sobomax pango does not build on -current o [2001/02/15] docs/25126 doc minor nits in whatis(1) command f [2001/02/15] ports/25131 roam cannot install php with imap support o [2001/02/16] docs/25134 doc Kernel USER_LDT option help incomplete o [2001/02/16] ports/25139 ports [MAINTAINER UPDATE] audio/lopster 0.9.7_1 o [2001/02/16] ports/25145 ports new port of uisp o [2001/02/16] misc/25147 [PATCH] to make D-Link DFE-650 work with o [2001/02/16] ports/25154 ports atmel AVR microcontroller in-circuit prog o [2001/02/16] bin/25156 Improved user-interface for mixer(8) o [2001/02/16] misc/25161 During install, after boot get message: P o [2001/02/16] misc/25162 syntax error in src/release/Makefile o [2001/02/17] docs/25164 doc makewhatis(1) seems to be fouling up o [2001/02/17] ports/25169 wosch [PATCH] update of p5-libwww port 1.62 -> o [2001/02/17] ports/25170 ports New port: tempest_for_eliza: A program to o [2001/02/17] kern/25173 How to use a PnP ISA modem card /dev f [2001/02/21] ports/25257 ports New port: VRRP (virtual redundent router o [2001/02/21] bin/25263 green openssh and /etc/login.access does not wo o [2001/02/21] bin/25267 vmstat displays some parameters incorrect o [2001/02/21] ports/25269 roam New port: mail/libesmtp (libESMTP - A Lib o [2001/02/21] bin/25273 add fs type feature to vnconfig(8) to all o [2001/02/21] kern/25275 X server freezes system randomly on pentu o [2001/02/22] ports/25276 ports New port: VRRP (virtual redundent router o [2001/02/22] bin/25278 bs accepts -s -c but not -sc o [2001/02/22] ports/25283 ports PORT UPDATE: emulators/xmame and emulator o [2001/02/22] alpha/25284 alpha PC164 won't reboot with graphics console o [2001/02/22] ports/25285 ports New port:: www/mod_csacek o [2001/02/23] ports/25297 kevlo kcontrol writes wrong variable names in c o [2001/02/23] ports/25299 kevlo kdmŽs "Console mode" command isnŽt meanin o [2001/02/23] bin/25302 paul /usr/sbin/pkg_update doesn't work o [2001/02/23] ports/25311 ports New port: java/xalan-j (Apache Xalan XSLT o [2001/02/23] ports/25313 wosch Script source displayed at http://www.nl. o [2001/02/23] ports/25315 ports [NEW PORT] security/nmap-devel o [2001/02/23] ports/25333 ports Update port: security/libmcrypt o [2001/02/23] ports/25334 ports Remove port: security/libmcrypt-nm o [2001/02/24] ports/25339 ports New port: japanese/migemo-emacs20 o [2001/02/24] ports/25341 ports New PORT (OpenVerse) o [2001/02/24] ports/25342 ports saint: user authentication fails in remot o [2001/02/24] ports/25345 nakai lang/slib port fails install o [2001/02/25] ports/25350 nakai graphics/gqview is old o [2001/02/25] ports/25353 dirk Fix to wrong libmcrypt detection of mod_p o [2001/02/25] misc/25354 Slovak (sk_SK) locale missing o [2001/02/25] ports/25355 ports MAINTAINER UPDATE: games/zangband (satell o [2001/02/25] misc/25357 pkg_update won't work under STABLE since o [2001/02/25] ports/25360 ports xv-3.10a fails to build o [2001/02/25] ports/25362 ports New port: w9wm: A hack of 9wm to give vir o [2001/02/25] ports/25366 sf New port: mupad-1.4.2 an algebric calcula o [2001/02/25] kern/25369 Miscellaneous CD drivers have potentially o [2001/02/25] kern/25370 ATA subsystem in 4.x fails to recognize s o [2001/02/25] ports/25371 ports [UPGRADE] tcl83 port from tcl8.3.1 to tcl o [2001/02/25] ports/25372 ports [UPGRADE] upgrade the tk port from 8.3.1 o [2001/02/25] ports/25373 ports upgrade the ical port to use tcl/tk v8.3 o [2001/02/25] ports/25375 ports Update irc/zircon o [2001/02/26] misc/25378 update contrib/libgmp to newer version (3 o [2001/02/26] ports/25381 ports New port: bigyear: A program to print a l o [2001/02/26] kern/25386 Incorrect mixer registers (line & synth) o [2001/02/26] ports/25388 ports New port: steghide = steganography tool o [2001/02/26] docs/25390 doc [PATCH] FAQ Entry for Shell Accounts o [2001/02/26] misc/25391 ports Update Pimp3 o [2001/02/26] docs/25392 doc Chapter 9 pages could use 'location of fu o [2001/02/26] docs/25405 doc misleading warning from catman(1), etc. o [2001/02/26] ports/25406 ports New Port: net/satellite: A system for tra o [2001/02/27] ports/25408 ports New port: textproc/py-csv o [2001/02/27] docs/25417 doc Broken link on page http://www.freebsd.or o [2001/02/27] ports/25419 ports Difficulties installing print/teTeX port o [2001/02/27] docs/25420 doc man page missing important information. o [2001/02/27] ports/25430 ports Update port: graphics/aero o [2001/02/27] bin/25435 ps -j asks for "sess" keyword, no longer o [2001/02/27] bin/25436 csh builtin nice behaves improperly o [2001/02/27] docs/25437 doc kernel configs are the only precious file o [2001/02/27] ports/25440 ports [PATCH] update www/asp2php -> 0.75.12 o [2001/02/27] i386/25442 T20 CS4624/CS4297a sound problems: "pcm0: o [2001/02/27] ports/25444 ports gimp-print driver out of date in ghostscr o [2001/02/27] kern/25445 kernel statistics are displayed in wrong o [2001/02/27] docs/25447 doc [PATCH] New FAQ entry about inability to o [2001/02/28] ports/25448 ports mpmf20 fails to correctly display the dir o [2001/02/28] docs/25450 doc remove NCPU from docs o [2001/02/28] ports/25453 trevor ports/audio/csound doesn't compile on 4.2 o [2001/02/28] misc/25454 rlogin does not pass the DISPLAY environm o [2001/02/28] ports/25457 ports New port: games/linux-mightandmagic o [2001/02/28] gnu/25459 Dumpvalue.pm says SYNOPSYS instead of SYN o [2001/02/28] misc/25460 Directory/INODE Editing o [2001/02/28] bin/25462 daemon(3) fails if called by a session le o [2001/02/28] i386/25463 PS/2 mouse sync problems with KVM switch o [2001/02/28] bin/25470 ancontrol doesn't output TX rate o [2001/02/28] ports/25471 ports New port: s10sh - userland driver for Can o [2001/03/01] conf/25472 add bg_BG.CP1251 locale support o [2001/03/01] ports/25473 ports Can't compile port textproc/pspell o [2001/03/01] bin/25474 dump can't close fifo pipe correctly o [2001/03/01] bin/25477 billf pam_radius fix to allow null passwords fo o [2001/03/01] ports/25479 ports New Port: ddc-1.0 o [2001/03/01] ports/25480 ports New port: net/dhcping-1.0 o [2001/03/01] ports/25481 ports New Port: net/dhcpdump-1.0 o [2001/03/01] ports/25482 ports [PATCH] Update net/netsaint -> 0.0.7b2 o [2001/03/01] ports/25484 ports [PATCH] Update net/netsaint-plugins to 1. o [2001/03/02] ports/25490 wosch [PATCH] fix various bugs in stat(1) o [2001/03/02] conf/25495 missing et_EE.ISO_8859-15 locale o [2001/03/02] docs/25496 doc [PATCH} Doc makefiles are not LOCALBASE c o [2001/03/02] docs/25497 doc [PATCH} There is no answer to the FAQ abo o [2001/03/02] misc/25499 buffer paste functionality from keyboard o [2001/03/02] docs/25500 doc Update of ip(4) manpage to reflect curren o [2001/03/02] ports/25501 ports Updated port: net/isc-dhcp3 (beta 2 patch o [2001/03/02] misc/25502 TFTP in libstand(3) fails on all transact o [2001/03/02] misc/25503 readudp() in libstand(3) can return incor o [2001/03/03] kern/25507 contribute Intel ICH sound driver o [2001/03/03] bin/25513 file(1) determines wrong file type o [2001/03/03] conf/25514 ntpdate_flags in /etc/defaults/rc.conf sh o [2001/03/03] ports/25515 ports New port: xawtv: A TV viewing application o [2001/03/03] ports/25516 ports update mail/exim to 3.22 o [2001/03/03] kern/25517 ARP cache timeout behavior can be improve o [2001/03/03] ports/25518 ports Could the web pages list version numbers? o [2001/03/04] ports/25520 ports ports/mbone/rat update o [2001/03/04] kern/25521 Laptop with FreeBSD4.2 freezes in battery o [2001/03/04] ports/25525 ports [UPDATE] japanese/xdvik-vflib o [2001/03/04] pending/25527gnats-admin`man ldconfig' does not reflect its behav o [2001/03/04] ports/25529 ports Update port: audio/xsidplay o [2001/03/04] ports/25530 ports ports/net/cricket port does dependencies o [2001/03/04] ports/25531 ports INSTALL_* macros fail for non-root users o [2001/03/04] ports/25532 ports [PATCH] Update irc/ninja -> 1.5.2 o [2001/03/04] ports/25533 ports new port: cvsweb-converters-0.1 o [2001/03/04] ports/25534 ports New port: newsx is used to fetch and post o [2001/03/04] bin/25537 [PATCH] Explain security profiles in sysi o [2001/03/04] ports/25538 ports Update graphics/imlib2-tmp (MAINTAINER) o [2001/03/04] ports/25539 ports Update graphics/evas to 0.0.4 (MAINTAINER o [2001/03/04] ports/25540 ports Update graphics/gom (MAINTAINER) o [2001/03/05] bin/25543 pkg_info dumps core o [2001/03/05] bin/25545 Incorrect Mem value produced by top(1). o [2001/03/05] ports/25546 ports Update port: games/xjump to 2.7.3 o [2001/03/05] ports/25547 ports Update port: graphics/ImageMagick to 5.2. o [2001/03/05] ports/25548 ports Update port: graphics/aero (fix ports/254 o [2001/03/05] ports/25549 ports Update port: graphics/gqview to 1.10.1 o [2001/03/05] ports/25550 ports Update port: graphics/graphviz o [2001/03/05] ports/25551 ports Update port: graphics/xmorth to 2000.02.2 o [2001/03/05] ports/25552 ports Update port: japanese/gawk o [2001/03/05] ports/25553 ports Update port: japanese/sed o [2001/03/05] ports/25554 ports Update port: lang/smalltalk to 1.8.3 o [2001/03/05] ports/25555 ports Update port: net/freewais-sf o [2001/03/05] ports/25557 ports the pfe-devel port obsoletes the forth po o [2001/03/05] ports/25558 ports New port: xxkb: An XKB keyboard layout sw 1958 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 Mar 5 12:20: 7 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 54A3837B719 for ; Mon, 5 Mar 2001 12:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f25KK1A76376; Mon, 5 Mar 2001 12:20:01 -0800 (PST) (envelope-from gnats) Received: from brig.itso.iu.edu (brig.itso.iu.edu [134.68.220.136]) by hub.freebsd.org (Postfix) with ESMTP id A572B37B719 for ; Mon, 5 Mar 2001 12:18:49 -0800 (PST) (envelope-from ajk@brig.itso.iu.edu) Received: (from ajk@localhost) by brig.itso.iu.edu (8.11.1/8.11.1) id f25KIm842546; Mon, 5 Mar 2001 15:18:48 -0500 (EST) (envelope-from ajk) Message-Id: <200103052018.f25KIm842546@brig.itso.iu.edu> Date: Mon, 5 Mar 2001 15:18:48 -0500 (EST) From: ajk@iu.edu Reply-To: ajk@iu.edu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/25561: [PATCH] ksrvtgt contains unsubstituted path variable Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25561 >Category: bin >Synopsis: [PATCH] ksrvtgt contains unsubstituted path variable >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 Mar 05 12:20:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Andrew J. Korty >Release: FreeBSD 4.2-RELEASE i386 >Organization: Information Technology Security Office, Indiana University >Environment: FreeBSD 4.2-RELEASE with Kerberos IV >Description: The installed ksrvtgt script contains the string %bindir% that is meant to be replaced with the directory that contains the kauth binary. >How-To-Repeat: $ ksrvtgt ajk admin /usr/bin/ksrvtgt: %bindir%/kauth: not found >Fix: --- kerberosIV/usr.bin/ksrvtgt/Makefile.orig Mon Mar 5 14:52:55 2001 +++ kerberosIV/usr.bin/ksrvtgt/Makefile Mon Mar 5 15:11:05 2001 @@ -2,9 +2,14 @@ MAN1= ${KRB4DIR}/man/ksrvtgt.1 +all: ksrvtgt + beforeinstall: - ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ - ${KRB4DIR}/appl/kauth/ksrvtgt.in ${DESTDIR}${BINDIR}/ksrvtgt + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} ksrvtgt \ + ${DESTDIR}${BINDIR}/ksrvtgt + +ksrvtgt: ksrvtgt.in + sed 's!%bindir%!${BINDIR}!' ${KRB4DIR}/appl/kauth/ksrvtgt.in > $@ depend all: >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 Mar 5 12:20:52 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0DD5E37B718; Mon, 5 Mar 2001 12:20:51 -0800 (PST) (envelope-from assar@FreeBSD.org) Received: (from assar@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f25KKpS76550; Mon, 5 Mar 2001 12:20:51 -0800 (PST) (envelope-from assar) Date: Mon, 5 Mar 2001 12:20:51 -0800 (PST) From: Message-Id: <200103052020.f25KKpS76550@freefall.freebsd.org> To: assar@FreeBSD.org, freebsd-bugs@FreeBSD.org, assar@FreeBSD.org Subject: Re: kern/19553: "panic: zone: entry not free" in namei() Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: "panic: zone: entry not free" in namei() Responsible-Changed-From-To: freebsd-bugs->assar Responsible-Changed-By: assar Responsible-Changed-When: Mon Mar 5 12:20:42 PST 2001 Responsible-Changed-Why: I closed it http://www.freebsd.org/cgi/query-pr.cgi?pr=19553 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 5 12:37:49 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from patan.sun.com (patan.Sun.COM [192.18.98.43]) by hub.freebsd.org (Postfix) with ESMTP id 7F78837B719 for ; Mon, 5 Mar 2001 12:37:46 -0800 (PST) (envelope-from Neal.Gafter@eng.sun.com) Received: from taller.eng.sun.com ([129.144.250.34]) by patan.sun.com (8.9.3+Sun/8.9.3) with ESMTP id MAA12312 for ; Mon, 5 Mar 2001 12:37:45 -0800 (PST) Received: from Eng.sun.com (frog [129.144.125.199]) by taller.eng.sun.com (8.9.3+Sun/8.9.3/ENSMAIL,v2.1p1) with ESMTP id MAA22142; Mon, 5 Mar 2001 12:37:43 -0800 (PST) Message-ID: <3AA3F916.31746EDB@Eng.sun.com> Date: Mon, 05 Mar 2001 12:37:42 -0800 From: Neal M Gafter Organization: Sun Microsystems X-Mailer: Mozilla 4.75 [en] (X11; U; SunOS 5.7 sun4u) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-bugs@FreeBSD.ORG Subject: ftpd not Y2K1 compliant Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org FreeBSD's ftpd doesn't properly display dates around or after today. Files created today display to ftp clients as if they were created a year ago. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 5 13:40: 7 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5484437B719 for ; Mon, 5 Mar 2001 13:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f25Le3O87231; Mon, 5 Mar 2001 13:40:03 -0800 (PST) (envelope-from gnats) Date: Mon, 5 Mar 2001 13:40:03 -0800 (PST) Message-Id: <200103052140.f25Le3O87231@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Matthew Jacob Subject: Re: bin/25361: dump(8) command segfaults Reply-To: Matthew Jacob Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/25361; it has been noted by GNATS. From: Matthew Jacob To: Christian Weisgerber , Andrew Gallatin Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/25361: dump(8) command segfaults Date: Mon, 5 Mar 2001 13:33:56 -0800 (PST) Both the -stable and -current with kernels and userland later than February 26 do not show this problem. A -current with a userland of 2/13 and a kernel from yesterday shows this problem. I believe the problem has been addressed, but I'll reconfirm tonite after a buildworld. -matt > > >Number: 25361 > >Category: bin > >Synopsis: dump(8) command segfaults > >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 Feb 25 12:40:00 PST 2001 > >Closed-Date: > >Last-Modified: > >Originator: Christian Weisgerber > >Release: FreeBSD 5.0-CURRENT alpha > >Organization: > >Environment: > System: FreeBSD kemoauc.mips.inka.de 5.0-CURRENT FreeBSD 5.0-CURRENT #4: Sat Feb 24 14:37:31 CET 2001 naddy@kemoauc.mips.inka.de:/usr/src/sys/compile/KEMOAUC alpha > > >Description: > > The dump(8) command segfaults: > > $ dump 0af /dev/null / > DUMP: Date of this level 0 dump: Sun Feb 25 20:44:21 2001 > DUMP: Date of last level 0 dump: the epoch > DUMP: Dumping /dev/da0a (/) to /dev/null > DUMP: mapping (Pass I) [regular files] > DUMP: mapping (Pass II) [directories] > DUMP: estimated 67655 tape blocks. > DUMP: dumping (Pass III) [directories] > DUMP: dumping (Pass IV) [regular files] > DUMP: SIGSEGV: ABORTING! > DUMP: SIGSEGV: ABORTING! > DUMP: SIGSEGV: ABORTING! > DUMP: SIGSEGV: ABORTING! > DUMP: SIGSEGV: ABORTING! > Segmentation fault (core dumped) > > dump was working fine in -current as of Dec 25. The only changes > to it since then are the introduction of instead of > a home-rolled list and the replacement of '\007' with '\a'. These > changes are innocuous; if backed out, dump still segfaults. This > suggests that the problem has been triggered by a kernel change. > > >How-To-Repeat: > > $ dump 0af /dev/null / > > >Fix: > > None known. > > >Release-Note: > >Audit-Trail: > >Unformatted: > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-bugs" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 5 14: 7:58 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by hub.freebsd.org (Postfix) with SMTP id 7C2BE37B71A for ; Mon, 5 Mar 2001 14:07:55 -0800 (PST) (envelope-from dwmalone@maths.tcd.ie) Received: from walton.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 5 Mar 2001 22:07:54 +0000 (GMT) Date: Mon, 5 Mar 2001 22:07:54 +0000 From: David Malone To: Neal M Gafter Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: ftpd not Y2K1 compliant Message-ID: <20010305220754.A13609@walton.maths.tcd.ie> References: <3AA3F916.31746EDB@Eng.sun.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3AA3F916.31746EDB@Eng.sun.com>; from Neal.Gafter@eng.sun.com on Mon, Mar 05, 2001 at 12:37:42PM -0800 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Mar 05, 2001 at 12:37:42PM -0800, Neal M Gafter wrote: > FreeBSD's ftpd doesn't properly display dates around or after today. > Files created today display to ftp clients as if they were created > a year ago. It seems to work fine for me - can you send us a transcript of the problem as a problem report, using the send-pr command? David. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 5 14:18:52 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from patan.sun.com (patan.Sun.COM [192.18.98.43]) by hub.freebsd.org (Postfix) with ESMTP id 6136F37B719 for ; Mon, 5 Mar 2001 14:18:49 -0800 (PST) (envelope-from Neal.Gafter@eng.sun.com) Received: from taller.eng.sun.com ([129.144.125.34]) by patan.sun.com (8.9.3+Sun/8.9.3) with ESMTP id OAA02306; Mon, 5 Mar 2001 14:18:48 -0800 (PST) Received: from Eng.sun.com (frog [129.144.125.199]) by taller.eng.sun.com (8.9.3+Sun/8.9.3/ENSMAIL,v2.1p1) with ESMTP id OAA09946; Mon, 5 Mar 2001 14:18:43 -0800 (PST) Message-ID: <3AA410C3.B94A7F6F@Eng.sun.com> Date: Mon, 05 Mar 2001 14:18:43 -0800 From: Neal M Gafter Organization: Sun Microsystems X-Mailer: Mozilla 4.75 [en] (X11; U; SunOS 5.7 sun4u) X-Accept-Language: en MIME-Version: 1.0 To: David Malone Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: ftpd not Y2K1 compliant References: <3AA3F916.31746EDB@Eng.sun.com> <20010305220754.A13609@walton.maths.tcd.ie> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > On Mon, Mar 05, 2001 at 12:37:42PM -0800, Neal M Gafter wrote: > > FreeBSD's ftpd doesn't properly display dates around or after today. > > Files created today display to ftp clients as if they were created > > a year ago. David Malone wrote: > It seems to work fine for me - can you send us a transcript of the > problem as a problem report, using the send-pr command? Never mind. It's netscape's fault. Netscape tries to guess the year, which ftpd doesn't print. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 5 16: 5: 1 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E51AB37B71B; Mon, 5 Mar 2001 16:04:57 -0800 (PST) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f2603bR12119; Mon, 5 Mar 2001 16:03:37 -0800 (PST) (envelope-from ache) Date: Mon, 5 Mar 2001 16:03:37 -0800 (PST) From: Message-Id: <200103060003.f2603bR12119@freefall.freebsd.org> To: davidx@viasoft.com.cn, ache@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/25536: fix annoying console mouse cursor flicker problem Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: fix annoying console mouse cursor flicker problem State-Changed-From-To: open->analyzed State-Changed-By: ache State-Changed-When: Mon Mar 5 16:03:03 PST 2001 State-Changed-Why: Fix commited into -current http://www.freebsd.org/cgi/query-pr.cgi?pr=25536 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 5 17: 0:10 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D393D37B719 for ; Mon, 5 Mar 2001 17:00:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f26101m19757; Mon, 5 Mar 2001 17:00:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EE9CD37B718 for ; Mon, 5 Mar 2001 16:53:18 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f260rIS19068; Mon, 5 Mar 2001 16:53:18 -0800 (PST) (envelope-from nobody) Message-Id: <200103060053.f260rIS19068@freefall.freebsd.org> Date: Mon, 5 Mar 2001 16:53:18 -0800 (PST) From: m@m3a.cz To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/25565: missing support for Epson Perfection 1240U scanner Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25565 >Category: kern >Synopsis: missing support for Epson Perfection 1240U scanner >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Mar 05 17:00:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Martin Machacek >Release: 4.2-STABLE as of February 20, 20001 >Organization: >Environment: FreeBSD bubak.m3a.cz 4.2-STABLE FreeBSD 4.2-STABLE #9: Tue Feb 20 04:26:53 CET 2001 martin@bubak.m3a.cz:/usr/src/sys/compile/BUBAK i386 >Description: Small patch is required to the USB susbsystem to include support for Epson Perfection 1240U scanner. >How-To-Repeat: Connect Epson 1240U scanner and try to access it. Without the attached patches it is not detected as scanner and thereafter the /dev/uscanner device is not configured >Fix: Aply patches bellow in the /usr/src/sys/dev/usb directory. After applying the patches and recompiling the kernel the scanner works flawlessly with sane and xsane. (file usbdevs.h) *** usbdevs.h.orig Tue Mar 6 01:33:44 2001 --- usbdevs.h Tue Mar 6 01:36:40 2001 *************** *** 464,469 **** --- 464,470 ---- #define USB_PRODUCT_EPSON_636 0x0101 /* Perfection 636U / 636Photo scanner */ #define USB_PRODUCT_EPSON_610 0x0103 /* Perfection 610 scanner */ #define USB_PRODUCT_EPSON_1200 0x0104 /* Perfection 1200U / 1200Photo scanner */ + #define USB_PRODUCT_EPSON_1240 0x010b /* Perfection 1240U / 1240Photo scanner */ #define USB_PRODUCT_EPSON_1600 0x0107 /* Expression 1600 scanner */ #define USB_PRODUCT_EPSON_1640 0x010a /* Perfection 1640SU scanner */ (file usbdevs_data.h) *** usbdevs_data.h.orig Tue Mar 6 01:31:13 2001 --- usbdevs_data.h Tue Mar 6 01:32:25 2001 *************** *** 586,591 **** --- 586,597 ---- "Perfection 1200U / 1200Photo scanner", }, { + USB_VENDOR_EPSON, USB_PRODUCT_EPSON_1240, + 0, + "Seiko Epson Corp.", + "Perfection 1240U / 1240Photo scanner", + }, + { USB_VENDOR_EPSON, USB_PRODUCT_EPSON_1600, 0, "Seiko Epson Corp.", (file uscanner.c) *** uscanner.c.orig Tue Mar 6 01:32:54 2001 --- uscanner.c Tue Mar 6 01:33:21 2001 *************** *** 142,147 **** --- 142,148 ---- { USB_VENDOR_EPSON, USB_PRODUCT_EPSON_636 }, { USB_VENDOR_EPSON, USB_PRODUCT_EPSON_610 }, { USB_VENDOR_EPSON, USB_PRODUCT_EPSON_1200 }, + { USB_VENDOR_EPSON, USB_PRODUCT_EPSON_1240 }, { USB_VENDOR_EPSON, USB_PRODUCT_EPSON_1600 }, { USB_VENDOR_EPSON, USB_PRODUCT_EPSON_1640 }, >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 6 0:40: 8 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 94A1537B719 for ; Tue, 6 Mar 2001 00:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f268e1990428; Tue, 6 Mar 2001 00:40:01 -0800 (PST) (envelope-from gnats) Received: from sevasoft.kiev.ua (sevasoft.kiev.ua [212.109.53.38]) by hub.freebsd.org (Postfix) with ESMTP id 74C7637B718 for ; Tue, 6 Mar 2001 00:32:58 -0800 (PST) (envelope-from seva@sevasoft.kiev.ua) Received: (from seva@localhost) by sevasoft.kiev.ua (8.11.2/8.11.1) id f268WZo20686; Tue, 6 Mar 2001 10:32:35 +0200 (EET) (envelope-from seva) Message-Id: <200103060832.f268WZo20686@sevasoft.kiev.ua> Date: Tue, 6 Mar 2001 10:32:35 +0200 (EET) From: seva@sevasoft.kiev.ua Reply-To: seva@sevasoft.kiev.ua To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: kern/25566: Support for DLink DFE-538TX ethernet card Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25566 >Category: kern >Synopsis: [PATCH] Missing PCI Id's for DLink DFE-538TX ethernet card >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Mar 06 00:40:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Vsevolod Lobko >Release: FreeBSD 4.2-STABLE i386 >Organization: Sevasoft >Environment: System: FreeBSD sevasoft.kiev.ua 4.2-STABLE FreeBSD 4.2-STABLE #0: Mon Mar 5 23:40:45 EET 2001 root@sevasoft.kiev.ua:/usr/local/obj/usr/local/home/freebsd/src/sys/SEVASOFT i386 >Description: DLink DFE-538TX card based on RealTek 8139 chip but has different PCI Id >How-To-Repeat: Insert card and boot >Fix: Apply patch in src/sys/pci: Index: if_rl.c =================================================================== RCS file: /usr/rep/src/sys/pci/if_rl.c,v retrieving revision 1.38.2.6 diff -u -r1.38.2.6 if_rl.c --- if_rl.c 2000/11/02 00:04:27 1.38.2.6 +++ if_rl.c 2001/02/17 09:24:08 @@ -149,6 +149,8 @@ "Delta Electronics 8139 10/100BaseTX" }, { ADDTRON_VENDORID, ADDTRON_DEVICEID_8139, "Addtron Technolgy 8139 10/100BaseTX" }, + { DLINK_VENDORID, DLINK_DEVICEID_DFE538TX, + "D-Link DFE-538TX 10/100BaseTX" }, { 0, 0, NULL } }; @@ -898,7 +900,8 @@ rl_read_eeprom(sc, (caddr_t)&rl_did, RL_EE_PCI_DID, 1, 0); if (rl_did == RT_DEVICEID_8139 || rl_did == ACCTON_DEVICEID_5030 || - rl_did == DELTA_DEVICEID_8139 || rl_did == ADDTRON_DEVICEID_8139) + rl_did == DELTA_DEVICEID_8139 || rl_did == ADDTRON_DEVICEID_8139 || + rl_did == DLINK_DEVICEID_DFE538TX) sc->rl_type = RL_8139; else if (rl_did == RT_DEVICEID_8129) sc->rl_type = RL_8129; Index: if_rlreg.h =================================================================== RCS file: /usr/rep/src/sys/pci/if_rlreg.h,v retrieving revision 1.14 diff -u -r1.14 if_rlreg.h --- if_rlreg.h 1999/10/21 19:42:03 1.14 +++ if_rlreg.h 2001/02/17 09:22:25 @@ -433,6 +433,16 @@ #define ADDTRON_DEVICEID_8139 0x1360 /* + * D-Link vendor ID. + */ +#define DLINK_VENDORID 0x1186 + +/* + * Addtron device IDs. + */ +#define DLINK_DEVICEID_DFE538TX 0x1300 + +/* * PCI low memory base and low I/O base register, and * other PCI registers. */ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 6 2:40:10 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C05D437B72F for ; Tue, 6 Mar 2001 02:40:06 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f26Ae6M09952; Tue, 6 Mar 2001 02:40:06 -0800 (PST) (envelope-from gnats) Received: from wint.itfs.nsk.su (wint.itfs.nsk.su [212.20.32.43]) by hub.freebsd.org (Postfix) with ESMTP id 99F6D37B71A for ; Tue, 6 Mar 2001 02:32:59 -0800 (PST) (envelope-from nnd@wint.itfs.nsk.su) Received: (from nnd@localhost) by wint.itfs.nsk.su (8.11.3/8.11.1) id f26AWuE26302; Tue, 6 Mar 2001 16:32:56 +0600 (NOVT) (envelope-from nnd) Message-Id: <200103061032.f26AWuE26302@wint.itfs.nsk.su> Date: Tue, 6 Mar 2001 16:32:56 +0600 (NOVT) From: nnd@mail.nsk.ru Reply-To: nndmail.nsk.ru@wint.itfs.nsk.su To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: kern/25567: 'src/sys/sys/sx.h' one letter bug Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25567 >Category: kern >Synopsis: 'src/sys/sys/sx.h' one letter 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: Tue Mar 06 02:40:04 PST 2001 >Closed-Date: >Last-Modified: >Originator: Nickolay Dudorov >Release: FreeBSD 5.0-CURRENT i386 >Organization: STE Infoteka >Environment: System: FreeBSD wint.itfs.nsk.su 5.0-CURRENT FreeBSD 5.0-CURRENT #16: Mon Mar 5 13:44:50 NOVT 2001 nnd@wint.itfs.nsk.su:/usr/obj/usr/src/sys/WINTS i386 >Description: Buildkernel of -CURRENT with the 'src/sys/sys/sx.h' ver. 1.2 is broken due to 'SX_ASSERT_XLOCKER' instead of 'SX_ASSERT_XLOCKED' definition in the !INVARIANTS case. >How-To-Repeat: Just 'make buildkernel' >Fix: Index: src/sys/sys/sx.h =================================================================== RCS file: /scratch/CVS/src/sys/sys/sx.h,v retrieving revision 1.2 diff -b -u -r1.2 sx.h --- src/sys/sys/sx.h 2001/03/06 06:17:05 1.2 +++ src/sys/sys/sx.h 2001/03/06 10:22:09 @@ -78,7 +78,7 @@ #else /* INVARIANTS */ #define SX_ASSERT_SLOCKED(sx) -#define SX_ASSERT_XLOCKER(sx) +#define SX_ASSERT_XLOCKED(sx) #endif /* INVARIANTS */ #endif /* _KERNEL */ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 6 3: 7:33 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 73EE337B718; Tue, 6 Mar 2001 03:07:31 -0800 (PST) (envelope-from dwmalone@FreeBSD.org) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f26B7VA15167; Tue, 6 Mar 2001 03:07:31 -0800 (PST) (envelope-from dwmalone) Date: Tue, 6 Mar 2001 03:07:31 -0800 (PST) From: Message-Id: <200103061107.f26B7VA15167@freefall.freebsd.org> To: nndmail.nsk.ru@wint.itfs.nsk.su, dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/25567: 'src/sys/sys/sx.h' one letter bug Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: 'src/sys/sys/sx.h' one letter bug State-Changed-From-To: open->closed State-Changed-By: dwmalone State-Changed-When: Tue Mar 6 03:07:12 PST 2001 State-Changed-Why: Committed. Thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=25567 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 6 6:40: 6 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 23B5B37B718 for ; Tue, 6 Mar 2001 06:40:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f26Ee3t56662; Tue, 6 Mar 2001 06:40:03 -0800 (PST) (envelope-from gnats) Date: Tue, 6 Mar 2001 06:40:03 -0800 (PST) Message-Id: <200103061440.f26Ee3t56662@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Christian Weisgerber Subject: Re: bin/25361: dump(8) command segfaults Reply-To: Christian Weisgerber Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/25361; it has been noted by GNATS. From: Christian Weisgerber To: Matthew Jacob Cc: Andrew Gallatin , FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/25361: dump(8) command segfaults Date: Tue, 6 Mar 2001 15:01:22 +0100 Matthew Jacob: > > Both the -stable and -current with kernels and userland later than February 26 > do not show this problem. Sorry, but I'm running kernel and userland from March 4, and this is *not* resolved. -- Christian "naddy" Weisgerber naddy@mips.inka.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 6 7:30:11 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 913E737B71E for ; Tue, 6 Mar 2001 07:30:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f26FU4047861; Tue, 6 Mar 2001 07:30:04 -0800 (PST) (envelope-from gnats) Date: Tue, 6 Mar 2001 07:30:04 -0800 (PST) Message-Id: <200103061530.f26FU4047861@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Matthew Jacob Subject: Re: bin/25361: dump(8) command segfaults Reply-To: Matthew Jacob Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/25361; it has been noted by GNATS. From: Matthew Jacob To: Christian Weisgerber Cc: Andrew Gallatin , FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/25361: dump(8) command segfaults Date: Tue, 6 Mar 2001 07:25:57 -0800 (PST) -current or -stable? On Tue, 6 Mar 2001, Christian Weisgerber wrote: > Matthew Jacob: > > > > Both the -stable and -current with kernels and userland later than February 26 > > do not show this problem. > > Sorry, but I'm running kernel and userland from March 4, and this > is *not* resolved. > > -- > Christian "naddy" Weisgerber naddy@mips.inka.de > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 6 7:30:16 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 93C5C37B719 for ; Tue, 6 Mar 2001 07:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f26FU1o47848; Tue, 6 Mar 2001 07:30:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3AFC437B71A for ; Tue, 6 Mar 2001 07:22:12 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f26FMCM46664; Tue, 6 Mar 2001 07:22:12 -0800 (PST) (envelope-from nobody) Message-Id: <200103061522.f26FMCM46664@freefall.freebsd.org> Date: Tue, 6 Mar 2001 07:22:12 -0800 (PST) From: so@i-clue.de To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/25569: /etc/rc.firewall mentions an old book/ISBN [Patch included, comment only] Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25569 >Category: kern >Synopsis: /etc/rc.firewall mentions an old book/ISBN [Patch included, comment only] >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Mar 06 07:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Christoph Sold >Release: 4.2-Stable >Organization: i-clue GmbH >Environment: FreeBSD amnesix.i-clue.de 4.2-STABLE FreeBSD 4.2-STABLE #4: Tue Feb 13 18:11:45 CET 2001 so@amnesix.i-clue.de:/usr/src/sys/compile/AMNESIX-4.2-S i386 >Description: /etc/rc.firewall mentions 1st edition of "Building Internet Firewalls", which is out of print. Enclosed patch updates both title and ISBN. >How-To-Repeat: Read /etc/rc.firewalls, try to get the book at www.ora.com. >Fix: --- rc.firewall.orig Tue Mar 6 16:12:22 2001 +++ rc.firewall Tue Mar 6 16:14:03 2001 @@ -54,11 +54,11 @@ # If you don't know enough about packet filtering, we suggest that you # take time to read this book: # -# Building Internet Firewalls -# Brent Chapman and Elizabeth Zwicky +# Building Internet Firewalls, 2nd Edition +# By Elizabeth D. Zwicky, Simon Cooper, & D. Brent Chapman # # O'Reilly & Associates, Inc -# ISBN 1-56592-124-0 +# ISBN 1-56592-871-7 # http://www.ora.com/ # # For a more advanced treatment of Internet Security read: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 6 7:35:18 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8171637B718; Tue, 6 Mar 2001 07:35:16 -0800 (PST) (envelope-from dwmalone@FreeBSD.org) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f26FZF148444; Tue, 6 Mar 2001 07:35:15 -0800 (PST) (envelope-from dwmalone) Date: Tue, 6 Mar 2001 07:35:15 -0800 (PST) From: Message-Id: <200103061535.f26FZF148444@freefall.freebsd.org> To: so@i-clue.de, dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/25569: /etc/rc.firewall mentions an old book/ISBN [Patch included, comment only] Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: /etc/rc.firewall mentions an old book/ISBN [Patch included, comment only] State-Changed-From-To: open->closed State-Changed-By: dwmalone State-Changed-When: Tue Mar 6 07:31:54 PST 2001 State-Changed-Why: This was reported in PR 24652 and committed last month by des. Thanks anyway though. http://www.freebsd.org/cgi/query-pr.cgi?pr=25569 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 6 9: 0: 7 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5A3FA37B719 for ; Tue, 6 Mar 2001 09:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f26H02462437; Tue, 6 Mar 2001 09:00:02 -0800 (PST) (envelope-from gnats) Received: from goliath.siemens.de (goliath.siemens.de [194.138.37.131]) by hub.freebsd.org (Postfix) with ESMTP id 9DFCA37B71E for ; Tue, 6 Mar 2001 08:54:18 -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.0/8.11.0) with ESMTP id f26GsFC04431 for ; Tue, 6 Mar 2001 17:54:16 +0100 (MET) Received: from curry.mchp.siemens.de (curry.mchp.siemens.de [139.25.42.7]) by mail3.siemens.de (8.11.1/8.11.1) with ESMTP id f26GsFr32339222 for ; Tue, 6 Mar 2001 17:54:15 +0100 (MET) Received: (from localhost) by curry.mchp.siemens.de (8.11.2/8.11.2) id f26GsFS97685 for FreeBSD-gnats-submit@freebsd.org; Tue, 6 Mar 2001 17:54:15 +0100 (CET) Message-Id: <200103061654.f26GsFv20299@curry.mchp.siemens.de> Date: Tue, 6 Mar 2001 17:54:15 +0100 (CET) From: Andre Albsmeier To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: conf/25570: savecore complains: warning: /var/run/dev.db: No such file or directory Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25570 >Category: conf >Synopsis: savecore complains: warning: /var/run/dev.db: No such file or directory >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Mar 06 09:00:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: Andre Albsmeier >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: System: FreeBSD 4.2-STABLE #30: Tue Mar 6 12:07:03 CET 2001 >Description: In FreeBSD 4.2-STABLE savecore now complains: warning: /var/run/dev.db: No such file or directory >How-To-Repeat: Boot a recent FreeBSD 4.2-STABLE machine. >Fix: Hmm, /etc/rc runs savecore before dev_mkdb so the error message makes sense. Maybe dev_mkdb should just be moved up ? >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 6 9:40: 6 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C759837B718 for ; Tue, 6 Mar 2001 09:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f26He2D69939; Tue, 6 Mar 2001 09:40:02 -0800 (PST) (envelope-from gnats) Date: Tue, 6 Mar 2001 09:40:02 -0800 (PST) Message-Id: <200103061740.f26He2D69939@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Christian Weisgerber Subject: Re: bin/25361: dump(8) command segfaults Reply-To: Christian Weisgerber Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/25361; it has been noted by GNATS. From: Christian Weisgerber To: Matthew Jacob Cc: Andrew Gallatin , FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/25361: dump(8) command segfaults Date: Tue, 6 Mar 2001 17:42:21 +0100 Matthew Jacob: > > Sorry, but I'm running kernel and userland from March 4, and this > > is *not* resolved. > > -current or -stable? -CURRENT. -- Christian "naddy" Weisgerber naddy@mips.inka.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 6 12: 0: 9 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3962137B719 for ; Tue, 6 Mar 2001 12:00:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f26K03090522; Tue, 6 Mar 2001 12:00:03 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 21D1837B71E for ; Tue, 6 Mar 2001 11:56:33 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f26JuXt90163; Tue, 6 Mar 2001 11:56:33 -0800 (PST) (envelope-from nobody) Message-Id: <200103061956.f26JuXt90163@freefall.freebsd.org> Date: Tue, 6 Mar 2001 11:56:33 -0800 (PST) From: gary@hotlava.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: conf/25571: /etc/rc.fiewall lacks the source_rc_conf line Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25571 >Category: conf >Synopsis: /etc/rc.fiewall lacks the source_rc_conf line >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Mar 06 12:00:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: Gary Howland >Release: 4.2 >Organization: Mainstreet b.v. >Environment: >Description: /etc/rc.firewall lacks the 'source_rc_confs' like the other rc.scripts. It should! /etc/rc.firewall does not contain the 'source_rc_confs' line, like the rest of the /etc/rc.scripts - it should. ############ # Setup system for firewall service. # $FreeBSD: src/etc/rc.firewall,v 1.30 2000/02/06 19:24:37 paul Exp $ # Suck in the configuration variables. if [ -r /etc/defaults/rc.conf ]; then . /etc/defaults/rc.conf -------> this is missing: source_rc_confs elif [ -r /etc/rc.conf ]; then . /etc/rc.conf >How-To-Repeat: >Fix: Add source_rc_conf to the /etc/rc.firewall file. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 6 12:30: 8 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3B80F37B71A for ; Tue, 6 Mar 2001 12:30:06 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f26KU6P95900; Tue, 6 Mar 2001 12:30:06 -0800 (PST) (envelope-from gnats) Date: Tue, 6 Mar 2001 12:30:06 -0800 (PST) Message-Id: <200103062030.f26KU6P95900@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Dag-Erling Smorgrav Subject: Re: conf/25570: savecore complains: warning: /var/run/dev.db: No such file or directory Reply-To: Dag-Erling Smorgrav Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR conf/25570; it has been noted by GNATS. From: Dag-Erling Smorgrav To: Andre Albsmeier Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: conf/25570: savecore complains: warning: /var/run/dev.db: No such file or directory Date: 06 Mar 2001 21:26:51 +0100 Andre Albsmeier writes: > Hmm, /etc/rc runs savecore before dev_mkdb so the error message > makes sense. Maybe dev_mkdb should just be moved up ? Try to apply rev 1.233: # cd /usr/src/etc # cvs up -j1.232 -j1.233 rc # cp rc /etc DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 6 17:51:19 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8772537B719 for ; Tue, 6 Mar 2001 17:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f271o1861629; Tue, 6 Mar 2001 17:50:01 -0800 (PST) (envelope-from gnats) Received: from minya.sea.one-eyed-alien.net (minya.sea.one-eyed-alien.net [216.39.168.226]) by hub.freebsd.org (Postfix) with ESMTP id 688D637B718 for ; Tue, 6 Mar 2001 17:44:44 -0800 (PST) (envelope-from brooks@minya.sea.one-eyed-alien.net) Received: by minya.sea.one-eyed-alien.net (Postfix, from userid 1001) id 4624E24D22; Tue, 6 Mar 2001 17:50:09 -0800 (PST) Message-Id: <20010307015009.4624E24D22@minya.sea.one-eyed-alien.net> Date: Tue, 6 Mar 2001 17:50:09 -0800 (PST) From: brooks@one-eyed-alien.net Reply-To: brooks@one-eyed-alien.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: conf/25577: [PATCH] ifconfig support for wireless network cards Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25577 >Category: conf >Synopsis: [PATCH] ifconfig support for wireless network cards >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Mar 06 17:50:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Brooks Davis >Release: FreeBSD 5.0-CURRENT i386 >Organization: The Aerospace Corporation >Environment: System: FreeBSD minya.sea.one-eyed-alien.net 5.0-CURRENT FreeBSD 5.0-CURRENT #7: Mon Mar 5 15:04:33 PST 2001 root@minya.sea.one-eyed-alien.net:/usr/obj/usr/src/sys/MINYA i386 >Description: Currently, each wireless networking driver has it's own control program despite the fact that most people want to set exactly the same settings regardless of which card they have. It has been repeatidly suggested that this configuration should be done via ifconfig. This patch implements the required functionality in ifconfig and add support to the wi and an drivers. It also provides partial, untested support for the awi driver. >How-To-Repeat: >Fix: The current version of the patch is included below. Needed updates will be posted on the web at: http://www.one-eyed-alien.net/~brooks/FreeBSD/ifconfig.diff The patch contained in ifconfig.diff makes the following changes: sbin/ifconfig/Makefile - Compile in support for IEEE 802.11 devices by default. sbin/ifconfig/ifconfig.8 - Document new IEEE 802.11 ifconfig commands. sbin/ifconfig/ifconfig.c - Add new IEEE 802.11 commands. - Add support for IEEE 802.11 status printing. src/sbin/ifconfig/ifconfig.h - Declare new support functions (defined in ifieee80211.c). src/sbin/ifconfig/ifmedia.c - Add support for new if_media types for IEEE 802.11 - Fix a long standing bug which caused media specific mediaopts to not be printed. sbin/ifconfig/ifieee80211.c *NEW* - Define new command and status functions for IEEE 802.11 devices. sys/dev/an/if_aironet_ieee.h - Make some more defines visible to the kernel so they can be used for the IEEE 802.11 ioctls. sys/dev/an/if_an.c - Add if_media support. - Change default mode to infrastructure. - Add support for IEEE 802.11 ioctls. sys/dev/an/if_an_isa.c - Small change for if_media support. sys/dev/an/if_an_pccard.c - Small change for if_media support. sys/dev/an/if_an_pci.c - Small change for if_media support. sys/dev/an/if_anreg.h - Add if_media struct to softc. sys/dev/awi/awi.c - Add untested support for IEEE 802.11 ioctls. sys/dev/wi/if_wavelan_ieee.h - Make some more defines visible to the kernel so they can be used for the IEEE 802.11 ioctls. sys/dev/wi/if_wi.c - Add if_media support. - Change default mode to infrastructure. - Add support for IEEE 802.11 ioctls. sys/net/if_ieee80211.h - Add definitions for new ioctls. sys/net/if_media.c - Add support for IEEE 802.11 media types. sys/net/if_media.h - Add IEEE 802.11 media types. share/man/man4/Makefile - Link in new ieee80211.4 man page. share/man/man4/ieee80211.4 *NEW* - Document the new IEEE 802.11 ioctls in net/if_ieee80211.h. Index: sbin/ifconfig//Makefile =================================================================== RCS file: /home/ncvs/src/sbin/ifconfig/Makefile,v retrieving revision 1.15 diff -u -u -r1.15 Makefile --- sbin/ifconfig//Makefile 2000/11/30 21:35:09 1.15 +++ sbin/ifconfig//Makefile 2001/01/16 01:22:39 @@ -15,6 +15,10 @@ CFLAGS+=-DUSE_VLANS .endif +#comment out to exclude SIOC[GS]IEEE80211 support +SRCS+= ifieee80211.c +CFLAGS+=-DUSE_IEEE80211 + MAN8= ifconfig.8 DPADD= ${LIBIPX} LDADD= -lipx Index: sbin/ifconfig//ifconfig.8 =================================================================== RCS file: /home/ncvs/src/sbin/ifconfig/ifconfig.8,v retrieving revision 1.35 diff -u -u -r1.35 ifconfig.8 --- sbin/ifconfig//ifconfig.8 2001/02/01 16:32:06 1.35 +++ sbin/ifconfig//ifconfig.8 2001/03/02 02:40:24 @@ -403,6 +403,111 @@ It happens automatically when setting the first address on an interface. If the interface was reset when previously marked down, the hardware will be re-initialized. +.It Cm ssid Ar ssid +For IEEE 802.11 wireless interfaces, set the desired Service Set +Identifier (aka network name.) The SSID is a string up to 32 characters +in length and may be specified as either a normal string or in +hexadecimal when proceeded by +.Sq 0x . +Additionally, the SSID may be cleared by setting it to +.Sq - . +.It Cm nwid Ar ssid +Another name for the +.Dq ssid +parameter. Included for NetBSD compatibility. +.It Cm stationname Ar name +For IEEE 802.11 wireless interfaces, set the name of this station. +It appears that the station name is not really part of the IEEE 802.11 +protocol though all interfaces seem to support it. As such it only +seems to be meaningful to identical or virtually identical equipment. +Setting the station name is identical in syntax to setting the SSID. +.It Cm station Ar name +Another name for the +.Dq stationname +parameter. Included for BSD/OS compatibility. +.It Cm channel Ar number +For IEEE 802.11 wireless interfaces, set the desired channel. +Channels range from 1 to 14, but the exact selection available +depends on the region your adaptor was manufactured for. Setting +the channel to 0 will give you the default for your adaptor. Many +adaptors ignore this setting unless you are in ad-hoc mode. +.It Cm authmode Ar mode +For IEEE 802.11 wireless interfaces, set the desired authentication mode +in infrastructure mode. Not all adaptors support all modes. The set of +valid modes is +.Dq none , +.Dq open , +and +.Dq shared . +Modes are case insensitive. +.It Cm powersave +For IEEE 802.11 wireless interfaces, enable powersave mode. +.It Cm -powersave +For IEEE 802.11 wireless interfaces, disable powersave mode. +.It Cm powersavesleep Ar sleep +For IEEE 802.11 wireless interfaces, set the desired max powersave sleep +time in milliseconds. +.It Cm wepmode Ar mode +For IEEE 802.11 wireless interfaces, set the desired WEP mode. Not all +adaptors support all modes. The set of valid modes is +.Dq off , +.Dq on , +and +.Dq mixed . +.Dq Mixed +mode explicitly tells the adaptor to allow association with access +points which allow both encrypted and unencrypted traffic. On these +adaptors, +.Dq on +means that the access point must only allow encrypted connections. On +other adaptors, +.Dq on +is generally another name for +.Dq mixed . +Modes are case insensitive. +.It Cm weptxkey Ar index +For IEEE 802.11 wireless interfaces, set the WEP key to be used for +transmission. +.It Cm wepkey Ar key|index:key +For IEEE 802.11 wireless interfaces, set the selected WEP key. If +an +.Ar index +is not given, key 1 is set. A WEP key will be either 5 or 13 +characters (40 or 104 bits) depending of the local network and the +capabilities of the adaptor. It may be specified either as a plain +string or as a string of hexadecimal digits proceeded by +.Sq 0x . +A key may be cleared by setting it to +.Sq - . +If WEP is supported then there are at least four keys. Some adaptors +support more then four keys. If that is the case, then the first four keys +(1-4) will be the standard temporary keys and any others will be adaptor +specific keys such as permanent keys stored in NVRAM. +.It Cm wep +Another way of saying +.Dq wepmode on . +Included for BSD/OS compatibility. +.It Cm -wep +Another way of saying +.Dq wepmode off . +Included for BSD/OS compatibility. +.It Cm nwkey key +Another way of saying: +.Pp +``wepmode on weptxkey 1 wepkey 1:key wepkey 2:- wepkey 3:- wepkey 4:-''. +.Pp +Included for NetBSD compatibility. +.It Cm nwkey n:k1,k2,k3,k4 +Another way of saying +.Pp +``wepmode on weptxkey n wepkey 1:k1 wepkey 2:k2 wepkey 3:k3 wepkey 4:k4''. +.Pp +Included for NetBSD compatibility. +.It Cm -nwkey +Another way of saying +.Dq wepmode off . +.Pp +Included for NetBSD compatibility. .El .Pp .Nm Ifconfig Index: sbin/ifconfig//ifconfig.c =================================================================== RCS file: /home/ncvs/src/sbin/ifconfig/ifconfig.c,v retrieving revision 1.59 diff -u -u -r1.59 ifconfig.c --- sbin/ifconfig//ifconfig.c 2001/02/21 18:15:18 1.59 +++ sbin/ifconfig//ifconfig.c 2001/02/23 23:58:11 @@ -223,6 +223,25 @@ { "vlandev", NEXTARG, setvlandev }, { "-vlandev", NEXTARG, unsetvlandev }, #endif +#ifdef USE_IEEE80211 + { "ssid", NEXTARG, set80211ssid }, + { "nwid", NEXTARG, set80211ssid }, + { "stationname", NEXTARG, set80211stationname }, + { "station", NEXTARG, set80211stationname }, /* BSD/OS */ + { "channel", NEXTARG, set80211channel }, + { "authmode", NEXTARG, set80211authmode }, + { "powersavemode", NEXTARG, set80211powersavemode }, + { "powersave", 1, set80211powersave }, + { "-powersave", 0, set80211powersave }, + { "powersavesleep", NEXTARG, set80211powersavesleep }, + { "wepmode", NEXTARG, set80211wepmode }, + { "wep", 1, set80211wep }, + { "-wep", 0, set80211wep }, + { "weptxkey", NEXTARG, set80211weptxkey }, + { "wepkey", NEXTARG, set80211wepkey }, + { "nwkey", NEXTARG, set80211nwkey }, /* NetBSD */ + { "-nwkey", 0, set80211wep }, /* NetBSD */ +#endif { "normal", -IFF_LINK0, setifflags }, { "compress", IFF_LINK0, setifflags }, { "noicmp", IFF_LINK1, setifflags }, @@ -291,6 +310,9 @@ #ifdef USE_VLANS { "vlan", AF_UNSPEC, vlan_status, NULL, NULL, }, /* XXX not real!! */ #endif +#ifdef USE_IEEE80211 + { "ieee80211", AF_UNSPEC, ieee80211_status, NULL, NULL, }, /* XXX not real!! */ +#endif #endif { 0, 0, 0, 0 } }; @@ -969,6 +991,10 @@ #ifdef USE_VLANS if (allfamilies || afp->af_status == vlan_status) vlan_status(s, NULL); +#endif +#ifdef USE_IEEE80211 + if (allfamilies || afp->af_status == ieee80211_status) + ieee80211_status(s, NULL); #endif strncpy(ifs.ifs_name, name, sizeof ifs.ifs_name); if (ioctl(s, SIOCGIFSTATUS, &ifs) == 0) Index: sbin/ifconfig//ifconfig.h =================================================================== RCS file: /home/ncvs/src/sbin/ifconfig/ifconfig.h,v retrieving revision 1.5 diff -u -u -r1.5 ifconfig.h --- sbin/ifconfig//ifconfig.h 1999/08/28 00:13:08 1.5 +++ sbin/ifconfig//ifconfig.h 2001/01/24 21:54:44 @@ -49,3 +49,17 @@ extern void setvlandev(const char *, int, int, const struct afswtch *rafp); extern void unsetvlandev(const char *, int, int, const struct afswtch *rafp); extern void vlan_status(int s, struct rt_addrinfo *); + +extern void set80211ssid(const char *, int, int, const struct afswtch *rafp); +extern void set80211stationname(const char *, int, int, const struct afswtch *rafp); +extern void set80211channel(const char *, int, int, const struct afswtch *rafp); +extern void set80211authmode(const char *, int, int, const struct afswtch *rafp); +extern void set80211powersave(const char *, int, int, const struct afswtch *rafp); +extern void set80211powersavemode(const char *, int, int, const struct afswtch *rafp); +extern void set80211powersavesleep(const char *, int, int, const struct afswtch *rafp); +extern void set80211wepmode(const char *, int, int, const struct afswtch *rafp); +extern void set80211wep(const char *, int, int, const struct afswtch *rafp); +extern void set80211weptxkey(const char *, int, int, const struct afswtch *rafp); +extern void set80211wepkey(const char *, int, int, const struct afswtch *rafp); +extern void set80211nwkey(const char *, int, int, const struct afswtch *rafp); +extern void ieee80211_status(int s, struct rt_addrinfo *); Index: sbin/ifconfig//ifmedia.c =================================================================== RCS file: /home/ncvs/src/sbin/ifconfig/ifmedia.c,v retrieving revision 1.6 diff -u -u -r1.6 ifmedia.c --- sbin/ifconfig//ifmedia.c 1999/08/28 00:13:08 1.6 +++ sbin/ifconfig//ifmedia.c 2001/03/01 00:07:13 @@ -152,6 +152,13 @@ else printf("no ring"); break; + case IFM_IEEE80211: + /* XXX: Different value for adhoc? */ + if (ifmr.ifm_status & IFM_ACTIVE) + printf("associated"); + else + printf("no carrier"); + break; } } @@ -318,6 +325,15 @@ static struct ifmedia_description ifm_subtype_fddi_option_descriptions[] = IFM_SUBTYPE_FDDI_OPTION_DESCRIPTIONS; +static struct ifmedia_description ifm_subtype_ieee80211_descriptions[] = + IFM_SUBTYPE_IEEE80211_DESCRIPTIONS; + +static struct ifmedia_description ifm_subtype_ieee80211_aliases[] = + IFM_SUBTYPE_IEEE80211_ALIASES; + +static struct ifmedia_description ifm_subtype_ieee80211_option_descriptions[] = + IFM_SUBTYPE_IEEE80211_OPTION_DESCRIPTIONS; + static struct ifmedia_description ifm_subtype_shared_descriptions[] = IFM_SUBTYPE_SHARED_DESCRIPTIONS; @@ -350,7 +366,7 @@ }, { { &ifm_shared_option_descriptions[0], 0 }, - { &ifm_subtype_ethernet_option_descriptions[0], 1 }, + { &ifm_subtype_ethernet_option_descriptions[0], 0 }, { NULL, 0 }, }, }, @@ -364,7 +380,7 @@ }, { { &ifm_shared_option_descriptions[0], 0 }, - { &ifm_subtype_tokenring_option_descriptions[0], 1 }, + { &ifm_subtype_tokenring_option_descriptions[0], 0 }, { NULL, 0 }, }, }, @@ -377,8 +393,22 @@ { NULL, 0 }, }, { + { &ifm_shared_option_descriptions[0], 0 }, + { &ifm_subtype_fddi_option_descriptions[0], 0 }, + { NULL, 0 }, + }, + }, + { + { + { &ifm_subtype_shared_descriptions[0], 0 }, + { &ifm_subtype_shared_aliases[0], 1 }, + { &ifm_subtype_ieee80211_descriptions[0], 0 }, + { &ifm_subtype_ieee80211_aliases[0], 1 }, + { NULL, 0 }, + }, + { { &ifm_shared_option_descriptions[0], 0 }, - { &ifm_subtype_fddi_option_descriptions[0], 1 }, + { &ifm_subtype_ieee80211_option_descriptions[0], 0 }, { NULL, 0 }, }, }, --- sbin/ifconfig/ifieee80211.c.orig Mon Jan 15 16:45:24 2001 +++ sbin/ifconfig/ifieee80211.c Thu Mar 1 18:33:06 2001 @@ -0,0 +1,518 @@ +/* + * Copyright 2001 The Aerospace Corporation. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AEROSPACE CORPORATION ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AEROSPACE CORPORATION BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + */ + +/*- + * Copyright (c) 1997, 1998, 2000 The NetBSD Foundation, Inc. + * All rights reserved. + * + * This code is derived from software contributed to The NetBSD Foundation + * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility, + * NASA Ames Research Center. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * This product includes software developed by the NetBSD + * Foundation, Inc. and its contributors. + * 4. Neither the name of The NetBSD Foundation nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS + * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS + * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include + +#include "ifconfig.h" + +static void set80211(int s, int type, int val, int len, u_int8_t *data); +static const char *get_string(const char *val, const char *sep, + u_int8_t *buf, int *lenp); +static void print_string(const u_int8_t *buf, int len); + +void +set80211ssid(const char *val, int d, int s, const struct afswtch *rafp) +{ + int ssid; + int len; + u_int8_t data[33]; + + ssid = 0; + + bzero(data, sizeof(data)); + len = sizeof(data); + get_string(val, NULL, data, &len); + + set80211(s, IEEE80211_IOC_SSID, ssid, len, data); +} + +void +set80211stationname(const char *val, int d, int s, const struct afswtch *rafp) +{ + int len; + u_int8_t data[33]; + + bzero(data, sizeof(data)); + len = sizeof(data); + get_string(val, NULL, data, &len); + + set80211(s, IEEE80211_IOC_STATIONNAME, 0, len, data); +} + +void +set80211channel(const char *val, int d, int s, const struct afswtch *rafp) +{ + set80211(s, IEEE80211_IOC_CHANNEL, atoi(val), 0, NULL); +} + +void +set80211authmode(const char *val, int d, int s, const struct afswtch *rafp) +{ + int mode; + + if(strcasecmp(val, "none") == 0) { + mode = IEEE80211_AUTH_NONE; + } else if(strcasecmp(val, "open") == 0) { + mode = IEEE80211_AUTH_OPEN; + } else if(strcasecmp(val, "shared") == 0) { + mode = IEEE80211_AUTH_SHARED; + } else { + err(1, "unknown authmode"); + } + + set80211(s, IEEE80211_IOC_AUTHMODE, mode, 0, NULL); +} + +void +set80211powersavemode(const char *val, int d, int s, const struct afswtch *rafp) +{ + int mode; + + if(strcasecmp(val, "off") == 0) { + mode = IEEE80211_POWERSAVE_OFF; + } else if(strcasecmp(val, "on") == 0) { + mode = IEEE80211_POWERSAVE_ON; + } else if(strcasecmp(val, "cam") == 0) { + mode = IEEE80211_POWERSAVE_CAM; + } else if(strcasecmp(val, "psp") == 0) { + mode = IEEE80211_POWERSAVE_PSP; + } else if(strcasecmp(val, "psp-cam") == 0) { + mode = IEEE80211_POWERSAVE_PSP_CAM; + } else { + err(1, "unknown powersavemode"); + } + + set80211(s, IEEE80211_IOC_POWERSAVE, mode, 0, NULL); +} + +void +set80211powersave(const char *val, int d, int s, const struct afswtch *rafp) +{ + if (d == 0) + set80211(s, IEEE80211_IOC_POWERSAVE, IEEE80211_POWERSAVE_OFF, + 0, NULL); + else + set80211(s, IEEE80211_IOC_POWERSAVE, IEEE80211_POWERSAVE_ON, + 0, NULL); +} + +void +set80211powersavesleep(const char *val, int d, int s, const struct afswtch *rafp) +{ + set80211(s, IEEE80211_IOC_POWERSAVESLEEP, atoi(val), 0, NULL); +} + +void +set80211wepmode(const char *val, int d, int s, const struct afswtch *rafp) +{ + int mode; + + if(strcasecmp(val, "off") == 0) { + mode = IEEE80211_WEP_OFF; + } else if(strcasecmp(val, "on") == 0) { + mode = IEEE80211_WEP_ON; + } else if(strcasecmp(val, "mixed") == 0) { + mode = IEEE80211_WEP_MIXED; + } else { + err(1, "unknown wep mode"); + } + + set80211(s, IEEE80211_IOC_WEP, mode, 0, NULL); +} + +void +set80211wep(const char *val, int d, int s, const struct afswtch *rafp) +{ + set80211(s, IEEE80211_IOC_WEP, d, 0, NULL); +} + +void +set80211weptxkey(const char *val, int d, int s, const struct afswtch *rafp) +{ + set80211(s, IEEE80211_IOC_WEPTXKEY, atoi(val)-1, 0, NULL); +} + +void +set80211wepkey(const char *val, int d, int s, const struct afswtch *rafp) +{ + int key = 0; + int len; + u_int8_t data[14]; + + if(isdigit(val[0]) && val[1] == ':') { + key = atoi(val)-1; + val += 2; + } + + bzero(data, sizeof(data)); + len = sizeof(data); + get_string(val, NULL, data, &len); + + set80211(s, IEEE80211_IOC_WEPKEY, key, len, data); +} + +/* + * This function is purly a NetBSD compatability interface. The NetBSD + * iterface is too inflexable, but it's there so we'll support it since + * it's not all that hard. + */ +void +set80211nwkey(const char *val, int d, int s, const struct afswtch *rafp) +{ + int txkey; + int i, len; + u_int8_t data[14]; + + set80211(s, IEEE80211_IOC_WEP, IEEE80211_WEP_ON, 0, NULL); + + if(isdigit(val[0]) && val[1] == ':') { + txkey = val[0]-'0'-1; + val += 2; + + for(i = 0; i < 4; i++) { + bzero(data, sizeof(data)); + len = sizeof(data); + val = get_string(val, ",", data, &len); + + set80211(s, IEEE80211_IOC_WEPKEY, i, len, data); + } + } else { + bzero(data, sizeof(data)); + len = sizeof(data); + get_string(val, NULL, data, &len); + txkey = 0; + + set80211(s, IEEE80211_IOC_WEPKEY, 0, len, data); + + bzero(data, sizeof(data)); + for(i = 1; i < 4; i++) + set80211(s, IEEE80211_IOC_WEPKEY, i, 0, data); + } + + set80211(s, IEEE80211_IOC_WEPTXKEY, txkey, 0, NULL); +} + +void +ieee80211_status (s, info) + int s; + struct rt_addrinfo *info __unused; +{ + int i; + int num; + struct ieee80211req ireq; + u_int8_t data[32]; + char spacer; + + (void) memset(&ireq, 0, sizeof(ireq)); + (void) strncpy(ireq.i_name, name, sizeof(ireq.i_name)); + ireq.i_data = &data; + + ireq.i_type = IEEE80211_IOC_SSID; + ireq.i_val = -1; + if (ioctl(s, SIOCG80211, &ireq) < 0) { + /* If we can't get the SSID, the this isn't an 802.11 device. */ + return; + } + printf("\tssid "); + print_string(data, ireq.i_len); + printf("\n"); + + ireq.i_type = IEEE80211_IOC_STATIONNAME; + if (ioctl(s, SIOCG80211, &ireq) != -1) { + printf("\tstationname "); + print_string(data, ireq.i_len); + printf("\n"); + } + + ireq.i_type = IEEE80211_IOC_CHANNEL; + if (ioctl(s, SIOCG80211, &ireq) < 0) { + goto end; + } + printf("\tchannel %d", ireq.i_val); + + ireq.i_type = IEEE80211_IOC_AUTHMODE; + if (ioctl(s, SIOCG80211, &ireq) != -1) { + printf(" authmode"); + switch (ireq.i_val) { + case IEEE80211_AUTH_NONE: + printf(" NONE"); + break; + case IEEE80211_AUTH_OPEN: + printf(" OPEN"); + break; + case IEEE80211_AUTH_SHARED: + printf(" SHARED"); + break; + default: + printf(" UNKNOWN"); + break; + } + } + + ireq.i_type = IEEE80211_IOC_POWERSAVE; + if (ioctl(s, SIOCG80211, &ireq) != -1 && + ireq.i_val != IEEE80211_POWERSAVE_NOSUP ) { + printf(" powersavemode"); + switch (ireq.i_val) { + case IEEE80211_POWERSAVE_OFF: + printf(" OFF"); + break; + case IEEE80211_POWERSAVE_CAM: + printf(" CAM"); + break; + case IEEE80211_POWERSAVE_PSP: + printf(" PSP"); + break; + case IEEE80211_POWERSAVE_PSP_CAM: + printf(" PSP-CAM"); + break; + } + + ireq.i_type = IEEE80211_IOC_POWERSAVESLEEP; + if (ioctl(s, SIOCG80211, &ireq) != -1) { + if(ireq.i_val) + printf(" powersavesleep %d", ireq.i_val); + } + } + + printf("\n"); + + ireq.i_type = IEEE80211_IOC_WEP; + if (ioctl(s, SIOCG80211, &ireq) < 0 || + ireq.i_val == IEEE80211_WEP_NOSUP) + goto nowep; + else { + printf("\twepmode"); + switch (ireq.i_val) { + case IEEE80211_WEP_OFF: + printf(" OFF"); + break; + case IEEE80211_WEP_ON: + printf(" ON"); + break; + case IEEE80211_WEP_MIXED: + printf(" MIXED"); + break; + default: + printf(" UNKNOWN"); + break; + } + + /* + * If we get here then we've got WEP support so we need + * to print WEP status. + */ + + ireq.i_type = IEEE80211_IOC_WEPTXKEY; + if (ioctl(s, SIOCG80211, &ireq) < 0) { + warn("WEP support, but no tx key!"); + goto end; + } + printf(" weptxkey %d", ireq.i_val+1); + + ireq.i_type = IEEE80211_IOC_NUMWEPKEYS; + if (ioctl(s, SIOCG80211, &ireq) < 0) { + warn("WEP support, but no NUMWEPKEYS support!"); + goto end; + } + num = ireq.i_val; + + printf("\n"); + + ireq.i_type = IEEE80211_IOC_WEPKEY; + spacer = '\t'; + for(i = 0; i < num; i++) { + ireq.i_val = i; + if (ioctl(s, SIOCG80211, &ireq) < 0) { + warn("WEP support, but can get keys!"); + goto end; + } + if(ireq.i_len == 0 || ireq.i_len > 13) + continue; + printf("%cwepkey %d:%s", spacer, i+1, + ireq.i_len <= 5 ? "64-bit" : "128-bit"); + if(spacer == '\t') + spacer = ' '; + } + + printf("\n"); + } +nowep: + + +end: + return; +} + +static void +set80211(int s, int type, int val, int len, u_int8_t *data) +{ + struct ieee80211req ireq; + + (void) memset(&ireq, 0, sizeof(ireq)); + (void) strncpy(ireq.i_name, name, sizeof(ireq.i_name)); + ireq.i_type = type; + ireq.i_val = val; + ireq.i_len = len; + ireq.i_data = data; + if(ioctl(s, SIOCS80211, &ireq) < 0) + err(1, "SIOCS80211"); +} + +static const char * +get_string(const char *val, const char *sep, u_int8_t *buf, int *lenp) +{ + int len; + int hexstr; + u_int8_t *p; + + len = *lenp; + p = buf; + hexstr = (val[0] == '0' && tolower((u_char)val[1]) == 'x'); + if (hexstr) + val += 2; + for (;;) { + if (*val == '\0') + break; + if (sep != NULL && strchr(sep, *val) != NULL) { + val++; + break; + } + if (hexstr) { + if (!isxdigit((u_char)val[0]) || + !isxdigit((u_char)val[1])) { + warnx("bad hexadecimal digits"); + return NULL; + } + } + if (p > buf + len) { + if (hexstr) + warnx("hexadecimal digits too long"); + else + warnx("strings too long"); + return NULL; + } + if (hexstr) { +#define tohex(x) (isdigit(x) ? (x) - '0' : tolower(x) - 'a' + 10) + *p++ = (tohex((u_char)val[0]) << 4) | + tohex((u_char)val[1]); +#undef tohex + val += 2; + } else + *p++ = *val++; + } + len = p - buf; + /* The string "-" is treated as the empty string. */ + if (!hexstr && len == 1 && buf[0] == '-') + len = 0; + if (len < *lenp) + memset(p, 0, *lenp - len); + *lenp = len; + return val; +} + +static void +print_string(const u_int8_t *buf, int len) +{ + int i; + int hasspc; + + i = 0; + hasspc = 0; + for(; i < len; i++) { + if (!isprint(buf[i]) && buf[i] != '\0') + break; + if (isspace(buf[i])) + hasspc++; + } + if (i == len) { + if (hasspc || len == 0 || buf[0] == '\0') + printf("\"%.*s\"", len, buf); + else + printf("%.*s", len, buf); + } else { + printf("0x"); + for (i = 0; i < len; i++) + printf("%02x", buf[i]); + } +} + Index: sys/dev/an/if_aironet_ieee.h =================================================================== RCS file: /home/ncvs/src/sys/dev/an/if_aironet_ieee.h,v retrieving revision 1.3 diff -u -u -r1.3 if_aironet_ieee.h --- sys/dev/an/if_aironet_ieee.h 2000/12/08 19:00:10 1.3 +++ sys/dev/an/if_aironet_ieee.h 2001/01/24 23:50:12 @@ -336,6 +336,7 @@ u_int8_t an_magic_packet_ctl; /* 0x99 */ u_int16_t an_rsvd9; }; +#endif #define AN_OPMODE_IBSS_ADHOC 0x0000 #define AN_OPMODE_INFRASTRUCTURE_STATION 0x0001 @@ -392,6 +393,7 @@ #define AN_TXPOWER_100MW 100 #define AN_TXPOWER_250MW 250 +#ifndef _KERNEL struct an_ltv_ssidlist { u_int16_t an_len; u_int16_t an_type; Index: sys/dev/an/if_an.c =================================================================== RCS file: /home/ncvs/src/sys/dev/an/if_an.c,v retrieving revision 1.14 diff -u -u -r1.14 if_an.c --- sys/dev/an/if_an.c 2001/01/19 01:58:28 1.14 +++ sys/dev/an/if_an.c 2001/03/02 20:38:31 @@ -113,6 +113,8 @@ #include #include #include +#include +#include #ifdef INET #include @@ -160,6 +162,9 @@ struct mbuf *, unsigned short)); #endif +static int an_media_change __P((struct ifnet *)); +static void an_media_status __P((struct ifnet *, struct ifmediareq *)); + /* * We probe for an Aironet 4500/4800 card by attempting to * read the default SSID list. On reset, the first entry in @@ -375,11 +380,36 @@ sc->an_ssidlist.an_ssid1_len = strlen(AN_DEFAULT_NETNAME); sc->an_config.an_opmode = - AN_OPMODE_IBSS_ADHOC; + AN_OPMODE_INFRASTRUCTURE_STATION; sc->an_tx_rate = 0; bzero((char *)&sc->an_stats, sizeof(sc->an_stats)); + ifmedia_init(&sc->an_ifmedia, 0, an_media_change, an_media_status); +#define ADD(m, c) ifmedia_add(&sc->an_ifmedia, (m), (c), NULL) + ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_IEEE80211_DS1, + IFM_IEEE80211_ADHOC, 0), 0); + ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_IEEE80211_DS1, 0, 0), 0); + ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_IEEE80211_DS2, + IFM_IEEE80211_ADHOC, 0), 0); + ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_IEEE80211_DS2, 0, 0), 0); + if(sc->an_caps.an_rates[2] == AN_RATE_5_5MBPS) { + ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_IEEE80211_DS5, + IFM_IEEE80211_ADHOC, 0), 0); + ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_IEEE80211_DS5, 0, 0), 0); + } + if(sc->an_caps.an_rates[3] == AN_RATE_11MBPS) { + ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_IEEE80211_DS11, + IFM_IEEE80211_ADHOC, 0), 0); + ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_IEEE80211_DS11, 0, 0), 0); + } + ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_AUTO, + IFM_IEEE80211_ADHOC, 0), 0); + ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_AUTO, 0, 0), 0); +#undef ADD + ifmedia_set(&sc->an_ifmedia, IFM_MAKEWORD(IFM_IEEE80211, IFM_AUTO, + 0, 0)); + /* * Call MI attach routine. */ @@ -1012,14 +1042,29 @@ caddr_t data; { int error = 0; + int len; + int i; struct an_softc *sc; struct an_req areq; struct ifreq *ifr; struct proc *p = curproc; + struct ieee80211req *ireq; + u_int8_t tmpstr[IEEE80211_NWID_LEN*2]; + u_int8_t *tmpptr; + struct an_ltv_genconfig *config; + struct an_ltv_key *key; + struct an_ltv_status *status; + struct an_ltv_ssidlist *ssids; sc = ifp->if_softc; AN_LOCK(sc); ifr = (struct ifreq *)data; + ireq = (struct ieee80211req *)data; + + config = (struct an_ltv_genconfig *)&areq; + key = (struct an_ltv_key *)&areq; + status = (struct an_ltv_status *)&areq; + ssids = (struct an_ltv_ssidlist *)&areq; if (sc->an_gone) { error = ENODEV; @@ -1051,6 +1096,10 @@ sc->an_if_flags = ifp->if_flags; error = 0; break; + case SIOCSIFMEDIA: + case SIOCGIFMEDIA: + error = ifmedia_ioctl(ifp, ifr, &sc->an_ifmedia, command); + break; case SIOCADDMULTI: case SIOCDELMULTI: /* The Aironet has no multicast filter. */ @@ -1090,6 +1139,366 @@ break; an_setdef(sc, &areq); break; + case SIOCG80211: + areq.an_len = sizeof(areq); + switch(ireq->i_type) { + case IEEE80211_IOC_SSID: + if(ireq->i_val == -1) { + areq.an_type = AN_RID_STATUS; + if (an_read_record(sc, + (struct an_ltv_gen *)&areq)) { + error = EINVAL; + break; + } + len = status->an_ssidlen; + tmpptr = status->an_ssid; + } else if(ireq->i_val >= 0) { + areq.an_type = AN_RID_SSIDLIST; + if (an_read_record(sc, + (struct an_ltv_gen *)&areq)) { + error = EINVAL; + break; + } + if(ireq->i_val == 0) { + len = ssids->an_ssid1_len; + tmpptr = ssids->an_ssid1; + } else if(ireq->i_val == 1) { + len = ssids->an_ssid2_len; + tmpptr = ssids->an_ssid3; + } else if(ireq->i_val == 1) { + len = ssids->an_ssid3_len; + tmpptr = ssids->an_ssid3; + } else { + error = EINVAL; + break; + } + } else { + error = EINVAL; + break; + } + if(len > IEEE80211_NWID_LEN) { + error = EINVAL; + break; + } + ireq->i_len = len; + bzero(tmpstr, IEEE80211_NWID_LEN); + bcopy(tmpptr, tmpstr, len); + error = copyout(tmpstr, ireq->i_data, + IEEE80211_NWID_LEN); + break; + case IEEE80211_IOC_NUMSSIDS: + ireq->i_val = 3; + break; + case IEEE80211_IOC_WEP: + areq.an_type = AN_RID_ACTUALCFG; + if (an_read_record(sc, + (struct an_ltv_gen *)&areq)) { + error = EINVAL; + break; + } + if(config->an_authtype & AN_AUTHTYPE_PRIVACY_IN_USE) { + if(config->an_authtype & + AN_AUTHTYPE_ALLOW_UNENCRYPTED) + ireq->i_val = IEEE80211_WEP_MIXED; + else + ireq->i_val = IEEE80211_WEP_ON; + + } else { + ireq->i_val = IEEE80211_WEP_OFF; + } + break; + case IEEE80211_IOC_WEPKEY: + /* + * XXX: I'm not entierly convinced this is + * correct, but it's what is implemented in + * ancontrol so it will have to do until we get + * access to actual Cisco code. + */ + if(ireq->i_val < 0 || ireq->i_val > 7) { + error = EINVAL; + break; + } + len = 0; + if(ireq->i_val < 4) { + areq.an_type = AN_RID_WEP_TEMP; + for(i=0; i<4; i++) { + if (an_read_record(sc, + (struct an_ltv_gen *)&areq)) { + error = EINVAL; + break; + } + len = key->klen; + if(i == ireq->i_val) + break; + /* Required to get next entry */ + areq.an_type = AN_RID_WEP_PERM; + } + if(error) + break; + } + /* We aren't allowed to read the value of the + * key from the card so we just output zeros + * like we would if we could read the card, but + * denied the user access. + */ + bzero(tmpstr, len); + ireq->i_len = len; + error = copyout(tmpstr, ireq->i_data, len); + break; + case IEEE80211_IOC_NUMWEPKEYS: + ireq->i_val = 8; + break; + case IEEE80211_IOC_WEPTXKEY: + areq.an_type = AN_RID_WEP_PERM; + key->kindex = 0xffff; + if (an_read_record(sc, + (struct an_ltv_gen *)&areq)) { + error = EINVAL; + break; + } + ireq->i_val = key->mac[0]; + break; + case IEEE80211_IOC_AUTHMODE: + areq.an_type = AN_RID_ACTUALCFG; + if (an_read_record(sc, + (struct an_ltv_gen *)&areq)) { + error = EINVAL; + break; + } + if ((config->an_authtype & AN_AUTHTYPE_MASK) == + AN_AUTHTYPE_NONE) { + ireq->i_val = IEEE80211_AUTH_NONE; + } else if ((config->an_authtype & AN_AUTHTYPE_MASK) == + AN_AUTHTYPE_OPEN) { + ireq->i_val = IEEE80211_AUTH_OPEN; + } else if ((config->an_authtype & AN_AUTHTYPE_MASK) == + AN_AUTHTYPE_SHAREDKEY) { + ireq->i_val = IEEE80211_AUTH_SHARED; + } else + error = EINVAL; + break; + case IEEE80211_IOC_STATIONNAME: + areq.an_type = AN_RID_ACTUALCFG; + if (an_read_record(sc, + (struct an_ltv_gen *)&areq)) { + error = EINVAL; + break; + } + ireq->i_len = sizeof(config->an_nodename); + tmpptr = config->an_nodename; + bzero(tmpstr, IEEE80211_NWID_LEN); + bcopy(tmpptr, tmpstr, ireq->i_len); + error = copyout(tmpstr, ireq->i_data, + IEEE80211_NWID_LEN); + break; + case IEEE80211_IOC_CHANNEL: + areq.an_type = AN_RID_STATUS; + if (an_read_record(sc, + (struct an_ltv_gen *)&areq)) { + error = EINVAL; + break; + } + ireq->i_val = status->an_cur_channel; + break; + case IEEE80211_IOC_POWERSAVE: + areq.an_type = AN_RID_ACTUALCFG; + if (an_read_record(sc, + (struct an_ltv_gen *)&areq)) { + error = EINVAL; + break; + } + if(config->an_psave_mode == AN_PSAVE_NONE) { + ireq->i_val = IEEE80211_POWERSAVE_OFF; + } else if(config->an_psave_mode == AN_PSAVE_CAM) { + ireq->i_val = IEEE80211_POWERSAVE_CAM; + } else if(config->an_psave_mode == AN_PSAVE_PSP) { + ireq->i_val = IEEE80211_POWERSAVE_PSP; + } else if(config->an_psave_mode == AN_PSAVE_PSP_CAM) { + ireq->i_val = IEEE80211_POWERSAVE_PSP_CAM; + } else + error = EINVAL; + break; + case IEEE80211_IOC_POWERSAVESLEEP: + areq.an_type = AN_RID_ACTUALCFG; + if (an_read_record(sc, + (struct an_ltv_gen *)&areq)) { + error = EINVAL; + break; + } + ireq->i_val = config->an_listen_interval; + break; + } + break; + case SIOCS80211: + areq.an_len = sizeof(areq); + /* + * We need a config structure for everything but the WEP + * key management and SSIDs so we get it now so avoid + * duplicating this code every time. + */ + if (ireq->i_type != IEEE80211_IOC_SSID && + ireq->i_type != IEEE80211_IOC_WEPKEY && + ireq->i_type != IEEE80211_IOC_WEPTXKEY) { + areq.an_type = AN_RID_GENCONFIG; + if (an_read_record(sc, + (struct an_ltv_gen *)&areq)) { + error = EINVAL; + break; + } + } + switch(ireq->i_type) { + case IEEE80211_IOC_SSID: + areq.an_type = AN_RID_SSIDLIST; + if (an_read_record(sc, + (struct an_ltv_gen *)&areq)) { + error = EINVAL; + break; + } + if(ireq->i_len > IEEE80211_NWID_LEN) { + error = EINVAL; + break; + } + switch (ireq->i_val) { + case 0: + error = copyin(ireq->i_data, + ssids->an_ssid1, ireq->i_len); + ssids->an_ssid1_len = ireq->i_len; + break; + case 1: + error = copyin(ireq->i_data, + ssids->an_ssid2, ireq->i_len); + ssids->an_ssid2_len = ireq->i_len; + break; + case 2: + error = copyin(ireq->i_data, + ssids->an_ssid3, ireq->i_len); + ssids->an_ssid3_len = ireq->i_len; + break; + default: + error = EINVAL; + break; + } + break; + case IEEE80211_IOC_WEP: + switch (ireq->i_val) { + case IEEE80211_WEP_OFF: + config->an_authtype &= + ~(AN_AUTHTYPE_PRIVACY_IN_USE | + AN_AUTHTYPE_ALLOW_UNENCRYPTED); + break; + case IEEE80211_WEP_ON: + config->an_authtype |= + AN_AUTHTYPE_PRIVACY_IN_USE; + config->an_authtype &= + ~AN_AUTHTYPE_ALLOW_UNENCRYPTED; + break; + case IEEE80211_WEP_MIXED: + config->an_authtype |= + AN_AUTHTYPE_PRIVACY_IN_USE | + AN_AUTHTYPE_ALLOW_UNENCRYPTED; + break; + default: + error = EINVAL; + break; + } + break; + case IEEE80211_IOC_WEPKEY: + if (ireq->i_val < 0 || ireq->i_val > 7 || + ireq->i_len > 13) { + error = EINVAL; + break; + } + error = copyin(ireq->i_data, tmpstr, 13); + if(error) + break; + bzero(&areq, sizeof(struct an_ltv_key)); + areq.an_len = sizeof(struct an_ltv_key); + key->mac[0] = 1; /* The others are 0. */ + key->kindex = ireq->i_val % 4; + if(ireq->i_val < 4) + areq.an_type = AN_RID_WEP_TEMP; + else + areq.an_type = AN_RID_WEP_PERM; + key->klen = ireq->i_len; + bcopy(tmpstr, key->key, key->klen); + break; + case IEEE80211_IOC_WEPTXKEY: + if(ireq->i_val < 0 || ireq->i_val > 3) { + error = EINVAL; + break; + } + bzero(&areq, sizeof(struct an_ltv_key)); + areq.an_len = sizeof(struct an_ltv_key); + areq.an_type = AN_RID_WEP_PERM; + key->kindex = 0xffff; + key->mac[0] = ireq->i_val; + break; + case IEEE80211_IOC_AUTHMODE: + switch (ireq->i_val) { + case IEEE80211_AUTH_NONE: + config->an_authtype = AN_AUTHTYPE_NONE | + (config->an_authtype & ~AN_AUTHTYPE_MASK); + break; + case IEEE80211_AUTH_OPEN: + config->an_authtype = AN_AUTHTYPE_OPEN | + (config->an_authtype & ~AN_AUTHTYPE_MASK); + break; + case IEEE80211_AUTH_SHARED: + config->an_authtype = AN_AUTHTYPE_SHAREDKEY | + (config->an_authtype & ~AN_AUTHTYPE_MASK); + break; + default: + error = EINVAL; + } + break; + case IEEE80211_IOC_STATIONNAME: + if(ireq->i_len > 16) { + error = EINVAL; + break; + } + bzero(config->an_nodename, 16); + error = copyin(ireq->i_data, + config->an_nodename, ireq->i_len); + break; + case IEEE80211_IOC_CHANNEL: + /* + * The actual range is 1-14, but if you set it + * to 0 you get the default so we let that work + * too. + */ + if (ireq->i_val < 0 || ireq->i_val >14) { + error = EINVAL; + break; + } + config->an_ds_channel = ireq->i_val; + break; + case IEEE80211_IOC_POWERSAVE: + switch (ireq->i_val) { + case IEEE80211_POWERSAVE_OFF: + config->an_psave_mode = AN_PSAVE_NONE; + break; + case IEEE80211_POWERSAVE_CAM: + config->an_psave_mode = AN_PSAVE_CAM; + break; + case IEEE80211_POWERSAVE_PSP: + config->an_psave_mode = AN_PSAVE_PSP; + break; + case IEEE80211_POWERSAVE_PSP_CAM: + config->an_psave_mode = AN_PSAVE_PSP_CAM; + break; + default: + error = EINVAL; + break; + } + break; + case IEEE80211_IOC_POWERSAVESLEEP: + config->an_listen_interval = ireq->i_val; + break; + } + + if (!error) + an_setdef(sc, &areq); + break; default: error = EINVAL; break; @@ -1447,6 +1856,7 @@ static int cache_slot = 0; /* use this cache entry */ static int wrapindex = 0; /* next "free" cache entry */ int saanp=0; + int sig, noise; /* filters: * 1. ip only @@ -1554,3 +1964,84 @@ return; } #endif + +static int an_media_change(ifp) + struct ifnet *ifp; +{ + struct an_softc *sc = ifp->if_softc; + int otype = sc->an_config.an_opmode; + int orate = sc->an_tx_rate; + + if ((sc->an_ifmedia.ifm_cur->ifm_media & IFM_IEEE80211_ADHOC) != 0) + sc->an_config.an_opmode = AN_OPMODE_IBSS_ADHOC; + else + sc->an_config.an_opmode = AN_OPMODE_INFRASTRUCTURE_STATION; + + switch (IFM_SUBTYPE(sc->an_ifmedia.ifm_cur->ifm_media)) { + case IFM_IEEE80211_DS1: + sc->an_tx_rate = AN_RATE_1MBPS; + break; + case IFM_IEEE80211_DS2: + sc->an_tx_rate = AN_RATE_2MBPS; + break; + case IFM_IEEE80211_DS5: + sc->an_tx_rate = AN_RATE_5_5MBPS; + break; + case IFM_IEEE80211_DS11: + sc->an_tx_rate = AN_RATE_11MBPS; + break; + case IFM_AUTO: + sc->an_tx_rate = 0; + break; + } + + if (otype != sc->an_config.an_opmode || + orate != sc->an_tx_rate) + an_init(sc); + + return(0); +} + +static void an_media_status(ifp, imr) + struct ifnet *ifp; + struct ifmediareq *imr; +{ + struct an_ltv_status status; + struct an_softc *sc = ifp->if_softc; + + status.an_len = sizeof(status); + status.an_type = AN_RID_STATUS; + if (an_read_record(sc, (struct an_ltv_gen *)&status)) { + /* If the status read fails, just lie. */ + imr->ifm_active = sc->an_ifmedia.ifm_cur->ifm_media; + imr->ifm_status = IFM_AVALID|IFM_ACTIVE; + } + + if(sc->an_tx_rate == 0) { + imr->ifm_active = IFM_IEEE80211|IFM_AUTO; + if (sc->an_config.an_opmode == AN_OPMODE_IBSS_ADHOC) + imr->ifm_active |= IFM_IEEE80211_ADHOC; + switch(status.an_current_tx_rate) { + case AN_RATE_1MBPS: + imr->ifm_active |= IFM_IEEE80211_DS1; + break; + case AN_RATE_2MBPS: + imr->ifm_active |= IFM_IEEE80211_DS2; + break; + case AN_RATE_5_5MBPS: + imr->ifm_active |= IFM_IEEE80211_DS5; + break; + case AN_RATE_11MBPS: + imr->ifm_active |= IFM_IEEE80211_DS11; + break; + } + } else { + imr->ifm_active = sc->an_ifmedia.ifm_cur->ifm_media; + } + + imr->ifm_status = IFM_AVALID; + if (sc->an_config.an_opmode == AN_OPMODE_IBSS_ADHOC) + imr->ifm_status |= IFM_ACTIVE; + else if (status.an_opmode & AN_STATUS_OPMODE_ASSOCIATED) + imr->ifm_status |= IFM_ACTIVE; +} Index: sys/dev/an/if_an_isa.c =================================================================== RCS file: /home/ncvs/src/sys/dev/an/if_an_isa.c,v retrieving revision 1.4 diff -u -u -r1.4 if_an_isa.c --- sys/dev/an/if_an_isa.c 2000/10/13 22:04:20 1.4 +++ sys/dev/an/if_an_isa.c 2001/02/28 01:28:16 @@ -63,6 +63,7 @@ #include #include #include +#include #include #include @@ -137,6 +138,7 @@ struct ifnet *ifp = &sc->arpcom.ac_if; an_stop(sc); + ifmedia_removeall(&sc->an_ifmedia); ether_ifdetach(ifp, ETHER_BPF_SUPPORTED); bus_teardown_intr(dev, sc->irq_res, sc->irq_handle); an_release_resources(dev); Index: sys/dev/an/if_an_pccard.c =================================================================== RCS file: /home/ncvs/src/sys/dev/an/if_an_pccard.c,v retrieving revision 1.6 diff -u -u -r1.6 if_an_pccard.c --- sys/dev/an/if_an_pccard.c 2000/10/20 07:57:56 1.6 +++ sys/dev/an/if_an_pccard.c 2001/02/28 01:28:20 @@ -63,6 +63,7 @@ #include #include #include +#include #ifndef lint static const char rcsid[] = @@ -110,6 +111,7 @@ return(0); } an_stop(sc); + ifmedia_removeall(&sc->an_ifmedia); ifp->if_flags &= ~IFF_RUNNING; ether_ifdetach(ifp, ETHER_BPF_SUPPORTED); sc->an_gone = 1; Index: sys/dev/an/if_an_pci.c =================================================================== RCS file: /home/ncvs/src/sys/dev/an/if_an_pci.c,v retrieving revision 1.8 diff -u -u -r1.8 if_an_pci.c --- sys/dev/an/if_an_pci.c 2000/10/20 07:57:56 1.8 +++ sys/dev/an/if_an_pci.c 2001/02/28 01:28:27 @@ -76,6 +76,7 @@ #include #include #include +#include #include #include @@ -195,6 +196,7 @@ struct ifnet *ifp = &sc->arpcom.ac_if; an_stop(sc); + ifmedia_removeall(&sc->an_ifmedia); ether_ifdetach(ifp, ETHER_BPF_SUPPORTED); bus_teardown_intr(dev, sc->irq_res, sc->irq_handle); an_release_resources(dev); Index: sys/dev/an/if_anreg.h =================================================================== RCS file: /home/ncvs/src/sys/dev/an/if_anreg.h,v retrieving revision 1.5 diff -u -u -r1.5 if_anreg.h --- sys/dev/an/if_anreg.h 2001/02/09 06:08:38 1.5 +++ sys/dev/an/if_anreg.h 2001/02/28 01:17:51 @@ -842,6 +842,7 @@ struct callout_handle an_stat_ch; struct mtx an_mtx; device_t an_dev; + struct ifmedia an_ifmedia; }; #define AN_LOCK(_sc) mtx_lock(&(_sc)->an_mtx) Index: sys/dev/awi/awi.c =================================================================== RCS file: /home/ncvs/src/sys/dev/awi/awi.c,v retrieving revision 1.12 diff -u -u -r1.12 awi.c --- sys/dev/awi/awi.c 2001/02/06 10:10:57 1.12 +++ sys/dev/awi/awi.c 2001/02/11 01:05:42 @@ -455,9 +455,12 @@ struct awi_softc *sc = ifp->if_softc; struct ifreq *ifr = (struct ifreq *)data; struct ifaddr *ifa = (struct ifaddr *)data; + struct ieee80211req *ireq = (struct ieee80211req *)data; int s, error; struct ieee80211_nwid nwid; u_int8_t *p; + int len; + u_int8_t tmpstr[IEEE80211_NWID_LEN*2]; s = splnet(); @@ -566,6 +569,184 @@ error = ifmedia_ioctl(ifp, ifr, &sc->sc_media, cmd); break; #endif +#ifdef __FreeBSD__ + case SIOCG80211: + switch(ireq->i_type) { + case IEEE80211_IOC_SSID: + bzero(tmpstr, IEEE80211_NWID_LEN); + if(ireq->i_val == -1 && ifp->if_flags & IFF_RUNNING) { + if (sc->sc_mib_local.Network_Mode) { + p = sc->sc_bss.essid; + len = p[1]; + p += 2; + } else { + len = ETHER_ADDR_LEN; + p = sc->sc_bss.bssid; + } + } else if(ireq->i_val == 0) { + if (sc->sc_mib_local.Network_Mode) + p = sc->sc_mib_mac.aDesired_ESS_ID; + else + p = sc->sc_ownssid; + len = p[1]; + p += 2; + } else { + error = EINVAL; + break; + } + if(len > IEEE80211_NWID_LEN) { + error = EINVAL; + break; + } + bcopy(p, tmpstr, len); + error = copyout(tmpstr, ireq->i_data, + IEEE80211_NWID_LEN); + break; + case IEEE80211_IOC_NUMSSIDS: + ireq->i_val = 1; + break; + case IEEE80211_IOC_WEP: + /* XXX: I'm not sure this is entierly correct */ + ireq->i_val = awi_wep_getalgo(sc); + if(ireq->i_val != IEEE80211_WEP_OFF) + ireq->i_val = IEEE80211_WEP_ON; + break; + case IEEE80211_IOC_WEPKEY: + if(ireq->i_val < 0 || ireq->i_val > 3) { + error = EINVAL; + break; + } + len = sizeof(tmpstr); + error = awi_wep_getkey(sc, ireq->i_val, tmpstr, &len); + if(error) + break; + if(!suser(curproc)) + bzero(tmpstr, len); + ireq->i_val = len; + error = copyout(tmpstr, ireq->i_data, len); + break; + case IEEE80211_IOC_NUMWEPKEYS: + ireq->i_val = 4; + break; + case IEEE80211_IOC_WEPTXKEY: + ireq->i_val = sc->sc_wep_defkid; + break; + case IEEE80211_IOC_AUTHMODE: + /* XXX: Is this correct? */ + ireq->i_val = IEEE80211_AUTH_OPEN; + break; + case IEEE80211_IOC_STATIONNAME: + bzero(tmpstr, IEEE80211_NWID_LEN); + p = hostname; + len = strlen(hostname); + if(len > IEEE80211_NWID_LEN) { + error = EINVAL; + break; + } + bcopy(p, tmpstr, len); + error = copyout(tmpstr, ireq->i_data, + IEEE80211_NWID_LEN); + break; + case IEEE80211_IOC_CHANNEL: + /* XXX: Handle FH cards */ + ireq->i_val = sc->sc_bss.chanset; + break; + case IEEE80211_IOC_POWERSAVE: + /* + * There appears to be a mib for this in the + * softc, but since there's no way to enable + * powersaving reporting it's value isn't really + * meaningfull. + */ + ireq->i_val = IEEE80211_POWERSAVE_NOSUP; + break; + case IEEE80211_IOC_POWERSAVESLEEP: + error = EINVAL; + break; + default: + error = EINVAL; + break; + } + break; + case SIOCS80211: + error = suser(curproc); + if(error) + break; + switch(ireq->i_type) { + case IEEE80211_IOC_SSID: + if(ireq->i_val != 0) { + error = EINVAL; + break; + } + bzero(tmpstr, AWI_ESS_ID_SIZE); + tmpstr[0] = IEEE80211_ELEMID_SSID; + tmpstr[1] = ireq->i_val; + error = copyin(ireq->i_data, tmpstr+2, ireq->i_val); + if(error) + break; + bcopy(tmpstr, sc->sc_mib_mac.aDesired_ESS_ID, + AWI_ESS_ID_SIZE); + bcopy(tmpstr, sc->sc_ownssid, AWI_ESS_ID_SIZE); + break; + case IEEE80211_IOC_WEP: + if(ireq->i_val == IEEE80211_WEP_OFF) + error = awi_wep_setalgo(sc, 0); + else + error = awi_wep_setalgo(sc, 1); + break; + case IEEE80211_IOC_WEPKEY: + error = copyin(ireq->i_data, tmpstr, 14); + if(error) + break; + if(ireq->i_val < 0 || ireq->i_val > 3 || + tmpstr[0] > 13) { + error = EINVAL; + break; + } + error = awi_wep_setkey(sc, ireq->i_val, tmpstr+1, + tmpstr[0]); + break; + case IEEE80211_IOC_WEPTXKEY: + if(ireq->i_val < 0 || ireq->i_val > 3) { + error = EINVAL; + break; + } + sc->sc_wep_defkid = ireq->i_val; + break; + case IEEE80211_IOC_AUTHMODE: + error = EINVAL; + break; + case IEEE80211_IOC_STATIONNAME: + error = EPERM; + break; + case IEEE80211_IOC_CHANNEL: + if(ireq->i_val < sc->sc_scan_min || + ireq->i_val > sc->sc_scan_max) { + error = EINVAL; + break; + } + sc->sc_ownch = ireq->i_val; + break; + case IEEE80211_IOC_POWERSAVE: + if(ireq->i_val != 0) + error = EINVAL; + break; + case IEEE80211_IOC_POWERSAVESLEEP: + error = EINVAL; + break; + default: + error = EINVAL; + break; + } + /* Restart the card so the change takes effect */ + if(!error) { + if(sc->sc_enabled) { + awi_stop(sc); + error = awi_init(sc); + } + } + break; +#endif /* __FreeBSD__ */ default: error = awi_wicfg(ifp, cmd, data); break; Index: sys/dev/wi/if_wavelan_ieee.h =================================================================== RCS file: /home/ncvs/src/sys/dev/wi/if_wavelan_ieee.h,v retrieving revision 1.5 diff -u -u -r1.5 if_wavelan_ieee.h --- sys/dev/wi/if_wavelan_ieee.h 2000/02/02 17:59:13 1.5 +++ sys/dev/wi/if_wavelan_ieee.h 2001/01/22 20:05:07 @@ -169,6 +169,7 @@ u_int32_t wi_rx_msg_in_msg_frags; u_int32_t wi_rx_msg_in_bad_msg_frags; }; +#endif /* * These are all the LTV record types that we can read or write @@ -247,6 +248,7 @@ #define WI_RID_TX_CRYPT_KEY 0xFCB1 #define WI_RID_TICK_TIME 0xFCE0 +#ifndef _KERNEL struct wi_key { u_int16_t wi_keylen; u_int8_t wi_keydat[14]; @@ -257,6 +259,7 @@ u_int16_t wi_type; struct wi_key wi_keys[4]; }; +#endif /* * NIC information @@ -315,7 +318,6 @@ #define WI_RID_CCA_TIME 0xFDC4 /* clear chan assess time */ #define WI_RID_MAC_PROC_DELAY 0xFDC5 /* MAC processing delay time */ #define WI_RID_DATA_RATES 0xFDC6 /* supported data rates */ -#endif #endif Index: sys/dev/wi/if_wi.c =================================================================== RCS file: /home/ncvs/src/sys/dev/wi/if_wi.c,v retrieving revision 1.37 diff -u -u -r1.37 if_wi.c --- sys/dev/wi/if_wi.c 2001/02/06 10:11:17 1.37 +++ sys/dev/wi/if_wi.c 2001/03/02 02:07:42 @@ -91,6 +91,7 @@ #include #include #include +#include #include #include @@ -157,6 +158,10 @@ static int wi_alloc __P((device_t)); static void wi_free __P((device_t)); +static int wi_get_cur_ssid __P((struct wi_softc *, char *, int *)); +static int wi_media_change __P((struct ifnet *)); +static void wi_media_status __P((struct ifnet *, struct ifmediareq *)); + static device_method_t wi_pccard_methods[] = { /* Device interface */ DEVMETHOD(device_probe, pccard_compat_probe), @@ -242,6 +247,9 @@ wi_stop(sc); + /* Delete all remaining media. */ + ifmedia_removeall(&sc->ifmedia); + ether_ifdetach(ifp, ETHER_BPF_SUPPORTED); bus_teardown_intr(dev, sc->irq, sc->wi_intrhand); wi_free(dev); @@ -346,7 +354,7 @@ sizeof(WI_DEFAULT_IBSS) - 1); sc->wi_portnum = WI_DEFAULT_PORT; - sc->wi_ptype = WI_PORTTYPE_ADHOC; + sc->wi_ptype = WI_PORTTYPE_BSS; sc->wi_ap_density = WI_DEFAULT_AP_DENSITY; sc->wi_rts_thresh = WI_DEFAULT_RTS_THRESH; sc->wi_tx_rate = WI_DEFAULT_TX_RATE; @@ -385,6 +393,29 @@ wi_init(sc); wi_stop(sc); + ifmedia_init(&sc->ifmedia, 0, wi_media_change, wi_media_status); + /* XXX: Should read from card capabilities */ +#define ADD(m, c) ifmedia_add(&sc->ifmedia, (m), (c), NULL) + ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_IEEE80211_DS1, + IFM_IEEE80211_ADHOC, 0), 0); + ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_IEEE80211_DS1, 0, 0), 0); + ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_IEEE80211_DS2, + IFM_IEEE80211_ADHOC, 0), 0); + ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_IEEE80211_DS2, 0, 0), 0); + ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_IEEE80211_DS5, + IFM_IEEE80211_ADHOC, 0), 0); + ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_IEEE80211_DS5, 0, 0), 0); + ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_IEEE80211_DS11, + IFM_IEEE80211_ADHOC, 0), 0); + ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_IEEE80211_DS11, 0, 0), 0); + ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_AUTO, + IFM_IEEE80211_ADHOC, 0), 0); + ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_AUTO, 0, 0), 0); +#undef ADD + ifmedia_set(&sc->ifmedia, IFM_MAKEWORD(IFM_IEEE80211, IFM_AUTO, + 0, 0)); + + /* * Call MI attach routine. */ @@ -1137,14 +1168,19 @@ caddr_t data; { int error = 0; + int len; + u_int8_t tmpkey[14]; + char tmpssid[IEEE80211_NWID_LEN]; struct wi_softc *sc; struct wi_req wreq; struct ifreq *ifr; + struct ieee80211req *ireq; struct proc *p = curproc; sc = ifp->if_softc; WI_LOCK(sc); ifr = (struct ifreq *)data; + ireq = (struct ieee80211req *)data; if (sc->wi_gone) { error = ENODEV; @@ -1177,6 +1213,10 @@ sc->wi_if_flags = ifp->if_flags; error = 0; break; + case SIOCSIFMEDIA: + case SIOCGIFMEDIA: + error = ifmedia_ioctl(ifp, ifr, &sc->ifmedia, command); + break; case SIOCADDMULTI: case SIOCDELMULTI: wi_setmulti(sc); @@ -1238,6 +1278,204 @@ wi_setdef(sc, &wreq); } break; + case SIOCG80211: + switch(ireq->i_type) { + case IEEE80211_IOC_SSID: + if(ireq->i_val == -1) { + bzero(tmpssid, IEEE80211_NWID_LEN); + error = wi_get_cur_ssid(sc, tmpssid, &len); + printf("wi: '%s' %d\n", tmpssid, len); + if (error != 0) + break; + error = copyout(tmpssid, ireq->i_data, + IEEE80211_NWID_LEN); + ireq->i_len = len; + } else if (ireq->i_val == 0) { + error = copyout(sc->wi_net_name, + ireq->i_data, + IEEE80211_NWID_LEN); + ireq->i_len = IEEE80211_NWID_LEN; + } else + error = EINVAL; + break; + case IEEE80211_IOC_NUMSSIDS: + ireq->i_val = 1; + break; + case IEEE80211_IOC_WEP: + if(!sc->wi_has_wep) { + ireq->i_val = IEEE80211_WEP_NOSUP; + } else { + if(sc->wi_use_wep) { + ireq->i_val = + IEEE80211_WEP_MIXED; + } else { + ireq->i_val = + IEEE80211_WEP_OFF; + } + } + break; + case IEEE80211_IOC_WEPKEY: + if(!sc->wi_has_wep || + ireq->i_val < 0 || ireq->i_val > 3) { + error = EINVAL; + break; + } + len = sc->wi_keys.wi_keys[ireq->i_val].wi_keylen; + if (suser(p)) + bcopy(sc->wi_keys.wi_keys[ireq->i_val].wi_keydat, + tmpkey, len); + else + bzero(tmpkey, len); + + ireq->i_len = len; + error = copyout(tmpkey, ireq->i_data, len); + + break; + case IEEE80211_IOC_NUMWEPKEYS: + if(!sc->wi_has_wep) + error = EINVAL; + else + ireq->i_val = 4; + break; + case IEEE80211_IOC_WEPTXKEY: + if(!sc->wi_has_wep) + error = EINVAL; + else + ireq->i_val = sc->wi_tx_key; + break; + case IEEE80211_IOC_AUTHMODE: + ireq->i_val = IEEE80211_AUTH_NONE; + break; + case IEEE80211_IOC_STATIONNAME: + error = copyout(sc->wi_node_name, + ireq->i_data, IEEE80211_NWID_LEN); + ireq->i_len = IEEE80211_NWID_LEN; + break; + case IEEE80211_IOC_CHANNEL: + wreq.wi_type = WI_RID_CURRENT_CHAN; + wreq.wi_len = WI_MAX_DATALEN; + if (wi_read_record(sc, (struct wi_ltv_gen *)&wreq)) + error = EINVAL; + else { + ireq->i_val = wreq.wi_val[0]; + } + break; + case IEEE80211_IOC_POWERSAVE: + if(sc->wi_pm_enabled) + ireq->i_val = IEEE80211_POWERSAVE_ON; + else + ireq->i_val = IEEE80211_POWERSAVE_OFF; + break; + case IEEE80211_IOC_POWERSAVESLEEP: + ireq->i_val = sc->wi_max_sleep; + break; + default: + error = EINVAL; + } + break; + case SIOCS80211: + if ((error = suser(p))) + goto out; + switch(ireq->i_type) { + case IEEE80211_IOC_SSID: + if (ireq->i_val != 0 || + ireq->i_len > IEEE80211_NWID_LEN) { + error = EINVAL; + break; + } + /* We set both of them */ + bzero(sc->wi_net_name, IEEE80211_NWID_LEN); + error = copyin(ireq->i_data, + sc->wi_net_name, ireq->i_len); + bcopy(sc->wi_net_name, sc->wi_ibss_name, IEEE80211_NWID_LEN); + break; + case IEEE80211_IOC_WEP: + /* + * These cards only support one mode so + * we just turn wep on what ever is + * passed in if it's not OFF. + */ + if (ireq->i_val == IEEE80211_WEP_OFF) { + sc->wi_use_wep = 0; + } else { + sc->wi_use_wep = 1; + } + break; + case IEEE80211_IOC_WEPKEY: + if (ireq->i_val < 0 || ireq->i_val > 3 || + ireq->i_len > 13) { + error = EINVAL; + break; + } + bzero(sc->wi_keys.wi_keys[ireq->i_val].wi_keydat, 13); + error = copyin(ireq->i_data, + sc->wi_keys.wi_keys[ireq->i_val].wi_keydat, + ireq->i_len); + if(error) + break; + sc->wi_keys.wi_keys[ireq->i_val].wi_keylen = + ireq->i_len; + break; + case IEEE80211_IOC_WEPTXKEY: + if (ireq->i_val < 0 || ireq->i_val > 3) { + error = EINVAL; + break; + } + sc->wi_tx_key = ireq->i_val; + break; + case IEEE80211_IOC_AUTHMODE: + error = EINVAL; + break; + case IEEE80211_IOC_STATIONNAME: + if (ireq->i_len > 32) { + error = EINVAL; + break; + } + bzero(sc->wi_node_name, 32); + error = copyin(ireq->i_data, + sc->wi_node_name, ireq->i_len); + break; + case IEEE80211_IOC_CHANNEL: + /* + * The actual range is 1-14, but if you + * set it to 0 you get the default. So + * we let that work too. + */ + if (ireq->i_val < 0 || ireq->i_val > 14) { + error = EINVAL; + break; + } + sc->wi_channel = ireq->i_val; + break; + case IEEE80211_IOC_POWERSAVE: + switch (ireq->i_val) { + case IEEE80211_POWERSAVE_OFF: + sc->wi_pm_enabled = 0; + break; + case IEEE80211_POWERSAVE_ON: + sc->wi_pm_enabled = 1; + break; + default: + error = EINVAL; + break; + } + break; + case IEEE80211_IOC_POWERSAVESLEEP: + if (ireq->i_val < 0) { + error = EINVAL; + break; + } + sc->wi_max_sleep = ireq->i_val; + break; + default: + error = EINVAL; + break; + } + + /* Reinitialize WaveLAN. */ + wi_init(sc); + + break; default: error = EINVAL; break; @@ -1796,3 +2034,142 @@ return; } #endif + +static int wi_get_cur_ssid(sc, ssid, len) + struct wi_softc *sc; + char *ssid; + int *len; +{ + int error = 0; + struct wi_req wreq; + + wreq.wi_len = WI_MAX_DATALEN; + switch (sc->wi_ptype) { + case WI_PORTTYPE_ADHOC: + wreq.wi_type = WI_RID_CURRENT_SSID; + error = wi_read_record(sc, (struct wi_ltv_gen *)&wreq); + if (error != 0) + break; + if (wreq.wi_val[0] > IEEE80211_NWID_LEN) { + error = EINVAL; + break; + } + *len = wreq.wi_val[0]; + bcopy(&wreq.wi_val[1], ssid, IEEE80211_NWID_LEN); + break; + case WI_PORTTYPE_BSS: + wreq.wi_type = WI_RID_COMMQUAL; + error = wi_read_record(sc, (struct wi_ltv_gen *)&wreq); + if (error != 0) + break; + if (wreq.wi_val[0] != 0) /* associated */ { + wreq.wi_type = WI_RID_CURRENT_SSID; + wreq.wi_len = WI_MAX_DATALEN; + error = wi_read_record(sc, (struct wi_ltv_gen *)&wreq); + if (error != 0) + break; + if (wreq.wi_val[0] > IEEE80211_NWID_LEN) { + error = EINVAL; + break; + } + *len = wreq.wi_val[0]; + bcopy(&wreq.wi_val[1], ssid, IEEE80211_NWID_LEN); + } else { + *len = IEEE80211_NWID_LEN; + bcopy(sc->wi_net_name, ssid, IEEE80211_NWID_LEN); + } + break; + default: + error = EINVAL; + break; + } + + return error; +} + +static int wi_media_change(ifp) + struct ifnet *ifp; +{ + struct wi_softc *sc = ifp->if_softc; + int otype = sc->wi_ptype; + int orate = sc->wi_tx_rate; + + if ((sc->ifmedia.ifm_cur->ifm_media & IFM_IEEE80211_ADHOC) != 0) + sc->wi_ptype = WI_PORTTYPE_ADHOC; + else + sc->wi_ptype = WI_PORTTYPE_BSS; + + switch (IFM_SUBTYPE(sc->ifmedia.ifm_cur->ifm_media)) { + case IFM_IEEE80211_DS1: + sc->wi_tx_rate = 1; + break; + case IFM_IEEE80211_DS2: + sc->wi_tx_rate = 2; + break; + case IFM_IEEE80211_DS5: + sc->wi_tx_rate = 5; + break; + case IFM_IEEE80211_DS11: + sc->wi_tx_rate = 11; + break; + case IFM_AUTO: + sc->wi_tx_rate = 3; + break; + } + + if (otype != sc->wi_ptype || + orate != sc->wi_tx_rate) + wi_init(sc); + + return(0); +} + +static void wi_media_status(ifp, imr) + struct ifnet *ifp; + struct ifmediareq *imr; +{ + struct wi_req wreq; + struct wi_softc *sc = ifp->if_softc; + + if (sc->wi_tx_rate == 3) { + imr->ifm_active = IFM_IEEE80211|IFM_AUTO; + if (sc->wi_ptype == WI_PORTTYPE_ADHOC) + imr->ifm_active |= IFM_IEEE80211_ADHOC; + wreq.wi_type = WI_RID_CUR_TX_RATE; + wreq.wi_len = WI_MAX_DATALEN; + if (wi_read_record(sc, (struct wi_ltv_gen *)&wreq) == 0) { + switch(wreq.wi_val[0]) { + case 1: + imr->ifm_active |= IFM_IEEE80211_DS1; + break; + case 2: + imr->ifm_active |= IFM_IEEE80211_DS2; + break; + case 6: + imr->ifm_active |= IFM_IEEE80211_DS5; + break; + case 11: + imr->ifm_active |= IFM_IEEE80211_DS11; + break; + } + } + } else { + imr->ifm_active = sc->ifmedia.ifm_cur->ifm_media; + } + + imr->ifm_status = IFM_AVALID; + if (sc->wi_ptype == WI_PORTTYPE_ADHOC) + /* + * XXX: It would be nice if we could give some actually + * useful status like whether we joined another IBSS or + * created one ourselves. + */ + imr->ifm_status |= IFM_ACTIVE; + else { + wreq.wi_type = WI_RID_COMMQUAL; + wreq.wi_len = WI_MAX_DATALEN; + if (wi_read_record(sc, (struct wi_ltv_gen *)&wreq) == 0 && + wreq.wi_val[0] != 0) + imr->ifm_status |= IFM_ACTIVE; + } +} Index: sys/net/if_ieee80211.h =================================================================== RCS file: /home/ncvs/src/sys/net/if_ieee80211.h,v retrieving revision 1.3 diff -u -u -r1.3 if_ieee80211.h --- sys/net/if_ieee80211.h 2000/10/30 06:03:57 1.3 +++ sys/net/if_ieee80211.h 2001/02/06 00:59:28 @@ -168,4 +168,43 @@ #define SIOCS80211NWKEY _IOW('i', 232, struct ieee80211_nwkey) #define SIOCG80211NWKEY _IOWR('i', 233, struct ieee80211_nwkey) +#define IEEE80211_WEP_NOSUP -1 +#define IEEE80211_WEP_OFF 0 +#define IEEE80211_WEP_ON 1 +#define IEEE80211_WEP_MIXED 2 + +#define IEEE80211_AUTH_NONE 0 +#define IEEE80211_AUTH_OPEN 1 +#define IEEE80211_AUTH_SHARED 2 + +#define IEEE80211_POWERSAVE_NOSUP -1 +#define IEEE80211_POWERSAVE_OFF 0 +#define IEEE80211_POWERSAVE_CAM 1 +#define IEEE80211_POWERSAVE_PSP 2 +#define IEEE80211_POWERSAVE_PSP_CAM 3 +#define IEEE80211_POWERSAVE_ON IEEE80211_POWERSAVE_CAM + +/* the first member must be matched with struct ifreq */ +struct ieee80211req { + char i_name[IFNAMSIZ]; /* if_name, e.g. "wi0" */ + u_int16_t i_type; /* req type */ + int16_t i_val; /* Index or simple value */ + int16_t i_len; /* Index or simple value */ + void *i_data; /* Extra data */ +}; +#define SIOCS80211 _IOW('i', 234, struct ieee80211req) +#define SIOCG80211 _IOWR('i', 235, struct ieee80211req) + +#define IEEE80211_IOC_SSID 1 +#define IEEE80211_IOC_NUMSSIDS 2 +#define IEEE80211_IOC_WEP 3 +#define IEEE80211_IOC_WEPKEY 4 +#define IEEE80211_IOC_NUMWEPKEYS 5 +#define IEEE80211_IOC_WEPTXKEY 6 +#define IEEE80211_IOC_AUTHMODE 7 +#define IEEE80211_IOC_STATIONNAME 8 +#define IEEE80211_IOC_CHANNEL 9 +#define IEEE80211_IOC_POWERSAVE 10 +#define IEEE80211_IOC_POWERSAVESLEEP 11 + #endif /* !_NET_IF_IEEE80211_H_ */ Index: sys/net/if_media.c =================================================================== RCS file: /home/ncvs/src/sys/net/if_media.c,v retrieving revision 1.14 diff -u -u -r1.14 if_media.c --- sys/net/if_media.c 2001/02/26 09:52:43 1.14 +++ sys/net/if_media.c 2001/02/26 23:46:53 @@ -401,6 +401,12 @@ struct ifmedia_description ifm_subtype_fddi_option_descriptions[] = IFM_SUBTYPE_FDDI_OPTION_DESCRIPTIONS; +struct ifmedia_description ifm_subtype_ieee80211_descriptions[] = + IFM_SUBTYPE_IEEE80211_DESCRIPTIONS; + +struct ifmedia_description ifm_subtype_ieee80211_option_descriptions[] = + IFM_SUBTYPE_IEEE80211_OPTION_DESCRIPTIONS; + struct ifmedia_description ifm_subtype_shared_descriptions[] = IFM_SUBTYPE_SHARED_DESCRIPTIONS; @@ -425,6 +431,10 @@ { &ifm_subtype_fddi_descriptions[0], &ifm_subtype_fddi_option_descriptions[0] + }, + { + &ifm_subtype_ieee80211_descriptions[0], + &ifm_subtype_ieee80211_option_descriptions[0] }, }; Index: sys/net/if_media.h =================================================================== RCS file: /home/ncvs/src/sys/net/if_media.h,v retrieving revision 1.11 diff -u -u -r1.11 if_media.h --- sys/net/if_media.h 2000/05/26 02:05:31 1.11 +++ sys/net/if_media.h 2001/02/28 23:17:12 @@ -167,6 +167,18 @@ #define IFM_FDDI_DA 0x00000100 /* Dual attach / single attach */ /* + * IEEE 802.11 Wireless + */ +#define IFM_IEEE80211 0x00000080 +#define IFM_IEEE80211_FH1 3 /* Frequency Hopping 1Mbps */ +#define IFM_IEEE80211_FH2 4 /* Frequency Hopping 2Mbps */ +#define IFM_IEEE80211_DS1 5 /* Direct Sequence 1Mbps */ +#define IFM_IEEE80211_DS2 6 /* Direct Sequence 2Mbps */ +#define IFM_IEEE80211_DS5 7 /* Direct Sequence 5.5Mbps */ +#define IFM_IEEE80211_DS11 8 /* Direct Sequence 11Mbps */ +#define IFM_IEEE80211_ADHOC 0x00000100 /* Operate in Adhoc mode */ + +/* * Shared media sub-types */ #define IFM_AUTO 0 /* Autoselect best media */ @@ -229,9 +241,10 @@ }; #define IFM_TYPE_DESCRIPTIONS { \ - { IFM_ETHER, "Ethernet" }, \ - { IFM_TOKEN, "Token ring" }, \ - { IFM_FDDI, "FDDI" }, \ + { IFM_ETHER, "Ethernet" }, \ + { IFM_TOKEN, "Token ring" }, \ + { IFM_FDDI, "FDDI" }, \ + { IFM_IEEE80211, "IEEE 802.11 Wireless Ethernet" }, \ { 0, NULL }, \ } @@ -327,6 +340,37 @@ #define IFM_SUBTYPE_FDDI_OPTION_DESCRIPTIONS { \ { IFM_FDDI_DA, "Dual-attach" }, \ + { 0, NULL }, \ +} + +#define IFM_SUBTYPE_IEEE80211_DESCRIPTIONS { \ + { IFM_IEEE80211_FH1, "FH/1Mbps" }, \ + { IFM_IEEE80211_FH2, "FH/2Mbps" }, \ + { IFM_IEEE80211_DS1, "DS/1Mbps" }, \ + { IFM_IEEE80211_DS2, "DS/2Mbps" }, \ + { IFM_IEEE80211_DS5, "DS/5.5Mbps" }, \ + { IFM_IEEE80211_DS11, "DS/11Mbps" }, \ + { 0, NULL }, \ +} + +#define IFM_SUBTYPE_IEEE80211_ALIASES { \ + { IFM_IEEE80211_FH1, "FH1" }, \ + { IFM_IEEE80211_FH2, "FH2" }, \ + { IFM_IEEE80211_FH1, "FrequencyHopping/1Mbps" }, \ + { IFM_IEEE80211_FH2, "FrequencyHopping/2Mbps" }, \ + { IFM_IEEE80211_DS1, "DS1" }, \ + { IFM_IEEE80211_DS2, "DS2" }, \ + { IFM_IEEE80211_DS5, "DS5.5" }, \ + { IFM_IEEE80211_DS11, "DS11" }, \ + { IFM_IEEE80211_DS1, "DirectSequence/1Mbps" }, \ + { IFM_IEEE80211_DS2, "DirectSequence/2Mbps" }, \ + { IFM_IEEE80211_DS5, "DirectSequence/5.5Mbps" }, \ + { IFM_IEEE80211_DS11, "DirectSequence/11Mbps" }, \ + { 0, NULL }, \ +} + +#define IFM_SUBTYPE_IEEE80211_OPTION_DESCRIPTIONS { \ + { IFM_IEEE80211_ADHOC, "adhoc" }, \ { 0, NULL }, \ } Index: share/man/man4/Makefile =================================================================== RCS file: /home/ncvs/src/share/man/man4/Makefile,v retrieving revision 1.116 diff -u -u -r1.116 Makefile --- share/man/man4/Makefile 2001/03/03 22:47:19 1.116 +++ share/man/man4/Makefile 2001/03/05 19:18:45 @@ -43,6 +43,7 @@ ichsmb.4 \ icmp.4 \ icmp6.4 \ + ieee80211.4 \ ifmib.4 \ iic.4 \ iicbb.4 \ --- share/man/man4/ieee80211.4.orig Fri Feb 23 17:14:04 2001 +++ share/man/man4/ieee80211.4 Wed Feb 28 15:52:00 2001 @@ -0,0 +1,234 @@ +.\" Copyright (c) 2001 +.\" The Aerospace Corporation. All rights reserved. +.\" +.\" Redistribution and use in source and binary forms, with or without +.\" modification, are permitted provided that the following conditions +.\" are met: +.\" 1. Redistributions of source code must retain the above copyright +.\" notice, this list of conditions and the following disclaimer. +.\" 2. Redistributions in binary form must reproduce the above copyright +.\" notice, this list of conditions and the following disclaimer in the +.\" documentation and/or other materials provided with the distribution. +.\" 3. Neither the name of the University nor the names of its contributors +.\" may be used to endorse or promote products derived from this software +.\" without specific prior written permission. +.\" +.\" THIS SOFTWARE IS PROVIDED BY THE AEROSPACE CORPORATION ``AS IS'' AND +.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AEROSPACE CORPORATION BE LIABLE +.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +.\" SUCH DAMAGE. +.\" +.\" $FreeBSD$ +.\" +.Dd February 23, 2001 +.Dt IEEE80211 4 +.Os FreeBSD 4.3 +.Sh NAME +.Nm ieee80211 +.Nd standard interface to IEEE 802.11 devices +.Sh SYNOPSIS +.Fd #include +.Sh DESCRIPTION +This section describes the interface standard interface to configuration +and status information on IEEE 802.11 devices. Most devices support +options not configurable by this interface. They must be set by their +respective, specific control program. The interface is via one +of the following +.Xr ioctl 2 +calls on a socket: +.Bl -tag -width SIOCG80211 +.It Dv SIOCG80211 +Get configuration or status information. +.It Dv SIOCS80211 +Set configuration information. +.El +These requests are made via a modified +.Ar ifreq +structure. This structure is defined as follows: +.Bd -literal +struct ieee80211req { + char i_name[IFNAMSIZ]; /* if_name, e.g. "wi0" */ + u_int16_t i_type; /* req type */ + int16_t i_val; /* Index or simple value */ + int16_t i_len; /* Index or simple value */ + void *i_data; /* Extra data */ +}; +.Ed +.Pp +For +.Dv SIOCG80211 +the following values of +.Ar i_type +are valid: +.Bl -tag -width IEEE80211_IOC_POWERSAVESLEEP +.It Dv IEEE80211_IOC_SSID +Returns the requested SSID by copying it into the buffer pointed to by +.Ar i_data +and setting +.Ar i_len +to the length. If +.Ar i_val +is >= 0 then the request refers to the configured value for that slot. +Generally, 0 is the only valid value, but some interfaces support more +SSIDs. If +.Ar i_val +is -1 then the request refers to the currently active value. +.It Dv IEEE80211_IOC_NUMSSIDS +Returns the number of SSIDs this card supports. In most cases, this is +1, but some devices such as +.Xr an 4 +support more. +.It Dv IEEE80211_IOC_WEP +Returns the current WEP status in +.Ar i_val . +Valid values are +.Dv IEEE80211_WEP_NOSUP , +.Dv IEEE80211_WEP_ON , +.Dv IEEE80211_WEP_OFF , +and +.Dv IEEE80211_WEP_MIXED . +Respectively, these values mean unsupported, mandatory for all devices, +off, and on, but not required for all devices. +.It Dv IEEE80211_IOC_WEPKEY +Returns the requested WEP key via +.Ar i_data +and it's length via +.Ar i_len . +If the device does not support returning the WEP key or the user is not +root then the key may be returned as all zeros. Technically this is a +valid key, but it's the kind of key an idiot would put on his luggage so +we use it as a special value. Generally, only four WEP keys are +allowed, but some devices support more. If so, the first four (0-3) are +the standard keys stored in volatile storage and the others are device +specific. +.It Dv IEEE80211_IOC_NUMWEPKEYS +Returns the number of WEP keys supported by this device, generally 4. +A device that does not support WEP may either report 0 or simply return +.Dv EINVAL . +.It Dv IEEE80211_IOC_WEPTXKEY +Returns the WEP key used for transmission. +.It Dv IEEE80211_IOC_AUTHMODE +Returns the current authentication mode in +.Ar i_val . +Valid values are +.Dv IEEE80211_AUTH_NONE , +.Dv IEEE80211_AUTH_OPEN , +and +.Dv IEEE80211_AUTH_SHARED . +.It Dv IEEE80211_IOC_STATIONNAME +Returns the station name via +.Ar i_data +and its length via +.Ar i_len . +While all known devices seem to support this is some way or another, +they all do it differently and it appears to not have anything to do +with the actual IEEE 802.11 standard so making up an answer may be +necessary for future devices. +.It Dv IEEE80211_IOC_CHANNEL +Returns the current direct sequence spread spectrum channel in use. +.It Dv IEEE80211_IOC_POWERSAVE +Returns the current powersaving mode. Valid values are +.Dv IEEE80211_POWERSAVE_NOSUP , +.Dv IEEE80211_POWERSAVE_OFF , +.Dv IEEE80211_POWERSAVE_ON , +.Dv IEEE80211_POWERSAVE_CAM , +.Dv IEEE80211_POWERSAVE_PSP , +and +.Dv IEEE80211_POWERSAVE_PSP_CAM . +Currently, +.Dv IEEE80211_POWERSAVE_ON +is defined to be equal to +.Dv IEEE80211_POWERSAVE_CAM , +but this may be incorrect. +.It Dv IEEE80211_IOC_POWERSAVESLEEP +Returns the powersave sleep time in msec in +.Ar i_val . +.El +.Pp +For +.Dv SIOCS80211 +the following values of +.Ar i_type +are valid: +.Bl -tag -width IEEE80211_IOC_POWERSAVESLEEP +.It Dv IEEE80211_IOC_SSID +Set the desired SSID for infrastructure and ad-hoc modes to value given +by +.Ar i_data +and +.Ar i_len . +The length should be no longer then 32 characters. +.It Dv IEEE80211_IOC_WEP +Set the current WEP mode to the value given in +.Ar i_val . +Valid values are the same as those for this value above. Devices which +do not support all modes may choose to either return +.Dv EINVAL +or choose a reasonable alternate (supported) setting. +.It Dv IEEE80211_IOC_WEPKEY +Set the WEP key indicated by +.Ar i_val +to the value given by +.Ar i_data +and +.Ar i_len . +Generally, valid values of +.Ar i_len +are 0, 5, and 13 though not all devices with WEP support have support +for 13-byte keys. +.It Dv IEEE80211_IOC_WEPTXKEY +Set the WEP key used for transmission to the value in +.Ar i_val . +Not all values which are valid for setting keys may be valid for setting +transmit keys due to strange device interfaces. +.It Dv IEEE80211_IOC_AUTHMODE +Set the current authorization mode to the value given in +.Ar i_val . +Valid values are given above. No all devices support this. +.It Dv IEEE80211_IOC_STATIONNAME +Set the station name to the value given by +.Ar i_data +and +.Ar i_len . +The standard does not appear to deal with this feature so the range of +valid values may vary from device to device. +.It Dv IEEE80211_IOC_CHANNEL +Set the desired ad-hoc channel to the value given by +.Ar i_val . +On some devices this has an impact on infrastructure mode as well. +Valid values are 1-14, but 0 should be allowed and should return the +device to the default value. May devices support this directly by +converting any invalid value to the default value. +.It Dv IEEE80211_IOC_POWERSAVE +Set the current powersaving mode to the value given in +.Ar i_val . +Valid values are the same as those for this value above. Devices which +do not support all modes may choose to either return +.Dv EINVAL +or choose a reasonable alternate (supported) setting. Most devices only +support CAM mode. +.It Dv IEEE80211_IOC_POWERSAVESLEEP +Set the powersave sleep time in msec to the value in +.Ar i_val . +.El +.Sh SEE ALSO +.Xr ioctl 2 , +.Xr an 4 , +.Xr ray 4 , +.Xr wi 4 , +.Xr ancontrol 8 , +.Xr ifconfig 8 , +.Xr raycontrol 8 , +.Xr wicontrol 8 , +.Sh HISTORY +The +.Nm ieee80211 +manual appeared in +.Fx 4.3 . >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 6 18:10: 9 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 769ED37B718 for ; Tue, 6 Mar 2001 18:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f272A2h65892; Tue, 6 Mar 2001 18:10:02 -0800 (PST) (envelope-from gnats) Date: Tue, 6 Mar 2001 18:10:02 -0800 (PST) Message-Id: <200103070210.f272A2h65892@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Mike Pelley" Subject: Re: bin/25494: fetch uses environment variable FTP_PROXY, ftp/lynx use ftp_proxy Reply-To: "Mike Pelley" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/25494; it has been noted by GNATS. From: "Mike Pelley" To: "Dag-Erling Smorgrav" Cc: Subject: Re: bin/25494: fetch uses environment variable FTP_PROXY, ftp/lynx use ftp_proxy Date: Tue, 6 Mar 2001 21:00:27 -0500 > Is this really the correct fix? Does lynx really apply the exact same > semantics to ftp_proxy / http_proxy as libfetch does do FTP_PROXY / > HTTP_PROXY? ftp is in the base system and it also uses ftp_proxy/http_proxy. The use of these environment variables is very similar between the two (and lynx) as far as I can tell - but perhaps I'm missing something? I think consistency is important - it seems incovenient to have two variables that do the same thing. > (me, I'm tempted to say the correct fix is "don't use lynx, use w3m") This doesn't quite seem relevant, but ftp should be enough to justify it regardless. Mike. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 6 18:10: 8 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0424D37B719 for ; Tue, 6 Mar 2001 18:10:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f272A3H65907; Tue, 6 Mar 2001 18:10:03 -0800 (PST) (envelope-from gnats) Date: Tue, 6 Mar 2001 18:10:03 -0800 (PST) Message-Id: <200103070210.f272A3H65907@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Dag-Erling Smorgrav Subject: Re: bin/25494: fetch uses environment variable FTP_PROXY, ftp/lynx use ftp_proxy Reply-To: Dag-Erling Smorgrav Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/25494; it has been noted by GNATS. From: Dag-Erling Smorgrav To: "Mike Pelley" Cc: Subject: Re: bin/25494: fetch uses environment variable FTP_PROXY, ftp/lynx use ftp_proxy Date: 07 Mar 2001 03:05:24 +0100 "Mike Pelley" writes: > ftp is in the base system and it also uses ftp_proxy/http_proxy. Only when talking HTTP, and there is already consensus for removing the (horribly useless and broken) HTTP code from ftp(1). It just hasn't been done yet. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 6 18:20: 8 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DAF3B37B718 for ; Tue, 6 Mar 2001 18:20:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f272K3a66755; Tue, 6 Mar 2001 18:20:03 -0800 (PST) (envelope-from gnats) Date: Tue, 6 Mar 2001 18:20:03 -0800 (PST) Message-Id: <200103070220.f272K3a66755@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Brooks Davis Subject: Re: conf/25577: [PATCH] ifconfig support for wireless network cards Reply-To: Brooks Davis Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR conf/25577; it has been noted by GNATS. From: Brooks Davis To: brooks@one-eyed-alien.net Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: conf/25577: [PATCH] ifconfig support for wireless network cards Date: Tue, 6 Mar 2001 18:19:29 -0800 --cmJC7u66zC7hs+87 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable DAMN! Don't use the patch submitted with this PR on multi-user systems! I realized just after I sent it that there was no suser check on modifying the an setting. Use the patch on my webpage instead: http://www.one-eyed-alien.net/~brooks/FreeBSD/ifconfig.diff -- Brooks --=20 Any statement of the form "X is the one, true Y" is FALSE. PGP fingerprint 655D 519C 26A7 82E7 2529 9BF0 5D8E 8BE9 F238 1AD4 --cmJC7u66zC7hs+87 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (GNU/Linux) Comment: For info see http://www.gnupg.org iD8DBQE6pZqvXY6L6fI4GtQRAhuWAJ9dXzZicjLYiAIP6GE8fwtbKz6dCwCgrDZE lOjkW0vcUSI6nfxZ6HM0Gts= =BU+u -----END PGP SIGNATURE----- --cmJC7u66zC7hs+87-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 6 18:50: 7 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6304C37B718 for ; Tue, 6 Mar 2001 18:50:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f272o4X70204; Tue, 6 Mar 2001 18:50:04 -0800 (PST) (envelope-from gnats) Date: Tue, 6 Mar 2001 18:50:04 -0800 (PST) Message-Id: <200103070250.f272o4X70204@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Mike Pelley" Subject: Re: bin/25494: fetch uses environment variable FTP_PROXY, ftp/lynx use ftp_proxy Reply-To: "Mike Pelley" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/25494; it has been noted by GNATS. From: "Mike Pelley" To: "Dag-Erling Smorgrav" Cc: Subject: Re: bin/25494: fetch uses environment variable FTP_PROXY, ftp/lynx use ftp_proxy Date: Tue, 6 Mar 2001 21:40:26 -0500 > > ftp is in the base system and it also uses ftp_proxy/http_proxy. > > Only when talking HTTP, and there is already consensus for removing > the (horribly useless and broken) HTTP code from ftp(1). It just > hasn't been done yet. I'm not familiar with those discussions - it does seem to provide me with the functionality I need behind the proxies at work but obviously there are other problems (although horribly useless and broken is not true for everyone). However, an attempt at consistency should be made. It appears that wget, lynx, links and ftp use http_proxy, and w3m and libfetch use HTTP_PROXY. Supporting both in libfetch seems like a reasonable patch. Mike. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 6 19:20:10 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B21E037B719 for ; Tue, 6 Mar 2001 19:20:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f273K3475490; Tue, 6 Mar 2001 19:20:03 -0800 (PST) (envelope-from gnats) Date: Tue, 6 Mar 2001 19:20:03 -0800 (PST) Message-Id: <200103070320.f273K3475490@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Dag-Erling Smorgrav Subject: Re: bin/25494: fetch uses environment variable FTP_PROXY, ftp/lynx use ftp_proxy Reply-To: Dag-Erling Smorgrav Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/25494; it has been noted by GNATS. From: Dag-Erling Smorgrav To: "Mike Pelley" Cc: Subject: Re: bin/25494: fetch uses environment variable FTP_PROXY, ftp/lynx use ftp_proxy Date: 07 Mar 2001 04:10:00 +0100 "Mike Pelley" writes: > I'm not familiar with those discussions - it does seem to provide me with > the functionality I need behind the proxies at work but obviously there are > other problems (although horribly useless and broken is not true for > everyone). Trust me, it's horribly useless and broken. It's barely more functional than an HTTP/0.9 client - the only part of HTTP/1.0 it actually implements correctly is parsing the Content-Length header. It can't talk to virtual hosts (except through a proxy), and it can't fetch the output of a CGI script (no chunk decoder), to name only two major shortcomings. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 6 19:40:12 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C0C4037B71B for ; Tue, 6 Mar 2001 19:40:06 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f273e6v77684; Tue, 6 Mar 2001 19:40:06 -0800 (PST) (envelope-from gnats) Date: Tue, 6 Mar 2001 19:40:06 -0800 (PST) Message-Id: <200103070340.f273e6v77684@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Mike Pelley" Subject: Re: bin/25494: fetch uses environment variable FTP_PROXY, ftp/lynx use ftp_proxy Reply-To: "Mike Pelley" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/25494; it has been noted by GNATS. From: "Mike Pelley" To: "Dag-Erling Smorgrav" Cc: Subject: Re: bin/25494: fetch uses environment variable FTP_PROXY, ftp/lynx use ftp_proxy Date: Tue, 6 Mar 2001 22:32:30 -0500 > Trust me, it's horribly useless and broken. It's barely more > functional than an HTTP/0.9 client - the only part of HTTP/1.0 it > actually implements correctly is parsing the Content-Length header. It > can't talk to virtual hosts (except through a proxy), and it can't > fetch the output of a CGI script (no chunk decoder), to name only two > major shortcomings. That's not horribly useless and broken - that's limited. Oddly enough, none of these problems have caused me any trouble retrieving via HTTP. This is off-topic however. I think the patch should be applied to improve consistency, but to each his own. Mike. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 6 20: 0: 6 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0ED3337B718 for ; Tue, 6 Mar 2001 20:00:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f27403979230; Tue, 6 Mar 2001 20:00:03 -0800 (PST) (envelope-from gnats) Date: Tue, 6 Mar 2001 20:00:03 -0800 (PST) Message-Id: <200103070400.f27403979230@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Dag-Erling Smorgrav Subject: Re: bin/25494: fetch uses environment variable FTP_PROXY, ftp/lynx use ftp_proxy Reply-To: Dag-Erling Smorgrav Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/25494; it has been noted by GNATS. From: Dag-Erling Smorgrav To: "Mike Pelley" Cc: Subject: Re: bin/25494: fetch uses environment variable FTP_PROXY, ftp/lynx use ftp_proxy Date: 07 Mar 2001 04:52:40 +0100 "Mike Pelley" writes: > That's not horribly useless and broken - that's limited. Oddly enough, none > of these problems have caused me any trouble retrieving via HTTP. You've probably never used it without a proxy. > This is off-topic however. I think the patch should be applied to improve > consistency, but to each his own. A similar change will be committed within the hour. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 6 20:20:10 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4C3CC37B718 for ; Tue, 6 Mar 2001 20:20:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f274K5785328; Tue, 6 Mar 2001 20:20:05 -0800 (PST) (envelope-from gnats) Date: Tue, 6 Mar 2001 20:20:05 -0800 (PST) Message-Id: <200103070420.f274K5785328@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Mike Pelley" Subject: Re: bin/25494: fetch uses environment variable FTP_PROXY, ftp/lynx use ftp_proxy Reply-To: "Mike Pelley" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/25494; it has been noted by GNATS. From: "Mike Pelley" To: "Dag-Erling Smorgrav" Cc: Subject: Re: bin/25494: fetch uses environment variable FTP_PROXY, ftp/lynx use ftp_proxy Date: Tue, 6 Mar 2001 23:12:09 -0500 > You've probably never used it without a proxy. I often use it without a proxy - it's on my laptop. > A similar change will be committed within the hour. Cool! Mike. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 6 20:30: 9 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9041837B718 for ; Tue, 6 Mar 2001 20:30:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f274U5f86727; Tue, 6 Mar 2001 20:30:05 -0800 (PST) (envelope-from gnats) Date: Tue, 6 Mar 2001 20:30:05 -0800 (PST) Message-Id: <200103070430.f274U5f86727@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Tony Finch Subject: Re: bin/25494: fetch uses environment variable FTP_PROXY, ftp/lynx use ftp_proxy Reply-To: Tony Finch Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/25494; it has been noted by GNATS. From: Tony Finch To: Dag-Erling Smorgrav Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: bin/25494: fetch uses environment variable FTP_PROXY, ftp/lynx use ftp_proxy Date: Wed, 7 Mar 2001 04:19:54 +0000 Dag-Erling Smorgrav wrote: > > Trust me, it's horribly useless and broken. It's barely more > functional than an HTTP/0.9 client - the only part of HTTP/1.0 it > actually implements correctly is parsing the Content-Length header. It > can't talk to virtual hosts (except through a proxy), and it can't > fetch the output of a CGI script (no chunk decoder), to name only two > major shortcomings. It'll never see HTTP/1.1 chunked content encoding because it's an HTTP/1.0 client. Tony. -- f.a.n.finch fanf@covalent.net dot@dotat.at VIKING NORTH UTSIRE SOUTH UTSIRE: SOUTHEASTERLY 5 INCREASING 7 OR GALE 8. RAIN LATER. GOOD BECOMING MODERATE. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 6 20:50:12 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 72D7237B719 for ; Tue, 6 Mar 2001 20:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f274o2J88531; Tue, 6 Mar 2001 20:50:02 -0800 (PST) (envelope-from gnats) Received: from smtp6.port.ru (mx6.port.ru [194.67.23.42]) by hub.freebsd.org (Postfix) with ESMTP id 0E85A37B718 for ; Tue, 6 Mar 2001 20:42:47 -0800 (PST) (envelope-from kabaev@mail.ru) Received: from adsl-141-154-116-168.bostma.adsl.bellatlantic.net ([141.154.116.168] helo=kan.dnsalias.net) by smtp6.port.ru with esmtp (Exim 3.14 #24) id 14aVmd-0005CV-00 for FreeBSD-gnats-submit@freebsd.org; Wed, 07 Mar 2001 07:42:44 +0300 Received: (from kan@localhost) by kan.dnsalias.net (8.11.3/8.11.3) id f274feS46802; Tue, 6 Mar 2001 23:41:40 -0500 (EST) (envelope-from kan) Message-Id: <200103070441.f274feS46802@kan.dnsalias.net> Date: Tue, 6 Mar 2001 23:41:40 -0500 (EST) From: kabaev@mail.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: kern/25582: lnc network card driver module name is incorrect Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25582 >Category: kern >Synopsis: lnc driver uses wrong driver name >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Mar 06 20:50:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: Alexander N. Kabaev >Release: FreeBSD 5.0-CURRENT i386 >Organization: Verizon Laboratories Inc. >Environment: System: FreeBSD kan.dnsalias.net 5.0-CURRENT FreeBSD 5.0-CURRENT #1: Tue Mar 6 21:03:40 EST 2001 kan@kan.dnsalias.net:/usr/src/sys/compile/KAN i386 >Description: lnc driver uses lnc_pci and lnc_isa names for its bus interface parts. It should use "if_lnc" name instead, otherwise ifconfig will attempt to load dynamic module each time if is invoked for lncX interface. This produces fairly annoying "lnc_pc failed to register: 17" messages. >How-To-Repeat: Compile in lnc driver and try to configure IP on it (you'll need a card obviously, or you should be running FreeBSD under VMWare) >Fix: Index: if_lnc_isa.c =================================================================== RCS file: /home/ncvs/src/sys/dev/lnc/if_lnc_isa.c,v retrieving revision 1.10 diff -u -r1.10 if_lnc_isa.c --- if_lnc_isa.c 2000/12/29 11:59:41 1.10 +++ if_lnc_isa.c 2001/03/07 04:08:10 @@ -310,4 +310,4 @@ sizeof(struct lnc_softc), }; -DRIVER_MODULE(lnc_isa, isa, lnc_isa_driver, lnc_devclass, 0, 0); +DRIVER_MODULE(if_lnc, isa, lnc_isa_driver, lnc_devclass, 0, 0); Index: if_lnc_pci.c =================================================================== RCS file: /home/ncvs/src/sys/dev/lnc/if_lnc_pci.c,v retrieving revision 1.23 diff -u -r1.23 if_lnc_pci.c --- if_lnc_pci.c 2001/03/02 00:40:06 1.23 +++ if_lnc_pci.c 2001/03/07 04:08:31 @@ -223,4 +223,4 @@ sizeof(struct lnc_softc), }; -DRIVER_MODULE(lnc_pci, pci, lnc_pci_driver, lnc_devclass, 0, 0); +DRIVER_MODULE(if_lnc, pci, lnc_pci_driver, lnc_devclass, 0, 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 Tue Mar 6 20:50:10 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 22FA337B71A for ; Tue, 6 Mar 2001 20:50:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f274o5r88536; Tue, 6 Mar 2001 20:50:05 -0800 (PST) (envelope-from gnats) Date: Tue, 6 Mar 2001 20:50:05 -0800 (PST) Message-Id: <200103070450.f274o5r88536@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Dag-Erling Smorgrav Subject: Re: bin/25494: fetch uses environment variable FTP_PROXY, ftp/lynx use ftp_proxy Reply-To: Dag-Erling Smorgrav Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/25494; it has been noted by GNATS. From: Dag-Erling Smorgrav To: Tony Finch Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: bin/25494: fetch uses environment variable FTP_PROXY, ftp/lynx use ftp_proxy Date: 07 Mar 2001 05:47:48 +0100 Tony Finch writes: > It'll never see HTTP/1.1 chunked content encoding because it's an > HTTP/1.0 client. If only it were so well... I'd love this to be true, I'd be able to rip the chunk decoder out of libfetch so it wouln't need the (non-portable) funopen() interface. Unfortunately, the words "MUST NOT" do not seem to mean anything to server authors. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 7 0:31:35 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2572A37B752 for ; Wed, 7 Mar 2001 00:31:29 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f278VSC29229; Wed, 7 Mar 2001 00:31:28 -0800 (PST) (envelope-from gnats) Date: Wed, 7 Mar 2001 00:31:28 -0800 (PST) Message-Id: <200103070831.f278VSC29229@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Nikolai Saoukh Subject: kern/24074: Properties of token-ring protocol must be separated from implementation Reply-To: Nikolai Saoukh Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/24074; it has been noted by GNATS. From: Nikolai Saoukh To: bug-followup@freebsd.org Cc: Subject: kern/24074: Properties of token-ring protocol must be separated from implementation Date: Wed, 7 Mar 2001 11:30:58 +0300 Forgot about the drivers present. Sorry. --- src/sys/contrib/dev/oltr/if_oltr.c.orig Wed Mar 7 11:14:33 2001 +++ src/sys/contrib/dev/oltr/if_oltr.c Wed Mar 7 11:15:28 2001 @@ -48,7 +48,7 @@ #include #include #include -#include +#include #if (__FreeBSD_version < 400000) #include To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 7 0:32:49 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C3F4737B71C for ; Wed, 7 Mar 2001 00:31:23 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f278VN629217; Wed, 7 Mar 2001 00:31:23 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A65FD37B71A for ; Wed, 7 Mar 2001 00:25:46 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f278PkB28624; Wed, 7 Mar 2001 00:25:46 -0800 (PST) (envelope-from nobody) Message-Id: <200103070825.f278PkB28624@freefall.freebsd.org> Date: Wed, 7 Mar 2001 00:25:46 -0800 (PST) From: davidx@viasoft.com.cn To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: bin/25584: arp.c - better printed ether address Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25584 >Category: bin >Synopsis: arp.c - better printed ether address >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Mar 07 00:30:03 PST 2001 >Closed-Date: >Last-Modified: >Originator: David Xu >Release: FreeBSD 4.3-BETA >Organization: Viasoft >Environment: FreeBSD davidbsd.viasoft.com.cn 4.3-BETA FreeBSD 4.3-BETA #0: Wed Mar 7 15:30:1 1 CST 2001 xyf@davidbsd.viasoft.com.cn:/usr/obj/usr/src/sys/xu i386 >Description: the ether address printed by /usr/sbin/arp is not so fine, some bytes is printed in two bytes while others not. >How-To-Repeat: stock version prints: davidbsd# arp -n -a ? (192.168.1.98) at 0:e0:4c:6b:a6:9 [ethernet] ? (192.168.1.109) at 0:e0:4c:3f:49:eb [ethernet] ? (192.168.1.254) at 0:b0:c2:89:a4:6e [ethernet] ? (192.168.1.255) at ff:ff:ff:ff:ff:ff permanent [ethernet] better vesion prints davidbsd# arp -n -a ? (192.168.1.98) at 00:e0:4c:6b:a6:09 [ethernet] ? (192.168.1.109) at 00:e0:4c:3f:49:eb [ethernet] ? (192.168.1.254) at 00:b0:c2:89:a4:6e [ethernet] ? (192.168.1.255) at ff:ff:ff:ff:ff:ff permanent [ethernet] >Fix: --- arp.c.orig Wed Mar 7 16:06:11 2001 +++ arp.c Wed Mar 7 16:10:29 2001 @@ -537,7 +537,7 @@ void ether_print(u_char *cp) { - printf("%x:%x:%x:%x:%x:%x", cp[0], cp[1], cp[2], cp[3], cp[4], cp[5]); + printf("%02x:%02x:%02x:%02x:%02x:%02x", cp[0], cp[1], cp[2], cp[3], cp[4], cp[5]); } int >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 7 0:40: 7 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C97EF37B718 for ; Wed, 7 Mar 2001 00:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f278e2N30136; Wed, 7 Mar 2001 00:40:02 -0800 (PST) (envelope-from gnats) Date: Wed, 7 Mar 2001 00:40:02 -0800 (PST) Message-Id: <200103070840.f278e2N30136@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ruslan Ermilov Subject: Re: bin/25584: arp.c - better printed ether address Reply-To: Ruslan Ermilov Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/25584; it has been noted by GNATS. From: Ruslan Ermilov To: davidx@viasoft.com.cn Cc: bug-followup@FreeBSD.org Subject: Re: bin/25584: arp.c - better printed ether address Date: Wed, 7 Mar 2001 10:37:33 +0200 Everything is OK, but why do you think it is better? :-) Cheers, -- Ruslan Ermilov Oracle Developer/DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 7 1:18:41 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2D57E37B719; Wed, 7 Mar 2001 01:18:39 -0800 (PST) (envelope-from joe@FreeBSD.org) Received: (from joe@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f279IdL36506; Wed, 7 Mar 2001 01:18:39 -0800 (PST) (envelope-from joe) Date: Wed, 7 Mar 2001 01:18:39 -0800 (PST) From: Message-Id: <200103070918.f279IdL36506@freefall.freebsd.org> To: joe@FreeBSD.org, freebsd-bugs@FreeBSD.org, paul@FreeBSD.org Subject: Re: kern/25582: lnc driver uses wrong driver name Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: lnc driver uses wrong driver name Responsible-Changed-From-To: freebsd-bugs->paul Responsible-Changed-By: joe Responsible-Changed-When: Wed Mar 7 01:18:00 PST 2001 Responsible-Changed-Why: Paul's the maintainter of this code IIRC. . http://www.freebsd.org/cgi/query-pr.cgi?pr=25582 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 7 1:50: 8 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1CEC737B718 for ; Wed, 7 Mar 2001 01:50:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f279o2j39986; Wed, 7 Mar 2001 01:50:03 -0800 (PST) (envelope-from gnats) Date: Wed, 7 Mar 2001 01:50:03 -0800 (PST) Message-Id: <200103070950.f279o2j39986@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Alex Bakhtin Subject: Re: bin/25474: dump can't close fifo pipe correctly Reply-To: Alex Bakhtin Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/25474; it has been noted by GNATS. From: Alex Bakhtin To: David Malone Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/25474: dump can't close fifo pipe correctly Date: 07 Mar 2001 12:45:12 +0300 David, Have you received my explanation? -- Best regards, -- Alex Bakhtin. AMT Group, Cisco Systems Gold Partner, http://www.amt.ru To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 7 2:10: 8 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B6DEC37B71A for ; Wed, 7 Mar 2001 02:10:00 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f27AA0r44135; Wed, 7 Mar 2001 02:10:00 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1928E37B719 for ; Wed, 7 Mar 2001 02:04:32 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f27A4WO41285; Wed, 7 Mar 2001 02:04:32 -0800 (PST) (envelope-from nobody) Message-Id: <200103071004.f27A4WO41285@freefall.freebsd.org> Date: Wed, 7 Mar 2001 02:04:32 -0800 (PST) From: w.briscoe@ponl.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/25585: sed.test 8.16 puts bugged sed into infinite loop Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25585 >Category: misc >Synopsis: sed.test 8.16 puts bugged sed into infinite loop >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Mar 07 02:10:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Walter Briscoe >Release: I am not >Organization: P & O Nedlloyd >Environment: AIX iade05a2 1 4 000B0F90A400 GNU sed 3.02 >Description: Test 8.16 in sed.test tests the ability of a sed to handle an empty regular expression as the first argument to a substitute command. If used to test a sed which (erroneously) evaluates this at translation time rather than at execution time, the bugged sed is put into an infinite loop. This mode of failure seems excessive. Such a failing sed is the Free Software Foundation's sed 3.02. I found this problem when I needed a test suite for the simtelnet MSDOS port of sed. I was advised by Diomidis Spinellis - the copyright holder of sed.test - that he no longer maintains it. The bug also exists in OpenBsd and NetBSD. Please forward this pr or advise how I may submit to those ports. http://www.freebsd.org/send-pr.html contains "Note: copy/paste will destroy TABs and spacing, and this web form should not be used to submit code as plain text". It does not say what should be used for that purpose. I hope the fix below is not mangled. Should it be so, I hope somebody will come back to me to suggest an improvement. >How-To-Repeat: Find a bugged sed - such as sed 3.02 Find the latest version (1.2) of sed.test from http://www.freebsd.org/cgi/cvsweb.cg1/src/usr.bin/sed/TEST/sed.test Run sed.test test 8.16 does not complete. >Fix: The following solves the problem by limiting the number of iterations of the infinite loop. There are probably more elegant ways of achieving the same functionality. 09:43:26 05 /u/t150drs/freebsd: diff -C 3 sed.test.1.2 sed.test.new *** sed.test.1.2 Wed Mar 7 09:27:05 2001 --- sed.test.new Wed Mar 7 09:44:22 2001 *************** *** 504,511 **** if [ $BSD -eq 1 ] ; then echo 'BSD sed does not handle branch defined REs' else echo 'eeefff' | $SED -e 'p' -e 's/e/X/p' -e ':x' \ ! -e 's//Y/p' -e '/f/bx' fi } --- 504,521 ---- if [ $BSD -eq 1 ] ; then echo 'BSD sed does not handle branch defined REs' else + # The code below enters an infinite loop when testing + # a sed which (wrongly) determines the meaning of the + # empty RE in s//Y/p at compile time rather than run + # time. w.briscoe@ponl.com 2001-03-07 + # echo 'eeefff' | $SED -e 'p' -e 's/e/X/p' -e ':x' \ + # -e 's//Y/p' -e '/f/bx' echo 'eeefff' | $SED -e 'p' -e 's/e/X/p' -e ':x' \ ! -e 's//Y/p' \ ! -e x \ ! -e /.\{10\}/{s/.*/ERROR/ -e b -e } -e s/.*/&./ \ ! -e x \ ! -e '/f/bx' fi } 09:43:29 05 /u/t150drs/freebsd: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 7 2:40: 8 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9862637B71B for ; Wed, 7 Mar 2001 02:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f27Ae1u46730; Wed, 7 Mar 2001 02:40:01 -0800 (PST) (envelope-from gnats) Received: from yeti.ismedia.pl (yeti.ismedia.pl [212.182.96.18]) by hub.freebsd.org (Postfix) with SMTP id 6449A37B719 for ; Wed, 7 Mar 2001 02:31:28 -0800 (PST) (envelope-from venglin@freebsd.lublin.pl) Received: (qmail 44254 invoked from network); 7 Mar 2001 10:38:51 -0000 Received: from unknown (HELO lagoon.freebsd.lublin.pl) (212.182.115.11) by 0 with SMTP; 7 Mar 2001 10:38:51 -0000 Received: (qmail 3759 invoked from network); 7 Mar 2001 10:30:04 -0000 Received: from unknown (HELO riget.scene.pl) () by 0 with SMTP; 7 Mar 2001 10:30:04 -0000 Received: (qmail 3755 invoked by uid 1001); 7 Mar 2001 10:30:03 -0000 Message-Id: <20010307103003.3754.qmail@riget.scene.pl> Date: 7 Mar 2001 10:30:03 -0000 From: venglin@freebsd.lublin.pl Reply-To: venglin@freebsd.lublin.pl To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/25586: Password expiration doesn't work after upgrade of system Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25586 >Category: bin >Synopsis: Password expiration doesn't work after upgrade of system >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Mar 07 02:40:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Przemyslaw Frasunek >Release: FreeBSD 4.2-STABLE i386 >Organization: ISMEDIA >Environment: FreeBSD 4.2-STABLE as of 22 Feb 2001. On 4.2-STABLE as of 25 Dec 2000 everything was ok. /etc/login.conf: standard:\ :passwordperiod=90d:\ :autodelete=6w:\ :passwordtime=4w:\ :warnpassword=1w:\ :tc=default: OpenSSH version: SSH Version OpenSSH_2.3.0, protocol versions 1.5/2.0. Compiled with SSL (0x0090600f). /etc/pam.conf: # OpenSSH with PAM support requires similar modules. The session one is # a bit strange, though... sshd auth sufficient pam_skey.so #sshd auth sufficient pam_kerberosIV.so try_first_pass sshd auth required pam_unix.so try_first_pass sshd session required pam_permit.so >Description: If password is expired, sshd enters in infinite loop flooding syslog with such messages and eating all CPU time. Mar 7 11:25:31 yeti sshd[43628]: PAM pam_chauthtok failed[6]: Permission denied Mar 7 11:25:31 yeti sshd[43628]: no modules loaded for `sshd' service The normal behaviour was to spawn passwd and allow user to change the password. >How-To-Repeat: Turn on password expiration, login on account with expired password. >Fix: Unknown. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 7 3:20: 7 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5D4A337B718 for ; Wed, 7 Mar 2001 03:20:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f27BK5G53736; Wed, 7 Mar 2001 03:20:05 -0800 (PST) (envelope-from gnats) Date: Wed, 7 Mar 2001 03:20:05 -0800 (PST) Message-Id: <200103071120.f27BK5G53736@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Andre Albsmeier Subject: Re: conf/25570: savecore complains: warning: /var/run/dev.db: No such file or directory Reply-To: Andre Albsmeier Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR conf/25570; it has been noted by GNATS. From: Andre Albsmeier To: Dag-Erling Smorgrav Cc: Andre Albsmeier , FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: conf/25570: savecore complains: warning: /var/run/dev.db: No such file or directory Date: Wed, 7 Mar 2001 12:12:00 +0100 On Tue, 06-Mar-2001 at 21:26:51 +0100, Dag-Erling Smorgrav wrote: > Andre Albsmeier writes: > > Hmm, /etc/rc runs savecore before dev_mkdb so the error message > > makes sense. Maybe dev_mkdb should just be moved up ? > > Try to apply rev 1.233: > > # cd /usr/src/etc > # cvs up -j1.232 -j1.233 rc > # cp rc /etc > Yes, that fixes it. Will you MFC it into -STABLE? -Andre To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 7 6:22:12 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BD57B37B718; Wed, 7 Mar 2001 06:22:10 -0800 (PST) (envelope-from sanpei@FreeBSD.org) Received: (from sanpei@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f27EM5687655; Wed, 7 Mar 2001 06:22:05 -0800 (PST) (envelope-from sanpei) Date: Wed, 7 Mar 2001 06:22:05 -0800 (PST) From: Message-Id: <200103071422.f27EM5687655@freefall.freebsd.org> To: yohsuke@mx2.nisiq.net, sanpei@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/25173: How to use a PnP ISA modem card Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: How to use a PnP ISA modem card State-Changed-From-To: open->closed State-Changed-By: sanpei State-Changed-When: Wed Mar 7 06:20:34 PST 2001 State-Changed-Why: added requested PNPID 1.327 src/sys/isa/sio.c http://www.freebsd.org/cgi/query-pr.cgi?pr=25173 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 7 6:28:46 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A39F737B718; Wed, 7 Mar 2001 06:28:43 -0800 (PST) (envelope-from sanpei@FreeBSD.org) Received: (from sanpei@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f27ESgr88429; Wed, 7 Mar 2001 06:28:42 -0800 (PST) (envelope-from sanpei) Date: Wed, 7 Mar 2001 06:28:42 -0800 (PST) From: Message-Id: <200103071428.f27ESgr88429@freefall.freebsd.org> To: v0rbiz@icon.bg, sanpei@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/25204: another isa/pnp modem for sio.c Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: another isa/pnp modem for sio.c State-Changed-From-To: open->closed State-Changed-By: sanpei State-Changed-When: Wed Mar 7 06:27:55 PST 2001 State-Changed-Why: added requested PNPID 1.328 src/sys/isa/sio.c http://www.freebsd.org/cgi/query-pr.cgi?pr=25204 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 7 6:30:13 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 13E3737B72F for ; Wed, 7 Mar 2001 06:30:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f27EU3X88638; Wed, 7 Mar 2001 06:30:03 -0800 (PST) (envelope-from gnats) Date: Wed, 7 Mar 2001 06:30:03 -0800 (PST) Message-Id: <200103071430.f27EU3X88638@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Christoph Sold Subject: Re: kern/25569: /etc/rc.firewall mentions an old book/ISBN [Patch included, comment only] Reply-To: Christoph Sold Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/25569; it has been noted by GNATS. From: Christoph Sold To: freebsd-gnats-submit@FreeBSD.org, so@i-clue.de Cc: Subject: Re: kern/25569: /etc/rc.firewall mentions an old book/ISBN [Patch included, comment only] Date: Wed, 07 Mar 2001 15:26:37 +0100 > State-Changed-Why: > This was reported in PR 24652 and committed last month by des. > Thanks anyway though. I disagree, a quick check in the cvsweb interface shows this change is in -current only. It needs to be MFC'd ASAP to go into 4.3-Release. Apologies for being a pest ;) -Christoph Sold To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 7 6:36:38 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by hub.freebsd.org (Postfix) with SMTP id AF6E537B71B for ; Wed, 7 Mar 2001 06:36:29 -0800 (PST) (envelope-from dwmalone@maths.tcd.ie) Received: from walton.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 7 Mar 2001 14:35:35 +0000 (GMT) Date: Wed, 7 Mar 2001 14:35:35 +0000 From: David Malone To: Christoph Sold Cc: freebsd-bugs@FreeBSD.org Subject: Re: kern/25569: /etc/rc.firewall mentions an old book/ISBN [Patch included, comment only] Message-ID: <20010307143535.A35927@walton.maths.tcd.ie> References: <200103071430.f27EU3X88638@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200103071430.f27EU3X88638@freefall.freebsd.org>; from so@server.i-clue.de on Wed, Mar 07, 2001 at 06:30:03AM -0800 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Mar 07, 2001 at 06:30:03AM -0800, Christoph Sold wrote: > I disagree, a quick check in the cvsweb interface shows this change is > in -current only. It needs to be MFC'd ASAP to go into 4.3-Release. Looking at: http://www.freebsd.org/cgi/cvsweb.cgi/src/etc/rc.firewall I see it committed as revision 1.30.2.8 - the diff is at: http://www.freebsd.org/cgi/cvsweb.cgi/src/etc/rc.firewall.diff?r1=1.30.2.7&r2=1.30.2.8 Or am I confused? David. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 7 6:40:26 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id BA66237B719 for ; Wed, 7 Mar 2001 06:40:01 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.2/8.11.2) id f27EYCQ21096; Wed, 7 Mar 2001 16:34:12 +0200 (EET) (envelope-from ru) Date: Wed, 7 Mar 2001 16:34:12 +0200 From: Ruslan Ermilov To: Christoph Sold Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: kern/25569: /etc/rc.firewall mentions an old book/ISBN [Patch included, comment only] Message-ID: <20010307163412.B97252@sunbay.com> Mail-Followup-To: Christoph Sold , freebsd-bugs@FreeBSD.ORG References: <200103071430.f27EU3X88638@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200103071430.f27EU3X88638@freefall.freebsd.org>; from so@server.i-clue.de on Wed, Mar 07, 2001 at 06:30:03AM -0800 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Mar 07, 2001 at 06:30:03AM -0800, Christoph Sold wrote: > The following reply was made to PR kern/25569; it has been noted by GNATS. > > From: Christoph Sold > To: freebsd-gnats-submit@FreeBSD.org, so@i-clue.de > Cc: > Subject: Re: kern/25569: /etc/rc.firewall mentions an old book/ISBN [Patch > included, comment only] > Date: Wed, 07 Mar 2001 15:26:37 +0100 > > > State-Changed-Why: > > This was reported in PR 24652 and committed last month by des. > > Thanks anyway though. > > I disagree, a quick check in the cvsweb interface shows this change is > in -current only. It needs to be MFC'd ASAP to go into 4.3-Release. > > Apologies for being a pest ;) > -Christoph Sold > Currently, CURRENT and STABLE versions of rc.firewall are the same. This particular fix was MFC'ed in revision 1.30.2.8. Cheers, -- Ruslan Ermilov Oracle Developer/DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 7 6:50:35 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5861037B719 for ; Wed, 7 Mar 2001 06:50:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f27Eo5357779; Wed, 7 Mar 2001 06:50:05 -0800 (PST) (envelope-from gnats) Received: from buddy.chakat.com (buddy.chakat.com [209.151.93.210]) by hub.freebsd.org (Postfix) with ESMTP id 5919137B718 for ; Wed, 7 Mar 2001 06:48:55 -0800 (PST) (envelope-from woodjr@buddy.chakat.com) Received: (from woodjr@localhost) by buddy.chakat.com (8.11.2/8.11.1) id f24ExQi46221; Sun, 4 Mar 2001 14:59:26 GMT (envelope-from woodjr) Message-Id: <200103041459.f24ExQi46221@buddy.chakat.com> Date: Sun, 4 Mar 2001 14:59:26 GMT From: woodjr@chakat.com Reply-To: woodjr@chakat.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/25587: truss(1) enhancements Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25587 >Category: bin >Synopsis: Add Solaris-like functionality to truss(1): -f, -d, and -D >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Mar 07 06:50:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Jamey Wood >Release: FreeBSD 5.0-CURRENT i386 >Organization: None >Environment: System: FreeBSD buddy.chakat.com 5.0-CURRENT FreeBSD 5.0-CURRENT #5: Thu Mar 1 20:44:25 GMT 2001 root@buddy.chakat.com:/usr/src/sys/compile/buddy i386 >Description: The included code changes alter truss(1) to support flags present in Solaris's truss(1). The most notable of these is the -f flag, which causes truss to trace any children forked while a process is being traced. A small change to kern_fork.c and pioctl.h were necessary to add flags to cause such children to inherit the procfs-based trace settings of their parent. The -d and -D flags are inspired by changed added in in Solaris 7's truss, and add timestamps to the truss output. The -d flag causes timestamps to be included showing time elapsed at each event since the start of the trace. The -D flag causes timestamps which show time elapsed since the last event. Finally, I moved as many of the global vars as possible into a trussinfo struct which is passed as an argument to most procedures. I have attempted to change the alpha-specific code in truss(1) to also support these features, but I do not have an alpha FreeBSD environment on which to test. I have included three diff's and one new file (/usr/src/usr.bin/truss/truss.h) in the "Fix" section, as a uuencoded tar file. >How-To-Repeat: N/A >Fix: begin 644 truss_files.tar M=')U7,O7-C86QL+F@B M"B`@"B`@7-C86QL'1E7-C86QLF5O9BAS>7-C M86QL;F%M97,I("\@7-C86QL7V5N=')Y*'-T7-C86QLPHA M("`@("!F<')I;G1F*&]U=&9I;&4L("(M+2!53DM.3U=.(%-94T-!3$P@)60@ M+2U<;B(L('-Y7-C86QL73L*("`@(&EF("@A9G-C+FYA;64I('L*(2`@("`@ M9G!R:6YT9BAT7-C86QL("5S("TM('-E M='1I;F<@87)G71E;2!C86QL(&YU;6)EPH@("`@8VAA71E;2!C86QL(&YU;6)E&ET*'-T2X*("`@("`J+PH@(`HA("`@<')I;G1?7-C M86QL7W)E="AT'1E M'1E7-C86QL MF5O9BAS>7-C86QL;F%M97,I("\@7-C86QL+F@^"B`@"BL@(VEN8VQU9&4@ M(G1R=7-S+F@B"B`@(VEN8VQU9&4@(G-YF5O9BAS>7-C86QL;F%M97-;,%TI.PHJ*BHJ*BHJ*BHJ*BHJ*BH**BHJ M(#$P."PQ,30@*BHJ*@H@("`J+PH@(`H@('9O:60*(2!I,S@V7W-Y2AS=')U8W0@=')UPH@("`@8VAAR`P('T["B`@("!I;G0@PHA("`@("!S<')I;G1F*&)U9BP@(B]P7-C86QL73L*("`@(&EF("@A9G-C+FYA;64I('L*(2`@("`@9G!R M:6YT9BAO=71F:6QE+"`B+2T@54Y+3D]73B!365-#04Q,("5D("TM7&XB+"!S M>7-C86QL*3L*("`@('T*("`*("`@(&EF("AN87)G7-C86QL(#P@,"!\ M?"!S>7-C86QL(#X@;G-Y7-C86QL;F%M97-; M7-C86QL("5S("TM('-E='1I M;F<@87)G71E;2!C86QL(&YU;6)E&ET M*&EN="!P:60L(&EN="!S>7-C86QL*2!["B`@("!C:&%R(&)U9ELS,ET["B`@ M("!S=')U8W0@2P@86X@97)R;W(@PHA M("`@("!S<')I;G1F*&)U9BP@(B]PPHA("`@("`@(&9PPHA("`@("`@(&9P M2X*("`@("`J+PH@(`HA("`@<')I;G1?"YC("]U7-C86QL+F@B"B`@"B`@%]S>7-C86QL'1E M7-C86QL2AI;G0@<&ED+"!I;G0@;F%R9W,I('L*("`@(&-H87(@ M8G5F6S,R73L*("`@('-TPHA("`@("!S M<')I;G1F*&)U9BP@(B]P%]S>7-C86QL7V5N=')Y M*'-TPHA("`@("`@(&9P7-C86QL(#P@,"!\?"!S>7-C86QL(#X@;G-Y%]S>7-C86QL;F%M97-;7-C86QL73L*("`@(&EF("@A;'-C M+FYA;64I('L*(2`@("`@9G!R:6YT9BAT%]V9F]R:R(I*2DI"B$@("!["B$@("`@('1R=7-S:6YF;RT^:6Y?9F]R:R`] M(#$["B`@("!]"B`@"B`@("!I9B`H;F%R9W,@/3T@,"D**BHJ*BHJ*BHJ*BHJ M*BHJ"BHJ*B`Q,S@L,30T("HJ*BH*("`@("`@;'-C+FYA7-C86QL("5S("TM('-E='1I;F<@87)G M7-C86QL("5S("TM('-E='1I;F<@87)G%]E M>&5C=F4B*2!\?"`APHA M("`@("!P7-C86QL*'1R=7-S:6YF;RP@;'-C+FYA;64L(&QS8RYN M87)G&ET*&EN="!P:60L(&EN M="!S>7-C86QL*2!["B`@("!C:&%R(&)U9ELS,ET["B`@("!S=')U8W0@%]S>7-C86QL7V5X:70H MPH@ M("`@8VAA'1E7-C86QL M7V5N=')Y*&EN="P@:6YT*3L*(2!E>'1E%]S>7-C M86QL7V5N=')Y*&EN="P@:6YT*3L*(2!E>'1E2AS=')U8W0@=')U2AS=')U8W0@=')U%]S>7-C86QL7V5N M=')Y*'-T'1E&ET*'-TPH@ M("`@9G!R:6YT9BAS=&1E7!E.PHA("`@ M=F]I9"`H*F5N=&5R7W-Y&ET7W-YR`B1G)E94)31"!%3$8B+"!A;'!H85]S M>7-C86QL7V5N=')Y+"!A;'!H85]S>7-C86QL7V5X:70@?2P*+2TM(#@X+#DU M("TM+2T*("`@*B\*("!S=')U8W0@97A?='EP97,@>PH@("`@8VAA7-C86QL*2AS=')U8W0@=')U&ET7W-YR`B1G)E94)31"!%3$8B+"!A;'!H85]S>7-C86QL7V5N M=')Y+"!A;'!H85]S>7-C86QL7V5X:70@?2P**BHJ*BHJ*BHJ*BHJ*BHJ"BHJ M*B`Q,3$L,3(S("HJ*BH*("`@*B\*("`*("!S=&%T:6,@7!E6S,R M73L*("`@(&EN="!F9#L*("`*(2`@('-PPHM+2T@,3`Y+#$R,2`M+2TM"B`@ M("HO"B`@"B`@%]T>7!E7!E M*'-TPH@("`@7!E M+"`B+W!R;V,O)60O971Y<&4B+"!TPHJ*BHJ*BHJ*BHJ*BHJ*BH**BHJ(#$T."PQ-C0@*BHJ*@H@("`@:6YT(&EN M7V5X96,@/2`P.PH@("`@8VAAPH@("`@("!C M87-E("=P)SH)+RH@F4@=&AE M('1R=7-S:6YF;R!S=')U8W0@*B\**R`@(&EF("@H=')UPH@("`@("!S=VET8V@@*&,I('L*("`@("`@8V%S92`G M<"R`O M*B!5"@Q+"`B8V%N M;F]T(&]P96X@)7,B+"!F;F%M92D["B`@("!]"B`@"BTM+2`Q.#$L,3DQ("TM M+2T*("`@('T*("`*("`@(&%C("T](&]P=&EN9#L@878@*ST@;W!T:6YD.PHA M("`@:68@*"AT"@Q+"`B8V%N;F]T M(&]P96X@)7,B+"!F;F%M92D["B`@("!]"B`@"BHJ*BHJ*BHJ*BHJ*BHJ*@HJ M*BH@,3@Q+#$X.2`J*BHJ"B`@("`@*B!T:&5N('=E(')E&5C=F4H*2X*("`@("`J+PH@(`HA("`@4')O8V9D(#T@PH@("`@("!I;G0@=F%L(#T@,#L*("`*+2TM(#(Q-2PR,SD@+2TM+0H@("`@ M("H@8F4@=V]K96X@=7`L(&5I=&AE&ET*"D@;W(@:6X@97AE8W9E M*"DN"B`@("`@*B\*("`*(2!35$%25%]44D%#13H*(2`@(%!R;V-F9"`]('-T M87)T7W1R86-I;FPH@("`@("`@('-W:71C:"AI(#T@<&9S+G=H>2D@>PH@("`@ M("`@(&-A7-C86QL*'!I9"P@ M<&9S+G9A;"D["B`@"6)R96%K.PH@("`@("`@(&-A7-C86QL(&5X:70N("!)="!A;'-O+`HM+2T@,C0R+#(U M,R`M+2TM"B`@("`@(&5LPH@("`@("`@('-W:71C:"AI(#T@<&9S+G=H M>2D@>PH@("`@("`@(&-A7-C M86QL*'1R=7-S:6YF;RP@<&9S+G9A;"D["B$@"6=E='1I;65O9F1A>2@F=')U M7-C86QL(&5X:70N("!)="!A;'-O+`HJ*BHJ M*BHJ*BHJ*BHJ*BH**BHJ(#(S-BPR-C<@*BHJ*@H@(`D@(&EN7V5X96,@/2`P M.PH@(`D@(&)R96%K.PH@(`E]"B$@"69U;F-S+3YE>&ET7W-Y&5C(#T@ M,3L*("`)8G)E86L["B`@("`@("`@9&5F875L=#H*(2`)9G!R:6YT9B`H;W5T M9FEL92P@(E!R;V-E&ET*2!["B`@("`@(&EF("AS:6=E>&ET M(#T](%-)1U%5250I"B`@("`@("`@97AI="AS:6=E>&ET*3L*+2TM(#(U.2PS M,#D@+2TM+0H@(`D@(&EN7V5X96,@/2`P.PH@(`D@(&)R96%K.PH@(`E]"B$@ M"B$@"6EF("AT7-C86QL*'1R=7-S:6YF;RP@<&9S+G9A M;"D["B$@"B$@"2`@+RH*(2`)("`@*B!&;W)K(&$@;F5W(&-O<'D@;V8@;W5R M7-C86QL*'1R=7-S:6YF;RP@<&9S+G9A M;"D["B`@"6)R96%K.PH@("`@("`@(&-A&ET+"!R=F%L(#T@)6QU7&XB+"!P9G,N=F%L*3L*("`)8G)E86L[ M"B`@("`@("`@8V%S92!37T5814,Z"B$@"69U;F-S(#T@7!E*'1R M=7-S:6YF;RD["B`@"6EN7V5X96,@/2`Q.PH@(`EB&ET*'-I9V5X:70I M.PID:69F("UC("UR("]U7-C86QL7W)E="AS M=')U8W0@=')U7-C86QL7,O=&EM M92YH/@HK(`HK("-I;F-L=61E(")T7-C M86QL+F@B"B`@"BL@97AT97)N(&EN="!F;VQL;W=F;W)K'1E'1EPH@("`@("!I9B`H7-C86QL*&]U=&9I;&4L(&YA;64L(&YA MPHA("`@("!F<')I;G1F M*&]U=&9I;&4L("(@15)2(R5D("PHA("`@("!F<')I;G1F*&]U=&9I;&4L M("(@/2`E9"`H,'@E>"E<;B(L(')E='9A;"P@PHA("`@ M("!T:6UE9&EF9BYT=E]S96,@/2!T7-C86QL7W)E="AS=')U8W0@=')UPHA("`@("!F<')I;G1F*'1R=7-S:6YF;RT^;W5T9FEL92P@(B!% M4E(C)60@)R5S)UQN(BP@7-T96T@8V%L;',*("`N4V@@4UE.3U!325,* M("`N3FT*(2`N3W`@1FP@4PH@("Y/<"!&;"!O($%R(&9I;&4*("`N1FP@<"!! M7-T96T@8V%L;',*("`N4V@@4UE.3U!325,*("`N3FT*(2`N3W`@1FP@9F1$ M4PH@("Y/<"!&;"!O($%R(&9I;&4*("`N1FP@<"!!2!F;W)K*"DL"BL@=F9O2!T:&4@<')O8V5S7,O:V5R M;B]K97)N7V9O7,O:V5R;B]K97)N7V9O2D@-"\X+SDT"B$@("H@)$9R965"4T0Z('-R8R]S>7,O:V5R M;B]K97)N7V9O'`@)`H@("`J+PH@(`H@("-I;F-L=61E(")O<'1?:W1R86-E+F@B"BTM M+2`S-BPT,B`M+2TM"B`@("H@4U5#2"!$04U!1T4N"B`@("H*("`@*@E`*",I M:V5R;E]F;W)K+F,)."XV("A"97)K96QE>2D@-"\X+SDT"B$@("H@)$9R965" M4T0Z('-R8R]S>7,O:V5R;B]K97)N7V9O7-C86QL+F@^"B`@(VEN8VQU M9&4@/'-Y7,O<&EO8W1L+F@)4V%T($%U9R`R."`P M,#HU,3HU-2`Q.3DY"BTM+2`O=7-R+W-R8U]#5E,O#`R"2\J($EG;F]R92!5 M240O1TE$(&-H86YG97,@*B\**R`C(&1E9FEN92!01E]&3U)+"3!X,#0)+RH@ M4F5T86EN('-E='1I;F=S(&]N(&9O2!F;W)M7)I9VAT"B`J("`@(&YO=&EC92P@=&AI M#`P,#`P M,#`Q"B-D969I;F4@4D5,051)5D5424U%4U1!35!3(#!X,#`P,#`P,#(*(V1E M9FEN92!!0E-/3%54151)34535$%-4%,@,'@P,#`P,#`P-`HC9&5F:6YE($Y/ M4TE'4R`@("`@("`@("`@("`P>#`P,#`P,#`X"@IS=')U8W0@=')U; Wed, 7 Mar 2001 07:10:32 -0800 (PST) (envelope-from Meph@Aeon-AL.Com) Received: from Ra-Hoor.Aeon-AL.Com (host48.207-55-126.aadsl.com [207.55.126.48]) by slave1.aa.net (8.9.1/8.8.5) with ESMTP id HAA09676 for ; Wed, 7 Mar 2001 07:10:30 -0800 X-Intended-For: Date: Wed, 7 Mar 2001 07:12:00 -0800 (PST) From: Meph Istopheles Reply-To: Meph Istopheles To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org subscribe freebsd-bugs To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 7 7:30: 9 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B826F37B719 for ; Wed, 7 Mar 2001 07:30:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f27FU4S85657; Wed, 7 Mar 2001 07:30:04 -0800 (PST) (envelope-from gnats) Date: Wed, 7 Mar 2001 07:30:04 -0800 (PST) Message-Id: <200103071530.f27FU4S85657@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Christoph Sold Subject: Re: kern/25569: /etc/rc.firewall mentions an old book/ISBN [Patch included, comment only] Reply-To: Christoph Sold Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/25569; it has been noted by GNATS. From: Christoph Sold To: freebsd-gnats-submit@FreeBSD.org, so@i-clue.de Cc: Subject: Re: kern/25569: /etc/rc.firewall mentions an old book/ISBN [Patch included, comment only] Date: Wed, 07 Mar 2001 15:45:21 +0100 Apologies indeed. I used misconfigured squid, which had this page cached, it was several weeks old. Disregard my previous mail. -Christoph Sold Christoph Sold schrieb: > > > State-Changed-Why: > > This was reported in PR 24652 and committed last month by des. > > Thanks anyway though. > > I disagree, a quick check in the cvsweb interface shows this change is > in -current only. It needs to be MFC'd ASAP to go into 4.3-Release. > > Apologies for being a pest ;) > -Christoph Sold -- Freundliche Grüße aus Waiblingen Christoph Sold -- Systemadministrator, i-clue GmbH, Endersbacher Str. 57, 71334 Waiblingen Fon: (0 71 51) 9 59 01-12, Fax: (0 71 51) 9 59 01-55, Mail: so@i-clue.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 7 8:50: 7 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EDCA537B71C for ; Wed, 7 Mar 2001 08:50:00 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f27Go0b96267; Wed, 7 Mar 2001 08:50:00 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4154B37B719 for ; Wed, 7 Mar 2001 08:49:40 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f27GneE96206; Wed, 7 Mar 2001 08:49:40 -0800 (PST) (envelope-from nobody) Message-Id: <200103071649.f27GneE96206@freefall.freebsd.org> Date: Wed, 7 Mar 2001 08:49:40 -0800 (PST) From: ches@lumeta.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/25590: execve documentation doesn't mention EBADF Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25590 >Category: misc >Synopsis: execve documentation doesn't mention EBADF >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Wed Mar 07 08:50:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Bill Cheswick >Release: 4.2 stable >Organization: Lumeta Corp. >Environment: FreeBSD p.cheswick.com 4.2-STABLE FreeBSD 4.2-STABLE #7: Sat Feb 3 21:50:30 EST 2001 ches@p.cheswick.com:/usr/src/sys/compile/LOCAL i386 >Description: The execve man page neglects to mention EBADF, which can be returned if the caller does not have permission to access the executed file. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 7 11:20: 6 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E816437B719 for ; Wed, 7 Mar 2001 11:20:00 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f27JK0w34586; Wed, 7 Mar 2001 11:20:00 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9D6B737B718 for ; Wed, 7 Mar 2001 11:18:26 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f27JIQQ34398; Wed, 7 Mar 2001 11:18:26 -0800 (PST) (envelope-from nobody) Message-Id: <200103071918.f27JIQQ34398@freefall.freebsd.org> Date: Wed, 7 Mar 2001 11:18:26 -0800 (PST) From: Danny_Johnston@simn.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/25592: Route table appears to fill up, and connections can not be extablished Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25592 >Category: kern >Synopsis: Route table appears to fill up, and connections can not be extablished >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Mar 07 11:20:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Danny Johnston >Release: 4.0 >Organization: Dick Simon Trucking >Environment: FreeBSD mail.simn.com 4.0-RELEASE FreeBSD 4.0-RELEASE #1: Tue Jan 30 16:23:32 MST 2001 root@mail.simn.com:/usr/src/sys/compile/Mail i386 >Description: Problem was noticed when remote user could not pop mail from mailserver. The route table appered to have 256 entries in it and route for new host would not clone. Tmp fix was to delete all cloned routes from route table. >How-To-Repeat: Have not attepted to recreate problem, but it has happend three or four times. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 7 13:50: 8 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BF6AF37B718 for ; Wed, 7 Mar 2001 13:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f27Lo2b55623; Wed, 7 Mar 2001 13:50:02 -0800 (PST) (envelope-from gnats) Date: Wed, 7 Mar 2001 13:50:02 -0800 (PST) Message-Id: <200103072150.f27Lo2b55623@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Chris Dillon Subject: Re: bin/25584: arp.c - better printed ether address Reply-To: Chris Dillon Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/25584; it has been noted by GNATS. From: Chris Dillon To: Cc: Subject: Re: bin/25584: arp.c - better printed ether address Date: Wed, 7 Mar 2001 15:48:35 -0600 (CST) On Wed, 7 Mar 2001 davidx@viasoft.com.cn wrote: > > >Number: 25584 > >Category: bin > >Synopsis: arp.c - better printed ether address > >Confidential: no > >Severity: non-critical > >Priority: low > >Responsible: freebsd-bugs > >State: open > >Quarter: > >Keywords: > >Date-Required: > >Class: sw-bug > >Submitter-Id: current-users > >Arrival-Date: Wed Mar 07 00:30:03 PST 2001 > >Closed-Date: > >Last-Modified: > >Originator: David Xu > >Release: FreeBSD 4.3-BETA > >Organization: > Viasoft > >Environment: > FreeBSD davidbsd.viasoft.com.cn 4.3-BETA FreeBSD 4.3-BETA #0: Wed Mar 7 15:30:1 > 1 CST 2001 xyf@davidbsd.viasoft.com.cn:/usr/obj/usr/src/sys/xu i386 > >Description: > the ether address printed by /usr/sbin/arp is not so fine, > some bytes is printed in two bytes while others not. > > > >How-To-Repeat: > stock version prints: > davidbsd# arp -n -a > ? (192.168.1.98) at 0:e0:4c:6b:a6:9 [ethernet] > ? (192.168.1.109) at 0:e0:4c:3f:49:eb [ethernet] > ? (192.168.1.254) at 0:b0:c2:89:a4:6e [ethernet] > ? (192.168.1.255) at ff:ff:ff:ff:ff:ff permanent [ethernet] > > better vesion prints > davidbsd# arp -n -a > ? (192.168.1.98) at 00:e0:4c:6b:a6:09 [ethernet] > ? (192.168.1.109) at 00:e0:4c:3f:49:eb [ethernet] > ? (192.168.1.254) at 00:b0:c2:89:a4:6e [ethernet] > ? (192.168.1.255) at ff:ff:ff:ff:ff:ff permanent [ethernet] This will probably turn into a bikeshed argument, but.... I would have to heartily agree with you that this is the correct way to do things. While it _might_ break something that parses arp(8) output, always using two digits is how I have seen it done everywhere else. You should be able to remove all of the colons and always have a correct MAC address (12 digits), which is not the case currently. -- Chris Dillon - cdillon@wolves.k12.mo.us - cdillon@inter-linc.net FreeBSD: The fastest and most stable server OS on the planet. For IA32 and Alpha architectures. IA64, PPC, and ARM under development. http://www.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 7 14: 0:19 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5FF9637B71D for ; Wed, 7 Mar 2001 14:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f27M02o56673; Wed, 7 Mar 2001 14:00:02 -0800 (PST) (envelope-from gnats) Date: Wed, 7 Mar 2001 14:00:02 -0800 (PST) Message-Id: <200103072200.f27M02o56673@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Garrett Wollman Subject: bin/25584: arp.c - better printed ether address Reply-To: Garrett Wollman Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/25584; it has been noted by GNATS. From: Garrett Wollman To: davidx@viasoft.com.cn Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: bin/25584: arp.c - better printed ether address Date: Wed, 7 Mar 2001 16:49:40 -0500 (EST) < - printf("%x:%x:%x:%x:%x:%x", cp[0], cp[1], cp[2], cp[3], cp[4], cp[5]); > + printf("%02x:%02x:%02x:%02x:%02x:%02x", cp[0], cp[1], cp[2], cp[3], cp[4], cp[5]); FWIW, I like this change. -GAWollman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 7 14:46:48 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from texorami.ghostwheel.com (texorami.ghostwheel.com [209.21.75.126]) by hub.freebsd.org (Postfix) with ESMTP id 7029D37B71A for ; Wed, 7 Mar 2001 14:46:43 -0800 (PST) (envelope-from merlin@ghostwheel.com) Received: from avalon.ghostwheel.com (97bus23.tampabay.rr.com [24.94.97.23]) by texorami.ghostwheel.com (8.9.3/8.9.3) with ESMTP id OAA46598 for ; Wed, 7 Mar 2001 14:46:43 -0800 (PST) (envelope-from merlin@ghostwheel.com) Message-Id: <5.1.0.10.0.20010307144750.02119938@imap2.ghostwheel.com> X-Sender: merlin.mail@imap2.ghostwheel.com X-Mailer: QUALCOMM Windows Eudora Version 5.1.0.10 (Beta) Date: Wed, 07 Mar 2001 14:47:56 -0800 To: freebsd-bugs@freeBSD.org From: Christopher Knight Subject: NMI blowout during make buildworld. Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org My system: P3-550/256M SDRAM (possibly ECC) Intel SE44BX-2 motherboard with p17 BIOS IDE boot disk with a vinum mirror for my webspace Adaptec 2940 Ultra SCSI adapter 3Com 3c905B-TX Fast Etherlink XL The OS is FreeBSD 4.3-BETA. I have been having crashes during make buildworld lately, so I wound up building a new kernel today. The kernel is up-to-date while the rest of the system is out of sync by a few weeks. Here is what I got on the serial console today while running a buildworld: Fatal trap 19: non-maskable interrupt trap while in kernel mode instruction pointer = 0x8:0xc025ffdc stack pointer = 0x10:0xd2c4edb4 frame pointer = 0x10:0xd2c4ede4 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 = 57014 (cpp) interrupt mask = none trap number = 19 panic: non-maskable interrupt trap syncing disks... 133 132 119 103 79 50 21 1 1 1 1 1 1 1 1 1 1 1 1 1 done Uptime: 1h0m22s Automatic reboot in 15 seconds - press a key on the console to abort Rebooting... Any and all assistance appreciated! The machine is in a co-lo facility 3000 miles away... If I can fix this from remote, great. If it looks like a hardware problem I want to be able to get it fixed on the first pass. :) If there is any other information I can provide, just let me know. Thanks! -ck To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 7 14:48: 6 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6AE3137B718; Wed, 7 Mar 2001 14:48:05 -0800 (PST) (envelope-from keichii@FreeBSD.org) Received: (from keichii@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f27Mm5n64002; Wed, 7 Mar 2001 14:48:05 -0800 (PST) (envelope-from keichii) Date: Wed, 7 Mar 2001 14:48:05 -0800 (PST) From: Message-Id: <200103072248.f27Mm5n64002@freefall.freebsd.org> To: keichii@FreeBSD.org, freebsd-bugs@FreeBSD.org, keichii@FreeBSD.org Subject: Re: conf/25495: missing et_EE.ISO_8859-15 locale Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: missing et_EE.ISO_8859-15 locale Responsible-Changed-From-To: freebsd-bugs->keichii Responsible-Changed-By: keichii Responsible-Changed-When: Wed Mar 7 14:46:31 PST 2001 Responsible-Changed-Why: I will take care of thisl. http://www.freebsd.org/cgi/query-pr.cgi?pr=25495 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 7 14:55:13 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id E47AB37B71A; Wed, 7 Mar 2001 14:55:07 -0800 (PST) (envelope-from ache@nagual.pp.ru) Received: (from ache@localhost) by nagual.pp.ru (8.11.3/8.11.3) id f27Mt6j56932; Thu, 8 Mar 2001 01:55:06 +0300 (MSK) (envelope-from ache) Date: Thu, 8 Mar 2001 01:55:06 +0300 From: "Andrey A. Chernov" To: keichii@FreeBSD.ORG, peter@FreeBSD.ORG Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: conf/25495: missing et_EE.ISO_8859-15 locale Message-ID: <20010308015506.A56834@nagual.pp.ru> References: <200103072248.f27Mm5n64002@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Mutt/1.2.5i In-Reply-To: <200103072248.f27Mm5n64002@freefall.freebsd.org>; from keichii@FreeBSD.ORG on Wed, Mar 07, 2001 at 02:48:05PM -0800 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Mar 07, 2001 at 14:48:05 -0800, keichii@FreeBSD.ORG wrote: > Synopsis: missing et_EE.ISO_8859-15 locale >=20 > Responsible-Changed-From-To: freebsd-bugs->keichii > Responsible-Changed-By: keichii > Responsible-Changed-When: Wed Mar 7 14:46:31 PST 2001 > Responsible-Changed-Why:=20 > I will take care of thisl.=08=08=08 Before anybody start to care: Peter promise to repo copy *DIS*15 files to *ISO*15 files, this is real showstopper at this moment. --=20 Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 7 15:47:28 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from aaz.links.ru (aaz.links.ru [193.125.152.37]) by hub.freebsd.org (Postfix) with ESMTP id BCB6437B718 for ; Wed, 7 Mar 2001 15:47:24 -0800 (PST) (envelope-from babolo@links.ru) Received: (from babolo@localhost) by aaz.links.ru (8.9.3/8.9.3) id CAA27552; Thu, 8 Mar 2001 02:47:19 +0300 (MSK) Message-Id: <200103072347.CAA27552@aaz.links.ru> Subject: Re: NMI blowout during make buildworld. In-Reply-To: <5.1.0.10.0.20010307144750.02119938@imap2.ghostwheel.com> from "Christopher Knight" at "Mar 7, 1 02:47:56 pm" To: merlin@ghostwheel.com (Christopher Knight) Date: Thu, 8 Mar 2001 02:47:19 +0300 (MSK) Cc: freebsd-bugs@FreeBSD.ORG From: "Aleksandr A. Babaylov" MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org If ECC enabled in BIOS then most likely SDRAM fault Christopher Knight writes: > My system: > > P3-550/256M SDRAM (possibly ECC) > Intel SE44BX-2 motherboard with p17 BIOS > IDE boot disk with a vinum mirror for my webspace > Adaptec 2940 Ultra SCSI adapter > 3Com 3c905B-TX Fast Etherlink XL > > The OS is FreeBSD 4.3-BETA. I have been having crashes during make > buildworld lately, so I wound up building a new kernel today. The kernel > is up-to-date while the rest of the system is out of sync by a few weeks. > > Here is what I got on the serial console today while running a buildworld: > > Fatal trap 19: non-maskable interrupt trap while in kernel mode > instruction pointer = 0x8:0xc025ffdc > stack pointer = 0x10:0xd2c4edb4 > frame pointer = 0x10:0xd2c4ede4 > 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 = 57014 (cpp) > interrupt mask = none > trap number = 19 > panic: non-maskable interrupt trap > > syncing disks... 133 132 119 103 79 50 21 1 1 1 1 1 1 1 1 1 1 1 1 1 > done > Uptime: 1h0m22s > Automatic reboot in 15 seconds - press a key on the console to abort > Rebooting... > > > Any and all assistance appreciated! The machine is in a co-lo facility > 3000 miles away... If I can fix this from remote, great. If it looks like > a hardware problem I want to be able to get it fixed on the first pass. :) > > If there is any other information I can provide, just let me know. > > Thanks! > > -ck > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-bugs" in the body of the message > -- ZZZZ X X Z X X ZX Spectrum software museum Z X http://www.zx.ru/ ftp://zx-museum.org.ru/ Z X X babolo@zx.ru Alexandr Babaylov ZZZZ X X To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 7 16: 0: 9 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ABC8437B71B for ; Wed, 7 Mar 2001 16:00:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f28001473947; Wed, 7 Mar 2001 16:00:01 -0800 (PST) (envelope-from gnats) Received: from weirdo.netcraft.com (weirdo.netcraft.com [195.92.95.47]) by hub.freebsd.org (Postfix) with ESMTP id 10FAB37B719 for ; Wed, 7 Mar 2001 15:59:39 -0800 (PST) (envelope-from sketchy@weirdo.netcraft.com) Received: (from sketchy@localhost) by weirdo.netcraft.com (8.11.1/8.11.1) id f27NxYJ03806; Wed, 7 Mar 2001 23:59:35 GMT (envelope-from sketchy) Message-Id: <200103072359.f27NxYJ03806@weirdo.netcraft.com> Date: Wed, 7 Mar 2001 23:59:35 GMT From: Jonathan Perkin Reply-To: Jonathan Perkin To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: misc/25596: "distribution:" target for src/etc/Makefile fails with devfs Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25596 >Category: misc >Synopsis: "distribution:" target for src/etc/Makefile fails with devfs >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Mar 07 16:00:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Jonathan Perkin >Release: FreeBSD 5.0-CURRENT i386 >Organization: none >Environment: System: FreeBSD weirdo.bsdcode.net 5.0-CURRENT FreeBSD 5.0-CURRENT #1: Tue Mar 6 16:28:18 GMT 2001 sketchy@weirdo.bsdcode.net:/usr/obj/usr/src/sys/WEIRDO i386 >Description: Since DEVFS was made default in -current a month or so ago, the distribution target in src/etc/Makefile has been broken because MAKEDEV cannot be installed to /dev distribution is still a viable target, especially for people such as myself who occasionally like to wipe out /etc + /var and repopulate from scratch to avoid old cruft. But even a "make -k" fails to work. Moving the MAKEDEV installation inside the testcase for NO_MAKEDEV makes sense anyway, as if you don't want /dev to be recreated, you're unlikely to want MAKEDEV to be reinstalled. (I apologise if this pr has already been received - I'm not sure whether it's related to mail problems I've been having recently or whether the gnats system is just slow :o) >How-To-Repeat: $ cd /usr/src/etc $ make [-k] [NO_MAKEDEV=yes] distribution >Fix: Index: Makefile =================================================================== RCS file: /home/ncvs/src/etc/Makefile,v retrieving revision 1.243 diff -u -r1.243 Makefile --- Makefile 2001/03/01 03:51:18 1.243 +++ Makefile 2001/03/07 12:22:40 @@ -76,9 +76,7 @@ ( cd ${.CURDIR}/../share/termcap; ${MAKE} etc-termcap ); \ ( cd ${.CURDIR}/../usr.sbin/rmt; ${MAKE} etc-rmt ); \ ( cd ${.CURDIR}/isdn; ${MAKE} install ); \ - pwd_mkdb -p -d ${DESTDIR}/etc ${DESTDIR}/etc/master.passwd; \ - ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 555 \ - MAKEDEV.local MAKEDEV ${DESTDIR}/dev ) + pwd_mkdb -p -d ${DESTDIR}/etc ${DESTDIR}/etc/master.passwd; ) .if !defined(NO_SENDMAIL) ( cd ${.CURDIR}/sendmail; ${MAKE} distribution ); .endif @@ -94,6 +92,9 @@ ${DESTDIR}/etc/ssl ) .endif .if !defined(NO_MAKEDEV) + (cd ${.CURDIR}; \ + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 555 \ + MAKEDEV.local MAKEDEV ${DESTDIR}/dev ) (cd ${DESTDIR}/dev; sh MAKEDEV all) .endif (cd ${.CURDIR}/root; \ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 7 17:39:44 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8CE7637B719; Wed, 7 Mar 2001 17:39:42 -0800 (PST) (envelope-from mdodd@FreeBSD.org) Received: (from mdodd@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f281dgD89300; Wed, 7 Mar 2001 17:39:42 -0800 (PST) (envelope-from mdodd) Date: Wed, 7 Mar 2001 17:39:42 -0800 (PST) From: Message-Id: <200103080139.f281dgD89300@freefall.freebsd.org> To: nms@FreeBSD.ORG, mdodd@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/24074: Properties of token-ring protocol must be separated from implementation Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Properties of token-ring protocol must be separated from implementation State-Changed-From-To: open->closed State-Changed-By: mdodd State-Changed-When: Wed Mar 7 17:39:08 PST 2001 State-Changed-Why: Committed. Will MFC later. http://www.freebsd.org/cgi/query-pr.cgi?pr=24074 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 7 17:54: 2 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from elvis.mu.org (elvis.mu.org [207.154.226.10]) by hub.freebsd.org (Postfix) with ESMTP id 9389937B71B for ; Wed, 7 Mar 2001 17:53:59 -0800 (PST) (envelope-from billf@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1098) id 4B2B081D24; Wed, 7 Mar 2001 19:53:49 -0600 (CST) Date: Wed, 7 Mar 2001 19:53:49 -0600 From: Bill Fumerola To: Garrett Wollman Cc: freebsd-bugs@FreeBSD.org Subject: Re: bin/25584: arp.c - better printed ether address Message-ID: <20010307195349.H31752@elvis.mu.org> References: <200103072200.f27M02o56673@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200103072200.f27M02o56673@freefall.freebsd.org>; from wollman@khavrinen.lcs.mit.edu on Wed, Mar 07, 2001 at 02:00:02PM -0800 X-Operating-System: FreeBSD 4.2-FEARSOME-20010209 i386 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Mar 07, 2001 at 02:00:02PM -0800, Garrett Wollman wrote: > > - printf("%x:%x:%x:%x:%x:%x", cp[0], cp[1], cp[2], cp[3], cp[4], cp[5]); > > + printf("%02x:%02x:%02x:%02x:%02x:%02x", cp[0], cp[1], cp[2], cp[3], cp[4], cp[5]); > > FWIW, I like this change. So do I, so I committed it... -- Bill Fumerola - security yahoo / Yahoo! inc. - fumerola@yahoo-inc.com / billf@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 7 17:54:37 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 839AB37B718; Wed, 7 Mar 2001 17:54:34 -0800 (PST) (envelope-from mdodd@FreeBSD.org) Received: (from mdodd@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f281sYe90993; Wed, 7 Mar 2001 17:54:34 -0800 (PST) (envelope-from mdodd) Date: Wed, 7 Mar 2001 17:54:34 -0800 (PST) From: Message-Id: <200103080154.f281sYe90993@freefall.freebsd.org> To: nms@FreeBSD.ORG, mdodd@FreeBSD.org, freebsd-bugs@FreeBSD.org, mdodd@FreeBSD.org Subject: Re: kern/24074: Properties of token-ring protocol must be separated from implementation Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Properties of token-ring protocol must be separated from implementation State-Changed-From-To: closed->open State-Changed-By: mdodd State-Changed-When: Wed Mar 7 17:53:26 PST 2001 State-Changed-Why: Closed wrong PR. I'll get around to this one in a bit. Responsible-Changed-From-To: freebsd-bugs->mdodd Responsible-Changed-By: mdodd Responsible-Changed-When: Wed Mar 7 17:53:26 PST 2001 Responsible-Changed-Why: I'll take care of this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=24074 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 7 17:55:20 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4424137B71A; Wed, 7 Mar 2001 17:55:19 -0800 (PST) (envelope-from mdodd@FreeBSD.org) Received: (from mdodd@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f281tJI91151; Wed, 7 Mar 2001 17:55:19 -0800 (PST) (envelope-from mdodd) Date: Wed, 7 Mar 2001 17:55:19 -0800 (PST) From: Message-Id: <200103080155.f281tJI91151@freefall.freebsd.org> To: nms@FreeBSD.ORG, mdodd@FreeBSD.org, freebsd-bugs@FreeBSD.org, mdodd@FreeBSD.org Subject: Re: kern/24073: oltr driver set work memory at wrong phase Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: oltr driver set work memory at wrong phase State-Changed-From-To: open->closed State-Changed-By: mdodd State-Changed-When: Wed Mar 7 17:54:38 PST 2001 State-Changed-Why: Committed. MFC later. Responsible-Changed-From-To: freebsd-bugs->mdodd Responsible-Changed-By: mdodd Responsible-Changed-When: Wed Mar 7 17:54:38 PST 2001 Responsible-Changed-Why: I dealt with this. http://www.freebsd.org/cgi/query-pr.cgi?pr=24073 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 7 17:55:58 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B7A3E37B719; Wed, 7 Mar 2001 17:55:55 -0800 (PST) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f281sZ191015; Wed, 7 Mar 2001 17:54:35 -0800 (PST) (envelope-from billf) Date: Wed, 7 Mar 2001 17:54:35 -0800 (PST) From: Message-Id: <200103080154.f281sZ191015@freefall.freebsd.org> To: davidx@viasoft.com.cn, billf@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/25584: arp.c - better printed ether address Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: arp.c - better printed ether address State-Changed-From-To: open->suspended State-Changed-By: billf State-Changed-When: Wed Mar 7 17:54:07 PST 2001 State-Changed-Why: committed, pr remains suspended to serve as a reminder to merge this to -stable after the thaw. http://www.freebsd.org/cgi/query-pr.cgi?pr=25584 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 7 18:10: 7 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BDFB537B719 for ; Wed, 7 Mar 2001 18:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f282A1d94740; Wed, 7 Mar 2001 18:10:01 -0800 (PST) (envelope-from gnats) Received: from christel.heitec.net (christel.heitec.net [193.101.232.3]) by hub.freebsd.org (Postfix) with ESMTP id 14B0537B719 for ; Wed, 7 Mar 2001 18:09:06 -0800 (PST) (envelope-from bernd@heitec.net) Received: from heitec.net (paladin.heitec.net [193.101.232.30]) by christel.heitec.net (Postfix) with ESMTP id 54EFAB8105 for ; Thu, 8 Mar 2001 03:08:59 +0100 (CET) Received: (from bernd@localhost) by heitec.net (8.11.3/8.11.3) id f2828ww08461; Thu, 8 Mar 2001 03:08:58 +0100 (CET) (envelope-from bernd) Message-Id: <200103080208.f2828ww08461@ heitec.net> Date: Thu, 8 Mar 2001 03:08:58 +0100 (CET) From: bdluevel@heitec.net Reply-To: bdluevel@heitec.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/25598: patch to let ftpd output message when changing directory Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25598 >Category: bin >Synopsis: patch to let ftpd output message when changing directory >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Mar 07 18:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Bernd Luevelsmeyer >Release: FreeBSD 4.3-BETA i386 >Organization: >Environment: System: FreeBSD 4.3-BETA #0: Wed Mar 7 04:44:56 CET 2001 >Description: The patch lets the FTP daemon (after a successful 'cwd' command) look for a file '.message' in the current directory and, if readable, send the contents to the client, preceding the "250 CWD successful." message. The intent is to let the FTP site admin announce directory descriptions, copyright notices or the like. >How-To-Repeat: >Fix: --- libexec/ftpd/ftpd.c.orig Thu Mar 8 02:34:14 2001 +++ libexec/ftpd/ftpd.c Thu Mar 8 02:44:38 2001 @@ -2170,7 +2170,22 @@ if (chdir(path) < 0) perror_reply(550, path); else + { + char line[LINE_MAX]; + FILE *fd; + if ((fd = fopen(".message", "r")) != NULL) + { + while (fgets(line, sizeof(line), fd) != NULL) + { + char *cp; + if ((cp = strchr(line, '\n')) != NULL) + *cp = '\0'; + lreply(250, "%s", line); + } + fclose(fd); + } ack("CWD"); + } } void >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 7 20: 0: 5 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7F23137B718 for ; Wed, 7 Mar 2001 20:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f28402c08282; Wed, 7 Mar 2001 20:00:02 -0800 (PST) (envelope-from gnats) Date: Wed, 7 Mar 2001 20:00:02 -0800 (PST) Message-Id: <200103080400.f28402c08282@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Bernd Luevelsmeyer Subject: Re: bin/25598: patch to let ftpd output message when changing directory Reply-To: Bernd Luevelsmeyer Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/25598; it has been noted by GNATS. From: Bernd Luevelsmeyer To: FreeBSD-gnats-submit@freebsd.org Cc: Subject: Re: bin/25598: patch to let ftpd output message when changing directory Date: Thu, 08 Mar 2001 04:55:50 +0100 I forgot to patch the man page accordingly; I'm submitting the man page diff here: --- libexec/ftpd/ftpd.8.original Thu Mar 8 03:36:41 2001 +++ libexec/ftpd/ftpd.8 Thu Mar 8 04:45:16 2001 @@ -236,6 +236,11 @@ .It XRMD Ta "remove a directory (deprecated) [RW]" .El .Pp +After a successful CWD command, a file +.Pa .message +is looked up in the new current directory and submitted to the client +as part of the ok-message, if available. +.Pp The following non-standard or .Tn UNIX specific commands are supported To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 7 21:30: 7 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2F75C37B71A for ; Wed, 7 Mar 2001 21:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f285U1b22256; Wed, 7 Mar 2001 21:30:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 752A337B719 for ; Wed, 7 Mar 2001 21:24:40 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f285Oel21924; Wed, 7 Mar 2001 21:24:40 -0800 (PST) (envelope-from nobody) Message-Id: <200103080524.f285Oel21924@freefall.freebsd.org> Date: Wed, 7 Mar 2001 21:24:40 -0800 (PST) From: darkwalker@bigfoot.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/25600: Loading/unloading sound modules (snd_sb16) more than once makes errors Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25600 >Category: kern >Synopsis: Loading/unloading sound modules (snd_sb16) more than once makes 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: Wed Mar 07 21:30:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: michael lothian >Release: 4.2-STABLE as of Mon Mar 5 18:35:55 PST 2001 >Organization: none >Environment: FreeBSD stones.internal.dsmx.net 4.2-STABLE FreeBSD 4.2-STABLE #0: Mon Mar 5 18:35:55 PST 2001 root@stones.internal.dsmx.net:/usr/src/sys/compile/STONES i386 >Description: Loading a sound kld (snd_sb16 for instance), unloading it, then loading and unloading it again causes a few errors from the kernel. Every subsequent load/unload causes another error on top of the ones that have already shown to appear again. It seems to not release DMAs after acquiring them, and not destroy children devices of the SB16 properly on module unload I have a K6-2 500 with an SB AWE64 Value, FreeBSD installed about 2 days ago and upgraded to -STABLE w/ cvsup dmesg output after load/unloading snd_sb16 3 times: --- c0: at port 0x220-0x22f,0x330-0x331,0x388-0x38b irq 5 drq 1,5 on isa0 pcm0: on sbc0 pcm0: detached sbc0: detached sbc0: at port 0x220-0x22f,0x330-0x331,0x388-0x38b irq 5 drq 1,5 on isa0 pcm0: on sbc0 isa_dma_acquire: channel 1 already in use isa_dma_acquire: channel 5 already in use pcm1: on sbc0 device_probe_and_attach: pcm1 attach returned 6 pcm0: detached sbc0: detached sbc0: at port 0x220-0x22f,0x330-0x331,0x388-0x38b irq 5 drq 1,5 on isa0 pcm0: on sbc0 isa_dma_acquire: channel 1 already in use isa_dma_acquire: channel 5 already in use pcm1: on sbc0 device_probe_and_attach: pcm1 attach returned 6 pcm2: on sbc0 device_probe_and_attach: pcm2 attach returned 6 pcm0: detached sbc0: detached --- >How-To-Repeat: execute `kldload snd_sb16; kldunload snd_sb16` three times with a sound blaster in the system (may work with other modules too) >Fix: This diff will get rid of the errors and fix what looks like a typo in /sys/dev/sound/isa/sb16.c, but I'm not sure if they're the right way to fix it (only been using freebsd 2 days :)) http://sync.dyndns.org/~walker/files/sbfix.diff >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 7 22:40:16 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 951D737B71B for ; Wed, 7 Mar 2001 22:40:06 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f286e6C35259; Wed, 7 Mar 2001 22:40:06 -0800 (PST) (envelope-from gnats) Received: from pc3.geta.hatoyama.hitachi.co.jp (amaterasu.hatoyama.hitachi.co.jp [133.145.150.129]) by hub.freebsd.org (Postfix) with ESMTP id E6A3637B71E for ; Wed, 7 Mar 2001 22:33:52 -0800 (PST) (envelope-from nis@pc3.geta.hatoyama.hitachi.co.jp) Received: (from nis@localhost) by pc3.geta.hatoyama.hitachi.co.jp (8.11.1/8.11.1) id f286XnB02074; Thu, 8 Mar 2001 15:33:49 +0900 (JST) (envelope-from nis) Message-Id: <200103080633.f286XnB02074@pc3.geta.hatoyama.hitachi.co.jp> Date: Thu, 8 Mar 2001 15:33:49 +0900 (JST) From: Shingo Nishioka Reply-To: nis@pc3.geta.hatoyama.hitachi.co.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: i386/25603: mmap + fork = panic: vm_object_deallocate: object deallocated too may times: 0 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25603 >Category: i386 >Synopsis: mmap + fork = panic: vm_object_deallocate: object deallocated too may times: 0 >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Mar 07 22:40:05 PST 2001 >Closed-Date: >Last-Modified: >Originator: Shingo Nishioka >Release: FreeBSD 4.2-RELEASE i386 >Organization: CRL, Hitachi, Ltd. >Environment: FreeBSD 4.2-RELEASE (GENERIC) #0: Mon Nov 20 13:02:55 GMT 2000 >Description: The code blow causes a "panic: vm_object_deallocate: object deallocated too may times: 0" >How-To-Repeat: Compile and run the following code. #include #include #include #include #include #include main() { char *path = "foo.c"; int d; struct stat sb; void *p; size_t len; if ((d = open(path, O_RDONLY))==-1) { perror(path); return 1; } if (fstat(d, &sb)==-1) { perror(path); return 1; } len = sb.st_size; if ((p = mmap(0, len, PROT_READ, MAP_INHERIT, d, 0))==MAP_FAILED) { perror("mmap"); return 1; } fork(); return 0; } >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 7 22:40:44 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2D19F37B71A for ; Wed, 7 Mar 2001 22:40:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f286e5435249; Wed, 7 Mar 2001 22:40:05 -0800 (PST) (envelope-from gnats) Date: Wed, 7 Mar 2001 22:40:05 -0800 (PST) Message-Id: <200103080640.f286e5435249@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Matthew N. Dodd" Subject: Re: bin/25587: truss(1) enhancements Reply-To: "Matthew N. Dodd" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/25587; it has been noted by GNATS. From: "Matthew N. Dodd" To: woodjr@chakat.com Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/25587: truss(1) enhancements Date: Thu, 8 Mar 2001 01:29:52 -0500 (EST) I'll take a look at this. In the future, please use the unified diff format. On Sun, 4 Mar 2001 woodjr@chakat.com wrote: > > >Number: 25587 > >Category: bin > >Synopsis: Add Solaris-like functionality to truss(1): -f, -d, and -D > >Confidential: no > >Severity: non-critical > >Priority: medium > >Responsible: freebsd-bugs > >State: open > >Quarter: > >Keywords: > >Date-Required: > >Class: change-request > >Submitter-Id: current-users > >Arrival-Date: Wed Mar 07 06:50:01 PST 2001 > >Closed-Date: > >Last-Modified: > >Originator: Jamey Wood > >Release: FreeBSD 5.0-CURRENT i386 > >Organization: > None > >Environment: > System: FreeBSD buddy.chakat.com 5.0-CURRENT FreeBSD 5.0-CURRENT #5: Thu Mar 1 20:44:25 GMT 2001 root@buddy.chakat.com:/usr/src/sys/compile/buddy i386 > > > >Description: > The included code changes alter truss(1) to support flags present in > Solaris's truss(1). The most notable of these is the -f flag, which > causes truss to trace any children forked while a process is being > traced. A small change to kern_fork.c and pioctl.h were necessary to > add flags to cause such children to inherit the procfs-based trace > settings of their parent. > > The -d and -D flags are inspired by changed added in in Solaris 7's > truss, and add timestamps to the truss output. The -d flag > causes timestamps to be included showing time elapsed at each event > since the start of the trace. The -D flag causes timestamps which > show time elapsed since the last event. > > Finally, I moved as many of the global vars as possible into a > trussinfo struct which is passed as an argument to most procedures. > > I have attempted to change the alpha-specific code in truss(1) to > also support these features, but I do not have an alpha FreeBSD > environment on which to test. > > I have included three diff's and one new file > (/usr/src/usr.bin/truss/truss.h) in the "Fix" section, as a uuencoded > tar file. > >How-To-Repeat: > N/A > >Fix: > begin 644 truss_files.tar > M=')U M```````````````````````````````````````````````````````````` > M`````````````"`T,# M("`W,C4P-#4S,S`V("`Q,C$S,0`@-0`````````````````````````````` > M```````````````````````````````````````````````````````````` > M``````````````````````````````````````````!U M<@``````````````````````````````````=VAE96P````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M``````````````````````!T M```````````````````````````````````````````````````````````` > M````````````````````````````````````,3`P-C0T(``@("`W-C0@`"`@ > M("`@,"``("`@("`@-S4Q-30@(# M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M`````'5S=&%R("``=V]O9&IR``````````````````````````````````!W > M:&5E;``````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M`````````````````````````````````````````````$]N;'D@:6X@+W5S > M M M M;B]T M"BTM+2`O=7-R+W-R8U]#5E,O=7-R+F)I;B]T M4V%T($UA M-3@L-S`@*BHJ*@H@("-I;F-L=61E(#QM86-H:6YE+W!S;"YH/@H@("-I;F-L > M=61E(#QS>7,O7-C86QL+F@B > M"B`@"B`@ M("TQ.PH@(&5X=&5R;B!I;G0@4')O8V9D.PH@(`HM(&5X=&5R;B!&24Q%("IO > M=71F:6QE.PH@("-I;F-L=61E(")S>7-C86QL M;G0@;G-Y M M;6%C:&EN92]P M*R`C:6YC;'5D92`B=')U M(`H@('-T871I8R!I;G0@9F0@/2`M,3L*("!S=&%T:6,@:6YT(&-P:60@/2`M > M,3L*("!E>'1E M;',N:"(*("`*("!S=&%T:6,@:6YT(&YS>7-C86QLF5O9BAS>7-C > M86QL;F%M97,I("\@ M*BHJ*BHJ*@HJ*BH@,3$Q+#$Q-R`J*BHJ"B`@("HO"B`@"B`@=F]I9`HA(&%L > M<&AA7W-Y M:&%R(&)U9ELS,ET["B`@("!S=')U8W0@ M"B`@("!I;G0@ M('9O:60*(2!A;'!H85]S>7-C86QL7V5N=')Y*'-T M*G1R=7-S:6YF;RP@:6YT(&YA M("!S=')U8W0@ M;#L**BHJ*BHJ*BHJ*BHJ*BHJ"BHJ*B`Q,C`L,3,S("HJ*BH*("`@('-T M="!S>7-C86QL("IS8SL*("`@(&EN="!I;F1I M('-Y M(&-P:60I('L*(2`@("`@ M<&ED*3L*("`@("`@9F0@/2!O<&5N*&)U9BP@3U]21%=2*3L*("`@("`@:68@ > M*&9D(#T]("TQ*2!["B$@("`@("`@9G!R:6YT9BAO=71F:6QE+"`B+2T@0T%. > M3D]4(%)%040@4D5'25-415)3("TM7&XB*3L*("`@("`@("!R971U M("`@('T*(2`@("`@8W!I9"`]('!I9#L*("`@('T*("`*("`@(&-L96%R7V9S > M8R@I.PHM+2T@,3(P+#$S,R`M+2TM"B`@("!S=')U8W0@ M"B`@("!I;G0@:6YD:7(@/2`P.PDO*B!I;F1I7-T96T@8V%L;"`J > M+PH@(`HA("`@:68@*&9D(#T]("TQ('Q\('1R=7-S:6YF;RT^<&ED("$](&-P > M:60I('L*(2`@("`@ M M("`@("!I9B`H9F0@/3T@+3$I('L*(2`@("`@("!F<')I;G1F*'1R=7-S:6YF > M;RT^;W5T9FEL92P@(BTM($-!3DY/5"!214%$(%)%1TE35$524R`M+5QN(BD[ > M"B`@("`@("`@ M9F\M/G!I9#L*("`@('T*("`*("`@(&-L96%R7V9S8R@I.PHJ*BHJ*BHJ*BHJ > M*BHJ*BH**BHJ(#$U,"PQ-38@*BHJ*@H@("`@9G-C+FYA;64@/0H@("`@("`H > M7-C86QL MPHA > M("`@("!F<')I;G1F*&]U=&9I;&4L("(M+2!53DM.3U=.(%-94T-!3$P@)60@ > M+2U<;B(L('-Y M"BTM+2`Q-3`L,38T("TM+2T*("`@(&9S8RYN86UE(#T*("`@("`@*'-Y M;&P@/"`P('Q\('-Y M;&QN86UE7-C86QL73L*("`@(&EF("@A9G-C+FYA;64I('L*(2`@("`@ > M9G!R:6YT9BAT M3$P@)60@+2U<;B(L('-Y M86UE"B$@("`@)B8@*"@A M('Q\("%S=')C;7`H9G-C+FYA;64L(")R9F]R:R(I"B$@("`@('Q\("%S=')C > M;7`H9G-C+FYA;64L(")V9F]R:R(I*2DI"B$@("!["B$@("`@('1R=7-S:6YF > M;RT^:6Y?9F]R:R`](#$["B`@("!]"B`@"B`@("!I9B`H;F%R9W,@/3T@,"D* > M*BHJ*BHJ*BHJ*BHJ*BHJ"BHJ*B`Q.3(L,3DX("HJ*BH*("`@("`@9G-C+FYA > M M("`@9G!R:6YT9BAO=71F:6QE+"`B=6YK;F]W;B!S>7-C86QL("5S("TM('-E > M='1I;F<@87)G M("`C96YD:68*("`@("`@9G-C+FYA M("TM+2T*("`@("`@9G-C+FYA M('L*("`C:68@1$5"54<*(2`@("`@9G!R:6YT9BAT M;&4L(")U;FMN;W=N('-Y M7&XB+`H@(`D@("!F M M("HJ*BH*("`@('T*("`*("`C:68@1$5"54<*(2`@(&9P M92P@(EQN(BD["B`@(V5N9&EF"B`@"B`@("`O*@HM+2T@,C0Q+#(T-R`M+2TM > M"B`@("!]"B`@"B`@(VEF($1%0E5'"B$@("!F<')I;G1F*'1R=7-S:6YF;RT^ > M;W5T9FEL92P@(EQN(BD["B`@(V5N9&EF"B`@"B`@("`O*@HJ*BHJ*BHJ*BHJ > M*BHJ*BH**BHJ(#(T-"PR-3`@*BHJ*@H@("`@("HO"B`@"B`@("!I9B`H(7-T > M M(")E>&ET(BDI('L*(2`@("`@<')I;G1? M;F%M92P@9G-C+FYA M='5R;CL*+2TM(#(U,BPR-3@@+2TM+0H@("`@("HO"B`@"B`@("!I9B`H(7-T > M M(")E>&ET(BDI('L*(2`@("`@<')I;G1? M8RYN86UE+"!F M M('1H92!S>71E;2!C86QL(&YU;6)E M M97AI="AI;G0@<&ED+"!I;G0@PH@("`@8VAA M.PH@("`@ M-2PR-S(@+2TM+0H@("`J('1H92!S>71E;2!C86QL(&YU;6)E M(&]F+"!S87DL(&%N(&5R M86QP:&%?&ET*'-T M;RP@:6YT('-Y M="!R96<@ M*BH@,C8V+#(W.2`J*BHJ"B`@("!I;G0@97)R;W)P.PH@("`@ M M*2!["B$@("`@('-P M"B`@("`@(&9D(#T@;W!E;BAB=68L($]?4D1/3DQ9*3L*("`@("`@:68@*&9D > M(#T]("TQ*2!["B$@("`@("`@9G!R:6YT9BAO=71F:6QE+"`B+2T@0T%.3D]4 > M(%)%040@4D5'25-415)3("TM7&XB*3L*("`@("`@("!R971U M('T*(2`@("`@8W!I9"`]('!I9#L*("`@('T*("`*("`@(&QS965K*&9D+"`P > M3"P@,"D["BTM+2`R-S0L,C@W("TM+2T*("`@(&EN="!E M=')U8W0@ M M;BAB=68L($]?4D1/3DQ9*3L*("`@("`@:68@*&9D(#T]("TQ*2!["B$@("`@ > M("`@9G!R:6YT9BAT M1"!214=)4U1%4E,@+2U<;B(I.PH@("`@("`@(')E='5R;CL*("`@("`@?0HA > M("`@("!C<&ED(#T@=')U M:RAF9"P@,$PL(#`I.PHJ*BHJ*BHJ*BHJ*BHJ*BH**BHJ(#,R,2PS,C@@*BHJ > M*@H@("`@("H@8G5T('1H870@8V]M<&QI8V%T97,@=&AI;F=S(&-O;G-I9&5R > M86)L>2X*("`@("`J+PH@(`HA("`@<')I;G1? M92P@9G-C+FYA;64L(&9S8RYN87)G M971V86PI.PH@("`@8VQE87)?9G-C*"D["B`@"B$@("!R971U M+2T@,S(Y+#,S-B`M+2TM"B`@("`@*B!B=70@=&AA="!C;VUP;&EC871E M:&EN9W,@8V]N7-C > M86QL7W)E="AT M7V%R9W,L(&5R M("`@ M+F)I;B]T M M,S@V+69B M M,34Z-#$Z,#(@,C`P,0HJ*BHJ*BHJ*BHJ*BHJ*BH**BHJ(#4U+#8W("HJ*BH* > M("`C:6YC;'5D92`\;6%C:&EN92]P M M8R!I;G0@9F0@/2`M,3L*("!S=&%T:6,@:6YT(&-P:60@/2`M,3L*("!E>'1E > M'1E M:6YC;'5D92`B7-C86QL > MF5O9BAS>7-C86QL;F%M97,I("\@ M M+F@^"B`@(VEN8VQU9&4@/'-Y7-C86QL+F@^"B`@"BL@(VEN8VQU9&4@ > M(G1R=7-S+F@B"B`@(VEN8VQU9&4@(G-Y M:6YT(&9D(#T@+3$["B`@ M(&EN="!0 M M('-I>F5O9BAS>7-C86QL;F%M97-;,%TI.PHJ*BHJ*BHJ*BHJ*BHJ*BH**BHJ > M(#$P."PQ,30@*BHJ*@H@("`J+PH@(`H@('9O:60*(2!I,S@V7W-Y M96YT M"B`@("!S=')U8W0@ M8V%L;%]E;G1R>2AS=')U8W0@=')U M87)GPH@("`@8VAA M(#T@>R`P('T["B`@("!I;G0@ M*B`Q,38L,3(Y("HJ*BH*("`@('5N M("`@('-T7-C86QL("IS8SL*("`*(2`@(&EF("AF9"`]/2`M,2!\ > M?"!P:60@(3T@8W!I9"D@>PHA("`@("!S<')I;G1F*&)U9BP@(B]P M+W)E9W,B+"!P:60I.PH@("`@("!F9"`](&]P96XH8G5F+"!/7U)$5U(I.PH@ > M("`@("!I9B`H9F0@/3T@+3$I('L*(2`@("`@("!F<')I;G1F*&]U=&9I;&4L > M("(M+2!#04Y.3U0@4D5!1"!214=)4U1%4E,@+2U<;B(I.PH@("`@("`@(')E > M='5R;CL*("`@("`@?0HA("`@("!C<&ED(#T@<&ED.PH@("`@?0H@(`H@("`@ > M8VQE87)?9G-C*"D["BTM+2`Q,38L,3(Y("TM+2T*("`@('5N M="!P87)M7V]F9G-E=#L*("`@('-T7-C86QL("IS8SL*("`*(2`@ > M(&EF("AF9"`]/2`M,2!\?"!T M("`@('-P M<&ED*3L*("`@("`@9F0@/2!O<&5N*&)U9BP@3U]21%=2*3L*("`@("`@:68@ > M*&9D(#T]("TQ*2!["B$@("`@("`@9G!R:6YT9BAT M;&4L("(M+2!#04Y.3U0@4D5!1"!214=)4U1%4E,@+2U<;B(I.PH@("`@("`@ > M(')E='5R;CL*("`@("`@?0HA("`@("!C<&ED(#T@=')U M"B`@("!]"B`@"B`@("!C;&5A M*B`Q-30L,38P("HJ*BH*("`@(&9S8RYN86UE(#T*("`@("`@*'-Y M/"`P('Q\('-Y M86UE7-C86QL73L*("`@(&EF("@A9G-C+FYA;64I('L*(2`@("`@9G!R > M:6YT9BAO=71F:6QE+"`B+2T@54Y+3D]73B!365-#04Q,("5D("TM7&XB+"!S > M>7-C86QL*3L*("`@('T*("`*("`@(&EF("AN87)G M+#$V.2`M+2TM"B`@("!F7-C86QL(#P@,"!\ > M?"!S>7-C86QL(#X@;G-Y7-C86QL;F%M97-; > M M=')U M7&XB+"!S>7-C86QL*3L*(2`@('T*(2`*(2`@(&EF("AF M=')U M M86UE+"`B MPHA("`@("!F<')I;G1F*'-T9&5R M=')U M:6Y?9F]R:R`](#$["B`@("!]"B`@"B`@("!I9B`H;F%R9W,@/3T@,"D**BHJ > M*BHJ*BHJ*BHJ*BHJ"BHJ*B`Q-S`L,3 M(#T@ M9G!R:6YT9BAO=71F:6QE+"`B=6YK;F]W;B!S>7-C86QL("5S("TM('-E='1I > M;F<@87)G M96YD:68*("`@("`@9G-C+FYA M+2T*("`@("`@9G-C+FYA M("`C:68@1$5"54<*(2`@("`@9G!R:6YT9BAT M(")U;FMN;W=N('-Y M+`H@(`D@("!F M;F%R9W,@/2!N87)G M*BH*("`@('T*("`*("`C:68@1$5"54<*(2`@(&9P M(EQN(BD["B`@(V5N9&EF"B`@"B`@("`O*@HM+2T@,C(P+#(R-B`M+2TM"B`@ > M("!]"B`@"B`@(VEF($1%0E5'"B$@("!F<')I;G1F*'1R=7-S:6YF;RT^;W5T > M9FEL92P@(EQN(BD["B`@(V5N9&EF"B`@"B`@("`O*@HJ*BHJ*BHJ*BHJ*BHJ > M*BH**BHJ(#(R,BPR,C@@*BHJ*@H@("`@("HO"B`@"B`@("!I9B`H(7-T M<"AF M>&ET(BDI('L*(2`@("`@<')I;G1? M92P@9G-C+FYA M;CL*+2TM(#(S,2PR,S<@+2TM+0H@("`@("HO"B`@"B`@("!I9B`H(7-T M<"AF M>&ET(BDI('L*(2`@("`@<')I;G1? M86UE+"!F M=7)N.PHJ*BHJ*BHJ*BHJ*BHJ*BH**BHJ(#(S-2PR-#(@*BHJ*@H@("`J('1H > M92!S>71E;2!C86QL(&YU;6)E M('-T871U&ET > M*&EN="!P:60L(&EN="!S>7-C86QL*2!["B`@("!C:&%R(&)U9ELS,ET["B`@ > M("!S=')U8W0@ M,2`M+2TM"B`@("H@=&AE('-Y=&5M(&-A;&P@;G5M8F5R(&EN M('-A>2P@86X@97)R;W(@ M7W-Y M="!S>7-C86QL*2!["B`@("!C:&%R(&)U9ELS,ET["B`@("!S=')U8W0@ M(')E9W,["B`@("!I;G0@ M-"PR-3<@*BHJ*@H@("`@:6YT(&5R7-C86QL > M("IS8SL*("`*(2`@(&EF("AF9"`]/2`M,2!\?"!P:60@(3T@8W!I9"D@>PHA > M("`@("!S<')I;G1F*&)U9BP@(B]P M("!F9"`](&]P96XH8G5F+"!/7U)$3TY,62D["B`@("`@(&EF("AF9"`]/2`M > M,2D@>PHA("`@("`@(&9P M(%)%1TE35$524R`M+5QN(BD["B`@("`@("`@ M("`@(&-P:60@/2!P:60["B`@("!]"B`@"B`@("!L M.PHM+2T@,C4S+#(V-B`M+2TM"B`@("!I;G0@97)R;W)P.PH@("`@ M('-Y M;RT^<&ED("$](&-P:60I('L*(2`@("`@ M9"]R96=S(BP@=')U M+"!/7U)$3TY,62D["B`@("`@(&EF("AF9"`]/2`M,2D@>PHA("`@("`@(&9P > M M25-415)3("TM7&XB*3L*("`@("`@("!R971U M8W!I9"`]('1R=7-S:6YF;RT^<&ED.PH@("`@?0H@(`H@("`@;'-E96LH9F0L > M(#!,+"`P*3L**BHJ*BHJ*BHJ*BHJ*BHJ"BHJ*B`R.3DL,S`V("HJ*BH*("`@ > M("`J(&)U="!T:&%T(&-O;7!L:6-A=&5S('1H:6YG M"B`@("`@*B\*("`*(2`@('!R:6YT7W-Y M8RYN86UE+"!F M*3L*("`@(&-L96%R7V9S8R@I.PH@(`HA("`@ M."PS,34@+2TM+0H@("`@("H@8G5T('1H870@8V]M<&QI8V%T97,@=&AI;F=S > M(&-O;G-I9&5R86)L>2X*("`@("`J+PH@(`HA("`@<')I;G1? M970H=')U M+"!E M='5R;B!R971V86P["B`@?0ID:69F("UC("UR("]U M=')U"YC("]U M+VDS.#8M;&EN=7@N8PHJ*BH@+W5S M+6QI;G5X+F,)4V%T($UA M8U]#5E,O=7-R+F)I;B]T M-3HT-#HP.2`R,#`Q"BHJ*BHJ*BHJ*BHJ*BHJ*@HJ*BH@-3(L-C0@*BHJ*@H@ > M("-I;F-L=61E(#QM86-H:6YE+W)E9RYH/@H@("-I;F-L=61E(#QM86-H:6YE > M+W!S;"YH/@H@(`H@("-I;F-L=61E(")S>7-C86QL+F@B"B`@"B`@ M(&EN="!F9"`]("TQ.PH@('-T871I8R!I;G0@8W!I9"`]("TQ.PH@(&5X=&5R > M;B!I;G0@4')O8V9D.PH@(`HM(&5X=&5R;B!&24Q%("IO=71F:6QE.PH@("-I > M;F-L=61E(")L:6YU>%]S>7-C86QL M M96 M92`B=')U M8R!I;G0@9F0@/2`M,3L*("!S=&%T:6,@:6YT(&-P:60@/2`M,3L*("!E>'1E > M M:"(*("`*("!S=&%T:6,@:6YT(&YS>7-C86QL M*@HJ*BH@.# M2AI;G0@<&ED+"!I;G0@;F%R9W,I('L*("`@(&-H87(@ > M8G5F6S,R73L*("`@('-T M('-Y7-C86QL("IS8SL* > M("`*(2`@(&EF("AF9"`]/2`M,2!\?"!P:60@(3T@8W!I9"D@>PHA("`@("!S > M<')I;G1F*&)U9BP@(B]P M(&]P96XH8G5F+"!/7U)$5U(I.PH@("`@("!I9B`H9F0@/3T@+3$I('L*(2`@ > M("`@("!F<')I;G1F*&]U=&9I;&4L("(M+2!#04Y.3U0@4D5!1"!214=)4U1% > M4E,@+2U<;B(I.PH@("`@("`@(')E='5R;CL*("`@("`@?0HA("`@("!C<&ED > M(#T@<&ED.PH@("`@?0H@(`H@("`@8VQE87)?;'-C*"D["BTM+2`X-RPQ,#<@ > M+2TM+0H@('T*("`*("!V;VED"B$@:3,X-E]L:6YU>%]S>7-C86QL7V5N=')Y > M*'-T M("!C:&%R(&)U9ELS,ET["B`@("!S=')U8W0@ M("`@(&EN="!S>7-C86QL.PH@("`@:6YT(&D["B`@("!S=')U8W0@ M;"`J M+"!T M4BD["B`@("`@(&EF("AF9"`]/2`M,2D@>PHA("`@("`@(&9P M M7&XB*3L*("`@("`@("!R971U M=7-S:6YF;RT^<&ED.PH@("`@?0H@(`H@("`@8VQE87)?;'-C*"D["BHJ*BHJ > M*BHJ*BHJ*BHJ*@HJ*BH@,3$S+#$Q.2`J*BHJ"B`@("!L M("`@("AS>7-C86QL(#P@,"!\?"!S>7-C86QL(#X@;G-Y M3$P@.B!L:6YU>%]S>7-C86QL;F%M97-; M8RYN86UE*2!["B$@("`@(&9P M(%-94T-!3$P@)61<;B(L('-Y M M("`@*'-Y M3"`Z(&QI;G5X7W-Y7-C86QL73L*("`@(&EF("@A;'-C > M+FYA;64I('L*(2`@("`@9G!R:6YT9BAT M+2!53DM.3U=.(%-94T-!3$P@)61<;B(L('-Y M("`@:68@*&QS8RYN86UE"B$@("`@)B8@*"@A M;&EN=7A?9F]R:R(I"B$@("`@('Q\("%S=')C;7`H;'-C+FYA;64L(")L:6YU > M>%]V9F]R:R(I*2DI"B$@("!["B$@("`@('1R=7-S:6YF;RT^:6Y?9F]R:R`] > M(#$["B`@("!]"B`@"B`@("!I9B`H;F%R9W,@/3T@,"D**BHJ*BHJ*BHJ*BHJ > M*BHJ"BHJ*B`Q,S@L,30T("HJ*BH*("`@("`@;'-C+FYA M M9BAO=71F:6QE+"`B=6YK;F]W;B!S>7-C86QL("5S("TM('-E='1I;F<@87)G > M M"B`@("`@(&QS8RYN87)G M("`@(&QS8RYN87)G M9&5F($1%0E5'"B$@("`@(&9P M=6YK;F]W;B!S>7-C86QL("5S("TM('-E='1I;F<@87)G M("`)("`@(&QS8RYN86UE+"!N87)G M87)G M*@H@("`@?0H@(`H@("`@:68@*"%S=')C;7`H;'-C+FYA;64L(")L:6YU>%]E > M>&5C=F4B*2!\?"`A M('!R:6YT7W-Y M;'-C+G-?87)G M("TM+2T*("`@('T*("`*("`@(&EF("@A M=7A?97AE8W9E(BD@?'P@(7-TPHA > M("`@("!P7-C86QL*'1R=7-S:6YF;RP@;'-C+FYA;64L(&QS8RYN > M87)G M*BHJ*BHJ*BHJ*@HJ*BH@,3DR+#$Y.2`J*BHJ"B`@("`)+38L(`H@('T["B`@ > M"B$@=F]I9`HA(&DS.#9?;&EN=7A?&ET*&EN="!P:60L(&EN > M="!S>7-C86QL*2!["B`@("!C:&%R(&)U9ELS,ET["B`@("!S=')U8W0@ M(')E9W,["B`@("!I;G0@ M+38L(`H@('T["B`@"B$@:6YT"B$@:3,X-E]L:6YU>%]S>7-C86QL7V5X:70H > MPH@ > M("`@8VAA M(')E='9A;#L**BHJ*BHJ*BHJ*BHJ*BHJ"BHJ*B`R,#$L,C$T("HJ*BH*("`@ > M(&EN="!E M9B`H9F0@/3T@+3$@?'P@<&ED("$](&-P:60I('L*(2`@("`@ M=68L("(O<')O8R\E9"]R96=S(BP@<&ED*3L*("`@("`@9F0@/2!O<&5N*&)U > M9BP@3U]21$].3%DI.PH@("`@("!I9B`H9F0@/3T@+3$I('L*(2`@("`@("!F > M<')I;G1F*&]U=&9I;&4L("(M+2!#04Y.3U0@4D5!1"!214=)4U1%4E,@+2U< > M;B(I.PH@("`@("`@(')E='5R;CL*("`@("`@?0HA("`@("!C<&ED(#T@<&ED > M.PH@("`@?0H@(`H@("`@;'-E96LH9F0L(#!,+"`P*3L*+2TM(#(P."PR,C$@ > M+2TM+0H@("`@:6YT(&5R7-C86QL("IS8SL* > M("`*(2`@(&EF("AF9"`]/2`M,2!\?"!T M*2!["B$@("`@('-P M:6YF;RT^<&ED*3L*("`@("`@9F0@/2!O<&5N*&)U9BP@3U]21$].3%DI.PH@ > M("`@("!I9B`H9F0@/3T@+3$I('L*(2`@("`@("!F<')I;G1F*'1R=7-S:6YF > M;RT^;W5T9FEL92P@(BTM($-!3DY/5"!214%$(%)%1TE35$524R`M+5QN(BD[ > M"B`@("`@("`@ M9F\M/G!I9#L*("`@('T*("`*("`@(&QS965K*&9D+"`P3"P@,"D["BHJ*BHJ > M*BHJ*BHJ*BHJ*@HJ*BH@,C0S+#(T.2`J*BHJ"B`@("`@("`@:68@*')E='9A > M;"`]/2!B M("!]"B$@("!P7-C86QL7W)E="AO=71F:6QE+"!L M;'-C+FYA M;'-C*"D["B$@("!R971U M("`@:68@*')E='9A;"`]/2!B M("`@8G)E86L["B`@("!]"B$@("!P7-C86QL7W)E="AT M9F\L(&QS8RYN86UE+"!L M:2D["B`@("!C;&5A M:69F("UC("UR("]U M M+F)I;B]T M+2`O=7-R+W-R8U]#5E,O=7-R+F)I;B]T M-"`Q,SHT.#HR-"`R,#`Q"BHJ*BHJ*BHJ*BHJ*BHJ*@HJ*BH@-3`L.#8@*BHJ > M*@H@("-I;F-L=61E(#QU;FES=&0N:#X*("`C:6YC;'5D92`\ M+F@^"B`@(VEN8VQU9&4@/'-Y'1E M('-E='5P7V%N9%]W86ET*&-H87(@*BHI.PHA(&5X=&5R;B!I;G0@ M=')A8VEN9RAI;G0L(&EN="D["B`@(VEF9&5F(%]?86QP:&%?7PHA(&5X=&5R > M;B!V;VED(&%L<&AA7W-Y M;B!V;VED(&%L<&AA7W-Y M"B`@(VEF9&5F(%]?:3,X-E]?"B$@97AT97)N('9O:60@:3,X-E]S>7-C86QL > M7V5N=')Y*&EN="P@:6YT*3L*(2!E>'1E M97AI="AI;G0L(&EN="D["B$@97AT97)N('9O:60@:3,X-E]L:6YU>%]S>7-C > M86QL7V5N=')Y*&EN="P@:6YT*3L*(2!E>'1E M7W-Y M*B!4:&5S92!S:&]U;&0@ M;VXG="!L:6ME(&AA=FEN9R!G;&]B86QS+`HA("`J(&)U="!T:&ES(&ES('1H > M92!E87-I97-T('=A>2P@ M("`@*B\*+2`*+2!I;G0@<&ED(#T@,#L*+2!I;G0@;F]S:6=S(#T@,#L*+2!& > M24Q%("IO=71F:6QE(#T@ M7!E(&]F(&5X96-U=&%B;&4@*B\* > M("`*("!S=&%T:6,@:6YL:6YE('9O:60*("!U M(&9P M(%LM4UT@6RUO(&9I;&5=("UP('!I9"(L"B$@"2(@("`@("`@=')U M72!;+6\@9FEL95T@8V]M;6%N9"!;87)G M?0H@(`HM+2T@-3`L.#0@+2TM+0H@("-I;F-L=61E(#QU;FES=&0N:#X*("`C > M:6YC;'5D92`\ M:#X**R`C:6YC;'5D92`\ M'1E M.PHA(&5X=&5R;B!I;G0@ M("`C:69D968@7U]A;'!H85]?"B$@97AT97)N('9O:60@86QP:&%? M;%]E;G1R>2AS=')U8W0@=')U M="!A;'!H85]S>7-C86QL7V5X:70H M.PH@("-E;F1I9@H@("-I9F1E9B!?7VDS.#9?7PHA(&5X=&5R;B!V;VED(&DS > M.#9?2AS=')U8W0@=')U M97AT97)N(&EN="!I,S@V7W-Y M("HL(&EN="D["B$@97AT97)N('9O:60@:3,X-E]L:6YU>%]S>7-C86QL7V5N > M=')Y*'-T'1E M.#9?;&EN=7A?&ET*'-T M*3L*("`C96YD:68*("`*("`O*@HA("`J($ET)W,@9&EF9FEC=6QT('1O('!A > M M M.PH@(`H@('-T871I8R!I;FQI;F4@=F]I9`H@('5S86=E*'9O:60I"B`@>PH@ > M("`@9G!R:6YT9BAS=&1E M M M="@Q*3L*("!]"B`@"BHJ*BHJ*BHJ*BHJ*BHJ*@HJ*BH@.3`L.3<@*BHJ*@H@ > M("`J+PH@('-T%]T>7!E7!E.PHA("`@ > M=F]I9"`H*F5N=&5R7W-Y M>&ET7W-Y M(VEF9&5F(%]?86QP:&%?7PH@("`@>R`B1G)E94)31"!%3$8B+"!A;'!H85]S > M>7-C86QL7V5N=')Y+"!A;'!H85]S>7-C86QL7V5X:70@?2P*+2TM(#@X+#DU > M("TM+2T*("`@*B\*("!S=')U8W0@97A?='EP97,@>PH@("`@8VAA M93L*(2`@('9O:60@*"IE;G1E7-C86QL*2AS=')U8W0@=')U M("HL(&EN="D["B$@("!I;G0@*"IE>&ET7W-Y M M86QP:&%?7PH@("`@>R`B1G)E94)31"!%3$8B+"!A;'!H85]S>7-C86QL7V5N > M=')Y+"!A;'!H85]S>7-C86QL7V5X:70@?2P**BHJ*BHJ*BHJ*BHJ*BHJ"BHJ > M*B`Q,3$L,3(S("HJ*BH*("`@*B\*("`*("!S=&%T:6,@ M<&5S("H*(2!S971?971Y<&4H*2!["B`@("!S=')U8W0@97A?='EP97,@*F9U > M;F-S.PH@("`@8VAA7!E6S,R > M73L*("`@(&EN="!F9#L*("`*(2`@('-P M9"]E='EP92(L('!I9"D["B`@("!I9B`H*&9D(#T@;W!E;BAE='EP92P@3U]2 > M1$].3%DI*2`]/2`M,2D@>PH@("`@("!S=')C<'DH<')O9W1Y<&4L(")& M0E-$(&$N;W5T(BD["B`@("!](&5LPHM+2T@,3`Y+#$R,2`M+2TM"B`@ > M("HO"B`@"B`@%]T>7!E7!E > M*'-TPH@("`@ M7W1Y<&5S("IF=6YC M7!E > M+"`B+W!R;V,O)60O971Y<&4B+"!T M*&9D(#T@;W!E;BAE='EP92P@3U]21$].3%DI*2`]/2`M,2D@>PH@("`@("!S > M=')C<'DH<')O9W1Y<&4L(")& M>PHJ*BHJ*BHJ*BHJ*BHJ*BH**BHJ(#$T."PQ-C0@*BHJ*@H@("`@:6YT(&EN > M7V5X96,@/2`P.PH@("`@8VAA M9V5X:70@/2`P.PH@(`HA("`@=VAI;&4@*"AC(#T@9V5T;W!T*&%C+"!A=BP@ > M(G`Z;SI3(BDI("$]("TQ*2!["B`@("`@('-W:71C:"`H8RD@>PH@("`@("!C > M87-E("=P)SH)+RH@ M;VDH;W!T87)G*3L*("`@("`@("!B M(%-P96-I9FEE9"!O=71P=70@9FEL92`J+PH@("`@("`@(&9N86UE(#T@;W!T > M87)G.PH@("`@("`@(&)R96%K.PH@("`@("!C87-E("=3)SH)+RH@1&]N)W0@ > M=')A8V4@ M(&)R96%K.PH@("`@("!D969A=6QT.@H@("`@("`@('5S86=E*"D["BTM+2`Q > M-#8L,3&5C(#T@,#L*("`@(&-H87(@*F9N > M86UE(#T@3E5,3#L*("`@(&EN="!S:6=E>&ET(#T@,#L**R`@('-T MF4@=&AE > M('1R=7-S:6YF;R!S=')U8W0@*B\**R`@(&EF("@H=')U M M9F\I*2D**R`@("`@("`]/2!.54Q,*0HK("`@("!E M*2!F86EL960B*3L**R`@(&)Z97)O*'1R=7-S:6YF;RP@ M="!T M M4R(I*2`A/2`M,2D@>PH@("`@("!S=VET8V@@*&,I('L*("`@("`@8V%S92`G > M<" M9"`](&%T;VDH;W!T87)G*3L*(2`@("`@("!B M9B M9FQA9W,@?#T@1D],3$]71D]22U,["B$@("`@("`@8G)E86L["B$@("`@(&-A > M M M8G)E86L["B$@("`@(&-A M("HO"B$@("`@("`@=')U M5$%-4%,["B`@("`@("`@8G)E86L["B`@("`@(&-A M:69I960@;W5T<'5T(&9I;&4@*B\*("`@("`@("!F;F%M92`](&]P=&%R9SL* > M("`@("`@("!B M('-I9VYA;',@*B\@"B$@("`@("`@=')U M1U,["B`@("`@("`@8G)E86L["B`@("`@(&1E9F%U;'0Z"B`@("`@("`@=7-A > M9V4H*3L**BHJ*BHJ*BHJ*BHJ*BHJ"BHJ*B`Q-C8L,3 M("`*("`@(&%C("T](&]P=&EN9#L@878@*ST@;W!T:6YD.PHA("`@:68@*"AP > M:60@/3T@,"`F)B!A8R`]/2`P*2!\?"`H<&ED("$](#`@)B8@86,@(3T@,"DI > M"B`@("`@('5S86=E*"D["B`@"B`@("!I9B`H9FYA;64@(3T@3E5,3"D@>R`O > M*B!5 M96XH9FYA;64L(")W(BDI(#T]($Y53$PI"B`@("`@("`@97)R>"@Q+"`B8V%N > M;F]T(&]P96X@)7,B+"!F;F%M92D["B`@("!]"B`@"BTM+2`Q.#$L,3DQ("TM > M+2T*("`@('T*("`*("`@(&%C("T](&]P=&EN9#L@878@*ST@;W!T:6YD.PHA > M("`@:68@*"AT M M.PH@(`H@("`@:68@*&9N86UE("$]($Y53$PI('L@+RH@57-E(&]U='!U="!F > M:6QE("HO"B$@("`@(&EF("@H=')U M9FYA;64L(")W(BDI(#T]($Y53$PI"B`@("`@("`@97)R>"@Q+"`B8V%N;F]T > M(&]P96X@)7,B+"!F;F%M92D["B`@("!]"B`@"BHJ*BHJ*BHJ*BHJ*BHJ*@HJ > M*BH@,3@Q+#$X.2`J*BHJ"B`@("`@*B!T:&5N('=E(')E M96YT(&UA M("!I9B`H<&ED(#T](#`I('L)+RH@4W1A M M9%]W86ET*&-O;6UA;F0I.PH@("`@("!S:6=N86PH4TE'24Y4+"!324=?24=. > M*3L*("`@("`@ M86PH4TE'455)5"P@4TE'7TE'3BD["BTM+2`Q.38L,C`T("TM+2T*("`@("`J > M('1H96X@=V4@ M('-I9VYA;',N"B`@("`@*B\*("`*(2`@(&EF("AT M/2`P*2!["2\J(%-T87)T(&$@8V]M;6%N9"!O=7)S96QV97,@*B\*("`@("`@ > M8V]M;6%N9"`](&%V.PHA("`@("!T M*3L*("`@("`@ M86PH4TE'455)5"P@4TE'7TE'3BD["BHJ*BHJ*BHJ*BHJ*BHJ*@HJ*BH@,C`P > M+#(Q.2`J*BHJ"B`@("`@*B!B92!W;VME;B!U<"P@96ET:&5R(&EN(&5X:70H > M*2!O&5C=F4H*2X*("`@("`J+PH@(`HA("`@4')O8V9D(#T@ M M4D4@?"!37T58250@?`HA(`D)("`@("`H;F]S:6=S(#\@,"`Z(%-?4TE'*2D[ > M"B`@("!I9B`H4')O8V9D(#T]("TQ*0H@("`@("!R971U M('!F M("\J"B`@("`@*B!!="!T:&ES('!O:6YT+"!I="=S(&$@ M('=A:71I;F<@9F]R('1H92!P M:6YG(&]U="!W:'DL('!R:6YT:6YG(&]U="!W:'DL(&%N9"!T:&5N(&-O;G1I > M;G5I;F<@:70N"B`@("`@*B!!;&P@;V8@=&AE(&=R=6YT('=O M92!I;B!T:&4@ M>PH@("`@("!I;G0@=F%L(#T@,#L*("`*+2TM(#(Q-2PR,SD@+2TM+0H@("`@ > M("H@8F4@=V]K96X@=7`L(&5I=&AE&ET*"D@;W(@:6X@97AE8W9E > M*"DN"B`@("`@*B\*("`*(2!35$%25%]44D%#13H*(2`@(%!R;V-F9"`]('-T > M87)T7W1R86-I;F M0T4@?"!37U-#6"!\(%-?0T]212!\(%-?15A)5"!\"B$@"0DH*'1R=7-S:6YF > M;RT^9FQA9W,@)B!.3U-)1U,I(#\@,"`Z(%-?4TE'*2P*(2`)"2@H=')U M;F9O+3YF;&%G M("!I9B`H4')O8V9D(#T]("TQ*0H@("`@("!R971U M M+"!F:6YD:6YG(&]U="!W:'DL('!R:6YT:6YG(&]U="!W:'DL(&%N9"!T:&5N > M(&-O;G1I;G5I;F<@:70N"B`@("`@*B!!;&P@;V8@=&AE(&=R=6YT('=O M:7,@9&]N92!I;B!T:&4@ M("`@9V5T=&EM96]F9&%Y*"9T M;"`](#`["B`@"BHJ*BHJ*BHJ*BHJ*BHJ*@HJ*BH@,C(R+#(S,"`J*BHJ"B`@ > M("`@(&5LPH@("`@("`@('-W:71C:"AI(#T@<&9S+G=H>2D@>PH@("`@ > M("`@(&-A7-C86QL*'!I9"P@ > M<&9S+G9A;"D["B`@"6)R96%K.PH@("`@("`@(&-A M"B`@"2`J(%1H:7,@:7,@ M;W(@86X@97AE8R`M+2!O;F4*("`)("H@9F]R('1H92!37T5814,L(&%N9"!O > M;F4@9F]R('1H92!S>7-C86QL(&5X:70N("!)="!A;'-O+`HM+2T@,C0R+#(U > M,R`M+2TM"B`@("`@(&5LPH@("`@("`@('-W:71C:"AI(#T@<&9S+G=H > M>2D@>PH@("`@("`@(&-A7-C > M86QL*'1R=7-S:6YF;RP@<&9S+G9A;"D["B$@"6=E='1I;65O9F1A>2@F=')U > M M8G)E86L["B`@("`@("`@8V%S92!37U-#6#H**R`)9V5T=&EM96]F9&%Y*"9T > M M"B`@"2\J"B`@"2`J(%1H:7,@:7,@ M86=E M(&%N9"!O;F4@9F]R('1H92!S>7-C86QL(&5X:70N("!)="!A;'-O+`HJ*BHJ > M*BHJ*BHJ*BHJ*BH**BHJ(#(S-BPR-C<@*BHJ*@H@(`D@(&EN7V5X96,@/2`P > M.PH@(`D@(&)R96%K.PH@(`E]"B$@"69U;F-S+3YE>&ET7W-Y M+"!P9G,N=F%L*3L*("`)8G)E86L["B`@("`@("`@8V%S92!37U-)1SH*(2`) > M9G!R:6YT9BAO=71F:6QE+"`B4TE'3D%,("5L=5QN(BP@<&9S+G9A;"D["B`@ > M"7-I9V5X:70@/2!P9G,N=F%L.PH@(`EB M15A)5#H*(2`)9G!R:6YT9B`H;W5T9FEL92P@(G!R;V-E M;"`]("5L=5QN(BP@<&9S+G9A;"D["B`@"6)R96%K.PH@("`@("`@(&-A M4U]%6$5#.@HA(`EF=6YC&5C(#T@ > M,3L*("`)8G)E86L["B`@("`@("`@9&5F875L=#H*(2`)9G!R:6YT9B`H;W5T > M9FEL92P@(E!R;V-E M.PH@(`EB M*%!R;V-F9"P@4$E/0T-/3E0L('9A;"D@/3T@+3$I('L*(2`@("`@("!I9B`H > M:VEL;"AP:60L(#`I(#T]("TQ("8F(&5R M:SL*("`@("`@("!E;'-E"B`@"7=A M("`@('T@=VAI;&4@*'!F M=71F:6QE*3L*("`@(&EF("AS:6=E>&ET*2!["B`@("`@(&EF("AS:6=E>&ET > M(#T](%-)1U%5250I"B`@("`@("`@97AI="AS:6=E>&ET*3L*+2TM(#(U.2PS > M,#D@+2TM+0H@(`D@(&EN7V5X96,@/2`P.PH@(`D@(&)R96%K.PH@(`E]"B$@ > M"B$@"6EF("AT M9W,@)B!&3TQ,3U=&3U)+4RDI"B$@"7L*(2`)("!I;G0@8VAI;&1P:60["B$@ > M"B$@("`@("`@("`@('1R=7-S:6YF;RT^:6Y?9F]R:R`](#`["B$@"2`@8VAI > M;&1P:60@/2!F=6YC7-C86QL*'1R=7-S:6YF;RP@<&9S+G9A > M;"D["B$@"B$@"2`@+RH*(2`)("`@*B!&;W)K(&$@;F5W(&-O<'D@;V8@;W5R > M M86P@=')A8V5D('!R;V-E M/2`P*0HA(`D@('L*(2`)("`@('1R=7-S:6YF;RT^<&ED(#T@8VAI;&1P:60[ > M"B$@"2`@("!G;W1O(%-405)47U1204-%.PHA(`D@('T*(2`)("!B M(2`)?0HA(`EF=6YC7-C86QL*'1R=7-S:6YF;RP@<&9S+G9A > M;"D["B`@"6)R96%K.PH@("`@("`@(&-A M=')U M"B`@"7-I9V5X:70@/2!P9G,N=F%L.PH@(`EB M(%-?15A)5#H*(2`)9G!R:6YT9B`H=')U M8V5S&ET+"!R=F%L(#T@)6QU7&XB+"!P9G,N=F%L*3L*("`)8G)E86L[ > M"B`@("`@("`@8V%S92!37T5814,Z"B$@"69U;F-S(#T@7!E*'1R > M=7-S:6YF;RD["B`@"6EN7V5X96,@/2`Q.PH@(`EB M969A=6QT.@HA(`EF<')I;G1F("AT M97-S('-T;W!P960@8F5C875S92!O9CH@("5D7&XB+"!I*3L*("`)8G)E86L[ > M"B`@("`@("`@?0H@("`@("!]"B`@("`@(&EF("AI;V-T;"A0 M3T-#3TY4+"!V86PI(#T]("TQ*2!["B$@("`@("`@:68@*&MI;&PH=')U M;F9O+3YP:60L(#`I(#T]("TQ("8F(&5R M:SL*("`@("`@("!E;'-E"B`@"7=A M("`@('T@=VAI;&4@*'!F M M:68@*'-I9V5X:70@/3T@4TE'455)5"D*("`@("`@("!E>&ET*'-I9V5X:70I > M.PID:69F("UC("UR("]U M=7-R+W-R8U]#5E,O=7-R+F)I;B]T M8R]U M,#`P"BTM+2`O=7-R+W-R8U]#5E,O=7-R+F)I;B]T M;B!&96(@,C8@,C`Z-38Z,#$@,C`P,0HJ*BHJ*BHJ*BHJ*BHJ*BH**BHJ(#$R > M-BPQ,S(@*BHJ*@H@("`J+PH@(`H@(&EN=`HA('-T87)T7W1R86-I;F M('!I9"P@:6YT(&9L86=S*2!["B`@("!I;G0@9F0["B`@("!C:&%R(&)U9ELS > M,ET["B`@("!S=')U8W0@<')O8V9S7W-T871U M("TM+2T*("`@*B\*("`*("!I;G0*(2!S=&%R=%]T M(&EN="!E=F5N=&9L86=S+"!I;G0@9FQA9W,I('L*("`@(&EN="!F9#L*("`@ > M(&-H87(@8G5F6S,R73L*("`@('-T M*BHJ*BHJ*BHJ*BHJ*BHJ"BHJ*B`Q-#DL,34U("HJ*BH*("`@('T*("`@(&5V > M9FQA9W,@/2!T;7`N979E;G1S.PH@(`HA("`@:68@*&EO8W1L*&9D+"!024]# > M0DE3+"!F;&%G M("TM+2T*("`@('T*("`@(&5V9FQA9W,@/2!T;7`N979E;G1S.PH@(`HA("`@ > M:68@*&EO8W1L*&9D+"!024]#0DE3+"!E=F5N=&9L86=S*2`]/2`M,2D*("`@ > M("`@97)R*#DL(")C86YN;W0@ M.PH@(`H@("`@+RH**BHJ*BHJ*BHJ*BHJ*BHJ"BHJ*B`Q-3@L,38T("HJ*BH* > M("`@("`J(&YE961S('1O(&)E('=O:V5N('5P('9I82!P M("HO"B`@"B$@("!I9B`H:6]C=&PH9F0L(%!)3T-31DPL(#`I(#T]("TQ*0H@ > M("`@("!W87)N*")C86YN;W0@8VQE87(@4$9?3$E.1T52(BD["B`@"B`@("!R > M971U M('=O:V5N('5P('9I82!P M=&PH9F0L(%!)3T-31DPL(&9L86=S*2`]/2`M,2D*("`@("`@=V%R;B@B8V%N > M;F]T(&-L96%R(%!&7TQ)3D=%4B(I.PH@(`H@("`@ M("UC("UR("]U M M=7-R+F)I;B]T7-C86QL+F@)4V%T($UA M,#`P"BTM+2`O=7-R+W-R8U]#5E,O=7-R+F)I;B]T7-C86QL+F@) > M4V%T($UA M-#0L-#@@*BHJ*@H@('-T7-C86QL("IG971? M="!C:&%R*BD["B`@8VAA M.PH@(&-H87(@*G!R:6YT7V%R9RAI;G0L('-T7-C86QL7V%R9W,@ > M*BP@=6YS:6=N960@;&]N9RHI.PHA('9O:60@<')I;G1? M("HL(&-O;G-T(&-H87(@*BP@:6YT+"!C:&%R("HJ*3L*(2!V;VED('!R:6YT > M7W-Y M*BHL(&EN="P@:6YT*3L*+2TM(#0T+#0X("TM+2T*("!S=')U8W0@ M;"`J9V5T7W-Y M;F M=')U8W0@ M('!R:6YT7W-Y M("HL(&EN="P@8VAA7-C86QL7W)E="AS > M=')U8W0@=')U M+"!I;G0L(&EN="D["F1I9F8@+6,@+7(@+W5S M7-C86QL M;&QS+F,**BHJ("]U M870@36%R(#$X(#`X.C0Y.C0Q(#(P,#`*+2TM("]U M8FEN+W1R=7-S+W-Y M"BHJ*BHJ*BHJ*BHJ*BHJ*@HJ*BH@-#8L-3,@*BHJ*@HM+2T@-#8L-C`@+2TM > M+0H@("-I;F-L=61E(#QU;FES=&0N:#X*("`C:6YC;'5D92`\ M+F@^"B`@(VEN8VQU9&4@/'-I9VYA;"YH/@HK("-I;F-L=61E(#QS>7,O=&EM > M92YH/@HK(`HK("-I;F-L=61E(")T7-C > M86QL+F@B"B`@"BL@97AT97)N(&EN="!F;VQL;W=F;W)K'1E M:6YT(')E;&%T:79E=&EM97-T86UP'1E M=&EM97-T86UP M(&)E(&EN(&ET M*B`R-30L,C@Q("HJ*BH*("`@*B\*("`*("!V;VED"B$@<')I;G1? M;"A&24Q%("IO=71F:6QE+"!C;VYS="!C:&%R("IN86UE+"!I;G0@;F%R9W,L > M(&-H87(@*BIS7V%R9W,I('L*("`@(&EN="!I.PH@("`@:6YT(&QE;B`](#`[ > M"B$@("!L96X@*ST@9G!R:6YT9BAO=71F:6QE+"`B)7,H(BP@;F%M92D["B`@ > M("!F;W(@*&D@/2`P.R!I(#P@;F%R9W,[(&DK*RD@>PH@("`@("!I9B`H M M('-?87)G M9BAO=71F:6QE+"`B/&UI M/2!F<')I;G1F*&]U=&9I;&4L("(E M(B`Z("(B*3L*("`@('T*(2`@(&QE;B`K/2!F<')I;G1F*&]U=&9I;&4L("(I > M(BD["B`@("!F;W(@*&D@/2`P.R!I(#P@-B`M("AL96X@+R`X*3L@:2LK*0HA > M(`EF<')I;G1F*&]U=&9I;&4L(")<="(I.PH@('T*("`*("!V;VED"B$@<')I > M;G1? M92P@:6YT(&YA M7-C86QL*&]U=&9I;&4L(&YA;64L(&YA > MPHA("`@("!F<')I;G1F > M*&]U=&9I;&4L("(@15)2(R5D(" MPHA("`@("!F<')I;G1F*&]U=&9I;&4L > M("(@/2`E9"`H,'@E>"E<;B(L(')E='9A;"P@ M"BTM+2`R-C$L,S(P("TM+2T*("`@*B\*("`*("!V;VED"B$@<')I;G1? M8V%L;"AS=')U8W0@=')U M*FYA;64L(&EN="!N87)GPH@("`@:6YT(&D[ > M"B`@("!I;G0@;&5N(#T@,#L*(2`*(2`@('-T M:69F.PHA(`HA("`@:68@*'1R=7-S:6YF;RT^9FQA9W,@)B!&3TQ,3U=&3U)+ > M4RD*(2`@("`@;&5N("L](&9P M)35D.B`@(BP@=')U M;F%M92P@(F5X96-V92(I('Q\("%S=')C;7`H;F%M92P@(F5X:70B*2D*(2`@ > M('L*(2`@("`@9V5T=&EM96]F9&%Y*"9T M=6-T('1I;65Z;VYE("HI3E5,3"D["B$@("!]"B$@"B$@("!I9B`H=')U M;F9O+3YF;&%G M=&EM961I9F8N='9? M M+3YS=&%R=%]T:6UE+G1V7W5S96,["B$@("`@(&EF("AT:6UE9&EF9BYT=E]U > M M='9?=7-E8R`K/2`Q,#`P,#`P,#L*(2`*(2`@("`@;&5N("L](&9P M=')U M MPHA("`@ > M("!T:6UE9&EF9BYT=E]S96,@/2!T M('1R=7-S:6YF;RT^8F5F;W)E+G1V7W-E8SL*(2`@("`@=&EM961I9F8N='9? > M=7-E8R`]('1R=7-S:6YF;RT^869T97(N='9?=7-E8R`M('1R=7-S:6YF;RT^ > M8F5F;W)E+G1V7W5S96,["B$@("`@(&EF("AT:6UE9&EF9BYT=E]U M,"D*(2`@("`@("!T:6UE9&EF9BYT=E]S96,M+2P@=&EM961I9F8N='9?=7-E > M8R`K/2`Q,#`P,#`P,#L*(2`*(2`@("`@;&5N("L](&9P M;F9O+3YO=71F:6QE+"`B)60N)3`N-V0@(BP@=&EM961I9F8N='9? M:6UE9&EF9BYT=E]U M*'1R=7-S:6YF;RT^;W5T9FEL92P@(B5S*"(L(&YA;64I.PHA(`H@("`@9F]R > M("AI(#T@,#L@:2`\(&YA M72D*(2`@("`@("!L96X@*ST@9G!R:6YT9BAT M("(E M9G!R:6YT9BAT M=#XB*3L*(2`@("`@;&5N("L](&9P M+"`B)7,B+"!I(#P@*&YA M("!L96X@*ST@9G!R:6YT9BAT M("!F;W(@*&D@/2`P.R!I(#P@-B`M("AL96X@+R`X*3L@:2LK*0HA(`EF<')I > M;G1F*'1R=7-S:6YF;RT^;W5T9FEL92P@(EQT(BD["B`@?0H@(`H@('9O:60* > M(2!P7-C86QL7W)E="AS=')U8W0@=')U M9F\L(&-O;G-T(&-H87(@*FYA;64L(&EN="!N87)G MPHA("`@<')I;G1? M;"AT MPHA("`@("!F<')I;G1F*'1R=7-S:6YF;RT^;W5T9FEL92P@(B!% > M4E(C)60@)R5S)UQN(BP@ M('T@96QS92!["B$@("`@(&9P M(#T@)60@*#!X)7@I7&XB+"!R971V86PL(')E='9A;"D["B`@("!]"B`@?0ID > M:69F("UC("UR("]U M+W-R8U]#5E,O=7-R+F)I;B]T M M"BTM+2`O=7-R+W-R8U]#5E,O=7-R+F)I;B]T M87(@(#0@,3`Z,C8Z,C@@,C`P,0HJ*BHJ*BHJ*BHJ*BHJ*BH**BHJ(#@L,3@@ > M*BHJ*@H@("Y.9"!T7-T96T@8V%L;',*("`N4V@@4UE.3U!325,* > M("`N3FT*(2`N3W`@1FP@4PH@("Y/<"!&;"!O($%R(&9I;&4*("`N1FP@<"!! > M M;VUM86YD"B`@+D]P(&%R9W,*+2TM(#@L,3@@+2TM+0H@("Y.9"!T M>7-T96T@8V%L;',*("`N4V@@4UE.3U!325,*("`N3FT*(2`N3W`@1FP@9F1$ > M4PH@("Y/<"!&;"!O($%R(&9I;&4*("`N1FP@<"!! M3W`@1FP@9F1$4PH@("Y/<"!&;"!O($%R(&9I;&4*("!C;VUM86YD"B`@+D]P > M(&%R9W,**BHJ*BHJ*BHJ*BHJ*BHJ"BHJ*B`R-2PS,"`J*BHJ"BTM+2`R-2PS > M.2`M+2TM"B`@+E!P"B`@5&AE(&]P=&EO;G,@87)E(&%S(&9O;&QO=W,Z"B`@ > M+D)L("UT86<@+7=I9'1H(&EN9&5N=`HK("Y)="!&;"!F"BL@5')A8V4@9&5C > M96YD86YT M9"!B>2!F;W)K*"DL"BL@=F9O M9&4@=&EM97-T86UP M96QA<'-E9`HK('-I;F-E('1H92!T M1FP@1`HK($EN8VQU9&4@=&EM97-T86UP M;F<@=&AE('1I;64@96QA<'-E9`HK('-I;F-E('1H92!L87-T(')E8V]R9&5D > M(&5V96YT+@H@("Y)="!&;"!3"B`@1&\@;F]T(&1I M;VX@86)O=70@2!T:&4@<')O8V5S M3F]R;6%L;'DL"D]N;'D@:6X@+W5S M('1R=7-S+F@*```````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M``````````!T M```````````````````````````````````````````````````````````` > M````````````````````````,3`P-C0T(``@("`W-C0@`"`@("`@,"``("`@ > M("`@(#(R,3`@(# M```````````````````````````````````````````````````````````` > M`````````````````````````````````````````````````````'5S=&%R > M("``=V]O9&IR``````````````````````````````````!W:&5E;``````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M`````````````````````````````````"HJ*B`O=7-R+W-R8R]S>7,O:V5R > M;B]K97)N7V9O M7,O:V5R;B]K97)N7V9O M.C0T.C(W(#(P,#$**BHJ*BHJ*BHJ*BHJ*BHJ"BHJ*B`S-BPT,B`J*BHJ"B`@ > M("H@4U5#2"!$04U!1T4N"B`@("H*("`@*@E`*",I:V5R;E]F;W)K+F,)."XV > M("A"97)K96QE>2D@-"\X+SDT"B$@("H@)$9R965"4T0Z('-R8R]S>7,O:V5R > M;B]K97)N7V9O M92!%>'`@)`H@("`J+PH@(`H@("-I;F-L=61E(")O<'1?:W1R86-E+F@B"BTM > M+2`S-BPT,B`M+2TM"B`@("H@4U5#2"!$04U!1T4N"B`@("H*("`@*@E`*",I > M:V5R;E]F;W)K+F,)."XV("A"97)K96QE>2D@-"\X+SDT"B$@("H@)$9R965" > M4T0Z('-R8R]S>7,O:V5R;B]K97)N7V9O M,C(@,#(Z,3`Z,S,@:FAB($5X<"`D"B`@("HO"B`@"B`@(VEN8VQU9&4@(F]P > M=%]K=')A8V4N:"(**BHJ*BHJ*BHJ*BHJ*BHJ"BHJ*B`U,"PU-2`J*BHJ"BTM > M+2`U,"PU-B`M+2TM"B`@(VEN8VQU9&4@/'-Y M;'5D92`\ M(VEN8VQU9&4@/'-Y M7-C86QL+F@^"B`@(VEN8VQU > M9&4@/'-Y M*BHJ*@HM+2T@-3 M9FQA9R`F(%!?4%!704E4*0H@(`D)='-L965P*'`Q+"!05T%)5"P@(G!P=V%I > M="(L(#`I.PHK(`HK(`DO*@HK(`D@*B!)9B!01E]&3U)+(&ES('-E="P@=&AE > M(&-H:6QD('!R;V-E M;"!F;&%G M<&9S9FQA9W,@)B!01E]&3U)+*0HK(`E["BL@"0EP,BT^<%]S=&]P M+3YP7W-T;W!S.PHK(`D)<#(M/G!?<&9S9FQA9W,@/2!P,2T^<%]P9G-F;&%G > M M=&5R('1O('!A M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M`````````````````````````````````````````'1R=7-S7V9I;&5S+W!I > M;V-T;"YD:69F```````````````````````````````````````````````` > M```````````````````````````````````````````````````````Q,#`V > M-#0@`"`@(# M,30S-#$`(#`````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M````````````````````````=7-T87(@(`!W;V]D:G(````````````````` > M`````````````````'=H965L```````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M````*BHJ("]U7,O<&EO8W1L+F@)4V%T($%U9R`R."`P > M,#HU,3HU-2`Q.3DY"BTM+2`O=7-R+W-R8U]#5E,O M:`E3=6X@36%R("`T(#$S.C0T.C`U(#(P,#$**BHJ*BHJ*BHJ*BHJ*BHJ"BHJ > M*B`W-"PW-R`J*BHJ"BTM+2`W-"PW."`M+2TM"B`@"B`@(R!D969I;F4@4$9? > M3$E.1T52"3!X,#$)+RH@2V5E<"!S=&]P M;&]S92`J+PH@(",@9&5F:6YE(%!&7TE354=)1`DP>#`R"2\J($EG;F]R92!5 > M240O1TE$(&-H86YG97,@*B\**R`C(&1E9FEN92!01E]&3U)+"3!X,#0)+RH@ > M4F5T86EN('-E='1I;F=S(&]N(&9O M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M``````````````````````````!T M```````````````````````````````````````````````````````````` > M````````````````````````````````````````,3`P-C0T(``@("`W-C0@ > M`"`@("`@,"``("`@("`@(#,Q,S,@(# M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M`````````'5S=&%R("``=V]O9&IR```````````````````````````````` > M``!W:&5E;``````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M`````````````````````````````````````````````````"\J"B`J($-O > M<')Y:6=H="`R,#`Q($IA;65Y(%=O;V0*("H*("H@4F5D:7-T M86YD('5S92!I;B!S;W5R8V4@86YD(&)I;F%R>2!F;W)M M:71H;W5T"B`J(&UO9&EF:6-A=&EO;BP@87)E('!E M9"!T:&%T('1H92!F;VQL;W=I;F<@8V]N9&ET:6]N M*B`Q+B!2961I M:6X@=&AE(&%B;W9E(&-O<'ER:6=H=`H@*B`@("!N;W1I8V4L('1H:7,@;&ES > M="!O9B!C;VYD:71I;VYS(&%N9"!T:&4@9F]L;&]W:6YG(&1I M"B`J(#(N(%)E9&ES=')I8G5T:6]N M<')O9'5C92!T:&4@86)O=F4@8V]P>7)I9VAT"B`J("`@(&YO=&EC92P@=&AI > M M:6UE M;6%T97)I86QS('!R;W9I9&5D('=I=&@@=&AE(&1I M("H@5$A)4R!33T945T%212!)4R!04D]6241%1"!"62!42$4@05542$]2($%. > M1"!#3TY44DE"551/4E,@8&!!4R!)4R M4B!)35!,245$(%=!4E)!3E1)15,L($E.0TQ51$E.1RP@0E54($Y/5"!,24U) > M5$5$(%1/+"!42$4*("H@24U03$E%1"!705)204Y42453($]&($U%4D-(04Y4 > M04))3$E462!!3D0@1DE43D534R!&3U(@02!005)424-53$%2(%!54E!/4T4* > M("H@05)%($1)4T-,04E-140N("!)3B!.3R!%5D5.5"!32$%,3"!42$4@0554 > M2$]2($]2($-/3E1224)55$]24R!"12!,24%"3$4*("H@1D]2($%.62!$25)% > M0U0L($E.1$E214-4+"!)3D-)1$5.5$%,+"!34$5#24%,+"!%6$5-4$Q!4EDL > M($]2($-/3E-%455%3E1)04P*("H@1$%-04=%4R`H24Y#3%5$24Y'+"!"550@ > M3D]4($Q)34E4140@5$\L(%!23T-54D5-14Y4($]&(%-50E-425155$4@1T]/ > M1%,*("H@3U(@4T525DE#15,[($Q/4U,@3T8@55-%+"!$051!+"!/4B!04D]& > M2513.R!/4B!"55-)3D534R!)3E1%4E)54%1)3TXI"B`J($A/5T5615(@0T%5 > M4T5$($%.1"!/3B!!3ED@5$A%3U)9($]&($Q)04))3$E462P@5TA%5$A%4B!) > M3B!#3TY44D%#5"P@4U1224-4"B`J($Q)04))3$E462P@3U(@5$]25"`H24Y# > M3%5$24Y'($Y%1TQ)1T5.0T4@3U(@3U1(15)725-%*2!!4DE324Y'($E.($%. > M62!705D*("H@3U54($]&(%1(12!54T4@3T8@5$A)4R!33T945T%212P@159% > M3B!)1B!!1%9)4T5$($]&(%1(12!03U-324))3$E462!/1@H@*B!354-(($1! > M34%'12X*("HO"@HC9&5F:6YE($9/3$Q/5T9/4DM3("`@("`@("`P>#`P,#`P > M,#`Q"B-D969I;F4@4D5,051)5D5424U%4U1!35!3(#!X,#`P,#`P,#(*(V1E > M9FEN92!!0E-/3%54151)34535$%-4%,@,'@P,#`P,#`P-`HC9&5F:6YE($Y/ > M4TE'4R`@("`@("`@("`@("`P>#`P,#`P,#`X"@IS=')U8W0@=')U M"GL*"6EN="!P:60["@EI;G0@9FQA9W,["@EI;G0@:6Y?9F]R:SL*"49)3$4@ > M*F]U=&9I;&4["@H) M="!T:6UE=F%L(&)E9F]R93L*"7-T M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > *```````````````` > ` > end > >Release-Note: > >Audit-Trail: > >Unformatted: > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-bugs" in the body of the message > -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | winter@jurai.net | 2 x '84 Volvo 245DL | ix86,sparc,pmax | | http://www.jurai.net/~winter | This Space For Rent | ISO8802.5 4ever | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 8 1:22:45 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 948F037B719 for ; Thu, 8 Mar 2001 01:21:21 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f289LL857625; Thu, 8 Mar 2001 01:21:21 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A375B37B719 for ; Thu, 8 Mar 2001 01:12:56 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f289Cus56989; Thu, 8 Mar 2001 01:12:56 -0800 (PST) (envelope-from nobody) Message-Id: <200103080912.f289Cus56989@freefall.freebsd.org> Date: Thu, 8 Mar 2001 01:12:56 -0800 (PST) From: davidx@viasoft.com.cn To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/25605: sysctl for enable/disable ctrl+alt+del key Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25605 >Category: kern >Synopsis: sysctl for enable/disable ctrl+alt+del key >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Mar 08 01:20:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: David Xu >Release: FreeBSD 4.3-BETA >Organization: Viasoft >Environment: FreeBSD davidbsd.viasoft.com.cn 4.3-BETA FreeBSD 4.3-BETA #14: Thu Mar 8 16:58: 10 CST 2001 root@davidbsd.viasoft.com.cn:/usr/src/sys/compile/xu i386 >Description: FreeBSD does not let me dynamically enable/disable ctrl+alt+del key. It forces me to re-config and re-compile kernel. I think we must make life easy. the following patch will let root user turn ctrl+alt+del on/off. davidbsd# sysctl -w machdep.disable_halt_key=1 machdep.disable_halt_key: 0 -> 1 davidbsd# after turn machdep.disable_halt_key to 1, press ctrl+alt+del can not reboot machine. >How-To-Repeat: >Fix: patch for /sys/dev/syscons/syscons.c --- syscons.c.orig Thu Mar 8 16:29:37 2001 +++ syscons.c Thu Mar 8 16:57:52 2001 @@ -118,6 +118,10 @@ SYSCTL_INT(_machdep, OID_AUTO, enable_panic_key, CTLFLAG_RW, &enable_panic_key, 0, ""); +static int disable_halt_key; +SYSCTL_INT(_machdep, OID_AUTO, disable_halt_key, CTLFLAG_RW, &disable_halt_key, + 0, ""); + #define SC_CONSOLECTL 255 #define VIRTUAL_TTY(sc, x) (SC_DEV((sc), (x))->si_tty) @@ -3100,21 +3104,18 @@ break; case RBT: -#ifndef SC_DISABLE_REBOOT - shutdown_nice(0); -#endif + if (!disable_halt_key) + shutdown_nice(0); break; case HALT: -#ifndef SC_DISABLE_REBOOT - shutdown_nice(RB_HALT); -#endif + if (!disable_halt_key) + shutdown_nice(RB_HALT); break; case PDWN: -#ifndef SC_DISABLE_REBOOT - shutdown_nice(RB_HALT|RB_POWEROFF); -#endif + if (!disable_halt_key) + shutdown_nice(RB_HALT|RB_POWEROFF); break; #if NAPM > 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 Thu Mar 8 3: 4:16 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from ringworld.nanolink.com (ringworld.nanolink.com [195.24.48.13]) by hub.freebsd.org (Postfix) with SMTP id BEA9237B718 for ; Thu, 8 Mar 2001 03:04:12 -0800 (PST) (envelope-from roam@orbitel.bg) Received: (qmail 77034 invoked by uid 1000); 7 Mar 2001 14:39:41 -0000 Date: Wed, 7 Mar 2001 16:39:41 +0200 From: Peter Pentchev To: Christoph Sold Cc: freebsd-bugs@FreeBSD.org Subject: Re: kern/25569: /etc/rc.firewall mentions an old book/ISBN [Patch included, comment only] Message-ID: <20010307163941.F14620@ringworld.oblivion.bg> Mail-Followup-To: Christoph Sold , freebsd-bugs@FreeBSD.org References: <200103071430.f27EU3X88638@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200103071430.f27EU3X88638@freefall.freebsd.org>; from so@server.i-clue.de on Wed, Mar 07, 2001 at 06:30:03AM -0800 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Mar 07, 2001 at 06:30:03AM -0800, Christoph Sold wrote: > The following reply was made to PR kern/25569; it has been noted by GNATS. > > From: Christoph Sold > To: freebsd-gnats-submit@FreeBSD.org, so@i-clue.de > Cc: > Subject: Re: kern/25569: /etc/rc.firewall mentions an old book/ISBN [Patch > included, comment only] > Date: Wed, 07 Mar 2001 15:26:37 +0100 > > > State-Changed-Why: > > This was reported in PR 24652 and committed last month by des. > > Thanks anyway though. > > I disagree, a quick check in the cvsweb interface shows this change is > in -current only. It needs to be MFC'd ASAP to go into 4.3-Release. Please take a look at rev. 1.30.2.8, committed by des on 2001/02/25. http://www.FreeBSD.org/cgi/cvsweb.cgi/src/etc/rc.firewall.diff?r1=1.30.2.7&r2=1.30.3.8 G'luck, Peter -- .siht ekil ti gnidaer eb d'uoy ,werbeH ni erew ecnetnes siht fI To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 8 4:40:10 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2149637B719 for ; Thu, 8 Mar 2001 04:40:06 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f28Ce6o88949; Thu, 8 Mar 2001 04:40:06 -0800 (PST) (envelope-from gnats) Date: Thu, 8 Mar 2001 04:40:06 -0800 (PST) Message-Id: <200103081240.f28Ce6o88949@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: bin/25598: patch to let ftpd output message when changing directory Reply-To: Peter Pentchev Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/25598; it has been noted by GNATS. From: Peter Pentchev To: bdluevel@heitec.net Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: bin/25598: patch to let ftpd output message when changing directory Date: Thu, 8 Mar 2001 14:33:46 +0200 On Thu, Mar 08, 2001 at 03:08:58AM +0100, bdluevel@heitec.net wrote: > > >Number: 25598 > >Category: bin > >Synopsis: patch to let ftpd output message when changing directory > >Originator: Bernd Luevelsmeyer > >Release: FreeBSD 4.3-BETA i386 > >Organization: > >Environment: > System: FreeBSD 4.3-BETA #0: Wed Mar 7 04:44:56 CET 2001 > > >Description: > The patch lets the FTP daemon (after a successful 'cwd' command) > look for a file '.message' in the current directory and, if > readable, send the contents to the client, preceding the > "250 CWD successful." message. The intent is to let > the FTP site admin announce directory descriptions, copyright > notices or the like. [snip the patch itself] Hmm I wonder if this should not stat() the file beforehand, to make sure it's a regular file; otherwise, problems might arise with a local user creating a FIFO or something, and then pointing a couple of clients there.. or just letting the FIFO lie dormant until some unsuspecting soul connects and CWD's :) Of course, then there's the issue of a race condition between a stat() and the actual opening.. this might be resolved with a fstat(fileno(fp)) right after the fopen(), before the first read from the file. Or should FIFO's be considered an issue at all? I believe yes, since something similar has been done to inetd recently.. G'luck, Peter -- Nostalgia ain't what it used to be. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 8 5: 0: 8 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7DCA737B718 for ; Thu, 8 Mar 2001 05:00:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f28D03Z91300; Thu, 8 Mar 2001 05:00:03 -0800 (PST) (envelope-from gnats) Date: Thu, 8 Mar 2001 05:00:03 -0800 (PST) Message-Id: <200103081300.f28D03Z91300@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Vlad Manilici Subject: Re: bin/5732: 2.2.5 Won't install using partition created by OS/2 Fdisk. LBA mode is turn on. Reply-To: Vlad Manilici Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/5732; it has been noted by GNATS. From: Vlad Manilici To: freebsd-gnats-submit@FreeBSD.org, rafael@pyramid.com Cc: Subject: Re: bin/5732: 2.2.5 Won't install using partition created by OS/2 Fdisk. LBA mode is turn on. Date: Thu, 08 Mar 2001 13:50:01 +0100 Hi, A firend of mine was hit by the same problem, as he tried to install on a partition of FreeBSD type, created with Linux, on his primay IDE HD. The sollution was to delete and recreate the partition with the FreeBSD partition table editor, while installing. I am not sure if this has anything to do with hardware settings, but with the fact that the partition *was already there*. :>lad To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 8 5: 0:13 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8BED637B71A for ; Thu, 8 Mar 2001 05:00:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f28D05J91305; Thu, 8 Mar 2001 05:00:05 -0800 (PST) (envelope-from gnats) Date: Thu, 8 Mar 2001 05:00:05 -0800 (PST) Message-Id: <200103081300.f28D05J91305@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Vlad Manilici Subject: Re: bin/5732: 2.2.5 Won't install using partition created by OS/2 Fdisk. LBA mode is turn on. Reply-To: Vlad Manilici Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/5732; it has been noted by GNATS. From: Vlad Manilici To: freebsd-gnats-submit@FreeBSD.org, rafael@pyramid.com Cc: Subject: Re: bin/5732: 2.2.5 Won't install using partition created by OS/2 Fdisk. LBA mode is turn on. Date: Thu, 08 Mar 2001 13:59:36 +0100 Hi, A firend of mine was hit by the same problem, as he tried to install on a partition of FreeBSD type, created with Linux, on his primay IDE HD. The sollution was to delete and recreate the partition with the FreeBSD partition table editor, while installing. I am not sure if this has anything to do with hardware settings, but with the fact that the partition *was already there*. :>lad To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 8 6:20:23 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5A6D537B71B for ; Thu, 8 Mar 2001 06:20:07 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f28EK7A04370; Thu, 8 Mar 2001 06:20:07 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A2EDE37B719 for ; Thu, 8 Mar 2001 06:11:59 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f28EBxB03476; Thu, 8 Mar 2001 06:11:59 -0800 (PST) (envelope-from nobody) Message-Id: <200103081411.f28EBxB03476@freefall.freebsd.org> Date: Thu, 8 Mar 2001 06:11:59 -0800 (PST) From: nunes@corp.terra.com.br To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/25608: ATA CD-ROM is not recognized on IBM Netfinity 5000 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25608 >Category: kern >Synopsis: ATA CD-ROM is not recognized on IBM Netfinity 5000 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Mar 08 06:20:04 PST 2001 >Closed-Date: >Last-Modified: >Originator: Alessandro Nunes >Release: 4.2-RELEASE >Organization: Terra Networks Brasil >Environment: FreeBSD cacimba.terra.com.br 4.2-RELEASE FreeBSD 4.2-RELEASE #0: Wed Mar 7 17:34:30 BRT 2001 root@cacimba.terra.com.br:/usr/src/sys/compile/TERRA i386 >Description: I didn't get install FreeBSD with CD-ROM. The system restarted when the installation attempted to read the CD. I've made a FTP install and the system is running, but the CD drive doesn't work (see "mount /cdrom" below). Strange messages appear when the system try to recognize "ata0" on boot (see "dmesg.boot" below). In BIOS setup the CDROM is in master mode with "autoconfigure" and PIO3. I don't think that is a CD drive failure because I can make a CD boot using "RELEASE-4.2" cd and I have another Netfinity 5000 ("RELEASE-4.2") with the same problem to recognize CDROM. Unsuccessful attempts to solve the problem: * recompile the kernel with the patch describe in PR "kern/25370". It doesn't work. * change PIO3 to PIO4 in BIOS. There's no option in BIOS to change PIO. * modify sysctl "hw.atamodes" variable. I didn't find documentation about "hw.atamodes" variable (man don't describe it). So I don't do it. parts of "/var/run/dmesg.boot" ============================== Please tell me if you need all "dmesg.boot". Copyright (c) 1992-2000 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.2-RELEASE #0: Wed Mar 7 17:34:30 BRT 2001 root@cacimba.terra.com.br:/usr/src/sys/compile/TERRA Timecounter "i8254" frequency 1193182 Hz CPU: Pentium III/Pentium III Xeon/Celeron (598.40-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x673 Stepping = 3 Features=0x383fbff real memory = 1073725440 (1048560K bytes) avail memory = 1042747392 (1018308K bytes) Programming 24 pins in IOAPIC #0 IOAPIC #0 intpin 2 -> irq 0 FreeBSD/SMP: Multiprocessor motherboard cpu0 (BSP): apic id: 1, version: 0x00040011, at 0xfee00000 cpu1 (AP): apic id: 0, version: 0x00040011, at 0xfee00000 io0 (APIC): apic id: 14, version: 0x00170011, at 0xfec00000 Preloaded elf kernel "kernel" at 0xc030f000. ... fxp0: port 0x2000-0x201f mem 0xfea00000-0xfeafffff,0xfebff000-0xfebfffff irq 11 at device 1.0 on pci0 fxp0: Ethernet address 00:04:ac:33:e6:f7 ahc0: port 0x2200-0x22ff mem 0xfebfe000-0xfebfefff irq 15 at device 6.0 on pci0 aic7895C: Wide Channel A, SCSI Id=7, 32/255 SCBs ahc1: port 0x2300-0x23ff mem 0xfebfd000-0xfebfdfff irq 10 at device 6.1 on pci0 aic7895C: Wide Channel B, SCSI Id=7, 32/255 SCBs ... atapci0: port 0xffa0-0xffaf,0-0x3,0-0x7,0x3f4-0x3f7,0x1f0-0x1f7 irq 10 at device 15.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ... SMP: AP CPU #1 Launched! (null): MODE_SENSE_BIG command timeout - resetting ata0: resetting devices .. done (null): read data overrun 2/0 (null): read data overrun 2/0 (null): read data overrun 2/0 (null): read data overrun 2/0 (null): read data overrun 2/0 (null): read data overrun 2/0 (null): read data overrun 2/0 (null): read data overrun 2/0 (null): read data overrun 2/0 (null): read data overrun 2/0 (null): read data overrun 2/0 (null): read data overrun 2/0 (null): read data overrun 2/0 acd0: CDROM at ata0-master using PIO4 Waiting 15 seconds for SCSI devices to settle ... mount /cdrom ============ Command "mount /cdrom" doesn't return a prompt and hangs the system. Below are messages in "/var/log/messages": Mar 8 09:30:01 cacimba /kernel: acd0: READ_TOC command timeout - resetting Mar 8 09:30:01 cacimba /kernel: ata0: resetting devices .. ata0-master: timeout waiting for command=ef s=00 e=64 Mar 8 09:30:01 cacimba /kernel: done Mar 8 09:30:01 cacimba /kernel: acd0: read data overrun 12/0 Mar 8 09:30:32 cacimba /kernel: acd0: READ_TOC command timeout - resetting Mar 8 09:30:32 cacimba /kernel: ata0: resetting devices .. ata0-master: timeout waiting for command=ef s=00 e=64 Mar 8 09:30:32 cacimba /kernel: done Mar 8 09:30:32 cacimba /kernel: acd0: read data overrun 12/0 Mar 8 09:31:03 cacimba /kernel: acd0: READ_BIG command timeout - resetting Mar 8 09:31:03 cacimba /kernel: ata0: resetting devices .. ata0-master: timeout waiting for command=ef s=00 e=64 Mar 8 09:31:03 cacimba /kernel: done Mar 8 09:31:33 cacimba /kernel: acd0: READ_BIG command timeout - resetting Mar 8 09:31:33 cacimba /kernel: ata0: resetting devices .. ata0-master: timeout waiting for command=ef s=00 e=64 Mar 8 09:31:33 cacimba /kernel: done >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 8 6:50: 5 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3F58B37B71A for ; Thu, 8 Mar 2001 06:50:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f28Eo4Y25700; Thu, 8 Mar 2001 06:50:04 -0800 (PST) (envelope-from gnats) Date: Thu, 8 Mar 2001 06:50:04 -0800 (PST) Message-Id: <200103081450.f28Eo4Y25700@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: dpelleg+bsd@cs.cmu.edu Subject: Re: kern/25566: [PATCH] Missing PCI Id's for DLink DFE-538TX ethernet card Reply-To: dpelleg+bsd@cs.cmu.edu Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/25566; it has been noted by GNATS. From: dpelleg+bsd@cs.cmu.edu To: undisclosed-recipients:; Cc: Subject: Re: kern/25566: [PATCH] Missing PCI Id's for DLink DFE-538TX ethernet card Date: Thu, 8 Mar 2001 9:45:06 EST I used essentialy the same patch for a DLink DFE-530TX+ I bought recently. It wouldn't otherwise recognize (on 4.3-BETA). I just MFC-ed the changes to the same files made at Feb 21 20:54:21 2001 UTC. The IDs are the same, just the string isn't. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 8 8: 0: 8 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BF3FD37B719 for ; Thu, 8 Mar 2001 08:00:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f28G03u08817; Thu, 8 Mar 2001 08:00:03 -0800 (PST) (envelope-from gnats) Date: Thu, 8 Mar 2001 08:00:03 -0800 (PST) Message-Id: <200103081600.f28G03u08817@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ian Dowse Subject: Re: i386/25603: mmap + fork = panic: vm_object_deallocate: object deallocated too may times: 0 Reply-To: Ian Dowse Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/25603; it has been noted by GNATS. From: Ian Dowse To: nis@pc3.geta.hatoyama.hitachi.co.jp Cc: FreeBSD-gnats-submit@freebsd.org, dillon@freebsd.org, iedowse@maths.tcd.ie Subject: Re: i386/25603: mmap + fork = panic: vm_object_deallocate: object deallocated too may times: 0 Date: Thu, 08 Mar 2001 15:54:13 +0000 In message <200103080633.f286XnB02074@pc3.geta.hatoyama.hitachi.co.jp>, Shingo Nishioka writes: > > The code blow causes a "panic: vm_object_deallocate: object deallocated > too may times: 0" The following patch seems to solve this problem, though I have no idea whether or not it is correct, and I've only done minimal testing. It seems that when a shadow object is created in vmspace_fork(), only one of the two object references gets transferred to the shadow object. Matt? Anyone? Ian Index: vm_map.c =================================================================== RCS file: /dump/FreeBSD-CVS/src/sys/vm/vm_map.c,v retrieving revision 1.194 diff -u -r1.194 vm_map.c --- vm_map.c 2001/02/04 06:19:28 1.194 +++ vm_map.c 2001/03/08 15:47:42 @@ -2155,6 +2155,10 @@ &old_entry->offset, atop(old_entry->end - old_entry->start)); old_entry->eflags &= ~MAP_ENTRY_NEEDS_COPY; + /* Transfer the original reference too. */ + vm_object_reference( + old_entry->object.vm_object); + vm_object_deallocate(object); object = old_entry->object.vm_object; } vm_object_clear_flag(object, OBJ_ONEMAPPING); To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 8 8:10:15 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from peorth.iteration.net (peorth.iteration.net [208.190.180.178]) by hub.freebsd.org (Postfix) with ESMTP id F37CB37B719; Thu, 8 Mar 2001 08:10:12 -0800 (PST) (envelope-from keichii@peorth.iteration.net) Received: by peorth.iteration.net (Postfix, from userid 1001) id 209DA595A4; Thu, 8 Mar 2001 10:10:12 -0600 (CST) Date: Thu, 8 Mar 2001 10:10:12 -0600 From: "Michael C . Wu" To: "Andrey A. Chernov" Cc: peter@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: conf/25495: missing et_EE.ISO_8859-15 locale Message-ID: <20010308101011.A17761@peorth.iteration.net> Reply-To: "Michael C . Wu" Mail-Followup-To: "Michael C . Wu" , "Andrey A. Chernov" , peter@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG References: <200103072248.f27Mm5n64002@freefall.freebsd.org> <20010308015506.A56834@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Mutt/1.2.5i In-Reply-To: <20010308015506.A56834@nagual.pp.ru>; from ache@nagual.pp.ru on Thu, Mar 08, 2001 at 01:55:06AM +0300 X-PGP-Fingerprint: 5025 F691 F943 8128 48A8 5025 77CE 29C5 8FA1 2E20 X-PGP-Key-ID: 0x8FA12E20 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Mar 08, 2001 at 01:55:06AM +0300, Andrey A. Chernov scribbled: | On Wed, Mar 07, 2001 at 14:48:05 -0800, keichii@FreeBSD.ORG wrote: | > Synopsis: missing et_EE.ISO_8859-15 locale | >=20 | > Responsible-Changed-From-To: freebsd-bugs->keichii | > Responsible-Changed-By: keichii | > Responsible-Changed-When: Wed Mar 7 14:46:31 PST 2001 | > Responsible-Changed-Why:=20 | > I will take care of thisl.=08=08=08 |=20 | Before anybody start to care: Peter promise to repo copy *DIS*15 files to | *ISO*15 files, this is real showstopper at this moment. So, should I add this locale in after it gets reviewed by my mentor? Or should I wait until Peter does the repo-copy? --=20 +-----------------------------------------------------------+ | keichii@iteration.net | keichii@freebsd.org | | http://iteration.net/~keichii | Yes, BSD is a conspiracy. | +-----------------------------------------------------------+ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 8 12:40: 9 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 981CB37B718 for ; Thu, 8 Mar 2001 12:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f28Ke1i53098; Thu, 8 Mar 2001 12:40:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 78E3337B71B for ; Thu, 8 Mar 2001 12:35:21 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f28KZLi52527; Thu, 8 Mar 2001 12:35:21 -0800 (PST) (envelope-from nobody) Message-Id: <200103082035.f28KZLi52527@freefall.freebsd.org> Date: Thu, 8 Mar 2001 12:35:21 -0800 (PST) From: albowicz@cs.ucr.edu To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/25617: aio_read crashes system. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25617 >Category: kern >Synopsis: aio_read crashes system. >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Mar 08 12:40:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Joe Albowicz >Release: 4.2-STABLE >Organization: >Environment: FreeBSD cd8.corp124.com 4.2-STABLE FreeBSD 4.2-STABLE #2: Wed Feb 7 19:13:39 PST 2001 nigelc@cd14.corp124.com:/usr/src/sys/compile/CDs-BSD-STABLE i386 >Description: Issuing two aio_reads for 131K blocks on a raw scsi device crashes the system. Other block sizes do not crash the system. Also using a normal file (e.g. "/tmp/foo.txt") does not crash the system. >How-To-Repeat: Run this program. as "a.out /dev/rda2" #include #include #include #include #include #include #include #include void do_aio_stuff(char * fname, int sector_size, int num_aiocbs) { char buffs[num_aiocbs * sector_size]; int fh = open(fname, O_RDONLY); assert(fh >= 0); aiocb iocbs[num_aiocbs]; int cb_index; memset(iocbs, '\0', sizeof(aiocb) * num_aiocbs); for(cb_index = 0; cb_index < 2; cb_index++) { off_t pos = (long long) cb_index * sector_size +16384; iocbs[cb_index].aio_fildes = fh; iocbs[cb_index].aio_offset = pos; iocbs[cb_index].aio_buf = &buffs[cb_index*sector_size]; iocbs[cb_index].aio_nbytes = sector_size; int ret_val = aio_read(&iocbs[cb_index]); if(ret_val == -1) { printf("aio_read error == %s\n", strerror(errno)); exit(0); } } printf("Going to sleep\n"); sleep(5); close(fh); } int main(int argc, char * argv[]) { char partition_name[1000]; strcpy(partition_name, argv[1]); //int ss = 16384; // WORKS!! int ss = 131072; //int ss = 262144; // WORKS!! do_aio_stuff(partition_name, ss, 10); return 0; } >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 8 14:22:59 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1A69B37B718; Thu, 8 Mar 2001 14:22:58 -0800 (PST) (envelope-from dwmalone@FreeBSD.org) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f28MMwa67541; Thu, 8 Mar 2001 14:22:58 -0800 (PST) (envelope-from dwmalone) Date: Thu, 8 Mar 2001 14:22:58 -0800 (PST) From: Message-Id: <200103082222.f28MMwa67541@freefall.freebsd.org> To: dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org, alc@FreeBSD.org Subject: Re: kern/25617: aio_read crashes system. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: aio_read crashes system. Responsible-Changed-From-To: freebsd-bugs->alc Responsible-Changed-By: dwmalone Responsible-Changed-When: Thu Mar 8 14:22:19 PST 2001 Responsible-Changed-Why: Alan has been looking at aio stuff recently (and less recently too! ;-) http://www.freebsd.org/cgi/query-pr.cgi?pr=25617 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 8 16:25: 7 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from dbmail.c.oka-pu.ac.jp (dbmail.c.oka-pu.ac.jp [163.225.213.85]) by hub.freebsd.org (Postfix) with ESMTP id 3D3D337B718 for ; Thu, 8 Mar 2001 16:25:03 -0800 (PST) (envelope-from kunishi@c.oka-pu.ac.jp) Received: from localhost (psi.c.oka-pu.ac.jp [163.225.213.86]) by dbmail.c.oka-pu.ac.jp (8.9.3+3.2W/3.7W:dblab:200005021159) with ESMTP id JAA16203 for ; Fri, 9 Mar 2001 09:37:06 +0900 (JST) From: kunishi@c.oka-pu.ac.jp Date: Fri, 09 Mar 2001 09:25:38 +0900 (JST) Message-Id: <20010309.092538.129302878.kunishi@c.oka-pu.ac.jp> To: freebsd-bugs@FreeBSD.ORG Subject: update ports: graphics/enfle 20010130 Reply-To: kunishi@c.oka-pu.ac.jp X-Mailer: Mew version 1.95b112 on Emacs 21.0 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Submitter-Id: current-users >Originator: KUNISHIMA Takeo >Organization: >Confidential: no >Synopsis: update ports: graphics/enfle 20010130 >Severity: non-critical >Priority: medium >Category: ports >Release: FreeBSD 4.2-STABLE i386 >Class: change-request >Environment: >Description: ports update for Enfle (graphics/enfle) 20010130. In addition, LIB_DEPENDS to libarch (archivers/libarc) was added because GNU configure in Enfle package automatically detects whether libarch is installed. >How-To-Repeat: >Fix: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/graphics/enfle/Makefile,v retrieving revision 1.21 diff -u -r1.21 Makefile --- Makefile 2000/12/11 03:08:18 1.21 +++ Makefile 2001/03/08 10:14:49 @@ -6,7 +6,7 @@ # PORTNAME= enfle -PORTVERSION= 20001011 +PORTVERSION= 20010130 CATEGORIES= graphics MASTER_SITES= http://enfle.fennel.org/ \ http://www3.big.or.jp/~sian/linux/products/enfle/ \ @@ -16,7 +16,8 @@ LIB_DEPENDS= png.4:${PORTSDIR}/graphics/png \ jpeg.9:${PORTSDIR}/graphics/jpeg \ - bz2.1:${PORTSDIR}/archivers/bzip2 + bz2.1:${PORTSDIR}/archivers/bzip2 \ + arc.1:${PORTSDIR}/archivers/libarc USE_BZIP2= yes USE_X_PREFIX= yes Index: distinfo =================================================================== RCS file: /home/ncvs/ports/graphics/enfle/distinfo,v retrieving revision 1.17 diff -u -r1.17 distinfo --- distinfo 2000/12/11 03:08:18 1.17 +++ distinfo 2001/03/08 10:06:32 @@ -1 +1 @@ -MD5 (enfle-20001011.tar.bz2) = 9f34dfeb2a7384f30071b02dbbddabd5 +MD5 (enfle-20010130.tar.bz2) = b9095756d7d7e7294686750c47d334ed Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/graphics/enfle/pkg-plist,v retrieving revision 1.8 diff -u -r1.8 pkg-plist --- pkg-plist 2000/12/11 03:08:18 1.8 +++ pkg-plist 2001/03/08 10:15:59 @@ -3,6 +3,7 @@ lib/enfle/plugins/archiver/archiver_dri.so lib/enfle/plugins/archiver/archiver_exe.so lib/enfle/plugins/archiver/archiver_gz.so +lib/enfle/plugins/archiver/archiver_libarc.so lib/enfle/plugins/archiver/archiver_misc.so lib/enfle/plugins/archiver/archiver_one.so lib/enfle/plugins/archiver/archiver_pak.so To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 8 16:48:28 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 77A7B37B718; Thu, 8 Mar 2001 16:48:25 -0800 (PST) (envelope-from des@FreeBSD.org) Received: (from des@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f290mOC87881; Thu, 8 Mar 2001 16:48:24 -0800 (PST) (envelope-from des) Date: Thu, 8 Mar 2001 16:48:24 -0800 (PST) From: Message-Id: <200103090048.f290mOC87881@freefall.freebsd.org> To: andre.albsmeier@mchp.siemens.de, des@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: conf/25570: savecore complains: warning: /var/run/dev.db: No such file or directory Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: savecore complains: warning: /var/run/dev.db: No such file or directory State-Changed-From-To: open->closed State-Changed-By: des State-Changed-When: Thu Mar 8 16:48:09 PST 2001 State-Changed-Why: Fixed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=25570 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 8 17:50: 6 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8CE7837B718 for ; Thu, 8 Mar 2001 17:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f291o1E95055; Thu, 8 Mar 2001 17:50:01 -0800 (PST) (envelope-from gnats) Received: from h33.erkki.ton.tut.fi (h33.erkki.ton.tut.fi [193.166.84.86]) by hub.freebsd.org (Postfix) with ESMTP id 69D3C37B71C for ; Thu, 8 Mar 2001 17:49:40 -0800 (PST) (envelope-from chu@h33.erkki.ton.tut.fi) Received: (from chu@localhost) by h33.erkki.ton.tut.fi (8.11.2/8.11.2) id f291mNI01366; Fri, 9 Mar 2001 03:48:23 +0200 (EET) (envelope-from chu) Message-Id: <200103090148.f291mNI01366@h33.erkki.ton.tut.fi> Date: Fri, 9 Mar 2001 03:48:23 +0200 (EET) From: Vladimir Tchoukharev Reply-To: chu@h33.erkki.ton.tut.fi To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/25620: tar does not handle existing large minor numbers Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25620 >Category: bin >Synopsis: tar does not handle existing large minor numbers >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Mar 08 17:50:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Vladimir Tchoukharev >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: # uname -a FreeBSD h33.erkki.ton.tut.fi 4.2-STABLE FreeBSD 4.2-STABLE #0: Fri Mar 9 01:39:06 EET 2001 root @:/usr/obj/usr/src/sys/H33 i386 >Description: While making a copy of root fs by means of tar, I received: tar: dev/sa0.ctl: minor number too large; not dumped >How-To-Repeat: # ls -l /dev/sa0.ctl crw-rw---- 2 root wheel 14, 0x20000000 8 ÆÅ× 23:31 /dev/sa0.ctl # tar -cf - -C /dev/ . > /dev/null tar: sa0.ctl: minor number too large; not dumped >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 9 0:20: 7 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 92DA937B718 for ; Fri, 9 Mar 2001 00:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f298K2N58197; Fri, 9 Mar 2001 00:20:02 -0800 (PST) (envelope-from gnats) Date: Fri, 9 Mar 2001 00:20:02 -0800 (PST) Message-Id: <200103090820.f298K2N58197@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Bernd Luevelsmeyer Subject: Re: bin/25598: patch to let ftpd output message when changing directory Reply-To: Bernd Luevelsmeyer Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/25598; it has been noted by GNATS. From: Bernd Luevelsmeyer To: Peter Pentchev Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: bin/25598: patch to let ftpd output message when changing directory Date: Fri, 09 Mar 2001 09:10:14 +0100 Peter Pentchev wrote: > > On Thu, Mar 08, 2001 at 03:08:58AM +0100, bdluevel@heitec.net wrote: [...] > > >Description: > > The patch lets the FTP daemon (after a successful 'cwd' command) > > look for a file '.message' in the current directory and, if > > readable, send the contents to the client, preceding the > > "250 CWD successful." message. The intent is to let > > the FTP site admin announce directory descriptions, copyright > > notices or the like. > [snip the patch itself] > > Hmm I wonder if this should not stat() the file beforehand, to make > sure it's a regular file; otherwise, problems might arise with a local > user creating a FIFO or something, and then pointing a couple of clients > there.. or just letting the FIFO lie dormant until some unsuspecting > soul connects and CWD's :) You are right, of course. Thanks for wording it so politely :-) There's also the issue of uploads, e.g. in public upload directories; someone might create a directory (or find one without a .message) and put a megabyte of whatever there, called '.message' . > Of course, then there's the issue of a race condition between a stat() > and the actual opening.. this might be resolved with a fstat(fileno(fp)) > right after the fopen(), before the first read from the file. I think that's the way to go. To care for unwanted 3rd-party-.messages, one might perhaps check that it's owned by root, or owned by the directory owner? Not world-writeable? And limit the output to max. 20 lines of max. 50 characters each, filtered to printable ASCII (checked with isprint())? > Or should FIFO's be considered an issue at all? I believe yes, since > something similar has been done to inetd recently.. It is certainly an issue. I'm afraid I didn't consider this topic at all. I'll implement the fstat() and a size limitation and/or other sanity checks, and re-submit the patch. I suggest that this ill-conceived PR should be closed. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 9 1:30:10 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 856AC37B71A for ; Fri, 9 Mar 2001 01:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f299U1B70464; Fri, 9 Mar 2001 01:30:01 -0800 (PST) (envelope-from gnats) Received: from jhs.muc.de (jhs.muc.de [193.149.49.84]) by hub.freebsd.org (Postfix) with ESMTP id 4317837B71A for ; Fri, 9 Mar 2001 01:28:48 -0800 (PST) (envelope-from jhs@jhs.muc.de) Received: (from jhs@localhost) by jhs.muc.de (8.11.0/8.11.0) id f28G4s419991; Thu, 8 Mar 2001 16:04:54 GMT (envelope-from jhs) Message-Id: <200103081604.f28G4s419991@jhs.muc.de> Date: Thu, 8 Mar 2001 16:04:54 GMT From: jhs@freebsd.org Reply-To: jhs@jhs.muc.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/25627: Cannot append hash after .elif in Makefile, (but can after .if) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25627 >Category: bin >Synopsis: Cannot append hash after .elif in Makefile, (but can after .if) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Mar 09 01:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Julian Stacey jhs@jhs.muc.de >Release: FreeBSD 4.2-RELEASE i386 >Organization: FreeBSD >Environment: `man make` says: Comments begin with a hash (`#') character, anywhere but in a shell com- mand line, and continue to the end of the line. To understand a complex Makefile like /usr/src/release/Makefile with nested .if .endif conditionals, it is useful to hang "#{" & "#}" at end of lines & use the "%" key in vi to bounce between matching braces. This fails on .elif >Description: The expansion of .elif uses everything up to '\n' & allows no '#' comment delimeter as available to simpler .if & .else & .endif commands. >How-To-Repeat: mkdir ~/tmp ; cd ~/tmp ; cat > Makefile << EOF break: .if defined(AA) #{AA @echo 11 .elif defined(BB) #}{!AA{BB @echo 22 .else #}{!BB @echo 33 .endif #}} ok: .if defined(AA) #{AA @echo 11 .else #}{!AA .if defined(BB) #{BB @echo 22 .else #}{!BB @echo 33 .endif #} .endif #} EOF make "Makefile", line 4: Malformed conditional (defined(BB) #}{!AA{BB) make: fatal errors encountered -- cannot continue >Fix: Document it - until a make guru fixes it sometime, maybe. *** 4.2-RELEASE/src/usr.bin/make/make.1 Thu Oct 19 06:23:49 2000 --- new/src/usr.bin/make/make.1 Thu Mar 8 16:53:43 2001 *************** *** 1238,1243 **** --- 1238,1273 ---- \&.endfor .Ed won't work, and should be rewritten the other way around. + .Pp + The expansion of .elif uses everything up to end of line, & allows no + # comment delimeter as available to simpler .if & .else & .endif commands. + .br + This thus fails; + .in +2 + .nf + .if defined(AA) #{AA + @echo 11 + .elif defined(BB) #}{!AA{BB + @echo 22 + .else #}{!BB + @echo 33 + .endif #}} + .fi + .in -2 + Whereas this works + .in +2 + .nf + .if defined(AA) #{AA + @echo 11 + .else #}{!AA + .if defined(BB) #{BB + @echo 22 + .else #}{!BB + @echo 33 + .endif #} + .endif #} + .fi + .in -2 .Sh SEE ALSO .Xr mkdep 1 .Rs >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 9 1:46:22 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id 115F437B719 for ; Fri, 9 Mar 2001 01:46:12 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.2/8.11.2) id f299jb320610; Fri, 9 Mar 2001 11:45:37 +0200 (EET) (envelope-from ru) Date: Fri, 9 Mar 2001 11:45:37 +0200 From: Ruslan Ermilov To: Bill Fumerola Cc: Garrett Wollman , freebsd-bugs@FreeBSD.ORG Subject: Re: bin/25584: arp.c - better printed ether address Message-ID: <20010309114537.A19746@sunbay.com> Mail-Followup-To: Bill Fumerola , Garrett Wollman , freebsd-bugs@FreeBSD.ORG References: <200103072200.f27M02o56673@freefall.freebsd.org> <20010307195349.H31752@elvis.mu.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="IJpNTDwzlM2Ie8A6" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010307195349.H31752@elvis.mu.org>; from billf@mu.org on Wed, Mar 07, 2001 at 07:53:49PM -0600 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --IJpNTDwzlM2Ie8A6 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Wed, Mar 07, 2001 at 07:53:49PM -0600, Bill Fumerola wrote: > On Wed, Mar 07, 2001 at 02:00:02PM -0800, Garrett Wollman wrote: > > > > - printf("%x:%x:%x:%x:%x:%x", cp[0], cp[1], cp[2], cp[3], cp[4], cp[5]); > > > + printf("%02x:%02x:%02x:%02x:%02x:%02x", cp[0], cp[1], cp[2], cp[3], cp[4], cp[5]); > > > > FWIW, I like this change. > > So do I, so I committed it... > Objecting. This is not compatible with ether_ntoa(3) and link_ntoa(3). The correct fix would be to fix these functions, and use them in arp(8). I am attaching the patch to arp(8) I would like to commit. See, for comparison, how route(8) and netstat(1) output Ethernet addresses. (I know that kernel prints Ethernet addresses differently.) Cheers, -- Ruslan Ermilov Oracle Developer/DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --IJpNTDwzlM2Ie8A6 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=p Index: arp.c =================================================================== RCS file: /home/ncvs/src/usr.sbin/arp/arp.c,v retrieving revision 1.28 diff -u -p -r1.28 arp.c --- arp.c 2001/03/08 01:52:49 1.28 +++ arp.c 2001/03/09 09:34:12 @@ -61,6 +61,7 @@ static const char rcsid[] = #include #include +#include #include #include #include @@ -88,15 +89,14 @@ void print_entry(struct sockaddr_dl *sdl void nuke_entry(struct sockaddr_dl *sdl, struct sockaddr_inarp *sin, struct rt_msghdr *rtm); int delete(char *host, char *info); -void ether_print(u_char *cp); +void sdl_print(const struct sockaddr_dl *); void usage(void); int set(int argc, char **argv); int get(char *host); int file(char *name); void getsocket(void); -int my_ether_aton(char *a, u_char *n); int rtmsg(int cmd); -int get_ether_addr(u_int32_t ipaddr, u_char *hwaddr); +int get_sdl_addr(u_int32_t ipaddr, struct sockaddr_dl *sdl); static int pid; static int nflag; /* no reverse dns lookups */ @@ -255,7 +255,7 @@ set(int argc, char **argv) register struct sockaddr_inarp *sin = &sin_m; register struct sockaddr_dl *sdl; register struct rt_msghdr *rtm = &(m_rtmsg.m_rtm); - u_char *ea; + struct ether_addr *ea; char *host = argv[0], *eaddr = argv[1]; getsocket(); @@ -288,17 +288,19 @@ set(int argc, char **argv) } argv++; } - ea = (u_char *)LLADDR(&sdl_m); if (doing_proxy && !strcmp(eaddr, "auto")) { - if (!get_ether_addr(sin->sin_addr.s_addr, ea)) { + if (!get_sdl_addr(sin->sin_addr.s_addr, &sdl_m)) { printf("no interface found for %s\n", inet_ntoa(sin->sin_addr)); return (1); } - sdl_m.sdl_alen = 6; } else { - if (my_ether_aton(eaddr, ea) == 0) + if ((ea = ether_aton(eaddr)) == NULL) + warnx("invalid Ethernet address '%s'", eaddr); + else { sdl_m.sdl_alen = 6; + memcpy(LLADDR(&sdl_m), ea, sdl_m.sdl_alen); + } } tryagain: if (rtmsg(RTM_GET) < 0) { @@ -487,7 +489,7 @@ print_entry(struct sockaddr_dl *sdl, } printf("%s (%s) at ", host, inet_ntoa(sin->sin_addr)); if (sdl->sdl_alen) - ether_print(LLADDR(sdl)); + sdl_print(sdl); else printf("(incomplete)"); if (rtm->rtm_rmx.rmx_expire == 0) @@ -535,26 +537,13 @@ nuke_entry(struct sockaddr_dl *sdl, } void -ether_print(u_char *cp) -{ - printf("%02x:%02x:%02x:%02x:%02x:%02x", cp[0], cp[1], cp[2], cp[3], - cp[4], cp[5]); -} - -int -my_ether_aton(char *a, u_char *n) +sdl_print(const struct sockaddr_dl *sdl) { - int i, o[6]; - i = sscanf(a, "%x:%x:%x:%x:%x:%x", &o[0], &o[1], &o[2], - &o[3], &o[4], &o[5]); - if (i != 6) { - warnx("invalid Ethernet address '%s'", a); - return (1); - } - for (i=0; i<6; i++) - n[i] = o[i]; - return (0); + if (sdl->sdl_type == IFT_ETHER && sdl->sdl_alen == ETHER_ADDR_LEN) + (void)printf("%s", ether_ntoa((struct ether_addr *)LLADDR(sdl))); + else + (void)printf("%s", link_ntoa(sdl)); } void @@ -636,13 +625,13 @@ doit: } /* - * get_ether_addr - get the hardware address of an interface on the + * get_sdl_addr - get the hardware address of an interface on the * the same subnet as ipaddr. */ #define MAX_IFS 32 int -get_ether_addr(u_int32_t ipaddr, u_char *hwaddr) +get_sdl_addr(u_int32_t ipaddr, struct sockaddr_dl *sdl) { struct ifreq *ifr, *ifend, *ifp; u_int32_t ina, mask; @@ -720,13 +709,14 @@ nextif: * Found the link-level address - copy it out */ dla = (struct sockaddr_dl *) &ifr->ifr_addr; - memcpy(hwaddr, LLADDR(dla), dla->sdl_alen); + memcpy(LLADDR(sdl), LLADDR(dla), dla->sdl_alen); + sdl->sdl_alen = dla->sdl_alen; close (s); printf("using interface %s for proxy with address ", ifp->ifr_name); - ether_print(hwaddr); + sdl_print(dla); printf("\n"); - return dla->sdl_alen; + return 1; } ifr = (struct ifreq *) ((char *)&ifr->ifr_addr + MAX(ifr->ifr_addr.sa_len, sizeof(ifr->ifr_addr))); --IJpNTDwzlM2Ie8A6-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 9 1:50: 8 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7E79937B719 for ; Fri, 9 Mar 2001 01:50:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f299o3672493; Fri, 9 Mar 2001 01:50:03 -0800 (PST) (envelope-from gnats) Date: Fri, 9 Mar 2001 01:50:03 -0800 (PST) Message-Id: <200103090950.f299o3672493@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: bin/25598: patch to let ftpd output message when changing directory Reply-To: Peter Pentchev Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/25598; it has been noted by GNATS. From: Peter Pentchev To: Bernd Luevelsmeyer Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: bin/25598: patch to let ftpd output message when changing directory Date: Fri, 9 Mar 2001 11:42:49 +0200 On Fri, Mar 09, 2001 at 09:10:14AM +0100, Bernd Luevelsmeyer wrote: > Peter Pentchev wrote: > > > Of course, then there's the issue of a race condition between a stat() > > and the actual opening.. this might be resolved with a fstat(fileno(fp)) > > right after the fopen(), before the first read from the file. > > I think that's the way to go. To care for unwanted 3rd-party-.messages, > one might perhaps check that it's owned by root, or owned by the > directory owner? Not world-writeable? And limit the output to max. 20 > lines of max. 50 characters each, filtered to printable ASCII (checked > with isprint())? I think most of these checks are reasonable, esp. the owned-by-root-or-owner check (I think that would be the best way to go - allow root to drop .message files all over the place, and let owners put their own), which would also take care of the problem you mentioned earlier, .message files uploaded to public incoming directories. > > Or should FIFO's be considered an issue at all? I believe yes, since > > something similar has been done to inetd recently.. > > It is certainly an issue. I'm afraid I didn't consider this topic at > all. I'll implement the fstat() and a size limitation and/or other > sanity checks, and re-submit the patch. > > I suggest that this ill-conceived PR should be closed. Wouldn't it be better to leave this PR open, so you can post your patches as follow-ups? G'luck, Peter -- I am the thought you are now thinking. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 9 4:40:10 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 76C2A37B71A for ; Fri, 9 Mar 2001 04:40:06 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f29Ce6q98944; Fri, 9 Mar 2001 04:40:06 -0800 (PST) (envelope-from gnats) Received: from guardian.nanolink.com (guardian.nanolink.com [195.24.48.9]) by hub.freebsd.org (Postfix) with SMTP id CC02E37B718 for ; Fri, 9 Mar 2001 04:35:32 -0800 (PST) (envelope-from curly@failure.e-card.bg) Received: (qmail 23987 invoked from network); 9 Mar 2001 14:35:30 +0200 Received: from unknown (HELO failure.e-card.bg) (212.5.131.245) by guardian.nanolink.com with SMTP; 9 Mar 2001 14:35:30 +0200 Received: (qmail 67190 invoked by uid 1001); 9 Mar 2001 12:40:51 -0000 Message-Id: <20010309124051.67189.qmail@failure.e-card.bg> Date: 9 Mar 2001 12:40:51 -0000 From: curly@e-card.bg Reply-To: curly@e-card.bg To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: kern/25630: Problem in the routing or/and bridging code Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25630 >Category: kern >Synopsis: Problem in the routing or/and bridging code >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Mar 09 04:40:04 PST 2001 >Closed-Date: >Last-Modified: >Originator: Valentin Zahariev >Release: FreeBSD 4.3-BETA i386 >Organization: E-CARD.BG >Environment: System: FreeBSD FaiLurE.e-card.bg 4.3-BETA FreeBSD 4.3-BETA #2: Thu Mar 8 13:16$ >Description: My FreeBSD 4.x box is act as bridge/firewall for our office, till we got a new router. It was setup quickly, so I activate bridge code, to eliminate setting new gateway for all servers. With my old kernel (@(#)FreeBSD 4.2-STABLE #1: Tue Feb 13 14:45:07 EET 2001), everything was fine. But yestarday I cvsup'd to 4.3-BETA, rebuiild world and kernel, and fall in troubles... Bridging is still working...I guess, boxes after my box have internet, but my box - nope...mostly of time my box and only my box have no internet. I cant traceroute, cant ping even and my second IP, and out router. Sometimes I have a internet for a while...5 up to 10 minutes, then next half up to 2 hours I dont have any internet. My config is: rl0 inet x.y.z.245 netmask 0xfffffff0 - connected to office hup dc0 inet x.y.z.244 netmask 0xffffffff - connected to router via crosslinked cable. gate is inet x.y.z.241 netmask 0xfffffff0 net.link.ether.bridge: 1 net.link.ether.bridge_ipfw: 1 net.inet.ip.forwarding: 1 >How-To-Repeat: Not sure. Badly effects are randomly happen. >Fix: N/A >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 9 5:40: 5 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1BFC237B71B for ; Fri, 9 Mar 2001 05:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f29De3G07589; Fri, 9 Mar 2001 05:40:03 -0800 (PST) (envelope-from gnats) Date: Fri, 9 Mar 2001 05:40:03 -0800 (PST) Message-Id: <200103091340.f29De3G07589@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Bernd Luevelsmeyer Subject: Re: bin/25598: patch to let ftpd output message when changing directory Reply-To: Bernd Luevelsmeyer Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/25598; it has been noted by GNATS. From: Bernd Luevelsmeyer To: Peter Pentchev Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: bin/25598: patch to let ftpd output message when changing directory Date: Fri, 09 Mar 2001 14:31:24 +0100 Peter Pentchev wrote: > > On Fri, Mar 09, 2001 at 09:10:14AM +0100, Bernd Luevelsmeyer wrote: [...] > > I suggest that this ill-conceived PR should be closed. > > Wouldn't it be better to leave this PR open, so you can post your patches > as follow-ups? If it's still open, I'll follow-up; if not I'll submit a new one and point to this PR in the description. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 9 6:20:13 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4877737B719 for ; Fri, 9 Mar 2001 06:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f29EK1G14460; Fri, 9 Mar 2001 06:20:01 -0800 (PST) (envelope-from gnats) Received: from ns.rim.or.jp (ns.rim.or.jp [202.247.128.2]) by hub.freebsd.org (Postfix) with ESMTP id E039B37B719 for ; Fri, 9 Mar 2001 06:14:05 -0800 (PST) (envelope-from kawai@kunugi.rim.or.jp) Received: from rayearth.rim.or.jp (uucp@rayearth.rim.or.jp [202.247.130.242]) by ns.rim.or.jp (8.9.3/3.6W-RIMNET-98-06-09) with ESMTP id XAA78295 for ; Fri, 9 Mar 2001 23:14:05 +0900 (JST) Received: (from uucp@localhost) by rayearth.rim.or.jp (8.8.8/3.5Wpl2-uucp1/RIMNET) with UUCP id XAA07283 for FreeBSD-gnats-submit@freebsd.org; Fri, 9 Mar 2001 23:14:04 +0900 (JST) Received: (from kawai@localhost) by funyan.kunugi.rim.or.jp (8.11.2/3.7W) id f29EDa715736; Fri, 9 Mar 2001 23:13:36 +0900 (JST) Message-Id: <200103091413.f29EDa715736@funyan.kunugi.rim.or.jp> Date: Fri, 9 Mar 2001 23:13:36 +0900 (JST) From: kawai@kunugi.rim.or.jp Reply-To: kawai@kunugi.rim.or.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/25632: USB modem (umodem) may destroy the cfreelist queue Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25632 >Category: kern >Synopsis: USB modem (umodem) may destroy the cfreelist queue >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Mar 09 06:20:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: KAWAI Ken >Release: FreeBSD 4.3-BETA i386 >Organization: >Environment: Use umodem under FreeBSD 4.3-BETA or 5.0-CURRENT. >Description: The cblock_alloc() function is a critical section. The priority level is raised by spltty() before executing cblock_alloc(). The umodemreadcb() function in /usr/src/sys/dev/usb/umodem.c calls cblock_alloc() via ttyinput() and putc(). Because the interrupt priority level of USB is defined as INTR_TYPE_BIO in /usr/src/sys/pci/ohci_pci.c and /usr/src/sys/pci/uhci_pci.c, the interrupt which calls umodemreadcb() isn't blocked when another process is executing cblock_alloc() routine. This may destroy the cfreelist queue. To reconfirm this problem, I put a simple detector into cblock_alloc() and got a core dump. Because I used umodem by KLD module, we can't see the symbol name of umodemreadcb() in the trace. The anonymous function on #13 should be umodemreadcb(). Also, we can't see cblock_alloc() in the trace because cblock_alloc() is a inline function. --- kern/tty_subr.c- Sat Oct 9 15:30:35 1999 +++ kern/tty_subr.c Fri Mar 9 10:48:13 2001 @@ -93,17 +93,23 @@ * Remove a cblock from the cfreelist queue and return a pointer * to it. */ +static int someone_here = 0; + static __inline struct cblock * cblock_alloc() { struct cblock *cblockp; + if (someone_here) + panic("cblock_alloc: Already someone is here\n"); + someone_here = 1; cblockp = cfreelist; if (cblockp == NULL) panic("clist reservation botch"); cfreelist = cblockp->c_next; cblockp->c_next = NULL; cfreecount -= CBSIZE; + someone_here = 0; return (cblockp); } -------- trace #0 dumpsys () at ../../kern/kern_shutdown.c:469 469 if (dumping++) { (kgdb) where #0 dumpsys () at ../../kern/kern_shutdown.c:469 #1 0xc013062d in boot (howto=260) at ../../kern/kern_shutdown.c:309 #2 0xc01309c5 in panic (fmt=0xc01fbd54 "from debugger") at ../../kern/kern_shutdown.c:556 #3 0xc011c9b5 in db_panic (addr=-1071763772, have_addr=0, count=-1, modif=0xc7198aa4 "") at ../../ddb/db_command.c:433 #4 0xc011c954 in db_command (last_cmdp=0xc0224278, cmd_table=0xc02240d8, aux_cmd_tablep=0xc025e160) at ../../ddb/db_command.c:333 #5 0xc011ca1a in db_command_loop () at ../../ddb/db_command.c:455 #6 0xc011eb3f in db_trap (type=3, code=0) at ../../ddb/db_trap.c:71 #7 0xc01e2c6e in kdb_trap (type=3, code=0, regs=0xc7198bc0) at ../../i386/i386/db_interface.c:158 #8 0xc01eec3c in trap (frame={tf_fs = 16, tf_es = 16, tf_ds = 16, tf_edi = 7034930, tf_esi = 256, tf_ebp = -954627064, tf_isp = -954627092, tf_ebx = -1071641856, tf_edx = 0, tf_ecx = 0, tf_eax = 18, tf_trapno = 3, tf_err = 0, tf_eip = -1071763772, tf_cs = 8, tf_eflags = 582, tf_esp = -1071532641, tf_ss = -1071650845}) at ../../i386/i386/trap.c:569 #9 0xc01e2ec4 in Debugger (msg=0xc01fe7e3 "panic") at machine/cpufunc.h:64 #10 0xc01309bc in panic (fmt=0xc0200b00 "cblock_alloc: Already someone is here\n") at ../../kern/kern_shutdown.c:554 #11 0xc014974f in putc (chr=96, clistp=0xc087e900) at ../../kern/tty_subr.c:104 #12 0xc0144c3f in ttyinput (c=96, tp=0xc087e900) at ../../kern/tty.c:563 #13 0xc02cad1e in ?? () #14 0xc01a4cf9 in usb_transfer_complete (xfer=0xc0881580) at ../../dev/usb/usbdi.c:839 #15 0xc01a1e30 in ohci_process_done (sc=0xc0678000, done=97748944) at ../../dev/usb/ohci.c:1207 #16 0xc01a1c4a in ohci_intr1 (sc=0xc0678000) at ../../dev/usb/ohci.c:1065 #17 0xc01a1b41 in ohci_intr (p=0xc0678000) at ../../dev/usb/ohci.c:994 #18 0xc014994a in b_to_q (src=0xc7198d94 "./usr/local/X11R6/share\n\002", amount=23, clistp=0xc0270a38) at ../../kern/tty_subr.c:109 #19 0xc01469a4 in ttwrite (tp=0xc0270a00, uio=0xc7198ed4, flag=8323073) at ../../kern/tty.c:1962 #20 0xc0147517 in ttywrite (dev=0xc02612d8, uio=0xc7198ed4, flag=8323073) at ../../kern/tty.c:2584 #21 0xc0166fb1 in spec_write (ap=0xc7198e8c) at ../../miscfs/specfs/spec_vnops.c:283 #22 0xc01916c4 in ufsspec_write (ap=0xc7198e8c) at ../../ufs/ufs/ufs_vnops.c:1863 #23 0xc0191c6d in ufs_vnoperatespec (ap=0xc7198e8c) at ../../ufs/ufs/ufs_vnops.c:2391 #24 0xc016308f in vn_write (fp=0xc095b3c0, uio=0xc7198ed4, cred=0xc0680600, flags=0, p=0xc69dbd40) at vnode_if.h:363 #25 0xc013e5ed in dofilewrite (p=0xc69dbd40, fp=0xc095b3c0, fd=1, buf=0x8052000, nbyte=24, offset=-1, flags=0) at ../../sys/file.h:163 #26 0xc013e4e2 in write (p=0xc69dbd40, uap=0xc7198f80) at ../../kern/sys_generic.c:328 #27 0xc01ef52a in syscall2 (frame={tf_fs = 47, tf_es = 47, tf_ds = 47, tf_edi = 134553600, tf_esi = 134535856, tf_ebp = -1077937568, tf_isp = -954626092, tf_ebx = 672043880, tf_edx = 134535856, tf_ecx = 134535856, tf_eax = 4, tf_trapno = 0, tf_err = 2, tf_eip = 672003256, tf_cs = 31, tf_eflags = 663, tf_esp = -1077937612, tf_ss = 47}) at ../../i386/i386/trap.c:1150 #28 0xc01e35b5 in Xint0x80_syscall () #29 0x280dd132 in ?? () #30 0x280dd0a1 in ?? () #31 0x280da0d8 in ?? () #32 0x28085710 in ?? () #33 0x804aabc in ?? () #34 0x8049424 in ?? () #35 0x804b594 in ?? () #36 0x80491ab in ?? () (kgdb) quit >How-To-Repeat: For example, use umodem and sio at the same time. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 9 6:30: 7 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8ACB337B71A for ; Fri, 9 Mar 2001 06:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f29EU1T15950; Fri, 9 Mar 2001 06:30:01 -0800 (PST) (envelope-from gnats) Received: from cgmd76206.chello.nl (d9168.upc-d.chello.nl [213.46.9.168]) by hub.freebsd.org (Postfix) with ESMTP id 63DF637B71A for ; Fri, 9 Mar 2001 06:25:16 -0800 (PST) (envelope-from edwin@cgmd76206.chello.nl) Received: by cgmd76206.chello.nl (Postfix, from userid 1001) id 3B6941AB; Fri, 9 Mar 2001 15:25:15 +0100 (CET) Message-Id: <20010309142515.3B6941AB@cgmd76206.chello.nl> Date: Fri, 9 Mar 2001 15:25:15 +0100 (CET) From: edwin@mavetju.org Reply-To: edwin@mavetju.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: conf/25633: [PATCH] Upgrade install does not restore files in /etc/ssh Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25633 >Category: conf >Synopsis: [PATCH] Upgrade install does not restore files in /etc/ssh >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Mar 09 06:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Edwin Groothuis >Release: FreeBSD 4.2-RELEASE i386 >Organization: - >Environment: 4.2-RELEASE `Upgrade' install >Description: I have a more-or-less heavily modified ssh_config with lots of individual Host statements. After the upgrade to 4.2 these were suddenly replaced by the standard ssh config-files. So the problem is: Preexisting files in /etc/ssh are not restored. Luckely it didn't kill my hostkey :-) >How-To-Repeat: Do a 4.2-RELEASE `Upgrade' install >Fix: --- installUpgrade.c.old Fri Mar 9 15:12:17 2001 +++ installUpgrade.c Fri Mar 9 15:12:47 2001 @@ -116,6 +116,7 @@ { JUST_COPY, "shells", TRUE, NULL }, { JUST_COPY, "skeykeys", TRUE, NULL }, { JUST_COPY, "spwd.db", TRUE, NULL }, + { JUST_COPY, "ssh", TRUE, NULL }, { JUST_COPY, "syslog.conf", TRUE, NULL }, { JUST_COPY, "ttys", TRUE, NULL }, { JUST_COPY, "uucp", TRUE, NULL }, >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 9 7:40:10 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CC26D37B718 for ; Fri, 9 Mar 2001 07:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f29Fe1d16287; Fri, 9 Mar 2001 07:40:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EB20337B71A for ; Fri, 9 Mar 2001 07:33:54 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f29FXsS15658; Fri, 9 Mar 2001 07:33:54 -0800 (PST) (envelope-from nobody) Message-Id: <200103091533.f29FXsS15658@freefall.freebsd.org> Date: Fri, 9 Mar 2001 07:33:54 -0800 (PST) From: jose.l.rodriguez@getronics.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/25634: I obtain kernel trap 9 with interrupts disabled when I execute the wine emulator Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25634 >Category: kern >Synopsis: I obtain kernel trap 9 with interrupts disabled when I execute the wine emulator >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Mar 09 07:40:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Jose Luis Rodriguez Garcia >Release: 4.2 >Organization: >Environment: FreeBSD pc-jose.getronics.com 4.2-RELEASE FreeBSD 4.2-RELEASE #5: Fri Feb 16 21:31:31 CET 2001 root@pc-jose.getronics.com/usr/src/sys/compile/WINE i386 >Description: When I execute wine I sometimes obtain the next message: wine core dumps seconds more later. an 31 20:16:17 pc-jose /kernel: kernel trap 9 with interrupts disabled Jan 31 20:16:26 pc-jose /kernel: pid 72905 (wine), uid 0: exited on signal 4 (core dumped) Jan 31 20:18:03 pc-jose /kernel: kernel trap 9 with interrupts disabled Jan 31 20:18:09 pc-jose /kernel: pid 73073 (wine), uid 0: exited on signal 4 (core dumped) Jan 31 20:33:11 pc-jose /kernel: kernel trap 9 with interrupts disabled Jan 31 20:33:18 pc-jose /kernel: pid 74218 (wine), uid 0: exited on signal 4 (core dumped) Jan 31 20:36:54 pc-jose /kernel: kernel trap 9 with interrupts disabled Jan 31 20:36:59 pc-jose /kernel: pid 74630 (wine), uid 0: exited on signal 4 (core dumped) Jan 31 21:10:31 pc-jose /kernel: pid 79712 (wine), uid 0: exited on signal 4 (core dumped) Jan 31 21:13:18 pc-jose /kernel: kernel trap 9 with interrupts disabled Jan 31 21:13:36 pc-jose /kernel: pid 80057 (wine), uid 0: exited on signal 4 (core dumped) >How-To-Repeat: Executing windows programs under wine >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 9 8:50:13 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C706B37B71B for ; Fri, 9 Mar 2001 08:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f29Go1M32772; Fri, 9 Mar 2001 08:50:01 -0800 (PST) (envelope-from gnats) Received: from ccbsd1.csie.nctu.edu.tw (ccbsd1.csie.nctu.edu.tw [140.113.209.61]) by hub.freebsd.org (Postfix) with ESMTP id E651537B71A for ; Fri, 9 Mar 2001 08:47:19 -0800 (PST) (envelope-from wkwu@ccbsd1.csie.nctu.edu.tw) Received: (from wkwu@localhost) by ccbsd1.csie.nctu.edu.tw (8.11.2/8.11.2) id f29CLg801777; Fri, 9 Mar 2001 20:21:42 +0800 (CST) (envelope-from wkwu) Message-Id: <200103091221.f29CLg801777@ccbsd1.csie.nctu.edu.tw> Date: Fri, 9 Mar 2001 20:21:42 +0800 (CST) From: Wei-Kai Wu Reply-To: wkwu@ccbsd1.csie.nctu.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: misc/25635: lpr -# problem Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25635 >Category: misc >Synopsis: lpr -# didn't work on network printer >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Mar 09 08:50:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Wei-Kai Wu >Release: FreeBSD 4.2-STABLE i386 >Organization: Kavalan >Environment: OS:FreeBSD 4.2 Printer: HP 4050 with network printer device >Description: lpr -#2 -Php4050 test.ps the above command will print only one copy of test.ps the lpr -# only works with printers which connect by lpt >How-To-Repeat: It is trivial. >Fix: Modify the lpd source? >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 9 9: 0: 7 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 69AF337B719 for ; Fri, 9 Mar 2001 09:00:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f29H03H33852; Fri, 9 Mar 2001 09:00:03 -0800 (PST) (envelope-from gnats) Date: Fri, 9 Mar 2001 09:00:03 -0800 (PST) Message-Id: <200103091700.f29H03H33852@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: misc/25635: lpr -# problem Reply-To: Peter Pentchev Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/25635; it has been noted by GNATS. From: Peter Pentchev To: Wei-Kai Wu Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: misc/25635: lpr -# problem Date: Fri, 9 Mar 2001 18:56:28 +0200 Hmm.. could this be somehow related to PR bin/25544? ( http://www.FreeBSD.org/cgi-bin/query-pr.cgi?pr=25544 ) Maybe the lpr source should be combed for more such problems? G'luck, Peter -- If I were you, who would be reading this sentence? On Fri, Mar 09, 2001 at 08:21:42PM +0800, Wei-Kai Wu wrote: > > >Number: 25635 > >Category: misc > >Synopsis: lpr -# didn't work on network printer > >Originator: Wei-Kai Wu > >Release: FreeBSD 4.2-STABLE i386 > >Organization: > Kavalan > >Environment: > > OS:FreeBSD 4.2 > Printer: HP 4050 with network printer device > > >Description: > > lpr -#2 -Php4050 test.ps > the above command will print only one copy of test.ps > > the lpr -# only works with printers which connect by lpt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 9 9:20: 8 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B016A37B718 for ; Fri, 9 Mar 2001 09:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f29HK2r38451; Fri, 9 Mar 2001 09:20:02 -0800 (PST) (envelope-from gnats) Date: Fri, 9 Mar 2001 09:20:02 -0800 (PST) Message-Id: <200103091720.f29HK2r38451@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Garrett Wollman Subject: misc/25635: lpr -# problem Reply-To: Garrett Wollman Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/25635; it has been noted by GNATS. From: Garrett Wollman To: wkwu@ccbsd1.csie.nctu.edu.tw Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: misc/25635: lpr -# problem Date: Fri, 9 Mar 2001 12:17:06 -0500 (EST) < said: > Printer: HP 4050 with network printer device The `-#' option requires support from the remote print spooler to operate. Are you certain that this printer (I assume you're using an HP JetDirect or similar product) supports such a feature? Many network print servers do not, in order to reduce the amount of memory required. -GAWollman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 9 10:30:13 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AC6B137B71D; Fri, 9 Mar 2001 10:30:08 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f29IU8X48654; Fri, 9 Mar 2001 10:30:08 -0800 (PST) (envelope-from iedowse) Date: Fri, 9 Mar 2001 10:30:08 -0800 (PST) From: Message-Id: <200103091830.f29IU8X48654@freefall.freebsd.org> To: nis@pc3.geta.hatoyama.hitachi.co.jp, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/25603: mmap + fork = panic: vm_object_deallocate: object deallocated too may times: 0 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: mmap + fork = panic: vm_object_deallocate: object deallocated too may times: 0 State-Changed-From-To: open->closed State-Changed-By: iedowse State-Changed-When: Fri Mar 9 10:28:34 PST 2001 State-Changed-Why: Fixed in revision 1.195 of sys/vm/vm_map.c. Thanks for the bug report! http://www.freebsd.org/cgi/query-pr.cgi?pr=25603 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 9 11:30: 9 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F1C9437B718 for ; Fri, 9 Mar 2001 11:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f29JU1G57402; Fri, 9 Mar 2001 11:30:01 -0800 (PST) (envelope-from gnats) Received: from mumblefrotz.dyndns.org (cs92064.pp.htv.fi [212.90.92.64]) by hub.freebsd.org (Postfix) with ESMTP id 7E87E37B718 for ; Fri, 9 Mar 2001 11:28:10 -0800 (PST) (envelope-from ejk@pp.htv.fi) Received: from anthrax.mumblefrotz.dyndns.org (anthrax.mumblefrotz.dyndns.org [192.168.1.3]) by mumblefrotz.dyndns.org (8.11.1/8.11.1) with ESMTP id f29JS2J00559 for ; Fri, 9 Mar 2001 21:28:03 +0200 (EET) (envelope-from ejk@pp.htv.fi) Received: (from ejk@localhost) by anthrax.mumblefrotz.dyndns.org (8.11.2/8.11.2) id f29JS7411979; Fri, 9 Mar 2001 21:28:07 +0200 (EET) (envelope-from ejk) Message-Id: <200103091928.f29JS7411979@anthrax.mumblefrotz.dyndns.org> Date: Fri, 9 Mar 2001 21:28:07 +0200 (EET) From: Esa Karkkainen Reply-To: ejk@pp.htv.fi To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: conf/25639: /etc/mail/Makefile does not source /etc/rc.conf when starting sendmail Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25639 >Category: conf >Synopsis: /etc/mail/Makefile does not source /etc/rc.conf when starting sendmail >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Mar 09 11:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Esa Karkkainen >Release: FreeBSD 4.2-STABLE i386 >Organization: Who me organized? >Environment: Where the new mechanism for stopping and starting sendmail exists. >Description: Sendmail starts with incorrect parameters, assuming you have added customized sendmail_flags variable to /etc/rc.conf or /etc/rc.conf.local, when started the following way # cd /etc/mail # make start >How-To-Repeat: # grep sendmail_flags /etc/rc.conf # sendmail_flags="-bd -q30m -oOA=127.0.0.1" # cat /var/run/sendmail.pid 190 /usr/sbin/sendmail -bd -q30m -oOA=127.0.0.1 # sudo make stop /bin/kill -TERM `head -1 /var/run/sendmail.pid` # make start (. /etc/defaults/rc.conf; if [ "${sendmail_enable}" = "YES" -a -r /etc/mail/sendmail.cf ]; then /usr/sbin/sendmail ${sendmail_flags}; fi ) # cat /var/run/sendmail.pid 11941 /usr/sbin/sendmail -bd -q30m >Fix: Apply the following patch to /etc/mail/Makefile --- Makefile.orig Fri Mar 2 20:12:34 2001 +++ Makefile Fri Mar 9 21:13:24 2001 @@ -141,7 +141,7 @@ ${INSTALL} -c -m ${SHAREMODE} ${SENDMAIL_MC_CF} /etc/mail/sendmail.cf start: - (. /etc/defaults/rc.conf; \ + (. /etc/defaults/rc.conf; source_rc_confs; \ if [ "$${sendmail_enable}" = "YES" -a -r /etc/mail/sendmail.cf ];\ then \ ${SENDMAIL} $${sendmail_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 Fri Mar 9 13:20:14 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5EA1C37B71B for ; Fri, 9 Mar 2001 13:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f29LK1874043; Fri, 9 Mar 2001 13:20:01 -0800 (PST) (envelope-from gnats) Received: from jim.go2net.com (jim.go2net.com [64.50.65.22]) by hub.freebsd.org (Postfix) with SMTP id C65EC37B71A for ; Fri, 9 Mar 2001 13:12:21 -0800 (PST) (envelope-from williamc@infospace.com) Received: (qmail 4945 invoked from network); 9 Mar 2001 21:17:14 -0000 Received: from absolut.go2net.com (10.200.10.74) by jim.go2net.com with SMTP; 9 Mar 2001 21:17:14 -0000 Received: (qmail 23267 invoked from network); 9 Mar 2001 21:12:16 -0000 Received: from gasket.go2net.com ([10.225.32.118]) (envelope-sender ) by absolut.go2net.com (qmail-ldap-1.03) with SMTP for ; 9 Mar 2001 21:12:16 -0000 Received: by gasket.go2net.com (Postfix, from userid 492) id 8FAAB5D4F; Fri, 9 Mar 2001 13:12:04 -0800 (PST) Message-Id: <20010309211204.8FAAB5D4F@gasket.go2net.com> Date: Fri, 9 Mar 2001 13:12:04 -0800 (PST) From: william.carrel@infospace.com Reply-To: william.carrel@infospace.com To: FreeBSD-gnats-submit@freebsd.org Cc: freebsd-stable@freebsd.org X-Send-Pr-Version: 3.113 Subject: kern/25640: MFC support for DLINK DFE-530TX+ [patch] Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25640 >Category: kern >Synopsis: DLink DFE-530TX+ cards are not recognized by the kernel >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Mar 09 13:20:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: William Carrel >Release: FreeBSD 4.3-BETA i386 >Organization: InfoSpace, Inc. >Environment: System: FreeBSD gasket.go2net.com 4.3-BETA FreeBSD 4.3-BETA #0: Tue Mar 6 10:57:26 PST 2001 root@gasket.go2net.com:/usr/obj/usr/src/sys/GO2SMP i386 >Description: This is an MFC of support for this card. >How-To-Repeat: Insert aforementioned card. Appears as Unknown device in dmesg. >Fix: Patches below are also at http://www.carrel.org/patch.file1 http://www.carrel.org/patch.file2 Hopefully we can get this in for 4.3-RELEASE. This patch to stable was created to help out a user on #FreeBSD/Openprojects.net. This support was added in current 2 weeks ago by wpaul (.c: 1.58, .h: 1.19) Add the following code to recognize the device: *** if_rl.c.orig Fri Mar 9 12:40:50 2001 --- if_rl.c Fri Mar 9 12:44:44 2001 *************** *** 149,154 **** --- 149,156 ---- "Delta Electronics 8139 10/100BaseTX" }, { ADDTRON_VENDORID, ADDTRON_DEVICEID_8139, "Addtron Technolgy 8139 10/100BaseTX" }, + { DLINK_VENDORID, DLINK_DEVICEID_530TXPLUS, + "D-Link DFE-530TX+ 10/100BaseTX" }, { 0, 0, NULL } }; *************** *** 898,904 **** rl_read_eeprom(sc, (caddr_t)&rl_did, RL_EE_PCI_DID, 1, 0); if (rl_did == RT_DEVICEID_8139 || rl_did == ACCTON_DEVICEID_5030 || ! rl_did == DELTA_DEVICEID_8139 || rl_did == ADDTRON_DEVICEID_8139) sc->rl_type = RL_8139; else if (rl_did == RT_DEVICEID_8129) sc->rl_type = RL_8129; --- 900,907 ---- rl_read_eeprom(sc, (caddr_t)&rl_did, RL_EE_PCI_DID, 1, 0); if (rl_did == RT_DEVICEID_8139 || rl_did == ACCTON_DEVICEID_5030 || ! rl_did == DELTA_DEVICEID_8139 || rl_did == ADDTRON_DEVICEID_8139 || ! rl_did == DLINK_DEVICEID_530TXPLUS) sc->rl_type = RL_8139; else if (rl_did == RT_DEVICEID_8129) sc->rl_type = RL_8129; *** if_rlreg.h.orig Fri Mar 9 12:45:55 2001 --- if_rlreg.h Fri Mar 9 12:45:58 2001 *************** *** 433,438 **** --- 433,448 ---- #define ADDTRON_DEVICEID_8139 0x1360 /* + * D-Link vendor ID. + */ + #define DLINK_VENDORID 0x1186 + + /* + * D-Link DFE-530TX+ device ID + */ + #define DLINK_DEVICEID_530TXPLUS 0x1300 + + /* * PCI low memory base and low I/O base register, and * other PCI registers. */ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 9 15: 0: 6 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A192737B719 for ; Fri, 9 Mar 2001 15:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f29N02p86610; Fri, 9 Mar 2001 15:00:02 -0800 (PST) (envelope-from gnats) Date: Fri, 9 Mar 2001 15:00:02 -0800 (PST) Message-Id: <200103092300.f29N02p86610@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: William Carrel Subject: Re: kern/25640: DLink DFE-530TX+ cards are not recognized by the kernel Reply-To: William Carrel Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/25640; it has been noted by GNATS. From: William Carrel To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: kern/25640: DLink DFE-530TX+ cards are not recognized by the kernel Date: 09 Mar 2001 14:53:28 -0800 This is a duplicate PR of kern/25566 with the patch from -CURRENT rather than invented on it's own. Someone should probably close one or the other and then commit and close on the one that is left. -- Andy Carrel - william.carrel@infospace.com - +1 (206) 357-4607 Internet Sys. Eng. - Enterprise Infrastructure & Security - InfoSpace To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 9 20: 0: 6 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 775ED37B719 for ; Fri, 9 Mar 2001 20:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f2A402u29492; Fri, 9 Mar 2001 20:00:02 -0800 (PST) (envelope-from gnats) Date: Fri, 9 Mar 2001 20:00:02 -0800 (PST) Message-Id: <200103100400.f2A402u29492@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Wei-Kai" Subject: Re: misc/25635: lpr -# problem Reply-To: "Wei-Kai" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/25635; it has been noted by GNATS. From: "Wei-Kai" To: "Garrett Wollman" Cc: Subject: Re: misc/25635: lpr -# problem Date: Sat, 10 Mar 2001 11:58:12 +0800 We do not have JetAdmin binaries for FreeBSD. I have contacted with HP, but they told me that Jetadmin only support for Solaris, HPUX and Linux. Because we have to do accounting, without JetAdmin, I don't know how to get the message from printer such as how many pages have been printed. Any solution? or anybody can help me get the JetAdmin binaries? Still, lpr -# problem has no idea. ----- Original Message ----- From: "Garrett Wollman" To: Cc: Sent: Saturday, March 10, 2001 1:17 AM Subject: misc/25635: lpr -# problem > < said: > > Printer: HP 4050 with network printer device > The `-#' option requires support from the remote print spooler to > operate. Are you certain that this printer (I assume you're using an > HP JetDirect or similar product) supports such a feature? Many > network print servers do not, in order to reduce the amount of memory > required. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 9 21:30: 6 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B785237B719 for ; Fri, 9 Mar 2001 21:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f2A5U1L44517; Fri, 9 Mar 2001 21:30:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 63E5337B718 for ; Fri, 9 Mar 2001 21:25:14 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f2A5PEv43940; Fri, 9 Mar 2001 21:25:14 -0800 (PST) (envelope-from nobody) Message-Id: <200103100525.f2A5PEv43940@freefall.freebsd.org> Date: Fri, 9 Mar 2001 21:25:14 -0800 (PST) From: tadayuki.okada@windriver.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/25644: error in /boot/default/loader.conf Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25644 >Category: misc >Synopsis: error in /boot/default/loader.conf >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Mar 09 21:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Tadayuki OKADA >Release: 4.3-BETA >Organization: >Environment: >Description: In /boot/default/loader.conf, sound related module entries don't have _load postfix. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Mar 10 2:10:18 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3C7B337B719 for ; Sat, 10 Mar 2001 02:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f2AAA2O87296; Sat, 10 Mar 2001 02:10:02 -0800 (PST) (envelope-from gnats) Received: from mumblefrotz.dyndns.org (cs92064.pp.htv.fi [212.90.92.64]) by hub.freebsd.org (Postfix) with ESMTP id C73DC37B719 for ; Sat, 10 Mar 2001 02:05:06 -0800 (PST) (envelope-from ejk@pp.htv.fi) Received: from anthrax.mumblefrotz.dyndns.org (anthrax.mumblefrotz.dyndns.org [192.168.1.3]) by mumblefrotz.dyndns.org (8.11.1/8.11.1) with ESMTP id f2AA50a00395 for ; Sat, 10 Mar 2001 12:05:04 +0200 (EET) (envelope-from ejk@pp.htv.fi) Received: (from ejk@localhost) by anthrax.mumblefrotz.dyndns.org (8.11.2/8.11.2) id f2AA56500608; Sat, 10 Mar 2001 12:05:06 +0200 (EET) (envelope-from ejk) Message-Id: <200103101005.f2AA56500608@anthrax.mumblefrotz.dyndns.org> Date: Sat, 10 Mar 2001 12:05:06 +0200 (EET) From: ejk@iki.fi Reply-To: ejk@iki.fi To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: conf/25649: /etc/mail/Makefile does not source /etc/rc.conf and /etc/rc.conf.local Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25649 >Category: conf >Synopsis: /etc/mail/Makefile does not source /etc/rc.conf and /etc/rc.conf.local >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Mar 10 02:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Esa Karkkainen >Release: FreeBSD 4.2-STABLE i386 >Organization: Has exited stage left >Environment: FreeBSD 4.2-STABLE from beginning of March onwards. >Description: # grep sendmail_flags /etc/rc.conf sendmail_flags="-bd -q30m -oOA=127.0.0.1" # cat /var/run/sendmail.pid 198 /usr/sbin/sendmail -bd -q30m -oOA=127.0.0.1 # make stop # /bin/kill -TERM `head -1 /var/run/sendmail.pid` # make start (. /etc/defaults/rc.conf; if [ "${sendmail_enable}" = "YES" -a -r /etc/mail/sendmail.cf ]; then /usr/sbin/sendmail ${sendmail_flags}; fi ) # cat /var/run/sendmail.pid 531 /usr/sbin/sendmail -bd -q30m >How-To-Repeat: Update to recent 4.2-STABLE or 4.3-BETA. Add or alter sendmail_flags enviroment variable in /etc/rc.conf or /etc/rc.conf.local. Stop and start sendmail using "cd /etc/mail ; make stop ; make start" >Fix: Apply the following patch to /etc/mail/Makefile --- Makefile.orig Fri Mar 2 20:12:34 2001 +++ Makefile Fri Mar 9 21:14:12 2001 @@ -141,7 +141,7 @@ ${INSTALL} -c -m ${SHAREMODE} ${SENDMAIL_MC_CF} /etc/mail/sendmail.cf start: - (. /etc/defaults/rc.conf; \ + (. /etc/defaults/rc.conf; source_rc_confs; \ if [ "$${sendmail_enable}" = "YES" -a -r /etc/mail/sendmail.cf ];\ then \ ${SENDMAIL} $${sendmail_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 Sat Mar 10 2:16:32 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3D8E837B718; Sat, 10 Mar 2001 02:16:31 -0800 (PST) (envelope-from roam@FreeBSD.org) Received: (from roam@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f2AAGVw87804; Sat, 10 Mar 2001 02:16:31 -0800 (PST) (envelope-from roam) Date: Sat, 10 Mar 2001 02:16:31 -0800 (PST) From: Message-Id: <200103101016.f2AAGVw87804@freefall.freebsd.org> To: ejk@iki.fi, roam@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: conf/25649: /etc/mail/Makefile does not source /etc/rc.conf and /etc/rc.conf.local Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: /etc/mail/Makefile does not source /etc/rc.conf and /etc/rc.conf.local State-Changed-From-To: open->closed State-Changed-By: roam State-Changed-When: Sat Mar 10 02:16:10 PST 2001 State-Changed-Why: Duplicate of conf/25639. http://www.freebsd.org/cgi/query-pr.cgi?pr=25649 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Mar 10 2:44:33 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from feral.com (feral.com [192.67.166.1]) by hub.freebsd.org (Postfix) with ESMTP id 8E00C37B718 for ; Sat, 10 Mar 2001 02:44:29 -0800 (PST) (envelope-from mjacob@feral.com) Received: from beppo (beppo [192.67.166.79]) by feral.com (8.9.3/8.9.3) with ESMTP id CAA25646; Sat, 10 Mar 2001 02:44:29 -0800 Date: Sat, 10 Mar 2001 02:44:26 -0800 (PST) From: Matthew Jacob Reply-To: mjacob@feral.com To: Christian Weisgerber Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: bin/25361: dump(8) command segfaults In-Reply-To: <200103061740.f26He2D69939@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I cannot reproduce it. This with today's top 'o tree. I have a DEVFS filesystem. On Tue, 6 Mar 2001, Christian Weisgerber wrote: > The following reply was made to PR bin/25361; it has been noted by GNATS. > > From: Christian Weisgerber > To: Matthew Jacob > Cc: Andrew Gallatin , > FreeBSD-gnats-submit@FreeBSD.ORG > Subject: Re: bin/25361: dump(8) command segfaults > Date: Tue, 6 Mar 2001 17:42:21 +0100 > > Matthew Jacob: > > > > Sorry, but I'm running kernel and userland from March 4, and this > > > is *not* resolved. > > > > -current or -stable? > > -CURRENT. > > -- > Christian "naddy" Weisgerber naddy@mips.inka.de > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-bugs" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Mar 10 3:34:37 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4545037B718; Sat, 10 Mar 2001 03:34:36 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f2ABYau96555; Sat, 10 Mar 2001 03:34:36 -0800 (PST) (envelope-from kris) Date: Sat, 10 Mar 2001 03:34:36 -0800 (PST) From: Message-Id: <200103101134.f2ABYau96555@freefall.freebsd.org> To: buckshot70@my-deja.com, kris@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/21728: KDE won't start with kernel_securelevel="2"; no warning of this is given when setting security level. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: KDE won't start with kernel_securelevel="2"; no warning of this is given when setting security level. State-Changed-From-To: open->closed State-Changed-By: kris State-Changed-When: Sat Mar 10 03:31:38 PST 2001 State-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=21728 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Mar 10 4:40:14 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A8CF737B71B for ; Sat, 10 Mar 2001 04:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f2ACe2d09050; Sat, 10 Mar 2001 04:40:02 -0800 (PST) (envelope-from gnats) Received: from hvv.svzserv.kemerovo.su (hvv.svzserv.kemerovo.su [213.184.65.67]) by hub.freebsd.org (Postfix) with ESMTP id C485637B718 for ; Sat, 10 Mar 2001 04:31:16 -0800 (PST) (envelope-from vk@hvv.svzserv.kemerovo.su) Received: (from vk@localhost) by hvv.svzserv.kemerovo.su (8.9.3/8.9.3) id TAA13727; Sat, 10 Mar 2001 19:31:22 +0700 (NKZ) (envelope-from vk) Message-Id: <200103101231.TAA13727@hvv.svzserv.kemerovo.su> Date: Sat, 10 Mar 2001 19:31:22 +0700 (NKZ) From: Vladimir Kurtukov Reply-To: vk@hvv.svzserv.kemerovo.su To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/25650: le nic driver causes kernel panic Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25650 >Category: kern >Synopsis: le nic driver causes kernel panic >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Mar 10 04:40:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: Vladimir Kurtukov >Release: FreeBSD 4.2-STABLE i386 >Organization: JSC SvzServ >Environment: FreeBSD p200.trust.kemerovo.su 4.2-STABLE FreeBSD 4.2-STABLE #11: Sat Mar 10 18:25:29 KRAT 2001 root@p200.trust.kemerovo.su:/usr/src/sys/compile/TRUST i386 This bug is in all 4.x versions >Description: le nic driver is broken: driver interface was changed but driver was incorrectly updated to new interface. Generic ether_ioctl from if_ethersubr.c make nic initialization in a way like this: ifp->if_init(ifp->if_softc); But lemac_init or lance_init functions from if_le.c have another syntax, they need unit number as an argument. Correct way for le driver is: (*sc->if_init)(ifp->if_unit); >How-To-Repeat: Compile in le driver into kernel and try to assign an IP address for it - result will be immediate kernel panic >Fix: Here is my patch (code taken from 3.5-STABLE): --- if_le.std Tue Jul 18 05:24:30 2000 +++ if_le.new Sat Mar 10 17:05:01 2001 @@ -441,7 +441,66 @@ s = splimp(); switch (cmd) { - case SIOCSIFADDR: + case SIOCSIFADDR: { + struct ifaddr *ifa = (struct ifaddr *)data; + + ifp->if_flags |= IFF_UP; + switch(ifa->ifa_addr->sa_family) { +#ifdef INET + case AF_INET: { + (*sc->if_init)(ifp->if_unit); + arp_ifinit((struct arpcom *)ifp, ifa); + break; + } +#endif /* INET */ +#ifdef IPX + /* This magic copied from if_is.c; I don't use XNS, + * so I have no way of telling if this actually + * works or not. + */ + case AF_IPX: { + struct ipx_addr *ina = &(IA_SIPX(ifa)->sipx_addr); + if (ipx_nullhost(*ina)) { + ina->x_host = *(union ipx_host *)(sc->le_ac.ac_enaddr); + } else { + ifp->if_flags &= ~IFF_RUNNING; + bcopy((caddr_t)ina->x_host.c_host, + (caddr_t)sc->le_ac.ac_enaddr, + sizeof sc->le_ac.ac_enaddr); + } + + (*sc->if_init)(ifp->if_unit); + break; + } +#endif /* IPX */ +#ifdef NS + /* This magic copied from if_is.c; I don't use XNS, + * so I have no way of telling if this actually + * works or not. + */ + case AF_NS: { + struct ns_addr *ina = &(IA_SNS(ifa)->sns_addr); + if (ns_nullhost(*ina)) { + ina->x_host = *(union ns_host *)(sc->le_ac.ac_enaddr); + } else { + ifp->if_flags &= ~IFF_RUNNING; + bcopy((caddr_t)ina->x_host.c_host, + (caddr_t)sc->le_ac.ac_enaddr, + sizeof sc->le_ac.ac_enaddr); + } + + (*sc->if_init)(ifp->if_unit); + break; + } +#endif /* NS */ + default: { + (*sc->if_init)(ifp->if_unit); + break; + } + } + break; + } + case SIOCGIFADDR: case SIOCSIFMTU: error = ether_ioctl(ifp, cmd, data); >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Mar 10 6:30:11 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 62D8737B719 for ; Sat, 10 Mar 2001 06:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f2AEU1r27250; Sat, 10 Mar 2001 06:30:01 -0800 (PST) (envelope-from gnats) Received: from relay.rinet.ru (relay.rinet.ru [195.54.192.35]) by hub.freebsd.org (Postfix) with ESMTP id 1C3A237B718 for ; Sat, 10 Mar 2001 06:24:01 -0800 (PST) (envelope-from root@snark.rinet.ru) Received: from snark.rinet.ru (root@snark.rinet.ru [195.54.192.73]) by relay.rinet.ru (8.9.3/8.9.3) with ESMTP id RAA00712 for ; Sat, 10 Mar 2001 17:23:58 +0300 (MSK) Received: (from root@localhost) by snark.rinet.ru (8.11.3/8.11.3) id f2AENw900884; Sat, 10 Mar 2001 17:23:58 +0300 (MSK) (envelope-from root) Message-Id: <200103101423.f2AENw900884@snark.rinet.ru> Date: Sat, 10 Mar 2001 17:23:58 +0300 (MSK) From: alexs@snark.rinet.ru Reply-To: alexs@snark.rinet.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: kern/25651: Syntax error in tcp_usrreq.c Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25651 >Category: kern >Synopsis: Syntax error in tcp_usrreq.c (COMMON_START macros) >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Mar 10 06:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Alex Semenyaka >Release: FreeBSD 4.2-STABLE i386 >Organization: Cronyx Plus ISP >Environment: System: FreeBSD snark.rinet.ru 4.2-STABLE FreeBSD 4.2-STABLE #2: Thu Feb 15 15:39:23 MSK 2001 root@snark.rinet.ru:/usr/obj/usr/src/sys/SNARK i386 It is box with AMD K7 Duron 700MHz, 192M of RAM All sources has been cvsup'ed about 1 pm (GMT) from cvsup.ru.freebsd.org (src-all, RELENG_4). Then make buildworld, make installworld has been done without any problem. >Description: Sources has been updated via cvsup at 1pm March 10, 2001. Then make buildworld make installworld was completed successfully. And after this attempt to do make KERNCONF=SNARK kernel leads to the following diagnostics: cc -c -O -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -ansi -nostdinc -I- -I. -I../.. -I../../../include -D_KERNEL -include opt_global.h -elf -mpreferred-stack-boundary=2 ../../netinet/tcp_usrreq.c ../../netinet/tcp_usrreq.c: In function `tcp_usr_accept': ../../netinet/tcp_usrreq.c:424: syntax error before `int' ../../netinet/tcp_usrreq.c:424: `ostate' undeclared (first use in this function) ../../netinet/tcp_usrreq.c:424: (Each undeclared identifier is reported only once ../../netinet/tcp_usrreq.c:424: for each function it appears in.) ../../netinet/tcp_usrreq.c:418: warning: `tp' might be used uninitialized in this function *** Error code 1 Stop in /usr/src/sys/compile/SNARK. The error is generated if there is option TCPDEBUG in the kernel config, and then works #define TCPDEBUG0 int ostate TCPDEBUG0 then is used in the definition of COMMON_START(). Usually COMMON_START() is placed immidiately after the definitions, but in the couple of places it is not the case and thus the syntax error occured. >How-To-Repeat: 1) Update sources 2) Put option TCPDEBUG in the kernel config 3) Try to compile the kernel >Fix: As a workaround the following patch can be used: --- tcp_usrreq.c.old Sat Mar 10 16:25:29 2001 +++ tcp_usrreq.c Sat Mar 10 16:16:50 2001 @@ -165,25 +165,25 @@ TCPDEBUG1(); tp = tcp_disconnect(tp); TCPDEBUG2(PRU_DETACH); splx(s); return error; } -#define COMMON_START() TCPDEBUG0; \ - do { \ +#define COMMON_START1() do { \ if (inp == 0) { \ splx(s); \ return EINVAL; \ } \ tp = intotcpcb(inp); \ TCPDEBUG1(); \ } while(0) +#define COMMON_START() TCPDEBUG0; COMMON_START1() #define COMMON_END(req) out: TCPDEBUG2(req); splx(s); return error; goto out /* * Give the socket an address. */ static int @@ -412,39 +412,43 @@ static int tcp_usr_accept(struct socket *so, struct sockaddr **nam) { int s = splnet(); int error = 0; struct inpcb *inp = sotoinpcb(so); struct tcpcb *tp; + TCPDEBUG0; + if (so->so_state & SS_ISDISCONNECTED) { error = ECONNABORTED; goto out; } - COMMON_START(); + COMMON_START1(); in_setpeeraddr(so, nam); COMMON_END(PRU_ACCEPT); } #ifdef INET6 static int tcp6_usr_accept(struct socket *so, struct sockaddr **nam) { int s = splnet(); int error = 0; struct inpcb *inp = sotoinpcb(so); struct tcpcb *tp; + TCPDEBUG0; + if (so->so_state & SS_ISDISCONNECTED) { error = ECONNABORTED; goto out; } - COMMON_START(); + COMMON_START1(); in6_mapped_peeraddr(so, nam); COMMON_END(PRU_ACCEPT); } #endif /* INET6 */ /* * Mark the connection as being incapable of further output. */ static int >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Mar 10 7:30: 7 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8A92637B719 for ; Sat, 10 Mar 2001 07:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f2AFU1U26942; Sat, 10 Mar 2001 07:30:01 -0800 (PST) (envelope-from gnats) Received: from starbug.ugh.net.au (starbug.ugh.net.au [203.31.238.37]) by hub.freebsd.org (Postfix) with ESMTP id 97CBE37B718 for ; Sat, 10 Mar 2001 07:26:20 -0800 (PST) (envelope-from andrew@ugh.net.au) Received: by starbug.ugh.net.au (Postfix, from userid 1000) id 9DEBBA86A; Sun, 11 Mar 2001 02:26:20 +1100 (EST) Message-Id: <20010310152620.9DEBBA86A@starbug.ugh.net.au> Date: Sun, 11 Mar 2001 02:26:20 +1100 (EST) From: andrew@ugh.net.au Reply-To: andrew@ugh.net.au To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/25654: minor style(9) fix for sleep Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25654 >Category: bin >Synopsis: minor style(9) fix for sleep >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Mar 10 07:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Andrew >Release: FreeBSD 4.2-STABLE i386 >Organization: UgH! >Environment: >Description: sleep should exit with EX_USAGE if given incorrect arguments. >How-To-Repeat: sleep blah blah >Fix: --- sleep.c.orig Fri Oct 1 17:53:40 1999 +++ sleep.c Sun Mar 11 01:18:25 2001 @@ -49,6 +49,7 @@ #include #include #include +#include #include #include @@ -132,5 +133,5 @@ { (void)fprintf(stderr, "usage: sleep seconds\n"); - exit(1); + exit(EX_USAGE); } >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Mar 10 8:50: 8 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6DB7C37B718 for ; Sat, 10 Mar 2001 08:50:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f2AGo3T37079; Sat, 10 Mar 2001 08:50:03 -0800 (PST) (envelope-from gnats) Date: Sat, 10 Mar 2001 08:50:03 -0800 (PST) Message-Id: <200103101650.f2AGo3T37079@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Bruce Evans Subject: Re: bin/25654: minor style(9) fix for sleep Reply-To: Bruce Evans Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/25654; it has been noted by GNATS. From: Bruce Evans To: andrew@ugh.net.au Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/25654: minor style(9) fix for sleep Date: Sun, 11 Mar 2001 03:44:13 +1100 (EST) On Sun, 11 Mar 2001 andrew@ugh.net.au wrote: > >Description: > > sleep should exit with EX_USAGE if given incorrect arguments. sleep shouldn't exit with EX_USAGE. The bug is style(9) saying to use sysexits.h. Correct style may be found in old BSD sources like sleep.c Only 3 non-contrib'ed files in the entire 4.4BSDLite2 /usr/src use sysexits.h. These are rmail.c, mail.local.c and sccs.c. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Mar 10 9:58:32 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E628437B718; Sat, 10 Mar 2001 09:58:29 -0800 (PST) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f2AHwTj44712; Sat, 10 Mar 2001 09:58:29 -0800 (PST) (envelope-from alex) Date: Sat, 10 Mar 2001 09:58:29 -0800 (PST) From: Message-Id: <200103101758.f2AHwTj44712@freefall.freebsd.org> To: alex@FreeBSD.org, freebsd-bugs@FreeBSD.org, alex@FreeBSD.org Subject: Re: bin/19946: possible bug in sh(1) with -p flag (privileged mode) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: possible bug in sh(1) with -p flag (privileged mode) Responsible-Changed-From-To: freebsd-bugs->alex Responsible-Changed-By: alex Responsible-Changed-When: Sat Mar 10 09:57:13 PST 2001 Responsible-Changed-Why: Assign this PR to me as a reminder to start a discussion on -security about it, as Martin suggested (which will of course end in a bikeshed and result in a IPSEC cabable truncate(1)...). http://www.freebsd.org/cgi/query-pr.cgi?pr=19946 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Mar 10 10: 4:14 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4508037B718; Sat, 10 Mar 2001 10:04:13 -0800 (PST) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f2AI4Ci45191; Sat, 10 Mar 2001 10:04:12 -0800 (PST) (envelope-from alex) Date: Sat, 10 Mar 2001 10:04:12 -0800 (PST) From: Message-Id: <200103101804.f2AI4Ci45191@freefall.freebsd.org> To: alex@big.endian.de, alex@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/19127: kernel panic on mount on burncd'd device Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: kernel panic on mount on burncd'd device State-Changed-From-To: open->closed State-Changed-By: alex State-Changed-When: Sat Mar 10 10:03:55 PST 2001 State-Changed-Why: Close my own PR. This seems to be fixed. http://www.freebsd.org/cgi/query-pr.cgi?pr=19127 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Mar 10 13:20: 8 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 437A337B719 for ; Sat, 10 Mar 2001 13:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f2ALK1774427; Sat, 10 Mar 2001 13:20:01 -0800 (PST) (envelope-from gnats) Received: from neroon.acm.rpi.edu (neroon.acm.rpi.edu [128.213.5.27]) by hub.freebsd.org (Postfix) with SMTP id C1B8C37B718 for ; Sat, 10 Mar 2001 13:11:53 -0800 (PST) (envelope-from rooneg@acm.rpi.edu) Received: (qmail 66101 invoked by uid 1170); 10 Mar 2001 21:09:58 -0000 Message-Id: <20010310210958.66100.qmail@neroon.acm.rpi.edu> Date: 10 Mar 2001 21:09:58 -0000 From: rooneg@electricjellyfish.net Reply-To: rooneg@electricjellyfish.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: conf/25659: /boot/defaults/loader.conf has wrong lines for snd modules Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25659 >Category: conf >Synopsis: /boot/defaults/loader.conf has wrong lines for snd modules >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Mar 10 13:20:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Garrett Rooney >Release: FreeBSD 4.3-BETA i386 >Organization: RPI >Environment: >Description: The lines in /boot/default/loader.conf for the snd modules ae wrong. They should all end with _load. >How-To-Repeat: Look at the file ;-) >Fix: Add _load to all the directives. Patch attached. --- /boot/defaults/loader.conf Sat Mar 10 15:14:32 2001 +++ loader.conf Sat Mar 10 16:05:50 2001 @@ -190,27 +190,27 @@ ### Sound modules ########################################## ############################################################## -snd_pcm="NO" # Pcm -snd_ad1816="NO" # ad1816 -snd_cmi="NO" # cmi -snd_csa="NO" # csa -snd_cs4281="NO" # cs4281 -snd_ds1="NO" # ds1 -snd_emu10k1="NO" # Creative Sound Blaster Live -snd_ess="NO" # ess -snd_es137x="NO" # es137x -snd_fm801="NO" # fm801 -snd_maestro="NO" # Maestro -snd_maestro3="NO" # Maestro3 -snd_mss="NO" # Mss -snd_neomagic="NO" # Neomagic -snd_sbc="NO" # Sbc -snd_sb8="NO" # Sound Blaser Pro -snd_sb16="NO" # Sound Blaser 16 -snd_solo="NO" # Solo -snd_t4dwave="NO" # t4dwave -snd_via82c686="NO" # via82c686 -snd="NO" # Sound subsystem +snd_pcm_load="NO" # Pcm +snd_ad1816_load="NO" # ad1816 +snd_cmi_load="NO" # cmi +snd_csa_load="NO" # csa +snd_cs4281_load="NO" # cs4281 +snd_ds1_load="NO" # ds1 +snd_emu10k1_load="NO" # Creative Sound Blaster Live +snd_ess_load="NO" # ess +snd_es137x_load="NO" # es137x +snd_fm801_load="NO" # fm801 +snd_maestro_load="NO" # Maestro +snd_maestro3_load="NO" # Maestro3 +snd_mss_load="NO" # Mss +snd_neomagic_load="NO" # Neomagic +snd_sbc_load="NO" # Sbc +snd_sb8_load="NO" # Sound Blaser Pro +snd_sb16_load="NO" # Sound Blaser 16 +snd_solo_load="NO" # Solo +snd_t4dwave_load="NO" # t4dwave +snd_via82c686_load="NO" # via82c686 +snd_load="NO" # Sound subsystem ############################################################## ### USB modules ############################################ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Mar 10 15:20: 6 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D13A037B719 for ; Sat, 10 Mar 2001 15:20:00 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f2ANK0E90130; Sat, 10 Mar 2001 15:20:00 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8D71A37B719 for ; Sat, 10 Mar 2001 15:17:40 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f2ANHeR89886; Sat, 10 Mar 2001 15:17:40 -0800 (PST) (envelope-from nobody) Message-Id: <200103102317.f2ANHeR89886@freefall.freebsd.org> Date: Sat, 10 Mar 2001 15:17:40 -0800 (PST) From: blacksmith@stels.net To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/25662: no Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25662 >Category: misc >Synopsis: no >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Mar 10 15:20:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: blacksmith >Release: current >Organization: >Environment: FreeBSD 4.2-RC1 FreeBSD 4.2-RC1 #0 : Web Nov 8 04:00:00 GMT 2000 >Description: Whot is this ???????????????????? in any Russian URL >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Mar 10 15:50: 6 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3ECC737B718 for ; Sat, 10 Mar 2001 15:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f2ANo2O92308; Sat, 10 Mar 2001 15:50:02 -0800 (PST) (envelope-from gnats) Date: Sat, 10 Mar 2001 15:50:02 -0800 (PST) Message-Id: <200103102350.f2ANo2O92308@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: .@babolo.ru Subject: Re: misc/25662: no Reply-To: .@babolo.ru Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/25662; it has been noted by GNATS. From: .@babolo.ru To: blacksmith@stels.net Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: misc/25662: no Date: Sun, 11 Mar 2001 02:49:04 +0300 (MSK) blacksmith@stels.net writes: > >Number: 25662 > >Category: misc > >Synopsis: no > >Confidential: no > >Severity: non-critical > >Priority: low > >Responsible: freebsd-bugs > >State: open > >Quarter: > >Keywords: > >Date-Required: > >Class: sw-bug > >Submitter-Id: current-users > >Arrival-Date: Sat Mar 10 15:20:00 PST 2001 > >Closed-Date: > >Last-Modified: > >Originator: blacksmith > >Release: current > >Organization: > >Environment: > FreeBSD 4.2-RC1 FreeBSD 4.2-RC1 #0 : Web Nov 8 04:00:00 GMT 2000 > >Description: > Whot is this ???????????????????? in any Russian URL It means that you have not installed KOI8-R fonts in your system. Right place is questions, not freebsd-bugs IMHO. -- @BABOLO http://links.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Mar 10 16:33: 1 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ADC6D37B718; Sat, 10 Mar 2001 16:32:59 -0800 (PST) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f2B0WxC99216; Sat, 10 Mar 2001 16:32:59 -0800 (PST) (envelope-from billf) Date: Sat, 10 Mar 2001 16:32:59 -0800 (PST) From: Message-Id: <200103110032.f2B0WxC99216@freefall.freebsd.org> To: blacksmith@stels.net, billf@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/25662: no Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: no State-Changed-From-To: open->closed State-Changed-By: billf State-Changed-When: Sat Mar 10 16:32:04 PST 2001 State-Changed-Why: User doesn't have the right fonts installed. Please e-mail questions@freebsd.org with a detailed description of what you are trying to do. http://www.freebsd.org/cgi/query-pr.cgi?pr=25662 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Mar 10 18:22: 1 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 655EE37B718; Sat, 10 Mar 2001 18:21:59 -0800 (PST) (envelope-from jkh@FreeBSD.org) Received: (from jkh@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f2B2LxM14086; Sat, 10 Mar 2001 18:21:59 -0800 (PST) (envelope-from jkh) Date: Sat, 10 Mar 2001 18:21:59 -0800 (PST) From: Message-Id: <200103110221.f2B2LxM14086@freefall.freebsd.org> To: rooneg@electricjellyfish.net, jkh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: conf/25659: /boot/defaults/loader.conf has wrong lines for snd modules Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: /boot/defaults/loader.conf has wrong lines for snd modules State-Changed-From-To: open->closed State-Changed-By: jkh State-Changed-When: Sat Mar 10 18:21:46 PST 2001 State-Changed-Why: Fixed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=25659 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Mar 10 20: 0: 8 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 020CF37B71B for ; Sat, 10 Mar 2001 20:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f2B401F24861; Sat, 10 Mar 2001 20:00:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1533F37B718 for ; Sat, 10 Mar 2001 19:57:26 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f2B3vQW24615; Sat, 10 Mar 2001 19:57:26 -0800 (PST) (envelope-from nobody) Message-Id: <200103110357.f2B3vQW24615@freefall.freebsd.org> Date: Sat, 10 Mar 2001 19:57:26 -0800 (PST) From: shivangp@kmfms.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: conf/25676: FBSD >= 4.0 does not recongnize NIC card - shared memory can't be cleared. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25676 >Category: conf >Synopsis: FBSD >= 4.0 does not recongnize NIC card - shared memory can't be cleared. >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Mar 10 20:00:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Shivang Patel >Release: 4.2 >Organization: >Environment: >Description: When I try to install any version of FBSD 4.0 or greater I always get ed1: failed to clear shared memory at 0xc0000 - check configuration. I looked it up in the man pages and it says the following: When the card was probed at system boot time, the ed driver found that it could not clear the card's shared memory. This is most commonly caused by a BIOS extension ROM being configured in the same address space as the ethernet card's shared memory. Either find the offending card and change its BIOS ROM to be at an address that doesn't conflict, or change the iomem option in the kernel config file so that the card's shared memory is mapped at a non-conflicting address. I looked for 0xc0000 in system information in windows 98 and I found out that its my video card that has that address. But I tried chaning the video card to an old one but it still did not work. (NOTE: I did not go back into windows to check its location) Do I change the address of my NIC? If so how? If not how do I fix this problem? >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message